diff --git a/CMakeLists.txt b/CMakeLists.txt index b8b37e7d2a96fc85e51c213412f416d6fe72377d..2321490e5b45b532a51d92d6e076a2239b8d3f8e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,7 +87,7 @@ IF (UNIX) SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "labrobotica - labrobotica@iri.upc.edu") # Uncomment to add the necessary mantainer scripts -# SET(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_SOURCE_DIR}/package_scripts/preinst;${CMAKE_SOURCE_DIR}/package_scripts/postinst;${CMAKE_SOURCE_DIR}/package_scripts/prerm;${CMAKE_SOURCE_DIR}/package_scripts/postrm") + SET(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_SOURCE_DIR}/scripts/debian/postinst;${CMAKE_SOURCE_DIR}/scripts/debian/prerm") # Uncomment to add dependencies comma separated # SET(CPACK_DEBIAN_PACKAGE_DEPENDS "iri-<package_name>-dev (>= 1.0~${DISTRIB})") diff --git a/ReadMe.md b/ReadMe.md index 9e84a3e5318795d4713b3416c3118b3211b5c023..9afcdb57891e3d41230fd139207437ccdc1e70b8 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -3,7 +3,10 @@ opendrive_to_gazebo {#mainpage} ## Description -Library to parse a OpenDrive 1.4 road file format to generate a launch file to spawn signals and objects on gazebo. +C++ library to parse an OpenDrive 1.4 road file format and extract the signals and objects to be used in the Gazebo simulator. This library generate two launch files: + +* One for the signals. Use the [iri_sign_description](https://gitlab.iri.upc.edu/mobile_robotics/adc/adc_2021/iri_sign_description) ROS package to spawn the signals in Gazebo. +* One for the objects. Use the [iri_object_description](https://gitlab.iri.upc.edu/mobile_robotics/adc/adc_2021/iri_object_description) ROS package to spawn the objects in Gazebo. This library has the following limitations: - Only DEU signals code is supported. The signals supported are: @@ -38,18 +41,6 @@ Run the commands on _add repository_ and _add key_ from [labrobotica_how_to inst sudo apt update && sudo apt install iri-opendrive-to-gazebo-dev ``` -## Disclaimer - -Copyright (C) Institut de Robòtica i Informà tica Industrial, CSIC-UPC. -Mantainer IRI labrobotics (labrobotica@iri.upc.edu) - -This package is distributed in the hope that it will be useful, but without any warranty. It is provided "as is" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program is with you. should the program prove defective, the GMR group does not assume the cost of any necessary servicing, repair or correction. - -In no event unless required by applicable law the author will be liable to you for damages, including any general, special, incidental or consequential damages arising out of the use or inability to use the program (including but not limited to loss of data or data being rendered inaccurate or losses sustained by you or third parties or a failure of the program to operate with any other programs), even if the author has been advised of the possibility of such damages. - -You should have received a copy of the GNU Lesser General Public License -along with this program. If not, see <http://www.gnu.org/licenses/> - ## For developers <details><summary>click here</summary> @@ -148,9 +139,32 @@ and it is also necessary to link with the desired libraries by using the followi TARGET_LINK_LIBRARIES(<executable name> ${opendrive_to_gazebo_LIBRARIES}) ``` -## Examples - -There is an example to show the use of this library. - </p> </details> + +## How to use it + +This tool accepts three arguments: + +* The full path to the Opendrive file. +* Path for the output launch files files. +* The value of the scale factor. The scale factor is bigger than one to scale down the original geometry, and smaller than one to scale it up. This argument is optional, an when not set, a scale factor of one is used. + +To generate both signals and objects launch files, execute the following command from the main folder of the project: + +``` +./bin/opendrive_to_gazebo <path to the xodr file> <output path> [scale factor] +``` + +## Disclaimer + +Copyright (C) Institut de Robòtica i Informà tica Industrial, CSIC-UPC. +Mantainer IRI labrobotics (labrobotica@iri.upc.edu) + +This package is distributed in the hope that it will be useful, but without any warranty. It is provided "as is" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program is with you. should the program prove defective, the GMR group does not assume the cost of any necessary servicing, repair or correction. + +In no event unless required by applicable law the author will be liable to you for damages, including any general, special, incidental or consequential damages arising out of the use or inability to use the program (including but not limited to loss of data or data being rendered inaccurate or losses sustained by you or third parties or a failure of the program to operate with any other programs), even if the author has been advised of the possibility of such damages. + +You should have received a copy of the GNU Lesser General Public License +along with this program. If not, see <http://www.gnu.org/licenses/> + diff --git a/include/adc_circuit.h b/include/adc_circuit.h deleted file mode 100644 index 63ecdf6535ef92de857786c2829e307f95e30555..0000000000000000000000000000000000000000 --- a/include/adc_circuit.h +++ /dev/null @@ -1,112 +0,0 @@ -#ifndef _ADC_CIRCUIT_H -#define _ADC_CIRCUIT_H - -#include <string> -#include <vector> -#include "adc_road.h" -#include <vector> - - -#ifdef _HAVE_XSD -#include "../src/xml/OpenDRIVE_1.4H.hxx" -#endif - -#define SIGNS_LAUNCH_FILE "spawn_signs.launch" -#define OBJECTS_LAUNCH_FILE "spawn_objects.launch" - -/** - * \class CAdcCircuit - * - * \brief Class to store all the useful information of a OpenDrive circuit. - * - * It has access to each road information. - * - */ -class CAdcCircuit -{ - private: - std::vector<CAdcRoad*> roads;///< Variable to store an access each road data. - - /** - * \brief Function to add a road. - * - * \param road The road to add. - * - */ - inline void add_road(CAdcRoad* &road); - - /** - * \brief Function to clear roads. - * - */ - inline void clear_roads(void); - - public: - /** - * \brief Default constructor. - * - */ - CAdcCircuit(); - - /** - * \brief Default destructor. - * - * It deletes each road geometry pointer. - * - */ - ~CAdcCircuit(); - - /** - * \brief Function to print each road info. - * - * It calls CAdcRoad::debug function of each road. - * - */ - void debug(void); - - /** - * \brief Function to calculate the world pose of each sign and object. - * - * It calls CAdcRoad::calculate_signals_pose and CAdcRoad::calculate_objects_pose function of each road. - * - * \param debug Boolean to print all the information stored on each signal nad object at - * the end of the function. - */ - void calculate_world_poses(bool debug = false); - - /** - * \brief Function to get all the signs presents on circuit. - * - * It calls CAdcRoad::get_signals function of each road. - * - * \param signals Variable to store the information. - */ - void get_signals(std::vector<CAdcSignals*> &signals); - - /** - * \brief Function to generate a .launch to spwan all - * the recognized signs and another for the objects. - * - * First it saves the header of the file. Secondly it - * calls CAdcRoad::append_signs_spwan. Finally, it saves - * the end of the launch file. - * - * It follows the same steps to generate the objects launch file - * calling CAdcRoad::append_objects_spwan. - * - * \param dir The route to the output .launch file. - * - * \throws CException If the output file can't be opened. - */ - void generate_spawn_launch_files(std::string &dir); - - /** - * \brief Function to load the .xodr info. - * - * \param open_drive The objects generated with XSD. - * - */ - void load(std::auto_ptr<OpenDRIVE> &open_drive); -}; - -#endif \ No newline at end of file diff --git a/include/adc_geometries.h b/include/adc_geometries.h deleted file mode 100644 index 7fcc89f1028ccd2d6f022d3dc68a8f2e0f53b3b9..0000000000000000000000000000000000000000 --- a/include/adc_geometries.h +++ /dev/null @@ -1,811 +0,0 @@ -#ifndef _ADC_GEOMETRIES_H -#define _ADC_GEOMETRIES_H - -#ifdef _HAVE_XSD -#include "../src/xml/OpenDRIVE_1.4H.hxx" -#endif - -/** - * \class CAdcGeometry - * - * \brief Base class to store the common information of all road geometries. - * - * It's a pure abstract class that defines two pure virtual member functions. - * - */ -class CAdcGeometry -{ - private: - protected: - double min_s; ///< Starting track coordenate "s" for the geometry. - double max_s; ///< Ending track coordenate "s" for the geometry. - double x; ///< World x coordenate for the geometry origin. - double y; ///< World y coordenate for the geometry origin. - double heading; ///< World heading for the geometry origin. - - /** - * \brief Pure virtual function to print specific geometry type info. - * - */ - virtual void debug_param(void) = 0; - - /** - * \brief Pure virtual function to transform from track coordenatos to local coordenates. - * - * \param s Track coordenate "s" of the element. - * - * \param t Track coordenate "t" of the element. - * - * \param heading Track heading of the element. - * - * \param u Output for the local u coordenate. - * - * \param v Output for the local v coordenate. - * - * \param yaw Output for the local yaw. - * - * \return True if successful. - * - */ - virtual bool get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw) = 0; - - /** - * \brief Function to load the .xodr geometry specific info. - * - * \param geometry_info The objects generated with XSD. - * - */ - virtual void load_param(std::auto_ptr<planView::geometry_type> &geometry_info) = 0; - - public: - /** - * \brief Default constructor. - * - */ - CAdcGeometry(); - - /** - * \brief Copy constructor. - * - * \param geometry The objecto to copy. - * - */ - CAdcGeometry(const CAdcGeometry &geometry); - - /** - * \brief Class constructor. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - */ - CAdcGeometry(double min_s, double max_s, double x, double y, double heading); - - /** - * \brief Default destructor. - * - */ - virtual ~CAdcGeometry(); - - /** - * \brief assign operator = overload - * - */ - void operator = (const CAdcGeometry &geometry); - - /** - * \brief Pure virtual function to clone pointers. - * - */ - virtual CAdcGeometry* clone() const = 0; - - /** - * \brief Function to transform from track coordenatos to world coordenates. - * - * It calls CAdcGeometry::get_local_pose pure virtual funciton to calculate the local coordenates. - * - * \param s Track coordenate "s" of the element. - * - * \param t Track coordenate "t" of the element. - * - * \param heading Track heading of the element. - * - * \param x Output for the world x coordenate. - * - * \param y Output for the world y coordenate. - * - * \param yaw Output for the world yaw. - * - * \return True if successful. - * - */ - bool get_world_pose(double s, double t, double heading, double &x, double &y, double &yaw); - - /** - * \brief Function to check if an element belongs to this geometry. - * - * \param s Track coordenate "s" of the element. - * - * \return If belongs or not. - * - */ - bool on_range(double s); - - /** - * \brief Function to print its info. - * - * It calls CAdcGeometry::debug_param virtual functions. - * - */ - void debug(void); - - /** - * \brief Function to load the .xodr info. - * - * \param geometry_info The objects generated with XSD. - * - */ - void load(std::auto_ptr<planView::geometry_type> &geometry_info); - - /** - * \brief Function to set the common geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - */ - // set_base_paremeters(double min_s, double max_s, double x, double y, double heading); -}; - - -/** - * \class CAdcGeoLine - * - * \brief Class to store the specific data of a Line geometry. - * - * It's a CAdcGeometry derived class. - * - */ -class CAdcGeoLine: public CAdcGeometry -{ - private: - protected: - - /** - * \brief Function to print specific geometry type info. - * - */ - void debug_param(void); - - /** - * \brief Function to transform from track coordenatos to local coordenates. - * - * \param s Track coordenate "s" of the element. - * - * \param t Track coordenate "t" of the element. - * - * \param heading Track heading of the element. - * - * \param u Output for the local u coordenate. - * - * \param v Output for the local v coordenate. - * - * \param yaw Output for the local yaw. - * - * \return True if successful. - * - */ - bool get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw); - - public: - /** - * \brief Default constructor. - * - */ - CAdcGeoLine(); - - /** - * \brief Copy constructor. - * - * \param line The objecto to copy. - * - */ - CAdcGeoLine(const CAdcGeoLine &line); - - /** - * \brief Class constructor with the common geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - */ - CAdcGeoLine(double min_s, double max_s, double x, double y, double heading); - - /** - * \brief Default destructor. - * - */ - ~CAdcGeoLine(); - - /** - * \brief assign operator = overload - * - */ - void operator = (const CAdcGeoLine &line); - - /** - * \brief Function to clone pointers. - * - * \return A base class pointer to the object. - * - */ - CAdcGeometry* clone() const; - - /** - * \brief Function to load the .xodr info. - * - * \param geometry_info The objects generated with XSD. - * - */ - void load_param(std::auto_ptr<planView::geometry_type> &geometry_info); -}; - - -/** - * \class CAdcGeoSpiral - * - * \brief Class to store the specific data of a Spiral geometry. - * - * It's a CAdcGeometry derived class. - * - */ -class CAdcGeoSpiral: public CAdcGeometry -{ - private: - double curv_start; ///< Initial curvature - double curv_end; ///< End curvature - - protected: - /** - * \brief Function to print specific geometry type info. - * - */ - void debug_param(void); - - /** - * \brief Function to transform from track coordenatos to local coordenates. - * - * ----------------Not supported------------------------ - * - * \param s Track coordenate "s" of the element. - * - * \param t Track coordenate "t" of the element. - * - * \param heading Track heading of the element. - * - * \param u Output for the local u coordenate. - * - * \param v Output for the local v coordenate. - * - * \param yaw Output for the local yaw. - * - * \return True if successful. - * - */ - bool get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw); - - public: - /** - * \brief Default constructor. - * - */ - CAdcGeoSpiral(); - - /** - * \brief Copy constructor. - * - * \param spiral The objecto to copy. - * - */ - CAdcGeoSpiral(const CAdcGeoSpiral &spiral); - - /** - * \brief Class constructor with the common geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - */ - CAdcGeoSpiral(double min_s, double max_s, double x, double y, double heading); - - /** - * \brief Class constructor with the common and specific geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - * \param curv_start Spiral initial curvature. - * - * \param curv_end Spiral end curvature. - * - */ - CAdcGeoSpiral(double min_s, double max_s, double x, double y, double heading, double curv_start, double curv_end); - - /** - * \brief Default destructor. - * - */ - ~CAdcGeoSpiral(); - - /** - * \brief assign operator = overload - * - */ - void operator = (const CAdcGeoSpiral &spiral); - - /** - * \brief Function to clone pointers. - * - * \return A base class pointer to the object. - * - */ - CAdcGeometry* clone() const; - - /** - * \brief Fu nction to seet the specific geometry parameters. - * - * \param curv_start Spiral initial curvature. - * - * \param curv_end Spiral end curvature. - * - */ - void set_params(double curv_start, double curv_end); - - /** - * \brief Function to load the .xodr info. - * - * \param geometry_info The objects generated with XSD. - * - */ - void load_param(std::auto_ptr<planView::geometry_type> &geometry_info); - }; - - -/** - * \class CAdcGeoArc - * - * \brief Class to store the specific data of a Arc geometry. - * - * It's a CAdcGeometry derived class. - * - */ -class CAdcGeoArc: public CAdcGeometry -{ - private: - double curvature; ///< Curvature - - protected: - /** - * \brief Function to print specific geometry type info. - * - */ - void debug_param(void); - - /** - * \brief Function to transform from track coordenatos to local coordenates. - * - * \param s Track coordenate "s" of the element. - * - * \param t Track coordenate "t" of the element. - * - * \param heading Track heading of the element. - * - * \param u Output for the local u coordenate. - * - * \param v Output for the local v coordenate. - * - * \param yaw Output for the local yaw. - * - * \return True if successful. - * - */ - bool get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw); - - public: - /** - * \brief Default constructor. - * - */ - CAdcGeoArc(); - - /** - * \brief Copy constructor. - * - * \param arc The objecto to copy. - * - */ - CAdcGeoArc(const CAdcGeoArc &arc); - - /** - * \brief Class constructor with the common geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - */ - CAdcGeoArc(double min_s, double max_s, double x, double y, double heading); - /** - * \brief Class constructor with the common and specific geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - * \param curvature Arc curvature. - * - */ - CAdcGeoArc(double min_s, double max_s, double x, double y, double heading, double curvature); - - /** - * \brief Default destructor. - * - */ - ~CAdcGeoArc(); - - /** - * \brief assign operator = overload - * - */ - void operator = (const CAdcGeoArc &arc); - - /** - * \brief Function to clone pointers. - * - * \return A base class pointer to the object. - * - */ - CAdcGeometry* clone() const; - - /** - * \brief Fu nction to seet the specific geometry parameters. - * - * \param curvature Arc curvature. - * - */ - void set_params(double curvature); - - /** - * \brief Function to load the .xodr info. - * - * \param geometry_info The objects generated with XSD. - * - */ - void load_param(std::auto_ptr<planView::geometry_type> &geometry_info); -}; - - -/** - * \struct Adc_poly3_param. - * - * \brief A struct with the four parameters to define a poly3 geometry. - */ -typedef struct -{ - double a; - double b; - double c; - double d; -}Adc_poly3_param; - - -/** - * \class CAdcGeoPoly3 - * - * \brief Class to store the specific data of a Poly3 geometry. - * - * It's a CAdcGeometry derived class. - * - */ -class CAdcGeoPoly3: public CAdcGeometry -{ - private: - Adc_poly3_param param; ///< Poly3 parameters - - protected: - /** - * \brief Function to print specific geometry type info. - * - */ - void debug_param(void); - - /** - * \brief Function to transform from track coordenatos to local coordenates. - * - * ----------------Not supported------------------------ - * - * \param s Track coordenate "s" of the element. - * - * \param t Track coordenate "t" of the element. - * - * \param heading Track heading of the element. - * - * \param u Output for the local u coordenate. - * - * \param v Output for the local v coordenate. - * - * \param yaw Output for the local yaw. - * - * \return True if successful. - * - */ - bool get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw); - - public: - /** - * \brief Default constructor. - * - */ - CAdcGeoPoly3(); - - /** - * \brief Copy constructor. - * - * \param poly3 The objecto to copy. - * - */ - CAdcGeoPoly3(const CAdcGeoPoly3 &poly3); - /** - * \brief Class constructor with the common geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - */ - CAdcGeoPoly3(double min_s, double max_s, double x, double y, double heading); - /** - * \brief Class constructor with the common and specific geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - * \param param Poly3 params. - * - */ - CAdcGeoPoly3(double min_s, double max_s, double x, double y, double heading, Adc_poly3_param param); - - /** - * \brief Default destructor. - * - */ - ~CAdcGeoPoly3(); - - /** - * \brief assign operator = overload - * - */ - void operator = (const CAdcGeoPoly3 &poly3); - - /** - * \brief Function to clone pointers. - * - * \return A base class pointer to the object. - * - */ - CAdcGeometry* clone() const; - - /** - * \brief Fu nction to seet the specific geometry parameters. - * - * \param param Poly3 params. - * - */ - void set_params(Adc_poly3_param param); - - /** - * \brief Function to load the .xodr info. - * - * \param geometry_info The objects generated with XSD. - * - */ - void load_param(std::auto_ptr<planView::geometry_type> &geometry_info); -}; - - -/** - * \class CAdcGeoParamPoly3 - * - * \brief Class to store the specific data of a ParamPoly3 geometry. - * - * It's a CAdcGeometry derived class. - * - */ -class CAdcGeoParamPoly3: public CAdcGeometry -{ - private: - Adc_poly3_param u_param; ///< Poly3 U parameters - Adc_poly3_param v_param; ///< Poly3 V parameters - bool normalized; ///< If the parameter is normalized. - - protected: - /** - * \brief Function to print specific geometry type info. - * - */ - void debug_param(void); - - /** - * \brief Function to transform from track coordenatos to local coordenates. - * - * \param s Track coordenate "s" of the element. - * - * \param t Track coordenate "t" of the element. - * - * \param heading Track heading of the element. - * - * \param u Output for the local u coordenate. - * - * \param v Output for the local v coordenate. - * - * \param yaw Output for the local yaw. - * - * \return True if successful. - * - */ - bool get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw); - - public: - /** - * \brief Default constructor. - * - */ - CAdcGeoParamPoly3(); - - /** - * \brief Copy constructor. - * - * \param parampoly3 The objecto to copy. - * - */ - CAdcGeoParamPoly3(const CAdcGeoParamPoly3 ¶mpoly3); - - /** - * \brief Class constructor with the common geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - */ - CAdcGeoParamPoly3(double min_s, double max_s, double x, double y, double heading); - - /** - * \brief Class constructor with the common and specific geometry parameters. - * - * \param min_s Geometry's min_s. - * - * \param max_s Geometry's max_s. - * - * \param x Geometry's origin x coordenate. - * - * \param y Geometry's origin y coordenate. - * - * \param heading Geometry's origins heading. - * - * \param u_param Poly3 U params. - * - * \param v_param Poly3 V params. - * - * \param normalized If is noramlized. - * - */ - CAdcGeoParamPoly3(double min_s, double max_s, double x, double y, double heading, Adc_poly3_param u_param, Adc_poly3_param v_param, bool normalized = true); - - /** - * \brief Default destructor. - * - */ - ~CAdcGeoParamPoly3(); - - /** - * \brief assign operator = overload - * - */ - void operator = (const CAdcGeoParamPoly3 ¶mpoly3); - - /** - * \brief Function to clone pointers. - * - * \return A base class pointer to the object. - * - */ - CAdcGeometry* clone() const; - - /** - * \brief Fu nction to seet the specific geometry parameters. - * - * \param u_param Poly3 U params. - * - * \param v_param Poly3 V params. - * - * \param normalized If is noramlized. - * - */ - void set_params(Adc_poly3_param u_param, Adc_poly3_param v_param, bool normalized = true); - - /** - * \brief Function to load the .xodr info. - * - * \param geometry_info The objects generated with XSD. - * - */ - void load_param(std::auto_ptr<planView::geometry_type> &geometry_info); -}; -#endif \ No newline at end of file diff --git a/include/adc_object.h b/include/adc_object.h deleted file mode 100644 index f73774e205ff07d14eb2d4e158a301bd10264517..0000000000000000000000000000000000000000 --- a/include/adc_object.h +++ /dev/null @@ -1,284 +0,0 @@ -#ifndef _ADC_OBJECT_H -#define _ADC_OBJECT_H -#include <string> -#include <map> - -#ifdef _HAVE_XSD -#include "../src/xml/OpenDRIVE_1.4H.hxx" -#endif - - -/** - * \struct Object_corner. - * - * \brief Corner "s" and "t" coordenates with height and world "x" e "y" coordenates. - */ -typedef struct -{ - double s; - double t; - double world_x; - double world_y; - double height; -}Object_corner; - -/** - * \struct Object_repeat. - * - * \brief Object repeat information. - */ -typedef struct -{ - double s; - double t; - double heading; - double distance; - int n; - std::vector<double> world_x; - std::vector<double> world_y; - std::vector<double> world_yaw; -}Object_repeat; - -/** - * \class CAdcObject - * - * \brief Class to store the data of a Object. - * - */ - -class CAdcObject -{ - private: - int id; ///< Object's id. - double s; ///< Object's track coordenate "s". - double t; ///< Object's track coordenate "t". - double heading; ///< Object's track heading. - double world_x; ///< Object's world coordenate "x". - double world_y; ///< Object's world coordenate "y". - double world_yaw; ///< Object's world yaw. - double valid_length; ///< Object's valid length. - double length; ///< Object's length. - double width; ///< Object's width. - double radius; ///< Object's radius. - double height; ///< Object's height. - std::string type; ///< Object's OpenDrive type. - std::string name; ///< Object's name. - bool outline; ///< Boolean to know if a object is an outline. - std::vector<std::vector<Object_corner> > corners; ///< Outline object corners. - bool repeat; ///< Boolean to know if a object is repeated over distance. - std::vector<Object_repeat> repeat_info; ///< Repeat object info. - - public: - /** - * \brief Default constructor. - * - * - */ - CAdcObject(); - - /** - * \brief Default constructor. - * - * - */ - CAdcObject(const CAdcObject &Object); - - /** - * \brief Class constructor for a "box" object. - * - * - * \param id Object's id. - * - * \param s Object's track coordenate "s". - * - * \param t Object's track coordenate "t". - * - * \param heading Object's track heading. - * - * \param type Object's OpenDrive type. - * - * \param name Object's OpenDrive name. - * - * \param width Object's width. - * - * \param length Object's length. - * - * \param height Object's height. - * - * \param valid_length Object's valid_length. - * - */ - CAdcObject(int id, double s, double t, double heading, std::string type, std::string name, double width, double length, double height, double valid_length); - - /** - * \brief Class constructor for a "Cylinder" object. - * - * - * \param id Object's id. - * - * \param s Object's track coordenate "s". - * - * \param t Object's track coordenate "t". - * - * \param heading Object's track heading. - * - * \param type Object's OpenDrive type. - * - * \param name Object's OpenDrive name. - * - * \param radius Object's radius. - * - * \param height Object's height. - * - * \param valid_length Object's valid_length. - * - */ - CAdcObject(int id, double s, double t, double heading, std::string type, std::string name, double radius, double height, double valid_length); - - /** - * \brief Class constructor for a "Cylinder" object. - * - * - * \param id Object's id. - * - * \param s Object's track coordenate "s". - * - * \param t Object's track coordenate "t". - * - * \param heading Object's track heading. - * - * \param type Object's OpenDrive type. - * - * \param name Object's OpenDrive name. - * - * \param valid_length Object's valid_length. - * - * \param corners Object's corners. - * - */ - CAdcObject(int id, double s, double t, double heading, std::string type, std::string name, double valid_length, std::vector<std::vector<Object_corner> > &corners); - - /** - * \brief Default destructor. - * - */ - ~CAdcObject(); - - /** - * \brief assign operator = overload - * - */ - void operator = (const CAdcObject &Object); - - /** - * \brief Function to get Object's track pose. - * - * \param s Output Object's track coordenate "s". - * - * \param t Output Object's track coordenate "t". - * - * \param heading Output Object's track heading. - * - */ - void get_pose(double &s, double &t, double &heading); - - /** - * \brief Function to set Object's world pose. - * - * \param x Object's world coordenate "x". - * - * \param y Object's world coordenate "y". - * - * \param yaw Object's world yaw. - * - */ - void set_world_pose(double x, double y, double yaw); - - /** - * \brief Function to add Object's corner world pose. - * - * \param i Object index - * - * \param j Corner index - * - * \param x Corner's world coordenate "x". - * - * \param y Corner's world coordenate "y". - * - */ - void add_corner_world_pose(unsigned int i, unsigned int j, double x, double y); - - /** - * \brief Function to add Object's repeat_info world pose. - * - * \param i Repeat info index - * - * \param x Objects's world coordenate "x". - * - * \param y Objects's world coordenate "y". - * - * \param yaw Object's world yaw. - * - */ - void add_repeat_info_world_pose(unsigned int i, double x, double y, double yaw); - - /** - * \brief Function to get Object's corners. - * - * \param corners Corners vector. - * - */ - void get_corners(std::vector<std::vector<Object_corner> > &corners); - - /** - * \brief Function to get Object's repeat info. - * - * \param corners Repeat info vector. - * - */ - void get_repeat_info(std::vector<Object_repeat> &repeat_info); - - /** - * \brief Function to know if an objects is a outline. - * - * \return Outline value. - * - */ - bool is_outline(void); - - /** - * \brief Function to know if an objects is has repeat info. - * - * \return Repeat value. - * - */ - bool is_repeat(void); - - /** - * \brief Function to print its info. - * - * \param world_pose To print world pose or not. - * - */ - void debug(bool world_pose = false); - - /** - * \brief Function to append each object spwan lines on a .launch file. - * - * \param filename The route to the output .launch file. - * - */ - void append_objects_spawn(std::string &filename); - - /** - * \brief Function to load the .xodr info. - * - * If an object is a continuous object is loaded as an outline object. - * - * \param object_info The object generated with XSD. - * - */ - void load(std::auto_ptr<objects::object_type> &object_info); -}; - -#endif diff --git a/include/adc_road.h b/include/adc_road.h deleted file mode 100644 index b0cf8a66701137f0b78e506f9f7d95eac79de695..0000000000000000000000000000000000000000 --- a/include/adc_road.h +++ /dev/null @@ -1,211 +0,0 @@ -#ifndef _ADC_ROAD_H -#define _ADC_ROAD_H - -#include <vector> -#include <string> -#include "adc_geometries.h" -#include "adc_signals.h" -#include "adc_object.h" - -#ifdef _HAVE_XSD -#include "../src/xml/OpenDRIVE_1.4H.hxx" -#endif -/** - * \class CAdcRoad - * - * \brief Class to store all the useful information of a OpenDrive road. - * - * It has access to each geometry and signal belonging to the road. - * - */ -class CAdcRoad -{ - private: - int id; ///< Road's unique ID. - std::string name; ///< Road's name. - double length;///< Road's length. - std::vector<CAdcGeometry*> geometries;///< Road's geometries. - std::vector<CAdcSignals*> signals; ///< Road's signals. - std::vector<CAdcObject*> objects; ///< Road's objects. - - /** - * \brief Function to clear geometries. - * - */ - inline void clear_geometries(void); - - /** - * \brief Function to add a geometry. - * - * \param geometry The road's geometry to add. - * - */ - inline void add_geometry(CAdcGeometry* geometry); - - /** - * \brief Function to clear signals. - * - */ - inline void clear_signals(void); - - /** - * \brief Function to add a sign. - * - * \param sign The road's sign to add. - * - */ - inline void add_signal(CAdcSignals* sign); - - /** - * \brief Function to clear signals. - * - */ - inline void clear_objects(void); - - /** - * \brief Function to add a sign. - * - * \param sign The road's sign to add. - * - */ - inline void add_object(CAdcObject* object); - - public: - /** - * \brief Default constructor. - * - */ - CAdcRoad(); - - /** - * \brief Copy constructor. - * - */ - CAdcRoad(const CAdcRoad &road); - - /** - * \brief Default constructor. - * - * \param id Road's id. - * - * \param length Road's length. - * - * \param name Road's name. - * - */ - CAdcRoad(int id, double length, std::string name); - - /** - * \brief Default destructor. - * - */ - ~CAdcRoad(); - - /** - * \brief assign operator = overload - * - */ - void operator = (const CAdcRoad &road); - - /** - * \brief Function to set road's id. - * - * \param id The road's id. - * - */ - void set_id(int id); - - /** - * \brief Function to get road's id. - * - * \return The road's id. - * - */ - int get_id(void); - - /** - * \brief Function to set road's length. - * - * \param length The road's length. - * - */ - void set_length(double length); - - /** - * \brief Function to get road's length. - * - * \return The road's length. - * - */ - double get_length(void); - - /** - * \brief Function to print each geometry and signal info. - * - * It calls CAdcGeometry::debug and CAdcSignals::debug functions. - * - */ - void debug(void); - - /** - * \brief Function to calculate the world pose of each sign. - * - * For each sign, it gets its track pose and check on wich - * geometry it belongs. After that it calculates its local pose and - * finally, the world pose. - * - * \param debug Boolean to print all the information stored on each signal at - * the end of the function. - */ - void calculate_signals_pose(bool debug = false); - - /** - * \brief Function to calculate the world pose of each object. - * - * For each object, it gets its track pose and check on wich - * geometry it belongs. After that it calculates its local pose and - * finally, the world pose. In case of an outline object it also calculates - * the world pose of each corner. - * - * \param debug Boolean to print all the information stored on each signal at - * the end of the function. - */ - void calculate_objects_pose(bool debug = false); - - /** - * \brief Function to get all the signs presents on circuit. - * - * \param signals Variable to store the information. - */ - void get_signals(std::vector<CAdcSignals*> &signals); - - /** - * \brief Function to append each sign spwan lines on a .launch file. - * - * It calls CAdcSignals::append_signs_spawn function. - * - * \param filename The route to the output .launch file. - * - */ - void append_signs_spawn(std::string &filename); - - /** - * \brief Function to append each object spwan lines on a .launch file. - * - * It calls CAdcObject::append_objects_spawn function. - * - * \param filename The route to the output .launch file. - * - */ - void append_objects_spawn(std::string &filename); - - /** - * \brief Function to load the .xodr info. - * - * \param road_info The objects generated with XSD. - * - */ - void load(std::auto_ptr<OpenDRIVE::road_type> &road_info); -}; - -#endif diff --git a/include/adc_signals.h b/include/adc_signals.h deleted file mode 100644 index d1347b60bf611e536373a568899e3d0707ea857d..0000000000000000000000000000000000000000 --- a/include/adc_signals.h +++ /dev/null @@ -1,211 +0,0 @@ -#ifndef _ADC_SIGNALS_H -#define _ADC_SIGNALS_H -#include <string> -#include <map> - -#ifdef _HAVE_XSD -#include "../src/xml/OpenDRIVE_1.4H.hxx" -#endif - -#define UNMARKEDINTERSECTION_TYPE "102" -#define UNMARKEDINTERSECTION_MARKER "alvar0" -#define STOPANDGIVEWAY_TYPE "206" -#define STOPANDGIVEWAY_MARKER "alvar1" -#define PARKINGAREA_TYPE "314" -#define PARKINGAREA_MARKER "alvar2" -#define HAVEWAY_TYPE "301" -#define HAVEWAY_MARKER "alvar3" -#define AHEADONLY_TYPE "209" -#define AHEADONLY_SUB_TYPE "30" -#define AHEADONLY_MARKER "alvar4" -#define GIVEWAY_TYPE "205" -#define GIVEWAY_MARKER "alvar5" -#define PEDESTRIANCROSSING_TYPE "350" -#define PEDESTRIANCROSSING_MARKER "alvar6" -#define ROUNDABOUT_TYPE "215" -#define ROUNDABOUT_MARKER "alvar7" -#define NOOVERTAKING_TYPE "276" -#define NOOVERTAKING_MARKER "alvar8" -#define NOENTRYVEHICULARTRAFFIC_TYPE "267" -#define NOENTRYVEHICULARTRAFFIC_MARKER "alvar9" -#define TESTCOURSEA9_TYPE "???" -#define TESTCOURSEA9_MARKER "alvar10" -#define ONEWAYSTREET_TYPE "220" -#define ONEWAYSTREET_MARKER "alvar11" -#define ROADWORKS_TYPE "123" -#define ROADWORKS_MARKER "alvar12" -#define MAX_VEL_TYPE "274" -#define MAX_VEL_50_MARKER "alvar13" -#define MAX_VEL_100_MARKER "alvar14" -#define SEMAPHORE_TYPE "1000001" -#define SEMAPHORE_MARKER "alvar15" - -#define DEFAULT_REVERSE_ORIENTATION false -/** - * \struct Sign_urdf_info. - * - * \brief A struct with the marker and type names of a sign. - */ -typedef struct -{ - std::string type; - std::string marker; -}Sign_urdf_info; - - -/** - * \class CAdcSignals - * - * \brief Class to store the data of a signal. - * - */ - -class CAdcSignals -{ - private: - int id; ///< Signal's id. - double s; ///< Signal's track coordenate "s". - double t; ///< Signal's track coordenate "t". - double heading; ///< Signal's track heading. - double world_x; ///< Signal's world coordenate "x". - double world_y; ///< Signal's world coordenate "y". - double world_yaw; ///< Signal's world yaw. - std::string type; ///< Signal's OpenDrive type. - std::string sub_type; ///< Signal's OpenDrive subtype. - int value; ///< Signal's value. - std::string text; ///< Signal's text. - static std::map<std::string, Sign_urdf_info> urdf_map; ///< Static map to link OpenDrive types with sign_urdf_info. - - /** - * \brief Static function to initialize urdf_map. - * - * If urdf_map size is bigger tan 0 it doesn't do anything. - */ - static void set_urdf_map(void); - public: - /** - * \brief Default constructor. - * - * It calls CAdcSignals::set_urdf_map function. - * - */ - CAdcSignals(); - - /** - * \brief Default constructor. - * - * It calls CAdcSignals::set_urdf_map function. - * - */ - CAdcSignals(const CAdcSignals &signal); - - /** - * \brief Class constructor. - * - * It calls CAdcSignals::set_urdf_map function. - * - * \param id Signal's id. - * - * \param s Signal's track coordenate "s". - * - * \param t Signal's track coordenate "t". - * - * \param heading Signal's track heading. - * - * \param type Signal's OpenDrive type. - * - * \param sub_type Signal's OpenDrive subtype. - * - * \param value Signal's value. - * - * \param text Signal's text. - * - * \param reverse boolean to add pi to the heading or not. - * - */ - CAdcSignals(int id, double s, double t, double heading, std::string type, std::string sub_type, int value, std::string text, bool reverse = false); - - /** - * \brief Default destructor. - * - */ - ~CAdcSignals(); - - /** - * \brief assign operator = overload - * - */ - void operator = (const CAdcSignals &signal); - - /** - * \brief Function to get signal's id. - * - * \return Signal's id. - * - */ - int get_id(void); - - /** - * \brief Function to get signal's track pose. - * - * \param s Output Signal's track coordenate "s". - * - * \param t Output Signal's track coordenate "t". - * - * \param heading Output Signal's track heading. - * - */ - void get_pose(double &s, double &t, double &heading); - - /** - * \brief Function to get signal's info. - * - * \param type Signal's OpenDrive type. - * - * \param sub_type Signal's OpenDrive subtype. - * - * \param value Signal's value. - * - * \param text Signal's text. - * - */ - void get_sign_info(std::string &type, std::string &sub_type, int &value, std::string &text); - - /** - * \brief Function to set signal's world pose. - * - * \param x Signal's world coordenate "x". - * - * \param y Signal's world coordenate "y". - * - * \param yaw Signal's world yaw. - * - */ - void set_world_pose(double x, double y, double yaw); - - /** - * \brief Function to print its info. - * - * \param world_pose To print world pose or not. - * - */ - void debug(bool world_pose = false); - - /** - * \brief Function to append each sign spwan lines on a .launch file. - * - * \param filename The route to the output .launch file. - * - */ - void append_sign_spawn(std::string &filename); - - /** - * \brief Function to load the .xodr info. - * - * \param signal_info The objects generated with XSD. - * - */ - void load(std::auto_ptr<signals::signal_type> &signal_info); -}; - -#endif diff --git a/include/generate_launch.h b/include/generate_launch.h new file mode 100644 index 0000000000000000000000000000000000000000..6bf567dd6c2508e0c2d15259cde2fc34edb5985d --- /dev/null +++ b/include/generate_launch.h @@ -0,0 +1,44 @@ +#ifndef _GENERATE_LAUNCH_H +#define _GENERATE_LAUNCH_H + +#include "opendrive_road.h" +#include "opendrive_road_segment.h" +#include "opendrive_signal.h" + +std::string get_full_name(std::string &path,std::string &file_name,const std::string &ext); +void generate_signals_launch(std::string &path,std::string &signals_file,COpendriveRoad &road); +void generate_objects_launch(std::string &path,std::string &objects_file,COpendriveRoad &road); + +#define UNMARKEDINTERSECTION_TYPE "102" +#define UNMARKEDINTERSECTION_MARKER "alvar0" +#define STOPANDGIVEWAY_TYPE "206" +#define STOPANDGIVEWAY_MARKER "alvar1" +#define PARKINGAREA_TYPE "314" +#define PARKINGAREA_MARKER "alvar2" +#define HAVEWAY_TYPE "301" +#define HAVEWAY_MARKER "alvar3" +#define AHEADONLY_TYPE "209" +#define AHEADONLY_SUB_TYPE "30" +#define AHEADONLY_MARKER "alvar4" +#define GIVEWAY_TYPE "205" +#define GIVEWAY_MARKER "alvar5" +#define PEDESTRIANCROSSING_TYPE "350" +#define PEDESTRIANCROSSING_MARKER "alvar6" +#define ROUNDABOUT_TYPE "215" +#define ROUNDABOUT_MARKER "alvar7" +#define NOOVERTAKING_TYPE "276" +#define NOOVERTAKING_MARKER "alvar8" +#define NOENTRYVEHICULARTRAFFIC_TYPE "267" +#define NOENTRYVEHICULARTRAFFIC_MARKER "alvar9" +#define TESTCOURSEA9_TYPE "???" +#define TESTCOURSEA9_MARKER "alvar10" +#define ONEWAYSTREET_TYPE "220" +#define ONEWAYSTREET_MARKER "alvar11" +#define ROADWORKS_TYPE "123" +#define ROADWORKS_MARKER "alvar12" +#define MAX_VEL_TYPE "274" +#define MAX_VEL_MARKER "alvar13" +#define SEMAPHORE_TYPE "1000001" +#define SEMAPHORE_MARKER "alvar15" + +#endif diff --git a/include/opendrive_to_gazebo.h b/include/opendrive_to_gazebo.h index a7f108c8b5a4ce44a6e49fdca828fe9379c2ddad..07c14c5b7a8c309fe709fabcb0277cca857004a7 100644 --- a/include/opendrive_to_gazebo.h +++ b/include/opendrive_to_gazebo.h @@ -1,26 +1,22 @@ -#ifndef _OPEN_DRIVE_FORMAT_H -#define _OPEN_DRIVE_FORMAT_H - -#include <string> -#include <vector> -#include "adc_circuit.h" -#include "adc_signals.h" - +#ifndef _OPENDRIVE_2_GAZEBO_H +#define _OPENDRIVE_2_GAZEBO_H /** - * \class COpenDriveFormat + * \class COpendrive2Gazebo * * \brief Class to store and use the information on a .xodr file with OpenDrive 1.4 standar. * */ -class COpenDriveFormat +class COpendrive2Gazebo { public: /** * \brief Default constructor. + * + * \param road_scale The scale of the road to divide by the objects and signals poses. * */ - COpenDriveFormat(); + COpendrive2Gazebo(double road_scale); /** * \brief Function to store on adc_circuit the useful information of a .xodr file. @@ -29,10 +25,8 @@ class COpenDriveFormat * * \param filename The route to the .xodr file. * - * \param debug Boolean to print all the information stored. - * */ - void load(std::string &filename, bool debug = false); + void load(std::string &filename); /** * \brief Function to calculate the world pose of each sign and object. @@ -61,7 +55,7 @@ class COpenDriveFormat * * It calls CAdcCircuit::generate_spawn_launch_files function. * - * \param dir The route to the output launch directory. + * \param dir The route to the output launch directory with the base name for both launch files. * */ void generate_spawn_launch_files(std::string &dir); @@ -70,7 +64,7 @@ class COpenDriveFormat * \brief Default destructor. * */ - ~COpenDriveFormat(); + ~COpendrive2Gazebo(); private: CAdcCircuit adc_circuit; ///< Variable to store and access to the circuit information. }; diff --git a/scripts/debian/postinst b/scripts/debian/postinst new file mode 100755 index 0000000000000000000000000000000000000000..ccd52689cdec61fe905edeb82668c87301c73a7a --- /dev/null +++ b/scripts/debian/postinst @@ -0,0 +1,22 @@ +#!/bin/bash + +set -e + +case "$1" in + configure) + echo " Trying to add library to ldconfig..." + /usr/share/iri/add_lib_to_ld_config.sh -l opendrive_to_gazebo -p && echo " Done." || echo " /usr/share/iri/add_lib_to_ld_config.sh doesn't exists. Download it from iriutils and execute it." + + ;; + abort-upgrade) + + ;; + abort-remove) + + ;; + abort-deconfigure) + + ;; +esac + +exit 0 diff --git a/scripts/debian/prerm b/scripts/debian/prerm new file mode 100644 index 0000000000000000000000000000000000000000..de602ede88bae1bc06c2873e1cb04da3a83cdecb --- /dev/null +++ b/scripts/debian/prerm @@ -0,0 +1,22 @@ +#!/bin/bash + +set -e + +case "$1" in + remove) + echo " Trying to remove library from ldconfig..." + /usr/share/iri/remove_lib_from_ld_config.sh -l opendrive_to_gazebo -p && echo " Done." || echo " /usr/share/iri/remove_lib_from_ld_config.sh doesn't exists. Download it from iriutils and execute it." + + ;; + upgrade) + + ;; + deconfigure) + + ;; + failed-upgrade) + + ;; +esac + +exit 0 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 513a54beb7aea38ca81df4022bd3c75ee975dce0..a2a7f7c0851616671a85345810b6ba4c274a69e3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,30 +1,25 @@ +SET(CMAKE_CXX_STANDARD 11) + # driver source files -SET(sources opendrive_to_gazebo.cpp adc_circuit.cpp adc_road.cpp adc_geometries.cpp adc_signals.cpp adc_object.cpp) +SET(sources opendrive_to_gazebo.cpp generate_launch.cpp) # application header files -SET(headers ../include/opendrive_to_gazebo.h ../include/adc_circuit.h ../include/adc_road.h ../include/adc_geometries.h ../include/adc_signals.h ../include/adc_object.h) +SET(headers ../include/generate_launch.h) + +ADD_DEFINITIONS(-D_HAVE_XSD) + # locate the necessary dependencies FIND_PACKAGE(iriutils REQUIRED) - -ADD_SUBDIRECTORY(xml) +FIND_PACKAGE(autonomous_driving_tools REQUIRED) # add the necessary include directories INCLUDE_DIRECTORIES(../include) INCLUDE_DIRECTORIES(${iriutils_INCLUDE_DIRS}) -# create the shared library -ADD_LIBRARY(opendrive_to_gazebo SHARED ${sources} ${XSD_SOURCES}) -# link necessary libraries -TARGET_LINK_LIBRARIES(opendrive_to_gazebo ${XSD_LIBRARY}) -TARGET_LINK_LIBRARIES(opendrive_to_gazebo ${iriutils_LIBRARIES}) - -ADD_DEPENDENCIES(opendrive_to_gazebo xsd_files_gen) +INCLUDE_DIRECTORIES(${autonomous_driving_tools_INCLUDE_DIRS}) -SET_SOURCE_FILES_PROPERTIES(${XSD_SOURCES} PROPERTIES GENERATED 1) +# create the executable file +ADD_EXECUTABLE(opendrive_to_gazebo ${sources}) -INSTALL(TARGETS opendrive_to_gazebo - RUNTIME DESTINATION bin - LIBRARY DESTINATION lib/iri/${PROJECT_NAME} - ARCHIVE DESTINATION lib/iri/${PROJECT_NAME}) -INSTALL(FILES ${headers} DESTINATION include/iri/${PROJECT_NAME}) -INSTALL(FILES ../Findopendrive_to_gazebo.cmake DESTINATION ${CMAKE_ROOT}/Modules/) +# link necessary libraries +TARGET_LINK_LIBRARIES(opendrive_to_gazebo ${iriutils_LIBRARIES}) +TARGET_LINK_LIBRARIES(opendrive_to_gazebo ${autonomous_driving_tools_LIBRARIES}) -ADD_SUBDIRECTORY(examples) diff --git a/src/adc_circuit.cpp b/src/adc_circuit.cpp deleted file mode 100644 index aa320b392ab8df6ac9460d4b858e21e5f9d2224c..0000000000000000000000000000000000000000 --- a/src/adc_circuit.cpp +++ /dev/null @@ -1,114 +0,0 @@ -#include "adc_circuit.h" -#include <sstream> -#include <iostream> -#include <fstream> -#include "exceptions.h" - -CAdcCircuit::CAdcCircuit() -{ - -} - -CAdcCircuit::~CAdcCircuit() -{ - clear_roads(); -} - -void CAdcCircuit::clear_roads(void) -{ - for (unsigned int i = 0; i < this->roads.size(); i++) - delete this->roads[i]; - std::vector<CAdcRoad*>().swap(this->roads); -} - -void CAdcCircuit::add_road(CAdcRoad* &road) -{ - this->roads.push_back(road); -} - -void CAdcCircuit::debug(void) -{ - for (unsigned int i = 0; i < this->roads.size(); i++) - this->roads[i]->debug(); -} - -void CAdcCircuit::calculate_world_poses(bool debug) -{ - for (unsigned int i = 0; i < this->roads.size(); i++) - { - this->roads[i]->calculate_signals_pose(debug); - this->roads[i]->calculate_objects_pose(debug); - } -} - -void CAdcCircuit::get_signals(std::vector<CAdcSignals*> &signals) -{ - std::vector<CAdcSignals*>().swap(signals); - for (unsigned int i = 0; i < this->roads.size(); i++) - this->roads[i]->get_signals(signals); -} - -void CAdcCircuit::generate_spawn_launch_files(std::string &dir) -{ - std::string signs_filename = dir + SIGNS_LAUNCH_FILE; - std::string objects_filename = dir + OBJECTS_LAUNCH_FILE; - - std::remove(signs_filename.c_str()); - std::remove(objects_filename.c_str()); - //First the header - std::ostringstream oss; - oss << "<?xml version=\"1.0\"?>" << std::endl << std::endl; - oss << "<launch>" << std::endl; - oss << " <arg name=\"parent\" default=\"map\"/>" << std::endl; - - std::ofstream signs_out_file; - signs_out_file.open(signs_filename.c_str(), std::ios_base::app); - if (!signs_out_file.is_open()) - throw CException(_HERE_,"CAdcCircuit::generate_spawn_launch_file -> The sings output file can't be open"); - signs_out_file << oss.str() << std::endl; - signs_out_file.close(); - - std::ofstream objects_out_file; - objects_out_file.open(objects_filename.c_str(), std::ios_base::app); - if (!objects_out_file.is_open()) - throw CException(_HERE_,"CAdcCircuit::generate_spawn_launch_file -> The objects output file can't be open"); - objects_out_file << oss.str() << std::endl; - objects_out_file.close(); - - //sign info - for (unsigned int i = 0; i < this->roads.size(); i++) - this->roads[i]->append_signs_spawn(signs_filename); - - //object info - for (unsigned int i = 0; i < this->roads.size(); i++) - this->roads[i]->append_objects_spawn(objects_filename); - - //End - oss.str(""); - oss.clear(); - oss << std::endl << "</launch>" << std::endl; - - signs_out_file.open(signs_filename.c_str(), std::ios_base::app); - if (!signs_out_file.is_open()) - throw CException(_HERE_,"CAdcCircuit::generate_spwan_launch_file -> The signs output file can't be open"); - signs_out_file << oss.str() << std::endl; - signs_out_file.close(); - - objects_out_file.open(objects_filename.c_str(), std::ios_base::app); - if (!objects_out_file.is_open()) - throw CException(_HERE_,"CAdcCircuit::generate_spwan_launch_file -> The objects output file can't be open"); - objects_out_file << oss.str() << std::endl; - objects_out_file.close(); -} - -void CAdcCircuit::load(std::auto_ptr<OpenDRIVE> &open_drive) -{ - ////////////////// Access road atributes - for (OpenDRIVE::road_iterator road_it(open_drive->road().begin()); road_it != open_drive->road().end(); ++road_it) - { - CAdcRoad *road = new CAdcRoad(); - std::auto_ptr<OpenDRIVE::road_type> road_info(new OpenDRIVE::road_type(*road_it)); - road->load(road_info); - add_road(road); - } -} \ No newline at end of file diff --git a/src/adc_geometries.cpp b/src/adc_geometries.cpp deleted file mode 100644 index 7875ae76430737e365744bbd2e3f2ba13421d5fa..0000000000000000000000000000000000000000 --- a/src/adc_geometries.cpp +++ /dev/null @@ -1,501 +0,0 @@ -#include "adc_geometries.h" -#include <cmath> -#include <iostream> - -///////////////////// CAdcGeometry ///////////////////// -CAdcGeometry::CAdcGeometry() -{ - this->min_s = 0.0; - this->max_s = 0.0; - this->x = 0.0; - this->y = 0.0; - this->heading = 0.0; -} - -CAdcGeometry::CAdcGeometry(const CAdcGeometry &geometry) -{ - this->min_s = geometry.min_s; - this->max_s = geometry.max_s; - this->x = geometry.x; - this->y = geometry.y; - this->heading = geometry.heading; -} - -CAdcGeometry::CAdcGeometry(double min_s, double max_s, double x, double y, double heading) -{ - this->min_s = min_s; - this->max_s = max_s; - this->x = x; - this->y = y; - this->heading = heading; -} - -CAdcGeometry::~CAdcGeometry() -{ - this->min_s = 0.0; - this->max_s = 0.0; - this->x = 0.0; - this->y = 0.0; - this->heading = 0.0; -} - -void CAdcGeometry::operator = (const CAdcGeometry &geometry) -{ - this->min_s = geometry.min_s; - this->max_s = geometry.max_s; - this->x = geometry.x; - this->y = geometry.y; - this->heading = geometry.heading; -} - -bool CAdcGeometry::get_world_pose(double s, double t, double heading, double &x, double &y, double &yaw) -{ - double local_u, local_v, local_yaw; - if (get_local_pose(s, t, heading, local_u, local_v, local_yaw)) - { - yaw = this->heading + local_yaw; - x = local_u*std::cos(this->heading) - local_v*std::sin(this->heading) + this->x; - y = local_u*std::sin(this->heading) + local_v*std::cos(this->heading) + this->y; - return true; - } - return false; -} - -bool CAdcGeometry::on_range(double s) -{ - if ((s < this->max_s) && (s >= this->min_s)) - return true; - return false; -} - -void CAdcGeometry::debug(void) -{ - std::cout << " Geometry from " << this->min_s << " to " << this->max_s << std::endl; - std::cout << " pose: x = " << this->x << ", y = " << this->y << ", yaw = " << this->heading << std::endl; - debug_param(); -} - -void CAdcGeometry::load(std::auto_ptr<planView::geometry_type> &geometry_info) -{ - this->min_s = (geometry_info->s().present() ? geometry_info->s().get() : 0.0); - this->max_s = min_s + (geometry_info->length().present() ? geometry_info->length().get() : 0.0); - this->x = (geometry_info->x().present() ? geometry_info->x().get() : 0.0); - this->y = (geometry_info->y().present() ? geometry_info->y().get() : 0.0); - this->heading = (geometry_info->hdg().present() ? geometry_info->hdg().get() : 0.0); - load_param(geometry_info); -} - -// CAdcGeometry::set_base_paremeters(double min_s, double max_s, double x, double y, double heading) -// { -// this->min_s = min_s; -// this->max_s = max_s; -// this->x = x; -// this->y = y; -// this->heading = heading; -// } - - -///////////////////// CAdcGeoLine ///////////////////// -CAdcGeoLine::CAdcGeoLine() -{ - -} - -CAdcGeoLine::CAdcGeoLine(const CAdcGeoLine &line): -CAdcGeometry(line) -{ - -} - -CAdcGeoLine::CAdcGeoLine(double min_s, double max_s, double x, double y, double heading): -CAdcGeometry(min_s, max_s, x, y, heading) -{ - -} - -CAdcGeoLine::~CAdcGeoLine() -{ - -} - -void CAdcGeoLine::operator = (const CAdcGeoLine &line) -{ - CAdcGeometry::operator = (line); -} - -CAdcGeometry* CAdcGeoLine::clone() const -{ - return new CAdcGeoLine(*this); -} - -bool CAdcGeoLine::get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw) -{ - u = s - this->min_s; - v = t; - yaw = heading; - return true; -} - -void CAdcGeoLine::debug_param(void) -{ - -} - -void CAdcGeoLine::load_param(std::auto_ptr<planView::geometry_type> &geometry_info) -{ - -} - - -///////////////////// CAdcGeoSpiral ///////////////////// -CAdcGeoSpiral::CAdcGeoSpiral() -{ - this->curv_start = 0.0; - this->curv_end = 0.0; -} - -CAdcGeoSpiral::CAdcGeoSpiral(const CAdcGeoSpiral &spiral): -CAdcGeometry(spiral) -{ - this->curv_start = spiral.curv_start; - this->curv_end = spiral.curv_end; -} - -CAdcGeoSpiral::CAdcGeoSpiral(double min_s, double max_s, double x, double y, double heading): -CAdcGeometry(min_s, max_s, x, y, heading) -{ - -} - -CAdcGeoSpiral::CAdcGeoSpiral(double min_s, double max_s, double x, double y, double heading, double curv_start, double curv_end): -CAdcGeometry(min_s, max_s, x, y, heading) -{ - this->curv_start = curv_start; - this->curv_end = curv_end; -} - -CAdcGeoSpiral::~CAdcGeoSpiral() -{ - this->curv_start = 0.0; - this->curv_end = 0.0; -} - -void CAdcGeoSpiral::operator = (const CAdcGeoSpiral &spiral) -{ - CAdcGeometry::operator = (spiral); - this->curv_start = spiral.curv_start; - this->curv_end = spiral.curv_end; -} - -CAdcGeometry* CAdcGeoSpiral::clone() const -{ - return new CAdcGeoSpiral(*this); -} - -void CAdcGeoSpiral::set_params(double curv_start, double curv_end) -{ - this->curv_start = curv_start; - this->curv_end = curv_end; -} - -bool CAdcGeoSpiral::get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw) -{ - u = 0.0; - v = 0.0; - yaw = 0.0; - std::cout << "not supported" << std::endl; - return false; -} - -void CAdcGeoSpiral::debug_param(void) -{ - std::cout << " params: start_curvature = " << this->curv_start << ", end_curvature = " << this->curv_end << std::endl; -} - -void CAdcGeoSpiral::load_param(std::auto_ptr<planView::geometry_type> &geometry_info) -{ - this->curv_start = (geometry_info->spiral().get().curvStart().present() ? geometry_info->spiral().get().curvStart().get() : 0.0); - this->curv_end = (geometry_info->spiral().get().curvEnd().present() ? geometry_info->spiral().get().curvEnd().get() : 0.0); -} - - -///////////////////// CAdcGeoArc ///////////////////// -CAdcGeoArc::CAdcGeoArc() -{ - this->curvature = 0.0; -} - -CAdcGeoArc::CAdcGeoArc(const CAdcGeoArc &arc): -CAdcGeometry(arc) -{ - this->curvature = arc.curvature; -} - -CAdcGeoArc::CAdcGeoArc(double min_s, double max_s, double x, double y, double heading): -CAdcGeometry(min_s, max_s, x, y, heading) -{ - -} - -CAdcGeoArc::CAdcGeoArc(double min_s, double max_s, double x, double y, double heading, double curvature): -CAdcGeometry(min_s, max_s, x, y, heading) -{ - this->curvature = curvature; -} - -CAdcGeoArc::~CAdcGeoArc() -{ - this->curvature = 0.0; -} - -void CAdcGeoArc::operator = (const CAdcGeoArc &arc) -{ - CAdcGeometry::operator = (arc); - this->curvature = arc.curvature; -} - -CAdcGeometry* CAdcGeoArc::clone() const -{ - return new CAdcGeoArc(*this); -} - -void CAdcGeoArc::set_params(double curvature) -{ - this->curvature = curvature; -} - -bool CAdcGeoArc::get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw) -{ - s -= this->min_s; - double alpha = std::fabs(s*this->curvature); - bool pos_arc = (this->curvature < 0.0 ? false : true); - u = std::sin(alpha)/this->curvature - t*std::sin(alpha)*(pos_arc ? 1 : -1); - v = (1 - std::cos(alpha))*(pos_arc ? 1 : -1)/this->curvature + t*std::cos(alpha); - yaw = heading + alpha*(pos_arc ? 1 : -1); - return true; -} - -void CAdcGeoArc::debug_param(void) -{ - std::cout << " params: curvature = " << this->curvature << std::endl; -} - -void CAdcGeoArc::load_param(std::auto_ptr<planView::geometry_type> &geometry_info) -{ - this->curvature = (geometry_info->arc().get().curvature().present() ? geometry_info->arc().get().curvature().get() : 0.0); -} - - -///////////////////// CAdcGeoPoly3 ///////////////////// -CAdcGeoPoly3::CAdcGeoPoly3() -{ - this->param.a = 0.0; - this->param.b = 0.0; - this->param.c = 0.0; - this->param.d = 0.0; -} - -CAdcGeoPoly3::CAdcGeoPoly3(const CAdcGeoPoly3 &poly3): -CAdcGeometry(poly3) -{ - this->param.a = poly3.param.a; - this->param.b = poly3.param.b; - this->param.c = poly3.param.c; - this->param.d = poly3.param.d; -} - -CAdcGeoPoly3::CAdcGeoPoly3(double min_s, double max_s, double x, double y, double heading): -CAdcGeometry(min_s, max_s, x, y, heading) -{ - -} - -CAdcGeoPoly3::CAdcGeoPoly3(double min_s, double max_s, double x, double y, double heading, Adc_poly3_param param): -CAdcGeometry(min_s, max_s, x, y, heading) -{ - this->param.a = param.a; - this->param.b = param.b; - this->param.c = param.c; - this->param.d = param.d; -} - -CAdcGeoPoly3::~CAdcGeoPoly3() -{ - this->param.a = 0.0; - this->param.b = 0.0; - this->param.c = 0.0; - this->param.d = 0.0; -} - -void CAdcGeoPoly3::operator = (const CAdcGeoPoly3 &poly3) -{ - CAdcGeometry::operator = (poly3); - this->param.a = poly3.param.a; - this->param.b = poly3.param.b; - this->param.c = poly3.param.c; - this->param.d = poly3.param.d; -} - -CAdcGeometry* CAdcGeoPoly3::clone() const -{ - return new CAdcGeoPoly3(*this); -} - -void CAdcGeoPoly3::set_params(Adc_poly3_param param) -{ - this->param.a = param.a; - this->param.b = param.b; - this->param.c = param.c; - this->param.d = param.d; -} - -bool CAdcGeoPoly3::get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw) -{ - u = 0.0; - v = 0.0; - yaw = 0.0; - std::cout << "not supported" << std::endl; - return false; -} - -void CAdcGeoPoly3::debug_param(void) -{ - std::cout << " params: a = " << this->param.a << ", b = " << this->param.b << ", c = " << this->param.c << ", d = " << this->param.d << std::endl; -} - -void CAdcGeoPoly3::load_param(std::auto_ptr<planView::geometry_type> &geometry_info) -{ - this->param.a = (geometry_info->poly3().get().a().present() ? geometry_info->poly3().get().a().get() : 0.0); - this->param.b = (geometry_info->poly3().get().b().present() ? geometry_info->poly3().get().b().get() : 0.0); - this->param.c = (geometry_info->poly3().get().c().present() ? geometry_info->poly3().get().c().get() : 0.0); - this->param.d = (geometry_info->poly3().get().d().present() ? geometry_info->poly3().get().d().get() : 0.0); -} - - -///////////////////// CAdcGeoParamPoly3 ///////////////////// -CAdcGeoParamPoly3::CAdcGeoParamPoly3() -{ - this->u_param.a = 0.0; - this->u_param.b = 0.0; - this->u_param.c = 0.0; - this->u_param.d = 0.0; - this->v_param.a = 0.0; - this->v_param.b = 0.0; - this->v_param.c = 0.0; - this->v_param.d = 0.0; - this->normalized = true; -} - -CAdcGeoParamPoly3::CAdcGeoParamPoly3(const CAdcGeoParamPoly3 ¶mpoly3): -CAdcGeometry(parampoly3) -{ - this->u_param.a = parampoly3.u_param.a; - this->u_param.b = parampoly3.u_param.b; - this->u_param.c = parampoly3.u_param.c; - this->u_param.d = parampoly3.u_param.d; - this->v_param.a = parampoly3.v_param.a; - this->v_param.b = parampoly3.v_param.b; - this->v_param.c = parampoly3.v_param.c; - this->v_param.d = parampoly3.v_param.d; - this->normalized = parampoly3.normalized; -} - -CAdcGeoParamPoly3::CAdcGeoParamPoly3(double min_s, double max_s, double x, double y, double heading): -CAdcGeometry(min_s, max_s, x, y, heading) -{ - -} - -CAdcGeoParamPoly3::CAdcGeoParamPoly3(double min_s, double max_s, double x, double y, double heading, Adc_poly3_param u_param, Adc_poly3_param v_param, bool normalized): -CAdcGeometry(min_s, max_s, x, y, heading) -{ - this->u_param.a = u_param.a; - this->u_param.b = u_param.b; - this->u_param.c = u_param.c; - this->u_param.d = u_param.d; - this->v_param.a = v_param.a; - this->v_param.b = v_param.b; - this->v_param.c = v_param.c; - this->v_param.d = v_param.d; - this->normalized = normalized; -} - -CAdcGeoParamPoly3::~CAdcGeoParamPoly3() -{ - this->u_param.a = 0.0; - this->u_param.b = 0.0; - this->u_param.c = 0.0; - this->u_param.d = 0.0; - this->v_param.a = 0.0; - this->v_param.b = 0.0; - this->v_param.c = 0.0; - this->v_param.d = 0.0; - this->normalized = true; -} - -void CAdcGeoParamPoly3::operator = (const CAdcGeoParamPoly3 ¶mpoly3) -{ - CAdcGeometry::operator = (parampoly3); - this->u_param.a = parampoly3.u_param.a; - this->u_param.b = parampoly3.u_param.b; - this->u_param.c = parampoly3.u_param.c; - this->u_param.d = parampoly3.u_param.d; - this->v_param.a = parampoly3.v_param.a; - this->v_param.b = parampoly3.v_param.b; - this->v_param.c = parampoly3.v_param.c; - this->v_param.d = parampoly3.v_param.d; - this->normalized = parampoly3.normalized; -} - -CAdcGeometry* CAdcGeoParamPoly3::clone() const -{ - return new CAdcGeoParamPoly3(*this); -} - -void CAdcGeoParamPoly3::set_params(Adc_poly3_param u_param, Adc_poly3_param v_param, bool normalized) -{ - this->u_param.a = u_param.a; - this->u_param.b = u_param.b; - this->u_param.c = u_param.c; - this->u_param.d = u_param.d; - this->v_param.a = v_param.a; - this->v_param.b = v_param.b; - this->v_param.c = v_param.c; - this->v_param.d = v_param.d; - this->normalized = normalized; -} - -bool CAdcGeoParamPoly3::get_local_pose(double s, double t, double heading, double &u, double &v, double &yaw) -{ - double p = (this->normalized ? (s - this->min_s)/(this->max_s - this->min_s): (s - this->min_s)); - double p2 = p*p; - double p3 = p2*p; - double du = this->u_param.b + 2*this->u_param.c*p + 3*this->u_param.d*p2; - double dv = this->v_param.b + 2*this->v_param.c*p + 3*this->v_param.d*p2; - double alpha = std::atan2(dv, du); - u = this->u_param.a + this->u_param.b*p + this->u_param.c*p2 + this->u_param.d*p3 - t*std::sin(alpha); - v = this->v_param.a + this->v_param.b*p + this->v_param.c*p2 + this->v_param.d*p3 + t*std::cos(alpha); - yaw = heading + alpha; - return true; -} - -void CAdcGeoParamPoly3::debug_param(void) -{ - std::cout << " U params: a = " << this->u_param.a << ", b = " << this->u_param.b << ", c = " << this->u_param.c << ", d = " << this->u_param.d << std::endl; - std::cout << " V params: a = " << this->v_param.a << ", b = " << this->v_param.b << ", c = " << this->v_param.c << ", d = " << this->v_param.d << std::endl; -} - -void CAdcGeoParamPoly3::load_param(std::auto_ptr<planView::geometry_type> &geometry_info) -{ - this->u_param.a = (geometry_info->paramPoly3().get().aU().present() ? geometry_info->paramPoly3().get().aU().get() : 0.0); - this->u_param.b = (geometry_info->paramPoly3().get().bU().present() ? geometry_info->paramPoly3().get().bU().get() : 0.0); - this->u_param.c = (geometry_info->paramPoly3().get().cU().present() ? geometry_info->paramPoly3().get().cU().get() : 0.0); - this->u_param.d = (geometry_info->paramPoly3().get().dU().present() ? geometry_info->paramPoly3().get().dU().get() : 0.0); - this->v_param.a = (geometry_info->paramPoly3().get().aV().present() ? geometry_info->paramPoly3().get().aV().get() : 0.0); - this->v_param.b = (geometry_info->paramPoly3().get().bV().present() ? geometry_info->paramPoly3().get().bV().get() : 0.0); - this->v_param.c = (geometry_info->paramPoly3().get().cV().present() ? geometry_info->paramPoly3().get().cV().get() : 0.0); - this->v_param.d = (geometry_info->paramPoly3().get().dV().present() ? geometry_info->paramPoly3().get().dV().get() : 0.0); - this->normalized = true; - if (geometry_info->paramPoly3().get().pRange().present() && geometry_info->paramPoly3().get().pRange().get() == pRange::arcLength) - this->normalized = false; -} diff --git a/src/adc_object.cpp b/src/adc_object.cpp deleted file mode 100644 index 12bbb0b04d1667c3940bb0883e7b7677c0555948..0000000000000000000000000000000000000000 --- a/src/adc_object.cpp +++ /dev/null @@ -1,404 +0,0 @@ -#include "adc_object.h" -#include <cmath> -#include <iostream> -#include <sstream> -#include <fstream> -#include "exceptions.h" - -CAdcObject::CAdcObject() -{ - this->id = 0; - this->s = 0; - this->t = 0; - this->heading = 0; - this->world_x = 0; - this->world_y = 0; - this->world_yaw = 0; - this->valid_length = 0; - this->length = 0; - this->width = 0; - this->radius = 0; - this->height = 0; - this->type = ""; - this->name = ""; - this->outline = false; - this->repeat = false; - std::vector<std::vector<Object_corner> >().swap(this->corners); - std::vector<Object_repeat>().swap(this->repeat_info); -} - -CAdcObject::~CAdcObject() -{ - this->id = 0; - this->s = 0; - this->t = 0; - this->heading = 0; - this->world_x = 0; - this->world_y = 0; - this->world_yaw = 0; - this->valid_length = 0; - this->length = 0; - this->width = 0; - this->radius = 0; - this->height = 0; - this->type = ""; - this->name = ""; - this->outline = false; - this->repeat = false; - std::vector<std::vector<Object_corner> >().swap(this->corners); - std::vector<Object_repeat>().swap(this->repeat_info); -} - -CAdcObject::CAdcObject(const CAdcObject & object) -{ - this->id = object.id; - this->s = object.s; - this->t = object.t; - this->heading = object.heading; - this->world_x = object.world_x; - this->world_y = object.world_y; - this->world_yaw = object.world_yaw; - this->valid_length = object.valid_length; - this->length = object.length; - this->width = object.width; - this->radius = object.radius; - this->height = object.height; - this->type = object.type; - this->name = object.name; - this->outline = object.outline; - this->repeat = object.repeat; - - std::vector<std::vector<Object_corner> >().swap(this->corners); - for (int i = 0; i < object.corners.size(); i++) - { - std::vector<Object_corner> corner_aux; - for (int j = 0; j < object.corners[i].size(); j++) - corner_aux.push_back(object.corners[i][j]); - this->corners.push_back(corner_aux); - } - - std::vector<Object_repeat>().swap(this->repeat_info); - for (int i = 0; i < object.repeat_info.size(); i++) - this->repeat_info.push_back(object.repeat_info[i]); -} - -CAdcObject::CAdcObject(int id, double s, double t, double heading, std::string type, std::string name, double width, double length, double height, double valid_length) -{ - this->id = id; - this->s = s; - this->t = t; - this->heading = heading; - this->world_x = 0; - this->world_y = 0; - this->world_yaw = 0; - this->valid_length = valid_length; - this->length = length; - this->width = width; - this->radius = 0.0; - this->height = height; - this->type = type; - this->name = name; - this->outline = false; - this->repeat = false; - std::vector<std::vector<Object_corner> >().swap(this->corners); - std::vector<Object_repeat>().swap(this->repeat_info); -} - -CAdcObject::CAdcObject(int id, double s, double t, double heading, std::string type, std::string name, double radius, double height, double valid_length) -{ - this->id = id; - this->s = s; - this->t = t; - this->heading = heading; - this->world_x = 0; - this->world_y = 0; - this->world_yaw = 0; - this->valid_length = valid_length; - this->length = 0.0; - this->width = 0.0; - this->radius = radius; - this->height = height; - this->type = type; - this->name = name; - this->outline = false; - this->repeat = false; - std::vector<std::vector<Object_corner> >().swap(this->corners); - std::vector<Object_repeat>().swap(this->repeat_info); -} - -CAdcObject::CAdcObject(int id, double s, double t, double heading, std::string type, std::string name, double valid_length, std::vector<std::vector<Object_corner> > &corners) -{ - this->id = id; - this->s = s; - this->t = t; - this->heading = heading; - this->world_x = 0; - this->world_y = 0; - this->world_yaw = 0; - this->valid_length = valid_length; - this->length = 0.0; - this->width = 0.0; - this->radius = 0.0; - this->height = 0.0; - this->type = type; - this->name = name; - this->outline = true; - this->repeat = false; - std::vector<std::vector<Object_corner> >().swap(this->corners); - for (int i = 0; i < corners.size(); i++) - { - std::vector<Object_corner> corner_aux; - for (int j = 0; j < corners[i].size(); j++) - corner_aux.push_back(corners[i][j]); - this->corners.push_back(corner_aux); - } - std::vector<Object_repeat>().swap(this->repeat_info); -} - -void CAdcObject::operator = (const CAdcObject &object) -{ - this->id = object.id; - this->s = object.s; - this->t = object.t; - this->heading = object.heading; - this->world_x = object.world_x; - this->world_y = object.world_y; - this->world_yaw = object.world_yaw; - this->valid_length = object.valid_length; - this->length = object.length; - this->width = object.width; - this->radius = object.radius; - this->height = object.height; - this->type = object.type; - this->name = object.name; - this->outline = object.outline; - this->repeat = object.repeat; - std::vector<std::vector<Object_corner> >().swap(this->corners); - for (int i = 0; i < object.corners.size(); i++) - { - std::vector<Object_corner> corner_aux; - for (int j = 0; j < object.corners[i].size(); j++) - corner_aux.push_back(object.corners[i][j]); - this->corners.push_back(corner_aux); - } - std::vector<Object_repeat>().swap(this->repeat_info); - for (int i = 0; i < object.repeat_info.size(); i++) - this->repeat_info.push_back(object.repeat_info[i]); -} - -void CAdcObject::get_pose(double &s, double &t, double &heading) -{ - s = this->s; - t = this->t; - heading = this->heading; -} - -void CAdcObject::set_world_pose(double x, double y, double yaw) -{ - this->world_x = x; - this->world_y = y; - this->world_yaw = yaw; -} - -void CAdcObject::add_corner_world_pose(unsigned int i, unsigned int j, double x, double y) -{ - this->corners[i][j].world_x = x; - this->corners[i][j].world_y = y; -} - -void CAdcObject::get_corners(std::vector<std::vector<Object_corner> > &corners) -{ - std::vector<std::vector<Object_corner> >().swap(corners); - //resize better than push_back - for (int i = 0; i < this->corners.size(); i++) - { - std::vector<Object_corner> corner_aux; - for (int j = 0; j < this->corners[i].size(); j++) - corner_aux.push_back(this->corners[i][j]); - corners.push_back(corner_aux); - } -} - -bool CAdcObject::is_outline(void) -{ - return this->outline; -} - -bool CAdcObject::is_repeat(void) -{ - return this->repeat; -} - -void CAdcObject::get_repeat_info(std::vector<Object_repeat> &repeat_info) -{ - std::vector<Object_repeat>().swap(this->repeat_info); - for (int i = 0; i < this->repeat_info.size(); i++) - repeat_info.push_back(this->repeat_info[i]); -} - -void CAdcObject::add_repeat_info_world_pose(unsigned int i, double x, double y, double yaw) -{ - this->repeat_info[i].world_x.push_back(x); - this->repeat_info[i].world_y.push_back(y); - this->repeat_info[i].world_yaw.push_back(yaw); -} - -void CAdcObject::debug(bool world_pose) -{ - std::cout << " Object id = " << this->id << "; type = " << this->type << ", name = " << this->name << std::endl; - std::cout << " length = " << this->length << "; width = " << this->width << "; radius = " << this->radius << "; height = " << height << std::endl; - std::cout << " pose: s = " << this->s << ", t = " << this->t << ", heading = " << this->heading << "; valid_length = " << valid_length << std::endl; - if (world_pose) - std::cout << " world pose: x = " << this->world_x << ", y = " << this->world_y << ", yaw = " << this->world_yaw << std::endl; - if (this->outline) - { - for (int i = 0; i < this->corners.size(); i++) - { - std::cout << " Subobject_" << i << ":" << std::endl; - for (int j = 0; j < this->corners[i].size(); j++) - { - std::cout << " corner_" << j << ": s = " << this->corners[i][j].s << ", t = " << this->corners[i][j].t << ", height = " << this->corners[i][j].height << std::endl; - if (world_pose) - std::cout << " world_corner_" << j << ": x = " << this->corners[i][j].world_x << ", y = " << this->corners[i][j].world_y << std::endl; - } - } - } - if (this->repeat) - { - int count = 0; - for (int i = 0; i < this->repeat_info.size(); i++) - { - for (int j = 0; j < this->repeat_info[i].n; j++) - { - std::cout << " Subobject_" << count << ":" << std::endl; - std::cout << " pose: s = " << this->repeat_info[i].s + j*this->repeat_info[i].distance << ", t = " << this->t << ", heading = " << this->heading << std::endl; - if (world_pose) - std::cout << " world pose: x = " << this->repeat_info[i].world_x[j] << ", y = " << this->repeat_info[i].world_y[j] << ", yaw = " << this->repeat_info[i].world_yaw[j] << std::endl; - count++; - } - } - } -} - -void CAdcObject::append_objects_spawn(std::string &filename) -{ - if (this->repeat || this->outline) - { - std::cout << "WARNING: Outline and repeat objects not supported" << std::endl; - return; - } - std::ostringstream oss; - oss << std::endl << " <include file=\"$(find iri_object_description)/launch/spawn_object.launch\">" << std::endl; - oss << " <arg name=\"name\" value=\"" << this->name << this->id << "\"/>" << std::endl; - oss << " <arg name=\"model\" value=\"" << (this->radius != 0.0 ? "cyl": "box") << "\"/>" << std::endl; - - if (this->radius != 0.0) - oss << " <arg name=\"radius\" value=\"" << this->radius << "\"/>" << std::endl; - else - { - oss << " <arg name=\"length\" value=\"" << this->length << "\"/>" << std::endl; - oss << " <arg name=\"width\" value=\"" << this->width << "\"/>" << std::endl; - } - - oss << " <arg name=\"height\" value=\"" << this->height << "\"/>" << std::endl; - oss << " <arg name=\"x\" value=\"" << this->world_x << "\"/>" << std::endl; - oss << " <arg name=\"y\" value=\"" << this->world_y << "\"/>" << std::endl; - oss << " <arg name=\"yaw\" value=\"" << this->world_yaw << "\"/>" << std::endl; - oss << " <arg name=\"parent\" value=\"$(arg parent)\"/>" << std::endl; - - oss << " </include>" << std::endl; - std::ofstream out_file; - out_file.open(filename.c_str(), std::ios_base::app); - if (!out_file.is_open()) - throw CException(_HERE_,"CAdcObject::append_objects_spawn -> The output file can't be open"); - out_file << oss.str() << std::endl; - out_file.close(); -} - -void CAdcObject::load(std::auto_ptr<objects::object_type> &object_info) -{ - std::stringstream ss(object_info->id().get()); - ss >> this->id; - this->s = (object_info->s().present() ? object_info->s().get() : 0.0); - this->t = (object_info->t().present() ? object_info->t().get() : 0.0); - this->heading = (object_info->hdg().present() ? object_info->hdg().get() : 0.0); - this->valid_length = (object_info->validLength().present() ? object_info->validLength().get() : 0.0); - this->length = (object_info->length().present() ? object_info->length().get() : 0.0); - this->width = (object_info->width().present() ? object_info->width().get() : 0.0); - this->radius = (object_info->radius().present() ? object_info->radius().get() : 0.0); - this->height = (object_info->height().present() ? object_info->height().get() : 0.0); - this->type = (object_info->type().present() ? object_info->type().get() : ""); - this->name = (object_info->name().present() ? object_info->name().get() : ""); - //radius and length and width warning - std::vector<std::vector<Object_corner> >().swap(this->corners); - std::vector<Object_repeat>().swap(this->repeat_info); - - if (object_info->outline().present()) - { - this->outline = true; - - std::vector<Object_corner> corner_aux; - for (outline::cornerRoad_iterator cornerRoad_it(object_info->outline().get().cornerRoad().begin()); cornerRoad_it != object_info->outline().get().cornerRoad().end(); ++cornerRoad_it) - { - Object_corner corner; - corner.s = (cornerRoad_it->s().present() ? cornerRoad_it->s().get() : 0.0); - corner.t = (cornerRoad_it->t().present() ? cornerRoad_it->t().get() : 0.0); - corner.height = (cornerRoad_it->height().present() ? cornerRoad_it->height().get() : 0.0); - corner_aux.push_back(corner); - } - - for (outline::cornerLocal_iterator cornerLocal_it(object_info->outline().get().cornerLocal().begin()); cornerLocal_it != object_info->outline().get().cornerLocal().end(); ++cornerLocal_it) - { - Object_corner corner; - double u = (cornerLocal_it->u().present() ? cornerLocal_it->u().get() : 0.0); - double v = (cornerLocal_it->v().present() ? cornerLocal_it->v().get() : 0.0); - - - corner.s = this->s + u*cos(this->heading) - v*sin(this->heading); - corner.t = this->t + u*sin(this->heading) + v*cos(this->heading); - corner.height = (cornerLocal_it->height().present() ? cornerLocal_it->height().get() : 0.0); - corner_aux.push_back(corner); - } - this->corners.push_back(corner_aux); - } - for (object::repeat_iterator repeat_it(object_info->repeat().begin()); repeat_it != object_info->repeat().end(); ++repeat_it) - { - if (repeat_it->distance().present() && repeat_it->distance().get() == 0.0) - { - this->outline = true; - std::vector<Object_corner> corner_aux; - Object_corner corner; - corner.s = (repeat_it->s().present() ? repeat_it->s().get() : this->s); - corner.t = (repeat_it->tStart().present() ? repeat_it->tStart().get() : this->t); - corner.height = (repeat_it->heightStart().present() ? repeat_it->heightStart().get() : this->height); - corner_aux.push_back(corner); - - corner.t += (repeat_it->widthStart().present() ? repeat_it->widthStart().get() : this->width); - corner_aux.push_back(corner); - - corner.s += (repeat_it->length().present() ? repeat_it->length().get() : this->valid_length); - double t_end_corner = (repeat_it->tEnd().present() ? repeat_it->tEnd().get() : this->t); - corner.t = t_end_corner + (repeat_it->widthEnd().present() ? repeat_it->widthEnd().get() : this->width); - corner.height = (repeat_it->heightEnd().present() ? repeat_it->heightEnd().get() : this->height); - corner_aux.push_back(corner); - - corner.t = t_end_corner; - corner_aux.push_back(corner); - - this->corners.push_back(corner_aux); - } - else if (repeat_it->distance().present()) - { - this->repeat = true; - Object_repeat repeat_aux; - repeat_aux.distance = repeat_it->distance().get(); - double length = (repeat_it->length().present() ? repeat_it->length().get() : this->valid_length); - repeat_aux.n = (repeat_aux.distance == 0.0 ? 1 : (int) std::floor(length/repeat_aux.distance)); - repeat_aux.s = (repeat_it->s().present() ? repeat_it->s().get() : this->s); - repeat_aux.t = this->t; - repeat_aux.heading = this->heading; - - this->repeat_info.push_back(repeat_aux); - } - } -} \ No newline at end of file diff --git a/src/adc_road.cpp b/src/adc_road.cpp deleted file mode 100644 index 18bed174f256829f259cd25ba7a5c3854d36fbdb..0000000000000000000000000000000000000000 --- a/src/adc_road.cpp +++ /dev/null @@ -1,300 +0,0 @@ -#include "adc_road.h" - -#include <iostream> - -CAdcRoad::CAdcRoad() -{ - this->id = 0; - this->length = 0.0; - this->name = ""; -} - -CAdcRoad::CAdcRoad(int id, double length, std::string name) -{ - this->id = id; - this->length = length; - this->name = name; -} - -CAdcRoad::CAdcRoad(const CAdcRoad &road) -{ - this->id = road.id; - this->length = road.length; - this->name = road.name; - clear_signals(); - for (unsigned int i = 0; i < road.signals.size(); i++) - this->signals.push_back(new CAdcSignals(*road.signals[i])); - clear_geometries(); - for (unsigned int i = 0; i < road.geometries.size(); i++) - this->geometries.push_back(road.geometries[i]->clone()); -} - -CAdcRoad::~CAdcRoad() -{ - this->id = 0; - this->length = 0.0; - this->name = ""; - clear_geometries(); - clear_signals(); -} - -void CAdcRoad::operator = (const CAdcRoad &road) -{ - this->id = road.id; - this->length = road.length; - this->name = road.name; - clear_signals(); - for (unsigned int i = 0; i < road.signals.size(); i++) - this->signals.push_back(new CAdcSignals(*road.signals[i])); - clear_geometries(); - for (unsigned int i = 0; i < road.geometries.size(); i++) - this->geometries.push_back(road.geometries[i]->clone()); -} - -void CAdcRoad::clear_geometries(void) -{ - for (unsigned int i = 0; i < this->geometries.size(); i++) - delete this->geometries[i]; - std::vector<CAdcGeometry*>().swap(this->geometries); -} - -void CAdcRoad::add_geometry(CAdcGeometry* geometry) -{ - this->geometries.push_back(geometry); -} - -void CAdcRoad::clear_signals(void) -{ - for (unsigned int i = 0; i < this->signals.size(); i++) - delete this->signals[i]; - std::vector<CAdcSignals*>().swap(this->signals); -} - -void CAdcRoad::add_signal(CAdcSignals* sign) -{ - this->signals.push_back(sign); -} - -void CAdcRoad::clear_objects(void) -{ - for (unsigned int i = 0; i < this->objects.size(); i++) - delete this->objects[i]; - std::vector<CAdcObject*>().swap(this->objects); -} - -void CAdcRoad::add_object(CAdcObject* object) -{ - this->objects.push_back(object); -} - -void CAdcRoad::set_id(int id) -{ - this->id = id; -} - -int CAdcRoad::get_id(void) -{ - return this->id; -} - -void CAdcRoad::set_length(double length) -{ - this->length = length; -} - -double CAdcRoad::get_length(void) -{ - return this->length; -} - -void CAdcRoad::debug(void) -{ - std::cout << "Road " << this->name << " id = " << this->id << "; length = " << this->length << std::endl; - for (unsigned int i = 0; i < this->geometries.size(); i++) - this->geometries[i]->debug(); - for (unsigned int i = 0; i < this->signals.size(); i++) - this->signals[i]->debug(); - for (unsigned int i = 0; i < this->objects.size(); i++) - this->objects[i]->debug(); -} - -void CAdcRoad::calculate_signals_pose(bool debug) -{ - double s, t, heading, x, y, yaw; - for (unsigned int i = 0; i < this->signals.size(); i++) - { - this->signals[i]->get_pose(s, t, heading); - for (unsigned int j = 0; j < this->geometries.size(); j++) - { - if (this->geometries[j]->on_range(s)) - { - this->geometries[j]->get_world_pose(s, t, heading, x, y, yaw); - this->signals[i]->set_world_pose(x, y, yaw); - break; - } - } - if (debug) - { - std::cout << "Road " << this->name << " id = " << this->id << "; length = " << this->length << std::endl; - this->signals[i]->debug(debug); - } - } -} - -void CAdcRoad::calculate_objects_pose(bool debug) -{ - double x, y, yaw; - for (unsigned int i = 0; i < this->objects.size(); i++) - { - if (this->objects[i]->is_outline()) - { - std::vector<std::vector<Object_corner> > corners; - this->objects[i]->get_corners(corners); - for (unsigned int j = 0; j < corners.size(); j++) - { - for (unsigned int l = 0; l < corners[j].size(); l++) - { - for (unsigned int k = 0; k < this->geometries.size(); k++) - { - if (this->geometries[k]->on_range(corners[j][l].s)) - { - this->geometries[k]->get_world_pose(corners[j][l].s, corners[j][l].t, 0.0, x, y, yaw); - this->objects[i]->add_corner_world_pose(j, l, x, y); - break; - } - } - } - } - } - else if (this->objects[i]->is_repeat()) - { - std::vector<Object_repeat> repeat_info; - this->objects[i]->get_repeat_info(repeat_info); - for (unsigned int j = 0; j < repeat_info.size(); j++) - { - for (unsigned int l = 0; l < repeat_info[j].n; l++) - { - double s = repeat_info[j].s + repeat_info[j].distance*l; - for (unsigned int k = 0; k < this->geometries.size(); k++) - { - if (this->geometries[k]->on_range(s)) - { - this->geometries[k]->get_world_pose(s, repeat_info[j].t, repeat_info[j].heading, x, y, yaw); - this->objects[i]->add_repeat_info_world_pose(j, x, y, yaw); - break; - } - } - } - } - } - else - { - double s, t, heading; - this->objects[i]->get_pose(s, t, heading); - for (unsigned int j = 0; j < this->geometries.size(); j++) - { - if (this->geometries[j]->on_range(s)) - { - this->geometries[j]->get_world_pose(s, t, heading, x, y, yaw); - this->objects[i]->set_world_pose(x, y, yaw); - break; - } - } - } - if (debug) - { - std::cout << "Road " << this->name << " id = " << this->id << "; length = " << this->length << std::endl; - this->objects[i]->debug(debug); - } - } -} - -void CAdcRoad::get_signals(std::vector<CAdcSignals*> &signals) -{ - for (unsigned int i = 0; i < this->signals.size(); i++) - signals.push_back(this->signals[i]); -} - -void CAdcRoad::append_signs_spawn(std::string &filename) -{ - for (unsigned int i = 0; i < this->signals.size(); i++) - this->signals[i]->append_sign_spawn(filename); -} - -void CAdcRoad::append_objects_spawn(std::string &filename) -{ - for (unsigned int i = 0; i < this->objects.size(); i++) - this->objects[i]->append_objects_spawn(filename); -} - -void CAdcRoad::load(std::auto_ptr<OpenDRIVE::road_type> &road_info) -{ - std::stringstream ss(road_info->id().get()); - ss >> this->id; - this->length = road_info->length().get(); - this->name = road_info->name().get(); - - //////////////// Geometry atributes - for (planView::geometry_iterator geo_it(road_info->planView().geometry().begin()); geo_it != road_info->planView().geometry().end(); ++geo_it) - { - if (geo_it->line().present()) - { - CAdcGeoLine *line = new CAdcGeoLine(); - std::auto_ptr<planView::geometry_type> geo_info(new planView::geometry_type(*geo_it)); - line->load(geo_info); - add_geometry(line); - } - else if (geo_it->spiral().present()) - { - CAdcGeoSpiral *spi = new CAdcGeoSpiral(); - std::auto_ptr<planView::geometry_type> geo_info(new planView::geometry_type(*geo_it)); - spi->load(geo_info); - add_geometry(spi); - } - else if (geo_it->arc().present()) - { - CAdcGeoArc *arc = new CAdcGeoArc(); - std::auto_ptr<planView::geometry_type> geo_info(new planView::geometry_type(*geo_it)); - arc->load(geo_info); - add_geometry(arc); - } - else if (geo_it->poly3().present()) - { - CAdcGeoPoly3 *poly3 = new CAdcGeoPoly3(); - std::auto_ptr<planView::geometry_type> geo_info(new planView::geometry_type(*geo_it)); - poly3->load(geo_info); - add_geometry(poly3); - } - else if (geo_it->paramPoly3().present()) - { - CAdcGeoParamPoly3 *parampoly3 = new CAdcGeoParamPoly3(); - std::auto_ptr<planView::geometry_type> geo_info(new planView::geometry_type(*geo_it)); - parampoly3->load(geo_info); - add_geometry(parampoly3); - } - } - - ////////// Signals atributes - if (road_info->signals().present()) - { - for (signals::signal_iterator signal_it(road_info->signals().get().signal().begin()); signal_it != road_info->signals().get().signal().end(); ++signal_it) - { - CAdcSignals *sign = new CAdcSignals(); - std::auto_ptr<signals::signal_type> signal_info(new signals::signal_type(*signal_it)); - sign->load(signal_info); - add_signal(sign); - } - } - - ////////// Objects atributes - if (road_info->objects().present()) - { - for (objects::object_iterator object_it(road_info->objects().get().object().begin()); object_it != road_info->objects().get().object().end(); ++object_it) - { - CAdcObject *obj = new CAdcObject(); - std::auto_ptr<objects::object_type> object_info(new objects::object_type(*object_it)); - obj->load(object_info); - add_object(obj); - } - } -} \ No newline at end of file diff --git a/src/adc_signals.cpp b/src/adc_signals.cpp deleted file mode 100644 index 0e7f176590b00487fd05b61d53d33309930cad0c..0000000000000000000000000000000000000000 --- a/src/adc_signals.cpp +++ /dev/null @@ -1,235 +0,0 @@ -#include "adc_signals.h" -#include <cmath> -#include <iostream> -#include <sstream> -#include <fstream> -#include "exceptions.h" - -std::map<std::string, Sign_urdf_info> CAdcSignals::urdf_map; - -CAdcSignals::CAdcSignals() -{ - this->id = 0; - this->s = 0; - this->t = 0; - this->heading = 0; - this->world_x = 0; - this->world_y = 0; - this->world_yaw = 0; - this->type = ""; - this->sub_type = ""; - this->value = 0; - this->text = ""; - set_urdf_map(); -} - -CAdcSignals::~CAdcSignals() -{ - this->id = 0; - this->s = 0; - this->t = 0; - this->heading = 0; - this->world_x = 0; - this->world_y = 0; - this->world_yaw = 0; - this->type = ""; - this->sub_type = ""; - this->value = 0; - this->text = ""; -} - -CAdcSignals::CAdcSignals(const CAdcSignals & signal) -{ - this->id = signal.id; - this->s = signal.s; - this->t = signal.t; - this->heading = signal.heading; - this->type = signal.type; - this->sub_type = signal.sub_type; - this->value = signal.value; - this->text = signal.text; - this->world_x = signal.world_x; - this->world_y = signal.world_y; - this->world_yaw = signal.world_yaw; -} - -CAdcSignals::CAdcSignals(int id, double s, double t, double heading, std::string type, std::string sub_type, int value, std::string text, bool reverse) -{ - this->id = id; - this->s = s; - this->t = t; - this->heading = heading + (reverse ? M_PI : 0.0); - this->type = type; - this->sub_type = sub_type; - this->value = value; - this->text = text; - this->world_x = 0; - this->world_y = 0; - this->world_yaw = 0; - set_urdf_map(); -} - -void CAdcSignals::operator = (const CAdcSignals &signal) -{ - this->id = signal.id; - this->s = signal.s; - this->t = signal.t; - this->heading = signal.heading; - this->type = signal.type; - this->sub_type = signal.sub_type; - this->value = signal.value; - this->text = signal.text; - this->world_x = signal.world_x; - this->world_y = signal.world_y; - this->world_yaw = signal.world_yaw; -} - -void CAdcSignals::set_urdf_map(void) -{ - if (urdf_map.size() == 0) - { - Sign_urdf_info urdf_info; - urdf_info.type = "unmarked_intersection"; - urdf_info.marker = UNMARKEDINTERSECTION_MARKER; - urdf_map[UNMARKEDINTERSECTION_TYPE] = urdf_info; - urdf_info.type = "stop"; - urdf_info.marker = STOPANDGIVEWAY_MARKER; - urdf_map[STOPANDGIVEWAY_TYPE] = urdf_info; - urdf_info.type = "parking"; - urdf_info.marker = PARKINGAREA_MARKER; - urdf_map[PARKINGAREA_TYPE] = urdf_info; - urdf_info.type = "haveway"; - urdf_info.marker = HAVEWAY_MARKER; - urdf_map[HAVEWAY_TYPE] = urdf_info; - urdf_info.type = "ahead_only"; - urdf_info.marker = AHEADONLY_MARKER; - std::stringstream ss; - ss << AHEADONLY_TYPE << "." << AHEADONLY_SUB_TYPE; - urdf_map[ss.str()] = urdf_info; - urdf_info.type = "giveway"; - urdf_info.marker = GIVEWAY_MARKER; - urdf_map[GIVEWAY_TYPE] = urdf_info; - urdf_info.type = "pedestrian_crossing"; - urdf_info.marker = PEDESTRIANCROSSING_MARKER; - urdf_map[PEDESTRIANCROSSING_TYPE] = urdf_info; - urdf_info.type = "roundabout"; - urdf_info.marker = ROUNDABOUT_MARKER; - urdf_map[ROUNDABOUT_TYPE] = urdf_info; - urdf_info.type = "no_overtaking"; - urdf_info.marker = NOOVERTAKING_MARKER; - urdf_map[NOOVERTAKING_TYPE] = urdf_info; - urdf_info.type = "no_entry"; - urdf_info.marker = NOENTRYVEHICULARTRAFFIC_MARKER; - urdf_map[NOENTRYVEHICULARTRAFFIC_TYPE] = urdf_info; - urdf_info.type = "test_course"; - urdf_info.marker = TESTCOURSEA9_MARKER; - urdf_map[TESTCOURSEA9_TYPE] = urdf_info; - urdf_info.type = "one_way"; - urdf_info.marker = ONEWAYSTREET_MARKER; - urdf_map[ONEWAYSTREET_TYPE] = urdf_info; - urdf_info.type = "roadworks"; - urdf_info.marker = ROADWORKS_MARKER; - urdf_map[ROADWORKS_TYPE] = urdf_info; - urdf_info.type = "max_50"; - urdf_info.marker = MAX_VEL_50_MARKER; - ss.str(""); - ss.clear(); - ss << MAX_VEL_TYPE << ".50"; - urdf_map[ss.str()] = urdf_info; - urdf_info.type = "max_100"; - urdf_info.marker = MAX_VEL_100_MARKER; - ss.str(""); - ss.clear(); - ss << MAX_VEL_TYPE << ".100"; - urdf_map[ss.str()] = urdf_info; - urdf_info.type = "semaphore"; - urdf_info.marker = SEMAPHORE_MARKER; - urdf_map[SEMAPHORE_TYPE] = urdf_info; - } -} - -void CAdcSignals::get_pose(double &s, double &t, double &heading) -{ - s = this->s; - t = this->t; - heading = this->heading; -} - -void CAdcSignals::get_sign_info(std::string &type, std::string &sub_type, int &value, std::string &text) -{ - type = this->type; - sub_type = this->sub_type; - value = this->value; - text = this->text; -} - -void CAdcSignals::set_world_pose(double x, double y, double yaw) -{ - this->world_x = x; - this->world_y = y; - this->world_yaw = yaw; -} - -void CAdcSignals::debug(bool world_pose) -{ - std::cout << " Signal id = " << this->id << "; type = " << this->type << ", subtype = " << this->sub_type << std::endl; - std::cout << " value = " << this->value << "; text = " << this->text << std::endl; - std::cout << " pose: s = " << this->s << ", t = " << this->t << ", heading = " << this->heading << std::endl; - if (world_pose) - std::cout << " world pose: x = " << this->world_x << ", y = " << this->world_y << ", yaw = " << this->world_yaw << std::endl; -} - -void CAdcSignals::append_sign_spawn(std::string &filename) -{ - std::map<std::string, Sign_urdf_info>::iterator it = urdf_map.end(); - - std::stringstream ss; - if (this->type == AHEADONLY_TYPE) - ss << AHEADONLY_TYPE << "." << AHEADONLY_SUB_TYPE; - else if (this->type == MAX_VEL_TYPE) - ss << MAX_VEL_TYPE << "." << this->value; - else - ss << this->type; - it = urdf_map.find(ss.str()); - if (it == urdf_map.end()) - { - std::cout << "WARNING: Unknown signal type " << this->type << std::endl; - return; - } - - - std::ostringstream oss; - oss << std::endl << " <include file=\"$(find sign_description)/launch/spawn_sign.launch\">" << std::endl; - oss << " <arg name=\"name\" value=\"" << it->second.type << this->id << "\"/>" << std::endl; - oss << " <arg name=\"model\" value=\"" << (this->type == SEMAPHORE_TYPE ? "semaphore": "sign") << "\"/>" << std::endl; - oss << " <arg name=\"tag\" value=\"" << it->second.marker << "\"/>" << std::endl; - oss << " <arg name=\"type\" value=\"" << it->second.type << "\"/>" << std::endl; - oss << " <arg name=\"x\" value=\"" << this->world_x << "\"/>" << std::endl; - oss << " <arg name=\"y\" value=\"" << this->world_y << "\"/>" << std::endl; - oss << " <arg name=\"yaw\" value=\"" << this->world_yaw << "\"/>" << std::endl; - oss << " <arg name=\"parent\" value=\"$(arg parent)\"/>" << std::endl; - oss << " </include>" << std::endl; - std::ofstream out_file; - out_file.open(filename.c_str(), std::ios_base::app); - if (!out_file.is_open()) - throw CException(_HERE_,"CAdcSignals::append_sign_spawn -> The output file can't be open"); - out_file << oss.str() << std::endl; - out_file.close(); -} - -void CAdcSignals::load(std::auto_ptr<signals::signal_type> &signal_info) -{ - std::stringstream ss(signal_info->id().get()); - ss >> this->id; - this->s = (signal_info->s().present() ? signal_info->s().get() : 0.0); - this->t = (signal_info->t().present() ? signal_info->t().get() : 0.0); - this->heading = (signal_info->hOffset().present() ? signal_info->hOffset().get() : 0.0); - this->type = (signal_info->type().present() ? signal_info->type().get() : ""); - this->sub_type = (signal_info->subtype().present() ? signal_info->subtype().get() : ""); - this->value = (signal_info->value().present() ? signal_info->value().get() : 0.0); - this->text = (signal_info->text().present() ? signal_info->text().get() : ""); - bool reverse = false; - if (signal_info->orientation().present() && signal_info->orientation().get() == orientation::cxx_1) - reverse = true; - this->heading += (reverse != DEFAULT_REVERSE_ORIENTATION ? M_PI : 0.0); -} \ No newline at end of file diff --git a/src/examples/CMakeLists.txt b/src/examples/CMakeLists.txt deleted file mode 100644 index 87968ca82999ad178f9dc47e49bc1ab70730673a..0000000000000000000000000000000000000000 --- a/src/examples/CMakeLists.txt +++ /dev/null @@ -1,4 +0,0 @@ -# create an example application -ADD_EXECUTABLE(opendrive_to_gazebo_test opendrive_to_gazebo_test.cpp) -# link necessary libraries -TARGET_LINK_LIBRARIES(opendrive_to_gazebo_test opendrive_to_gazebo) diff --git a/src/examples/opendrive_to_gazebo_test.cpp b/src/examples/opendrive_to_gazebo_test.cpp deleted file mode 100644 index ceb67157d8205306d2ebe3e7a769716570a24dac..0000000000000000000000000000000000000000 --- a/src/examples/opendrive_to_gazebo_test.cpp +++ /dev/null @@ -1,29 +0,0 @@ -#include "opendrive_to_gazebo.h" -#include "exceptions.h" -#include <iostream> -#include <vector> -#include "adc_signals.h" - -int main(int argc, char *argv[]) -{ - COpenDriveFormat open_drive_format; - std::string xml_file = "../src/xml/atlatec_generic.xodr"; - std::string launch_dir = "../../../../iri_ws/src/model_car_simulator/sign_description/launch/"; - // std::string xml_file = "../src/xml/atlatec_vires.xodr"; - try - { - open_drive_format.load(xml_file, false); - open_drive_format.calculate_world_poses(true); - - std::vector<CAdcSignals*> signals; - // open_drive_format.get_signals(signals); - // for (unsigned int i = 0; i < signals.size(); i++) - // signals[i]->debug(true); - open_drive_format.generate_spawn_launch_files(launch_dir); - } - catch (CException &e) - { - std::cout << "[Exception caught] : " << e.what() << std::endl; - } - return 0; -} diff --git a/src/generate_launch.cpp b/src/generate_launch.cpp new file mode 100644 index 0000000000000000000000000000000000000000..307b16934e08b8a127d9c4f68a9b65d1fd598e65 --- /dev/null +++ b/src/generate_launch.cpp @@ -0,0 +1,214 @@ +#include "generate_launch.h" +#include "exceptions.h" +#include <fstream> + +std::string get_full_name(std::string &path,std::string &file_name,const std::string &ext) +{ + std::size_t slash_index,pose_index; + std::string full_name; + + // add the last slash if missing + slash_index=path.find_last_of("/"); + if(slash_index!=path.size()-1) + path+="/"; + // check the file extension + pose_index=file_name.find_last_of("."); + if(pose_index==std::string::npos)// extension missing + file_name+="."+ext; + else + { + pose_index=file_name.find_last_of("."+ext); + if(pose_index==std::string::npos)// invalid extension + throw CException(_HERE_,"Invalid file extension. It must be " + ext); + } + full_name=path+file_name; + std::remove(full_name.c_str()); + + return full_name; +} + +void get_signal_type_info(std::string &type,std::string &subtype,int value,std::string &name, std::string &marker) +{ + std::stringstream txt; + + if(type==UNMARKEDINTERSECTION_TYPE) + { + name="unmarked_intersection"; + marker=UNMARKEDINTERSECTION_MARKER; + } + else if(type==STOPANDGIVEWAY_TYPE) + { + name="stop"; + marker=STOPANDGIVEWAY_MARKER; + } + else if(type==PARKINGAREA_TYPE) + { + name="parking"; + marker=PARKINGAREA_MARKER; + } + else if(type==HAVEWAY_TYPE) + { + name="haveway"; + marker=HAVEWAY_MARKER; + } + else if(type==AHEADONLY_TYPE) + { + name="ahead_only"; + marker=AHEADONLY_MARKER; + } + else if(type==GIVEWAY_TYPE) + { + name="giveway"; + marker=GIVEWAY_MARKER; + } + else if(type==PEDESTRIANCROSSING_TYPE) + { + name="pedestrian_crossing"; + marker=PEDESTRIANCROSSING_MARKER; + } + else if(type==ROUNDABOUT_TYPE) + { + name="roundabout"; + marker=ROUNDABOUT_MARKER; + } + else if(type==NOOVERTAKING_TYPE) + { + name="no_overtaking"; + marker=NOOVERTAKING_MARKER; + } + else if(type==NOENTRYVEHICULARTRAFFIC_TYPE) + { + name="no_entry"; + marker=NOENTRYVEHICULARTRAFFIC_MARKER; + } + else if(type==TESTCOURSEA9_TYPE) + { + name="test_course"; + marker=TESTCOURSEA9_MARKER; + } + else if(type==ONEWAYSTREET_TYPE) + { + name="one_way"; + marker=ONEWAYSTREET_MARKER; + } + else if(type==ROADWORKS_TYPE) + { + name="roadworks"; + marker=ROADWORKS_MARKER; + } + else if(type==MAX_VEL_TYPE) + { + txt << "max_" << value; + name=txt.str(); + marker=MAX_VEL_MARKER; + } + else if(type==SEMAPHORE_TYPE) + { + name="semaphore"; + marker=SEMAPHORE_MARKER; + } + else + throw CException(_HERE_,"Unsupported signal " + type); +} + +void generate_signals_launch(std::string &path,std::string &signals_file,COpendriveRoad &road) +{ + std::ofstream out_file; + std::string full_name,type,subtype,name,marker; + TOpendriveWorldPose world; + + full_name=get_full_name(path,signals_file,"launch"); + // process the road + out_file.open(full_name.c_str(),std::ofstream::out); + if(out_file.is_open()) + { + out_file << "<?xml version=\"1.0\"?>" << std::endl << std::endl; + out_file << "<launch>" << std::endl; + out_file << " <arg name=\"parent\" default=\"map\"/>" << std::endl; + for(unsigned int i=0;i<road.get_num_segments();i++) + { + const COpendriveRoadSegment &segment=road.get_segment(i); + for(unsigned int j=0;j<segment.get_num_signals();j++) + { + const COpendriveSignal &signal=segment.get_signal(j); + signal.get_type(type,subtype); + get_signal_type_info(type,subtype,signal.get_value(),name,marker); + out_file << std::endl; + out_file << " <include file=\"$(find iri_sign_description)/launch/spawn_sign.launch\">" << std::endl; + out_file << " <arg name=\"name\" value=\"" << name << "_" << signal.get_id() << "\"/>" << std::endl; + if(type==SEMAPHORE_TYPE) + out_file << " <arg name=\"model\" value=\"semaphore\"/>" << std::endl; + else + out_file << " <arg name=\"model\" value=\"sign\"/>" << std::endl; + out_file << " <arg name=\"tag\" value=\"" << marker << "\"/>" << std::endl; + out_file << " <arg name=\"type\" value=\"" << name << "\"/>" << std::endl; + world=signal.get_world_pose(); + out_file << " <arg name=\"x\" value=\"" << world.x << "\"/>" << std::endl; + out_file << " <arg name=\"y\" value=\"" << world.y << "\"/>" << std::endl; + out_file << " <arg name=\"yaw\" value=\"" << world.heading << "\"/>" << std::endl; + out_file << " <arg name=\"parent\" value=\"$(arg parent)\"/>" << std::endl; + out_file << " </include>" << std::endl; + } + } + out_file << "</launch>" << std::endl; + out_file.close(); + } + else + throw CException(_HERE_,"Impossible to create signals launch file"); +} + +void generate_objects_launch(std::string &path,std::string &objects_file,COpendriveRoad &road) +{ + std::ofstream out_file; + std::string full_name,type,subtype,name,marker; + TOpendriveWorldPose world; + + full_name=get_full_name(path,objects_file,"launch"); + // process the road + out_file.open(full_name.c_str(),std::ofstream::out); + if(out_file.is_open()) + { + out_file << "<?xml version=\"1.0\"?>" << std::endl << std::endl; + out_file << "<launch>" << std::endl; + out_file << " <arg name=\"parent\" default=\"map\"/>" << std::endl; + for(unsigned int i=0;i<road.get_num_segments();i++) + { + const COpendriveRoadSegment &segment=road.get_segment(i); + for(unsigned int j=0;j<segment.get_num_objects();j++) + { + const COpendriveObject &object=segment.get_object(j); + if(object.is_box() || object.is_cylinder()) + { + out_file << std::endl << " <include file=\"$(find iri_object_description)/launch/spawn_object.launch\">" << std::endl; + out_file << " <arg name=\"name\" value=\"" << object.get_name() << "_" << object.get_id() << "\"/>" << std::endl; + if(object.is_box()) + { + TOpendriveBox data=object.get_box_data(); + out_file << " <arg name=\"model\" value=\"box\"/>" << std::endl; + out_file << " <arg name=\"length\" value=\"" << data.length << "\"/>" << std::endl; + out_file << " <arg name=\"width\" value=\"" << data.width << "\"/>" << std::endl; + out_file << " <arg name=\"height\" value=\"" << data.height << "\"/>" << std::endl; + } + else + { + TOpendriveCylinder data=object.get_cylinder_data(); + out_file << " <arg name=\"model\" value=\"cyl\"/>" << std::endl; + out_file << " <arg name=\"radius\" value=\"" << data.radius << "\"/>" << std::endl; + out_file << " <arg name=\"height\" value=\"" << data.height << "\"/>" << std::endl; + } + world=object.get_world_pose(); + out_file << " <arg name=\"x\" value=\"" << world.x << "\"/>" << std::endl; + out_file << " <arg name=\"y\" value=\"" << world.y << "\"/>" << std::endl; + out_file << " <arg name=\"yaw\" value=\"" << world.heading << "\"/>" << std::endl; + out_file << " <arg name=\"parent\" value=\"$(arg parent)\"/>" << std::endl; + out_file << " </include>" << std::endl; + } + } + } + out_file << "</launch>" << std::endl; + out_file.close(); + } + else + throw CException(_HERE_,"Impossible to create signals launch file"); +} + diff --git a/src/opendrive_to_gazebo.cpp b/src/opendrive_to_gazebo.cpp index 5ddf4768243b04a586283e12358e50d6993d4e52..a020171047bc945bc134f7f04bd37ef8a5df25d4 100644 --- a/src/opendrive_to_gazebo.cpp +++ b/src/opendrive_to_gazebo.cpp @@ -1,73 +1,47 @@ -#include "opendrive_to_gazebo.h" +#include "generate_launch.h" +#include "opendrive_road.h" #include "exceptions.h" -#include <sys/types.h> -#include <sys/stat.h> -#include <unistd.h> -#include <iostream> -#include <sstream> - -#include "adc_road.h" -#include "adc_geometries.h" -#include "adc_signals.h" - -#ifdef _HAVE_XSD - -#include "xml/OpenDRIVE_1.4H.hxx" -#endif - -COpenDriveFormat::COpenDriveFormat() -{ -} - -void COpenDriveFormat::load(std::string &filename, bool debug) +int main(int argc, char *argv[]) { - std::cout << "Loading .xodr info..." << std::endl; - struct stat buffer; + std::string road_file,path,signals_file_name,objects_file_name; + std::size_t slash_index, point_index; + COpendriveRoad road; + double road_scale; - std::cout << filename << std::endl; - if(stat(filename.c_str(),&buffer)==0) + if (argc != 3 && argc != 4) + { + std::cerr << "ERROR: Missing input arguments.The usage of this program is:" << std::endl; + std::cerr << "opendrive_to_gazebo <xodr input file> <output launch file directory> [optional]<road_scale>" << std::endl; + return -1; + } + road_file=argv[1]; + path=argv[2]; + slash_index=road_file.find_last_of("/"); + point_index=road_file.find_last_of("."); + signals_file_name=road_file.substr(road_file.find_last_of("/")+1, point_index - slash_index -1)+"_signals"; + objects_file_name=road_file.substr(road_file.find_last_of("/")+1, point_index - slash_index -1)+"_objects"; + + if(argc==4) { - // try to open the specified file try{ - std::auto_ptr<OpenDRIVE> open_drive(OpenDRIVE_(filename.c_str(), xml_schema::flags::dont_validate)); - - this->adc_circuit.load(open_drive); - - std::cout << "Loading .xodr info done." << std::endl; - if (debug) - this->adc_circuit.debug(); - }catch (const xml_schema::exception& e){ - std::ostringstream os; - os << e; - /* handle exceptions */ - throw CException(_HERE_,os.str()); + road_scale=std::stod(argv[3]); + road.set_scale_factor(road_scale); + }catch (const std::invalid_argument& e){ + std::cerr << "ERROR: Invalid road_scale, it must be a double: " << e.what() << std::endl; + return -1; } } else - throw CException(_HERE_,"The .xodr file does not exist"); -} + road.set_scale_factor(1.0); -void COpenDriveFormat::calculate_world_poses(bool debug) -{ - std::cout << "Calculating world signs and objects poses..." << std::endl; - this->adc_circuit.calculate_world_poses(debug); - std::cout << "Calculating world signs and objects poses done" << std::endl; -} - -void COpenDriveFormat::get_signals(std::vector<CAdcSignals*> &signals) -{ - this->adc_circuit.get_signals(signals); -} + try{ + road.load(road_file); -void COpenDriveFormat::generate_spawn_launch_files(std::string &dir) -{ - std::cout << "Generating spawn files ..." << std::endl; - this->adc_circuit.generate_spawn_launch_files(dir); - std::cout << "Done" << std::endl; -} - -COpenDriveFormat::~COpenDriveFormat() -{ + generate_signals_launch(path,signals_file_name,road); + generate_objects_launch(path,objects_file_name,road); + }catch (CException &e){ + std::cout << "[Exception caught] : " << e.what() << std::endl; + } + return 0; } - diff --git a/src/xml/CMakeLists.txt b/src/xml/CMakeLists.txt deleted file mode 100644 index 7f45af687503c4883281e597e1d4f3ece3d5817d..0000000000000000000000000000000000000000 --- a/src/xml/CMakeLists.txt +++ /dev/null @@ -1,47 +0,0 @@ -#check the existance of the xsd library -IF(EXISTS "/usr/include/xsd/cxx") - SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_HAVE_XSD" PARENT_SCOPE) - SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -D_HAVE_XSD" PARENT_SCOPE) - SET(XSD_FOUND TRUE) - MESSAGE(STATUS "Found the XML library ... adding support for XML files") - FIND_LIBRARY(XSD_LIBRARIES - NAMES xerces-c - PATHS /usr/lib /usr/local/lib /usr/lib/x86_64-linux-gnu/) - SET(XSD_LIBRARY ${XSD_LIBRARIES}) -ELSE(EXISTS "/usr/include/xsd/cxx") - MESSAGE(STATUS "XML library not found ... it will be impossible to handle XML files") -ENDIF(EXISTS "/usr/include/xsd/cxx") - -IF(XSD_FOUND) - SET(XSD_LIBRARIES ${XSD_LIBRARIES} PARENT_SCOPE) - SET(XSD_LIBRARY ${XSD_LIBRARY} PARENT_SCOPE) - - SET(XSD_PATH ${CMAKE_CURRENT_SOURCE_DIR}) - SET(XSD_FILES OpenDRIVE_1.4H.xsd) - - IF(XSD_FILES) - FOREACH(xsd_file ${XSD_FILES}) - STRING(REGEX REPLACE "xsd" "cxx" xsd_source ${xsd_file}) - SET(XSD_SOURCES_INT ${XSD_SOURCES_INT} ${XSD_PATH}/${xsd_source}) - SET(XSD_SOURCES ${XSD_SOURCES} ${XSD_PATH}/${xsd_source}) - STRING(REGEX REPLACE "xsd" "hxx" xsd_header ${xsd_file}) - SET(XSD_HEADERS_INT ${XSD_HEADERS_INT} ${XSD_PATH}/${xsd_header}) - SET(XSD_HEADERS ${XSD_HEADERS} ${XSD_PATH}/${xsd_header}) - SET(XSD_PATH_FILES ${XSD_PATH_FILES} ${XSD_PATH}/${xsd_file}) - ENDFOREACH(xsd_file) - - SET(XSD_SOURCES ${XSD_SOURCES_INT} PARENT_SCOPE) - SET(XSD_HEADERS ${XSD_HEADERS_INT} PARENT_SCOPE) - - ADD_CUSTOM_TARGET(xsd_files_gen DEPENDS ${XSD_SOURCES_INT}) - ADD_CUSTOM_COMMAND( - OUTPUT ${XSD_SOURCES_INT} - COMMAND xsdcxx cxx-tree --generate-serialization --reserved-name access=parkingSpace_access --reserved-name link=lane_link ${XSD_FILES} - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - DEPENDS ${XSD_PATH_FILES} - COMMENT "Parsing the xml template file ${XSD_FILES}") - - INSTALL(FILES ${XSD_PATH_FILES} DESTINATION include/iri/${PROJECT_NAME}/xml) - INSTALL(FILES ${XSD_HEADERS_INT} DESTINATION include/iri/${PROJECT_NAME}/xml) - ENDIF(XSD_FILES) -ENDIF(XSD_FOUND) diff --git a/src/xml/OpenDRIVE_1.4H.xsd b/src/xml/OpenDRIVE_1.4H.xsd deleted file mode 100644 index 13cb398d49771e01459d3c9302a9ba60e5e534d3..0000000000000000000000000000000000000000 --- a/src/xml/OpenDRIVE_1.4H.xsd +++ /dev/null @@ -1,1284 +0,0 @@ -<?xml version="1.0"?> -<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> - -<xsd:annotation> - <xsd:documentation> - XML Schema Definition for OpenDRIVE XML files - Rev. 1.4H, excluding SET records, (c)2015 by VIRES Simulationstechnologie GmbH, Germany - </xsd:documentation> -</xsd:annotation> - - -<xsd:element name="OpenDRIVE"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="header"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="geoReference" type="xsd:string" minOccurs="0" maxOccurs="1"/> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="revMajor" type="xsd:unsignedShort"/> - <xsd:attribute name="revMinor" type="xsd:unsignedShort"/> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="version" type="xsd:float"/> - <xsd:attribute name="date" type="xsd:string"/> - <xsd:attribute name="north" type="xsd:double"/> - <xsd:attribute name="south" type="xsd:double"/> - <xsd:attribute name="east" type="xsd:double"/> - <xsd:attribute name="west" type="xsd:double"/> - <xsd:attribute name="vendor" type="xsd:string"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="road" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="link" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="predecessor" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="elementType" type="elementType"/> - <xsd:attribute name="elementId" type="xsd:string"/> - <xsd:attribute name="contactPoint" type="contactPoint"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="successor" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="elementType" type="elementType"/> - <xsd:attribute name="elementId" type="xsd:string"/> - <xsd:attribute name="contactPoint" type="contactPoint"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="neighbor" minOccurs="0" maxOccurs="2"> - <xsd:complexType> - <xsd:attribute name="side" type="side"/> - <xsd:attribute name="elementId" type="xsd:string"/> - <xsd:attribute name="direction" type="direction"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - <xsd:element name="type" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="speed" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="max" type="max"/> - <xsd:attribute name="unit" type="unit"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="type" type="roadType"/> - </xsd:complexType> - </xsd:element> - - <xsd:element name="planView" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="geometry" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:choice> - <xsd:element name="line"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - <xsd:element name="spiral"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="curvStart" type="xsd:double"/> - <xsd:attribute name="curvEnd" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="arc"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="curvature" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="poly3"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="a" type="xsd:double"/> - <xsd:attribute name="b" type="xsd:double"/> - <xsd:attribute name="c" type="xsd:double"/> - <xsd:attribute name="d" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="paramPoly3"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="aU" type="xsd:double"/> - <xsd:attribute name="bU" type="xsd:double"/> - <xsd:attribute name="cU" type="xsd:double"/> - <xsd:attribute name="dU" type="xsd:double"/> - <xsd:attribute name="aV" type="xsd:double"/> - <xsd:attribute name="bV" type="xsd:double"/> - <xsd:attribute name="cV" type="xsd:double"/> - <xsd:attribute name="dV" type="xsd:double"/> - <xsd:attribute name="pRange" type="pRange"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:choice> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="x" type="xsd:double"/> - <xsd:attribute name="y" type="xsd:double"/> - <xsd:attribute name="hdg" type="xsd:double"/> - <xsd:attribute name="length" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - </xsd:sequence> - </xsd:complexType> - </xsd:element> <!-- end planView --> - - <xsd:element name="elevationProfile" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="elevation" minOccurs="1" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="a" type="xsd:double"/> - <xsd:attribute name="b" type="xsd:double"/> - <xsd:attribute name="c" type="xsd:double"/> - <xsd:attribute name="d" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - <xsd:element name="lateralProfile" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="superelevation" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="a" type="xsd:double"/> - <xsd:attribute name="b" type="xsd:double"/> - <xsd:attribute name="c" type="xsd:double"/> - <xsd:attribute name="d" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="crossfall" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="side" type="crossfallSide"/> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="a" type="xsd:double"/> - <xsd:attribute name="b" type="xsd:double"/> - <xsd:attribute name="c" type="xsd:double"/> - <xsd:attribute name="d" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="shape" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="t" type="xsd:double"/> - <xsd:attribute name="a" type="xsd:double"/> - <xsd:attribute name="b" type="xsd:double"/> - <xsd:attribute name="c" type="xsd:double"/> - <xsd:attribute name="d" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - - <xsd:element name="lanes" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="laneOffset" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="a" type="xsd:double"/> - <xsd:attribute name="b" type="xsd:double"/> - <xsd:attribute name="c" type="xsd:double"/> - <xsd:attribute name="d" type="xsd:double"/> - </xsd:complexType> - </xsd:element> <!-- end laneOffset --> - <xsd:element name="laneSection" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="left" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="lane" type="lane" maxOccurs="unbounded"/> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - <xsd:element name="center" minOccurs="1" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="lane" type="centerLane" minOccurs="0" maxOccurs="1"/> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - <xsd:element name="right" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="lane" type="lane" maxOccurs="unbounded"/> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="singleSide" type="singleSide"/> - </xsd:complexType> - </xsd:element> <!-- end laneSection --> - </xsd:sequence> - </xsd:complexType> - </xsd:element> <!-- end lanes --> - - <xsd:element name="objects" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="object" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="repeat" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="length" type="xsd:double"/> - <xsd:attribute name="distance" type="xsd:double"/> - <xsd:attribute name="tStart" type="xsd:double"/> - <xsd:attribute name="tEnd" type="xsd:double"/> - <xsd:attribute name="widthStart" type="xsd:double"/> - <xsd:attribute name="widthEnd" type="xsd:double"/> - <xsd:attribute name="heightStart" type="xsd:double"/> - <xsd:attribute name="heightEnd" type="xsd:double"/> - <xsd:attribute name="zOffsetStart" type="xsd:double"/> - <xsd:attribute name="zOffsetEnd" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="outline" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:choice> - <xsd:element name="cornerRoad" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="t" type="xsd:double"/> - <xsd:attribute name="dz" type="xsd:double"/> - <xsd:attribute name="height" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="cornerLocal" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="u" type="xsd:double"/> - <xsd:attribute name="v" type="xsd:double"/> - <xsd:attribute name="z" type="xsd:double"/> - <xsd:attribute name="height" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:choice> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - <xsd:element name="material" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="surface" type="xsd:string"/> - <xsd:attribute name="friction" type="xsd:double"/> - <xsd:attribute name="roughness" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="validity" type="laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="parkingSpace" type="parkingSpace" minOccurs="0" maxOccurs="1"/> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="type" type="xsd:string"/> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="t" type="xsd:double"/> - <xsd:attribute name="zOffset" type="xsd:double"/> - <xsd:attribute name="validLength" type="xsd:double"/> - <xsd:attribute name="orientation" type="orientation"/> - <xsd:attribute name="length" type="xsd:double"/> - <xsd:attribute name="width" type="xsd:double"/> - <xsd:attribute name="radius" type="xsd:double"/> - <xsd:attribute name="height" type="xsd:double"/> - <xsd:attribute name="hdg" type="xsd:double"/> - <xsd:attribute name="pitch" type="xsd:double"/> - <xsd:attribute name="roll" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="objectReference" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="validity" type="laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="t" type="xsd:double"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="zOffset" type="xsd:double"/> - <xsd:attribute name="validLength" type="xsd:double"/> - <xsd:attribute name="orientation" type="orientation"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="tunnel" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="validity" type="laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="length" type="xsd:double"/> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="type" type="tunnelType"/> - <xsd:attribute name="lighting" type="xsd:double"/> - <xsd:attribute name="daylight" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="bridge" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="validity" type="laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="length" type="xsd:double"/> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="type" type="bridgeType"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> <!-- end objects --> - - <xsd:element name="signals" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="signal" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="validity" type="laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="dependency" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="type" type="xsd:string"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="t" type="xsd:double"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="dynamic" type="dynamic"/> - <xsd:attribute name="orientation" type="orientation"/> - <xsd:attribute name="zOffset" type="xsd:double"/> - <xsd:attribute name="country" type="xsd:string"/> - <xsd:attribute name="type" type="xsd:string"/> - <xsd:attribute name="subtype" type="xsd:string"/> - <xsd:attribute name="value" type="xsd:double"/> - <xsd:attribute name="unit" type="unit"/> - <xsd:attribute name="height" type="xsd:double"/> - <xsd:attribute name="width" type="xsd:double"/> - <xsd:attribute name="text" type="xsd:string"/> - <xsd:attribute name="hOffset" type="xsd:double"/> - <xsd:attribute name="pitch" type="xsd:double"/> - <xsd:attribute name="roll" type="xsd:double"/> - </xsd:complexType> - </xsd:element> <!-- end signal --> - <xsd:element name="signalReference" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="validity" type="laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="t" type="xsd:double"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="orientation" type="orientation"/> - </xsd:complexType> - </xsd:element> <!-- end signal reference --> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> <!-- end signals --> - - <xsd:element name="surface" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="CRG" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="file" type="xsd:string"/> - <xsd:attribute name="sStart" type="xsd:double"/> - <xsd:attribute name="sEnd" type="xsd:double"/> - <xsd:attribute name="orientation" type="surfaceOrientation"/> - <xsd:attribute name="mode" type="mode"/> - <xsd:attribute name="purpose" type="purpose"/> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="tOffset" type="xsd:double"/> - <xsd:attribute name="zOffset" type="xsd:double"/> - <xsd:attribute name="zScale" type="xsd:double"/> - <xsd:attribute name="hOffset" type="xsd:double"/> - </xsd:complexType> - </xsd:element> <!-- end CRG --> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> <!-- end surface --> - <xsd:element name="railroad" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="switch" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="mainTrack" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="dir" type="dir"/> - </xsd:complexType> - </xsd:element> <!-- end mainTrack --> - <xsd:element name="sideTrack" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="s" type="xsd:double"/> - <xsd:attribute name="dir" type="dir"/> - </xsd:complexType> - </xsd:element> <!-- end sideTrack --> - <xsd:element name="partner" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="id" type="xsd:string"/> - </xsd:complexType> - </xsd:element> <!-- end partner --> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="position" type="position"/> - </xsd:complexType> - </xsd:element> <!-- end switch --> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> <!-- end railroad --> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="length" type="xsd:double"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="junction" type="xsd:string"/> - </xsd:complexType> <!-- end road --> - </xsd:element> - - <xsd:element name="controller" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="control" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="signalId" type="xsd:string"/> - <xsd:attribute name="type" type="xsd:string"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="sequence" type="xsd:int"/> - </xsd:complexType> - </xsd:element> <!-- end controller --> - - <xsd:element name="junction" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="connection" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="laneLink" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="from" type="xsd:int"/> - <xsd:attribute name="to" type="xsd:int"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="incomingRoad" type="xsd:string"/> - <xsd:attribute name="connectingRoad" type="xsd:string"/> - <xsd:attribute name="contactPoint" type="contactPoint"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="priority" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="high" type="xsd:string"/> - <xsd:attribute name="low" type="xsd:string"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="controller" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="type" type="xsd:string"/> - <xsd:attribute name="sequence" type="xsd:int"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="id" type="xsd:string"/> - </xsd:complexType> - </xsd:element> <!-- end junction --> - - <xsd:element name="junctionGroup" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="junctionReference" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:attribute name="junction" type="xsd:string"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="type" type="junctionGroupType"/> - </xsd:complexType> - </xsd:element> <!-- end junctionGroup --> - - <xsd:element name="station" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="platform" minOccurs="1" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="segment" minOccurs="1" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="roadId" type="xsd:string"/> - <xsd:attribute name="sStart" type="xsd:double"/> - <xsd:attribute name="sEnd" type="xsd:double"/> - <xsd:attribute name="side" type="side"/> - </xsd:complexType> - </xsd:element> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="id" type="xsd:string"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="id" type="xsd:string"/> - <xsd:attribute name="type" type="stationType"/> - </xsd:complexType> - </xsd:element> <!-- end station --> - - </xsd:sequence> - </xsd:complexType> -</xsd:element> - -<!-- enumerations for road->link->Predecessor/successor->elementType --> -<xsd:simpleType name="elementType"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="road"/> - <xsd:enumeration value="junction"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for road->type->speed->max --> -<xsd:simpleType name="max"> -<xsd:union> -<xsd:simpleType> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="no limit"/> - <xsd:enumeration value="undefined"/> - </xsd:restriction> - </xsd:simpleType> - <xsd:simpleType> - <xsd:restriction base="xsd:integer"> - <xsd:minInclusive value="0"/> - </xsd:restriction> - </xsd:simpleType> - </xsd:union> -</xsd:simpleType> - -<!-- enumerations for road->link->Predecessor/successor->contactPoint --> -<!-- enumerations for junction->connection->contactPoint --> -<xsd:simpleType name="contactPoint"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="start"/> - <xsd:enumeration value="end"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for road->link->neighbor->side --> -<!-- enumerations for openDRIVE->station->platform->segment->side --> -<xsd:simpleType name="side"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="left"/> - <xsd:enumeration value="right"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for road->link->neighbor->direction--> -<xsd:simpleType name="direction"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="same"/> - <xsd:enumeration value="opposite"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for road->type--> -<xsd:simpleType name="roadType"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="unknown"/> - <xsd:enumeration value="rural"/> - <xsd:enumeration value="motorway"/> - <xsd:enumeration value="town"/> - <xsd:enumeration value="lowSpeed"/> - <xsd:enumeration value="pedestrian"/> - <xsd:enumeration value="bicycle"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for road->type->speed->unit--> -<!-- enumerations for lane->speed->unit--> -<!-- enumerations for signals->signal->unit--> -<xsd:simpleType name="unit"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="m"/> - <xsd:enumeration value="km"/> - <xsd:enumeration value="ft"/> - <xsd:enumeration value="mile"/> - <xsd:enumeration value="m/s"/> - <xsd:enumeration value="mph"/> - <xsd:enumeration value="km/h"/> - <xsd:enumeration value="kg"/> - <xsd:enumeration value="t"/> - <xsd:enumeration value="%"/> - </xsd:restriction> -</xsd:simpleType> - - -<!-- enumerations for planView->geometry->paramPoly3->pRange--> -<xsd:simpleType name="pRange"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="arcLength"/> - <xsd:enumeration value="normalized"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for lateralProfile->crossFall->side --> -<xsd:simpleType name="crossfallSide"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="left"/> - <xsd:enumeration value="right"/> - <xsd:enumeration value="both"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for lanes->laneSection->singleSide --> -<!-- enumerations for lane->level --> -<!-- enumerations for centerLane->level --> -<xsd:simpleType name="singleSide"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="true"/> - <xsd:enumeration value="false"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for lane->type --> -<!-- enumerations for centerLane->type --> -<xsd:simpleType name="laneType"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="none"/> - <xsd:enumeration value="driving"/> - <xsd:enumeration value="stop"/> - <xsd:enumeration value="shoulder"/> - <xsd:enumeration value="biking"/> - <xsd:enumeration value="sidewalk"/> - <xsd:enumeration value="border"/> - <xsd:enumeration value="restricted"/> - <xsd:enumeration value="parking"/> - <xsd:enumeration value="bidirectional"/> - <xsd:enumeration value="median"/> - <xsd:enumeration value="special1"/> - <xsd:enumeration value="special2"/> - <xsd:enumeration value="special3"/> - <xsd:enumeration value="roadWorks"/> - <xsd:enumeration value="tram"/> - <xsd:enumeration value="rail"/> - <xsd:enumeration value="entry"/> - <xsd:enumeration value="exit"/> - <xsd:enumeration value="offRamp"/> - <xsd:enumeration value="onRamp"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for lane->roadMark->type --> -<!-- enumerations for parkingSpace->marking->type --> -<!-- enumerations for centerLane->roadMark->type --> -<xsd:simpleType name="roadmarkType"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="none"/> - <xsd:enumeration value="solid"/> - <xsd:enumeration value="broken"/> - <xsd:enumeration value="solid solid"/> - <xsd:enumeration value="solid broken"/> - <xsd:enumeration value="broken solid"/> - <xsd:enumeration value="broken broken"/> - <xsd:enumeration value="botts dots"/> - <xsd:enumeration value="grass"/> - <xsd:enumeration value="curb"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for lane->roadMark->weight --> -<!-- enumerations for centerLane->roadMark->weight --> -<xsd:simpleType name="weight"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="standard"/> - <xsd:enumeration value="bold"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for lane->roadMark->color --> -<!-- enumerations for parkingSpace->marking->color --> -<!-- enumerations for centerLane->roadMark->weight --> -<xsd:simpleType name="color"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="standard"/> - <xsd:enumeration value="blue"/> - <xsd:enumeration value="green"/> - <xsd:enumeration value="red"/> - <xsd:enumeration value="white"/> - <xsd:enumeration value="yellow"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for lane->access->restriction --> -<xsd:simpleType name="restriction"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="simulator"/> - <xsd:enumeration value="autonomous traffic"/> - <xsd:enumeration value="pedestrian"/> - <xsd:enumeration value="none"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for lane->roadMark->laneChange --> -<!-- enumerations for centerLane->roadMark->weight --> -<xsd:simpleType name="laneChange"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="increase"/> - <xsd:enumeration value="decrease"/> - <xsd:enumeration value="both"/> - <xsd:enumeration value="none"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for lane->roadMark->type->line->rule --> -<!-- enumerations for centerLane->roadMark->type->line->rule --> -<xsd:simpleType name="rule"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="no passing"/> - <xsd:enumeration value="caution"/> - <xsd:enumeration value="none"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for objects->object->orientation --> -<!-- enumerations for objects->objectReference->orientation --> -<!-- enumerations for signals->signal->orientation --> -<!-- enumerations for signals->signalReference->orientation --> -<xsd:simpleType name="orientation"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="+"/> - <xsd:enumeration value="-"/> - <xsd:enumeration value="none"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for objects->tunnel->type --> -<xsd:simpleType name="tunnelType"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="standard"/> - <xsd:enumeration value="underpass"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for objects->bridge->type --> -<xsd:simpleType name="bridgeType"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="concrete"/> - <xsd:enumeration value="steel"/> - <xsd:enumeration value="brick"/> - <xsd:enumeration value="wood"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for parkingSpace->access --> -<xsd:simpleType name="access"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="all"/> - <xsd:enumeration value="car"/> - <xsd:enumeration value="women"/> - <xsd:enumeration value="handicapped"/> - <xsd:enumeration value="bus"/> - <xsd:enumeration value="truck"/> - <xsd:enumeration value="electric"/> - <xsd:enumeration value="residents"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for parkingSpace->marking->side --> -<xsd:simpleType name="parkingSpacemarkingSide"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="front"/> - <xsd:enumeration value="rear"/> - <xsd:enumeration value="left"/> - <xsd:enumeration value="right"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for signals->signal->dynamic --> -<xsd:simpleType name="dynamic"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="yes"/> - <xsd:enumeration value="no"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for surface->CRG->orientation --> -<xsd:simpleType name="surfaceOrientation"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="same"/> - <xsd:enumeration value="opposite"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for surface->CRG->mode --> -<xsd:simpleType name="mode"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="attached"/> - <xsd:enumeration value="attached0"/> - <xsd:enumeration value="genuine"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for surface->CRG->purpose --> -<xsd:simpleType name="purpose"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="elevation"/> - <xsd:enumeration value="friction"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for railRoad->switch->position --> -<xsd:simpleType name="position"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="dynamic"/> - <xsd:enumeration value="straight"/> - <xsd:enumeration value="turn"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for railRoad->switch->mainTrack->dir--> -<!-- enumerations for railRoad->switch->sideTrack->dir--> -<xsd:simpleType name="dir"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="+"/> - <xsd:enumeration value="-"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for openDRIVE->junctionGroup->type--> -<xsd:simpleType name="junctionGroupType"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="roundabout"/> - <xsd:enumeration value="unknown"/> - </xsd:restriction> -</xsd:simpleType> - -<!-- enumerations for openDRIVE->station->type--> -<xsd:simpleType name="stationType"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="small"/> - <xsd:enumeration value="medium"/> - <xsd:enumeration value="large"/> - </xsd:restriction> -</xsd:simpleType> - -<xsd:complexType name="userData" mixed="true"> - <xsd:sequence> - <xsd:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/> - </xsd:sequence> - <xsd:attribute name="code" type="xsd:string"/> - <xsd:attribute name="value" type="xsd:string"/> -</xsd:complexType> - -<xsd:complexType name="include" > - <xsd:attribute name="file" type="xsd:string"/> -</xsd:complexType> - -<xsd:complexType name="laneValidity"> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="fromLane" type="xsd:int"/> - <xsd:attribute name="toLane" type="xsd:int"/> -</xsd:complexType> - -<xsd:complexType name="parkingSpace"> - <xsd:sequence> - <xsd:element name="marking" minOccurs="0" maxOccurs="4"> - <xsd:complexType> - <xsd:attribute name="side" type="parkingSpacemarkingSide"/> - <xsd:attribute name="type" type="roadmarkType"/> - <xsd:attribute name="width" type="xsd:double"/> - <xsd:attribute name="color" type="color"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="access" type="access"/> - <xsd:attribute name="restrictions" type="xsd:string"/> -</xsd:complexType> - -<xsd:complexType name="lane" > - <xsd:sequence> - <xsd:element name="link" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="predecessor" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="id" type="xsd:int"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="successor" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="id" type="xsd:int"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - <xsd:choice> - <xsd:element name="width" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="a" type="xsd:double"/> - <xsd:attribute name="b" type="xsd:double"/> - <xsd:attribute name="c" type="xsd:double"/> - <xsd:attribute name="d" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="border" minOccurs="1" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="a" type="xsd:double"/> - <xsd:attribute name="b" type="xsd:double"/> - <xsd:attribute name="c" type="xsd:double"/> - <xsd:attribute name="d" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - </xsd:choice> - <xsd:element name="roadMark" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="type" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="line" minOccurs="1" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:attribute name="length" type="xsd:double"/> - <xsd:attribute name="space" type="xsd:double"/> - <xsd:attribute name="tOffset" type="xsd:double"/> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="rule" type="rule"/> - <xsd:attribute name="width" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="width" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="type" type="roadmarkType"/> - <xsd:attribute name="weight" type="weight"/> - <xsd:attribute name="color" type="color"/> - <xsd:attribute name="material" type="xsd:string"/> - <xsd:attribute name="width" type="xsd:double"/> - <xsd:attribute name="laneChange" type="laneChange"/> - <xsd:attribute name="height" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="material" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="surface" type="xsd:string"/> - <xsd:attribute name="friction" type="xsd:double"/> - <xsd:attribute name="roughness" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="visibility" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="forward" type="xsd:double"/> - <xsd:attribute name="back" type="xsd:double"/> - <xsd:attribute name="left" type="xsd:double"/> - <xsd:attribute name="right" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="speed" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="max" type="xsd:double"/> - <xsd:attribute name="unit" type="unit"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="access" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="restriction" type="restriction"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="height" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="inner" type="xsd:double"/> - <xsd:attribute name="outer" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="rule" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="value" type="xsd:string"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="id" type="xsd:int"/> - <xsd:attribute name="type" type="laneType"/> - <xsd:attribute name="level" type="singleSide"/> -</xsd:complexType> - -<xsd:complexType name="centerLane" > - <xsd:sequence> - <xsd:element name="link" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="predecessor" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="id" type="xsd:int"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="successor" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:attribute name="id" type="xsd:int"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - </xsd:complexType> - </xsd:element> - <xsd:element name="roadMark" minOccurs="0" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="type" minOccurs="0" maxOccurs="1"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="line" minOccurs="1" maxOccurs="unbounded"> - <xsd:complexType> - <xsd:attribute name="length" type="xsd:double"/> - <xsd:attribute name="space" type="xsd:double"/> - <xsd:attribute name="tOffset" type="xsd:double"/> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="rule" type="rule"/> - <xsd:attribute name="width" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string"/> - <xsd:attribute name="width" type="xsd:double"/> - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="sOffset" type="xsd:double"/> - <xsd:attribute name="type" type="roadmarkType"/> - <xsd:attribute name="weight" type="weight"/> - <xsd:attribute name="color" type="color"/> - <xsd:attribute name="material" type="xsd:string"/> - <xsd:attribute name="width" type="xsd:double"/> - <xsd:attribute name="laneChange" type="laneChange"/> - <xsd:attribute name="height" type="xsd:double"/> - - </xsd:complexType> - </xsd:element> - <xsd:element name="userData" type="userData" minOccurs="0" maxOccurs="unbounded"/> - <xsd:element name="include" type="include" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="id" type="xsd:int"/> - <xsd:attribute name="type" type="laneType"/> - <xsd:attribute name="level" type="singleSide"/> -</xsd:complexType> - - -</xsd:schema> diff --git a/src/xml/OpenDRIVE_1.5M.xsd b/src/xml/OpenDRIVE_1.5M.xsd deleted file mode 100644 index 85edb2709e4d4cf608c339fb4ed6768f78a89e47..0000000000000000000000000000000000000000 --- a/src/xml/OpenDRIVE_1.5M.xsd +++ /dev/null @@ -1,1747 +0,0 @@ -<?xml version="1.0"?> -<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="unqualified"> - - <xs:annotation> - <xs:documentation> - XML Schema 1.0 Definition for OpenDRIVE XML files - Rev. 1.5M, excluding SET records, (c)2019 by VIRES Simulationstechnologie GmbH, Germany - </xs:documentation> - </xs:annotation> - - - <!-- user defined data types --> - - <xs:simpleType name="t_grEqZero"> - <xs:restriction base="xs:double"> - <xs:minInclusive value="0.0"/> - </xs:restriction> - </xs:simpleType> <!-- end t_grEqZero --> - - <xs:simpleType name="t_grZero"> - <xs:restriction base="xs:double"> - <xs:minExclusive value="0.0"/> - </xs:restriction> - </xs:simpleType> <!-- end t_grZero --> - - <xs:simpleType name="t_zeroOne"> - <xs:restriction base="xs:double"> - <xs:minInclusive value="0.0"/> - <xs:maxInclusive value="1.0"/> - </xs:restriction> - </xs:simpleType> <!-- end t_zeroOne --> - - <xs:simpleType name="t_bool"> - <xs:restriction base="xs:string"> - <xs:enumeration value="true"/> - <xs:enumeration value="false"/> - </xs:restriction> - </xs:simpleType> <!-- end t_bool --> - - <xs:simpleType name="t_yesNo"> - <xs:restriction base="xs:string"> - <xs:enumeration value="yes"/> - <xs:enumeration value="no"/> - </xs:restriction> - </xs:simpleType> <!-- end t_yesNo --> - - <xs:simpleType name="t_header_Version"> - <xs:restriction base="xs:float"> - <xs:pattern value="\d\.\d{2}"/> - </xs:restriction> - </xs:simpleType> <!-- end t_header_Version --> - - <xs:simpleType name="t_maxSpeed"> - <xs:union memberTypes="e_maxSpeedString t_grEqZero"/> - </xs:simpleType> <!-- end t_maxSpeed --> - - <xs:simpleType name="e_maxSpeedString"> - <xs:restriction base="xs:string"> - <xs:enumeration value="no limit"/> - <xs:enumeration value="undefined"/> - </xs:restriction> - </xs:simpleType> <!-- end e_maxSpeedString --> - - <xs:simpleType name="t_junction_id"> - <xs:restriction base="xs:string"> - <!-- <xs:pattern value="^(?!-1).*|^-1.+"/> --> <!-- xmllint complains about that, QXmlValidator works fine --> - <xs:pattern value=".*"/> <!-- dummy entry which allows everything. If your validator knows the xpath expression above then uncomment it and remove this line --> - </xs:restriction> - </xs:simpleType> <!-- end t_junction_id --> - - <!-- end user defined data types --> - - - <!-- 5.1 Enclosing Tag --> - <xs:element name="OpenDRIVE"> - <xs:complexType> - <xs:sequence> - <xs:element name="header" type="t_header" minOccurs="1" maxOccurs="1"/> - <xs:element name="road" type="t_road" minOccurs="1" maxOccurs="unbounded"/> - <xs:element name="controller" type="t_controller" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="junction" type="t_junction" minOccurs="0" maxOccurs="unbounded"> - <xs:key name="k_junction_connectionId"> - <xs:selector xpath="connection"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_junction_controllerId"> - <xs:selector xpath="junction/controller"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:keyref name="r_junction_connection_master" refer="k_junction_connectionId"> - <xs:selector xpath="junction/connection"/> - <xs:field xpath="@connectionMaster"/> - </xs:keyref> - </xs:element> - <xs:element name="junctionGroup" type="t_junctionGroup" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="station" type="t_station" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> - - <xs:key name="k_roadId"> - <xs:selector xpath="road"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_road_objects_objectId"> - <xs:selector xpath="road/objects/object"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_road_objects_objectReferenceId"> - <xs:selector xpath="road/objects/objectReference"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_road_objects_tunnel"> - <xs:selector xpath="road/objects/tunnel"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_road_objects_bridge"> - <xs:selector xpath="road/objects/bridge"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_road_signals_signalId"> - <xs:selector xpath="road/signals/signal"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_road_railroad_switchId"> - <xs:selector xpath="road/railroad/switch"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_road_railroad_switchName"> - <xs:selector xpath="road/railroad/switch"/> - <xs:field xpath="@name"/> - </xs:key> - <xs:key name="k_controllerId"> - <xs:selector xpath="controller"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_junctionId"> - <xs:selector xpath="junction"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_junctionGroupId"> - <xs:selector xpath="junctionGroup"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_stationId"> - <xs:selector xpath="station"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:key name="k_station_platformId"> - <xs:selector xpath="station/platform"/> - <xs:field xpath="@id"/> - </xs:key> - - <xs:keyref name="r_road_link_neighbor" refer="k_roadId"> - <xs:selector xpath="road/link/neighbor"/> - <xs:field xpath="@id"/> - </xs:keyref> - <xs:keyref name="r_road_objects_objectReference" refer="k_road_objects_objectId"> - <xs:selector xpath="road/objects/objectReference"/> - <xs:field xpath="@outlineId"/> - </xs:keyref> - <xs:keyref name="r_road_signals_signal_dependency" refer="k_road_signals_signalId"> - <xs:selector xpath="road/signals/signal/dependency"/> - <xs:field xpath="@id"/> - </xs:keyref> - <xs:keyref name="r_road_signals_signal_positionRoad" refer="k_roadId"> - <xs:selector xpath="road/signals/signal/positionRoad"/> - <xs:field xpath="@roadId"/> - </xs:keyref> - <xs:keyref name="r_road_signals_signalReference" refer="k_road_signals_signalId"> - <xs:selector xpath="road/signals/signalReference"/> - <xs:field xpath="@id"/> - </xs:keyref> - <xs:keyref name="r_road_railroad_switch_mainTrack" refer="k_road_railroad_switchId"> - <xs:selector xpath="road/railroad/switch/mainTrack"/> - <xs:field xpath="@id"/> - </xs:keyref> - <xs:keyref name="r_road_railroad_switch_sideTrack" refer="k_road_railroad_switchId"> - <xs:selector xpath="road/railroad/switch/sideTrack"/> - <xs:field xpath="@id"/> - </xs:keyref> - <xs:keyref name="r_road_railroad_switch_partner" refer="k_road_railroad_switchId"> - <xs:selector xpath="road/railroad/switch/partner"/> - <xs:field xpath="@id"/> - </xs:keyref> - <xs:keyref name="r_controller_control" refer="k_road_signals_signalId"> - <xs:selector xpath="controller/control"/> - <xs:field xpath="@signalId"/> - </xs:keyref> - <xs:keyref name="r_junction_connection_incomingRoad" refer="k_roadId"> - <xs:selector xpath="junction/connection"/> - <xs:field xpath="@incomingRoad"/> - <!-- <xs:field xpath="@connectingRoad"/> --> - </xs:keyref> - <xs:keyref name="r_junction_connection_connectingRoad" refer="k_roadId"> - <xs:selector xpath="junction/connection"/> - <!-- <xs:field xpath="@incomingRoad"/> --> - <xs:field xpath="@connectingRoad"/> - </xs:keyref> - <xs:keyref name="r_station_platform_segment" refer="k_roadId"> - <xs:selector xpath="station/platform/segment"/> - <xs:field xpath="@roadId"/> - </xs:keyref> - - </xs:element> <!-- end OpenDRIVE --> - - <!-- 5.2 Header --> - <xs:complexType name="t_header"> - <xs:sequence> - <xs:element name="geoReference" type="t_header_GeoReference" minOccurs="0" maxOccurs="1"/> - <xs:element name="offset" type="t_header_Offset" minOccurs="0" maxOccurs="1"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="revMajor" type="xs:integer" fixed="1" use="required"/> - <xs:attribute name="revMinor" type="xs:integer" fixed="5" use="required"/> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="version" type="t_header_Version" use="optional"/> - <xs:attribute name="date" type="xs:string" use="optional"/> <!-- should be ISO 8601 --> - <xs:attribute name="north" type="xs:double" use="optional"/> - <xs:attribute name="south" type="xs:double" use="optional"/> - <xs:attribute name="east" type="xs:double" use="optional"/> - <xs:attribute name="west" type="xs:double" use="optional"/> - <xs:attribute name="vendor" type="xs:string" use="optional"/> - </xs:complexType> <!-- end t_header --> - - <!-- 5.2.1 Geo Reference --> - <xs:complexType name="t_header_GeoReference" mixed="true"> <!-- mixed="true" allows text content AND elements like userData --> - <xs:group ref="g_additionalData"/> - </xs:complexType> <!-- end t_headerGeoReference --> - - <!-- 5.2.2 Offset --> - <xs:complexType name="t_header_Offset"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="x" type="xs:double" use="required"/> - <xs:attribute name="y" type="xs:double" use="required"/> - <xs:attribute name="z" type="xs:double" use="required"/> - <xs:attribute name="hdg" type="xs:float" use="required"/> - </xs:complexType> <!-- end t_headerOffset --> - - <!-- 5.3.1 Road Header Record --> - <xs:complexType name="t_road"> - <xs:sequence> - <xs:element name="link" type="t_road_link" minOccurs="0" maxOccurs="1"/> - <xs:element name="type" type="t_road_type" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="planView" type="t_road_planView" minOccurs="1" maxOccurs="1"/> - <xs:element name="elevationProfile" type="t_road_elevationProfile" minOccurs="0" maxOccurs="1"/> - <xs:element name="lateralProfile" type="t_road_lateralProfile" minOccurs="0" maxOccurs="1"/> - <xs:element name="lanes" type="t_road_lanes" minOccurs="1" maxOccurs="1"/> - <xs:element name="objects" type="t_road_objects" minOccurs="0" maxOccurs="1"/> - <xs:element name="signals" type="t_road_signals" minOccurs="0" maxOccurs="1"/> - <xs:element name="surface" type="t_road_surface" minOccurs="0" maxOccurs="1"/> - <xs:element name="railroad" type="t_road_railroad" minOccurs="0" maxOccurs="1"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="length" type="t_grEqZero" use="required"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="junction" type="xs:string" use="required"/> - <xs:attribute name="rule" type="e_trafficRule" use="optional"/> <!-- new in OpenDrive 1.5M --> - </xs:complexType> <!-- end t_road --> - - <xs:simpleType name="e_trafficRule"> - <xs:restriction base="xs:string"> - <xs:enumeration value="RHT"/> - <xs:enumeration value="LHT"/> - </xs:restriction> - </xs:simpleType> <!-- end e_trafficRule --> - - <!-- 5.3.2 Road Link Record --> - <xs:complexType name="t_road_link" > - <xs:sequence> - <xs:element name="predecessor" type="t_road_link_predecessorSuccessor" minOccurs="0" maxOccurs="1"/> - <xs:element name="successor" type="t_road_link_predecessorSuccessor" minOccurs="0" maxOccurs="1"/> - <xs:element name="neighbor" type="t_road_link_neighbor" minOccurs="0" maxOccurs="2"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_link --> - - <!-- 5.3.2.1 Road Predecessor --> - <!-- 5.3.2.2 Road Successor --> - <xs:complexType name="t_road_link_predecessorSuccessor"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="elementType" type="e_road_link_elementType" use="required"/> - <xs:attribute name="elementId" type="xs:string" use="required"/> - <!-- <xs:attributeGroup> --> <!-- variant 1 --> - <xs:attribute name="contactPoint" type="e_contactPoint" use="optional"/> - <!-- </xs:attributeGroup> --> - <!-- <xs:attributeGroup> --> <!-- variant 2--> - <xs:attribute name="elementS" type="t_grEqZero" use="optional"/> - <xs:attribute name="elementDir" type="e_elementDir" use="optional"/> - <!-- </xs:attributeGroup> --> - </xs:complexType> <!-- end t_road_link_predecessorSuccessor --> - - <xs:simpleType name="e_road_link_elementType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="road"/> - <xs:enumeration value="junction"/> - </xs:restriction> - </xs:simpleType> <!-- end e_road_link_elementType --> - - <!-- 5.3.2.3 Road Neighbor --> - <xs:complexType name="t_road_link_neighbor"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="side" type="e_road_link_neighbor_side" use="required"/> - <xs:attribute name="elementId" type="xs:string" use="required"/> - <xs:attribute name="direction" type="e_direction" use="required"/> - </xs:complexType> <!-- end t_road_link_neighbor --> - - <xs:simpleType name="e_road_link_neighbor_side"> - <xs:restriction base="xs:string"> - <xs:enumeration value="left"/> - <xs:enumeration value="right"/> - </xs:restriction> - </xs:simpleType> <!-- end e_road_link_neighbor_side --> - - <!-- 5.3.3 Road Type Record --> - <xs:complexType name="t_road_type"> - <xs:sequence> - <xs:element name="speed" type="t_road_type_speed" minOccurs="0" maxOccurs="1"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="type" type="e_roadType" use="required"/> - <xs:attribute name="country" type="e_countryCode" use="optional"/> <!-- new in OpenDrive 1.5M --> - </xs:complexType> <!-- end t_road_type --> - - <!-- 5.3.3.1 Speed Record --> - <xs:complexType name="t_road_type_speed"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="max" type="t_maxSpeed" use="required"/> - <xs:attribute name="unit" type="e_unitSpeed" use="optional"/> - </xs:complexType> <!-- end t_road_type_speed --> - - <!-- 5.3.4 Road Plan View Record --> - <xs:complexType name="t_road_planView"> - <xs:sequence> - <xs:element name="geometry" type="t_road_planView_geometry" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_planView --> - - <!-- 5.3.4.1 Road Geometry Header Record --> - <xs:complexType name="t_road_planView_geometry"> - <xs:choice> - <xs:element name="line" type="t_road_planView_geometry_line"/> - <xs:element name="spiral" type="t_road_planView_geometry_spiral"/> - <xs:element name="arc" type="t_road_planView_geometry_arc"/> - <xs:element name="poly3" type="t_road_planView_geometry_poly3"/> - <xs:element name="paramPoly3" type="t_road_planView_geometry_paramPoly3"/> - <xs:group ref="g_additionalData"/> - </xs:choice> - - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="x" type="xs:double" use="required"/> - <xs:attribute name="y" type="xs:double" use="required"/> - <xs:attribute name="hdg" type="xs:double" use="required"/> - <xs:attribute name="length" type="t_grEqZero" use="required"/> - </xs:complexType> <!-- end t_road_planView_geometry --> - - <!-- 5.3.4.1.1 Geometry, Line Record --> - <xs:complexType name="t_road_planView_geometry_line"> - <xs:group ref="g_additionalData"/> - </xs:complexType> <!-- end t_road_planView_geometry_line --> - - <!-- 5.3.4.1.2 Geometry, Spiral Record (Clothoids) --> - <xs:complexType name="t_road_planView_geometry_spiral"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="curvStart" type="xs:double" use="required"/> - <xs:attribute name="curvEnd" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_planView_geometry_spiral --> - - <!-- 5.3.4.1.3 Geometry, Arc Record --> - <xs:complexType name="t_road_planView_geometry_arc"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="curvature" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_planView_geometry_arc --> - - <!-- 5.3.4.1.4 Geometry, Cubic Polynomial Record --> - <xs:complexType name="t_road_planView_geometry_poly3"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="a" type="xs:double" use="required"/> - <xs:attribute name="b" type="xs:double" use="required"/> - <xs:attribute name="c" type="xs:double" use="required"/> - <xs:attribute name="d" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_planView_geometry_poly3 --> - - <!-- 5.3.4.1.5 Geometry, Parametric Cubic Curve Record --> - <xs:complexType name="t_road_planView_geometry_paramPoly3"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="aU" type="xs:double" use="required"/> - <xs:attribute name="bU" type="xs:double" use="required"/> - <xs:attribute name="cU" type="xs:double" use="required"/> - <xs:attribute name="dU" type="xs:double" use="required"/> - <xs:attribute name="aV" type="xs:double" use="required"/> - <xs:attribute name="bV" type="xs:double" use="required"/> - <xs:attribute name="cV" type="xs:double" use="required"/> - <xs:attribute name="dV" type="xs:double" use="required"/> - <xs:attribute name="pRange" type="e_paramPoly3_pRange" use="required"/> - </xs:complexType> <!-- end t_road_planView_geometry_paramPoly3 --> - - <xs:simpleType name="e_paramPoly3_pRange"> - <xs:restriction base="xs:string"> - <xs:enumeration value="arcLength"/> - <xs:enumeration value="normalized"/> - </xs:restriction> - </xs:simpleType> <!-- end e_paramPoly3_pRange --> - - <!-- 5.3.5 Road Elevation Profile Record --> - <xs:complexType name="t_road_elevationProfile"> - <xs:sequence> - <xs:element name="elevation" type="t_road_elevationProfile_elevation" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_elevationProfile --> - - <!-- 5.3.5.1 Road Elevation Record --> - <xs:complexType name="t_road_elevationProfile_elevation"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="a" type="xs:double" use="required"/> - <xs:attribute name="b" type="xs:double" use="required"/> - <xs:attribute name="c" type="xs:double" use="required"/> - <xs:attribute name="d" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_elevationProfile_elevation --> - - <!-- 5.3.6 Road Lateral Profile Record --> - <xs:complexType name="t_road_lateralProfile"> - <xs:sequence> - <xs:element name="superelevation" type="t_road_lateralProfile_superelevation" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="crossfall" type="t_road_lateralProfile_crossfall" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="shape" type="t_road_lateralProfile_shape" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_lateralProfile --> - - <!-- 5.3.6.1 Road Superelevation Record --> - <xs:complexType name="t_road_lateralProfile_superelevation"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="a" type="xs:double" use="required"/> - <xs:attribute name="b" type="xs:double" use="required"/> - <xs:attribute name="c" type="xs:double" use="required"/> - <xs:attribute name="d" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_lateralProfile_superelevation --> - - <!-- 5.3.6.2 Crossfall Record --> - <xs:complexType name="t_road_lateralProfile_crossfall"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="side" type="e_road_lateralProfile_crossfall_side" use="required"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="a" type="xs:double" use="required"/> - <xs:attribute name="b" type="xs:double" use="required"/> - <xs:attribute name="c" type="xs:double" use="required"/> - <xs:attribute name="d" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_lateralProfile_crossfall --> - - <xs:simpleType name="e_road_lateralProfile_crossfall_side"> - <xs:restriction base="xs:string"> - <xs:enumeration value="left"/> - <xs:enumeration value="right"/> - <xs:enumeration value="both"/> - </xs:restriction> - </xs:simpleType> <!-- end e_road_lateralProfile_crossfall_side --> - - <!-- 5.3.6.3 Road Shape Record --> - <xs:complexType name="t_road_lateralProfile_shape"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="t" type="xs:double" use="required"/> - <xs:attribute name="a" type="xs:double" use="required"/> - <xs:attribute name="b" type="xs:double" use="required"/> - <xs:attribute name="c" type="xs:double" use="required"/> - <xs:attribute name="d" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_lateralProfile_shape --> - - <!-- 5.3.7 Lanes Record --> - <xs:complexType name="t_road_lanes"> - <xs:sequence> - <xs:element name="laneOffset" type="t_road_lanes_laneOffset" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="laneSection" type="t_road_lanes_laneSection" minOccurs="1" maxOccurs="unbounded"> - <xs:key name="k_road_lanes_laneSection_laneId"> - <xs:selector xpath="*/lane"/> - <xs:field xpath="@id"/> - </xs:key> - </xs:element> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_lanes --> - - <!-- 5.3.7.1 Lane Offset Record --> - <xs:complexType name="t_road_lanes_laneOffset"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="a" type="xs:double" use="required"/> - <xs:attribute name="b" type="xs:double" use="required"/> - <xs:attribute name="c" type="xs:double" use="required"/> - <xs:attribute name="d" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneOffset --> - - <!-- 5.3.7.2 Lane Section Record --> - <xs:complexType name="t_road_lanes_laneSection" > - <xs:sequence> - <xs:element name="left" type="t_road_lanes_laneSection_left" minOccurs="0" maxOccurs="1"/> - <xs:element name="center" type="t_road_lanes_laneSection_center" minOccurs="0" maxOccurs="1"/> - <xs:element name="right" type="t_road_lanes_laneSection_right" minOccurs="0" maxOccurs="1"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="singleSide" type="t_bool" use="optional"/> - </xs:complexType> <!-- end t_road_lanes_laneSection --> - - <!-- 5.3.7.2.1 Left/Center/Right Records --> - <xs:complexType name="t_road_lanes_laneSection_left"> - <xs:sequence> - <xs:element name="lane" type="t_road_lanes_laneSection_left_lane" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_lanes_laneSection_left --> - - <xs:complexType name="t_road_lanes_laneSection_center"> - <xs:sequence> - <xs:element name="lane" type="t_road_lanes_laneSection_center_lane" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_lanes_laneSection_center --> - - <xs:complexType name="t_road_lanes_laneSection_right"> - <xs:sequence> - <xs:element name="lane" type="t_road_lanes_laneSection_right_lane" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_lanes_laneSection_right --> - - <!-- 5.3.7.2.1.1 Lane Record --> - <xs:complexType name="t_road_lanes_laneSection_center_lane"> - <xs:sequence> - <xs:element name="link" type="t_road_lanes_laneSection_lcr_lane_link" minOccurs="0" maxOccurs="1"/> - <xs:element name="roadMark" type="t_road_lanes_laneSection_lcr_lane_roadMark" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="id" type="xs:integer" fixed="0" use="required"/> - <xs:attribute name="type" type="e_laneType" use="required"/> - <xs:attribute name="level" type="t_bool" use="optional"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_center_lane --> - - <xs:complexType name="t_road_lanes_laneSection_lr_lane"> - <xs:sequence> - <xs:element name="link" type="t_road_lanes_laneSection_lcr_lane_link" minOccurs="0" maxOccurs="1"/> - <xs:choice maxOccurs="unbounded"> - <xs:element name="width" type="t_road_lanes_laneSection_lr_lane_width" minOccurs="1" maxOccurs="unbounded"/> - <xs:element name="border" type="t_road_lanes_laneSection_lr_lane_border" minOccurs="1" maxOccurs="unbounded"/> - </xs:choice> - <xs:element name="roadMark" type="t_road_lanes_laneSection_lcr_lane_roadMark" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="material" type="t_road_lanes_laneSection_lr_lane_material" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="visibility" type="t_road_lanes_laneSection_lr_lane_visibility" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="speed" type="t_road_lanes_laneSection_lr_lane_speed" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="access" type="t_road_lanes_laneSection_lr_lane_access" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="height" type="t_road_lanes_laneSection_lr_lane_height" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="rule" type="t_road_lanes_laneSection_lr_lane_rule" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="type" type="e_laneType" use="required"/> - <xs:attribute name="level" type="t_bool" use="optional"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lr_lane --> - - <xs:complexType name="t_road_lanes_laneSection_left_lane"> - <xs:complexContent> - <xs:extension base="t_road_lanes_laneSection_lr_lane"> - <xs:attribute name="id" type="xs:positiveInteger" use="required"/> - </xs:extension> - </xs:complexContent> - </xs:complexType> <!-- end t_road_lanes_laneSection_left_lane --> - - <xs:complexType name="t_road_lanes_laneSection_right_lane"> - <xs:complexContent> - <xs:extension base="t_road_lanes_laneSection_lr_lane"> - <xs:attribute name="id" type="xs:negativeInteger" use="required"/> - </xs:extension> - </xs:complexContent> - </xs:complexType> <!-- end t_road_lanes_laneSection_right_lane --> - - <!-- 5.3.7.2.1.1.1 Lane Link Record --> - <xs:complexType name="t_road_lanes_laneSection_lcr_lane_link"> - <xs:sequence> - <xs:element name="predecessor" type="t_road_lanes_laneSection_lcr_lane_link_predecessorSuccessor" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="successor" type="t_road_lanes_laneSection_lcr_lane_link_predecessorSuccessor" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_lanes_laneSection_lcr_lane_link --> - - <!-- 5.3.7.2.1.1.1.1 Lane Predecessor, 5.3.7.2.1.1.1.2 Lane Successor --> - <xs:complexType name="t_road_lanes_laneSection_lcr_lane_link_predecessorSuccessor"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="id" type="xs:integer" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lcr_lane_link_predecessorSuccessor --> - - <!-- 5.3.7.2.1.1.2 Lane Width Record --> - <xs:complexType name="t_road_lanes_laneSection_lr_lane_width"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="a" type="xs:double" use="required"/> - <xs:attribute name="b" type="xs:double" use="required"/> - <xs:attribute name="c" type="xs:double" use="required"/> - <xs:attribute name="d" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lr_lane_width --> - - <!-- 5.3.7.2.1.1.3 Lane Border Record --> - <xs:complexType name="t_road_lanes_laneSection_lr_lane_border"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="a" type="xs:double" use="required"/> - <xs:attribute name="b" type="xs:double" use="required"/> - <xs:attribute name="c" type="xs:double" use="required"/> - <xs:attribute name="d" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lr_lane_border --> - - <!-- 5.3.7.2.1.1.4 Road Mark Record --> - <xs:complexType name="t_road_lanes_laneSection_lcr_lane_roadMark"> - <xs:sequence> - <xs:element name="sway" type="t_road_lanes_laneSection_lcr_lane_roadMark_sway" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="type" type="t_road_lanes_laneSection_lcr_lane_roadMark_type" minOccurs="0" maxOccurs="1"/> - <xs:element name="explicit" type="t_road_lanes_laneSection_lcr_lane_roadMark_explicit" minOccurs="0" maxOccurs="1"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="type" type="e_roadMarkType" use="required"/> - <xs:attribute name="weight" type="e_roadMarkWeight" use="optional"/> - <xs:attribute name="color" type="e_roadMarkColor" use="required"/> - <xs:attribute name="material" type="xs:string" use="optional"/> - <xs:attribute name="width" type="t_grEqZero" use="optional"/> - <xs:attribute name="laneChange" type="e_road_lanes_laneSection_lcr_lane_roadMark_laneChange" use="optional"/> - <xs:attribute name="height" type="xs:double" use="optional"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lcr_lane_roadMark --> - - <xs:simpleType name="e_road_lanes_laneSection_lcr_lane_roadMark_laneChange"> - <xs:restriction base="xs:string"> - <xs:enumeration value="increase"/> - <xs:enumeration value="decrease"/> - <xs:enumeration value="both"/> - <xs:enumeration value="none"/> - </xs:restriction> - </xs:simpleType> <!-- end e_road_lanes_laneSection_lcr_lane_roadMark_laneChange --> - - <!-- 5.3.7.2.1.1.4.1 Road Mark - Sway Definition (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_lanes_laneSection_lcr_lane_roadMark_sway"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="ds" type="t_grEqZero" use="required"/> - <xs:attribute name="a" type="xs:double" use="required"/> - <xs:attribute name="b" type="xs:double" use="required"/> - <xs:attribute name="c" type="xs:double" use="required"/> - <xs:attribute name="d" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lcr_lane_roadMark_sway --> - - <!-- 5.3.7.2.1.1.4.2 Road Mark Type --> - <xs:complexType name="t_road_lanes_laneSection_lcr_lane_roadMark_type"> - <xs:sequence> - <xs:element name="line" type="t_road_lanes_laneSection_lcr_lane_roadMark_type_line" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="name" type="xs:string" use="required"/> - <xs:attribute name="width" type="t_grEqZero" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lcr_lane_roadMark_type --> - - <!-- 5.3.7.2.1.1.4.2.1 Road Mark Type - Line Definition --> - <xs:complexType name="t_road_lanes_laneSection_lcr_lane_roadMark_type_line"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="length" type="t_grEqZero" use="required"/> - <xs:attribute name="space" type="t_grEqZero" use="required"/> - <xs:attribute name="tOffset" type="xs:double" use="required"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="rule" type="e_roadMarkRule" use="optional"/> - <xs:attribute name="width" type="t_grEqZero" use="required"/> - <xs:attribute name="color" type="e_roadMarkColor" use="optional"/> <!-- new in OpenDrive 1.5M --> - </xs:complexType> <!-- end t_road_lanes_laneSection_lcr_lane_roadMark_type_line --> - - <!-- 5.3.7.2.1.1.4.3 Explicit Road Mark Definition (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_lanes_laneSection_lcr_lane_roadMark_explicit"> - <xs:sequence> - <xs:element name="line" type="t_road_lanes_laneSection_lcr_lane_roadMark_explicit_line" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_lanes_laneSection_lcr_lane_roadMark_explicit --> - - <!-- 5.3.7.2.1.1.4.3.1 Explicit Road Mark Definition - Line Entry (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_lanes_laneSection_lcr_lane_roadMark_explicit_line"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="length" type="t_grEqZero" use="required"/> - <xs:attribute name="tOffset" type="xs:double" use="required"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="rule" type="e_roadMarkRule" use="optional"/> - <xs:attribute name="width" type="t_grEqZero" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lcr_lane_roadMark_explicit_line --> - - <!-- 5.3.7.2.1.1.5 Lane Material Record --> - <xs:complexType name="t_road_lanes_laneSection_lr_lane_material"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="surface" type="xs:string" use="optional"/> - <xs:attribute name="friction" type="t_grEqZero" use="required"/> - <xs:attribute name="roughness" type="t_grEqZero" use="optional"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lr_lane_material --> - - <!-- 5.3.7.2.1.1.6 Lane Visibility Record --> - <xs:complexType name="t_road_lanes_laneSection_lr_lane_visibility"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="forward" type="t_grEqZero" use="required"/> - <xs:attribute name="back" type="t_grEqZero" use="required"/> - <xs:attribute name="left" type="t_grEqZero" use="required"/> - <xs:attribute name="right" type="t_grEqZero" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lr_lane_visibility --> - - <!-- 5.3.7.2.1.1.7 Lane Speed Record --> - <xs:complexType name="t_road_lanes_laneSection_lr_lane_speed"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="max" type="t_grEqZero" use="required"/> - <xs:attribute name="unit" type="e_unitSpeed" use="optional"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lr_lane_speed --> - - <!-- 5.3.7.2.1.1.8 Lane Access Record --> - <xs:complexType name="t_road_lanes_laneSection_lr_lane_access" > - <xs:group ref="g_additionalData"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="rule" type="e_road_lanes_laneSection_lr_lane_access_rule" use="required"/> <!-- new in OpenDrive 1.5M --> - <xs:attribute name="restriction" type="e_accessRestrictionType" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lr_lane_access --> - - <xs:simpleType name="e_road_lanes_laneSection_lr_lane_access_rule"> - <xs:restriction base="xs:string"> - <xs:enumeration value="allow"/> - <xs:enumeration value="deny"/> - </xs:restriction> - </xs:simpleType> <!-- end e_road_lanes_laneSection_lr_lane_access_rule --> - - <!-- 5.3.7.2.1.1.9 Lane Height Record --> - <xs:complexType name="t_road_lanes_laneSection_lr_lane_height"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="inner" type="xs:double" use="required"/> - <xs:attribute name="outer" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lr_lane_height --> - - <!-- 5.3.7.2.1.1.10 Lane Rule Record --> - <xs:complexType name="t_road_lanes_laneSection_lr_lane_rule"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="sOffset" type="t_grEqZero" use="required"/> - <xs:attribute name="value" type="xs:string" use="required"/> - </xs:complexType> <!-- end t_road_lanes_laneSection_lr_lane_rule --> - - <!-- 5.3.8 Road Objects Record --> - <xs:complexType name="t_road_objects"> - <xs:sequence> - <xs:element name="object" type="t_road_objects_object" minOccurs="0" maxOccurs="unbounded"> - <xs:key name="k_road_objects_object_outlineId"> - <xs:selector xpath="outline"/> - <xs:field xpath="@id"/> - </xs:key> - <xs:keyref name="r_road_objects_object_outline_cornerRoad" refer="k_road_objects_object_outlineId"> - <xs:selector xpath="outline/cornerRoad"/> - <xs:field xpath="@id"/> - </xs:keyref> - <xs:keyref name="r_road_objects_object_outline_cornerLocal" refer="k_road_objects_object_outlineId"> - <xs:selector xpath="outline/cornerLocal"/> - <xs:field xpath="@id"/> - </xs:keyref> - <xs:keyref name="r_road_objects_object_borders_border" refer="k_road_objects_object_outlineId"> - <xs:selector xpath="borders/border"/> - <xs:field xpath="@outlineId"/> - </xs:keyref> - </xs:element> - <xs:element name="objectReference" type="t_road_objects_objectReference" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="tunnel" type="t_road_objects_tunnel" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="bridge" type="t_road_objects_bridge" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_objects --> - - <!-- 5.3.8.1 Object Record --> - <xs:complexType name="t_road_objects_object"> - <xs:sequence> - <xs:element name="repeat" type="t_road_objects_object_repeat" minOccurs="0" maxOccurs="1"/> - <xs:element name="outline" type="t_road_objects_object_outlines_outline" minOccurs="0" maxOccurs="1"/> <!-- support for OpenDrive 1.4 --> - <xs:element name="outlines" type="t_road_objects_object_outlines" minOccurs="0" maxOccurs="1"/> - <xs:element name="material" type="t_road_objects_object_material" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="validity" type="t_road_objects_object_laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="parkingSpace" type="t_road_objects_object_parkingSpace" minOccurs="0" maxOccurs="1"/> - <xs:element name="markings" type="t_road_objects_object_markings" minOccurs="0" maxOccurs="1"/> - <xs:element name="borders" type="t_road_objects_object_borders" minOccurs="0" maxOccurs="1"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="type" type="e_objectType" use="optional"/> - <xs:attribute name="subtype" type="xs:string" use="optional"/> <!-- new in OpenDrive 1.5M --> - <xs:attribute name="dynamic" type="t_yesNo" use="required"/> <!-- new in OpenDrive 1.5M --> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="t" type="xs:double" use="required"/> - <xs:attribute name="zOffset" type="xs:double" use="required"/> - <xs:attribute name="validLength" type="t_grEqZero" use="required"/> - <xs:attribute name="orientation" type="e_orientation" use="required"/> - <xs:attribute name="hdg" type="xs:double" use="required"/> - <xs:attribute name="pitch" type="xs:double" use="required"/> - <xs:attribute name="roll" type="xs:double" use="required"/> - <xs:attribute name="height" type="xs:double" use="required"/> - <!-- <xs:attributeGroup> --> <!-- variant 1 --> - <xs:attribute name="length" type="xs:double" use="optional"/> - <xs:attribute name="width" type="xs:double" use="optional"/> - <!-- </xs:attributeGroup> --> - <!-- <xs:attributeGroup> --> <!-- variant 2 (new in OpenDrive 1.5M) --> - <xs:attribute name="radius" type="xs:double" use="optional"/> - <!-- </xs:attributeGroup> --> - </xs:complexType> <!-- end t_road_objects_object --> - - <!-- 5.3.8.1.1 Object Repeat Record --> - <xs:complexType name="t_road_objects_object_repeat"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="length" type="t_grEqZero" use="required"/> - <xs:attribute name="distance" type="t_grEqZero" use="required"/> - <xs:attribute name="tStart" type="xs:double" use="required"/> - <xs:attribute name="tEnd" type="xs:double" use="required"/> - <xs:attribute name="heightStart" type="xs:double" use="required"/> - <xs:attribute name="heightEnd" type="xs:double" use="required"/> - <xs:attribute name="zOffsetStart" type="xs:double" use="required"/> - <xs:attribute name="zOffsetEnd" type="xs:double" use="required"/> - <xs:attribute name="widthStart" type="t_grEqZero" use="required"/> - <xs:attribute name="widthEnd" type="t_grEqZero" use="required"/> - <!-- <xs:attributeGroup> --> <!-- variant 1 --> - <xs:attribute name="lengthStart" type="t_grEqZero" use="optional"/> - <xs:attribute name="lengthEnd" type="t_grEqZero" use="optional"/> - <!-- </xs:attributeGroup> --> - <!-- <xs:attributeGroup> --> <!-- variant 2 --> - <xs:attribute name="radiusStart" type="t_grEqZero" use="optional"/> - <xs:attribute name="radiusEnd" type="t_grEqZero" use="optional"/> - <!-- </xs:attributeGroup> --> - </xs:complexType> <!-- end t_road_objects_object_repeat --> - - <!-- 5.3.8.1.2 Outlines Record (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_objects_object_outlines"> - <xs:sequence> - <xs:element name="outline" type="t_road_objects_object_outlines_outline" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_objects_object_outlines --> - - <!-- 5.3.8.1.2.1 Object Outline Record (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_objects_object_outlines_outline"> - <xs:sequence> - <xs:element name="cornerRoad" type="t_road_objects_object_outlines_outline_cornerRoad" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="cornerLocal" type="t_road_objects_object_outlines_outline_cornerLocal" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - - <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/> - <xs:attribute name="fillType" type="e_outlineFillType" use="required"/> - <xs:attribute name="outer" type="t_bool" use="required"/> - <xs:attribute name="closed" type="t_bool" use="required"/> - <xs:attribute name="laneType" type="e_laneType" use="required"/> - </xs:complexType> <!-- end t_road_objects_object_outlines_outline --> - - <!-- 5.3.8.1.2.1.1 CornerRoad --> - <xs:complexType name="t_road_objects_object_outlines_outline_cornerRoad"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="t" type="xs:double" use="required"/> - <xs:attribute name="dz" type="xs:double" use="required"/> - <xs:attribute name="height" type="xs:double" use="required"/> - <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/> <!-- new in OpenDrive 1.5M --> - </xs:complexType> <!-- end t_road_objects_object_outlines_outline_cornerRoad --> - - <!-- 5.3.8.1.2.1.2 CornerLocal --> - <xs:complexType name="t_road_objects_object_outlines_outline_cornerLocal"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="u" type="xs:double" use="required"/> - <xs:attribute name="v" type="xs:double" use="required"/> - <xs:attribute name="z" type="xs:double" use="required"/> - <xs:attribute name="height" type="xs:double" use="required"/> - <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/> <!-- new in OpenDrive 1.5M --> - </xs:complexType> <!-- end t_road_objects_object_outlines_outline_cornerLocal --> - - <!-- 5.3.8.1.3 Object Material Record --> - <xs:complexType name="t_road_objects_object_material"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="surface" type="xs:string" use="optional"/> - <xs:attribute name="friction" type="t_grEqZero" use="optional"/> - <xs:attribute name="roughness" type="t_grEqZero" use="optional"/> - </xs:complexType> <!-- end t_road_objects_object_material --> - - <!-- 5.3.8.1.4 Lane Validity Record --> - <xs:complexType name="t_road_objects_object_laneValidity"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="fromLane" type="xs:integer" use="required"/> - <xs:attribute name="toLane" type="xs:integer" use="required"/> - </xs:complexType> <!-- end t_road_objects_object_laneValidity --> - - <!-- 5.3.8.1.5 Parking Space Record --> - <xs:complexType name="t_road_objects_object_parkingSpace"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="access" type="e_road_objects_object_parkingSpace_access" use="required"/> - <xs:attribute name="restrictions" type="xs:string" use="optional"/> - </xs:complexType> <!-- end t_road_objects_object_parkingSpace --> - - <xs:simpleType name="e_road_objects_object_parkingSpace_access"> - <xs:restriction base="xs:string"> - <xs:enumeration value="all"/> - <xs:enumeration value="car"/> - <xs:enumeration value="women"/> - <xs:enumeration value="handicapped"/> - <xs:enumeration value="bus"/> - <xs:enumeration value="truck"/> - <xs:enumeration value="electric"/> - <xs:enumeration value="residents"/> - </xs:restriction> - </xs:simpleType> <!-- end e_road_objects_object_parkingSpace_access --> - - <!-- 5.3.8.1.6 Markings Record (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_objects_object_markings"> - <xs:sequence> - <xs:element name="marking" type="t_road_objects_object_markings_marking" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_objects_object_markings --> - - <!-- 5.3.8.1.6.1 Marking Record (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_objects_object_markings_marking"> - <xs:sequence> - <xs:element name="cornerReference" type="t_road_objects_object_markings_marking_cornerReference" minOccurs="2" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="side" type="e_sideType" use="required"/> - <xs:attribute name="weight" type="e_roadMarkWeight" use="required"/> - <xs:attribute name="width" type="t_grEqZero" use="optional"/> - <xs:attribute name="color" type="e_roadMarkColor" use="required"/> - <xs:attribute name="zOffset" type="t_grEqZero" use="optional"/> - <xs:attribute name="spaceLength" type="t_grEqZero" use="required"/> - <xs:attribute name="lineLength" type="t_grEqZero" use="required"/> - <xs:attribute name="startOffset" type="xs:double" use="required"/> - <xs:attribute name="stopOffset" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_road_objects_object_markings_marking --> - - <!-- 5.3.8.1.6.1.1 Corner Reference Record --> - <xs:complexType name="t_road_objects_object_markings_marking_cornerReference"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="id" type="xs:nonNegativeInteger" use="required"/> - </xs:complexType> <!-- end t_road_objects_object_markings_marking_cornerReference --> - - <!-- 5.3.8.1.7 Borders Record (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_objects_object_borders"> - <xs:sequence> - <xs:element name="border" type="t_road_objects_object_borders_border" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_objects_object_borders --> - - <!-- 5.3.8.1.7.1 Border Record (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_objects_object_borders_border"> - <xs:sequence> - <xs:element name="cornerReference" type="t_road_objects_object_markings_marking_cornerReference" minOccurs="2" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="width" type="t_grEqZero" use="required"/> - <xs:attribute name="type" type="e_borderType" use="required"/> - <xs:attribute name="outlineId" type="xs:nonNegativeInteger" use="required"/> - <xs:attribute name="useCompleteOutline" type="t_bool" use="optional"/> - </xs:complexType> <!-- end t_road_objects_object_borders_border --> - - <!-- 5.3.8.2 Object Reference Record --> - <xs:complexType name="t_road_objects_objectReference"> - <xs:sequence> - <xs:element name="validity" type="t_road_objects_object_laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="t" type="xs:double" use="required"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="zOffset" type="xs:double" use="required"/> - <xs:attribute name="validLength" type="t_grEqZero" use="required"/> - <xs:attribute name="orientation" type="e_orientation" use="required"/> - </xs:complexType> <!-- end t_road_objects_objectReference --> - - <!-- 5.3.8.3 Tunnel Record --> - <xs:complexType name="t_road_objects_tunnel"> - <xs:sequence> - <xs:element name="validity" type="t_road_objects_object_laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="length" type="t_grEqZero" use="required"/> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="type" type="e_tunnelType" use="required"/> - <xs:attribute name="lighting" type="t_zeroOne" use="optional"/> - <xs:attribute name="daylight" type="t_zeroOne" use="optional"/> - </xs:complexType> <!-- end t_road_objects_tunnel --> - - <!-- 5.3.8.4 Bridge Record --> - <xs:complexType name="t_road_objects_bridge"> - <xs:sequence> - <xs:element name="validity" type="t_road_objects_object_laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="length" type="t_grEqZero" use="required"/> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="type" type="e_bridgeType" use="required"/> - </xs:complexType> <!-- end t_road_objects_bridge --> - - <!-- 5.3.9 Road Signals Record --> - <xs:complexType name="t_road_signals"> - <xs:sequence> - <xs:element name="signal" type="t_road_signals_signal" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="signalReference" type="t_road_signals_signalReference" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_signals --> - - <!-- 5.3.9.1 Signal Record --> - <xs:complexType name="t_road_signals_signal"> - <xs:sequence> - <xs:element name="validity" type="t_road_objects_object_laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="dependency" type="t_road_signals_signal_dependency" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="reference" type="t_road_signals_signal_reference" minOccurs="0" maxOccurs="unbounded"/> - <xs:choice minOccurs="0"> - <xs:element name="positionRoad" type="t_road_signals_signal_positionRoad"/> - <xs:element name="positionInertial" type="t_road_signals_signal_positionInertial"/> - </xs:choice> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="t" type="xs:double" use="required"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="dynamic" type="t_yesNo" use="required"/> - <xs:attribute name="orientation" type="e_orientation" use="required"/> - <xs:attribute name="zOffset" type="xs:double" use="required"/> - <xs:attribute name="country" type="e_countryCode" use="optional"/> - <xs:attribute name="countryRevision" type="xs:string" use="optional"/> <!-- new in OpenDrive 1.5M --> - <xs:attribute name="type" type="xs:string" use="required"/> - <xs:attribute name="subtype" type="xs:string" use="required"/> - <xs:attribute name="value" type="xs:double" use="optional"/> - <xs:attribute name="unit" type="e_unit" use="optional"/> - <xs:attribute name="height" type="t_grEqZero" use="required"/> - <xs:attribute name="width" type="t_grEqZero" use="required"/> - <xs:attribute name="text" type="xs:string" use="optional"/> - <xs:attribute name="hOffset" type="xs:double" use="optional"/> - <xs:attribute name="pitch" type="xs:double" use="optional"/> - <xs:attribute name="roll" type="xs:double" use="optional"/> - </xs:complexType> <!-- end t_road_signals_signal --> - - <!-- 5.3.9.1.2 Signal Dependency Record --> - <xs:complexType name="t_road_signals_signal_dependency"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="type" type="xs:string" use="optional"/> - </xs:complexType> <!-- end t_road_signals_signal_dependency --> - - <!-- 5.3.9.1.3 Reference Record (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_signals_signal_reference"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="elementType" type="e_road_signals_signal_reference_elementType" use="required"/> - <xs:attribute name="elementId" type="xs:string" use="required"/> - <xs:attribute name="type" type="xs:string" use="optional"/> - </xs:complexType> <!-- end t_road_signals_signal_reference --> - - <xs:simpleType name="e_road_signals_signal_reference_elementType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="object"/> - <xs:enumeration value="signal"/> - </xs:restriction> - </xs:simpleType> <!-- end e_road_signals_signal_reference_elementType --> - - <!-- 5.3.9.1.4 Physical Signal Position Record, Road Co-ordinates (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_signals_signal_positionRoad"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="roadId" type="xs:string" use="required"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="t" type="xs:double" use="required"/> - <xs:attribute name="zOffset" type="xs:double" use="required"/> - <xs:attribute name="hOffset" type="xs:double" use="required"/> - <xs:attribute name="pitch" type="xs:double" use="optional"/> - <xs:attribute name="roll" type="xs:double" use="optional"/> - </xs:complexType> <!-- end t_road_signals_signal_positionRoad --> - - <!-- 5.3.9.1.5 Physical Signal Position Record, Inertial Co-ordinates (new in OpenDrive 1.5M) --> - <xs:complexType name="t_road_signals_signal_positionInertial"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="x" type="xs:double" use="required"/> - <xs:attribute name="y" type="xs:double" use="required"/> - <xs:attribute name="z" type="xs:double" use="required"/> - <xs:attribute name="hdg" type="xs:double" use="required"/> - <xs:attribute name="pitch" type="xs:double" use="optional"/> - <xs:attribute name="roll" type="xs:double" use="optional"/> - </xs:complexType> <!-- end t_road_signals_signal_positionInertial --> - - <!-- 5.3.9.2 Signal Reference Record --> - <xs:complexType name="t_road_signals_signalReference"> - <xs:sequence> - <xs:element name="validity" type="t_road_objects_object_laneValidity" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="t" type="xs:double" use="required"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="orientation" type="e_orientation" use="required"/> - </xs:complexType> <!-- end t_road_signals_signalReference --> - - <!-- 5.3.10 Surface --> - <xs:complexType name="t_road_surface"> - <xs:sequence> - <xs:element name="CRG" type="t_road_surface_CRG" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_surface --> - - <!-- 5.3.10.1 Curved Regular Grid Record --> - <xs:complexType name="t_road_surface_CRG"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="file" type="xs:string" use="required"/> - <xs:attribute name="sStart" type="t_grEqZero" use="required"/> - <xs:attribute name="sEnd" type="t_grEqZero" use="required"/> - <xs:attribute name="orientation" type="e_direction" use="required"/> - <xs:attribute name="mode" type="e_road_surface_CRG_mode" use="required"/> - <xs:attribute name="purpose" type="e_road_surface_CRG_purpose" use="optional"/> - <xs:attribute name="sOffset" type="xs:double" use="optional"/> - <xs:attribute name="tOffset" type="xs:double" use="optional"/> - <xs:attribute name="zOffset" type="xs:double" use="optional"/> - <xs:attribute name="zScale" type="xs:double" use="optional"/> - <xs:attribute name="hOffset" type="xs:double" use="optional"/> - </xs:complexType> <!-- end t_road_surface_CRG --> - - <xs:simpleType name="e_road_surface_CRG_purpose"> - <xs:restriction base="xs:string"> - <xs:enumeration value="elevation"/> - <xs:enumeration value="friction"/> - </xs:restriction> - </xs:simpleType> <!-- end e_road_surface_CRG_purpose --> - - <xs:simpleType name="e_road_surface_CRG_mode"> - <xs:restriction base="xs:string"> - <xs:enumeration value="attached"/> - <xs:enumeration value="attached0"/> - <xs:enumeration value="genuine"/> - <xs:enumeration value="global"/> <!-- new in OpenDrive 1.5M --> - </xs:restriction> - </xs:simpleType> <!-- end e_road_surface_CRG_mode --> - - <!-- 5.3.11 Railroad Elements --> - <xs:complexType name="t_road_railroad"> - <xs:sequence> - <xs:element name="switch" type="t_road_railroad_switch" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_road_railroad --> - - <!-- 5.3.11.1 Railroad Switches --> - <xs:complexType name="t_road_railroad_switch"> - <xs:sequence> - <xs:element name="mainTrack" type="t_road_railroad_switch_mainTrack" minOccurs="1" maxOccurs="1"/> - <xs:element name="sideTrack" type="t_road_railroad_switch_sideTrack" minOccurs="1" maxOccurs="1"/> - <xs:element name="partner" type="t_road_railroad_switch_partner" minOccurs="0" maxOccurs="1"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="name" type="xs:string" use="required"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="position" type="e_road_railroad_switch_position" use="required"/> - </xs:complexType> <!-- end t_road_railroad_switch --> - - <xs:simpleType name="e_road_railroad_switch_position"> - <xs:restriction base="xs:string"> - <xs:enumeration value="dynamic"/> - <xs:enumeration value="straight"/> - <xs:enumeration value="turn"/> - </xs:restriction> - </xs:simpleType> <!-- end e_road_railroad_switch_position --> - - <!-- 5.3.11.1.1 Main Track --> - <xs:complexType name="t_road_railroad_switch_mainTrack"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="dir" type="e_elementDir" use="required"/> - </xs:complexType> <!-- end t_road_railroad_switch_mainTrack --> - - <!-- 5.3.11.1.2 Side Track --> - <xs:complexType name="t_road_railroad_switch_sideTrack"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="s" type="t_grEqZero" use="required"/> - <xs:attribute name="dir" type="e_elementDir" use="required"/> - </xs:complexType> <!-- end t_road_railroad_switch_sideTrack --> - - <!-- 5.3.11.1.3 Partner Switch --> - <xs:complexType name="t_road_railroad_switch_partner"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="id" type="xs:string" use="required"/> - </xs:complexType> <!-- end t_road_railroad_switch_partner --> - - <!-- 5.4 Controller Record --> - <xs:complexType name="t_controller"> - <xs:sequence> - <xs:element name="control" type="t_controller_control" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="sequence" type="xs:nonNegativeInteger" use="optional"/> - </xs:complexType> <!-- end t_controller --> - - <!-- 5.4.1 Control Entry Record --> - <xs:complexType name="t_controller_control"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="signalId" type="xs:string" use="required"/> - <xs:attribute name="type" type="xs:string" use="optional"/> - </xs:complexType> <!-- end t_controller_control --> - - <!-- 5.5 Junction Record --> - <xs:complexType name="t_junction"> - <xs:sequence> - <xs:element name="connection" type="t_junction_connection" minOccurs="1" maxOccurs="unbounded"/> - <xs:element name="priority" type="t_junction_priority" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="controller" type="t_junction_controller" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="surface" type="t_junction_surface" minOccurs="0" maxOccurs="1"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="id" type="t_junction_id" use="required"/> - <xs:attribute name="type" type="e_junction_type" use="optional"/> <!-- new in OpenDrive 1.5M --> - </xs:complexType> <!-- end t_junction --> - - <xs:simpleType name="e_junction_type"> - <xs:restriction base="xs:string"> - <xs:enumeration value="default"/> - <xs:enumeration value="virtual"/> - </xs:restriction> - </xs:simpleType> <!-- end e_junction_type --> - - <!-- 5.5.1 Connection Record --> - <xs:complexType name="t_junction_connection"> - <xs:sequence> - <xs:element name="predecessor" type="t_junction_predecessorSuccessor" minOccurs="0" maxOccurs="1"/> - <xs:element name="successor" type="t_junction_predecessorSuccessor" minOccurs="0" maxOccurs="1"/> - <xs:element name="laneLink" type="t_junction_connection_laneLink" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="incomingRoad" type="xs:string" use="required"/> - <xs:attribute name="connectingRoad" type="xs:string" use="required"/> - <xs:attribute name="contactPoint" type="e_contactPoint" use="required"/> - <xs:attribute name="connectionMaster" type="xs:string" use="optional"/> <!-- new in OpenDrive 1.5M --> - <xs:attribute name="type" type="e_junction_type" use="optional"/> <!-- new in OpenDrive 1.5M --> - </xs:complexType> <!-- end t_junction_connection --> - - <!-- 5.5.1.1 Junction Predecessor Record, 5.5.1.2 Junction Successor Record --> - <xs:complexType name="t_junction_predecessorSuccessor"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="elementType" type="xs:string" fixed="road" use="required"/> - <xs:attribute name="elementId" type="xs:string" use="required"/> - <xs:attribute name="elementS" type="t_grZero" use="required"/> - <xs:attribute name="elementDir" type="e_elementDir" use="required"/> - </xs:complexType> <!-- end t_junction_predecessorSuccessor --> - - <!-- 5.5.1.3 Junction Lane Link Record --> - <xs:complexType name="t_junction_connection_laneLink" > - <xs:group ref="g_additionalData"/> - <xs:attribute name="from" type="xs:integer" use="required"/> - <xs:attribute name="to" type="xs:integer" use="required"/> - </xs:complexType> <!-- end t_junction_connection_laneLink --> - - <!-- 5.5.2 Junction Priority Record --> - <xs:complexType name="t_junction_priority"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="high" type="xs:string" use="optional"/> - <xs:attribute name="low" type="xs:string" use="optional"/> - </xs:complexType> <!-- end t_junction_priority --> - - <!-- 5.5.3 Junction Controller Record --> - <xs:complexType name="t_junction_controller"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="type" type="xs:string" use="optional"/> - <xs:attribute name="sequence" type="xs:nonNegativeInteger" use="optional"/> - </xs:complexType> <!-- end t_junction_controller --> - - <!-- 5.5.4 Surface (new in OpenDrive 1.5M) --> - <xs:complexType name="t_junction_surface"> - <xs:sequence> - <xs:element name="CRG" type="t_junction_surface_CRG" minOccurs="0" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - </xs:complexType> <!-- end t_junction_surface --> - - <!-- 5.5.4.1 Curved Regular Grid Record (new in OpenDrive 1.5M) --> - <xs:complexType name="t_junction_surface_CRG"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="file" type="xs:string" use="required"/> - <xs:attribute name="mode" type="e_road_surface_CRG_mode" fixed="global" use="required"/> - <xs:attribute name="purpose" type="e_road_surface_CRG_purpose" use="optional"/> - <xs:attribute name="zOffset" type="xs:double" use="optional"/> - <xs:attribute name="zScale" type="xs:double" use="optional"/> - </xs:complexType> <!-- end t_junction_surface_CRG --> - - <!-- 5.6 Junction Group Record --> - <xs:complexType name="t_junctionGroup"> - <xs:sequence> - <xs:element name="junctionReference" type="t_junctionGroup_junctionReference" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="type" type="e_junctionGroup_type" use="required"/> - </xs:complexType> <!-- end t_junctionGroup --> - - <xs:simpleType name="e_junctionGroup_type"> - <xs:restriction base="xs:string"> - <xs:enumeration value="roundabout"/> - <xs:enumeration value="unknown"/> - </xs:restriction> - </xs:simpleType> <!-- end e_junctionGroup_type --> - - <!-- 5.6.1 Junction Reference Record --> - <xs:complexType name="t_junctionGroup_junctionReference"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="junction" type="xs:string" use="required"/> - </xs:complexType> <!-- end t_junctionGroup_junctionReference --> - - <!-- 5.7 Stations --> - <xs:complexType name="t_station"> - <xs:sequence> - <xs:element name="platform" type="t_station_platform" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="name" type="xs:string" use="required"/> - <xs:attribute name="id" type="xs:string" use="required"/> - <xs:attribute name="type" type="e_station_type" use="optional"/> - </xs:complexType> <!-- end t_station --> - - <xs:simpleType name="e_station_type"> - <xs:restriction base="xs:string"> - <xs:enumeration value="small"/> - <xs:enumeration value="medium"/> - <xs:enumeration value="large"/> - </xs:restriction> - </xs:simpleType> <!-- end e_station_type --> - - <!-- 5.7.1 Platform Record --> - <xs:complexType name="t_station_platform"> - <xs:sequence> - <xs:element name="segment" type="t_station_platform_segment" minOccurs="1" maxOccurs="unbounded"/> - <xs:group ref="g_additionalData"/> - </xs:sequence> - <xs:attribute name="name" type="xs:string" use="optional"/> - <xs:attribute name="id" type="xs:string" use="required"/> - </xs:complexType> <!-- end t_station_platform --> - - <!-- 5.7.1.1 Segment Record --> - <xs:complexType name="t_station_platform_segment"> - <xs:group ref="g_additionalData"/> - <xs:attribute name="roadId" type="xs:string" use="required"/> - <xs:attribute name="sStart" type="t_grEqZero" use="required"/> - <xs:attribute name="sEnd" type="t_grEqZero" use="required"/> - <xs:attribute name="side" type="e_station_platform_segment_side" use="required"/> - </xs:complexType> <!-- end t_station_platform_segment --> - - <xs:simpleType name="e_station_platform_segment_side"> - <xs:restriction base="xs:string"> - <xs:enumeration value="left"/> - <xs:enumeration value="right"/> - </xs:restriction> - </xs:simpleType> <!-- end e_station_platform_segment_side --> - - <!-- 5.8 Ancillary Data --> - <xs:complexType name="t_userData"> - <xs:sequence> - <xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded"/> - </xs:sequence> - <xs:attribute name="code" type="xs:string" use="required"/> - <xs:attribute name="value" type="xs:string" use="required"/> - </xs:complexType> <!-- end t_userData --> - - <!-- 5.9 Include Tag --> - <xs:complexType name="t_include"> - <xs:attribute name="file" type="xs:string" use="required"/> - </xs:complexType> <!-- end t_include --> - - <!-- 5.11 Data Quality Description (new in OpenDrive 1.5M) --> - <xs:complexType name="t_dataQuality" > - <xs:sequence> - <xs:element name="error" type="t_dataQuality_Error" minOccurs="0" maxOccurs="1"/> - <xs:element name="rawData" type="t_dataQuality_RawData" minOccurs="0" maxOccurs="1"/> - </xs:sequence> - </xs:complexType> <!-- end t_dataQuality --> - - <!-- 5.11.1 Data Error Description (new in OpenDrive 1.5M) --> - <xs:complexType name="t_dataQuality_Error" > - <xs:attribute name="xyAbsolute" type="xs:double" use="required"/> - <xs:attribute name="zAbsolute" type="xs:double" use="required"/> - <xs:attribute name="xyRelative" type="xs:double" use="required"/> - <xs:attribute name="zRelative" type="xs:double" use="required"/> - </xs:complexType> <!-- end t_dataQuality_Error --> - - <!-- 5.11.2 Raw Data Description (new in OpenDrive 1.5M) --> - <xs:complexType name="t_dataQuality_RawData" > - <xs:attribute name="date" type="xs:string" use="required"/> - <xs:attribute name="source" type="e_dataQuality_RawData_Source" use="required"/> - <xs:attribute name="sourceComment" type="xs:string" use="optional"/> - <xs:attribute name="postProcessing" type="e_dataQuality_RawData_PostProcessing" use="required"/> - <xs:attribute name="postProcessingComment" type="xs:string" use="optional"/> - </xs:complexType> <!-- end t_dataQuality_RawData --> - - <xs:simpleType name="e_dataQuality_RawData_Source"> - <xs:restriction base="xs:string"> - <xs:enumeration value="sensor"/> - <xs:enumeration value="cadaster"/> - <xs:enumeration value="custom"/> - </xs:restriction> - </xs:simpleType> <!-- end e_dataQuality_RawData_Source --> - - <xs:simpleType name="e_dataQuality_RawData_PostProcessing"> - <xs:restriction base="xs:string"> - <xs:enumeration value="raw"/> - <xs:enumeration value="cleaned"/> - <xs:enumeration value="processed"/> - <xs:enumeration value="fused"/> - </xs:restriction> - </xs:simpleType> <!-- end e_dataQuality_RawData_PostProcessing --> - - <!-- group of tags that can appear anywhere in the document --> - <xs:group name="g_additionalData"> - <xs:sequence> - <xs:element name="userData" type="t_userData" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="include" type="t_include" minOccurs="0" maxOccurs="unbounded"/> - <xs:element name="dataQuality" type="t_dataQuality" minOccurs="0" maxOccurs="1"/> - </xs:sequence> - </xs:group> <!-- end g_additionalData --> - - - <!-- enumerations --> - - <!-- unit enumerations --> - - <!-- 2.2 Units --> - <xs:simpleType name="e_unitDistance"> - <xs:restriction base="xs:string"> - <xs:enumeration value="m"/> - <xs:enumeration value="km"/> - <xs:enumeration value="ft"/> - <xs:enumeration value="mile"/> - </xs:restriction> - </xs:simpleType> <!-- end e_unitDistance --> - - <!-- 2.2 Units --> - <xs:simpleType name="e_unitSpeed"> - <xs:restriction base="xs:string"> - <xs:enumeration value="m/s"/> - <xs:enumeration value="mph"/> - <xs:enumeration value="km/h"/> - </xs:restriction> - </xs:simpleType> <!-- end e_unitSpeed --> - - <!-- 2.2 Units --> - <xs:simpleType name="e_unitMass"> - <xs:restriction base="xs:string"> - <xs:enumeration value="kg"/> - <xs:enumeration value="t"/> - </xs:restriction> - </xs:simpleType> <!-- end e_unitMass --> - - <!-- 2.2 Units --> - <xs:simpleType name="e_unitSlope"> - <xs:restriction base="xs:string"> - <xs:enumeration value="%"/> - </xs:restriction> - </xs:simpleType> <!-- end e_unitSlope --> - - <!-- 2.2 Units --> - <xs:simpleType name="e_unit"> - <xs:union memberTypes="e_unitDistance e_unitSpeed e_unitMass e_unitSlope"/> - </xs:simpleType> <!-- end e_unit --> - - <!-- end unit enumerations --> - - <!-- OpenDrive constant enumerations --> - - <!-- 6.1 Road Type Information --> - <xs:simpleType name="e_roadType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="unknown"/> - <xs:enumeration value="rural"/> - <xs:enumeration value="motorway"/> - <xs:enumeration value="town"/> - <xs:enumeration value="lowSpeed"/> - <xs:enumeration value="pedestrian"/> - <xs:enumeration value="bicycle"/> - <xs:enumeration value="townExpressway"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="townCollector"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="townArterial"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="townPrivate"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="townLocal"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="townPlayStreet"/> <!-- new in OpenDrive 1.5M --> - </xs:restriction> - </xs:simpleType> <!-- end e_roadType --> - - <!-- 6.2 Road Mark Type Information --> - <xs:simpleType name="e_roadMarkType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="none"/> - <xs:enumeration value="solid"/> - <xs:enumeration value="broken"/> - <xs:enumeration value="solid solid"/> - <xs:enumeration value="solid broken"/> - <xs:enumeration value="broken solid"/> - <xs:enumeration value="broken broken"/> - <xs:enumeration value="botts dots"/> - <xs:enumeration value="grass"/> - <xs:enumeration value="curb"/> - <xs:enumeration value="custom"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="edge"/> <!-- new in OpenDrive 1.5M --> - </xs:restriction> - </xs:simpleType> <!-- end e_roadMarkType --> - - <!-- 6.3 Road Mark Weight Information --> - <xs:simpleType name="e_roadMarkWeight"> - <xs:restriction base="xs:string"> - <xs:enumeration value="standard"/> - <xs:enumeration value="bold"/> - </xs:restriction> - </xs:simpleType> <!-- end e_roadMarkWeight --> - - <!-- 6.4 Road Mark Color Information --> - <xs:simpleType name="e_roadMarkColor"> - <xs:restriction base="xs:string"> - <xs:enumeration value="standard"/> - <xs:enumeration value="blue"/> - <xs:enumeration value="green"/> - <xs:enumeration value="red"/> - <xs:enumeration value="white"/> - <xs:enumeration value="yellow"/> - <xs:enumeration value="orange"/> <!-- new in OpenDrive 1.5M --> - </xs:restriction> - </xs:simpleType> <!-- end e_roadMarkColor --> - - <!-- 6.5 Lane Type Information --> - <xs:simpleType name="e_laneType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="none"/> - <xs:enumeration value="driving"/> - <xs:enumeration value="stop"/> - <xs:enumeration value="shoulder"/> - <xs:enumeration value="biking"/> - <xs:enumeration value="sidewalk"/> - <xs:enumeration value="border"/> - <xs:enumeration value="restricted"/> - <xs:enumeration value="parking"/> - <xs:enumeration value="bidirectional"/> - <xs:enumeration value="median"/> - <xs:enumeration value="special1"/> - <xs:enumeration value="special2"/> - <xs:enumeration value="special3"/> - <xs:enumeration value="roadWorks"/> - <xs:enumeration value="tram"/> - <xs:enumeration value="rail"/> - <xs:enumeration value="entry"/> - <xs:enumeration value="exit"/> - <xs:enumeration value="offRamp"/> - <xs:enumeration value="onRamp"/> - <xs:enumeration value="connectingRamp"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="bus"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="taxi"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="HOV"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="mwyEntry"/> <!-- deprecated --> - <xs:enumeration value="mwyExit"/> <!-- deprecated --> - </xs:restriction> - </xs:simpleType> <!-- end e_laneType --> - - <!-- 6.6 Object Types --> - <xs:simpleType name="e_objectType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="none"/> - <xs:enumeration value="obstacle"/> - <xs:enumeration value="car"/> <!-- legacy --> - <xs:enumeration value="pole"/> - <xs:enumeration value="tree"/> - <xs:enumeration value="vegetation"/> - <xs:enumeration value="barrier"/> - <xs:enumeration value="building"/> - <xs:enumeration value="parkingSpace"/> - <xs:enumeration value="patch"/> - <xs:enumeration value="railing"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="trafficIsland"/> - <xs:enumeration value="crosswalk"/> - <xs:enumeration value="streetLamp"/> - <xs:enumeration value="gantry"/> - <xs:enumeration value="soundBarrier"/> - <xs:enumeration value="truck"/> <!-- legacy --> - <xs:enumeration value="van"/> <!-- legacy --> - <xs:enumeration value="bus"/> <!-- legacy --> - <xs:enumeration value="trailer"/> <!-- legacy --> - <xs:enumeration value="bike"/> <!-- legacy --> - <xs:enumeration value="motorbike"/> <!-- legacy --> - <xs:enumeration value="tram"/> <!-- legacy --> - <xs:enumeration value="train"/> <!-- legacy --> - <xs:enumeration value="pedestrian"/> <!-- legacy --> - <xs:enumeration value="wind"/> <!-- legacy --> - </xs:restriction> - </xs:simpleType> <!-- end e_objectType --> - - <!-- 6.7 Tunnel Types --> - <xs:simpleType name="e_tunnelType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="standard"/> - <xs:enumeration value="underpass"/> - </xs:restriction> - </xs:simpleType> <!-- end e_tunnelType --> - - <!-- 6.8 Bridge Types --> - <xs:simpleType name="e_bridgeType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="concrete"/> - <xs:enumeration value="steel"/> - <xs:enumeration value="brick"/> - <xs:enumeration value="wood"/> - </xs:restriction> - </xs:simpleType> <!-- end e_bridgeType --> - - <!-- 6.9 Access Restriction Types --> - <xs:simpleType name="e_accessRestrictionType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="simulator"/> - <xs:enumeration value="autonomousTraffic"/> - <xs:enumeration value="pedestrian"/> - <xs:enumeration value="passengerCar"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="bus"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="delivery"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="emergency"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="taxi"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="throughTraffic"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="truck"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="bicycle"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="motorcycle"/> <!-- new in OpenDrive 1.5M --> - <xs:enumeration value="none"/> - <xs:enumeration value="trucks"/> <!-- legacy (??? was not listed in version 1.4 either) --> - </xs:restriction> - </xs:simpleType> <!-- end e_accessRestrictionType --> - - <!-- 6.10 Country Codes --> - <xs:simpleType name="e_countryCode"> - <xs:union memberTypes="e_countryCode_deprecated e_countryCode_iso3166alpha3"/> - </xs:simpleType> <!-- end e_countryCode --> - - <xs:simpleType name="e_countryCode_deprecated"> - <xs:restriction base="xs:string"> - <xs:enumeration value="OpenDRIVE"/> - <xs:enumeration value="Austria"/> <!-- deprecated --> - <xs:enumeration value="Brazil"/> <!-- deprecated --> - <xs:enumeration value="China"/> <!-- deprecated --> - <xs:enumeration value="France"/> <!-- deprecated --> - <xs:enumeration value="Germany"/> <!-- deprecated --> - <xs:enumeration value="Italy"/> <!-- deprecated --> - <xs:enumeration value="Switzerland"/> <!-- deprecated --> - <xs:enumeration value="USA"/> <!-- deprecated --> - </xs:restriction> - </xs:simpleType> <!-- end e_countryCode_deprecated --> - - <xs:simpleType name="e_countryCode_iso3166alpha3"> - <xs:restriction base="xs:string"> - <xs:pattern value="[A-Z]{3}"/> - </xs:restriction> - </xs:simpleType> <!-- end e_countryCode_iso3166alpha3 --> - - <!-- 6.12 Side Types (new in OpenDrive 1.5M) --> - <xs:simpleType name="e_sideType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="left"/> - <xs:enumeration value="right"/> - <xs:enumeration value="front"/> - <xs:enumeration value="rear"/> - </xs:restriction> - </xs:simpleType> <!-- end e_sideType --> - - <!-- 6.13 Outline Fill Types (new in OpenDrive 1.5M) --> - <xs:simpleType name="e_outlineFillType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="grass"/> - <xs:enumeration value="concrete"/> - <xs:enumeration value="cobble"/> - <xs:enumeration value="asphalt"/> - <xs:enumeration value="pavement"/> - <xs:enumeration value="gravel"/> - <xs:enumeration value="soil"/> - </xs:restriction> - </xs:simpleType> <!-- end e_outlineFillType --> - - <!-- 6.14 Border Types (new in OpenDrive 1.5M) --> - <xs:simpleType name="e_borderType"> - <xs:restriction base="xs:string"> - <xs:enumeration value="concrete"/> - <xs:enumeration value="curb"/> - </xs:restriction> - </xs:simpleType> <!-- end e_borderType --> - - <!-- end OpenDrive constant enumerations --> - - - <!-- other enumerations --> - - <xs:simpleType name="e_contactPoint"> - <xs:restriction base="xs:string"> - <xs:enumeration value="start"/> - <xs:enumeration value="end"/> - </xs:restriction> - </xs:simpleType> <!-- end e_contactPoint --> - - <xs:simpleType name="e_elementDir"> - <xs:restriction base="xs:string"> - <xs:enumeration value="+"/> - <xs:enumeration value="-"/> - </xs:restriction> - </xs:simpleType> <!-- end e_elementDir --> - - <xs:simpleType name="e_direction"> - <xs:restriction base="xs:string"> - <xs:enumeration value="same"/> - <xs:enumeration value="opposite"/> - </xs:restriction> - </xs:simpleType> <!-- end e_direction --> - - <xs:simpleType name="e_roadMarkRule"> - <xs:restriction base="xs:string"> - <xs:enumeration value="no passing"/> - <xs:enumeration value="caution"/> - <xs:enumeration value="none"/> - </xs:restriction> - </xs:simpleType> <!-- end e_roadMarkRule --> - - <xs:simpleType name="e_orientation"> - <xs:restriction base="xs:string"> - <xs:enumeration value="+"/> - <xs:enumeration value="-"/> - <xs:enumeration value="none"/> - </xs:restriction> - </xs:simpleType> <!-- end e_orientation --> - - <!-- end enumerations --> - -</xs:schema> <!-- end schema --> diff --git a/src/xml/atlatec_generic.xodr b/src/xml/atlatec_generic.xodr deleted file mode 100644 index dbfd6b544735a6f2bcff206c7211cea172cd206d..0000000000000000000000000000000000000000 --- a/src/xml/atlatec_generic.xodr +++ /dev/null @@ -1,26399 +0,0 @@ -<?xml version="1.0"?> -<OpenDRIVE> - <header revMajor="1" revMinor="4" vendor="atlatec"> - <geoReference><![CDATA[+proj=tmerc +a=6378137 +b=6378137 +lon_0=8.6121961962669307 +x_0=1.0621731827420435e-09 +y_0=-5572023.3775849724 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs]]></geoReference> - </header> - <road name="" length="925.01478049222453" id="4939858" junction="-1"> - <link> - <successor elementType="junction" elementId="33555309" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-1053.0754021436494" y="-1683.0963299330324" hdg="1.263721274329946" length="664.99999628700823"> - <paramPoly3 aU="0" bU="664.78163896257047" cU="-1.1668909187387284" dU="1.3811254208770021" aV="-0" bV="-0" cV="-5.4680525277395997" dV="3.2676086655025851" /> - </geometry> - <geometry s="664.99999628700823" x="-849.96838498917464" y="-1049.8729149672768" hdg="1.2620211650120574" length="260.0147842052163"> - <paramPoly3 aU="0" bU="256.89748651780468" cU="-0.23608885000307847" dU="3.352057500964245" aV="-0" bV="2.8421709430404007e-14" cV="0.48266824885894644" dV="-1.0180964864564568" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="157.94832782282703" b="0.0045902037095718103" c="-9.7911202617815814e-05" d="3.8146393268851109e-08" /> - <elevation s="10.054508483611135" a="157.98462068755995" b="0.0026328746909716171" c="-9.9793159582580547e-05" d="3.3976100465736836e-07" /> - <elevation s="20.109016967222271" a="158.00134989184087" b="0.00072917487300723114" c="-0.00015959005050915516" d="6.7030862138480063e-06" /> - <elevation s="30.163525450833404" a="157.99936122463387" b="-0.0004471160443026978" c="-3.986217910051356e-05" d="1.5745861166329443e-06" /> - <elevation s="40.218033934444541" a="157.99243637490025" b="-0.00077116571199182691" c="-0.00013945824635879406" d="1.3131077752700437e-05" /> - <elevation s="50.272542418055679" a="157.98393138742745" b="0.00040685172394041083" c="0.00019072967271848064" d="-1.0525413166933766e-05" /> - <elevation s="60.327050901666809" a="157.99660507285503" b="0.001050096721515729" c="-2.6115474817496142e-05" d="5.9242299653672478e-07" /> - <elevation s="70.381559385277953" a="158.00512534739815" b="0.00070460989959330212" c="-2.9453739230879439e-05" d="1.5931554484342272e-06" /> - <elevation s="80.436067868889083" a="158.01085163246177" b="0.00059549542207064084" c="2.3817236478155999e-06" d="9.6316347671632979e-08" /> - <elevation s="90.490576352500213" a="158.01717772212498" b="0.00067260030961889604" c="2.1066447007462944e-05" d="-1.5894173093260357e-06" /> - <elevation s="100.54508483611136" a="158.02445451068056" b="0.00061418828618196018" c="-5.9782621742280816e-06" d="-4.1273265588516697e-07" /> - <elevation s="110.59959331972249" a="158.02960599197337" b="0.0003687979891452326" c="-3.2079211100790042e-05" d="1.8467722660127856e-06" /> - <elevation s="120.65410180333362" a="158.03194822288225" b="0.00028380461522544488" c="3.6493718353679747e-05" d="-2.4985242888146071e-06" /> - <elevation s="130.70861028694475" a="158.0359513987722" b="0.00025990641328020353" c="-3.2407438044554205e-05" d="1.9320064807330783e-06" /> - <elevation s="140.76311877055591" a="158.03725223253733" b="0.00019416250160031329" c="2.4605109775089625e-05" d="-1.7300408345837368e-06" /> - <elevation s="150.81762725416704" a="158.0399333629918" b="0.00016426128626299559" c="-3.1896136785623702e-05" d="2.2357047656980236e-06" /> - <elevation s="160.87213573777817" a="158.04063291271035" b="0.00020090458076516514" c="-1.1733749975700467e-06" d="1.492081862878602e-06" /> - <elevation s="170.9266442213893" a="158.04405090379572" b="0.00062982688878786774" c="7.5479226238333447e-05" d="-4.5632479542983901e-06" /> - <elevation s="180.98115270500043" a="158.05337565948395" b="0.00076370072539619501" c="-1.7595648640923694e-05" d="2.0682570545309581e-07" /> - <elevation s="191.03566118861158" a="158.05948572182112" b="0.00047259550884301473" c="-3.4554221600773858e-05" d="2.1766077461886499e-06" /> - <elevation s="201.09016967222271" a="158.06295663777041" b="0.00043786442074631273" c="4.6095588309993466e-05" d="-3.5917500493494541e-06" /> - <elevation s="211.14467815583384" a="158.06836829206779" b="0.00027549750730767025" c="-6.2446958605230993e-05" d="3.6882032334803607e-06" /> - <elevation s="221.19918663944497" a="158.06857416899985" b="0.00013830670402750615" c="8.2665321630534345e-06" d="4.1968606508138233e-07" /> - <elevation s="231.2536951230561" a="158.07122705110626" b="0.00043182068702084112" c="3.526325542550392e-05" d="-1.7693716821982514e-06" /> - <elevation s="241.30820360666723" a="158.07733520570241" b="0.00060431606665425788" c="1.7358695162075939e-05" d="-1.6817011466342071e-06" /> - <elevation s="251.36271209027839" a="158.08345680032465" b="0.00044335700955948657" c="-2.6534351914765517e-05" d="1.0783994734822654e-06" /> - <elevation s="261.41722057388949" a="158.08632822651069" b="0.00023683364627745699" c="-2.278819193447669e-05" d="1.8605066403158698e-06" /> - <elevation s="271.47172905750068" a="158.0882968393166" b="0.00034283888752349528" c="2.3545942618839977e-05" d="-8.1098827450246214e-07" /> - <elevation s="281.52623754111181" a="158.09329992669745" b="0.0005703685915763371" c="1.8598176064414771e-05" d="-1.0535894385644183e-06" /> - <elevation s="291.58074602472294" a="158.09984393818269" b="0.00062482763309189325" c="-1.0165301166574093e-06" d="-8.004918861472385e-08" /> - <elevation s="301.63525450833407" a="158.10594214335342" b="0.0005801089400303903" c="-3.7515632555585794e-05" d="3.5463174032307482e-06" /> - <elevation s="311.6897629919452" a="158.11158690588115" b="0.00090123154263304533" c="6.8698528633042206e-05" d="-3.3949066672665071e-06" /> - <elevation s="320.00031970408293" a="158.12187275006804" b="0.0013396662983689656" c="-2.445439351313989e-05" d="-3.4360881143729231e-06" /> - <elevation s="321.74427147555633" a="158.12411646367076" b="0.001223020509540362" c="4.7106082962642614e-06" d="-1.2586366149557085e-06" /> - <elevation s="331.79877995916746" a="158.13561021302789" b="0.00093602762592311594" c="-4.8345818499929291e-05" d="2.753535873757657e-06" /> - <elevation s="341.85328844277859" a="158.14293288917099" b="0.00079893151115300546" c="3.4283908618311521e-05" d="-2.7171750369879099e-06" /> - <elevation s="351.90779692638972" a="158.15166977043006" b="0.00066428393510075323" c="-1.584201163254338e-05" d="-3.035053774991768e-09" /> - <elevation s="361.96230541000085" a="158.15674421522215" b="0.00034479618503074265" c="-0.00021957389810874669" d="1.1727356278454541e-05" /> - <elevation s="372.01681389361198" a="158.14993373200261" b="-0.00051395321753462198" c="6.0541344041389008e-06" d="1.0081588712050874e-06" /> - <elevation s="382.07132237722317" a="158.14640295133913" b="-8.6456685791250014e-05" c="6.337152016143507e-05" d="-3.6904174797720716e-06" /> - <elevation s="392.1258308608343" a="158.14818900312983" b="6.8654606173139214e-05" c="-1.0773629592230731e-05" d="-1.2586384632145227e-08" /> - <elevation s="402.18033934444543" a="158.14777735806825" b="-0.00015180968555871823" c="-6.3608875471479591e-05" d="5.2236381514697046e-06" /> - <elevation s="412.23484782805656" a="158.14513008967583" b="0.00015330032046037041" c="2.0931849734551914e-05" d="-3.035053774990627e-09" /> - <elevation s="422.28935631166769" a="158.14878443052623" b="0.00057329877257155878" c="2.0895341652123661e-05" d="-3.0350537749899325e-09" /> - <elevation s="432.34386479527882" a="158.15665795865971" b="0.00099256308303375968" c="0.00015021047079208762" d="-8.8277223063866218e-06" /> - <elevation s="442.39837327888995" a="158.17285007455484" b="0.001335881465412836" c="-4.2620621330494882e-05" d="1.5170550165164006e-06" /> - <elevation s="452.45288176250108" a="158.18351505180263" b="0.00093891423729642546" c="-1.1651172782561149e-05" d="-5.2115469324771458e-08" /> - <elevation s="462.50739024611221" a="158.19172454697213" b="0.00068881505668158831" c="-8.5071505854057002e-06" d="-3.0350537749885313e-09" /> - <elevation s="472.56189872972334" a="158.19778714427522" b="0.00051682415186069084" c="-1.1912902673197791e-05" d="1.0202092423884969e-07" /> - <elevation s="482.61640721333447" a="158.201882942683" b="0.0003082082368667509" c="-6.5343421667431469e-05" d="5.5120573654339176e-06" /> - <elevation s="492.67091569694566" a="158.20397873902854" b="0.00066590983666181937" c="5.4645612097676714e-06" d="-3.0350537749867682e-09" /> - <elevation s="502.72542418055679" a="158.21122347983098" b="0.00077487632139120312" c="4.6246635036728759e-05" d="-2.6912874869662644e-06" /> - <elevation s="512.77993266416786" a="158.22095416075629" b="0.00088863857508270582" c="-1.079425969278601e-05" d="6.7062670959526298e-07" /> - <elevation s="522.83444114777899" a="158.22947941228102" b="0.00087496390499850862" c="1.3348458410458015e-05" d="-1.0660000124967606e-06" /> - <elevation s="532.88894963139012" a="158.2385426548563" b="0.00082009241344193251" c="-1.8343820730758529e-05" d="4.5033055527914117e-07" /> - <elevation s="542.94345811500136" a="158.24539158135104" b="0.00058779220188105827" c="-2.1827458240479527e-05" d="1.2410661703821317e-06" /> - <elevation s="552.99796659861249" a="158.25035640830586" b="0.00052525330526061414" c="3.8640687709703813e-06" d="-7.916232632811675e-08" /> - <elevation s="563.05247508222362" a="158.25594773906738" b="0.00057894762512277441" c="2.9074656920662581e-05" d="-2.6717861648468531e-06" /> - <elevation s="573.10698356583475" a="158.26199230601131" b="0.00035331262922869752" c="-8.956332407556781e-05" d="5.6690493176571005e-06" /> - <elevation s="583.16149204944588" a="158.2622527120362" b="0.00027158822916790505" c="6.0702487285356369e-05" d="-3.6130890387344009e-06" /> - <elevation s="593.21600053305701" a="158.26744750840845" b="0.0003964800186850676" c="-3.353384519641018e-05" d="2.1402967420030141e-06" /> - <elevation s="603.27050901666814" a="158.2702193655478" b="0.00037125531663536227" c="-2.0243262119921758e-05" d="2.9526702895397135e-06" /> - <elevation s="613.32501750027927" a="158.27490691795856" b="0.00085966735555956621" c="3.1101491984532235e-05" d="-1.9216271868763577e-06" /> - <elevation s="623.3795259838904" a="158.28474137590987" b="0.00090229780200745398" c="-2.4976670301340581e-06" d="-3.0350537749815251e-09" /> - <elevation s="633.43403446750153" a="158.29355795485438" b="0.0008511517039637564" c="-1.3625162055451372e-05" d="8.8027528821680846e-07" /> - <elevation s="643.48854295111266" a="158.30163320509169" b="0.00084413247009705952" c="5.8798672422968335e-05" d="-3.3234080394313696e-06" /> - <elevation s="653.54305143472379" a="158.3126866336562" b="0.0010185947004337263" c="-4.9813190386163027e-06" d="-3.0946407228893672e-07" /> - <elevation s="663.59755991833492" a="158.32210997329415" b="0.00082457118622606383" c="-4.868537452196538e-05" d="1.845665088532689e-06" /> - <elevation s="673.65206840194605" a="158.32735488508052" b="0.00040530840616261461" c="-2.6294906587950527e-05" d="1.4583518153214692e-06" /> - <elevation s="683.70657688555718" a="158.33025415699939" b="0.00031883177984634169" c="-1.5670647924825006e-06" d="4.5125504270523195e-07" /> - <elevation s="693.76108536916831" a="158.33376010883987" b="0.00042417601611594393" c="1.7569873994742559e-05" d="-1.0068791966589484e-06" /> - <elevation s="703.81559385277944" a="158.33877774979328" b="0.0004721231690568812" c="-4.9927474744670215e-06" d="2.2420177728894755e-07" /> - <elevation s="713.87010233639057" a="158.3432478717458" b="0.00043971971092862704" c="-2.9681543180429291e-05" d="2.8978284865121384e-06" /> - <elevation s="723.9246108200017" a="158.34761391100992" b="0.00072170480551236654" c="2.4183033979472602e-05" d="-1.6812374496745073e-06" /> - <elevation s="733.97911930361283" a="158.35560615686913" b="0.00069811712323286689" c="-3.3337378386598816e-06" d="-3.0350537749472115e-09" /> - <elevation s="744.03362778722396" a="158.36228527842272" b="0.00063015846311473755" c="-5.3421695359491073e-05" d="2.5999006645925611e-06" /> - <elevation s="754.08813627083521" a="158.36586329288414" b="0.00034439705693461748" c="-3.4219968420423675e-06" d="2.2086769489520352e-07" /> - <elevation s="764.14264475444634" a="158.36920459477284" b="0.00034256869134197831" c="2.6680006753846877e-05" d="-2.5582158850945753e-06" /> - <elevation s="774.19715323805747" a="158.37274584259953" b="0.00010322316347393355" c="-7.7604643292905758e-05" d="5.2494273137015224e-06" /> - <elevation s="784.2516617216686" a="158.37127414120727" b="0.00013471335913214255" c="2.6783969194947094e-05" d="-7.6698828976932879e-07" /> - <elevation s="794.30617020527973" a="158.37455669439953" b="0.00044070088450592193" c="9.7537096253640327e-06" d="-7.6698828976932488e-07" /> - <elevation s="804.36067868889086" a="158.37919415933223" b="0.00040422663123875196" c="-1.9176231445125395e-05" d="8.4618009734601164e-07" /> - <elevation s="814.41518717250199" a="158.38217996681598" b="0.0002752404790301562" c="7.5077578644190611e-06" d="-9.6764265885327284e-07" /> - <elevation s="824.46969565611312" a="158.38472280488384" b="0.00013274800250846774" c="-3.5840430014622871e-05" d="2.3699630195675849e-06" /> - <elevation s="834.52420413972425" a="158.3848432287395" b="0.00013079320324991471" c="9.3131319916621768e-06" d="-3.0350537748124452e-09" /> - <elevation s="844.57871262333538" a="158.38709669891969" b="0.00031715066313201825" c="1.126400487435388e-05" d="-4.3493649291653548e-07" /> - <elevation s="854.63322110694651" a="158.39098211893389" b="0.00041175143985553488" c="2.6048631983118621e-05" d="-2.3463906177827934e-06" /> - <elevation s="864.68772959055764" a="158.39537044569877" b="0.00022395183076016334" c="-1.9688181974035184e-05" d="1.1426728467460561e-06" /> - <elevation s="874.74223807416877" a="158.39679329162126" b="0.00017459100650497745" c="6.0015708227719499e-05" d="-2.329542806340464e-06" /> - <elevation s="884.7967465577799" a="158.40224805004047" b="0.0006749455044645187" c="3.8562710681632841e-05" d="-2.5314862742219627e-06" /> - <elevation s="894.85125504139103" a="158.41035961231123" b="0.0006826560124469969" c="-2.3556118464108511e-05" d="1.1091637920929662e-06" /> - <elevation s="904.90576352500216" a="158.41596942146631" b="0.00054535218093970368" c="2.3350716545621501e-05" d="-2.4529964327105296e-06" /> - <elevation s="914.96027200861329" a="158.42131993865956" b="0.00027096879454474956" c="-1.8393515766958187e-05" d="-3.0350537420168217e-09" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026088932386396851" b="-5.9213706351290904e-06" c="-1.0611743041896416e-06" d="0" /> - <superelevation s="10.054508483611135" a="0.025922118471714672" b="-2.7260542723258529e-05" c="1.7316238423071466e-07" d="-1.2276449817832887e-07" /> - <superelevation s="20.109016967222271" a="0.025540749670239157" b="-6.1010363516742065e-05" c="-1.2954493795227116e-05" d="1.060119728377707e-06" /> - <superelevation s="30.163525450833404" a="0.024695260036580107" b="0" c="1.0756993019611255e-05" d="-4.4201204786246349e-07" /> - <superelevation s="40.218033934444541" a="0.025333438706762166" b="8.2259396515749474e-05" c="5.226630393543517e-06" d="-3.3398600733082752e-07" /> - <superelevation s="50.272542418055679" a="0.026349415636828778" b="8.6070712340839074e-05" c="1.9171813713673018e-06" d="-3.3882126327778201e-07" /> - <superelevation s="60.327050901666809" a="0.027064236121605006" b="2.1865827995401292e-05" c="-1.0873643416304848e-06" d="0" /> - <superelevation s="70.381559385277953" a="0.027174161198145478" b="0" c="-2.4930123224322897e-06" d="9.9260210154451982e-08" /> - <superelevation s="80.436067868889083" a="0.027023026983175106" b="-2.0028447874342497e-05" c="-3.4829479864148174e-06" d="2.969773131143729e-07" /> - <superelevation s="90.490576352500213" a="0.026771408800013198" b="0" c="3.4731393119755658e-06" d="-2.0998595824231211e-07" /> - <superelevation s="100.54508483611136" a="0.026909080847411039" b="6.1569971965910876e-06" c="-3.061809140957515e-07" d="0" /> - <superelevation s="110.59959331972249" a="0.026940033637684387" b="0" c="-5.8736678384016357e-06" d="3.8945499576803066e-07" /> - <superelevation s="120.65410180333362" a="0.026742104460992362" b="0" c="9.6692518573721736e-06" d="-5.3058385793558415e-07" /> - <superelevation s="130.70861028694475" a="0.027180291866850212" b="3.3523983615951185e-05" c="3.3342017893733485e-07" d="-1.3264578029843756e-07" /> - <superelevation s="140.76311877055591" a="0.027416238816334405" b="0" c="-7.9440024861291128e-06" d="5.2672904558704527e-07" /> - <superelevation s="150.81762725416704" a="0.027148544095594664" b="0" c="8.6475070117774008e-06" d="-3.6412543488835558e-07" /> - <superelevation s="160.87213573777817" a="0.027652635412052429" b="6.3461113598565648e-05" c="1.0287614591235053e-05" d="-8.91372476579369e-07" /> - <superelevation s="170.9266442213893" a="0.02842468470570704" b="0" c="-3.067243477892398e-06" d="1.3726496535175648e-09" /> - <superelevation s="180.98115270500043" a="0.028116002647327016" b="-6.1262954745271825e-05" c="-8.181267774799872e-06" d="5.1137526418728305e-07" /> - <superelevation s="191.03566118861158" a="0.027192746909272196" b="-7.0690612417625851e-05" c="-7.2477948830530758e-07" d="2.8114408399706787e-07" /> - <superelevation s="201.09016967222271" a="0.026694483922797642" b="0" c="5.8345871524689759e-06" d="-3.2482007693673922e-07" /> - <superelevation s="211.14467815583384" a="0.026954159946174859" b="1.88165666826316e-05" c="-2.2022021052375434e-07" d="-4.7441908890926763e-08" /> - <superelevation s="221.19918663944497" a="0.02707286658148355" b="0" c="-2.8842103485364931e-07" d="1.9123827904253183e-08" /> - <superelevation s="231.2536951230561" a="0.027063147452050317" b="0" c="5.0766110357282562e-06" d="-2.8093438534682303e-07" /> - <superelevation s="241.30820360666723" a="0.02729080454230862" b="1.6884039293544102e-05" c="-3.8859268628395959e-08" d="-5.3094988992153192e-08" /> - <superelevation s="251.36271209027839" a="0.027402668884679442" b="0" c="-8.2851277644048479e-06" d="4.5684060982614542e-07" /> - <superelevation s="261.41722057388949" a="0.027029451207737532" b="-2.8055418448658815e-05" c="-8.5868737628735998e-08" d="9.8200379376419342e-08" /> - <superelevation s="271.47172905750068" a="0.026838501999072843" b="0" c="4.3989653324815769e-06" d="-2.4539758363564972e-07" /> - <superelevation s="281.52623754111181" a="0.027033774849008544" b="1.4034831051110894e-05" c="-1.2702780194104092e-06" d="7.305570232941378e-08" /> - <superelevation s="291.58074602472294" a="0.027120728654811729" b="1.0647080021492116e-05" c="1.6553369179697725e-06" d="-1.4486402612914042e-07" /> - <superelevation s="301.63525450833407" a="0.027247877161812102" b="0" c="-6.8074594581209188e-06" d="3.6282319572043287e-07" /> - <superelevation s="311.6897629919452" a="0.026928478381482393" b="-2.6854508464449185e-05" c="-1.205217195806716e-06" d="1.6845930751270183e-07" /> - <superelevation s="321.74427147555633" a="0.02670785939545408" b="0" c="4.8126429946444042e-06" d="-1.8410481873387617e-07" /> - <superelevation s="331.79877995916746" a="0.027007252750431331" b="4.0942316523856342e-05" c="1.2581120960508672e-06" d="-1.4683564623163919e-08" /> - <superelevation s="341.85328844277859" a="0.027531169133109691" b="6.1788491010250374e-05" c="9.0338718583825237e-06" d="-8.0272763463615693e-07" /> - <superelevation s="351.90779692638972" a="0.028249758564535515" b="0" c="-1.1123943267491658e-06" d="0" /> - <superelevation s="361.96230541000085" a="0.02813730312818406" b="-2.2369156390838687e-05" c="-1.4459571741984243e-05" d="7.9351532534490664e-07" /> - <superelevation s="372.01681389361198" a="0.027257190911953215" b="-7.2480060241109719e-05" c="-2.7169882284166166e-06" d="4.1913830342013667e-07" /> - <superelevation s="382.07132237722317" a="0.02667980036701029" b="0" c="5.0453359210757738e-06" d="-3.3453224354028187e-07" /> - <superelevation s="392.1258308608343" a="0.026849816651973554" b="0" c="-1.7215978367936563e-06" d="1.1415096949458805e-07" /> - <superelevation s="402.18033934444543" a="0.026791802741107925" b="0" c="2.4365744336223367e-06" d="-8.2956591934867304e-08" /> - <superelevation s="412.23484782805656" a="0.026953803152374684" b="2.3838089329633223e-05" c="4.6760823516862882e-06" d="-3.8864987176595266e-07" /> - <superelevation s="422.28935631166769" a="0.027271163283903679" b="0" c="-2.3655209514658647e-05" d="1.5684645054648375e-06" /> - <superelevation s="432.34386479527882" a="0.026474036808160052" b="0" c="5.0834354600460885e-06" d="-3.3705844287546349e-07" /> - <superelevation s="442.39837327888995" a="0.026645336960476426" b="0" c="-3.9301050618388848e-06" d="2.6058658615651531e-07" /> - <superelevation s="452.45288176250108" a="0.026512901405623086" b="0" c="1.3685892762074798e-07" d="3.3333257723958148e-24" /> - <superelevation s="462.50739024611221" a="0.026526736904469227" b="2.7520984976428449e-06" c="3.2502773524276229e-06" d="-1.0220643933885511e-07" /> - <superelevation s="472.56189872972334" a="0.026779101746847743" b="3.7114871023127313e-05" c="7.2763850146702821e-06" d="-6.0484097208527164e-07" /> - <superelevation s="482.61640721333447" a="0.02727308047560956" b="0" c="-2.0701796155909876e-07" d="0" /> - <superelevation s="492.67091569694566" a="0.027252152379663823" b="-4.1629277015082553e-06" c="-1.8045859905305381e-06" d="1.2823089970476583e-07" /> - <superelevation s="502.72542418055679" a="0.027158204173994373" b="-1.5615847895238562e-06" c="2.3296784602680351e-07" d="-1.5446990532098877e-08" /> - <superelevation s="512.77993266416786" a="0.0271503536902373" b="-1.5615847895238562e-06" c="-9.4008173038636912e-06" d="5.6515905183140986e-07" /> - <superelevation s="522.83444114777899" a="0.02675874588277205" b="-1.9201668575412444e-05" c="9.5487853069644446e-07" d="0" /> - <superelevation s="532.88894963139012" a="0.026662214212976564" b="0" c="5.0545519067275468e-06" d="-3.3514331174360802e-07" /> - <superelevation s="542.94345811500136" a="0.026832541055585007" b="0" c="-3.2108348681353513e-06" d="1.5263969620633911e-07" /> - <superelevation s="552.99796659861249" a="0.026663097048041318" b="-1.8274253919987038e-05" c="-2.2417202566946512e-06" d="2.0889331714899503e-07" /> - <superelevation s="563.05247508222362" a="0.026465063773444659" b="0" c="3.2062931823297992e-06" d="-2.1259406083390773e-07" /> - <superelevation s="573.10698356583475" a="0.026573108522870682" b="0" c="-3.2081107898945484e-06" d="2.1271457775210481e-07" /> - <superelevation s="583.16149204944588" a="0.02646500252422548" b="0" c="1.3201443953170565e-05" d="-8.121285394592673e-07" /> - <superelevation s="593.21600053305701" a="0.026974096528350162" b="1.9166185969846936e-05" c="-9.5311401850661618e-07" d="0" /> - <superelevation s="603.27050901666814" a="0.027070449818066309" b="0" c="-7.7087478957262352e-06" d="5.1113043190468638e-07" /> - <superelevation s="613.32501750027927" a="0.026810682639140732" b="0" c="3.1685671592988913e-06" d="-2.1009262756527768e-07" /> - <superelevation s="623.3795259838904" a="0.0269174561078468" b="0" c="-2.1300888442267312e-07" d="0" /> - <superelevation s="633.43403446750153" a="0.026895922370692209" b="-4.2833992710218585e-06" c="-5.2088932562319298e-06" d="3.5950055967378525e-07" /> - <superelevation s="643.48854295111266" a="0.026691682927949656" b="0" c="5.996503703201707e-06" d="-3.9759965810203818e-07" /> - <superelevation s="653.54305143472379" a="0.026893751392435449" b="0" c="-2.484312370127292e-06" d="1.1174810363518784e-07" /> - <superelevation s="663.59755991833492" a="0.026756189900424578" b="-1.6066179262235872e-05" c="-2.3094115463894103e-06" d="2.0610094383975458e-07" /> - <superelevation s="673.65206840194605" a="0.026570676321052714" b="0" c="6.5872189526372453e-06" d="-4.3676717851660888e-07" /> - <superelevation s="683.70657688555718" a="0.026792650538842392" b="0" c="-4.5798407106379152e-06" d="2.0101967783157942e-07" /> - <superelevation s="693.76108536916831" a="0.026533984868494908" b="-3.1130962745247851e-05" c="-4.2592774279194903e-06" d="3.7015681428972879e-07" /> - <superelevation s="703.81559385277944" a="0.026166637480792239" b="-4.5198999239762431e-06" c="2.2476981004808388e-07" d="0" /> - <superelevation s="713.87010233639057" a="0.026143914794726893" b="0" c="3.611831911623028e-06" d="-2.3948340637505554e-07" /> - <superelevation s="723.9246108200017" a="0.026265625272112705" b="0" c="-2.8410834718754755e-07" d="1.8837874084089437e-08" /> - <superelevation s="733.97911930361283" a="0.026256051470393359" b="0" c="6.4479237823554563e-06" d="-3.3292439683335348e-07" /> - <superelevation s="744.03362778722396" a="0.026569494050236155" b="2.8692289921302002e-05" c="-3.8061534870504332e-07" d="1.3303165097951444e-08" /> - <superelevation s="754.08813627083521" a="0.026833025215249284" b="2.5073065645082742e-05" c="-9.0998121005770306e-07" d="7.9255931339075329e-08" /> - <superelevation s="764.14264475444634" a="0.027073688752713404" b="3.0810931141643687e-05" c="5.1157225651616169e-06" d="-4.4079180144837042e-07" /> - <superelevation s="774.19715323805747" a="0.027452602752352513" b="0" c="-1.6815696200866313e-05" d="1.0523797060754028e-06" /> - <superelevation s="784.2516617216686" a="0.026822333975100414" b="-1.898201066643155e-05" c="9.4395517679325876e-07" d="0" /> - <superelevation s="794.30617020527973" a="0.026726906581459597" b="0" c="3.7634963655910235e-06" d="-2.1030800602668538e-07" /> - <superelevation s="804.36067868889086" a="0.026893604392531266" b="1.1898121648223474e-05" c="-2.134108489442924e-07" d="-2.5081290389177137e-08" /> - <superelevation s="814.41518717250199" a="0.026966166111561798" b="0" c="-9.0038417452581504e-07" d="2.6666606179166518e-23" /> - <superelevation s="824.46969565611312" a="0.026875143447390035" b="-1.8105840642559402e-05" c="-3.9530532207979978e-06" d="2.4526294579962568e-07" /> - <superelevation s="834.52420413972425" a="0.02654276707349253" b="-2.321465035909788e-05" c="2.5085414449765602e-06" d="-1.5213055215500276e-07" /> - <superelevation s="844.57871262333538" a="0.026408319649430804" b="-1.8908413887501487e-05" c="-2.1336395791118696e-06" d="1.5744033357282506e-07" /> - <superelevation s="854.63322110694651" a="0.026162537457805501" b="-1.4065394935166362e-05" c="6.9945711210516538e-07" d="0" /> - <superelevation s="864.68772959055764" a="0.026091827141455016" b="0" c="2.3526373434395357e-06" d="-1.5599219973636321e-07" /> - <superelevation s="874.74223807416877" a="0.026171105640895774" b="0" c="-7.343644093206333e-06" d="4.8692213416343689e-07" /> - <superelevation s="884.7967465577799" a="0.0259236416253475" b="0" c="8.5392453567576541e-06" d="-4.5724214063089906e-07" /> - <superelevation s="894.85125504139103" a="0.026322140715133929" b="3.304369739435429e-05" c="1.3201219454477439e-06" d="-1.9648564183778083e-07" /> - <superelevation s="904.90576352500216" a="0.026588117896910329" b="0" c="-2.3301316006702413e-06" d="1.4695333521332544e-07" /> - <superelevation s="914.96027200861329" a="0.026501927093585301" b="-2.288733249763064e-06" c="1.1381626727424658e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="9.624668059106364" b="1.2365565522264311e-05" c="-0.0017651276801587791" d="0.00015504237604189102" /> - <laneOffset s="7.5863676296578406" a="9.5908678165398378" b="-0" c="0.0025281753246281136" d="-0.0018763679235353388" /> - <laneOffset s="8.4846190841191742" a="9.5915477740762345" b="-0" c="-0.0031423197192569758" d="0.00050508819292312669" /> - <laneOffset s="10.054508483611135" a="9.585757585645247" b="-0.0061317393849654473" c="-0.00078595430415570264" d="0.0005033607481494223" /> - <laneOffset s="12.041925982063587" a="9.5744182356164469" b="-0.0032912124547736241" c="0.00065341863034399403" d="-6.3860215277515637e-05" /> - <laneOffset s="17.893916242398756" a="9.5647369573960663" b="-0.0022044440999815854" c="-0.00013968088381327896" d="1.0447864610020286e-05" /> - <laneOffset s="20.109016967222271" a="9.5592820789472785" b="-0.0026694658441255912" c="-0.00011018228287246838" d="1.003458403424067e-05" /> - <laneOffset s="23.081323807419121" a="9.5506376898910013" b="-0.0030585021025064268" c="-0.00022604129500345535" d="1.2290169159549216e-05" /> - <laneOffset s="30.163525450833404" a="9.5220048657240568" b="-0.0044109067315614581" c="3.2639738252025908e-05" d="1.0851963790301407e-05" /> - <laneOffset s="35.99158453677277" a="9.4995547179378974" b="-0.0029246518008025136" c="4.033104494025239e-05" d="4.200251964150312e-06" /> - <laneOffset s="40.218033934444541" a="9.488231357961002" b="-0.0023586518383597976" c="0.00012561156534856855" d="3.5880909211226521e-06" /> - <laneOffset s="44.26840607208171" a="9.4809770856627775" b="-0.0011645112370580856" c="9.076229636549433e-05" d="-3.7369782454044575e-06" /> - <laneOffset s="50.272542418055679" a="9.4764482928770981" b="-0.00047876314212707221" c="4.1541494096653438e-05" d="-2.6805439949453258e-06" /> - <laneOffset s="60.327050901666809" a="9.4731095078401086" b="-0.00045635836737708808" c="-3.211777666550447e-05" d="-2.5171368269386561e-06" /> - <laneOffset s="66.650849736466682" a="9.4683026232035949" b="-0.0011645552497784662" c="-0.00048507494628929995" d="3.5153022905326833e-05" /> - <laneOffset s="70.381559385277953" a="9.4590319499158841" b="-0.0033161029863541134" c="-9.2462491730951635e-05" d="3.5633579160329757e-05" /> - <laneOffset s="73.737226749978745" a="9.4482095055190385" b="-0.0027328935937247613" c="-5.9774064638304116e-05" d="3.7363703291302213e-06" /> - <laneOffset s="80.436067868889083" a="9.4283431348575952" b="-0.0030307245768928562" c="1.1255196985635745e-05" d="3.645964222150837e-06" /> - <laneOffset s="90.490576352500213" a="9.4027144226927231" b="-0.0016986477058397397" c="0.00012137441652013702" d="3.1544014049690818e-06" /> - <laneOffset s="94.197604484369208" a="9.3982461142087832" b="-0.00066872705565839601" c="0.00010002908034525272" d="-6.5995337663741708e-06" /> - <laneOffset s="100.54508483611136" a="9.3963438188193464" b="-0.00019655749205345989" c="-2.2776506110261834e-05" d="-6.5684688448965623e-06" /> - <laneOffset s="104.41889843980553" a="9.3948587586285779" b="-0.00066872921045273538" c="-0.0001402138450168908" d="2.9526065803186526e-06" /> - <laneOffset s="110.59959331972249" a="9.3860663758207981" b="-0.0020635897221846253" c="-8.6633368052631323e-05" d="3.068182065180242e-06" /> - <laneOffset s="120.91360778871295" a="9.3589329089367244" b="-0.0028714958970212502" c="-0.00028494812333840425" d="3.7264761642050347e-05" /> - <laneOffset s="127.47134622535657" a="9.3383574810879111" b="-0.001801132434902584" c="0.00014190279506743041" d="-7.0365914659353119e-06" /> - <laneOffset s="130.70861028694475" a="9.3337751395045565" b="-0.0011036066705376456" c="8.6932899930738261e-05" d="-4.8363003532903321e-06" /> - <laneOffset s="140.18114402546379" a="9.3270109193745974" b="-0.0007585246813424034" c="1.6309833281667012e-06" d="6.780986331889374e-07" /> - <laneOffset s="150.81762725416704" a="9.3199433994106524" b="-0.00049367921786310019" c="2.7195533122457469e-05" d="-6.7917725979295824e-07" /> - <laneOffset s="153.88414426271163" a="9.3186656728046238" b="-0.00034604807232139101" c="1.2652073498980434e-05" d="-6.4932997291253978e-07" /> - <laneOffset s="160.87213573777817" a="9.3166437422786945" b="-0.00026434720094662832" c="1.1831682630824575e-05" d="-3.9688605140596592e-07" /> - <laneOffset s="170.9266442213893" a="9.3147785514735482" b="-0.00014679106665716046" c="3.4335905376906621e-06" d="1.5997123242105716e-07" /> - <laneOffset s="180.98115270500043" a="9.3138123533545567" b="-2.9228953284504492e-05" c="-1.8749477479206529e-05" d="6.5592718707020021e-06" /> - <laneOffset s="183.4809883528506" a="9.3137245853592496" b="-0" c="-2.367209982206956e-06" d="6.2173811401574422e-07" /> - <laneOffset s="191.03566118861158" a="9.3138575552555558" b="7.0686536550086052e-05" c="-1.7975110239902118e-06" d="2.1776280684405598e-09" /> - <laneOffset s="201.09016967222271" a="9.3143887710341389" b="3.5200786652951046e-05" c="-1.7496366163268759e-06" d="-1.1453578156893764e-06" /> - <laneOffset s="203.8219238478917" a="9.3144485254214899" b="-0" c="-0.0011975400863953141" d="0.00013521343071186661" /> - <laneOffset s="209.58891134156494" a="9.3005544058983478" b="-0.00032155384966336015" c="4.1281520647280016e-05" d="-6.258783014446309e-06" /> - <laneOffset s="211.14467815583384" a="9.3001304932744517" b="-0.00023855148005878535" c="2.4646011356270414e-05" d="-1.3077846575275431e-06" /> - <laneOffset s="221.19918663944497" a="9.2988942310451748" b="-0.00013956859526416184" c="-1.4081541761835932e-05" d="-1.2188097316403062e-06" /> - <laneOffset s="224.83770369374642" a="9.2981412759215925" b="-0.00029044721302364787" c="-4.8915332966130201e-05" d="3.2419827361519184e-06" /> - <laneOffset s="231.2536951230561" a="9.2951204248876564" b="-0.00051775979416516897" c="1.591328522267054e-05" d="2.9482408790591209e-06" /> - <laneOffset s="237.31427572562845" a="9.2932233099463897" b="-0" c="0.00030650678561264981" d="-2.1662043618375158e-05" /> - <laneOffset s="241.30820360666723" a="9.2967324739372046" b="0.0014117083319484505" c="5.3916021324163894e-05" d="-2.1075668100625384e-05" /> - <laneOffset s="246.96247995066966" a="9.3026285134690916" b="-0" c="-0.00014953811492513373" d="8.8415071185199289e-06" /> - <laneOffset s="251.36271209027839" a="9.3004864242311331" b="-0.00080243591885772547" c="-3.5707151944964452e-05" d="9.3953919575729104e-06" /> - <laneOffset s="258.1135202890934" a="9.296332598003346" b="-0" c="0.00089755998701054928" d="-7.3024899648125403e-05" /> - <laneOffset s="261.41722057388949" a="9.3034958250760607" b="0.0035394616823862246" c="0.0001562788537050491" d="-7.2833049703041933e-05" /> - <laneOffset s="263.99171566511643" a="9.3124011620611444" b="0.0028959221485783206" c="0.00032002763694261211" d="-3.2079913682445426e-05" /> - <laneOffset s="271.47172905750068" a="9.33854263247928" b="0.0022988728799557467" c="-0.00039846037334650356" d="-3.3405067479342754e-05" /> - <laneOffset s="273.16306312736822" a="9.3411293323764024" b="0.0006643369660534876" c="-0.00017808035158962845" d="2.1586825163721511e-05" /> - <laneOffset s="278.66273104009059" a="9.3429875424524873" b="0.00066433919832493602" c="0.00026889363747559095" d="-2.7654767587240869e-05" /> - <laneOffset s="281.52623754111181" a="9.3464453924168467" b="0.0015240166949151341" c="3.9135045573121005e-05" d="-2.6847537336148723e-05" /> - <laneOffset s="284.92605980724437" a="9.3510240820070276" b="0.00085914583922528948" c="4.5513230762287266e-05" d="-3.199379571655082e-05" /> - <laneOffset s="288.42944344489968" a="9.3532168988573243" b="-0" c="-0.0004638648290717117" d="5.3234838389700165e-05" /> - <laneOffset s="291.58074602472294" a="9.3502763591763873" b="-0.0013375779667097411" c="4.5491822225743493e-05" d="5.2642903877612489e-05" /> - <laneOffset s="294.2171553350725" a="9.3480308231460434" b="-0" c="0.00020916259661393137" d="-6.9489988598969775e-06" /> - <laneOffset s="301.63525450833407" a="9.3567040499990419" b="0.0019560051699083658" c="5.3361902273361703e-05" d="-6.6770031538539935e-06" /> - <laneOffset s="311.6897629919452" a="9.3749784574896378" b="0.0010040629073212188" c="-0.00015825024586245596" d="-4.9792657211923082e-06" /> - <laneOffset s="314.49163515071467" a="9.3764398475627839" b="-0" c="-0.00022614587126411426" d="9.2557715515617525e-06" /> - <laneOffset s="321.74427147555633" a="9.3680754300551019" b="-0.0018197263986712629" c="-2.4411885301398471e-05" d="8.9021855459086618e-06" /> - <laneOffset s="330.96336961200501" a="9.356199669437288" b="-0" c="5.2246756977902525e-06" d="-2.2060198278258848e-07" /> - <laneOffset s="341.85328844277859" a="9.3565343714394729" b="3.5308801305053338e-05" c="1.5615470544666367e-05" d="-1.9336589880311506e-06" /> - <laneOffset s="346.67807577870394" a="9.3568510574737314" b="5.0952985579368033e-05" c="0.00079403972954572772" d="-5.1373363477769873e-05" /> - <laneOffset s="351.90779692638972" a="9.371486425406264" b="0.0041409838201377476" c="-4.1857034043513015e-06" d="-5.0081841437131821e-05" /> - <laneOffset s="355.05925102015664" a="9.382927454267362" b="0.0026224138154142518" c="6.7445962094467247e-05" d="-1.9192706006068445e-05" /> - <laneOffset s="361.58645251722612" a="9.3975807230476356" b="0.0010498017522593557" c="-0.00011310815330884796" d="5.2301802161948901e-06" /> - <laneOffset s="372.01681389361198" a="9.402160140853324" b="0.00039729610263850924" c="3.0663202726325257e-05" d="6.9042545975013567e-06" /> - <laneOffset s="376.34093444644401" a="9.4050096643803318" b="0.001049766514612887" c="0.00094163540945895678" d="-0.00011355048179660228" /> - <laneOffset s="379.91795526441348" a="9.4156159915159812" b="0.003427603648282818" c="0.0011209854522851227" d="-0.00021786698846912596" /> - <laneOffset s="382.07132237722317" a="9.4260194460033091" b="0.0052246489721103047" c="-0.00029006156074583994" d="-0.0002208637999211586" /> - <laneOffset s="384.47552794528497" a="9.4338346610653829" b="-0" c="-2.0644358746833925e-06" d="1.9808530731305659e-07" /> - <laneOffset s="391.42349698835284" a="9.4338014413511484" b="-0" c="0.00011570865950041161" d="-3.5965205716478777e-06" /> - <laneOffset s="402.18033934444543" a="9.4427135674903937" b="0.0012408631286325244" c="1.0168572034034526e-06" d="-4.2506147261393486e-06" /> - <laneOffset s="404.01186766553036" a="9.4449635393384579" b="0.0012018119239972592" c="-2.7103113204170252e-05" d="9.8860646863661233e-06" /> - <laneOffset s="409.35604769555783" a="9.4521210882986768" b="0.0017591698305153853" c="0.00043029070794646778" d="-3.79033715146758e-05" /> - <laneOffset s="412.23484782805656" a="9.4598471169714706" b="0.0032942402643640805" c="0.00011355813150311536" d="-3.6918085720242185e-05" /> - <laneOffset s="418.80948495600074" a="9.4759222889186603" b="-0" c="4.0249219350666961e-06" d="-8.4490367929658282e-07" /> - <laneOffset s="422.28935631166769" a="9.4759354248954413" b="-2.6816740041963044e-06" c="-6.4103127565548612e-06" d="3.9948988365985575e-07" /> - <laneOffset s="432.34386479527882" a="9.4756664815643674" b="-1.0429700762923546e-05" c="3.1608205806495061e-06" d="-2.1358648374594213e-06" /> - <laneOffset s="433.45071552709777" a="9.4756559135397449" b="-1.1282650465624393e-05" c="-0.0004075358239554052" d="3.2218375613070583e-05" /> - <laneOffset s="441.8973177574162" a="9.4659004869235321" b="-0" c="0.00061995893703151899" d="-0.00022639559403610639" /> - <laneOffset s="443.72290963689022" a="9.4665892170189903" b="-0" c="-9.6881714972132296e-06" d="9.5422245348921784e-08" /> - <laneOffset s="452.45288176250108" a="9.4659143455851975" b="-0.00014733785543257828" c="-8.33554197828907e-06" d="-6.8350758259541366e-09" /> - <laneOffset s="462.50739024611221" a="9.4635833222914787" b="-0.00031703034835508208" c="-6.5496652228178268e-06" d="-1.2525869393619753e-07" /> - <laneOffset s="472.56189872972334" a="9.4596062935578864" b="-0.00048672606181489098" c="-2.6229175837424916e-06" d="-5.1170753777224219e-07" /> - <laneOffset s="480.13945738107952" a="9.455544848583104" b="-0.00061462249735570892" c="-0.00019109337648414855" d="7.3232893315830087e-06" /> - <laneOffset s="482.61640721333447" a="9.4529613384614208" b="-0.0014264886089385119" c="-0.00012951524595943432" d="9.3039296487949116e-06" /> - <laneOffset s="492.67091569694566" a="9.4349824970321379" b="-0.0012092224762017259" c="0.00014884862641953238" d="9.7466178157663191e-06" /> - <laneOffset s="495.78211091891296" a="9.4329546741035326" b="-0" c="3.8716069213254573e-05" d="1.0330544530539005e-07" /> - <laneOffset s="502.72542418055679" a="9.4348557401579889" b="0.00055257653590679533" c="3.9724067802723208e-05" d="4.3487515704212166e-09" /> - <laneOffset s="513.13565656714184" a="9.4449181104659079" b="0.0013810639511987002" c="0.0022360953554530828" d="-0.00032014438771295925" /> - <laneOffset s="517.01884241510936" a="9.4652533381461463" b="0.0042649128682487993" c="-0.00042698425164730888" d="2.549980914703441e-05" /> - <laneOffset s="523.80189708140438" a="9.4824951661287677" b="0.0019921235251243088" c="-0.00022577165863569" d="1.8039440928642886e-05" /> - <laneOffset s="531.7221078827306" a="9.49307319231918" b="0.0018106335373228256" c="0.00020617623433611808" d="-3.4770442600797322e-05" /> - <laneOffset s="532.88894963139012" a="9.4954113890830403" b="0.0021497616886988371" c="8.6811271370385533e-05" d="-3.5864141269627426e-05" /> - <laneOffset s="535.90669242014303" a="9.5017037727982139" b="0.0016938902420594465" c="-8.7820460305341054e-05" d="2.8153454795429261e-07" /> - <laneOffset s="540.94208102127891" a="9.5080424128456009" b="0.00083088499477677468" c="-1.4669805547699442e-05" d="-1.1176484472885274e-06" /> - <laneOffset s="542.94345811500136" a="9.5096376073152875" b="0.00075873511218556289" c="-1.9305084353511842e-05" d="8.4859952987153933e-08" /> - <laneOffset s="552.99796659861249" a="9.5154009595329061" b="0.0003962651209055406" c="-1.9251979132033684e-05" d="7.4411556785533851e-08" /> - <laneOffset s="563.99001814484848" a="9.517529429231212" b="-0" c="-0.00069976765332937108" d="8.542391234538793e-05" /> - <laneOffset s="569.45115608711546" a="9.51057279929001" b="-0" c="0.00010744064337135648" d="-8.4064430232954633e-06" /> - <laneOffset s="573.10698356583475" a="9.5115980092728716" b="0.00044851069951265846" c="1.5469811643350809e-05" d="-7.8583334013220971e-06" /> - <laneOffset s="578.17401091251952" a="9.5132454811913618" b="-0" c="-0.0023867070274125493" d="0.00030729862689350386" /> - <laneOffset s="583.35183430327083" a="9.491916391361535" b="-0" c="0.0030956901967568785" d="-0.00093656542700890674" /> - <laneOffset s="585.55541069525361" a="9.4969270227998734" b="-0" c="-0.001052880734611463" d="0.00020507866749305468" /> - <laneOffset s="588.97809964833425" a="9.4928155938392429" b="-0" c="0.00045223885666308687" d="-2.8860353493267577e-05" /> - <laneOffset s="593.21600053305701" a="9.4987410995840751" b="0.0022781080330884786" c="9.6309387391793058e-05" d="-2.7525614402371896e-05" /> - <laneOffset s="599.76263441456422" a="9.5100596149776475" b="-0" c="-0.00012046287180325089" d="9.625930635084361e-06" /> - <laneOffset s="603.27050901666814" a="9.5089928008597813" b="-0.00048979074761246405" c="-2.2490173396482211e-05" d="1.0334201841091061e-05" /> - <laneOffset s="608.03631127856511" a="9.5072663648206959" b="-0" c="0.00010127891655827442" d="-7.3532952020748715e-06" /> - <laneOffset s="613.32501750027927" a="9.5090114248910194" b="0.00045424475010134694" c="-1.7389768956304619e-05" d="-8.1726189651705378e-06" /> - <laneOffset s="616.97810533143718" a="9.5100403330875203" b="-0" c="-0.00079746097928250041" d="4.1372738169833652e-05" /> - <laneOffset s="623.3795259838904" a="9.488214667563609" b="-0.005123627038569856" c="-1.6921547111281258e-06" d="4.154344641295738e-05" /> - <laneOffset s="627.72277009826962" a="9.4693332368871044" b="-0.0027873279362822154" c="0.00021369102147478092" d="-8.0842248395511208e-06" /> - <laneOffset s="633.43403446750153" a="9.4588783240582064" b="-0.0011375229530909796" c="7.294865173800385e-05" d="-7.9993889630781387e-06" /> - <laneOffset s="642.57229832878761" a="9.4484706563793548" b="-0.0018083106116714136" c="-0.0002162442751192154" d="1.4140151315293163e-05" /> - <laneOffset s="653.54305143472379" a="9.4212763428138988" b="-0.0014474191678874456" c="0.00024870231981289639" d="1.4683728216840077e-05" /> - <laneOffset s="655.9429289949702" a="9.4194380500266472" b="-0" c="0.0001861294031464565" d="-3.3545696215923913e-05" /> - <laneOffset s="659.64195100856693" a="9.4202869715833497" b="-0" c="-0.0015203284739097737" d="0.00015415343958300362" /> - <laneOffset s="663.59755991833492" a="9.4060396184010262" b="-0.0047916062463485877" c="0.00029496746442827398" d="0.00015886745599885452" /> - <laneOffset s="664.93419349648593" a="9.4005413602334187" b="-0.0031515867098906333" c="0.00033072399627424198" d="-1.5753872484755914e-05" /> - <laneOffset s="673.65206840194605" a="9.3877636429388716" b="-0.0009771122469878768" c="-7.9701827648705553e-05" d="-1.6269812002533205e-05" /> - <laneOffset s="679.02404560128343" a="9.3776923398882825" b="-0.0032419745390290414" c="-0.0013301418477707292" d="0.00023927871136906532" /> - <laneOffset s="683.69658702525282" a="9.3579133288092784" b="-0" c="0.00016044210557397058" d="-2.2593759663043261e-05" /> - <laneOffset s="688.43069968782743" a="9.3591119288172955" b="-0" c="-0.00019489073887873521" d="2.4006728298576849e-05" /> - <laneOffset s="693.84281405995671" a="9.3572090817773006" b="-0" c="0.0028589671898037001" d="-0.00072654903735093934" /> - <laneOffset s="696.46614439081065" a="9.3637674210218318" b="-0" c="-8.6238871677138669e-05" d="1.7968828914016492e-06" /> - <laneOffset s="703.81559385277944" a="9.3598225991393136" b="-0.00097644376449094029" c="-5.0332465839544983e-05" d="1.486083574918945e-06" /> - <laneOffset s="713.87010233639057" a="9.3464271874938518" b="-0.0015378816056110516" c="-3.20870609462825e-06" d="-8.4673793687505142e-08" /> - <laneOffset s="714.92294853628528" a="9.3448043790667707" b="-0.0015449197325621991" c="-8.159578761141239e-05" d="1.4989444358901163e-06" /> - <laneOffset s="723.9246108200017" a="9.3253791690021597" b="-0.002649537119689007" c="-4.0116780147124968e-05" d="1.5827383628408722e-06" /> - <laneOffset s="733.97911930361283" a="9.2962926057462365" b="-0.0029762341556221019" c="9.834286322855063e-06" d="1.4269156140517844e-06" /> - <laneOffset s="744.03362778722396" a="9.2688125898072116" b="-0.0023457221816512923" c="5.8879215642764953e-05" d="1.1165568477249119e-06" /> - <laneOffset s="749.41028845679534" a="9.2580760938813622" b="-0.0016157411718904808" c="5.7975146321796727e-05" d="-3.5081010019199227e-06" /> - <laneOffset s="754.08813627083521" a="9.2514274339836717" b="-0.0013036388854049913" c="1.6276059319138548e-05" d="-3.4258600450544984e-06" /> - <laneOffset s="758.87052609488387" a="9.2451904605203179" b="-0.0013830230941116843" c="4.3745087860569051e-06" d="-6.1604966627830079e-07" /> - <laneOffset s="764.14264475444634" a="9.2379303133783708" b="-0.0013882669713515092" c="1.4751269543467984e-06" d="-3.9694415606724335e-07" /> - <laneOffset s="773.45223250428796" a="9.2248136937966194" b="-0.0014640088970560117" c="-5.4721730965157936e-05" d="1.4024546074509499e-05" /> - <laneOffset s="776.92279776503381" a="9.2196599007152749" b="-0.0013370700390394757" c="-3.4217513833474292e-05" d="8.1554104951786261e-06" /> - <laneOffset s="784.2516617216686" a="9.2112331720525109" b="-0.000524484780541433" c="0.00013005028632208054" d="1.0550910560521407e-05" /> - <laneOffset s="785.92669074360083" a="9.2107691155594047" b="-0" c="0.00012851933819403827" d="-5.6979447750723582e-06" /> - <laneOffset s="794.30617020527973" a="9.216440683362972" b="0.00095359517624182919" c="-1.3655201798824206e-05" d="-5.9315595236809678e-06" /> - <laneOffset s="800.89934139225943" a="9.2204342974087599" b="-0" c="-0.0015712002808122394" d="0.00018361616297694241" /> - <laneOffset s="804.36067868889086" a="9.2092244957743361" b="-0.0042772719067290556" c="0.00034316058654470524" d="0.00018325221006042046" /> - <laneOffset s="806.59478344159857" a="9.2034248439011144" b="-0" c="0.0041002829109486163" d="-0.0010567939010752458" /> - <laneOffset s="809.18140126542494" a="9.2125692835959345" b="-0" c="-0.00011849038354073784" d="1.10665622788931e-05" /> - <laneOffset s="814.41518717250199" a="9.2109101089457326" b="-0.00033088368194785834" c="5.5223592240299441e-05" d="1.1382773757731839e-05" /> - <laneOffset s="816.30584375646163" a="9.2105588510966605" b="-0" c="2.3868625729038963e-05" d="-5.4098282335966262e-07" /> - <laneOffset s="824.46969565611312" a="9.2118553054239616" b="0.00028155280585681982" c="5.4197562328758979e-06" d="-1.3110317422740156e-07" /> - <laneOffset s="830.21084255122742" a="9.213625571771443" b="0.00033082025539482319" c="-2.6562720962828575e-05" d="3.3257373376735987e-06" /> - <laneOffset s="834.52420413972425" a="9.2148252093812282" b="0.00028729792424349001" c="9.4550210721894579e-06" d="2.5604381548350239e-06" /> - <laneOffset s="841.8497934417212" a="9.2184437980623599" b="0.00083803717265247546" c="0.0014473803888868856" d="-0.0001646031893496068" /> - <laneOffset s="844.57871262333538" a="9.2281642664343817" b="0.0050602055815349026" c="9.071978817637071e-05" d="-0.00016451208869964522" /> - <laneOffset s="847.96982393621192" a="9.2399518282084827" b="-0" c="-0.0016925855410499021" d="0.00010107796110036307" /> - <laneOffset s="854.63322110694651" a="9.1947045553422999" b="-0.0090928936487240288" c="0.00032356780106535801" d="0.0001010671810128706" /> - <laneOffset s="859.14533849002737" a="9.1695482805577999" b="-0" c="0.0012565320349515402" d="-6.1767646015909082e-05" /> - <laneOffset s="864.68772959055764" a="9.1976305082224883" b="0.0082362299195398551" c="0.00023008132869207557" d="-6.1956383356273376e-05" /> - <laneOffset s="870.25991513979966" a="9.2399489529650527" b="0.0050292435878737402" c="0.00021134172536616105" d="-3.6787335963140173e-05" /> - <laneOffset s="874.74223807416877" a="9.2634248639818395" b="0.0047065400556475625" c="-0.00028589519469825387" d="-3.6047370645025192e-05" /> - <laneOffset s="879.20564471875628" a="9.2755311308377273" b="-0" c="-0.00046526554900497063" d="6.8901724549478449e-05" /> - <laneOffset s="883.70737576682666" a="9.2723881717261243" b="-0" c="0.0019046963688431526" d="-0.00017164628573063521" /> - <laneOffset s="884.7967465577799" a="9.2744266274196967" b="0.0035387484487367756" c="0.0013440516727484997" d="-0.00017587371290923317" /> - <laneOffset s="887.65450515088139" a="9.2914114327296051" b="0.0069117309165559688" c="0.0014534063025835094" d="-0.00020600955581117752" /> - <laneOffset s="892.11973554624444" a="9.332911499237337" b="0.0075688887604728038" c="-0.00059060981062251158" d="3.8157491627527744e-05" /> - <laneOffset s="894.85125504139103" a="9.3499570745792013" b="0.0051964662237667832" c="-0.00025605813084536642" d="3.8480919975326683e-05" /> - <laneOffset s="897.44924788352068" a="9.3624039506584271" b="0.0046451804621481605" c="-0.00046330337746222563" d="3.7857845555991409e-05" /> - <laneOffset s="905.34961175880062" a="9.3888531127167081" b="0.0044134273277576571" c="0.00011435422590124561" d="3.8118726628576107e-06" /> - <laneOffset s="910.80420968303611" a="9.4169475479872382" b="0.0060011797824247532" c="0.00034959117338677229" d="-2.6396625224563178e-05" /> - <laneOffset s="914.96027200861329" a="9.4460323264407755" b="0.0075391900274866339" c="1.8486334987507384e-05" d="-2.654731941460807e-05" /> - <laneOffset s="918.14621054858662" a="9.4693808773020063" b="0.0068486005282472418" c="-0.0004610124362112465" d="7.3694656004572999e-05" /> - <laneOffset s="923.85732453481774" a="9.5071849767022574" b="0.0087938680285231073" c="0.0087699335156269896" d="-0.0072480145591410769" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.493035872365855" b="-7.7424285320721133e-05" c="1.9372772065179939e-05" d="-1.2214712024268297e-06" /> - <width sOffset="7.4981625438762389" a="2.4930295875206259" b="7.0738226273667432e-06" c="-0.002574641935919031" d="-8.6753010452489041e-05" /> - <width sOffset="7.5863676296578406" a="2.4930101208663142" b="-0.00044914405390137534" c="-0.0033622757223089866" d="0.0019446572872196424" /> - <width sOffset="8.4846190841191742" a="2.4913032137408084" b="-0.001782308862685628" c="0.002492242382338054" d="-0.00043679882923959595" /> - <width sOffset="10.054508483611135" a="2.4929574411918818" b="0.0028132396945320642" c="0.00044334528113709293" d="-0.00043680640771787864" /> - <width sOffset="12.041925982063587" a="2.4968707488186581" b="-0.00060046691600992245" c="-0.00059921387104764755" d="0.00013041455570911642" /> - <width sOffset="15.541126275250278" a="2.4930202710433935" b="-3.4606115772498319e-06" c="-0.00022520043792831771" d="7.1201211388612464e-05" /> - <width sOffset="17.893916242398756" a="2.4926928402092798" b="0.00011926941033961512" c="-5.0664509841089419e-05" d="-3.1068684985602586e-06" /> - <width sOffset="20.109016967222271" a="2.4926746720320416" b="-0.00015091772134740757" c="-4.8602739129128609e-05" d="-3.5975613194783628e-06" /> - <width sOffset="23.081323807419121" a="2.4917022431523446" b="-0.00053519136080432302" c="0.00012465469293868845" d="-5.8531464447948839e-06" /> - <width sOffset="30.163525450833404" a="2.4920850974025672" b="0.00034972899633291255" c="2.0772103357724069e-06" d="-5.5948514643204738e-06" /> - <width sOffset="35.99158453677277" a="2.4930863512530124" b="-0.00019616754633811507" c="8.6302187422629135e-05" d="1.0568603582626636e-06" /> - <width sOffset="36.991373321590665" a="2.4929775470656725" b="-2.043038628763913e-05" c="0.00013668105943014908" d="-1.2611508686382286e-05" /> - <width sOffset="40.218033934444541" a="2.493910988734358" b="0.00046770832993139519" c="1.6052798914785471e-05" d="-7.6303318091885844e-06" /> - <width sOffset="44.26840607208171" a="2.4955617123120035" b="0.0002222093925071931" c="1.7843282982678928e-06" d="-3.0526264267979865e-07" /> - <width sOffset="50.272542418055679" a="2.4968941390250041" b="0.0002106222560164023" c="-5.6882626476670875e-06" d="-1.1929413740460125e-06" /> - <width sOffset="60.327050901666809" a="2.4972242424199749" b="-0.00026555768512539883" c="-4.1080035497227926e-05" d="-9.7130414544756503e-07" /> - <width sOffset="66.650849736466682" a="2.4936564661770255" b="-0.00090165006262183929" c="0.00034569653725674305" d="-3.8641463877666197e-05" /> - <width sOffset="70.381559385277953" a="2.4930976951665347" b="6.4278523432229062e-05" c="-8.5958998383765762e-05" d="-3.912202009424604e-05" /> - <width sOffset="70.650075472731217" a="2.4931079998518904" b="9.6535782060365276e-06" c="9.3949107326917513e-05" d="-3.5148779232315368e-05" /> - <width sOffset="73.737226749978745" a="2.4929990331013308" b="-0.00041523284710159739" c="9.4455200159205429e-05" d="-3.2515704011599194e-06" /> - <width sOffset="80.436067868889083" a="2.4934786368027506" b="0.0004125103922906553" c="2.9246538127411125e-05" d="-3.1067611604858164e-06" /> - <width sOffset="90.490576352500213" a="2.497425008402324" b="5.8412793002080758e-05" c="-6.5697363721953656e-05" d="-2.8603027938081213e-06" /> - <width sOffset="94.197604484369208" a="2.4965930192149148" b="-0.00054659049499651482" c="-4.108133207151673e-05" d="6.8936323775363866e-06" /> - <width sOffset="100.54508483611136" a="2.4932313587040706" b="-0.0002348725644180534" c="9.3470223444758042e-05" d="4.1456992803005094e-06" /> - <width sOffset="101.69632620437378" a="2.4930911706079577" b="-3.1753977586816327e-06" c="-0.00010315903845239401" d="9.4873666301610543e-06" /> - <width sOffset="104.41889843980553" a="2.4925093319299858" b="-0.00035391880841197793" c="1.5433351477033838e-05" d="-3.3708795167504602e-08" /> - <width sOffset="110.59959331972249" a="2.4909034781175929" b="-0.00016700426346607069" c="1.4399263762841723e-05" d="-3.2102841973991869e-09" /> - <width sOffset="120.65410180333362" a="2.4906767360662574" b="0.00012157716271838336" c="1.6580077859235674e-05" d="-4.0246129106099806e-07" /> - <width sOffset="120.91360778871295" a="2.4907093955923507" b="0.00013010111234168856" c="0.00030951733253319481" d="-3.4599040742828204e-05" /> - <width sOffset="127.47134622535657" a="2.4951158022051594" b="-0.00027411600272087997" c="-6.4890284666105328e-05" d="9.7023123652604001e-06" /> - <width sOffset="130.70861028694475" a="2.4938775359679983" b="-0.00038921280840322381" c="2.9957179597187922e-05" d="5.7667679558814203e-06" /> - <width sOffset="133.97038333433466" a="2.4931268529242381" b="-9.7250064974753339e-06" c="-2.8600799024129634e-05" d="4.5508013960406543e-06" /> - <width sOffset="140.18114402546379" a="2.4930534593274949" b="0.00016163123008818708" c="4.056878073760869e-06" d="-9.6359761102225356e-07" /> - <width sOffset="140.76311877055591" a="2.4931487087277695" b="0.00016537413531588787" c="2.4976024783149166e-06" d="-5.302820458261843e-07" /> - <width sOffset="150.81762725416704" a="2.4945249539937997" b="5.4774833286512872e-05" c="-1.5143483520694304e-05" d="3.3602468782416382e-07" /> - <width sOffset="153.88414426271163" a="2.494560209434967" b="-2.8621215049661343e-05" c="-3.7568734925857211e-06" d="3.0617740093703565e-07" /> - <width sOffset="160.87213573777817" a="2.4942812281829898" b="-3.6273427568278224e-05" c="2.3011583169863251e-06" d="-1.2830044787152293e-07" /> - <width sOffset="170.9266442213893" a="2.4940187380760204" b="-2.8910281670933911e-05" c="-6.121478943623856e-07" d="2.079568616651545e-08" /> - <width sOffset="180.98115270500043" a="2.4936873130559523" b="-3.4913070372939717e-05" c="1.5016493426061582e-05" d="-5.9879945596411357e-06" /> - <width sOffset="183.4809883528506" a="2.4936003328988345" b="-7.2095675606388806e-05" c="2.9185240898959598e-06" d="-5.046080294584981e-08" /> - <width sOffset="191.03566118861158" a="2.4932004857137802" b="-3.6638546860692625e-05" c="-8.3892163789667924e-06" d="2.1865701403345052e-06" /> - <width sOffset="195.47966756049888" a="2.4930638890322925" b="1.8346975774642317e-05" c="-9.2364012887414279e-05" d="3.1644739637113214e-06" /> - <width sOffset="201.09016967222271" a="2.4908182797043192" b="-0.00071923859440650999" c="-4.2508333832194392e-05" d="3.4533738137363596e-06" /> - <width sOffset="203.8219238478917" a="2.4886066783582415" b="-0.0008741710231695678" c="0.0011721969129673852" d="-0.00013290541471382063" /> - <width sOffset="209.58891134156494" a="2.49705927345709" b="-0.00061464371146381842" c="-2.6693795883172351e-05" d="8.5667990110408606e-06" /> - <width sOffset="211.14467815583384" a="2.4960706803157482" b="-0.00063549684727644837" c="5.1175660483969353e-06" d="3.5956402704584588e-06" /> - <width sOffset="218.33807829063227" a="2.4931024840089666" b="-3.7021699659362087e-06" c="-5.3422998153672418e-05" d="3.4868859204040671e-06" /> - <width sOffset="221.19918663944497" a="2.4927362400707498" b="-0.00022376981495921306" c="-2.2854328844388536e-05" d="3.742224521371965e-06" /> - <width sOffset="224.83770369374642" a="2.491799747292097" b="-0.00024145378817258469" c="3.9523925602371747e-05" d="-7.185679464231753e-07" /> - <width sOffset="231.2536951230561" a="2.4916877983084653" b="0.00017697711548290398" c="2.5338326260444317e-05" d="-5.7442128037008952e-07" /> - <width sOffset="237.31427572562845" a="2.4935632039121387" b="0.0004208104737364822" c="-0.00022209499908845286" d="2.4035863217079051e-05" /> - <width sOffset="241.30820360666723" a="2.4932324514610098" b="-0.00020303101828292119" c="7.7229690916251188e-05" d="1.2902580446354468e-05" /> - <width sOffset="242.3138751578073" a="2.4931195005021625" b="-8.5475598701522174e-06" c="-0.00023805522191378689" d="3.0900508589661155e-05" /> - <width sOffset="246.96247995066966" a="2.4910395899234015" b="-0.00021856077140806104" c="3.8828716604553205e-05" d="9.833333706132977e-07" /> - <width sOffset="251.36271209027839" a="2.4909134525970664" b="0.00018026799074754381" c="5.2261525275524039e-05" d="7.477711432828064e-07" /> - <width sOffset="258.1135202890934" a="2.4947422005104816" b="0.00098811850306864345" c="-0.00067558196781010329" d="8.3168062748965651e-05" /> - <width sOffset="261.41722057388949" a="2.4936319280242536" b="-0.00075252478834406155" c="0.00014026841175172978" d="9.5229523631058902e-05" /> - <width sOffset="262.61319769447499" a="2.4930954672789341" b="-8.371298022288344e-06" c="3.1119172267184497e-05" d="7.2908703716379467e-05" /> - <width sOffset="263.99171566511643" a="2.4933340560823414" b="0.00049307318735961319" c="-0.00039363672292138513" d="3.2155567695808168e-05" /> - <width sOffset="271.47172905750068" a="2.4884555056669466" b="1.6272205384235995e-06" c="0.00032648346130598253" d="3.3214055400955068e-05" /> - <width sOffset="273.16306312736822" a="2.4895528978618611" b="0.0013910498935637272" c="0.00010513424384143524" d="-2.1777837242112731e-05" /> - <width sOffset="278.66273104009059" a="2.4967605057692595" b="0.00057135667211210238" c="-0.00034499125421869178" d="2.7463755508669749e-05" /> - <width sOffset="281.52623754111181" a="2.4962126187308513" b="-0.00072883157272305365" c="-0.00011419796939291378" d="2.6724183465458459e-05" /> - <width sOffset="284.92605980724437" a="2.493464933003148" b="-0.00057863938155465033" c="-0.00012183429829072776" d="3.1870441845871182e-05" /> - <width sOffset="288.42944344489968" a="2.4913127920850915" b="-0.00025879952476955907" c="0.00038624729374703238" d="-5.3358192260425977e-05" /> - <width sOffset="291.58074602472294" a="2.4926631187627581" b="0.00058591078953021208" c="-0.00011442840586832632" d="-5.7170454670319843e-05" /> - <width sOffset="292.92921939190887" a="2.493104945382262" b="-3.4569432457200828e-05" c="-1.4766630490155704e-05" d="-5.9269737048864945e-05" /> - <width sOffset="294.2171553350725" a="2.4929093036605003" b="-0.00036755256512747481" c="8.9204467825309912e-06" d="3.2216568995715275e-07" /> - <width sOffset="301.63525450833407" a="2.4908051478890485" b="-0.00018202245776339273" c="1.5603097057533742e-05" d="3.5959757116188885e-07" /> - <width sOffset="311.6897629919452" a="2.490917877649462" b="0.00024079902943787866" c="2.978538509219026e-05" d="-1.164538967428719e-06" /> - <width sOffset="314.49163515071467" a="2.4918007802700082" b="0.0003802821157487422" c="4.6038544576135687e-05" d="-1.5399576240184942e-05" /> - <width sOffset="318.49151207901173" a="2.4930729514065426" b="9.4449660926823609e-06" c="9.0640793163003985e-05" d="-6.7985853325353402e-06" /> - <width sOffset="321.74427147555633" a="2.4938287157677319" b="0.00038331420154682529" c="2.3612612010614025e-05" d="-7.2816028341496349e-06" /> - <width sOffset="330.96336961200501" a="2.4936639232116864" b="-0.0010379407734389899" c="3.8796984189202059e-05" d="1.8411846924871253e-06" /> - <width sOffset="331.79877995916746" a="2.4928249670577216" b="-0.00096926302327904237" c="5.1264356278620527e-05" d="1.6957773726786005e-06" /> - <width sOffset="341.85328844277859" a="2.4899856376337937" b="0.00057590716928400561" c="9.6892903661572363e-05" d="3.2744952310286288e-06" /> - <width sOffset="346.67807577870394" a="2.4953875679585877" b="0.0017395592055562518" c="-0.00066212360616514925" d="5.2714199720769393e-05" /> - <width sOffset="351.90779692638972" a="2.4939157668097334" b="-0.00086068700218335653" c="0.00016306810984098786" d="5.2380869171380888e-05" /> - <width sOffset="353.42796228001561" a="2.4931682263799928" b="-1.7647441001972762e-06" c="-1.7588103134025512e-05" d="5.6357959462519589e-05" /> - <width sOffset="355.05925102015664" a="2.493363195259354" b="0.0003907757038665396" c="-0.00028690332722898965" d="2.5468824031436925e-05" /> - <width sOffset="361.58645251722612" a="2.4907730894959954" b="-9.9327153821236747e-05" c="1.6547249082854022e-05" d="1.0459377871412542e-06" /> - <width sOffset="361.96230541000085" a="2.4907381501856811" b="-8.644522649003158e-05" c="7.6057861512135509e-06" d="1.4978633115039796e-06" /> - <width sOffset="372.01681389361198" a="2.4921603696770394" b="0.00052077077643282791" c="5.8932629938906767e-05" d="-4.1782638622315702e-07" /> - <width sOffset="376.34093444644401" a="2.4954803864006632" b="0.0010069967925688315" c="-0.00076789528416513846" d="0.00012003691000788784" /> - <width sOffset="379.91795526441348" a="2.4947510354092159" b="0.00012108681247892947" c="-0.00087763906075257196" d="0.00022435341668034431" /> - <width sOffset="382.07132237722317" a="2.4931823769230324" b="-0.00053769777150843891" c="0.00057531093582890145" d="0.00022735022817577656" /> - <width sOffset="382.41795394514099" a="2.4930745883960075" b="-5.6905169414657106e-05" c="-0.00029517410386575903" d="0.00025962277551773433" /> - <width sOffset="384.47552794528497" a="2.4939694150789116" b="0.0020258350399696189" c="-0.00057359794314715534" d="3.8560890289100779e-05" /> - <width sOffset="391.42349698835284" a="2.4932884673146916" b="-0.00036034953426475422" c="0.00011651744924572796" d="4.2355496163514432e-05" /> - <width sOffset="392.42351314220372" a="2.4930869907218813" b="-2.4027762590974017e-07" c="-9.1320339521380303e-05" d="5.6951399139758329e-06" /> - <width sOffset="402.18033934444543" a="2.4896810351922269" b="-0.00015577587381379035" c="7.4934769096519338e-05" d="6.2151809524196249e-06" /> - <width sOffset="404.01186766553036" a="2.4896852808170138" b="0.00018126082861296767" c="0.00011384921555022356" d="-7.9214984600824724e-06" /> - <width sOffset="409.35604769555783" a="2.4926964669410694" b="0.00071940206554499007" c="-0.00031204761881787371" d="3.9867937740884302e-05" /> - <width sOffset="412.23484782805656" a="2.4931325604895971" b="-8.6027956944990502e-05" c="2.1651738169053023e-05" d="3.8882651935958754e-05" /> - <width sOffset="412.85613398105835" a="2.4930967946208096" b="-1.4098405913081074e-05" c="-0.00024098840156466992" d="3.9705297761343428e-05" /> - <width sOffset="418.80948495600074" a="2.4928495139776796" b="0.0013382762098688495" c="-0.00015048552379017728" d="3.6321157204174705e-06" /> - <width sOffset="422.28935631166769" a="2.4958372934830937" b="0.00042288504914756526" c="-0.00011527199585340063" d="3.1252245710986476e-06" /> - <width sOffset="432.34386479527882" a="2.4916125957054085" b="-0.00094730516807980838" c="-2.4058149464884763e-05" d="4.9946605520077468e-06" /> - <width sOffset="433.45071552709777" a="2.4905413690782154" b="-0.00098220557499668231" c="0.00039613127545753773" d="-2.9359579898521029e-05" /> - <width sOffset="440.95103075433281" a="2.4930711403958128" b="5.1677107064288614e-06" c="-0.00026768885062601394" d="-3.5124134509813143e-05" /> - <width sOffset="441.8973177574162" a="2.492806563285809" b="-0.00059580992653745926" c="-0.00057848873759381062" d="0.00022348983509022015" /> - <width sOffset="442.39837327888995" a="2.4923909095230634" b="-0.0010071940604349395" c="-0.00023940207785437041" d="0.00022559630922943408" /> - <width sOffset="443.72290963689022" a="2.4911610703263367" b="-0.00045403140397450264" c="4.6758698024930786e-05" d="-8.9470705196754535e-07" /> - <width sOffset="452.45288176250108" a="2.4901657045949026" b="0.00015780950588152273" c="2.3353827469020033e-05" d="-8.8390985172272522e-07" /> - <width sOffset="462.50739024611221" a="2.493214870422138" b="0.00035936034929847402" c="-2.7826451358881032e-06" d="-9.1514631813906219e-07" /> - <width sOffset="472.56189872972334" a="2.4956165627566076" b="2.5859044139454879e-05" c="-3.0968574548414229e-05" d="-6.8448737141180572e-07" /> - <width sOffset="480.13945738107952" a="2.4937364947047787" b="-0.00056138188832975059" c="0.00013030917310292181" d="-8.5194842407219845e-06" /> - <width sOffset="482.61640721333447" a="2.4930159945114436" b="-7.2651595280561138e-05" c="6.4376957225388779e-05" d="-1.0147774805647275e-05" /> - <width sOffset="486.13989556490833" a="2.4931153411758586" b="3.0583581874608218e-06" c="0.0001199783751193013" d="-9.9274290322910171e-06" /> - <width sOffset="492.67091569694566" a="2.4954873604042671" b="0.00029988038079012337" c="-7.3579965455058342e-05" d="-1.0353011915137524e-05" /> - <width sOffset="495.78211091891296" a="2.4953963467291089" b="-0.00045859993871462596" c="3.0892760477426862e-05" d="-7.0969954467220068e-07" /> - <width sOffset="502.72542418055679" a="2.4934639104743237" b="-0.0001322467031744099" c="1.6269290696979695e-05" d="-6.64546682685755e-07" /> - <width sOffset="511.28341517886037" a="2.4931071694741647" b="2.055614950274235e-07" c="0.00069886707884374397" d="-5.1826584646266378e-05" /> - <width sOffset="512.77993266416786" a="2.4944989357958551" b="0.001743732217870757" c="0.0004598767766213303" d="-5.1663110705290716e-05" /> - <width sOffset="513.13565656714184" a="2.4951750900833147" b="0.0020512982697671895" c="-0.001791492106639343" d="0.00026848562572739492" /> - <width sOffset="517.01884241510936" a="2.4918477114350388" b="0.00028349551629442294" c="0.0002697857800638027" d="-7.7158571132658713e-05" /> - <width sOffset="519.76909374022398" a="2.4930629261021764" b="1.6597851203397403e-05" c="0.000150575986834853" d="-2.2558921420919768e-05" /> - <width sOffset="522.83444114777899" a="2.4938789029880137" b="0.00030381838904625048" c="-6.9523973806316297e-05" d="-2.5049410392359941e-05" /> - <width sOffset="523.80189708140438" a="2.4940850789604205" b="9.895906322927514e-05" c="0.00017546062930541464" d="-1.7589042172646384e-05" /> - <width sOffset="531.7221078827306" a="2.497136642783035" b="-0.00043173867540974623" c="-0.00024578550439404291" d="3.5220841358442434e-05" /> - <width sOffset="532.88894963139012" a="2.4963541848494994" b="-0.0008614626463601875" c="-0.0001241383071950129" d="3.6146139505296213e-05" /> - <width sOffset="535.90669242014303" a="2.4936173773372747" b="-0.00062317370557140911" c="5.304641890721147e-05" d="4.6368770800214997e-10" /> - <width sOffset="540.94208102127891" a="2.4918245140552333" b="-8.8919768780630973e-05" c="-1.5844323744346994e-05" d="1.3996466828263694e-06" /> - <width sOffset="542.94345811500136" a="2.4915943077840321" b="-0.00013552180451025029" c="-9.5086329163567901e-06" d="4.1179600442951053e-07" /> - <width sOffset="552.99796659861249" a="2.489689011773585" b="-0.00020184181073129451" c="1.9296780220271758e-06" d="4.3946663882770089e-07" /> - <width sOffset="563.05247508222362" a="2.4883013610673039" b="-2.975669419441975e-05" c="1.4331942505219472e-05" d="2.4746215982307252e-07" /> - <width sOffset="563.99001814484848" a="2.4882862644067902" b="-2.2305195990243252e-06" c="0.0006979974430049706" d="-8.5102038623636922e-05" /> - <width sOffset="569.45115608711546" a="2.4952303429513183" b="7.2334671714997375e-06" c="-0.00010393746331216185" d="8.7283167449363624e-06" /> - <width sOffset="573.10698356583475" a="2.4942941244201613" b="-0.00040275758963117099" c="-9.6000383895730515e-06" d="8.5830845294628384e-06" /> - <width sOffset="577.45218548837522" a="2.4930669682821662" b="-1.9814497785055306e-08" c="-0.0016139044974091516" d="0.00019324008728455788" /> - <width sOffset="578.17401091251952" a="2.4922987346408885" b="-0.0020278816368408783" c="0.0010872739948056297" d="-0.00012191687301688612" /> - <width sOffset="583.16149204944588" a="2.4941051932107428" b="-0.00028039953553499544" c="-0.00072715432134276017" d="-0.00012866235992294665" /> - <width sOffset="583.35183430327083" a="2.4940245891311505" b="-0.00057120029925114254" c="-0.0015096071414301725" d="0.0011152016938994007" /> - <width sOffset="584.35196695829791" a="2.4930589509414638" b="-0.00024432233283061934" c="-0.0014250044556451146" d="0.0010382791354191098" /> - <width sOffset="585.55541069525361" a="2.492510758963725" b="0.00083699913113571291" c="0.0002807176504042927" d="-0.00010336495908366968" /> - <width sOffset="588.97809964833425" a="2.4945195643523519" b="-0.0008740818324634741" c="-0.00017999878242027132" d="0.00013057406190262555" /> - <width sOffset="590.97837996383964" a="2.4930959904791035" b="-2.684987822547261e-05" c="-0.00020951271870398505" d="1.7584310299418281e-05" /> - <width sOffset="593.21600053305701" a="2.4921839001789383" b="-0.00070033874957516583" c="-8.405699391311042e-05" d="2.1396095536066484e-05" /> - <width sOffset="599.76263441456422" a="2.4899997704929842" b="0.00095008875881785293" c="1.2332117619543448e-05" d="-1.5755449501361189e-05" /> - <width sOffset="603.27050901666814" a="2.4928042270403878" b="0.00045498667725048578" c="-0.00015611284498382038" d="-1.2703840669834005e-05" /> - <width sOffset="604.51333650712422" a="2.4931041744240208" b="8.076180902749793e-06" c="0.00016080645205765798" d="-2.1282747753768928e-05" /> - <width sOffset="608.03631127856511" a="2.4941978664296531" b="0.00034866735508361137" c="-4.0146100579714389e-05" d="-3.5952507105898596e-06" /> - <width sOffset="613.32501750027927" a="2.4943871268760951" b="-0.0003776564557761032" c="-9.7142777306906245e-05" d="-3.0929405436205633e-06" /> - <width sOffset="616.97810533143718" a="2.4915603565464561" b="-0.0012112249962249366" c="0.00055946619796101" d="-5.2638297678619208e-05" /> - <width sOffset="622.72897721740594" a="2.4930861312238459" b="9.6722727651894075e-07" c="0.00031213634308789953" d="-4.6025478574885911e-05" /> - <width sOffset="623.3795259838904" a="2.4932061890406221" b="0.00034865121430277275" c="0.00022107496528290822" d="-4.6196186813757005e-05" /> - <width sOffset="627.72277009826962" a="2.4951059220147869" b="-0.00034528635287510824" c="-5.4932172987699247e-05" d="3.4314844387511782e-06" /> - <width sOffset="633.43403446750153" a="2.4919813549557901" b="-0.0006369606330599339" c="3.9806547448302515e-06" d="3.464667088551388e-06" /> - <width sOffset="642.57229832878761" a="2.4891370026755162" b="0.00030377278277543638" c="0.0001688551265197432" d="-1.8674873190563673e-05" /> - <width sOffset="643.48854295111266" a="2.4895427228949707" b="0.00056616508215244824" c="0.00011910365624417204" d="-1.9205877770174044e-05" /> - <width sOffset="649.32346234333363" a="2.49308589916137" b="-5.5807760135275636e-06" c="0.00032033943491746434" d="-3.6617650280884037e-05" /> - <width sOffset="653.54305143472379" a="2.4960149068109487" b="0.00074189646346865356" c="-0.00013993589219335928" d="-3.6416004006045582e-05" /> - <width sOffset="655.9429289949702" a="2.4964860811905343" b="-0.00055896589624838283" c="-0.00023382737852563782" d="1.1813420426713287e-05" /> - <width sOffset="659.64195100856693" a="2.4918169600453801" b="-0.0018039104112132318" c="0.0012314659988812895" d="-0.00017588571537225189" /> - <width sOffset="663.39260926408963" a="2.4930945708543568" b="1.0921973857771876e-05" c="0.00030751699158825733" d="-0.00017517971967169772" /> - <width sOffset="663.59755991833492" a="2.4931082183951485" b="0.00011489843921790553" c="0.00021382361613605616" d="-0.00017989373559834014" /> - <width sOffset="664.93419349648593" a="2.4932142215073991" b="-0.00027768259200468097" c="9.3753790281264713e-05" d="-5.2724071147315102e-06" /> - <width sOffset="673.65206840194605" a="2.4944254935319101" b="0.00015485497657848199" c="-4.4033523949137633e-05" d="-5.197857729843163e-06" /> - <width sOffset="679.02404560128343" a="2.4931808461077711" b="-0.00076824069982561272" c="0.00086043499919807279" d="-0.00026074638110184216" /> - <width sOffset="680.52415395513208" a="2.4930844505119278" b="5.2958403169287536e-05" c="0.00084105454489892756" d="-0.00025675470056140347" /> - <width sOffset="683.69658702525282" a="2.493519337829829" b="-0.0023628564197111239" c="0.00026097834242226679" d="5.1190750342383336e-06" /> - <width sOffset="683.70657688555718" a="2.4934957592743174" b="-0.0023576406128774743" c="0.00026365569036965316" d="6.3152483568720922e-06" /> - <width sOffset="688.43069968782743" a="2.488907883797232" b="0.00055626166803491488" c="0.00038760634996795054" d="-4.0285239604747852e-05" /> - <width sOffset="693.76108536916831" a="2.4967847441252946" b="0.0012545694138283089" c="-0.00026853431419340725" d="-3.8938450956368302e-05" /> - <width sOffset="693.84281405995671" a="2.4968854634878355" b="0.0012098952205618655" c="-0.0029421579318773014" d="0.00071161730928120059" /> - <width sOffset="696.46614439081065" a="2.4926590034434231" b="0.00046514734960366341" c="-0.00011446443581082252" d="-1.6728610960431979e-05" /> - <width sOffset="697.96614392230333" a="2.493042720421105" b="8.836095976378776e-06" c="1.5651229314377426e-05" d="-8.7558427603069696e-07" /> - <width sOffset="703.81559385277944" a="2.493454686242103" b="0.00010206111626500161" c="-1.3619787859772586e-06" d="-1.1379867693718442e-06" /> - <width sOffset="713.87010233639057" a="2.4931864765198348" b="-0.00027045490852724611" c="-3.7075395545357258e-05" d="3.4465148475601993e-07" /> - <width sOffset="714.92294853628528" a="2.4928610338033028" b="-0.00034737816402502226" c="4.2132835543814878e-05" d="-1.2389667448251159e-06" /> - <width sOffset="723.9246108200017" a="2.4922443660311782" b="0.0001099728061843522" c="8.6750372644767157e-06" d="-1.2388154013569915e-06" /> - <width sOffset="732.1713689620633" a="2.4930464714509686" b="3.0281089447633386e-07" c="3.7165425052194905e-05" d="-1.7433091679885535e-06" /> - <width sOffset="733.97911930361283" a="2.4931581751535141" b="0.00011758322988028071" c="2.8161301625843629e-05" d="-1.8650234578204596e-06" /> - <width sOffset="744.03362778722396" a="2.4952916432882102" b="0.00011825608478066964" c="-2.8749530070757377e-05" d="-1.525570760475881e-06" /> - <width sOffset="749.41028845679534" a="2.4948592397925058" b="-0.00032320264567212175" c="-3.4442847803848541e-05" d="3.0990870891756342e-06" /> - <width sOffset="754.08813627083521" a="2.4929108880360165" b="-0.00044199435635207721" c="6.2310653771167707e-06" d="3.0297856973684918e-06" /> - <width sOffset="758.87052609488387" a="2.4912710066647872" b="-0.00017451060857338213" c="1.2450070120361291e-05" d="2.1997531861569538e-07" /> - <width sOffset="764.14264475444634" a="2.4907292537901355" b="-2.4891317454553939e-05" c="1.4938852217711619e-05" d="-8.7628108264051209e-08" /> - <width sOffset="773.45223250428796" a="2.4917215501627599" b="0.00023047402360686607" c="5.7602206089873305e-05" d="-1.4509118336002126e-05" /> - <width sOffset="774.19715323805747" a="2.49191920138996" b="0.00029213854923962205" c="1.9453521129946679e-05" d="-1.3346804796689586e-05" /> - <width sOffset="776.92279776503381" a="2.4925897281421197" b="0.00010071954845632157" c="3.5832674870502505e-05" d="-7.4776692174791827e-06" /> - <width sOffset="780.92181191369798" a="2.4930873302013072" b="2.8559076680028045e-05" c="0.00013657600559771217" d="-1.2389531161238526e-05" /> - <width sOffset="784.2516617216686" a="2.4942393343088689" b="0.00052599261054775599" c="1.0772942139630049e-05" d="-1.796755532744677e-05" /> - <width sOffset="785.92669074360083" a="2.4950661715684088" b="0.00041084668412019813" c="-2.4965395422209301e-05" d="-1.7186999918541783e-06" /> - <width sOffset="794.30617020527973" a="2.4957446578869664" b="-0.00036958639782570216" c="-6.8667958710546794e-05" d="-1.6354841841261656e-06" /> - <width sOffset="800.89934139225943" a="2.4898541845847042" b="-0.0014883486442245956" c="0.0013392046766686262" d="-0.00019118320668482842" /> - <width sOffset="804.36067868889086" a="2.4928189999853636" b="0.00091091420762139715" c="-0.0006537324625469599" d="-0.00019081925376020854" /> - <width sOffset="804.89806299955046" a="2.4930901122470441" b="4.2987631707121481e-05" c="0.00098578560529566936" d="-0.00032718593421480308" /> - <width sOffset="806.59478344159857" a="2.4944028099413291" b="0.00056242505825266037" c="-0.0032085520075852661" d="0.00091286017692157172" /> - <width sOffset="809.18140126542494" a="2.4901884387730178" b="0.002286553786397103" c="-0.00010668332213271188" d="-0.00015500028643271115" /> - <width sOffset="811.18071478060574" a="2.4930948104028996" b="1.2401786216893881e-06" c="7.6964301695183745e-05" d="-1.1457112014517987e-05" /> - <width sOffset="814.41518717250199" a="2.4935163169463017" b="0.00013953155262823232" c="-3.4172334613149401e-05" d="-1.1543399083370089e-05" /> - <width sOffset="816.30584375646163" a="2.4935799575301587" b="-0.0001134732369995973" c="-3.7284300903454474e-06" d="3.8035749772454994e-07" /> - <width sOffset="824.46969565611312" a="2.4926120403108669" b="-9.8299194376537776e-05" c="6.8505695484757549e-06" d="1.1855126808212822e-07" /> - <width sOffset="830.21084255122742" a="2.4922959239933373" b="-7.9163197781034213e-06" c="3.8616859733276362e-05" d="-3.3382892437927334e-06" /> - <width sOffset="834.52420413972425" a="2.4927123488347309" b="0.00013889314172046714" c="-4.3660935760313123e-06" d="-2.1472606316266974e-06" /> - <width sOffset="838.45744624080658" a="2.4930604457633283" b="4.8904353032200808e-06" c="0.00026968293667508232" d="-8.3302664063519007e-06" /> - <width sOffset="841.8497934417212" a="2.4958553454020826" b="0.0015470121405111725" c="-0.0011967497438523014" d="0.0001588333610980198" /> - <width sOffset="844.57871262333538" a="2.4943926742833842" b="-0.0014361584501369085" c="9.7554318542596632e-05" d="0.00016438958087624576" /> - <width sOffset="846.09790530370697" a="2.493012408276341" b="-1.5438126116677428e-06" c="-0.0010023152543569085" d="0.00023564955120235505" /> - <width sOffset="847.96982393621192" a="2.4910430344098735" b="-0.0012768448227257938" c="0.00043070401649811761" d="-2.9940498597563981e-05" /> - <width sOffset="854.63322110694651" a="2.4928003265689593" b="0.00047490720089232372" c="-0.00017736653057677575" d="-2.3203524776398024e-05" /> - <width sOffset="855.71609496868143" a="2.4930771446475948" b="9.1495817493014719e-06" c="0.00065886481763939163" d="-0.00013045542130166906" /> - <width sOffset="859.14533849002737" a="2.4955957162684026" b="-7.4388812623682856e-05" c="-0.00024810868829474317" d="3.23794057271228e-05" /> - <width sOffset="864.39264969270982" a="2.4930520881701774" b="-3.5654406966567631e-06" c="-0.00035878665724658966" d="5.4230075827420583e-05" /> - <width sOffset="864.68772959055764" a="2.493021189102409" b="-0.00020114111378315321" c="-0.0003113506900583836" d="5.4418813101043662e-05" /> - <width sOffset="870.25991513979966" a="2.4916483056723848" b="0.0013980415455445263" c="-0.00041861330689029689" d="2.9249765707915422e-05" /> - <width sOffset="874.74223807416877" a="2.4921384251154048" b="-0.00059168817089039639" c="-2.5807873533715989e-05" d="2.8926453503848387e-05" /> - <width sOffset="879.20564471875628" a="2.4915554755037022" b="0.00090674808316202596" c="5.8211834122064404e-05" d="-7.6022641690467416e-05" /> - <width sOffset="881.45442537405131" a="2.4930243928199225" b="1.5216586737466309e-05" c="0.00058513107124173464" d="-6.020971539463602e-05" /> - <width sOffset="883.70737576682666" a="2.4953401470544829" b="0.0017349243442214498" c="-0.0012612482544337453" d="0.00018033829488125388" /> - <width sOffset="884.7967465577799" a="2.4959665025450253" b="-0.0003709717711626241" c="-0.00067162563378786303" d="0.00018272401807316435" /> - <width sOffset="887.65450515088139" a="2.4936858737923817" b="0.00026714323459794704" c="-0.00072225070827905684" d="0.0002128598609750382" /> - <width sOffset="889.65328707776644" a="2.4930341194093852" b="-6.8892157509214957e-05" c="-0.00080928709649436643" d="0.0002222873492974924" /> - <width sOffset="892.11973554624444" a="2.4912762783324052" b="-4.254722579600731e-06" c="0.00011986950239342963" d="-2.1879698140816484e-05" /> - <width sOffset="894.85125504139103" a="2.4917131094409548" b="0.00016085071333228097" c="-7.0254291173282326e-05" d="-2.1264319731675734e-05" /> - <width sOffset="897.44924788352068" a="2.4912839356269743" b="-0.00063476441781307961" c="0.00027117676803994841" d="-2.0641245312342682e-05" /> - <width sOffset="904.94471019549792" a="2.493069094702518" b="-4.8570490940392889e-05" c="-0.00017662664178676079" d="-4.274228179726367e-05" /> - <width sOffset="905.34961175880062" a="2.4930176340260086" b="-0.0002126254832558053" c="9.1068770984025933e-05" d="-8.6963088846221132e-06" /> - <width sOffset="910.80420968303611" a="2.4931560712372676" b="4.6471711100878887e-06" c="-0.00022409608353015433" d="2.1512189002779742e-05" /> - <width sOffset="914.96027200861329" a="2.490848902984542" b="-0.00074333670594411982" c="4.5109959025364125e-05" d="2.1625229815689811e-05" /> - <width sOffset="918.14621054858662" a="2.4896378683387557" b="0.00020259991526116235" c="0.00047756430537357569" d="-7.8616745603573939e-05" /> - <width sOffset="922.39333000552847" a="2.4930898499464025" b="4.873064959399695e-06" c="0.0038635814788609661" d="-0.0015137261650740976" /> - <width sOffset="923.85732453481774" a="2.4966280263996179" b="0.0015843803994489321" c="-0.010752989204658194" d="0.0058079830500723448" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.14997689528433081" weight="standard" type="solid"> - <type name="solid"> - <line length="925.01478049222453" space="0" width="0.149977" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.850432692658357" b="1.5606225613717229e-09" c="0.018172720151370565" d="-0.068855340629599762" /> - <width sOffset="0.15400343137418268" a="3.8506122016439122" b="0.00069818599247911662" c="-0.002392686831405243" d="0.00034067187024956617" /> - <width sOffset="2.5588066817271695" a="3.8431918857861636" b="-0.004899299464102393" c="-9.3176400085685329e-05" d="0.00013624641963798538" /> - <width sOffset="7.5863676296578406" a="3.8335191867962326" b="0.0044952448431219037" c="0.002726462752214893" d="-0.0018951638799392381" /> - <width sOffset="8.4846190841191742" a="3.8383833713435349" b="0.0048059719112848115" c="-0.0029946827772044694" d="0.00048629223651924992" /> - <width sOffset="10.054508483611135" a="3.8404291633296337" b="-0.0010011910098911714" c="-0.0007237915408508385" d="0.00048450687675064398" /> - <width sOffset="12.041925982063587" a="3.8393838850638033" b="0.001863013982198708" c="0.00060316985185431503" d="-8.2714086676296546e-05" /> - <width sOffset="17.883213477694618" a="3.8543612087901149" b="0.00044281838333801561" c="-0.00061103471251953403" d="-6.2415826137984172e-05" /> - <width sOffset="17.893916242398756" a="3.8543658781010413" b="0.00042971741295420819" c="-0.00028501028443867664" d="1.1887684114247903e-05" /> - <width sOffset="20.109016967222271" a="3.8540484982096759" b="-0.00065794868973755721" c="-0.00023176140372239994" d="1.4408161984095653e-05" /> - <width sOffset="23.081323807419121" a="3.8504236979905233" b="-0.0016538093135660065" c="-0.00030862156888398546" d="1.6663747109409145e-05" /> - <width sOffset="30.163525450833404" a="3.8291507737207517" b="-0.0035178099861343662" c="4.288130048071883e-05" d="1.6000213310562169e-05" /> - <width sOffset="34.753208707216096" a="3.8154553845695593" b="-0.0021130440972852195" c="0.00023266586930101578" d="8.9660631164647391e-06" /> - <width sOffset="35.99158453677277" a="3.813212480147854" b="-0.0014955381369440254" c="8.3929585030419836e-05" d="2.3143512890947038e-06" /> - <width sOffset="40.218033934444541" a="3.8085656130385424" b="-0.00066206694879109777" c="0.00013436516171118758" d="1.2004180776701985e-06" /> - <width sOffset="44.26840607208171" a="3.8081680910253652" b="0.00048547129410378897" c="7.0503002051371442e-05" d="-6.1246510888589698e-06" /> - <width sOffset="50.272542418055679" a="3.812298873086216" b="0.00066971592404298425" c="-3.2671088565123272e-05" d="-4.6271327103361861e-06" /> - <width sOffset="56.197019533832908" a="3.8141576605470462" b="-0.000204631458504159" c="-1.395278363859045e-05" d="-1.778923511432158e-06" /> - <width sOffset="60.327050901666809" a="3.8129492122373518" b="-0.00041091247077684116" c="-3.4887675384803456e-05" d="-2.4836508772573439e-06" /> - <width sOffset="66.650849736466682" a="3.8083274171734631" b="-0.001150124565014229" c="-0.00048720956977987379" d="3.5186508855028106e-05" /> - <width sOffset="70.353612086054724" a="3.7991752143823145" b="-0.0033108985604090881" c="-0.00010793161434701093" d="3.7048088466704829e-05" /> - <width sOffset="70.381559385277953" a="3.7990826002180897" b="-0.003316844545210469" c="-0.00010565013399938096" d="3.7528839212512075e-05" /> - <width sOffset="73.737226749978745" a="3.7881807831564682" b="-0.0027581170869962379" c="-5.3882119989644973e-05" d="5.6316303811374078e-06" /> - <width sOffset="75.048322081904317" a="3.7844846991202186" b="-0.0028703644515796832" c="0.00036876835968695487" d="-9.4226156912564456e-06" /> - <width sOffset="80.436067868889083" a="3.7782507964190755" b="0.00028274235781087717" c="0.00021523280374493756" d="-9.3783576019490044e-06" /> - <width sOffset="90.490576352500213" a="3.793319636919751" b="0.0017665995823188869" c="-6.7795564266479499e-05" d="-9.1701154062397966e-06" /> - <width sOffset="92.006983433655577" a="3.7958106499258868" b="0.0014977284568542582" c="8.8376061008170774e-05" d="3.7624569287014826e-06" /> - <width sOffset="94.197604484369208" a="3.7995552587151957" b="0.0019390914434130545" c="5.6676712640701934e-05" d="-5.9914782431627177e-06" /> - <width sOffset="100.54508483611136" a="3.8126148572085574" b="0.0019344009982122463" c="-5.5494327779773228e-05" d="-6.0142007766014241e-06" /> - <width sOffset="104.41889843980553" a="3.8189259760233183" b="0.0012336965524372874" c="-0.000166490273137317" d="3.5068746486130547e-06" /> - <width sOffset="110.59959331972249" a="3.8210189883308203" b="-0.00042245636331634238" c="-0.00010189454075943144" d="3.5552051311282979e-06" /> - <width sOffset="120.65410180333362" a="3.8100842173345395" b="-0.0013932348531313667" c="3.5802511468515348e-06" d="3.8611862783544375e-06" /> - <width sOffset="120.91360778871295" a="3.8097229731353464" b="-0.0013905965842170576" c="-0.00028666432401921614" d="3.8057765730125912e-05" /> - <width sOffset="127.47134622535657" a="3.7990087261817722" b="-0.00024043502746074418" c="0.00015578753451918819" d="-6.2435873716215687e-06" /> - <width sOffset="127.75516055050176" a="3.798952893314409" b="-0.00015351433307885616" c="0.00011287162255473713" d="-4.8956009854219476e-06" /> - <width sOffset="130.70861028694475" a="3.7993579372751931" b="0.00038509599014610704" c="7.4545701373753616e-05" d="-4.2639868019300761e-06" /> - <width sOffset="140.18114402546379" a="3.8060704573011908" b="0.00064956085523283971" c="5.5075630465632553e-06" d="1.2504121830759646e-06" /> - <width sOffset="140.76311877055591" a="3.8064505971670997" b="0.00065724190400876913" c="9.4362605627971068e-06" d="6.2142237604938208e-07" /> - <width sOffset="144.10659828841156" a="3.8087767850555023" b="0.0007411821642828297" c="0.00010184211251845182" d="-4.9550052386844566e-06" /> - <width sOffset="150.81762725416704" a="3.8168399820176839" b="0.0014386236616878781" c="5.699388714185105e-06" d="-5.9582219532493007e-06" /> - <width sOffset="153.88414426271163" a="3.8211333285682878" b="0.0013054933113198692" c="-5.7408911933356415e-05" d="-5.9283746663690752e-06" /> - <width sOffset="160.58923826630658" a="3.8255186719194629" b="-0.00026395967512604873" c="-5.8498640097022019e-05" d="3.6662618462260566e-07" /> - <width sOffset="160.87213573777817" a="3.8254393249919634" b="-0.00029696988549254974" c="-4.5395341184155196e-05" d="6.1906999308116495e-07" /> - <width sOffset="170.9266442213893" a="3.8184935297830407" b="-0.0010220743815836728" c="-2.5138401894171353e-05" d="8.6119018410769079e-07" /> - <width sOffset="180.98115270500043" a="3.8065511039764575" b="-0.0012664016700684919" c="-2.0565565767622981e-05" d="7.0778923105628033e-06" /> - <width sOffset="183.4809883528506" a="3.8033673603080205" b="-0.0012365297065263878" c="-2.9390068084203014e-07" d="1.1403585538794252e-06" /> - <width sOffset="191.03566118861158" a="3.7945006957470646" b="-0.0010457190229207589" c="2.0644594832312815e-05" d="3.3745250230126481e-07" /> - <width sOffset="197.46081272650181" a="3.7887235627277835" b="-0.00073863700049160664" c="-3.2774034240016958e-05" d="1.6773521464618933e-06" /> - <width sOffset="201.09016967222271" a="3.7856912669454141" b="-0.00091025092405934318" c="-1.2686714370461133e-05" d="1.1543193984074097e-06" /> - <width sOffset="203.8219238478917" a="3.783133542385924" b="-0.00095372263466576303" c="-0.0011896307056524901" d="0.00013751310792596124" /> - <width sOffset="209.58891134156494" a="3.7644434441769157" b="-0.00095460089166701811" c="8.8977530588731411e-05" d="-3.9591058003962105e-06" /> - <width sOffset="211.14467815583384" a="3.7631587615418223" b="-0.00070649229537845712" c="7.9626990861452173e-05" d="1.3668467371645789e-06" /> - <width sOffset="214.55266132568252" a="3.7617299652275573" b="-0.00011613229965672729" c="0.00025429288817852122" d="-3.6668891082799313e-05" /> - <width sOffset="218.10437502057985" a="3.7628824155814167" b="0.00030252086767551496" c="-7.1717869704134025e-06" d="-1.1620835069848536e-06" /> - <width sOffset="221.19918663944497" a="3.7637155242187088" b="0.00022473939261326273" c="-1.7874428246137281e-05" d="-1.2216747344941473e-06" /> - <width sOffset="224.83770369374642" a="3.7642377586262405" b="4.6146022883496152e-05" c="-5.2739492535610934e-05" d="3.239117733298767e-06" /> - <width sOffset="231.2536951230561" a="3.7632183088995985" b="-0.0002305919213663486" c="1.1061591956305447e-05" d="3.0155849230471997e-06" /> - <width sOffset="237.31427572562845" a="3.7628983836019811" b="0.00023578048554935205" c="0.00030287952436641442" d="-2.1594699574421379e-05" /> - <width sOffset="241.30820360666723" a="3.7672956681558363" b="0.0016217374853061666" c="4.9577926867770187e-05" d="-2.1042382871550392e-05" /> - <width sOffset="246.96247995066966" a="3.774246595069533" b="0.00016416405392869984" c="-0.0001533115977313995" d="8.8747923475730496e-06" /> - <width sOffset="251.36271209027839" a="3.772756639259681" b="-0.00066954685547575277" c="-3.7876879246967322e-05" d="9.2848990806316095e-06" /> - <width sOffset="258.1135202890934" a="3.769367045788985" b="8.8487625670839636e-05" c="0.00089315251104967537" d="-7.313539252505716e-05" /> - <width sOffset="261.41722057388949" a="3.7767705201886246" b="0.0035952094467245322" c="0.00015388753871034685" d="-7.2965605663133501e-05" /> - <width sOffset="263.99171566511643" a="3.7858012679130901" b="0.0029367213028436345" c="0.00031661252794215193" d="-3.2212469642539982e-05" /> - <width sOffset="268.68344744483954" a="3.8032221855071491" b="0.0037804272337837097" c="-0.0011211814129571264" d="0.000119392224047182" /> - <width sOffset="271.47172905750068" a="3.8076345694303377" b="0.00031273787530977258" c="-0.00012172807332518906" d="0.00011910649465098633" /> - <width sOffset="273.03640545184675" a="3.8082821433139573" b="0.00080660171629983314" c="-0.00047534667637011007" d="-3.5002943578086347e-05" /> - <width sOffset="273.16306312736822" a="3.8083766089005602" b="0.00068450453701750344" c="-9.8769442695292116e-05" d="1.9988947997677258e-05" /> - <width sOffset="278.66273104009059" a="3.8124788005414603" b="0.0014118842484362186" c="0.00032184116503443031" d="-2.9252644753347978e-05" /> - <width sOffset="281.52623754111181" a="3.8184738849952007" b="0.0025354867298799325" c="7.6819415128818606e-05" d="-2.8510192112807284e-05" /> - <width sOffset="284.92605980724437" a="3.8268616399644841" b="0.002069201352184559" c="6.6239408126222814e-05" d="-3.3656450493204797e-05" /> - <width sOffset="288.42944344489968" a="3.8334766390462365" b="0.0012940582518584092" c="-0.00046061340432641568" d="5.1572183613008451e-05" /> - <width sOffset="291.58074602472294" a="3.8345943251971741" b="-7.2561285500367338e-05" c="3.2073493339524637e-05" d="5.0992129279398272e-05" /> - <width sOffset="294.2171553350725" a="3.8355603746976046" b="0.0011598423773509015" c="0.00018268791516753361" d="-8.5997734581069543e-06" /> - <width sOffset="301.63525450833407" a="3.8507067195871327" b="0.0024505464809813" c="-7.9114796323380502e-06" d="-8.8541073508854258e-06" /> - <width sOffset="305.0495035434476" a="3.8586288751515596" b="0.0020868834068451599" c="-0.0029145174601511599" d="0.00052243111411138046" /> - <width sOffset="308.55938140448609" a="3.8526383515701896" b="0.00093554969750943512" c="-6.081855073079359e-05" d="-8.0027348353133148e-06" /> - <width sOffset="311.6897629919452" a="3.8547255125689688" b="0.00031951582322515258" c="-0.00014003873136841414" d="-5.2671992330365556e-06" /> - <width sOffset="314.49163515071467" a="3.8544055250908666" b="-0.00058927566862426728" c="-0.00021035461544126238" d="8.9678380397162226e-06" /> - <width sOffset="321.74427147555633" a="3.8424880922005098" b="-0.0022253821380097674" c="-1.5234996699991299e-05" d="8.7660495470086642e-06" /> - <width sOffset="330.96336961200501" a="3.8275458425037083" b="-0.00027116178483649887" c="1.0636410907903729e-05" d="-3.5673798502158092e-07" /> - <width sOffset="331.79877995916746" a="3.8273265264121097" b="-0.00025413716288914828" c="6.0778136664164877e-06" d="-2.8871857025828825e-07" /> - <width sOffset="341.85328844277859" a="3.8250922617894121" b="-0.0002194807060113525" c="9.3300079352632224e-06" d="-1.9390382859511014e-06" /> - <width sOffset="346.67807577870394" a="3.8240327218649313" b="-0.00026486422966892197" c="0.0007876764050308389" d="-5.1378742775693791e-05" /> - <width sOffset="351.90779692638972" a="3.8368416475930074" b="0.0037581684081953773" c="-1.3403340680050153e-05" d="-5.03438912432768e-05" /> - <width sOffset="355.05925102015664" a="3.8469765028468004" b="0.0021736927110002102" c="5.5750811015785386e-05" d="-1.9454755812213234e-05" /> - <width sOffset="360.95039281398124" a="3.8577392690376202" b="0.00080500047947101969" c="-0.00025035519186753777" d="-2.6510687964997113e-05" /> - <width sOffset="361.58645251722612" a="3.8581431886704998" b="0.00045434233951859005" c="-0.00010567247009682708" d="-2.087801705826375e-06" /> - <width sOffset="361.96230541000085" a="3.8582989158378291" b="0.00037402292996390526" c="-9.419316746001299e-05" d="4.1176267348308986e-06" /> - <width sOffset="372.01681389361198" a="3.8567225775195375" b="-0.00027131761430620321" c="1.8333211479864364e-05" d="5.6811302398310907e-06" /> - <width sOffset="376.34093444644401" a="3.8563514956806726" b="0.00020591005473212303" c="0.00091343860669163587" d="-0.00011477360615430991" /> - <width sOffset="379.45423294442134" a="3.8623827620914897" b="0.0025561506923763768" c="-0.00020351378575494451" d="-0.00011264375158263577" /> - <width sOffset="379.91795526441348" a="3.863513110322951" b="0.002294734729627176" c="0.0010376473034344395" d="-0.00021696025825413806" /> - <width sOffset="382.07132237722317" a="3.8710996978109282" b="0.0037454782921066561" c="-0.00036436505379226937" d="-0.00021890628879679377" /> - <width sOffset="384.47552794528497" a="3.8749563962494573" b="-0.0018025079800993988" c="-6.2249151486887833e-05" d="2.1555964316768874e-06" /> - <width sOffset="391.42349698835284" a="3.860150598652762" b="-0.0023553387778884323" c="9.6326123972333971e-05" d="-1.6390094463724053e-06" /> - <width sOffset="392.1258308608343" a="3.8585433116892505" b="-0.0022224580152254724" c="9.2380017062068182e-05" d="-1.7059382612610492e-06" /> - <width sOffset="402.18033934444543" a="3.8438025877679101" b="-0.00088216265545741548" c="4.182542843755857e-05" d="-2.2948506891605767e-06" /> - <width sOffset="404.01186766553036" a="3.8423130858841246" b="-0.00075204794431215955" c="2.4451569699256516e-05" d="1.184182872334158e-05" /> - <width sOffset="409.35604769555783" a="3.8407997816700252" b="0.00052391636517816519" c="0.00051320125617960739" d="-3.5947607477762138e-05" /> - <width sOffset="412.23484782805656" a="3.8457035435322791" b="0.002584977719390499" c="0.00020776777376667961" d="-3.401821408067191e-05" /> - <width sOffset="415.5052855128281" a="3.8551898356911467" b="0.002852408602658848" c="-0.0002492977121039942" d="-3.6745878033950649e-05" /> - <width sOffset="418.80948495600074" a="3.8605674120925713" b="1.4047180879714184e-06" c="5.0910003190195233e-06" d="-6.7269599289728508e-07" /> - <width sOffset="422.28935631166769" a="3.8606056027377047" b="1.2398724685201962e-05" c="-1.9953013894284767e-06" d="1.3654979089367351e-07" /> - <width sOffset="432.34386479527882" a="3.8606673494568673" b="1.3687916921574181e-05" c="2.4566929754097223e-06" d="-2.1117975605246936e-06" /> - <width sOffset="433.45071552709777" a="3.860682646031032" b="1.1364694710288858e-05" c="-0.00040816003491136245" d="3.2242442890002505e-05" /> - <width sOffset="441.8973177574162" a="3.8510884816535604" b="1.7253667931572978e-05" c="0.00061994458623064691" d="-0.00022637152675540932" /> - <width sOffset="442.39837327888995" a="3.8512242918767932" b="0.00046801076208821034" c="0.00027971998327570256" d="-0.00022648779066852828" /> - <width sOffset="443.72290963689022" a="3.8518086251952353" b="1.6961132925762142e-05" c="-9.9831913393929424e-06" d="3.2256128767285995e-09" /> - <width sOffset="450.55944213035536" a="3.8514590150430275" b="-0.00011908741324069787" c="-0.00021147910512456347" d="5.5371225038530036e-06" /> - <width sOffset="452.45288176250108" a="3.8505129406648555" b="-0.00086037961101703253" c="-0.00017969872626197924" d="5.9795638513014808e-06" /> - <width sOffset="462.50739024611221" a="3.829773816819781" b="-0.0026604656745379063" c="1.3919061364864252e-06" d="5.948852388660731e-06" /> - <width sOffset="471.25904182659946" a="3.8105844796954687" b="-0.0012692098248118712" c="4.3668346472390995e-05" d="3.7816733815154954e-06" /> - <width sOffset="472.56189872972334" a="3.809013368374397" b="-0.0011361651646505085" c="5.1128351389019535e-05" d="-2.9988705660460493e-06" /> - <width sOffset="480.13945738107952" a="3.8020349641243731" b="-0.00087788900364517712" c="-0.00019388197867847897" d="4.8361263033228809e-06" /> - <width sOffset="482.61640721333447" a="3.798744450343337" b="-0.0017493478989717166" c="-0.00015292984432008425" d="6.6493942749596574e-06" /> - <width sOffset="486.01073935416156" a="3.791304645724229" b="-0.0025577044681605217" c="-8.5950761427214061e-05" d="1.0464810170065216e-05" /> - <width sOffset="492.67091569694566" a="3.7735489207562409" b="-0.0023100063791140629" c="0.00012148982524017748" d="1.0898354733640511e-05" /> - <width sOffset="495.78211091891296" a="3.7678662081866889" b="-0.0012375762100557876" c="2.2107103221423217e-05" d="1.2550423631814898e-06" /> - <width sOffset="502.72542418055679" a="3.7607592092452382" b="-0.00074906785675128977" c="4.7571458847952088e-05" d="1.1822086398105296e-06" /> - <width sOffset="512.77993266416786" a="3.7592384946421564" b="0.00056608696998269458" c="8.5869194742760167e-05" d="9.3814339587845802e-07" /> - <width sOffset="513.13565656714184" a="3.7594507733818627" b="0.00062753455674947325" c="0.0022831058279120901" d="-0.00031921059310298442" /> - <width sOffset="517.01884241510936" a="3.7776234619284459" b="0.0039187267139958884" c="-0.00036909548514488477" d="2.643360375696757e-05" /> - <width sOffset="519.81919393201974" a="3.7862833280563102" b="0.0024734069839621913" c="0.0014305456920498667" d="-0.00022597185918527929" /> - <width sOffset="522.83444114777899" a="3.8005526356840988" b="0.0049368890652558206" c="-0.00060184675637767312" d="-0.00022772147144716271" /> - <width sOffset="523.80189708140438" a="3.8045593429785969" b="0.0031329465652869073" c="-0.0015804654279450378" d="-0.00023518183967149393" /> - <width sOffset="524.18237176128457" a="3.805509606773601" b="0.0018281569475857434" c="-0.00031553306612740032" d="2.2051861086665218e-05" /> - <width sOffset="531.7221078827306" a="3.8108079054705852" b="0.00083087234491541315" c="0.00018658194290572586" d="-3.0758022442477489e-05" /> - <width sOffset="532.88894963139012" a="3.8119825724018792" b="0.0011406625886044297" c="8.0806732134603511e-05" d="-3.1754414126606876e-05" /> - <width sOffset="535.90669242014303" a="3.8152880157038807" b="0.0007608298705461203" c="-5.6618701192436626e-05" d="4.3912616909760771e-06" /> - <width sOffset="540.94208102127891" a="3.8182441602014574" b="0.00052465868866281027" c="7.8614173192949745e-05" d="2.9920786956445599e-06" /> - <width sOffset="542.15422933436321" a="3.8190009613617217" b="0.00072843157890342593" c="-1.6366291165973224e-05" d="-1.1573960117560874e-06" /> - <width sOffset="542.94345811500136" a="3.8195650972874535" b="0.00070043531920188835" c="-1.7031412690583743e-05" d="4.5112391898964289e-08" /> - <width sOffset="552.99796659861249" a="3.8249317252673638" b="0.00037163201259493019" c="-1.6032665709847638e-05" d="-6.5158949375977075e-08" /> - <width sOffset="560.15355140075894" a="3.8267461856483687" b="0.00013217693184366323" c="1.1536715032646298e-05" d="-7.1693582799615216e-07" /> - <width sOffset="563.05247508222362" a="3.827208842367007" b="0.00018099017797385577" c="6.3794849182450248e-06" d="-3.2573288171404344e-07" /> - <width sOffset="563.99001814484848" a="3.8273838675044365" b="0.00019209331672787993" c="-0.00067750616209868997" d="8.5023767904510259e-05" /> - <width sOffset="569.45115608711546" a="3.8220750402160206" b="0.00039943770897497437" c="0.00012314640263653482" d="-8.8065874641422786e-06" /> - <width sOffset="573.10698356583475" a="3.824750882974735" b="0.00094673962022565072" c="2.6786699164455563e-05" d="-8.322633535739541e-06" /> - <width sOffset="578.17401091251952" a="3.8291530498935851" b="0.00057715248571183549" c="-0.0023824480043259802" d="0.00030683432675909214" /> - <width sOffset="583.16149204944588" a="3.8108351892313497" b="-0.00029019421460724779" c="0.0022065392134882236" d="0.00030704055919733754" /> - <width sOffset="583.35183430327083" a="3.8108620137017395" b="0.00058317347777377029" c="0.0030908507590283684" d="-0.000936823494625652" /> - <width sOffset="585.55541069525361" a="3.8171314520266018" b="0.00055808600166548205" c="-0.0010594261874633719" d="0.00020482059987630906" /> - <width sOffset="588.97809964833425" a="3.8148431516808872" b="0.00050421027203309304" c="0.00044304354826841326" d="-2.9118421110037972e-05" /> - <width sOffset="592.6857526265967" a="3.8213188645062699" b="0.002588667956597649" c="0.00014975302431376894" d="-2.9768234539169611e-05" /> - <width sOffset="593.21600053305701" a="3.8227291672294639" b="0.002722371247541407" c="0.00011339187570412801" d="-2.8433495454043261e-05" /> - <width sOffset="599.76263441456422" a="3.8374335078413324" b="0.00055119777884922536" c="-0.0001212110780509172" d="8.7180495834418719e-06" /> - <width sOffset="603.27050901666814" a="3.8382518308720854" b="2.2642873068682689e-05" c="-3.2101332543621291e-05" d="9.3234837296787363e-06" /> - <width sOffset="608.03631127856511" a="3.8386398498862535" b="0.00035195492182483562" c="7.7217109426545817e-05" d="-8.3640133134762318e-06" /> - <width sOffset="613.32501750027927" a="3.8414237646451941" b="0.00046687740323737717" c="-5.7487749588568327e-05" d="-9.1833370924631908e-06" /> - <width sOffset="613.48161264956013" a="3.8414954304005962" b="0.00044819721528341436" c="-0.00025360108213962204" d="7.9634445634743832e-07" /> - <width sOffset="616.97810533143718" a="3.839996199253159" b="-0.0012960244058915851" c="-0.00093575317010246542" d="5.0341701591413531e-05" /> - <width sOffset="623.3795259838904" a="3.8065598991670759" b="-0.0070875888533416843" c="3.1858289248316947e-05" d="5.0470079559474985e-05" /> - <width sOffset="627.72277009826962" a="3.7805127493942576" b="-0.0039546843659545323" c="0.00036355310605880168" d="8.4240830690990231e-07" /> - <width sOffset="630.78157119339448" a="3.7718417642558908" b="-0.001706965704158135" c="0.00014554322409536435" d="-8.2460799819036637e-06" /> - <width sOffset="633.43403446750153" a="3.7681841939232745" b="-0.0011089169973184051" c="7.9265289680014603e-05" d="-8.0606773877112383e-06" /> - <width sOffset="642.57229832878761" a="3.7585186537399329" b="-0.0016796126441663325" c="-0.0002116078465668682" d="1.4078862891491512e-05" /> - <width sOffset="643.48854295111266" a="3.7568129013471694" b="-0.0020319239531610546" c="-0.00017382127038742683" d="1.4386921048016695e-05" /> - <width sOffset="648.45097543428403" a="3.7442072720455393" b="-0.0026942110248151939" c="0.00046885903202475683" d="-4.9377456871341078e-06" /> - <width sOffset="653.54305143472379" a="3.7419933535847667" b="0.0016966246750791715" c="0.00039178215536344669" d="-4.6722691158682859e-06" /> - <width sOffset="655.9429289949702" a="3.7482569004734385" b="0.0034963545086969475" c="0.00018985316773218074" d="-5.290169354863256e-05" /> - <width sOffset="659.64195100856693" a="3.7611102036293467" b="0.0027293724608842647" c="-0.0017313994900102975" d="0.0001347974422502807" /> - <width sOffset="663.59755991833492" a="3.7531585890434833" b="-0.0046406432563966451" c="-0.00014579781823705756" d="0.00013951145871115431" /> - <width sOffset="663.76692149430403" a="3.7523691381457827" b="-0.0046780233876846976" c="-1.6345102883238787e-05" d="0.00021241021270009913" /> - <width sOffset="664.93419349648593" a="3.7472241666819484" b="-0.0038479397581347801" c="0.00012619018326167836" d="3.7788884217470732e-05" /> - <width sOffset="668.6481381718753" a="3.7366095651026709" b="-0.0013469031476382974" c="0.00037581517682407718" d="-1.9636582182111448e-05" /> - <width sOffset="673.65206840194605" a="3.736819545806827" b="0.00093914283862678478" c="8.293845892556061e-05" d="-1.9913760753061909e-05" /> - <width sOffset="679.02404560128343" a="3.7411709132658668" b="0.00010620762994188087" c="-0.0012262271900066806" d="0.00023563476261855338" /> - <width sOffset="683.69658702525282" a="3.7389334201945417" b="0.0040806021544291292" c="0.00021327725964532518" d="-2.6238549097251377e-05" /> - <width sOffset="683.70657688555718" a="3.7389742060983568" b="0.004084855519114858" c="0.00021264295245985247" d="-2.6379432526353922e-05" /> - <width sOffset="688.43069968782743" a="3.7602360101983994" b="0.0043278023626322285" c="-0.00019566471697074722" d="2.0221055435298826e-05" /> - <width sOffset="693.76108536916831" a="3.7808079676388786" b="0.0039654887938572452" c="0.00013133082233482703" d="2.0074726966960043e-05" /> - <width sOffset="693.84281405995671" a="3.7811329500399857" b="0.0039873580584032023" c="0.0028003293176238012" d="-0.00073048103327062253" /> - <width sOffset="696.46614439081065" a="3.7976769229884884" b="0.0035985266809469194" c="-0.00017582151632771552" d="-2.1351130282828568e-06" /> - <width sOffset="701.23203378952428" a="3.810602417563218" b="0.0017771459178330948" c="-0.0001026027851235793" d="9.1033643371322621e-06" /> - <width sOffset="703.81559385277944" a="3.8146659143011901" b="0.001429273935434518" c="-3.5757413647646399e-05" d="8.792565098488531e-06" /> - <width sOffset="704.04907403650566" a="3.8149977841076392" b="0.0014140145676020152" c="-3.6948091437681062e-05" d="1.09276257765057e-06" /> - <width sOffset="713.87010233639057" a="3.8263562561284843" b="0.0010044774294516187" c="-2.876989105520234e-06" d="-4.368012361430459e-07" /> - <width sOffset="714.92294853628528" a="3.8274101174982" b="0.00099696681235173184" c="-8.2376278741298203e-05" d="1.1468169934341208e-06" /> - <width sOffset="723.9246108200017" a="3.8305460253691885" b="-0.00020730058947293802" c="-5.0887354927742174e-05" d="1.1933286247663348e-06" /> - <width sOffset="733.97911930361283" a="3.8245303064404377" b="-0.00086868325691115498" c="-1.519762113397402e-05" d="2.1367777725736927e-06" /> - <width sOffset="735.53340759317621" a="3.8231514309494621" b="-0.00090044006531815862" c="-3.5245753584822642e-05" d="3.2267020978596188e-06" /> - <width sOffset="744.03362778722396" a="3.8149326069199514" b="-0.00080020948236088417" c="5.0111516675646286e-05" d="2.851238530434132e-06" /> - <width sOffset="749.41028845679534" a="3.8125219709487315" b="-1.4069325035929612e-05" c="7.7187831687618709e-05" d="-1.7734193192172668e-06" /> - <width sOffset="754.08813627083521" a="3.813963670461713" b="0.00059165726561666429" c="5.6360665557767348e-05" d="-1.4004076445584035e-06" /> - <width sOffset="758.33812055869487" a="3.8173887095630974" b="0.00099483712360914629" c="1.9809043996607481e-05" d="-4.5044676707332651e-06" /> - <width sOffset="758.87052609488387" a="3.817923301556494" b="0.0010120995624744427" c="4.9864277531440079e-05" d="-1.6946572897075029e-06" /> - <width sOffset="764.14264475444634" a="3.8243968651623295" b="0.0013965701448595456" c="2.6367019806450449e-05" d="-1.5821029768399414e-06" /> - <width sOffset="773.45223250428796" a="3.8384070300151487" b="0.0014761471988734686" c="-6.2929858233107499e-05" d="1.283938725078825e-05" /> - <width sOffset="774.19715323805747" a="3.8394770297675249" b="0.0014037656802553761" c="-2.9466570694681337e-05" d="1.076426100719157e-05" /> - <width sOffset="776.37783365251641" a="3.842509694428931" b="0.0014288153700443649" c="0.00023951046074433349" d="4.4423680214430143e-06" /> - <width sOffset="776.92279776503381" a="3.843360197737284" b="0.0016938225431701735" c="0.00012125816411380505" d="-1.4267675342708166e-06" /> - <width sOffset="784.2516617216686" a="3.8617253944881611" b="0.0032412870498264193" c="7.9212781209720218e-05" d="1.2756143411329617e-06" /> - <width sOffset="785.92669074360083" a="3.8673828883872705" b="0.0035173915232166526" c="3.1072662018196695e-05" d="-1.4973240994459191e-05" /> - <width sOffset="794.20055234390725" a="3.8901315603980517" b="0.00095651347978317563" c="-0.0001733916874647621" d="3.6244405344166304e-07" /> - <width sOffset="794.30617020527973" a="3.8902306515259113" b="0.00091989909063304107" c="-0.00017221395218396264" d="1.2883079693365207e-07" /> - <width sOffset="800.89934139225943" a="3.8888465028305532" b="-0.0013341722564238611" c="-0.0016098874586665589" d="0.00018967655329759649" /> - <width sOffset="804.36067868889086" a="3.8728064985758737" b="-0.0056614369173251982" c="0.00036572931315426133" d="0.00018941085387040626" /> - <width sOffset="806.59478344159857" a="3.8640957971730847" b="-0.0011911056986074367" c="0.0041641288037769751" d="-0.0010506352572652886" /> - <width sOffset="808.9236812927486" a="3.8706361015063058" b="0.001109358705261078" c="-0.0032262170181332332" d="-0.0010587689029457658" /> - <width sOffset="809.18140126542494" a="3.8706895977690836" b="-0.00076453138952799237" c="-6.3022168975040592e-05" d="9.0915603314130384e-06" /> - <width sOffset="814.41518717250199" a="3.8662652941696436" b="-0.000677098363053313" c="7.9710796646383282e-05" d="9.3383260350534687e-06" /> - <width sOffset="816.30584375646163" a="3.8653331777756019" b="-0.00027554503268076552" c="3.6759784492801847e-05" d="-2.5854305460413694e-06" /> - <width sOffset="824.46969565611312" a="3.8641268983938328" b="-0.0001922871911163174" c="-2.8302278984124052e-05" d="-2.6278038442346294e-06" /> - <width sOffset="828.7501469619915" a="3.8625791683919219" b="-0.00057902218764292138" c="-0.0018726657832888395" d="0.00023031490426287106" /> - <width sOffset="830.21084255122742" a="3.8584556106058701" b="-0.0045755900110645963" c="-0.00089313031836444419" d="0.00023377174477497086" /> - <width sOffset="833.78393390788438" a="3.8413681351127744" b="-0.0020043835900396319" c="4.6102651440552015e-05" d="3.2909355202732077e-06" /> - <width sOffset="834.52420413972425" a="3.8399109488891714" b="-0.0019307164509366993" c="4.6393615225522749e-05" d="2.5256363371917996e-06" /> - <width sOffset="841.8497934417212" a="3.8292498760903149" b="-0.00084438610343429859" c="0.0014835541515714977" d="-0.00016463799116734276" /> - <width sOffset="844.57871262333538" a="3.8346478260680925" b="0.0035744353477701286" c="0.00012820767426001921" d="-0.00016458076147610073" /> - <width sOffset="847.96982393621192" a="3.8418253946350696" b="-0.0012338881803605232" c="-0.001655796286053558" d="0.00010100928832390073" /> - <width sOffset="854.63322110694651" a="3.7899693918204251" b="-0.0098456463851544704" c="0.00036030006711677181" d="0.0001010490661083323" /> - <width sOffset="859.14533849002737" a="3.7621627839085852" b="-0.00042237855916098011" c="0.0012930190912758682" d="-6.1785760920436475e-05" /> - <width sOffset="864.68772959055764" a="3.7890217533247341" b="0.0082166330665938894" c="0.00026626718540438216" d="-6.1974498392962317e-05" /> - <width sOffset="864.95856522969166" a="3.7912654104031285" b="0.0083472245035777753" c="0.0012201760945654077" d="-0.00023240613443791016" /> - <width sOffset="869.02793562311717" a="3.8297778487504655" b="0.0067321412887115153" c="-0.0013794652082981232" d="-3.2039262787417365e-05" /> - <width sOffset="870.25991513979966" a="3.8359180840185916" b="0.0031873104926226884" c="-0.00048092256601349432" d="-6.8702153959010634e-06" /> - <width sOffset="874.74223807416877" a="3.8399236188737857" b="-0.0015380830059535527" c="-0.00057502139846648116" d="-6.3235315864121304e-06" /> - <width sOffset="879.20564471875628" a="3.8210406649959676" b="-0.0070491238347935832" c="-0.00035638301050269625" d="9.8625563608087282e-05" /> - <width sOffset="882.79139894568857" a="3.7957290611954191" b="-0.0058006535923157054" c="0.00034933384794505603" d="6.5342379720144229e-05" /> - <width sOffset="883.70737576682666" a="3.7907591095112396" b="-0.0049962207538564955" c="0.0019683209835642279" d="-0.00017520563056107493" /> - <width sOffset="884.7967465577799" a="3.7874257319311297" b="-0.0013315226415979058" c="0.0013970547415765114" d="-0.00017841704618981925" /> - <width sOffset="887.65450515088139" a="3.790865984719229" b="0.0022820872150553359" c="0.0014846046737983637" d="-0.00020855288909176484" /> - <width sOffset="892.11973554624444" a="3.8120892369074681" b="0.0030657317976455073" c="-0.00059348114661758556" d="3.5614158347006895e-05" /> - <width sOffset="894.85125504139103" a="3.8167610934324765" b="0.00062069409514356379" c="-0.00028342399190569727" d="3.6003292806843802e-05" /> - <width sOffset="897.44924788352068" a="3.8170919925661098" b="-0.0001229530190771334" c="-0.00050997981147028217" d="3.5380218387525393e-05" /> - <width sOffset="902.13002309821911" a="3.8089713837751527" b="-0.0025716494351008638" c="-0.000110152739675783" d="4.4805285201644828e-05" /> - <width sOffset="904.90576352500216" a="3.8019426760657513" b="-0.0021475217243185673" c="0.00026152822450637103" d="4.4346281673115305e-05" /> - <width sOffset="905.34961175880062" a="3.8010449013091199" b="-0.0018891552238619802" c="9.6261797603184663e-07" d="1.0300308775339793e-05" /> - <width sOffset="910.80420968303611" a="3.7924405830888288" b="-0.00095926974507556939" c="0.00034237499591347403" d="-1.990818911206251e-05" /> - <width sOffset="914.96027200861329" a="3.7929384412511835" b="0.00085498016335461974" c="9.2608932704673659e-05" d="-2.0037790613405315e-05" /> - <width sOffset="918.14621054858662" a="3.7959543744823376" b="0.00083490988887397876" c="-0.00032467296243979054" d="8.0204184805781877e-05" /> - <width sOffset="923.85732453481774" a="3.8050731462117469" b="0.0049744383856718376" c="0.0090178029723448974" d="-0.0072415050303306751" /> - <width sOffset="924.33032280130408" a="3.8086772609202235" b="0.0086448803217906451" c="-0.0064597716534444925" d="0.00014088056066528017" /> - <roadMark sOffset="0" color="standard" width="0.15931520942172728" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15931500000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59188484066112" max="100" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.6706074126670978" b="-3.2732024430579709e-09" c="-0.099954433264855425" d="0.16663841540001986" /> - <width sOffset="0.15400343137418268" a="3.6688454353531861" b="-0.018930136354096398" c="-0.034212239147192784" d="0.097442402900169117" /> - <width sOffset="0.54648170772187932" a="3.6620368213281802" b="-0.00075540904723592922" c="0.0035438994307187425" d="-0.0012734137552340517" /> - <width sOffset="1.9026179974844735" a="3.6643539960263616" b="0.0018307849590949046" c="-8.6108258269083633e-06" d="-0.00019697945466636525" /> - <width sOffset="2.5588066817271695" a="3.6654959733409234" b="0.0015650359443132955" c="-0.00023814186204795836" d="7.4459959464822496e-06" /> - <width sOffset="10.054508483611135" a="3.6669827675602527" b="-0.00074997279240680143" c="-7.2478921218085328e-05" d="7.4215146858911971e-06" /> - <width sOffset="15.362263730446637" a="3.6620699502652578" b="-0.00089213088894223892" c="0.00017196057538107582" d="1.9996524872563648e-05" /> - <width sOffset="17.883213477694618" a="3.6612341413449672" b="0.00035612205157645226" c="8.7925480896541998e-05" d="-2.971660304315581e-07" /> - <width sOffset="20.109016967222271" a="3.6624591226976695" b="0.0007431150750800467" c="7.4600524373236805e-05" d="-3.0962976873156859e-06" /> - <width sOffset="30.163525450833404" a="3.6743251743165386" b="0.0013042149108407615" c="-1.861481810101747e-05" d="-3.6557452322301102e-06" /> - <width sOffset="34.753208707216096" a="3.6795655361201063" b="0.00090231574294244877" c="-3.8427791578526898e-05" d="3.3784049630264867e-06" /> - <width sOffset="36.323747665408696" a="3.6809009599746596" b="0.00080661050167937093" c="-4.9272179850913139e-05" d="2.2653367622826467e-06" /> - <width sOffset="40.218033934444541" a="3.683428684393169" b="0.00052591521465132434" c="-1.6740516430596399e-05" d="2.3012797311491669e-06" /> - <width sOffset="50.272542418055679" a="3.6893632690047022" b="0.00088721067367624655" c="6.0958345892161337e-05" d="1.8314347893460596e-06" /> - <width sOffset="56.197019533832908" a="3.6971399705844985" b="0.0018023502707780845" c="-7.4491041008709316e-06" d="-1.0167744095513979e-06" /> - <width sOffset="60.327050901666809" a="3.704385044882557" b="0.0016887903549641957" c="-1.5268716661613077e-05" d="-2.0856895458449375e-07" /> - <width sOffset="69.736282119914549" a="3.7187497239591805" b="0.0013460604827246268" c="-5.4130119441678999e-05" d="1.7520805707395438e-06" /> - <width sOffset="70.353612086054724" a="3.7195604708421146" b="0.0012812313273153971" c="-3.9301391410660036e-05" d="-1.0969353349234905e-07" /> - <width sOffset="75.048322081904317" a="3.7246979155280115" b="0.00090496102130223919" c="-0.00044134599616249749" d="1.4944552539076485e-05" /> - <width sOffset="80.436067868889083" a="3.719099554901736" b="-0.0025493363858142787" c="-0.00020202274452214622" d="1.4797103102164641e-05" /> - <width sOffset="90.490576352500213" a="3.688084511554298" b="-0.0021241582990707475" c="0.00024448528380218674" d="1.4427091896821191e-05" /> - <width sOffset="91.587407503440247" a="3.686067830772676" b="-0.0015357711044564682" c="0.00028802916076283607" d="1.1284287803802763e-05" /> - <width sOffset="92.006983433655577" a="3.6854749974778054" b="-0.0012881113061737827" c="0.00010434449832501754" d="-1.6482845340717845e-06" /> - <width sOffset="100.54508483611136" a="3.6810576742586893" b="0.00013322075794052445" c="6.2765286316402105e-05" d="-1.6105157330554731e-06" /> - <width sOffset="110.59959331972249" a="3.6871052878507533" b="0.00090693268391545492" c="1.3695059529535852e-05" d="-1.5658688073414285e-06" /> - <width sOffset="120.65410180333362" a="3.6960169122218671" b="0.00070743108069626424" c="-3.2519790073462821e-05" d="-1.7145322122071214e-06" /> - <width sOffset="125.69019815140295" a="3.6985358359811986" b="0.00024943222034709773" c="1.0328966190466338e-08" d="-1.3236614732233268e-06" /> - <width sOffset="127.75516055050176" a="3.6990392931514027" b="0.00023254232381922433" c="2.9410248836214947e-05" d="-2.6716478655977142e-06" /> - <width sOffset="130.70861028694475" a="3.6999138084101402" b="0.000336352433420216" c="1.2160649785404281e-05" d="-1.2851385910521907e-06" /> - <width sOffset="140.76311877055591" a="3.7032187564499193" b="0.00019113505650800687" c="-2.8307091342010187e-05" d="-7.052826414970353e-07" /> - <width sOffset="144.10659828841156" a="3.7035150108817785" b="-2.1806061471626916e-05" c="-0.00012155409853726302" d="4.8711449732256422e-06" /> - <width sOffset="150.81762725416704" a="3.6993664343095833" b="-0.00099515365037461606" c="-2.3589795698699466e-05" d="4.6051421975592652e-06" /> - <width sOffset="159.5146820034941" a="3.6919566467789249" b="-0.00036049538533088326" c="0.00015099484043137044" d="8.8365662356111316e-06" /> - <width sOffset="160.58923826630658" a="3.6917545876429809" b="-5.3804978434415196e-06" c="6.1319803020123528e-05" d="2.5415654972394317e-06" /> - <width sOffset="160.87213573777817" a="3.6917580305401057" b="2.9924148532717291e-05" c="5.5076750723409103e-05" d="-9.3928868856851146e-07" /> - <width sOffset="170.9266442213893" a="3.6966720525386307" b="0.00085259653226149948" c="2.8047676171779925e-05" d="-7.3001686509675316e-07" /> - <width sOffset="180.98115270500043" a="3.7073378995957622" b="0.0011952086349993857" c="4.231254361207172e-07" d="-5.474183544622618e-07" /> - <width sOffset="181.79905476995685" a="3.7083154467437414" b="0.0011948021761669526" c="-0.00069959442522726095" d="2.9484392748536361e-05" /> - <width sOffset="191.03566118861158" a="3.6828998322452096" b="-0.0041825806492751024" c="0.00011183746126944019" d="2.961707387066532e-05" /> - <width sOffset="197.36461847672095" a="3.668416434383845" b="0.00079204629093510112" c="6.0202325398664032e-05" d="-5.1414574223009364e-07" /> - <width sOffset="197.46081272650181" a="3.6684931812971495" b="0.00080361425328064615" c="0.00011997713129462175" d="-1.8540444577222637e-06" /> - <width sOffset="201.09016967222271" a="3.6729015150529492" b="0.0016012282125506417" c="9.8565564414785189e-05" d="-2.2742808350672286e-06" /> - <width sOffset="211.14467815583384" a="3.6966537059844242" b="0.0028935422413958567" c="3.1949254402482548e-05" d="-2.3829425020261656e-06" /> - <width sOffset="213.61704231760163" a="3.7039668763395044" b="0.0030078248120026861" c="0.00094444137159516183" d="-0.00021224616568646417" /> - <width sOffset="214.55266132568252" a="3.7074339673639241" b="0.0042177094004647066" c="0.00018800540528229596" d="-0.00017421042786683162" /> - <width sOffset="217.91748837846242" a="3.7171175828374774" b="-0.00043434257515502853" c="0.00010436460132279453" d="3.540599616510571e-05" /> - <width sOffset="218.10437502057985" a="3.7170402862207408" b="-0.00039162404034007186" c="-5.0322082029880273e-06" d="-1.008114719864201e-07" /> - <width sOffset="221.19918663944497" a="3.7157770975897551" b="-0.00042566818735337525" c="-5.5417488004107913e-06" d="1.9228110203639383e-09" /> - <width sOffset="231.2536951230561" a="3.710938934822364" b="-0.00053652415899303654" c="-4.8319368446873805e-06" d="-4.5155025363618103e-08" /> - <width sOffset="241.30820360666723" a="3.7050100749849348" b="-0.00064738424900429047" c="-5.1767697254836748e-06" d="-2.2287498193856192e-08" /> - <width sOffset="251.36271209027839" a="3.697954954704449" b="-0.00075824333883177972" c="-6.0809801832011022e-06" d="-2.2899164820270947e-07" /> - <width sOffset="253.51908226941208" a="3.6962893291399581" b="-0.00078766341450406212" c="-0.00012287625692143894" d="6.1181322016872793e-06" /> - <width sOffset="261.41722057388949" a="3.6854175070304929" b="-0.0015836926924794599" c="2.0191721412302638e-05" d="6.1765780203616913e-06" /> - <width sOffset="268.68344744483954" a="3.6773457188515022" b="-0.0003119235551622291" c="0.0011392301112812088" d="-0.00014542811566896268" /> - <width sOffset="269.6675923563987" a="3.6780035122949091" b="0.0015078521110407079" c="0.0005701394623480857" d="-0.0001526078405069525" /> - <width sOffset="271.47172905750068" a="3.6816834766234714" b="0.0020748971598000794" c="-0.00025509259038909027" d="-0.00015347956787582545" /> - <width sOffset="273.03640545184675" a="3.6837175704121932" b="0.00014937079035556576" c="-6.2822196703669387e-05" d="6.2987142054801801e-07" /> - <width sOffset="281.52623754111181" a="3.680843085508644" b="-0.00078113081516095642" c="-4.5734006773701859e-05" d="6.9606345879576797e-07" /> - <width sOffset="288.08513425922399" a="3.673948692038671" b="-0.0012912279437836504" c="-7.6733820935636702e-05" d="2.8407987498481256e-06" /> - <width sOffset="291.58074602472294" a="3.6686187684360583" b="-0.0017235535080737999" c="-4.6537274961098607e-05" d="2.7736876367039105e-06" /> - <width sOffset="301.63525450833407" a="3.6494039779462564" b="-0.0018181699751063543" c="3.5478435504070857e-05" d="3.2556993612023093e-06" /> - <width sOffset="305.0495035434476" a="3.6437394459931336" b="-0.0014620495421038965" c="0.0028847413387919573" d="-0.00052802952210105429" /> - <width sOffset="308.55938140448609" a="3.6513141710910451" b="-0.00072664136964646609" c="-2.7906755408630156e-05" d="2.4043268456239104e-06" /> - <width sOffset="311.6897629919452" a="3.6488397939293655" b="-0.0008306768762510121" c="-1.0663892770990152e-05" d="1.3763691290198233e-06" /> - <width sOffset="321.74427147555633" a="3.6408086989892432" b="-0.00062769284226743549" c="3.0850967004423399e-05" d="1.5139058029271264e-06" /> - <width sOffset="323.43996911548942" a="3.6398404117861256" b="-0.0005100058073609008" c="2.4190271198491304e-05" d="-5.8894259828409139e-07" /> - <width sOffset="331.79877995916746" a="3.6369235783297231" b="-0.00022904976600289983" c="1.1658427312054899e-05" d="-6.5352583974121979e-07" /> - <width sOffset="341.85328844277859" a="3.6351349115400664" b="-0.00019281119266580164" c="-4.3505173199166895e-06" d="-6.946569372495438e-07" /> - <width sOffset="351.90779692638972" a="3.6320504039304407" b="-0.0004909709740615702" c="-2.3483296984943611e-05" d="-5.3528682051130342e-07" /> - <width sOffset="357.24843885391402" a="3.6286769631600562" b="-0.00078760581968458586" c="-0.0032847342354130728" d="0.00055581412448224674" /> - <width sOffset="360.95039281398124" a="3.608944043492671" b="-0.0022560731250717177" c="0.0028503344896621589" d="0.00056287005765430953" /> - <width sOffset="361.00252337870353" a="3.6088342589252722" b="-0.0019543050719926704" c="0.00011990073102624334" d="3.4830609256112776e-06" /> - <width sOffset="361.96230541000085" a="3.6070720818652999" b="-0.0017145223432782439" c="0.00011609624731487555" d="-2.7223675358435161e-06" /> - <width sOffset="372.01681389361198" a="3.5988028084275774" b="-0.00020557899040816985" c="2.8405646689619521e-05" d="-2.6657077547041111e-06" /> - <width sOffset="379.45423294442134" a="3.5977484170131704" b="-0.00022541208459993895" c="1.3906595326222766e-05" d="-4.7955623632902607e-06" /> - <width sOffset="379.59302337726348" a="3.5977173870312367" b="-0.00022182900748620848" c="-1.5676689262261853e-05" d="6.3208649129002983e-06" /> - <width sOffset="382.07132237722317" a="3.5971675565869612" b="-0.0001830644432375681" c="2.9300539149542429e-05" d="5.6592440925674445e-06" /> - <width sOffset="392.1258308608343" a="3.6040413096118828" b="0.0021224728760810352" c="0.00020049600372121394" d="5.7261729037948786e-06" /> - <width sOffset="392.79427880559433" a="3.6055513686804459" b="0.0023981909106583548" c="0.0020792488411050481" d="-0.0002965872165316431" /> - <width sOffset="397.47092839672501" a="3.631906322984781" b="0.0023860046254258168" c="-0.00040932726215830377" d="1.6252341899275262e-05" /> - <width sOffset="402.18033934444543" a="3.6357622367300451" b="-0.0003880157496081232" c="-0.000179320005401038" d="1.6231948126448356e-05" /> - <width sOffset="411.70805472896683" a="3.6298261621291168" b="0.00061544451953330108" c="-9.2482973469837346e-05" d="-1.9257892901702432e-06" /> - <width sOffset="412.23484782805656" a="3.63012442748248" b="0.00051640245217152202" c="-8.993478371518232e-05" d="-2.8698968989700952e-06" /> - <width sOffset="415.5052855128281" a="3.6307509799299966" b="-0.00016393696768180491" c="5.2098973525528114e-06" d="-1.4223294578902065e-07" /> - <width sOffset="422.28935631166769" a="3.6298341892196868" b="-0.00011288656638953577" c="1.4682635884051465e-06" d="1.8728464579956605e-07" /> - <width sOffset="432.34386479527882" a="3.6290379656083878" b="-2.6561649749136359e-05" c="4.3053675645672681e-06" d="-9.9722735974736734e-08" /> - <width sOffset="432.68690507162933" a="3.629029356508279" b="-2.3643025896138184e-05" c="7.2813079341101704e-05" d="-2.263794579587584e-06" /> - <width sOffset="442.39837327888995" a="3.6335934988568384" b="0.00075008762618207036" c="6.9099587382502728e-06" d="-2.2127073729409927e-06" /> - <width sOffset="448.07210946929462" a="3.6376675990079539" b="0.00061480852866081456" c="4.2738839019358008e-05" d="-1.9251125143707161e-06" /> - <width sOffset="450.55944213035536" a="3.6394316250491574" b="0.00079168895346092352" c="0.00022993572312700577" d="-7.4590094051926621e-06" /> - <width sOffset="452.45288176250108" a="3.6417043527677153" b="0.0015822035863977005" c="0.00018650936233721396" d="-7.9355183985594319e-06" /> - <width sOffset="462.50739024611221" a="3.6684014564455039" b="0.0029260440807035368" c="-5.212428704194544e-05" d="-7.9559369130858772e-06" /> - <width sOffset="467.50493635106426" a="3.6807296396242553" b="0.0018089473041658453" c="-0.00013679986157433841" d="-5.4441117938556303e-06" /> - <width sOffset="471.25904182659946" a="3.6853046202466508" b="0.0005516484537801522" c="-8.4202761364884595e-05" d="-3.2769327869696317e-06" /> - <width sOffset="472.56189872972334" a="3.6858731634446018" b="0.00031555300383679052" c="-8.3811703183243148e-05" d="3.0308235616921649e-06" /> - <width sOffset="482.61640721333447" a="3.6836537613688547" b="-0.00045063153791266624" c="9.0073332747057135e-06" d="3.144310761623778e-06" /> - <width sOffset="486.01073935416156" a="3.6823509131323577" b="-0.00028080233481244559" c="4.1757513732063969e-05" d="-6.7110513347466774e-07" /> - <width sOffset="492.67091569694566" a="3.6821347319540045" b="0.00018611593368525903" c="2.7908930598549918e-05" d="-6.6972522266070585e-07" /> - <width sOffset="502.72542418055679" a="3.686146700900919" b="0.0005442232138379617" c="7.448295936153894e-06" d="-6.9860972852103559e-07" /> - <width sOffset="505.65466487163093" a="3.6877872124213935" b="0.00056987575722254613" c="-4.3933542116467183e-05" d="8.4475246237152948e-07" /> - <width sOffset="512.77993266416786" a="3.689922834129657" b="7.2462083099843438e-05" c="-2.748139787045647e-05" d="9.770482017233318e-07" /> - <width sOffset="518.76926257641321" a="3.6895809372386172" b="-0.00015158200083422346" c="-5.9233874206955693e-05" d="-1.1997591079541192e-06" /> - <width sOffset="519.81919393201974" a="3.6893551011364067" b="-0.00027993268893685851" c="-0.0016405838983838588" d="0.00025120570383520096" /> - <width sOffset="522.83444114777899" a="3.6804818079265678" b="-0.0033217921737468052" c="0.00062184219260671232" d="0.00025321112653143825" /> - <width sOffset="524.18237176128457" a="3.6777542319671328" b="-0.00026520116269452469" c="0.00011240071272779237" d="-4.022574215308367e-06" /> - <width sOffset="532.88894963139012" a="3.6813108270215662" b="0.00077726229365551345" c="7.6701331497122382e-06" d="-4.0917649750077453e-06" /> - <width sOffset="542.15422933436321" a="3.6859163102366233" b="-0.00013438354920609501" c="-2.0291397573838845e-07" d="5.7709730012232451e-08" /> - <width sOffset="542.94345811500136" a="3.6858101528503684" b="-0.00013459600123672671" c="-6.7326955003111814e-08" d="2.1860898931222381e-08" /> - <width sOffset="552.99796659861249" a="3.6844722702531145" b="-0.00012931991931283216" c="-9.6939331003637293e-07" d="1.1879367812836703e-07" /> - <width sOffset="560.15355140075894" a="3.6835407993384477" b="-0.00012494550929874668" c="-2.7387410503109262e-05" d="7.7057055679053659e-07" /> - <width sOffset="563.05247508222362" a="3.6829672071863735" b="-0.00026430646843723558" c="-2.1621200721129522e-05" d="4.1146734498229042e-07" /> - <width sOffset="573.10698356583475" a="3.6785422130935888" b="-0.00057429798180923155" c="-9.2094169920851413e-06" d="4.5296650915313334e-07" /> - <width sOffset="583.16149204944588" a="3.6722973343873226" b="-0.00062211488303491375" c="5.7563092280738768e-06" d="3.1873198440256373e-07" /> - <width sOffset="592.6857526265967" a="3.6671696855981204" b="-0.00042572769791532664" c="-1.5729109500193975e-05" d="9.685468827219509e-07" /> - <width sOffset="592.74749948914837" a="3.6671433385065049" b="-0.00042765906601077182" c="-7.4042276717833008e-06" d="9.1791964113578999e-07" /> - <width sOffset="603.27050901666814" a="3.6628927881170048" b="-0.00027855458690123381" c="2.1140585681639916e-05" d="9.8307935438222767e-07" /> - <width sOffset="613.32501750027927" a="3.6632284698558371" b="0.00044470954817700515" c="5.104028686630221e-05" d="1.0220199351637602e-06" /> - <width sOffset="613.48161264956013" a="3.663299364750503" b="0.00046077005688632572" c="0.00024331955144347414" d="-8.9576611739208505e-06" /> - <width sOffset="623.3795259838904" a="3.6830116092176564" b="0.0026447707740366302" c="-2.240345708917269e-05" d="-8.9289083630764957e-06" /> - <width sOffset="630.78157119339448" a="3.6977396217304177" b="0.00084545598158068864" c="5.0601531053940235e-06" d="1.5957992572254695e-07" /> - <width sOffset="633.43403446750153" a="3.7000207417010866" b="0.00087566792523576052" c="5.1183614385695018e-06" d="3.989741480168992e-08" /> - <width sOffset="643.48854295111266" a="3.7093831369198136" b="0.00099069320717009354" c="6.7898980295209383e-06" d="-7.1078819364765265e-08" /> - <width sOffset="646.4007250728306" a="3.7123240442853791" b="0.0010284316297108557" c="0.00016278567424067705" d="-6.4853096561446062e-06" /> - <width sOffset="648.45097543428403" a="3.7150609682823967" b="0.0016141508907484177" c="-0.00030560178054565287" d="1.2839357079049214e-05" /> - <width sOffset="653.54305143472379" a="3.7170515531802515" b="-0.00049939985788045437" c="-0.00010854438968554992" d="1.3056556578204071e-05" /> - <width sOffset="663.59755991833492" a="3.7143284702200425" b="0.001277664107648014" c="0.00028757930400659192" d="1.2092067579896152e-05" /> - <width sOffset="663.76692149430403" a="3.71455316490434" b="0.0013761143987373939" c="0.00023515402513533956" d="-6.0806686504319849e-05" /> - <width sOffset="665.01326312174638" a="3.7165158308149562" b="0.0016789135164175829" c="-5.8863885340649976e-05" d="0.0002041720778152535" /> - <width sOffset="665.74008024003433" a="3.7177833902872193" b="0.0019169166960231105" c="0.00034574957943835706" d="-6.2690455788445653e-05" /> - <width sOffset="668.6481381718753" a="3.7247400924127336" b="0.0023373541944849969" c="-2.9760369757830595e-05" d="-5.2649893889196843e-06" /> - <width sOffset="673.65206840194605" a="3.7350311935299438" b="0.0016440213399678814" c="-0.00010922524154192233" d="-5.4346061925462186e-06" /> - <width sOffset="681.62047574750068" a="3.7384464290172672" b="-0.0011319004613162776" c="-7.8091331162617831e-05" d="2.9454507916732043e-06" /> - <width sOffset="683.70657688555718" a="3.7357720707007571" b="-0.0014192590939867793" c="-6.0288579704629233e-05" d="2.7868906226534288e-06" /> - <width sOffset="693.76108536916831" a="3.7182400684590018" b="-0.0017863965874741141" c="2.1593289630585142e-05" d="2.8377058953785855e-06" /> - <width sOffset="699.68478193447356" a="3.7090055652905862" b="-0.0012318455557754565" c="1.0796452918451112e-05" d="7.697289323090599e-06" /> - <width sOffset="701.23203378952428" a="3.7071539481025466" b="-0.0011431542303513634" c="-5.7220480375107237e-05" d="-3.5411880429094403e-06" /> - <width sOffset="703.81559385277944" a="3.7037575394884064" b="-0.001509729307146844" c="-8.3695635573099322e-05" d="-3.391882543942582e-06" /> - <width sOffset="704.04907403650566" a="3.7034004419416604" b="-0.0015493665569091698" c="-7.8722100717835909e-05" d="4.3079199768941715e-06" /> - <width sOffset="713.87010233639057" a="3.6846718542395203" b="-0.0018491003082600412" c="4.8360695150015822e-05" d="4.2996616475835557e-06" /> - <width sOffset="720.32003803695807" a="3.6759108818947928" b="-0.00068863423804761139" c="0.00029908620352527173" d="-1.4123539140279013e-05" /> - <width sOffset="723.9246108200017" a="3.6766531981857553" b="0.00091700264040255053" c="0.00014645725638485159" d="-1.4160197956108587e-05" /> - <width sOffset="733.97911930361283" a="3.6862860153633843" b="-0.00043238256517686736" c="-0.00027893138783464076" d="-1.5033852097908798e-05" /> - <width sOffset="735.53340759317621" a="3.6848836722508018" b="-0.0014084190294205632" c="-0.00031902057016401918" d="-1.6123776423268704e-05" /> - <width sOffset="736.34050667086262" a="3.6835306486054309" b="-0.0019548909607225102" c="-0.0022966772059131676" d="0.00044773761060269267" /> - <width sOffset="739.81675129873554" a="3.6677898041988679" b="-0.0016907590149768518" c="0.00010482110695561383" d="-2.6430771042116127e-06" /> - <width sOffset="744.03362778722396" a="3.662325825808356" b="-0.00094772165854569909" c="7.2659706643479025e-05" d="-2.755855295441249e-06" /> - <width sOffset="754.08813627083521" a="3.6573411816764603" b="-0.00032240058742650699" c="-7.7090804828751694e-06" d="-3.0487770074416053e-06" /> - <width sOffset="758.33812055869487" a="3.6555977013321161" b="-0.0005531319118485679" c="-2.788435350246432e-05" d="5.5283016486182867e-08" /> - <width sOffset="764.14264475444634" a="3.6514583517950312" b="-0.00087125485173721539" c="-2.4261555363875544e-05" d="1.7482855125092178e-07" /> - <width sOffset="774.19715323805747" a="3.6404233387179987" b="-0.0013061089781339521" c="-2.3416458543531542e-05" d="2.1559159159164873e-06" /> - <width sOffset="776.37783365251641" a="3.6374861353040915" b="-0.0013774800885206486" c="-0.00020786915965220667" d="8.4778088781328738e-06" /> - <width sOffset="784.2516617216686" a="3.6178912797857792" b="-0.003074131700849476" c="-1.0693617794713594e-05" d="8.175485744316852e-06" /> - <width sOffset="789.21217584913666" a="3.6033767866054687" b="-0.002576708199917282" c="-0.00092685431118036355" d="0.00042695364087412221" /> - <width sOffset="790.56209198113231" a="3.5992597348280038" b="-0.0027449803755454642" c="0.00024714620235432439" d="8.7417486044557124e-06" /> - <width sOffset="794.20055234390725" a="3.5929651183402971" b="-0.00059933692151214915" c="0.00017537049870153707" d="-6.5939376694980433e-06" /> - <width sOffset="794.30617020527973" a="3.5929037661687251" b="-0.00056251307623012491" c="0.00017318191864066791" d="-6.5553119357489342e-06" /> - <width sOffset="804.36067868889086" a="3.5980923844242247" b="0.00093191384568122029" c="-2.3711371010976082e-05" d="-6.5123585081445525e-06" /> - <width sOffset="806.94657363007241" a="3.6002310528424539" b="0.00067864207180806462" c="-5.4530903023234335e-05" d="-6.6705479664986361e-06" /> - <width sOffset="808.9236812927486" a="3.6013080896275769" b="0.00038479052969992957" c="-4.4216834595983115e-05" d="1.4630977907620836e-06" /> - <width sOffset="814.41518717250199" a="3.6023300348807878" b="3.1522841520874117e-05" c="-2.0125482295002913e-05" d="1.5142995161348339e-06" /> - <width sOffset="824.46969565611312" a="3.6021516307319708" b="8.6075059384794084e-05" c="2.3036786652076081e-05" d="1.8775160606170532e-06" /> - <width sOffset="828.7501469619915" a="3.6030894059012359" b="0.00038649177770257767" c="0.0018577655799899703" d="-0.00023106519204684408" /> - <width sOffset="830.05989492568483" a="3.6062633417863061" b="0.0040637659176623268" c="0.00097858469836313577" d="-0.00023099100828513308" /> - <width sOffset="833.78393390788438" a="3.6230385079787242" b="0.0017418679754513098" c="-3.5443427563599766e-05" d="-5.1019903083821129e-07" /> - <width sOffset="834.52420413972425" a="3.6243083310183986" b="0.0016885537795411876" c="-3.5336408345354561e-05" d="-3.6493527481971639e-07" /> - <width sOffset="844.57871262333538" a="3.637342705330898" b="0.00086729598515256307" c="-4.7420399643046382e-05" d="-3.4114815045053722e-07" /> - <width sOffset="854.63322110694651" a="3.6409223057767433" b="-0.00018974484993206065" c="-5.8592148678579469e-05" d="-3.7576668310558061e-07" /> - <width sOffset="864.68772959055764" a="3.6327093052548425" b="-0.0014819376645182148" c="-7.0080051882963481e-05" d="-3.2259095889604234e-07" /> - <width sOffset="864.95856522969166" a="3.6323027968036206" b="-0.0015199690038147494" c="-0.0010746057769763753" d="0.00017010904526870821" /> - <width sOffset="868.25605077998136" a="3.6217053361942941" b="-0.0030579663787021144" c="0.00028402310182729757" d="0.00018640602124076305" /> - <width sOffset="869.02793562311717" a="3.6195998879943332" b="-0.0022863145281983165" c="0.00047807642388422494" d="-1.3960850408174857e-05" /> - <width sOffset="874.74223807416877" a="3.6195409825593541" b="0.0018098305128189619" c="0.00023801708411994024" d="-1.3805564371875084e-05" /> - <width sOffset="882.79139894568857" a="3.642329925635841" b="0.0029581603667548032" c="0.00025987169479212038" d="1.9477619516977706e-05" /> - <width sOffset="884.7967465577799" a="3.6494641926524363" b="0.0042354095422089582" c="0.00037603909516999959" d="1.8461607967952584e-05" /> - <width sOffset="885.50841881319309" a="3.6526755258279682" b="0.004798693885736555" c="0.0021480525831176433" d="-0.00073348557507977468" /> - <width sOffset="887.4971319989661" a="3.664945157325918" b="0.0046396522404592985" c="-0.00080513331423029627" d="2.5847568332288778e-05" /> - <width sOffset="894.85125504139103" a="3.66580206025619" b="-0.0030086948130936394" c="-0.00023257066977871825" d="2.5727906921769867e-05" /> - <width sOffset="902.13002309821911" a="3.6415022838385154" b="-0.0023051213651709762" c="0.00042622520759684653" d="1.6302840107778571e-05" /> - <width sOffset="904.56386435707486" a="3.6386518039100273" b="5.9321319365346001e-05" c="0.00029901596463731894" d="-1.4370991663134055e-05" /> - <width sOffset="904.90576352500216" a="3.6387064649476022" b="0.00025874824539811377" c="0.00028569823461300435" d="-1.3911988060296986e-05" /> - <width sOffset="914.96027200861329" a="3.6560494564737471" b="0.0017846391874114824" c="-0.0001342330205798679" d="-1.3926358493543946e-05" /> - <width sOffset="924.33032280130408" a="3.6495294434941394" b="-0.0043990143341641422" c="0.0046762115675743759" d="-0.0073963119495052652" /> - <width sOffset="924.84022865491443" a="3.6475216090261244" b="-0.0053993706546180079" c="-0.054265013289009026" d="0.2663254514236682" /> - <roadMark sOffset="0" color="standard" width="0.14517703758409278" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.145177" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59187320829938" max="100" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.7992720275105247" b="2.0868592722374766e-10" c="0.080691766726971911" d="-0.097661534241652706" /> - <width sOffset="0.54648170772187932" a="3.8074313894269665" b="0.00069556618149208135" c="-0.0024430188839791858" d="0.0010542824137519163" /> - <width sOffset="1.9026179974844735" a="3.8065111646306633" b="-0.00011375676028668692" c="0.00021797547934448048" d="-2.2151886817055064e-05" /> - <width sOffset="8.5078747185424834" a="3.8088861067910331" b="-0.00013361043906500586" c="0.00022491092015364445" d="-2.6498270491152954e-05" /> - <width sOffset="10.054508483611135" a="3.8091194296520294" b="0.00037194157651168278" c="9.7057072584181046e-05" d="-2.7023393165050696e-05" /> - <width sOffset="12.712370544460427" a="3.8102862481148292" b="0.00031517174478798426" c="1.7043502435777668e-05" d="1.2218277171378755e-05" /> - <width sOffset="15.362263730446637" a="3.8114684479838101" b="0.00066288647063025407" c="-1.2089855360950783e-05" d="-3.5673301523925538e-07" /> - <width sOffset="20.109016967222271" a="3.8143044484952333" b="0.00052399798273415361" c="-2.1901475096069595e-05" d="-4.8544337177348321e-07" /> - <width sOffset="30.163525450833404" a="3.8168654767962558" b="-6.3644137047770555e-05" c="-3.6887677492366428e-05" d="-8.3222292362501501e-07" /> - <width sOffset="36.323747665408696" a="3.8148790398121566" b="-0.00061286114743757921" c="-2.550557381160976e-05" d="2.8084527716323373e-07" /> - <width sOffset="40.218033934444541" a="3.8121221655069415" b="-0.0007987357110711326" c="-1.4718555029972546e-05" d="6.5701693990498668e-07" /> - <width sOffset="48.327586679721641" a="3.8050272151918199" b="-0.00090783165468952482" c="-6.3499061700884524e-05" d="3.8700734174305232e-06" /> - <width sOffset="50.272542418055679" a="3.8030497891935369" b="-0.001110917629087319" c="-2.9130246294723901e-05" d="6.0439501499018652e-06" /> - <width sOffset="56.098075795097316" a="3.7967844030711291" b="-0.0008349783814429637" c="9.1168532825853163e-06" d="4.0290542621235325e-07" /> - <width sOffset="60.327050901666809" a="3.7934468207158329" b="-0.00073625152980014846" c="1.7489657233702088e-05" d="7.3385084276534981e-07" /> - <width sOffset="69.736282119914549" a="3.7886790049903531" b="-0.00021221163049097097" c="7.1178556239105193e-05" d="-1.2267986813270539e-06" /> - <width sOffset="70.381559385277953" a="3.7885713775535637" b="-0.00012188427566980496" c="6.874089514140384e-05" d="-1.2010452177383233e-06" /> - <width sOffset="80.436067868889083" a="3.7930743314505198" b="0.00089617525098914844" c="3.1317340751380791e-05" d="-1.1782944023688829e-06" /> - <width sOffset="90.490576352500213" a="3.8040532337208335" b="0.0011685837415934916" c="-4.1676124652176099e-06" d="-1.5652495066250227e-06" /> - <width sOffset="91.587407503440247" a="3.8053278935785704" b="0.0011537922406384296" c="-5.3896812475243673e-06" d="1.5775545898529349e-06" /> - <width sOffset="97.069983810419274" a="3.8117516201851878" b="0.0012369510137263525" c="0.00027818792302244716" d="-2.7017592411710706e-05" /> - <width sOffset="100.54508483611136" a="3.8182758056606896" b="0.0021915934335903402" c="-2.4756966802784889e-06" d="-2.6896458544494179e-05" /> - <width sOffset="107.09223779928844" a="3.8249700225626677" b="-0.0012995912826051939" c="-0.0001348749412014133" d="6.8303245674408759e-06" /> - <width sOffset="110.59959331972249" a="3.8190474244391943" b="-0.0019936294328663298" c="-6.3459075110050602e-05" d="6.8776687281346667e-06" /> - <width sOffset="120.65410180333362" a="3.7995779334477664" b="-0.0011838736506814146" c="0.00014474111513385318" d="6.7203511109733382e-06" /> - <width sOffset="121.45893240470475" a="3.7987223756218209" b="-0.00093783012460413795" c="0.00015187099223581469" d="-6.201220738319359e-06" /> - <width sOffset="125.69019815140295" a="3.7970034330782427" b="1.4310220620605352e-05" c="1.4720186265628821e-05" d="-6.5920914773861821e-06" /> - <width sOffset="130.70861028694475" a="3.7966128195271924" b="-0.00033600065614149935" c="-7.7114421901806156e-05" d="-9.0982230276851584e-06" /> - <width sOffset="131.85409940289574" a="3.7961130740376992" b="-0.0005484826902384071" c="-7.1943968774477332e-05" d="4.1031526133736422e-06" /> - <width sOffset="140.76311877055591" a="3.7884177917655908" b="-0.00085337373699443156" c="3.7083055037273984e-05" d="4.3773139535121006e-06" /> - <width sOffset="144.17062183233077" a="3.7861136798228427" b="-0.00044817650021058454" c="3.283494585269586e-05" d="1.048527239297064e-06" /> - <width sOffset="150.81762725416704" a="3.7848933182594591" b="0.00012731185985284167" c="5.4257820706985349e-05" d="8.344204314508065e-07" /> - <width sOffset="159.5146820034941" a="3.7906534613288274" b="0.0012604219179357329" c="2.1597706566216566e-05" d="-3.3970036062369473e-06" /> - <width sOffset="160.87213573777817" a="3.7923957263362804" b="0.0013002789144517565" c="1.9065264960858831e-05" d="-5.2089021362252414e-08" /> - <width sOffset="168.19231200309994" a="3.802915177039448" b="0.0015710275469782401" c="0.00018673534808896479" d="-1.6056626029347095e-05" /> - <width sOffset="170.9266442213893" a="3.8082787761114298" b="0.0022320749096136397" c="5.7601563344213258e-05" d="-1.5319304387457673e-05" /> - <width sOffset="179.20334784208728" a="3.8220130972453425" b="3.7284304715356304e-05" c="-7.451041250472468e-06" d="2.0432754841535074e-06" /> - <width sOffset="180.98115270500043" a="3.8220673127623028" b="3.0165178964861773e-05" c="-3.4577911863814648e-06" d="1.3040824446561396e-07" /> - <width sOffset="181.79905476995685" a="3.8220897431398391" b="2.4770625041343215e-05" c="0.00069553653918825618" d="-2.9901402856857408e-05" /> - <width sOffset="191.03566118861158" a="3.8580952611058263" b="0.0052204597332798641" c="-0.00013840321939887916" d="-2.9898943637749738e-05" /> - <width sOffset="197.36461847672095" a="3.8780117842778972" b="-0.00012430577677342399" c="-9.2119908433436877e-05" d="2.3227504650314688e-07" /> - <width sOffset="201.09016967222271" a="3.8762820879900044" b="-0.00080102890077502712" c="-9.0529217568962778e-05" d="-5.3085721564494689e-08" /> - <width sOffset="211.14467815583384" a="3.8590222946204493" b="-0.0026375822798799936" c="-8.9786439058461745e-05" d="-3.4598059250067727e-07" /> - <width sOffset="213.61704231760163" a="3.8519471748741116" b="-0.0030878963350328787" c="-0.0010225192312311639" d="0.0002095172425922449" /> - <width sOffset="216.81937727628829" a="3.8384533143632726" b="-0.0031910284650892478" c="0.00067133653556033504" d="0.00022803273121508799" /> - <width sOffset="217.91748837846242" a="3.8360606910890329" b="-0.00089170582547349394" c="-0.00025237072081377263" d="1.8416307244593717e-05" /> - <width sOffset="221.19918663944497" a="3.8310673405339815" b="-0.0019531092720871631" c="-7.0644301173722758e-05" d="1.8500941571731298e-05" /> - <width sOffset="227.58840350425348" a="3.8205300914362179" b="-0.00059009136814846283" c="0.00018964878543811938" d="-3.987396035065172e-05" /> - <width sOffset="230.21957837968733" a="3.8195640742225181" b="-0.00042024512817029087" c="-6.8619085817172434e-05" d="2.0828978820334465e-06" /> - <width sOffset="231.2536951230561" a="3.8190584140633792" b="-0.00055548308230225015" c="-6.1514719309727593e-05" d="2.0073898168943194e-06" /> - <width sOffset="241.30820360666723" a="3.809294983520187" b="-0.0011836835921529383" c="8.1439975344678494e-08" d="2.0309673871820766e-06" /> - <width sOffset="251.36271209027839" a="3.7994662200565124" b="-0.00056609529792272845" c="5.942829773156917e-05" d="2.7146852310359599e-06" /> - <width sOffset="253.51908226941208" a="3.7985490666837958" b="-0.00027192717184933125" c="0.0001923038010043772" d="-3.6324385886048793e-06" /> - <width sOffset="253.77309479203643" a="3.7984923421384922" b="-0.00017493514519009723" c="0.00013409549296271946" d="-5.9283573110463011e-06" /> - <width sOffset="261.41722057388949" a="3.8023426729209078" b="0.00083592144177862615" c="-4.2778438916322771e-06" d="-6.0242075248342424e-06" /> - <width sOffset="269.6675923563987" a="3.8055650046122653" b="-0.00046484490466553054" c="-1.3660070382951742e-05" d="1.1555173130427923e-06" /> - <width sOffset="271.47172905750068" a="3.8046886841158978" b="-0.00050285086137669653" c="-7.5135424370685248e-06" d="9.4778402418433112e-07" /> - <width sOffset="281.52623754111181" a="3.7998365655999709" b="-0.00036649742217933177" c="2.2178280715141931e-05" d="9.2499327307691672e-07" /> - <width sOffset="286.45190439274813" a="3.7986799587633069" b="-8.0684679354279648e-05" c="0.00069831333764087077" d="-0.00011314888675585079" /> - <width sOffset="288.08513425922399" a="3.7999179530064184" b="0.0012948741885620346" c="0.00018861495318479271" d="-0.00011529362204691213" /> - <width sOffset="290.40100572643388" a="3.8024962878152877" b="0.00031344092542934899" c="-8.3328749758429955e-05" d="2.9114962406148637e-06" /> - <width sOffset="291.58074602472294" a="3.8027548713449466" b="0.00012898490659093921" c="-7.0977319882701553e-05" d="3.6888790463713663e-06" /> - <width sOffset="301.63525450833407" a="3.8006259620005238" b="-0.00017953811621108798" c="3.9659662907902827e-05" d="3.7856890252688249e-06" /> - <width sOffset="310.87876456619171" a="3.805344912803406" b="0.0015240268256735234" c="4.5176942384040367e-05" d="-3.6668814499343472e-06" /> - <width sOffset="311.6897629919452" a="3.8066086539220088" b="0.0015900683572698069" c="3.5447101696248144e-05" d="-3.6767219027967869e-06" /> - <width sOffset="321.74427147555633" a="3.822442294569663" b="0.0011878006311944818" c="-7.4732535056545526e-05" d="-4.241163607985394e-06" /> - <width sOffset="323.43996911548942" a="3.8242208810411453" b="0.00089776806008564183" c="-8.1945653060161493e-05" d="-2.1383153878854602e-06" /> - <width sOffset="323.56102158495355" a="3.8243283534816914" b="0.00087783461005006859" c="-0.00018178207266205163" d="4.1069084770078018e-06" /> - <width sOffset="331.79877995916746" a="3.8215197338438984" b="-0.0012810263758737694" c="-7.7391622457208178e-05" d="4.1025379661114526e-06" /> - <width sOffset="341.85328844277859" a="3.8049858723388033" b="-0.0015930804796717426" c="5.1546738023654564e-05" d="3.847008197405034e-06" /> - <width sOffset="347.5120468112334" a="3.7983187074212932" b="-0.0006401379563435607" c="1.5846439198725596e-05" d="1.3581875528918161e-06" /> - <width sOffset="351.90779692638972" a="3.7959263765605886" b="-0.00042209276032788973" c="3.6395452889692247e-05" d="1.7501565867235686e-06" /> - <width sOffset="357.24843885391402" a="3.7949768162254429" b="0.00011641369677369072" c="0.0033171109445474193" d="-0.00055459925471603323" /> - <width sOffset="361.00252337870353" a="3.8128202717792519" b="0.0015736909345103905" c="-0.00011046453360890647" d="4.7877409773807809e-06" /> - <width sOffset="361.96230541000085" a="3.8142331471731579" b="0.001374878321532685" c="-9.8216419811465955e-05" d="4.8662274473761591e-06" /> - <width sOffset="372.00490321452338" a="3.8230636808163529" b="0.00087451447852035969" c="9.6237962933350211e-05" d="-1.4144506507048847e-05" /> - <width sOffset="372.01681389361198" a="3.8230741105064943" b="0.00087680097765275265" c="9.3096055180680532e-05" d="-1.4090508139050581e-05" /> - <width sOffset="376.07676745959935" a="3.8272254522128284" b="0.00093596133833199254" c="7.6656246503869088e-06" d="4.0133405740001289e-06" /> - <width sOffset="379.59302337726348" a="3.8307857907371226" b="0.0011387334333520069" c="7.7587972324827628e-05" d="-7.1030866662960401e-06" /> - <width sOffset="382.07132237722317" a="3.833976334805965" b="0.0013924250728200795" c="2.2751434707161987e-05" d="-7.6335462520426662e-06" /> - <width sOffset="392.1258308608343" a="3.8425174426911868" b="-0.0004651634398844702" c="-0.00020733609854341168" d="-7.6110359222248069e-06" /> - <width sOffset="392.79427880559433" a="3.8421115894332285" b="-0.00075255256760730597" c="-0.002089868734359675" d="0.00029470235351321028" /> - <width sOffset="397.47092839672501" a="3.8230276508786289" b="-0.00096336912913323421" c="0.00037226283731003424" d="-1.8137204917696638e-05" /> - <width sOffset="402.18033934444543" a="3.8248526070510627" b="0.0013361374351690152" c="0.00011626520519234001" d="-1.8207945064299181e-05" /> - <width sOffset="410.70576549330747" a="3.8334116384597259" b="-0.00065165998413532918" c="-0.00076070497765789308" d="1.2680805351029724e-05" /> - <width sOffset="411.70805472896683" a="3.8320070629351095" b="-0.0021383360138443898" c="-0.00034545235983927974" d="3.0838542779583979e-05" /> - <width sOffset="412.23484782805656" a="3.8307892437734714" b="-0.0024766257506116511" c="-0.00029377228067141328" d="3.1801307515045887e-05" /> - <width sOffset="420.71143124298277" a="3.8080566693597397" b="-0.00060198909665251101" c="9.4782867742609387e-06" d="-4.3518090472693062e-07" /> - <width sOffset="422.28935631166769" a="3.8071286654262826" b="-0.0005753276463264335" c="6.5174839116197262e-06" d="1.5230995012369703e-07" /> - <width sOffset="432.34386479527882" a="3.8021577158507851" b="-0.00039807497804320209" c="1.019985687803077e-05" d="5.9410733105880256e-08" /> - <width sOffset="432.68690507162933" a="3.8020223627833869" b="-0.00039105608083565374" c="-5.8349340820338551e-05" d="2.2234825767189559e-06" /> - <width sOffset="442.39837327888995" a="3.7947580739168751" b="-0.00089526425049651394" c="6.1838065902165867e-06" d="2.3601647498092585e-06" /> - <width sOffset="447.11648456526916" a="3.7909196557041724" b="-0.00067929660818482371" c="6.0401401484379996e-05" d="1.8988749129337177e-06" /> - <width sOffset="448.07210946929462" a="3.7903273197912699" b="-0.00055865217548694646" c="-7.6465960276817733e-06" d="1.6112800544273671e-06" /> - <width sOffset="452.45288176250108" a="3.787868708469166" b="-0.00053288113908253273" c="1.276488882379961e-05" d="1.4959500753815117e-06" /> - <width sOffset="462.50739024611221" a="3.7853218394898467" b="0.00017749910187190492" c="5.8801657770777199e-05" d="1.4074782762504935e-06" /> - <width sOffset="467.50493635106426" a="3.7878531741787613" b="0.00087068437541133639" c="4.5298560441389076e-05" d="-1.1043468429794323e-06" /> - <width sOffset="472.56189872972334" a="3.7932717911627378" b="0.0012441066575514625" c="3.0371381776381492e-05" d="-1.0180080915889717e-06" /> - <width sOffset="473.08946036037366" a="3.7939364376255895" b="0.0012753022090146845" c="0.00010947238507868744" d="-3.9177299080354173e-06" /> - <width sOffset="482.61640721333447" a="3.8126345569824061" b="0.0022944259730282145" c="-1.013169342773789e-06" d="-3.8076617140247679e-06" /> - <width sOffset="492.67091569694566" a="3.8317311912347787" b="0.0011192666876626905" c="-0.00011604971249221703" d="-3.7998980211184137e-06" /> - <width sOffset="493.5251820964798" a="3.8326002845056899" b="0.00091267278048250003" c="-1.9232315676802103e-05" d="-2.4644837060857433e-07" /> - <width sOffset="502.72542418055679" a="3.8391772646238671" b="0.00049620739674659643" c="-2.6411831995776464e-05" d="-2.5445220281052996e-07" /> - <width sOffset="505.65466487163093" a="3.8403977546365198" b="0.00033492422673670982" c="1.6594762685646749e-05" d="-1.7978143936973758e-06" /> - <width sOffset="512.77993266416786" a="3.8429763343487346" b="0.0002975863869227463" c="-2.3457709305175578e-05" d="-1.6484814193451782e-06" /> - <width sOffset="518.76926257641321" a="3.8435630250383839" b="-0.00016080886954736518" c="-3.7695381317370479e-06" d="5.2832588942024024e-07" /> - <width sOffset="522.83444114777899" a="3.8428825069408958" b="-0.00016526373211334772" c="1.7953686526813203e-07" d="2.4351574408265582e-07" /> - <width sOffset="532.88894963139012" a="3.8414865308814767" b="-8.7800107998403263e-05" c="7.758240434820146e-06" d="1.8876621363977732e-07" /> - <width sOffset="542.78072253596633" a="3.8415598574519514" b="0.00012109611710810131" c="5.522516378615831e-06" d="-3.9072017017522298e-07" /> - <width sOffset="542.94345811500136" a="3.8415797086668739" b="0.00012286249474087967" c="5.332815708225469e-06" d="-3.5487127226165675e-07" /> - <width sOffset="552.99796659861249" a="3.8429934357423168" b="0.00012247502177282181" c="-7.1947367448522805e-06" d="-1.7398020977193463e-07" /> - <width sOffset="556.44542926282998" a="3.8433230258627047" b="6.6664585394789579e-05" c="-0.00059723809503089845" d="3.5928953707686181e-05" /> - <width sOffset="563.05247508222362" a="3.8280547620497543" b="-0.0031200686138876414" c="0.00011470416397887066" d="3.5809482307557569e-05" /> - <width sOffset="567.56141385015155" a="3.8196011833848544" b="9.8396625216085837e-05" c="2.192717419997168e-05" d="-3.346288658388534e-07" /> - <width sOffset="573.10698356583475" a="3.8207641134328929" b="0.00031072110226397655" c="1.6497989111287492e-05" d="-2.6657016875711236e-07" /> - <width sOffset="583.16149204944588" a="3.8252851418551344" b="0.00056163419838057454" c="9.7393361680237576e-06" d="-3.9750490193315364e-07" /> - <width sOffset="592.74749948914837" a="3.8312137827202113" b="0.00063877488514982002" c="-9.8375867219793463e-06" d="-3.4687912344012662e-07" /> - <width sOffset="593.21600053305701" a="3.8315108544665066" b="0.00062932863299672726" c="-9.4498217943458848e-06" d="-3.075355291396267e-07" /> - <width sOffset="603.27050901666814" a="3.836570540400511" b="0.00034603280850867881" c="-1.9194248765474294e-05" d="-2.3815357911436706e-07" /> - <width sOffset="613.32501750027927" a="3.8378672540526679" b="-0.00011217174553929278" c="-2.6624362216475812e-05" d="-2.7709457813604909e-07" /> - <width sOffset="613.73306863702089" a="3.837817030308921" b="-0.00013403836158201455" c="-2.6236492363376487e-05" d="4.394661967334179e-07" /> - <width sOffset="623.3795259838904" a="3.8344771044160204" b="-0.00051753432448698312" c="-1.3245081829641573e-05" d="4.6681322232162817e-07" /> - <width sOffset="633.43403446750153" a="3.8284090527286709" b="-0.00064230505523113046" c="-3.4762558280504268e-08" d="5.2907783639153569e-07" /> - <width sOffset="640.536892389694" a="3.8240346889259502" b="-0.00056272201419835016" c="0.00038789253895146818" d="-2.4857017825217389e-05" /> - <width sOffset="643.48854295111266" a="3.8251139330506798" b="0.0010774434542923734" c="0.0001679586469848329" d="-2.5239085203735187e-05" /> - <width sOffset="646.4007250728306" a="3.8290527230613476" b="0.0014135525341476538" c="-0.00020916055072454546" d="-1.8824854367014603e-05" /> - <width sOffset="651.77188759682417" a="3.8276939892966979" b="-0.0024625746075553579" c="-0.00010781852070220796" d="8.3927767254061511e-06" /> - <width sOffset="653.54305143472379" a="3.823040768971059" b="-0.002765518178316963" c="-6.2357240785672108e-05" d="8.7683277932600864e-06" /> - <width sOffset="662.815675843995" a="3.7990263508476829" b="-0.001660205127188803" c="0.00024538506123499779" d="4.3847967056212488e-06" /> - <width sOffset="663.59755991833492" a="3.7978803731948627" b="-0.0012684379438217214" c="0.00025337835224970826" d="5.3492857524287094e-06" /> - <width sOffset="665.01326312174638" a="3.7966076442970422" b="-0.00051885748868839613" c="0.00034275755180177984" d="-0.00025962947856697987" /> - <width sOffset="665.74008024003433" a="3.7963119110520855" b="-0.00043207141439527788" c="-0.00018277807758381839" d="7.2330550367816913e-06" /> - <width sOffset="673.65206840194605" a="3.7850339782878706" b="-0.001965989270486843" c="-1.0895969393289914e-05" d="7.1265397154540076e-06" /> - <width sOffset="681.62047574750068" a="3.7722820604787759" b="-0.00078212637402962841" c="-1.5838332358862404e-06" d="-1.2535172688779402e-06" /> - <width sOffset="683.70657688555718" a="3.77063219335946" b="-0.00080509968354620758" c="-9.1431315247295336e-06" d="-8.6999315775878692e-07" /> - <width sOffset="689.38133035345561" a="3.765610031206351" b="-0.00099291843544773426" c="1.1929345433176472e-05" d="2.1305045441771613e-06" /> - <width sOffset="693.76108536916831" a="3.7616691147420189" b="-0.00076581957652830713" c="3.6739588716007247e-05" d="2.0850315633034409e-06" /> - <width sOffset="699.68478193447356" a="3.7588552328995877" b="-0.00011105882072526556" c="0.00013501883435463379" d="-2.774551863811943e-06" /> - <width sOffset="703.74670428723198" a="3.7604458787596027" b="0.00084847945368650554" c="2.540035516249467e-05" d="-1.1008221915958409e-06" /> - <width sOffset="703.81559385277944" a="3.7605044503249454" b="0.00085196341977372767" c="2.4201388869357045e-05" d="-1.2501260572452487e-06" /> - <width sOffset="713.87010233639057" a="3.7702464377377396" b="0.00095949205043316193" c="-1.3091381494834164e-05" d="-1.2974928025328674e-06" /> - <width sOffset="720.32003803695807" a="3.7755423226498532" b="0.00062868130838372792" c="-0.00020572550183175375" d="1.7125707985324788e-05" /> - <width sOffset="723.9246108200017" a="3.775937535740717" b="-0.00018688363781743916" c="-2.0002801629865653e-05" d="1.7219900087843514e-05" /> - <width sOffset="726.85510662991487" a="3.7756514589574506" b="0.00013952357742334949" c="0.00041004998260661169" d="-2.0775572545386891e-05" /> - <width sOffset="733.97911930361283" a="3.7899445950131412" b="0.0028187481870550518" c="-3.2317111100295111e-05" d="-2.1239954086622909e-05" /> - <width sOffset="736.34050667086262" a="3.7961408702528519" b="0.0023108102223167088" c="0.0017558317917565785" d="-0.00048510134145253009" /> - <width sOffset="736.48625593755412" a="3.79651346608075" b="0.002791717811203802" c="0.0020077887155355309" d="-0.000445501878431973" /> - <width sOffset="739.81675129873554" a="3.8116241006094782" b="0.0013407928776124011" c="-0.00017559902521637982" d="4.8788092749326233e-06" /> - <width sOffset="744.03362778722396" a="3.8145213844318748" b="0.00012009972810364262" c="-0.00011101940792967737" d="5.0977963651503466e-06" /> - <width sOffset="754.08813627083521" a="3.8096872410533527" b="-0.00056633469179081771" c="4.4592823255229839e-05" d="5.0376794357244623e-06" /> - <width sOffset="759.3040270940387" a="3.808661323730524" b="0.00031000592519513244" c="0.001334110776815002" d="-0.00018935582886536083" /> - <width sOffset="763.76967816238789" a="3.8197876618516728" b="0.00089692812070038368" c="-0.00035385131130902941" d="2.3012142007296539e-05" /> - <width sOffset="764.14264475444634" a="3.820074157812432" b="0.00064258193379495578" c="-0.00032722492033219938" d="2.2999147663292026e-05" /> - <width sOffset="771.86617981724146" a="3.8161136588082849" b="-0.00029618031395676992" c="1.4698626383441491e-05" d="1.5907066415921549e-06" /> - <width sOffset="774.19715323805747" a="3.815523281044106" b="-0.00020172708572158897" c="2.5642323546463495e-05" d="2.1033113684818775e-06" /> - <width sOffset="784.2516617216686" a="3.8182251710575428" b="0.00095180589081053678" c="8.5906047735300007e-05" d="2.2047499994934442e-06" /> - <width sOffset="787.43995311183596" a="3.8222045130344586" b="0.001566828102763161" c="0.00032736392795390708" d="-2.41815501030073e-05" /> - <width sOffset="789.21217584913666" a="3.8258748592134761" b="0.0024993053855235968" c="0.0012366231801930823" d="-0.00044295970523284796" /> - <width sOffset="790.56209198113231" a="3.8304125337224031" b="0.0034163992642863988" c="-2.1978668045035399e-06" d="-2.4747812963158e-05" /> - <width sOffset="794.30617020527973" a="3.8418741022614067" b="0.0023591877284188309" c="-0.00027968079790073136" d="-2.4951100795431428e-05" /> - <width sOffset="796.76277691518169" a="3.8456119379356002" b="0.00053332284723022654" c="-3.2324228794739377e-05" d="4.5693695215078539e-07" /> - <width sOffset="804.36067868889086" a="3.8479984741308817" b="0.00012126453842240225" c="-2.0516609886996887e-05" d="3.4560756330788799e-07" /> - <width sOffset="806.94657363007241" a="3.8481808360128449" b="2.2090023536636399e-05" c="-3.7536788091273069e-05" d="5.0379702186357703e-07" /> - <width sOffset="814.41518717250199" a="3.8464618909324106" b="-0.0004542998260671489" c="-2.6296290265240399e-05" d="5.5315746582509556e-07" /> - <width sOffset="818.85189314992647" a="3.8439769798339256" b="-0.00065497199050859102" c="-4.6420142847476136e-05" d="1.0468297722967731e-06" /> - <width sOffset="824.46969565611312" a="3.8390180694599447" b="-0.0010774174637683315" c="-3.066393340667304e-05" d="1.1256219133047849e-06" /> - <width sOffset="830.05989492568483" a="3.8322334743186652" b="-0.0013147242984753644" c="-4.051719367868111e-05" d="1.051438151764291e-06" /> - <width sOffset="834.52420413972425" a="3.8256501791401933" b="-0.0016136211944809884" c="-2.8443400515844941e-05" d="8.8418683921874134e-07" /> - <width sOffset="844.57871262333538" a="3.8074493029562104" b="-0.0019174343440428541" c="-2.9044903061935539e-06" d="9.0572576033867757e-07" /> - <width sOffset="854.63322110694651" a="3.7887974365900909" b="-0.0017011528033152199" c="2.3230796094297437e-05" d="9.1434135299839133e-07" /> - <width sOffset="859.37432671423244" a="3.7813517174817513" b="-0.0014192155672995653" c="3.5186817015396714e-05" d="-1.6595106500742579e-06" /> - <width sOffset="864.68772959055764" a="3.7745553143609243" b="-0.0011858472571028747" c="9.0563288269443886e-06" d="-1.7779133313053068e-06" /> - <width sOffset="868.25605077998136" a="3.7703583642101179" b="-0.0011891295409001787" c="0.00031419130876669777" d="-1.8074891510651418e-05" /> - <width sOffset="868.30681854217926" a="3.7702988021852142" b="-0.0011573677183953823" c="0.00031687407360033311" d="-1.5442227055019072e-05" /> - <width sOffset="874.74223807416877" a="3.7718582063282211" b="0.0010024653792373868" c="1.8466547891602498e-05" d="-1.5357797701200785e-05" /> - <width sOffset="884.7967465577799" a="3.7681940361264639" b="-0.0032838945142064802" c="-0.00044447468279518301" d="-1.543443595283373e-05" /> - <width sOffset="885.50841881319309" a="3.7656262998503234" b="-0.0039399866930960965" c="-0.0022100251077355436" d="0.00073651274709360165" /> - <width sOffset="887.4971319989661" a="3.7548431002453482" b="-0.0039915189860031909" c="0.00076122132031081701" d="-2.2820396318457491e-05" /> - <width sOffset="893.53930875976334" a="3.753482341849363" b="0.002707974315947128" c="0.0003015562150175389" d="-2.2426370421629532e-05" /> - <width sOffset="894.85125504139103" a="3.7575034565910066" b="0.0033834244147015703" c="0.00021944176961765548" d="-2.0129236943715496e-05" /> - <width sOffset="904.56386435707486" a="3.7926231782208015" b="0.0019494673673812312" c="-0.00012083565548463219" d="1.0544594757244325e-05" /> - <width sOffset="905.51328080286066" a="3.7943741383785756" b="0.0017485350772970904" c="-0.00013994755364628831" d="8.3773461330636052e-06" /> - <width sOffset="914.96027200861329" a="3.805465788494609" b="0.0013472933830258847" c="9.70979461903914e-05" d="8.381905589486761e-06" /> - <width sOffset="917.93292630466237" a="3.810549027856438" b="0.0021467751273971996" c="-0.00024432921725142074" d="6.4513922255614458e-05" /> - <width sOffset="924.84022865491443" a="3.8349810670283913" b="0.0080055010853543971" c="0.048719478865387668" d="-0.27365724945109116" /> - <roadMark sOffset="0" color="standard" width="0.30102167138971142" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30102200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59186172057002" max="100" unit="km/h" /> - </lane> - <lane id="-4" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.9868067150994353" b="3.7870161049111562e-10" c="-0.0024903062456674619" d="0.00024391843257078882" /> - <width sOffset="5.7542977128494348" a="3.9508230767946575" b="-0.00443008758972014" c="0.00092309004227847629" d="-9.4825805378311677e-06" /> - <width sOffset="8.5078747185424834" a="3.945425551584504" b="0.0004378153620093056" c="0.00039886485645061081" d="-5.1361968637036017e-06" /> - <width sOffset="10.054508483611135" a="3.9470378044474952" b="0.0016347525515857924" c="0.0003745354211102426" d="-4.7493822556629324e-06" /> - <width sOffset="12.712370544460427" a="3.9539393826482345" b="0.0035250273277106165" c="0.00020120602818291767" d="-4.3991052592081283e-05" /> - <width sOffset="18.5963729490262" a="3.9726851585066876" b="0.0013237142254252827" c="-0.00010804993975115883" d="1.1874282138580335e-05" /> - <width sOffset="20.109016967222271" a="3.9744813364214879" b="0.0010783403826196466" c="-7.2215876483676069e-05" d="4.9224984822698995e-06" /> - <width sOffset="30.163525450833404" a="3.9830264225999459" b="0.0011190425942680443" c="7.723568356625689e-05" d="2.8236723221373955e-06" /> - <width sOffset="31.616884516410842" a="3.9848246028532133" b="0.0013614378834502115" c="6.0880071221395955e-05" d="-2.4768107840150195e-06" /> - <width sOffset="40.218033934444541" a="3.9994624051458847" b="0.00185901337561402" c="2.5078030590608002e-06" d="-2.4070452024365992e-06" /> - <width sOffset="48.327586679721641" a="4.0134193637144548" b="0.0014247908287798434" c="8.7124702276262671e-06" d="-5.620101679792382e-06" /> - <width sOffset="50.272542418055679" a="4.0161821270123639" b="0.0013949015141734703" c="-1.8119109579848878e-05" d="-9.265397486150975e-06" /> - <width sOffset="54.174649636134916" a="4.0207987872462576" b="0.00083025902031616441" c="-4.72943549967167e-05" d="-8.8357692346153628e-06" /> - <width sOffset="56.098075795097316" a="4.0221578864981717" b="0.00055025902881584445" c="-3.0898603632856361e-05" d="-3.1947245109846701e-06" /> - <width sOffset="60.327050901666809" a="4.023690697191566" b="0.00011751460947865546" c="-6.7574422503159331e-05" d="-3.0953840798576789e-06" /> - <width sOffset="66.43242613812815" a="4.0211848380187662" b="-0.0010537667614216577" c="-5.4502567397932079e-05" d="6.5790340038722782e-07" /> - <width sOffset="70.381559385277953" a="4.0162138893344377" b="-0.0014534612631358274" c="-4.6838021102830327e-05" d="7.6716416076328791e-07" /> - <width sOffset="80.436067868889083" a="3.9976448258221917" b="-0.0021626627205335695" c="-2.520118964720347e-05" d="8.1120358541909956e-07" /> - <width sOffset="89.603132641485658" a="3.9763266874105661" b="-0.0024201959300366709" c="-4.3939219106600824e-05" d="-6.2655241757732711e-07" /> - <width sOffset="90.490576352500213" a="3.9741438572374852" b="-0.0024996634333500573" c="-4.555097667002572e-05" d="-5.6939112002464557e-07" /> - <width sOffset="97.069983810419274" a="3.9555635446846837" b="-0.0031730047421673728" c="-0.0003144201592330646" d="2.8025755881544877e-05" /> - <width sOffset="100.54508483611136" a="3.9419161336229633" b="-0.0043429437888548531" c="-2.1783027013884217e-05" d="2.7840046823726734e-05" /> - <width sOffset="104.29051738606037" a="3.926807122039758" b="-0.0033344748434685338" c="0.00062656444997794361" d="1.2539599885812828e-05" /> - <width sOffset="107.09223779928844" a="3.9226589364768509" b="0.00047173590793472657" c="0.00033607536864494218" d="-2.118718322614234e-05" /> - <width sOffset="110.59959331972249" a="3.927533587784386" b="0.0020473023865149277" c="0.00011144037119598643" d="-2.0851475920398665e-05" /> - <width sOffset="114.56555036240302" a="3.9361052150983489" b="0.0019473307982548762" c="0.00029506882255216901" d="-3.3865493586251795e-05" /> - <width sOffset="120.65410180333362" a="3.9512563508338259" b="0.0017741860688662782" c="-0.00032151274535717651" d="-3.4700551524749993e-05" /> - <width sOffset="121.45893240470475" a="3.9524579189865507" b="0.0011892273906172557" c="-0.00039620058703541288" d="-2.1778979675712784e-05" /> - <width sOffset="124.37910081439207" a="3.9520097818816646" b="-0.0016818706241768281" c="-0.00016550837855309352" d="1.2373317858913606e-05" /> - <width sOffset="130.70861028694475" a="3.937871245956301" b="-0.002289919124838744" c="6.9745087205666263e-05" d="1.5312047390554668e-05" /> - <width sOffset="131.85409940289574" a="3.9353626989567054" b="-0.0020698597545408099" c="8.592823860649953e-05" d="2.1106717495023493e-06" /> - <width sOffset="138.15030769587943" a="3.9262636333545791" b="-0.00073680031650793067" c="0.00020666818049757988" d="-9.2317524982617837e-06" /> - <width sOffset="140.76311877055591" a="3.9255847242747248" b="0.00015410002769478267" c="0.00013523112695848702" d="-8.9610593466411889e-06" /> - <width sOffset="144.17062183233077" a="3.9273254572855212" b="0.00076355833266724391" c="9.262185675863411e-05" d="-5.6322726324293069e-06" /> - <width sOffset="150.81762725416704" a="3.9348390155968316" b="0.0012483275843900492" c="-1.8636035617443168e-05" d="-5.7522692830457394e-06" /> - <width sOffset="160.87213573777817" a="3.9396595133235457" b="-0.0008709696785057354" c="-0.00016089997531457036" d="-2.3803135921027325e-05" /> - <width sOffset="162.0245766298398" a="3.9384056451742855" b="-0.0013366653640104558" c="-2.2940880882181987e-05" d="-3.4897217477106439e-07" /> - <width sOffset="168.19231200309994" a="3.9292068756576271" b="-0.0016594776382743304" c="-0.00019821197054409613" d="1.5655564833283967e-05" /> - <width sOffset="170.9266442213893" a="3.923507419781485" b="-0.0023922824875256383" c="-6.8886048835220648e-05" d="1.5449973230642419e-05" /> - <width sOffset="179.20334784208728" a="3.9077481649962658" b="-0.00035743462062284669" c="-5.8892237795039612e-07" d="-1.9126066410316244e-06" /> - <width sOffset="180.98115270500043" a="3.9071001078779193" b="-0.00037766349577802885" c="-1.5266910418802181e-05" d="1.3870232147182297e-06" /> - <width sOffset="185.39045922643228" a="3.9052569582249985" b="-0.00043139702167559245" c="-0.0001302337488379966" d="8.3077248753286986e-06" /> - <width sOffset="191.03566118861158" a="3.9001658908434407" b="-0.0011075293152617103" c="5.3504003606045436e-07" d="7.7512771279665056e-06" /> - <width sOffset="198.30786314318084" a="3.8951210718784011" b="0.00013002956504684475" c="9.6329496177617871e-06" d="7.3919406760654634e-07" /> - <width sOffset="201.09016967222271" a="3.8955733459731228" b="0.00020080001531547637" c="1.4106376351031021e-05" d="-5.341923622750792e-08" /> - <width sOffset="211.14467815583384" a="3.8989640517750317" b="0.000468264421588497" c="1.3617128974230855e-05" d="-7.5248889897506604e-09" /> - <width sOffset="216.81937727628829" a="3.9020584380425909" b="0.00062208368704581071" c="0.00033246642894277649" d="-1.8523013511799507e-05" /> - <width sOffset="219.5402665246794" a="3.905839270746243" b="0.0020199015016715087" c="0.0088748907143216243" d="-0.0056461015617035246" /> - <width sOffset="220.59503312498526" a="3.911217913652691" b="0.0018973622841865609" c="7.9408895324835059e-05" d="-1.8458779114764144e-05" /> - <width sOffset="221.19918663944497" a="3.9123891256352108" b="0.0019731001660856996" c="4.574371562905068e-05" d="-1.8497581569825107e-05" /> - <width sOffset="227.58840350425348" a="3.9220384832521971" b="0.00029230326685801924" c="-0.00021448496764057043" d="3.9877320352551111e-05" /> - <width sOffset="230.21957837968733" a="3.9220490861941162" b="-8.1698656475280877e-06" c="4.3809425876138412e-05" d="-2.0795378824647917e-06" /> - <width sOffset="231.2536951230561" a="3.9220851875640053" b="7.5766698527278561e-05" c="3.808353239480868e-05" d="-2.1016238680593763e-06" /> - <width sOffset="241.30820360666723" a="3.9245607899452297" b="0.00020420982452256905" c="-2.3413343263545254e-05" d="-2.2090216583345462e-06" /> - <width sOffset="246.71459906127461" a="3.924631399042477" b="-0.00024265698380882624" c="-0.00036214217912297142" d="1.9643743214301827e-05" /> - <width sOffset="251.36271209027839" a="3.9176521058843194" b="-0.0023360059974351678" c="-8.9079655303148081e-05" d="1.9657980234400216e-05" /> - <width sOffset="253.77309479203643" a="3.9117791836570275" b="-0.0024228027795853728" c="0.00010851036458831429" d="2.1953898926588316e-05" /> - <width sOffset="258.05137363936251" a="3.9051190660576278" b="-0.00028881682790484278" c="0.00010271960838273838" d="-5.5766216508209957e-06" /> - <width sOffset="261.41722057388949" a="3.9050980110673548" b="0.00021312873495483715" c="4.0360768043389297e-05" d="-6.5591860288793061e-06" /> - <width sOffset="269.18302423686464" a="3.906115277523583" b="-0.00034671206277289137" c="-7.7262200038330389e-05" d="1.9143509170146045e-06" /> - <width sOffset="271.47172905750068" a="3.9049399938686786" b="-0.00067028971690716072" c="-6.4462456961304009e-05" d="1.5290982920562704e-06" /> - <width sOffset="281.52623754111181" a="3.8932380874676311" b="-0.0015028223106676147" c="-1.7647891789485173e-05" d="1.5869831463342725e-06" /> - <width sOffset="286.45190439274813" a="3.8855971652185781" b="-0.0015611665032494518" c="-0.00065666347177183138" d="0.00011566086317524908" /> - <width sOffset="290.40100572643388" a="3.8763143305591656" b="-0.001336294944626265" c="0.00018453400928225002" d="-2.5442551122889968e-06" /> - <width sOffset="291.58074602472294" a="3.8749905040962975" b="-0.00091151371519532925" c="0.0001740279382755543" d="-3.2664069806991237e-06" /> - <width sOffset="292.3060215597929" a="3.8744197022997309" b="-0.00066423193438298509" c="0.00011009153619326903" d="-3.9628699549081106e-06" /> - <width sOffset="301.63525450833407" a="3.8745869838516636" b="0.00035518698480394278" c="-1.3217608373089636e-06" d="-3.8701122923182241e-06" /> - <width sOffset="310.87876456619171" a="3.8747006539762205" b="-0.00066126438976799626" c="-9.1801422634960311e-06" d="3.5824581811944523e-06" /> - <width sOffset="311.6897629919452" a="3.874160242562291" b="-0.00066908580513178268" c="-4.8143142848174414e-06" d="3.887231883366326e-06" /> - <width sOffset="316.40718269234605" a="3.8713048341821925" b="-0.00045498814513355988" c="9.1707625321536344e-06" d="1.8974789164210921e-06" /> - <width sOffset="321.74427147555633" a="3.8694262098779011" b="-0.0001949514879134269" c="3.9376007954818035e-05" d="1.8623951301276623e-06" /> - <width sOffset="323.56102158495355" a="3.8692131629803619" b="-3.3437796674641864e-05" c="0.00014858640215597847" d="-4.3828285536537717e-06" /> - <width sOffset="329.46285502304283" a="3.8732903460665074" b="0.0012624433048224145" c="-5.1938651775007043e-05" d="2.5353363005537352e-06" /> - <width sOffset="331.79877995916746" a="3.8759882288560226" b="0.001061296253341473" c="-2.4821420032477372e-05" d="4.7674462270309832e-06" /> - <width sOffset="341.85328844277859" a="3.8889955975534836" b="0.0020080302354872383" c="0.00011572335813824892" d="5.0013711751770572e-06" /> - <width sOffset="341.95668107104916" a="3.889204455691861" b="0.0020321205143193771" c="-1.4236731053916585e-05" d="-3.3807672431964877e-06" /> - <width sOffset="347.5120468112334" a="3.8994746199398342" b="0.0015609274047760418" c="3.042724170772581e-05" d="-8.919465987017158e-07" /> - <width sOffset="351.90779692638972" a="3.9068482411306342" b="0.0017767242741716901" c="1.9919598507448131e-05" d="-9.1661115107606583e-07" /> - <width sOffset="361.96230541000085" a="3.9257943832688089" b="0.0018992985179459012" c="-1.9451660250911033e-05" d="3.8487589629668876e-06" /> - <width sOffset="363.69914032308259" a="3.9290546383662392" b="0.0018665603197462045" c="0.0015068467576625397" d="-0.00060484410592612778" /> - <width sOffset="365.69367562786425" a="3.9339728553600946" b="0.00065895843987674556" c="-0.00019970494764245269" d="3.2031440783643553e-06" /> - <width sOffset="372.00490321452338" a="3.9309823521064127" b="-0.0014790493096288929" c="-0.00018690333290491808" d="2.2213990679795318e-05" /> - <width sOffset="372.01681389361198" a="3.9309647091473598" b="-0.0014834921464712998" c="-0.0001964453490060148" d="2.1584130273951053e-05" /> - <width sOffset="376.07676745959935" a="3.9231481815988851" b="-0.0020112820419303135" c="-1.9743644749332402e-05" d="3.4802815608905882e-06" /> - <width sOffset="382.07132237722317" a="3.9111316552452262" b="-0.0018728022643549624" c="4.2165271621651969e-05" d="3.3461892647824859e-06" /> - <width sOffset="389.83003446101003" a="3.9007022280001493" b="-0.00061420803830451005" c="5.5851394953125791e-05" d="-9.8230435105432542e-07" /> - <width sOffset="392.1258308608343" a="3.8995746200032859" b="-0.00037329341434786658" c="5.0641004632596734e-05" d="-4.0977663237710221e-07" /> - <width sOffset="402.18033934444543" a="3.9005242823006676" b="0.00052077058660777629" c="3.8586321491355232e-05" d="-4.5082458604724773e-07" /> - <width sOffset="410.70576549330747" a="3.9074892842413416" b="0.0010803985522994074" c="0.00043833461629463151" d="-3.1339575001760086e-05" /> - <width sOffset="412.23484782805656" a="3.9100541263319366" b="0.0022010734865428277" c="0.00029384262454299165" d="-3.2350450678018288e-05" /> - <width sOffset="420.71143124298277" a="3.9301215503591713" b="0.00020925751199136219" c="-2.3372516387024387e-05" d="-1.1396225829734936e-07" /> - <width sOffset="422.28935631166769" a="3.930393101297033" b="0.0001346461070053837" c="-3.0355146876378145e-05" d="8.407928316422658e-07" /> - <width sOffset="426.32677978875859" a="3.930497247081103" b="-6.9350300350082945e-05" c="-3.6744663308738698e-05" d="2.2495491623477355e-06" /> - <width sOffset="432.34386479527882" a="3.929239673704604" b="-0.00026720493799735427" c="-1.9700902816460572e-07" d="1.3959486342529341e-06" /> - <width sOffset="437.1395041726725" a="3.9281076847233978" b="-0.00017278176878118807" c="1.3998437318293029e-06" d="-3.457410732082421e-07" /> - <width sOffset="442.39837327888995" a="3.9271874778852718" b="-0.00018674371750025765" c="-2.9910032095750896e-06" d="-1.8513830262277617e-07" /> - <width sOffset="447.11648456526916" a="3.9262203741146298" b="-0.0002273313442204456" c="-2.6422547618193808e-05" d="2.7615153411876646e-07" /> - <width sOffset="452.45288176250108" a="3.9242967707614227" b="-0.00048574174873623364" c="-2.219175216870187e-05" d="2.782850629981501e-07" /> - <width sOffset="460.39180873645574" a="3.9191810762810775" b="-0.00078548109660830912" c="-1.2800964895864927e-05" d="2.1622629686110612e-07" /> - <width sOffset="462.50739024611221" a="3.9174640812856483" b="-0.00083674078342582279" c="-1.0128735035505838e-05" d="3.2895925446379347e-07" /> - <width sOffset="472.56189872972334" a="3.908361486293205" b="-0.00094065311537817398" c="3.2126208363168498e-06" d="2.5417008381947689e-07" /> - <width sOffset="473.08946036037366" a="3.9078661652627114" b="-0.00093705118157593002" c="-7.7097297330130362e-05" d="3.1538919090032634e-06" /> - <width sOffset="482.61640721333447" a="3.8946685120907691" b="-0.0015472874998144744" c="1.4478892642659436e-05" d="3.2548857800191646e-06" /> - <width sOffset="492.67091569694566" a="3.8838834156291897" b="-0.0002689913221953746" c="0.00011147872977235076" d="3.4259253897521608e-06" /> - <width sOffset="493.5251820964798" a="3.8837371151207343" b="-7.102583215083811e-05" c="1.3702916196916826e-05" d="-1.2752426076220769e-07" /> - <width sOffset="496.73462833241797" a="3.8836460932075552" b="1.2991005255116137e-05" c="-7.4084087553493119e-05" d="2.0487237651348588e-06" /> - <width sOffset="502.72542418055679" a="3.881505559739324" b="-0.00065407043921340477" c="-3.7856851474020779e-05" d="1.9808830808986045e-06" /> - <width sOffset="512.77993266416786" a="3.873115587389381" b="-0.00081457343093343279" c="2.0656980374934053e-05" d="2.0596126199918356e-06" /> - <width sOffset="522.83444114777899" a="3.8691072073899009" b="0.00022545626396651763" c="7.4795704522856224e-05" d="5.8197806611210687e-06" /> - <width sOffset="524.03181748943234" a="3.8694943895062464" b="0.0004296051130752324" c="3.5715074801401041e-05" d="-1.3498899842777873e-06" /> - <width sOffset="532.88894963139012" a="3.8751633173474884" b="0.00074457968021862902" c="6.7229295484315689e-08" d="-1.4074125125168156e-06" /> - <width sOffset="542.78072253596633" a="3.881172899416991" b="0.00033277571490002541" c="-3.3860763960832059e-05" d="-8.2792608236609304e-07" /> - <width sOffset="542.94345811500136" a="3.8812261535673596" b="0.00032168923525692809" c="-3.4698412085642084e-05" d="-5.6825396269909631e-07" /> - <width sOffset="546.80246494512141" a="3.8819181716098665" b="2.8499215754141288e-05" c="-0.00011204911438860893" d="3.6640178662697277e-06" /> - <width sOffset="552.99796659861249" a="3.8786651570889372" b="-0.00093798009963386338" c="-4.5157034064217797e-05" d="3.3774477552906214e-06" /> - <width sOffset="556.44542926282998" a="3.875033198888886" b="-0.001128911589789239" c="0.00057801782849941036" d="-3.272548616216117e-05" /> - <width sOffset="563.05247508222362" a="3.883368061571383" b="0.0022233666758970675" c="-7.0649328880844332e-05" d="-3.2778841177689322e-05" /> - <width sOffset="567.56141385015155" a="3.8889519403728112" b="-0.00041297384499308231" c="6.3122586744634836e-05" d="3.3652699956361763e-06" /> - <width sOffset="569.69650659089632" a="3.888390709301965" b="-9.7405719986498921e-05" c="0.00021989503730433744" d="-1.0791865500373734e-05" /> - <width sOffset="573.10698356583475" a="3.8901880894724226" b="0.0010259162054179519" c="0.0001100111041641815" d="-1.0587451074549427e-05" /> - <width sOffset="583.16149204944588" a="3.9008630124360004" b="2.7175317567744938e-05" c="-0.00020992441551387104" d="-1.0528514330287016e-05" /> - <width sOffset="583.43564621452151" a="3.9008544676911674" b="-9.0301973548358671e-05" c="-2.2903160837455073e-05" d="1.7079092395727608e-07" /> - <width sOffset="593.21600053305701" a="3.8979402552303597" b="-0.00048929284267556898" c="-1.5021850411042263e-05" d="1.2539975387771799e-07" /> - <width sOffset="598.28947986723097" a="3.8950875490292489" b="-0.00063203549648567481" c="-0.00042870609905762104" d="2.7897538469073804e-05" /> - <width sOffset="603.27050901666814" a="3.8847505339440085" b="-0.0028263623438006197" c="-1.3604625715507989e-05" d="2.8260940494939805e-05" /> - <width sOffset="608.0873578469342" a="3.8739791808601618" b="-0.0009902914021697139" c="2.6504713753980387e-05" d="5.6044211279467196e-07" /> - <width sOffset="613.32501750027927" a="3.8696000046321943" b="-0.00066652210479734247" c="3.355602797670786e-05" d="2.2554978045686662e-07" /> - <width sOffset="613.73306863702089" a="3.8693336321251071" b="-0.0006390242880795605" c="3.3105059382284858e-05" d="-4.9101099999050648e-07" /> - <width sOffset="622.60524446332715" a="3.8659270665372358" b="-0.00016754700776327897" c="9.6919120406420442e-05" d="-1.8451414460570268e-06" /> - <width sOffset="623.3795259838904" a="3.865854585650724" b="-2.0780192536060148e-05" c="9.2495843720558508e-05" d="-1.858911006966201e-06" /> - <width sOffset="633.43403446750153" a="3.873106871457022" b="0.0012754508414894502" c="3.5931275184782559e-05" d="-1.8452306904257542e-06" /> - <width sOffset="640.536892389694" a="3.8833177454292032" b="0.0015066013919672588" c="-0.00038004136650350486" d="2.3540864971224683e-05" /> - <width sOffset="643.48854295111266" a="3.8850590591894987" b="-0.00012161616411092121" c="-0.00017132298106808307" d="2.3603088763644334e-05" /> - <width sOffset="651.77188759682417" a="3.8857114066649974" b="0.0018986219706634117" c="1.0538488820873349e-05" d="-3.6145423290610495e-06" /> - <width sOffset="653.54305143472379" a="3.8890871536623006" b="0.0019019360620053335" c="-9.3852556385053381e-06" d="-3.4644810868084415e-06" /> - <width sOffset="655.29741317929222" a="3.8923762450962203" b="0.0018370170099709852" c="-1.1975244075418449e-05" d="-2.3048893764477943e-07" /> - <width sOffset="662.815675843995" a="3.9054125799472867" b="0.0016178662898575836" c="-8.0999944251412495e-05" d="4.1530421492025639e-06" /> - <width sOffset="663.59755991833492" a="3.9066300302591763" b="0.001498817953074336" c="-7.4342268422470626e-05" d="4.3961224804798005e-06" /> - <width sOffset="668.28564656737353" a="3.9124756693750746" b="0.0010916279636423972" c="0.00016730188718442295" d="-1.3356899897521906e-05" /> - <width sOffset="673.65206840194605" a="3.9210876065678746" b="0.0017332775881674341" c="-4.7736436886652172e-05" d="-1.3589671794785252e-05" /> - <width sOffset="681.9889022068877" a="3.9243455297990866" b="-0.0018962245298430229" c="-0.00019841433798061187" d="1.6220867747022773e-05" /> - <width sOffset="683.70657688555718" a="3.9205852347591175" b="-0.002434272647046788" c="-0.00011335673759673624" d="1.7327294675130829e-05" /> - <width sOffset="689.38133035345561" a="3.9062873738207733" b="-0.0020468521123006228" c="0.00014574417201887466" d="1.4326796973311981e-05" /> - <width sOffset="691.01211964486504" a="3.9033991280187199" b="-0.0014571908224479254" c="0.0005175482453732901" d="-2.4989750538475195e-05" /> - <width sOffset="693.76108536916831" a="3.9027852529206637" b="0.00082172537023480932" c="0.00030607120992082876" d="-2.6136087390408266e-05" /> - <width sOffset="703.74670428723198" a="3.9154863510036781" b="-0.00088394422195737371" c="-0.00040107537932201003" d="-2.7809818774694028e-05" /> - <width sOffset="704.65190199965753" a="3.9143369457685662" b="-0.0016784099234529541" c="8.8132897714868841e-06" d="-2.6570293487594708e-06" /> - <width sOffset="713.87010233639057" a="3.8975326376103547" b="-0.0021932695220055528" c="-6.4367340291529942e-05" d="-2.6866345127432372e-06" /> - <width sOffset="723.9246108200017" a="3.8662424862627995" b="-0.0043024344236658749" c="-0.00014508733808582042" d="-2.6593560355724954e-06" /> - <width sOffset="726.85510662991487" a="3.8523213115842632" b="-0.0052213041950276836" c="-0.00044713128231721737" d="3.5336116597683462e-05" /> - <width sOffset="729.12828473430022" a="3.8385569463965417" b="-0.0067063412287251198" c="-0.004128457795068984" d="0.0014259602263759347" /> - <width sOffset="731.18953661488001" a="3.8196808863062079" b="-0.0055502386319528051" c="0.0001056129808753679" d="3.4188251521862859e-05" /> - <width sOffset="733.97911930361283" a="3.8057620477767737" b="-0.0041628708537334433" c="0.00039218192975408721" d="3.4306976787995337e-05" /> - <width sOffset="736.48625593755412" a="3.7983309633976274" b="-0.0015494298855007515" c="0.00018615234654421027" d="-5.2924858925456601e-06" /> - <width sOffset="744.03362778722396" a="3.794965259440132" b="0.00035606728169669468" c="6.7993899471379063e-05" d="-5.3528574580475419e-06" /> - <width sOffset="752.52193812260725" a="3.7996129460067074" b="0.00035333110106954479" c="-7.9047209191643761e-06" d="-9.0750629988660628e-06" /> - <width sOffset="754.08813627083521" a="3.800112077419334" b="0.00026178762992683344" c="-4.3043466776276364e-05" d="-5.8915494572117629e-06" /> - <width sOffset="759.3040270940387" a="3.7994704965453137" b="-0.00066808036493816621" c="-0.0013459224987640078" d="0.00018850195884389021" /> - <width sOffset="763.76967816238789" a="3.7864335323915399" b="-0.0014115803469211788" c="0.00033060033263954103" d="-2.3866012047267357e-05" /> - <width sOffset="764.14264475444634" a="3.7859518097381266" b="-0.0011749341669766396" c="0.00031142283623340956" d="-2.5138926810165393e-05" /> - <width sOffset="767.31027718034238" a="3.7845558263690724" b="4.1287911383718371e-05" c="0.00017626429595758529" d="-2.7516515367837424e-05" /> - <width sOffset="771.86617981724146" a="3.7858004590690086" b="-6.6045067425672286e-05" c="-8.8427753505297463e-06" d="-6.1080743461458353e-06" /> - <width sOffset="774.19715323805747" a="3.7855211031411566" b="-0.00020683312911688972" c="-5.4280448184921659e-05" d="-5.7295093816354873e-06" /> - <width sOffset="780.20654408419068" a="3.7810745501750369" b="-0.0014799434929262812" c="-3.0602907958696241e-05" d="2.0115658436457244e-07" /> - <width sOffset="784.2516617216686" a="3.7746005645670575" b="-0.0017176536569014349" c="-3.4620460336511081e-05" d="-9.8350760138108746e-07" /> - <width sOffset="787.43995311183596" a="3.7687403851157018" b="-0.0019684065484059706" c="-0.00026439731068567286" d="2.5402792501189098e-05" /> - <width sOffset="790.14288590738965" a="3.7619899028228274" b="-0.0028409362257425536" c="-0.00037450561030141126" d="4.7358730739178392e-05" /> - <width sOffset="794.30617020527973" a="3.7470884937417512" b="-0.0034966853119803329" c="0.00021738315220104363" d="4.7305684448263117e-05" /> - <width sOffset="796.76277691518169" a="3.7405117287915157" b="-0.0015721779206345136" c="0.00013477584369098454" d="2.1897646700630632e-05" /> - <width sOffset="799.85262422165601" a="3.7375866294067999" b="-0.00011212359338255411" c="3.4298239452807466e-05" d="-2.5962573066613781e-07" /> - <width sOffset="804.36067868889086" a="3.7377544123417814" b="0.00018128429515053729" c="3.2854721727953654e-05" d="-4.9428150587751628e-08" /> - <width sOffset="811.43198736726322" a="3.7406617002787379" b="0.00063852132520269677" c="0.00055084028759338761" d="-3.061239352983323e-05" /> - <width sOffset="814.41518717250199" a="3.7466560033885017" b="0.0031077513516239402" c="0.00027689866644299132" d="-3.0515615736238555e-05" /> - <width sOffset="818.85189314992647" a="3.7632297132411447" b="0.0037627461977970643" c="-0.0001017813340947567" d="-3.1009288042718591e-05" /> - <width sOffset="822.97597856015409" a="3.7748414172557552" b="0.0013410109687276863" c="5.9411754510762033e-06" d="1.8553196816995793e-06" /> - <width sOffset="824.46969565611312" a="3.7768639475110657" b="0.0013711785558153454" c="8.336360292678724e-06" d="-4.0388118172884971e-07" /> - <width sOffset="834.52420413972425" a="3.7910827010458568" b="0.0014163257148157886" c="-6.5225524195782917e-06" d="-1.5819440175641561e-07" /> - <width sOffset="838.4022179292308" a="3.7964679129702774" b="0.0013585993658330501" c="-0.00024998612405700827" d="6.4170182140452789e-06" /> - <width sOffset="844.57871262333538" a="3.7968345792266129" b="-0.00099506641911277852" c="-0.00013456373192785383" d="6.9117341561319957e-06" /> - <width sOffset="848.1171502457297" a="3.7919349996889919" b="-0.0016877412137798783" c="-0.00093756996676103556" d="0.00019254170832759738" /> - <width sOffset="852.2928576399529" a="3.7825584514437618" b="0.00055400221626111497" c="0.00028421194388486229" d="-1.6879816624985995e-05" /> - <width sOffset="854.63322110694651" a="3.7851953521323525" b="0.0016069531995419348" c="0.00016225103879172217" d="-1.7945310686747283e-05" /> - <width sOffset="859.37432671423244" a="3.7945487301428193" b="0.001935323303324787" c="-9.1941854746509661e-05" d="-1.5371458683701155e-05" /> - <width sOffset="863.23810918562276" a="3.7997671636887427" b="0.00053640366154002672" c="-0.00060974235431308173" d="4.1590991510786181e-05" /> - <width sOffset="864.68772959055764" a="3.799390128995459" b="-0.00096918841195527605" c="-0.00042880267287073845" d="4.1459223238062907e-05" /> - <width sOffset="868.30681854217926" a="3.792231431305312" b="-0.002443863999241081" c="1.5895547601159489e-05" d="3.8826560989767874e-05" /> - <width sOffset="871.93600542834338" a="3.7854274623964241" b="-0.00079433456552283283" c="0.00018276289423867166" d="-6.576067411909655e-06" /> - <width sOffset="874.74223807416877" a="3.7844922979601674" b="7.6057393281686765e-05" c="0.00012733201672042368" d="-6.3440934827689499e-06" /> - <width sOffset="884.7967465577799" a="3.7916810090995798" b="0.00071254606998255544" c="-6.1978857686112719e-05" d="-7.6845278325901067e-06" /> - <width sOffset="886.50888628858877" a="3.7926807326381766" b="0.00043273334815810329" c="-0.00040732441663622252" d="3.817996660428659e-05" /> - <width sOffset="893.53930875976334" a="3.7888574885154487" b="0.00036675320038053599" c="0.00044394996922295327" d="3.7785940708777671e-05" /> - <width sOffset="894.85125504139103" a="3.7901881024649375" b="0.0017267420517991959" c="0.00059861529292978149" d="3.2775782682034591e-05" /> - <width sOffset="896.72806336540521" a="3.795754111517057" b="0.0043200635645064354" c="6.3672639810086513e-05" d="-3.2314051984408494e-06" /> - <width sOffset="904.90576352500216" a="3.8335731927819747" b="0.0047131565437365935" c="-1.4840981496118653e-05" d="-3.0645900739497075e-06" /> - <width sOffset="905.51328080286066" a="3.8364303522021697" b="0.0046917310270128618" c="2.8719177439420464e-05" d="-8.9734144770205338e-07" /> - <width sOffset="911.88333228642159" a="3.8672503285967204" b="0.0049483805364473358" c="0.00083657602774311532" d="-3.3980819662677382e-05" /> - <width sOffset="914.96027200861329" a="3.8894066304982569" b="0.0091314224086017672" c="0.00052196951436595061" d="-3.4219341036893453e-05" /> - <width sOffset="917.93292630466237" a="3.9202647802546986" b="0.011327536808239527" c="0.00063297938736276305" d="-9.0351357703013168e-05" /> - <width sOffset="922.540175909239" a="3.9770535788061157" b="0.011406528119182451" c="0.0034011422639139933" d="-0.0015371775295573873" /> - <roadMark sOffset="0" color="standard" width="0.29540106551871476" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29540100000000002" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59185036388317" max="100" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link /> - <width sOffset="0" a="5.0021542512302979" b="-3.0067464781453608e-10" c="-0.00228819133769301" d="6.8127387858373179e-05" /> - <width sOffset="5.7542977128494348" a="4.9393685083962735" b="-0.019566378282281176" c="-0.00031477397323854516" d="0.00032152840096648236" /> - <width sOffset="7.3727141606921638" a="4.9082404635903512" b="-0.018058738214219976" c="-0.0011123985590445174" d="5.4732861282263612e-05" /> - <width sOffset="10.054508483611135" a="4.8528659095899069" b="-0.022844266866370172" c="-0.00067844196765275079" d="5.3295236086648451e-05" /> - <width sOffset="18.5963729490262" a="4.6414477427797625" b="-0.022768772889259672" c="0.00022000567249959074" d="-2.5700986430439055e-06" /> - <width sOffset="20.109016967222271" a="4.6075011925824079" b="-0.022120834226170782" c="0.00021877913383145053" d="4.6027730099828395e-06" /> - <width sOffset="30.163525450833404" a="4.4118825980594991" b="-0.016325474571324394" c="0.00035613701135838057" d="5.8784336678086172e-06" /> - <width sOffset="31.616884516410842" a="4.3889261188869328" b="-0.015253034453305368" c="0.00041043447759379404" d="1.1178916773935882e-05" /> - <width sOffset="37.418342294521018" a="4.3164330266099826" b="-0.0093620544022994141" c="0.0030648062129112075" d="-0.003621199776961322" /> - <width sOffset="38.169585304595223" a="4.309594219281851" b="-0.010888272666750996" c="-0.0074552692403784624" d="0.001441942129683933" /> - <width sOffset="40.218033934444541" a="4.2684011154742354" b="-0.023279963904344749" c="0.0014756240951736489" d="0.0014319839528623591" /> - <width sOffset="41.714497609167161" a="4.241666857575531" b="-0.0092431584365786496" c="0.0026405968047471182" d="-0.00052286022372412765" /> - <width sOffset="44.832867799550151" a="4.2226659590160738" b="-0.008027685082874365" c="-0.0012459523111999183" d="0.00017130985996044183" /> - <width sOffset="48.651825741104645" a="4.1833785581824001" b="-0.010048789031852967" c="0.000218241599973655" d="-2.6022645518093479e-05" /> - <width sOffset="50.272542418055679" a="4.1675547954417862" b="-0.0095464362396259286" c="0.00012892298421842107" d="-6.3956018274223706e-06" /> - <width sOffset="54.174649636134916" a="4.131886619874269" b="-0.0088324403817290221" c="-2.5234465756338129e-05" d="-6.8252300789525812e-06" /> - <width sOffset="59.089656591581537" a="4.087055135720842" b="-0.0095751327871938397" c="0.0003027301806739062" d="-7.5150680938725474e-05" /> - <width sOffset="60.327050901666809" a="4.0755280618837828" b="-0.0091711392767203706" c="4.3011505572897551e-05" d="-6.5305455940868596e-05" /> - <width sOffset="63.644342535172093" a="4.04319406710158" b="-0.011041722598854727" c="-0.0015415822567212531" d="0.00016438112325584041" /> - <width sOffset="66.43242613812815" a="4.0039880886874091" b="-0.015804437334693489" c="-0.00023642461259637732" d="0.00016062783577562302" /> - <width sOffset="70.381559385277953" a="3.9477800215554737" b="-0.01015649376954225" c="0.0016667902509187489" d="0.00016049282155508628" /> - <width sOffset="71.332412212166489" a="3.9397676444240988" b="-0.0065514344873763009" c="0.0038093822585474027" d="-0.0082123181861707764" /> - <width sOffset="71.689586754755837" a="3.9375394126262195" b="-0.0069732320692380469" c="-0.004257120777311778" d="0.00069286649063496158" /> - <width sOffset="74.850934095398856" a="3.8948394711218253" b="-0.013115940630159152" c="-2.0767982599498775e-05" d="2.0885947840978933e-05" /> - <width sOffset="80.436067868889083" a="3.8245761302213008" b="-0.011393393371427385" c="0.00033128968435053237" d="2.083194284484512e-05" /> - <width sOffset="81.071617969263755" a="3.8174742216009605" b="-0.010947047426453553" c="0.00039960282864767932" d="-4.5718005146266522e-05" /> - <width sOffset="84.905096462170704" a="3.7788058084868705" b="-0.0098988644282312736" c="-1.7037037838474737e-05" d="1.0983949004241594e-06" /> - <width sOffset="89.603132641485658" a="3.732038447305337" b="-0.0099862158546057921" c="3.9490956002046762e-05" d="2.5361509023330486e-06" /> - <width sOffset="90.490576352500213" a="3.7232091167472108" b="-0.009910131768348927" c="4.433174379462884e-05" d="2.1145042062709299e-06" /> - <width sOffset="100.54508483611136" a="3.630198518579002" b="-0.0083773783655573374" c="0.00010822429099352118" d="2.2498219764806672e-06" /> - <width sOffset="104.29051738606037" a="3.6004580219643829" b="-0.0074720015046180312" c="-0.00020202446391446937" d="1.755026891440157e-05" /> - <width sOffset="110.59959331972249" a="3.5496825121186992" b="-0.0079254410386963552" c="0.0001320622071483552" d="1.7189815756448493e-05" /> - <width sOffset="110.7820181871263" a="3.548241213821564" b="-0.0078755420064434128" c="0.00015315045804056984" d="9.2634448393751499e-06" /> - <width sOffset="114.56555036240302" a="3.5211379377009981" b="-0.0063188207805697123" c="-0.0001734205418350281" d="2.2277462505228137e-05" /> - <width sOffset="120.65410180333362" a="3.4812648367689869" b="-0.0059530733025202846" c="0.00023652840059522042" d="2.0550938769788954e-05" /> - <width sOffset="122.43529528843202" a="3.4715278187617917" b="-0.0049148647882295308" c="0.00061661200827807603" d="1.0481172467734277e-06" /> - <width sOffset="124.37910081439207" a="3.4643117696890906" b="-0.0025058365746152499" c="0.00020123694275202855" d="-3.310418028781327e-05" /> - <width sOffset="129.3703125271737" a="3.452701621471471" b="-0.0029710975237556532" c="-0.00039829259752291213" d="1.4798550752937344e-05" /> - <width sOffset="130.70861028694475" a="3.4480475213087729" b="-0.0039576512770434138" c="-0.0003190656156115293" d="2.6020202139661731e-05" /> - <width sOffset="138.15030769587943" a="3.4116496442082322" b="-0.0043835233871446465" c="0.00018096554194345384" d="3.7362626387403026e-05" /> - <width sOffset="139.53835379648655" a="3.4060136921299744" b="-0.0036651897816740524" c="0.00042027692358458839" d="-0.00073432564629920228" /> - <width sOffset="140.07956632080629" a="3.4040367387335886" b="-0.0038555476826150192" c="-0.00044278307515584518" d="1.6450660488446423e-05" /> - <width sOffset="140.76311877055591" a="3.4011996360627936" b="-0.0044378191792297282" c="-0.00040937779684272781" d="1.5954939853417521e-05" /> - <width sOffset="147.01157508987313" a="3.3613790584116767" b="-0.0076849817144064251" c="-0.00039400366282505182" d="3.1597222561133249e-05" /> - <width sOffset="150.81762725416704" a="3.3281641671822131" b="-0.0093110234681580174" c="-3.351024802094203e-05" d="3.0214102068425224e-05" /> - <width sOffset="155.05091850242815" a="3.2904395199080776" b="-0.0079703622041656201" c="-0.00010970486517350401" d="2.2874589132289632e-05" /> - <width sOffset="160.87213573777817" a="3.2448370547612742" b="-0.0069221698035656261" c="0.00027132568808106944" d="4.1483151726061547e-05" /> - <width sOffset="162.0245766298398" a="3.2372835095677752" b="-0.0061315123559193612" c="0.00019449211320671532" d="1.8028987979806382e-05" /> - <width sOffset="169.79024615614583" a="3.2098403981966541" b="0.0001509586642730506" c="0.00093659641565245618" d="-8.6584014614605475e-05" /> - <width sOffset="170.9266442213893" a="3.2110944025223853" b="0.0019442074380148229" c="0.00064838513947411511" d="-7.9637060075160473e-05" /> - <width sOffset="177.40235370790856" a="3.2292483805055259" b="0.00032301928434609275" c="-0.00098378072413761995" d="0.00015314781674692659" /> - <width sOffset="180.98115270500043" a="3.2248241001555407" b="-0.0008340267923932571" c="0.00067185668391774142" d="0.00015176105411297955" /> - <width sOffset="181.57783280046277" a="3.2245978914347839" b="0.00012983338869469458" c="6.6133071878856557e-05" d="-6.0058771537855087e-06" /> - <width sOffset="185.39045922643228" a="3.2257213654357049" b="0.00037220832584981166" c="0.00013075284397361141" d="-1.2926578814467469e-05" /> - <width sOffset="188.76211729345025" a="3.2279672668256705" b="0.00081306501479416803" c="-0.00039953993230264906" d="2.4411729761547443e-05" /> - <width sOffset="191.03566118861158" a="3.2280374686705802" b="-0.00062512530472472096" c="-0.00025275042786372865" d="1.7138833033898953e-05" /> - <width sOffset="198.30786314318084" a="3.2167161655750958" b="-0.0015820721089095414" c="0.00028116938586147049" d="2.4150916093812568e-05" /> - <width sOffset="200.45612416525617" a="3.2148545045178523" b="-3.965036942289813e-05" c="0.00033982322266183944" d="-2.2121407561752465e-05" /> - <width sOffset="201.09016967222271" a="3.2149603393362112" b="0.00036459707851732381" c="0.00029982981708809569" d="-2.1247699811293426e-05" /> - <width sOffset="210.30611244359181" a="3.2271545785417874" b="0.0004770949650376821" c="-3.5389933234741942e-05" d="2.8694688024459327e-08" /> - <width sOffset="211.14467815583384" a="3.2275297850074454" b="0.00041780192955562798" c="-3.7319545155643345e-05" d="9.4026980551313806e-09" /> - <width sOffset="219.5402665246794" a="3.2284125403889439" b="-0.0002068488759037238" c="-0.0087307042119222442" d="0.0056275879508893021" /> - <width sOffset="220.59503312498526" a="3.2250849319957986" b="0.00015806556979776175" c="6.194992078904689e-06" d="-5.4831710579213852e-08" /> - <width sOffset="221.19918663944497" a="3.2251826769551952" b="0.00016549098129714436" c="6.7698717472553443e-06" d="5.0934862291441268e-08" /> - <width sOffset="223.4738681627411" a="3.2255947442238524" b="0.00019708022348575242" c="2.4348207168316296e-05" d="6.4579700381001526e-09" /> - <width sOffset="231.2536951230561" a="3.2286047276517795" b="0.00057710252022877533" c="2.3451625851323792e-05" d="5.9564502488242534e-08" /> - <width sOffset="231.25849793449663" a="3.2286074999073291" b="0.0005773277916967059" c="-2.1917721794113364e-05" d="9.3524007035182238e-07" /> - <width sOffset="241.30820360666723" a="3.2331451147835883" b="0.00042016264287573373" c="6.3489353012331309e-06" d="1.0867937897234991e-06" /> - <width sOffset="246.71459906127461" a="3.2357739935770109" b="0.00058411040437193339" c="0.0003268761482170945" d="-2.0765971082923944e-05" /> - <width sOffset="251.36271209027839" a="3.2434657831550542" b="0.0022768813756322082" c="3.7226168338951989e-05" d="-2.0876027614314475e-05" /> - <width sOffset="258.05137363936251" a="3.254113589605109" b="-2.6999420166338561e-05" c="-9.4106420878663813e-05" d="6.6544929631932527e-06" /> - <width sOffset="261.41722057388949" a="3.2532103343791521" b="-0.00043433026984072076" c="-2.3833822116626857e-05" d="7.6099177213308993e-06" /> - <width sOffset="269.18302423686464" a="3.2519640598158146" b="0.00057230221797503864" c="0.00011826847404457284" d="-8.6361922476265697e-07" /> - <width sOffset="271.3452708172174" a="3.2537457296646641" b="0.0010716403616006052" c="7.0963294224126757e-05" d="-3.2719852678607144e-06" /> - <width sOffset="271.47172905750068" a="3.2538823756248947" b="0.0010894311745535622" c="7.0060466801785543e-05" d="-2.8466963966345042e-06" /> - <width sOffset="281.42720246304265" a="3.2688631338599201" b="0.0016379807736409361" c="-5.4159155841663841e-05" d="-2.6365524698261135e-07" /> - <width sOffset="281.52623754111181" a="3.2690248199675063" b="0.0016272457034728091" c="-5.5541493550980991e-05" d="-3.0016314285909345e-07" /> - <width sOffset="291.58074602472294" a="3.2794660132896789" b="0.00041932756263688461" c="-6.302659637960697e-05" d="-3.2042237542310957e-07" /> - <width sOffset="292.3060215597929" a="3.2797368655265489" b="0.0003273986156517491" c="-6.8945130387400788e-06" d="3.7604059876727471e-07" /> - <width sOffset="301.63525450833407" a="3.2824965145397371" b="0.00029694319432903499" c="3.2781764295921473e-06" d="4.2296716131204102e-07" /> - <width sOffset="311.6897629919452" a="3.2862434550784565" b="0.00049114133621012209" c="2.03866330208057e-05" d="1.1819346191067168e-07" /> - <width sOffset="312.54349720363808" a="3.2866776918306089" b="0.0005262093085550767" c="5.5797824503129516e-06" d="-3.1776561458654239e-06" /> - <width sOffset="316.40718269234605" a="3.2886108156717677" b="0.00042701757974726389" c="9.7754266165906873e-06" d="-1.1879031788836396e-06" /> - <width sOffset="321.74427147555633" a="3.2909877044479323" b="0.00042985167550248384" c="-8.5707626244308341e-06" d="-1.2444034691332405e-06" /> - <width sOffset="328.79002738212569" a="3.2931556036099385" b="0.00012375011693622649" c="1.0848582197612809e-05" d="-1.2478583977692865e-06" /> - <width sOffset="329.46285502304283" a="3.2932433971486219" b="0.00013665386347968173" c="0.00013125468292292546" d="-8.1660232560348435e-06" /> - <width sOffset="331.79877995916746" a="3.294174722652361" b="0.00061618120949304177" c="7.721924156576905e-05" d="-8.4041994616253098e-06" /> - <width sOffset="341.85328844277859" a="3.299634077530686" b="-0.00037983651130604995" c="-0.00016701204837550067" d="-8.5071121574249795e-06" /> - <width sOffset="341.95668107104916" a="3.2995930104680689" b="-0.00041464496459406888" c="-3.8139362505957457e-05" d="-1.2497373904659049e-07" /> - <width sOffset="351.90779692638972" a="3.2915669412846587" b="-0.0012108298580739956" c="-4.0258722892369527e-05" d="4.7002930348589129e-08" /> - <width sOffset="358.76834793425684" a="3.2813802950833422" b="-0.0017565870185546071" c="-0.00019322441514644145" d="1.0367956683942816e-05" /> - <width sOffset="361.96230541000085" a="3.2741364944526419" b="-0.0026735862377560418" c="-9.8171001751160177e-05" d="6.8014903781207171e-06" /> - <width sOffset="363.69914032308259" a="3.2692324095699252" b="-0.0029530478482285216" c="-0.0015689762449996596" d="0.00061549435526745896" /> - <width sOffset="365.69367562786425" a="3.2619844986093183" b="-0.0018661793384448302" c="0.0002013023551854262" d="7.4471057609668593e-06" /> - <width sOffset="365.87223172373376" a="3.261657741285072" b="-0.0017935795210891523" c="8.3188255410465879e-05" d="5.3836439281350845e-07" /> - <width sOffset="372.01681389361198" a="3.2539026885634268" b="-0.00071028609875870615" c="6.8116674971343137e-05" d="6.0842611320432152e-06" /> - <width sOffset="374.47327519520928" a="3.2526591137223173" b="-0.00026549316226321231" c="-1.3211269264485925e-05" d="9.4034964623307468e-08" /> - <width sOffset="382.07132237722317" a="3.249920440614595" b="-0.00044996685060194174" c="-1.3223734547783884e-05" d="-1.4294399135564579e-07" /> - <width sOffset="389.83003446101003" a="3.2455664772746449" b="-0.00068097980996083751" c="4.7649315552272921e-05" d="4.185549624202731e-06" /> - <width sOffset="392.1258308608343" a="3.2443048774954644" b="-0.00039601146375183483" c="7.500244337694033e-05" d="3.8643504540507905e-06" /> - <width sOffset="395.48183214406288" a="3.2439666597691215" b="0.00023797470546334785" c="0.00016127386608129083" d="-2.7108476556740923e-05" /> - <width sOffset="399.75021455577945" a="3.2458125708627419" b="0.00013305657900969825" c="-0.00016326319513397194" d="5.9506838304754223e-06" /> - <width sOffset="402.18033934444543" a="3.2452571620595911" b="-0.0005550178902154479" c="-0.00012024196272848928" d="5.6535842414303286e-06" /> - <width sOffset="412.23484782805656" a="3.2332676318818825" b="-0.0012583497948668507" c="5.446277159026007e-05" d="5.1170232404307255e-06" /> - <width sOffset="417.49678928244077" a="3.228899749019388" b="-0.00026014911749667834" c="8.5456311326543121e-05" d="-3.7157662807247198e-06" /> - <width sOffset="422.28935631166769" a="3.2292067592642599" b="0.00030292213395240446" c="3.5795399545529439e-05" d="-4.139634334872031e-06" /> - <width sOffset="426.32677978875859" a="3.2307408349084747" b="0.00038952659773494537" c="2.2284555808843373e-06" d="-5.548390665567133e-06" /> - <width sOffset="431.49270158275419" a="3.2320476587728297" b="-3.1654857949247445e-05" c="-0.0024240241077916422" d="0.00041304627718946266" /> - <width sOffset="432.34386479527882" a="3.2305192660797886" b="-0.0032604053200836996" c="-0.0013643433557339673" d="0.00041399277694755503" /> - <width sOffset="435.50802976599306" a="3.2196581370910087" b="0.00054019225381061325" c="0.0003123619798589173" d="-1.8137804256955754e-05" /> - <width sOffset="437.1395041726725" a="3.2212920999488306" b="0.0014145807490037314" c="0.00024207443550132901" d="-1.6396114549315085e-05" /> - <width sOffset="442.39837327888995" a="3.2330413202874198" b="0.0026003180037598135" c="-1.763881334069735e-05" d="-1.6077378189605706e-05" /> - <width sOffset="446.27748654673144" a="3.2419243747836548" b="0.0017376980967845031" c="-2.050342436883247e-05" d="-4.5784412382540243e-09" /> - <width sOffset="452.45288176250108" a="3.2518723606012516" b="0.0014839407957570813" c="-2.1614748603942968e-05" d="-1.4549150200743294e-07" /> - <width sOffset="460.39180873645574" a="3.262218156326715" b="0.0011132354870069987" c="-2.7842820725589075e-05" d="-8.3432736130158231e-08" /> - <width sOffset="462.50739024611221" a="3.2644478910427805" b="0.00099430771762893831" c="-2.8153038018592475e-05" d="-2.877206929092003e-07" /> - <width sOffset="472.56189872972334" a="3.2713066360361562" b="0.00034091803283625678" c="-2.8594741066662023e-05" d="-1.6561959894207681e-06" /> - <width sOffset="476.76795183997564" a="3.2721114536328777" b="1.2477326373627784e-05" c="-4.0282975934006946e-05" d="-4.0138810786330856e-07" /> - <width sOffset="482.61640721333447" a="3.2707262755636437" b="-0.00049989680235949904" c="-4.4201471261934369e-05" d="9.0509206289197707e-08" /> - <width sOffset="486.3142090929706" a="3.2682779332550425" b="-0.00082308057166913208" c="-0.0017663875743678182" d="0.00027502888460390171" /> - <width sOffset="490.52659245305421" a="3.2540248205336271" b="-0.0010640030256869196" c="1.8713557473606593e-05" d="4.5943697307913789e-07" /> - <width sOffset="492.67091569694566" a="3.2518338313220072" b="-0.0009774095511530178" c="2.0891497599199699e-05" d="-6.2852294876260078e-08" /> - <width sOffset="496.73462833241797" a="3.2482026991243078" b="-0.00081072924882895792" c="0.00010668441357897617" d="-2.2391003207558776e-06" /> - <width sOffset="502.72542418055679" a="3.2466932270508559" b="0.00022643835602065038" c="6.6468211469086574e-05" d="-2.2019151278308584e-06" /> - <width sOffset="512.77993266416786" a="3.2534513150172959" b="0.00089525319978082441" c="-1.1968143996358113e-06" d="-2.1117706019863845e-06" /> - <width sOffset="522.34841734636757" a="3.2600579369191598" b="0.00029231463072110133" c="0.00017624417087474907" d="-1.4904106587954098e-05" /> - <width sOffset="522.83444114777899" a="3.2602399299203881" b="0.0004530704490011702" c="0.00016321871194442347" d="-1.8635274931930016e-05" /> - <width sOffset="524.03181748943234" a="3.2609844430729886" b="0.00076378615153897063" c="0.00015626443272641059" d="-1.1465604286529625e-05" /> - <width sOffset="531.67737551077118" a="3.2708342010528666" b="0.0011425932520403546" c="0.00013513029100470239" d="-6.6249159557859376e-06" /> - <width sOffset="532.88894963139012" a="3.27240511451578" b="0.0014408596011311048" c="0.00011124542907963469" d="-6.9992035021928271e-06" /> - <width sOffset="542.94345811500136" a="3.2910241161273106" b="0.0015551814256274808" c="-0.00010009078552287193" d="-6.8810976555693981e-06" /> - <width sOffset="546.80246494512141" a="3.2951395830986856" b="0.00047526082517994632" c="-0.00010898137955444096" d="-1.1113369524911592e-05" /> - <width sOffset="547.12838406530363" a="3.2952825185828374" b="0.00040068109906647064" c="8.6313041770531382e-05" d="-2.620780293659036e-06" /> - <width sOffset="552.99796659861249" a="3.3000780350190988" b="0.0011430507827381977" c="3.8595543056595168e-05" d="-2.7153627689113875e-06" /> - <width sOffset="563.05247508222362" a="3.312712585146329" b="0.0010956555603770784" c="-4.3871591941621812e-05" d="-2.718836547227025e-06" /> - <width sOffset="569.69650659089632" a="3.3172581212210179" b="0.00015263301515679802" c="-0.00023328065894618268" d="1.1438298948831327e-05" /> - <width sOffset="573.10698356583475" a="3.3155190425969119" b="-0.0010394349317850869" c="-0.00011788446031180407" d="1.1545947854538094e-05" /> - <width sOffset="576.86933536232721" a="3.3105545385462483" b="-0.0014361717971908266" c="0.0012421102107024048" d="-0.00021724197038161874" /> - <width sOffset="580.64502674043979" a="3.3111461330353409" b="-0.0013474259919764794" c="1.7790207983768856e-05" d="1.3619482117113884e-05" /> - <width sOffset="583.16149204944588" a="3.3080850773291193" b="-0.00099914900810965115" c="0.0001223344833392772" d="1.287023758403883e-05" /> - <width sOffset="583.43564621452151" a="3.3078206163872368" b="-0.00092916999112530334" c="-6.2760791782614654e-05" d="2.1709323348146259e-06" /> - <width sOffset="593.21600053305701" a="3.2947606009705144" b="-0.0015338318024516091" c="1.8447756493234088e-06" d="2.3364670700384839e-06" /> - <width sOffset="598.28947986723097" a="3.2873313465893954" b="-0.0013346896033465292" c="0.0004529997156596278" d="-2.5435671645079346e-05" /> - <width sOffset="601.4206233147703" a="3.2868126559420148" b="0.00075400608090448254" c="0.00011583519099421451" d="-2.558459028617486e-05" /> - <width sOffset="603.27050901666814" a="3.2884419159574856" b="0.00091991248572996444" c="-2.5337538591705894e-05" d="-2.560462890215993e-05" /> - <width sOffset="608.0873578469342" a="3.2894235221047854" b="-0.0011064200081416775" c="-2.7061723895483576e-05" d="2.0958694799672299e-06" /> - <width sOffset="613.32501750027927" a="3.2831872295455895" b="-0.0012174117501203019" c="6.5208014310450411e-06" d="2.2561862029189243e-06" /> - <width sOffset="622.60524446332715" a="3.2742541890250756" b="-0.00051345676544992276" c="-7.5485072704782976e-06" d="3.6103166476598733e-06" /> - <width sOffset="623.3795259838904" a="3.2738537793966191" b="-0.00051865282172646084" c="1.4479436352207861e-06" d="3.7276846268694385e-06" /> - <width sOffset="624.92337684766778" a="3.273070224803492" b="-0.00048752746884329505" c="-7.7936949234044714e-05" d="1.4198701809488641e-06" /> - <width sOffset="631.00815461854654" a="3.267538027166518" b="-0.0012782754633479043" c="0.00021397024497845244" d="-8.3887321457561631e-06" /> - <width sOffset="633.43403446750153" a="3.265576518579806" b="-0.0003882436265045077" c="0.00015134180716570039" d="-8.65789911941732e-06" /> - <width sOffset="643.48854295111266" a="3.2681722874400263" b="2.9328696285249849e-05" c="-0.00010752594637823446" d="-9.8506085757988627e-06" /> - <width sOffset="645.53332971488476" a="3.2676984575170609" b="-0.00053396726966529356" c="-8.1978694362594271e-05" d="4.116597975612357e-06" /> - <width sOffset="653.54305143472379" a="3.2602775239340449" b="-0.0010549113689592095" c="1.8129234490588668e-05" d="3.886900370385928e-06" /> - <width sOffset="655.29741317929222" a="3.258503613179812" b="-0.00095541176556815984" c="2.2942451621269965e-05" d="6.5290822122782073e-07" /> - <width sOffset="663.59755991833492" a="3.2525274609407573" b="-0.00043961902223033957" c="3.8297954806051121e-05" d="7.1246812282604658e-07" /> - <width sOffset="668.28564656737353" a="3.2513816168241085" b="-3.3554553444292007e-05" c="-0.00013149765458448363" d="1.8465490498861827e-05" /> - <width sOffset="669.02772070891388" a="3.2512918502698174" b="-0.00019821117344255264" c="0.00061869530855750447" d="-7.7368002778863221e-05" /> - <width sOffset="673.65206840194605" a="3.2559548940794611" b="0.00056046384842884864" c="-0.0004524388563832763" d="-8.0040449668464437e-05" /> - <width sOffset="674.76558360735191" a="3.2559074837856956" b="-0.00074486157339017636" c="-1.6861842215090143e-05" d="1.6542908169917248e-05" /> - <width sOffset="681.9889022068877" a="3.2558821171539991" b="0.0016009862960495664" c="0.00015241564205092678" d="-1.3267631371617575e-05" /> - <width sOffset="683.70657688555718" a="3.2590145406373656" b="0.0020071525643875062" c="8.2856689226575302e-05" d="-1.4189031809727638e-05" /> - <width sOffset="691.01211964486504" a="3.2725676628191644" b="0.00094593220149085397" c="-0.00052983115867151031" d="2.5127515701779083e-05" /> - <width sOffset="693.76108536916831" a="3.2716861476719687" b="-0.0013973914099504943" c="-0.0003199588448074471" d="2.6464674108963192e-05" /> - <width sOffset="703.81559385277944" a="3.2521902214290117" b="0.00019474183250582232" c="0.0004752262408296038" d="2.6353730898307548e-05" /> - <width sOffset="704.65190199965753" a="3.2527008791342276" b="0.0010449092790024714" c="5.5936938275038666e-05" d="1.2009414746975603e-06" /> - <width sOffset="708.90181420580882" a="3.2582441563483275" b="0.0015854367600918939" c="-4.5015326805906056e-05" d="5.7007141021354677e-06" /> - <width sOffset="713.87010233639057" a="3.2657090262990529" b="0.0015602858796328026" c="4.0474790535784342e-05" d="5.6343957920811692e-06" /> - <width sOffset="722.35431545944687" a="3.2853012547338629" b="0.0034638024531407708" c="0.00020032042169173479" d="-6.081675811192264e-06" /> - <width sOffset="723.9246108200017" a="3.2912108545442553" b="0.0040479378200190524" c="0.00017345903159534022" d="-5.1381678517789854e-06" /> - <width sOffset="729.12828473430022" a="3.3162479652812511" b="0.0054357889433726894" c="0.0040155493539261577" d="-0.0013957622776300288" /> - <width sOffset="731.18953661488001" a="3.3322898427750429" b="0.0041991323214241377" c="-3.1784686090991182e-05" d="-3.9903027760974347e-06" /> - <width sOffset="733.97911930361283" a="3.3436697073649722" b="0.0039286454270681418" c="-6.3299332307742092e-05" d="-4.2497433921727719e-06" /> - <width sOffset="739.79099113998222" a="3.3635300974536442" b="0.0027622285750637794" c="0.00015327774337962964" d="-2.6362450850665987e-05" /> - <width sOffset="744.03362778722396" a="3.3759949941932241" b="0.0026392624827373699" c="-0.00017172806337226033" d="-2.6870295668462883e-05" /> - <width sOffset="746.98806113285718" a="3.381600621540219" b="0.00092091790263518648" c="-0.00021974423695990923" d="1.1753452780033936e-05" /> - <width sOffset="752.52193812260725" a="3.3819593033695563" b="-0.00043135128131722631" c="-8.5029276754521158e-05" d="1.5475658320752482e-05" /> - <width sOffset="754.08813627083521" a="3.381134602080734" b="-0.00058381238789534341" c="-1.4001775992410239e-05" d="1.1880649356001629e-05" /> - <width sOffset="758.03054794513275" a="3.3793433403081199" b="-0.00014024502648554379" c="8.277086539279827e-05" d="-6.267461229448952e-07" /> - <width sOffset="764.14264475444634" a="3.3814351730773815" b="0.0008013206256152186" c="6.9606633434983879e-05" d="7.878339789718565e-07" /> - <width sOffset="767.31027718034238" a="3.384696928211067" b="0.001266012214573851" c="-2.6640760063406265e-05" d="3.1654225366376903e-06" /> - <width sOffset="774.19715323805747" a="3.3931861986733551" b="0.0013494680529595625" c="3.944756101541406e-05" d="2.8679453270730912e-06" /> - <width sOffset="780.20654408419068" a="3.4033426301133787" b="0.0021342880987746051" c="-3.5818749716396849e-05" d="-3.0627206388865149e-06" /> - <width sOffset="784.2516617216686" a="3.4111872531916809" b="0.0016941603069477174" c="-7.1588646568165008e-05" d="-1.981190244024732e-06" /> - <width sOffset="789.03250431483229" a="3.4174340133683954" b="0.0008738032432167094" c="-0.00020672238851479567" d="6.6417514244866279e-05" /> - <width sOffset="790.14288590738965" a="3.4182403189625674" b="0.00066038965407652997" c="0.00033061838967217086" d="4.4461576007380485e-05" /> - <width sOffset="791.60464550040274" a="3.4200509671458077" b="0.0019119674910522356" c="0.00067376626148457847" d="-4.5545643685588445e-05" /> - <width sOffset="794.30617020527973" a="3.4292355050663357" b="0.0045551513600554771" c="0.0003042779707381132" d="-4.5569978981104872e-05" /> - <width sOffset="799.85262422165601" a="3.4560855502699459" b="0.0037248503144529455" c="-0.0001505186498330399" d="-2.3412706549742391e-05" /> - <width sOffset="804.36067868889086" a="3.4676734953711925" b="0.00094033971563235014" c="-0.00046977872270835628" d="-2.3652781665701167e-05" /> - <width sOffset="805.17170873521377" a="3.4681145148343404" b="0.00013165614529834195" c="-1.4716841264154512e-05" d="1.7454477076738414e-08" /> - <width sOffset="811.43198736726322" a="3.4683662323642839" b="-5.0554728626995548e-05" c="-0.00053342316259106831" d="3.0580419856347025e-05" /> - <width sOffset="814.41518717250199" a="3.4642801055984798" b="-0.0024167208745240333" c="-0.00025985963304555422" d="3.0597446859014979e-05" /> - <width sOffset="818.72935975862413" a="3.4514742699099239" b="-0.0029504326301664501" c="-0.00014680452518437665" d="4.0416970598498817e-05" /> - <width sOffset="822.97597856015409" a="3.4393927027589291" b="-0.0020106671371336762" c="-0.00012327549019380065" d="7.5523628746362603e-06" /> - <width sOffset="824.46969565611312" a="3.4361394540186243" b="-0.0023283922647099327" c="-8.6713401469668336e-05" d="9.787226126122399e-06" /> - <width sOffset="834.52420413972425" a="3.4139106302862832" b="-0.0011038492383406537" c="0.00020181900768059032" d="1.2185893915082882e-05" /> - <width sOffset="836.36263335606031" a="3.4126391117403339" b="-0.00023823086164863523" c="0.00018058553229694232" d="-2.221598210350483e-05" /> - <width sOffset="838.4022179292308" a="3.4127159474272366" b="0.00022115892947437133" c="0.0002862745405918683" d="-2.8791194719246704e-05" /> - <width sOffset="840.53915777287796" a="3.4142148719724617" b="0.0010502358739995182" c="0.00017630978224159434" d="-5.6482486786787429e-06" /> - <width sOffset="844.57871262333538" a="3.4209620627543043" b="0.0021981575228170753" c="0.00010781044885288125" d="-6.4268926617417567e-06" /> - <width sOffset="848.1171502457297" a="3.4298052195506985" b="0.0027197141039212347" c="0.00091596342784009961" d="-0.00019205686683321357" /> - <width sOffset="852.2928576399529" a="3.4431495427510797" b="0.00032288736825628918" c="-0.00029974481416701604" d="1.7364658119525194e-05" /> - <width sOffset="854.63322110694651" a="3.4424860193250728" b="-0.00079480187067818573" c="-0.00018031903367454448" d="2.0026915477230296e-05" /> - <width sOffset="856.51668673803317" a="3.4404831754300043" b="-0.0012609182654400191" c="-0.00011098621982704056" d="1.9167816805716974e-05" /> - <width sOffset="863.23810918562276" a="3.4328143744500004" b="-0.00015502553894804422" c="0.00061514334432131328" d="-3.779463338772884e-05" /> - <width sOffset="864.68772959055764" a="3.4337671768735687" b="0.0013901582983059774" c="0.0004510283145408772" d="-3.7743860411666713e-05" /> - <width sOffset="870.98453196145113" a="3.4509804996745164" b="0.0025806301167576339" c="-0.00026068514915575321" d="-4.0592355759902962e-05" /> - <width sOffset="871.93600542834338" a="3.453164936972672" b="0.001974315118370954" c="-0.00012069360624656714" d="4.8102726432932499e-06" /> - <width sOffset="874.74223807416877" a="3.4578611712252778" b="0.0014105682917274498" c="-8.0448265300147139e-05" d="4.8752441581757498e-06" /> - <width sOffset="884.7967465577799" a="3.4688663764199905" b="0.0012713939928622208" c="6.5593238462061546e-05" d="5.9518285311143594e-06" /> - <width sOffset="886.50888628858877" a="3.4712653343372999" b="0.0015483455436092657" c="0.00040203892746530493" d="-3.9912665905759313e-05" /> - <width sOffset="894.04003831338252" a="3.4886802590478991" b="0.00081264832158236145" c="-0.00071760877148736076" d="-1.8149156232030478e-05" /> - <width sOffset="894.85125504139103" a="3.4888575655685985" b="-0.00038745454379638961" c="-0.00077252657293257307" d="-1.5382176383257934e-05" /> - <width sOffset="896.72806336540521" a="3.4853075428909559" b="-0.003449770120981889" c="-0.00013965052455433268" d="2.0625011497216831e-05" /> - <width sOffset="904.90576352500216" a="3.4590367045688097" b="-0.0015959310419016636" c="0.00036582169654356106" d="2.154520551340041e-05" /> - <width sOffset="905.98786454828769" a="3.4577654016332442" b="-0.00072853437908796954" c="0.00025136188097916079" d="-2.5643071851575167e-06" /> - <width sOffset="911.88333228642159" a="3.4616813778582163" b="0.0019678780061132255" c="-0.0006189966738280317" d="3.0519171029825505e-05" /> - <width sOffset="914.96027200861329" a="3.4627650901084293" b="-0.00097452683064087973" c="-0.00033712451571703115" d="3.0725244384082274e-05" /> - <width sOffset="919.86148597442934" a="3.4535078363697247" b="-0.0020649295088651584" c="-0.00088718873357255677" d="0.00035793651893734996" /> - <width sOffset="922.540175909239" a="3.4484903753311977" b="0.00088705479674160669" c="-0.0020277625295248378" d="0.0018047626907819665" /> - <width sOffset="923.05565685338911" a="3.4486560222899207" b="0.00023519680590371357" c="0.0016700553835451346" d="-0.0034045675573979237" /> - <width sOffset="923.45369038689478" a="3.4487995320270919" b="-5.349110372391587e-05" c="0.0055432692019537289" d="-0.0023599476247638447" /> - <roadMark sOffset="0" color="standard" width="0.15832252088411014" weight="standard" type="solid"> - <type name="solid"> - <line length="925.01478049222453" space="0" width="0.15832299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59183785908601" max="100" unit="km/h" /> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4930358723659118" b="-0.00013924600432535124" c="0.00010222948440938642" d="-1.1320642978153135e-05" /> - <width sOffset="7.3727141606921638" a="2.4930292925514372" b="-0.00047789412323137256" c="3.7137736089138719e-05" d="-3.5249156762233037e-07" /> - <width sOffset="10.054508483611135" a="2.4920079754865139" b="-0.00028630796366164307" c="3.1808865353042537e-05" d="-7.4368401169853695e-07" /> - <width sOffset="20.109016967222271" a="2.4915890361953519" b="0.0001277929918111799" c="7.0798652561819206e-06" d="-6.8760400192464784e-07" /> - <width sOffset="30.163525450833404" a="2.4928907482527016" b="6.1625977731457476e-05" c="-1.155303777652006e-05" d="-3.9249648151122637e-06" /> - <width sOffset="31.875861467996952" a="2.4929426918403763" b="-1.246449248331824e-05" c="0.0007553154933559454" d="-0.00013652145970155651" /> - <width sOffset="37.418342294521018" a="2.4928320729744762" b="-0.0042212677556509688" c="-0.0039744969193699162" d="0.0034958572340339166" /> - <width sOffset="38.169585304595223" a="2.488899963680641" b="-0.0042740642916891877" c="0.0062630904062013172" d="-0.0015672846726110896" /> - <width sOffset="40.218033934444541" a="2.4929538557264479" b="0.0016555275000960136" c="-0.0034462532453829907" d="-0.0015573066042591018" /> - <width sOffset="40.419804745934677" a="2.4931347985360865" b="7.4620193916966754e-05" c="0.0021021014761959489" d="-0.001811031667878336" /> - <width sOffset="41.714497609167161" a="2.4928247080290706" b="-0.003589342967652666" c="0.00033167534488499819" d="0.00014381250870850257" /> - <width sOffset="44.832867799550151" a="2.4892180317284325" b="0.0026746289246079502" c="0.00067219117511963574" d="-0.00055035757497618083" /> - <width sOffset="46.583197081790296" a="2.4930076353653661" b="-3.0572521594638552e-05" c="0.00062542301591044023" d="-0.00018596245970314536" /> - <width sOffset="48.651825741104645" a="2.4939745544643657" b="0.00016963807048173823" c="-3.0157265873503053e-05" d="1.1370045775529259e-05" /> - <width sOffset="50.272542418055679" a="2.4942186791963277" b="0.00016148316981250046" c="6.3880204242518289e-06" d="-2.4397338837744684e-06" /> - <width sOffset="59.089656591581537" a="2.4944667795439219" b="-0.0002948747517099639" c="-0.00048674902255041203" d="6.5885716975716533e-05" /> - <width sOffset="60.327050901666809" a="2.4934814490653192" b="-0.001196833998776568" c="-0.00025834089838179254" d="5.5978558555834633e-05" /> - <width sOffset="63.644342535172093" a="2.4887117996559205" b="-0.0010627828572483573" c="0.0012334327479266447" d="-0.00017370802064091756" /> - <width sOffset="67.894807093331963" a="2.4931390505297504" b="7.6802359745241355e-06" c="0.0015607673626787805" d="-0.00040473326861661658" /> - <width sOffset="70.381559385277953" a="2.4965858807682793" b="0.0002616288106022744" c="-0.0014597471122765803" d="-0.00040396206739923632" /> - <width sOffset="71.332412212166489" a="2.4951675825247097" b="-0.0036100724101744983" c="-0.0042968493819150657" d="0.0079688489403307236" /> - <width sOffset="71.689586754755837" a="2.493693100847743" b="-0.0036296773058383559" c="0.0035087706043943055" d="-0.00093633573647530701" /> - <width sOffset="73.439756870632863" a="2.4930686093996997" b="4.7956446026554272e-05" c="0.00099803575713883685" d="-0.00070083605589285527" /> - <width sOffset="74.850934095398856" a="2.4931542707146193" b="-0.0013222121475777553" c="0.00036584623407822449" d="-2.8855513100308268e-05" /> - <width sOffset="80.436067868889083" a="2.4921544046252642" b="6.4055843196804407e-05" c="-0.00012272582675741404" d="-2.8946649695383041e-05" /> - <width sOffset="81.071617969263755" a="2.4921381124173951" b="-0.00012701771336905837" c="-0.00020651087931470932" d="3.760329829572807e-05" /> - <width sOffset="84.905096462170704" a="2.4907347859584892" b="-5.2523461585921027e-05" c="0.00011680632460826478" d="-9.2131017509717362e-06" /> - <width sOffset="90.490576352500213" a="2.4924800774248101" b="0.00039003570104193495" c="-3.5276662821763613e-05" d="-9.6590277623525147e-06" /> - <width sOffset="93.15623492423839" a="2.4930861566580358" b="-3.9388691291664113e-06" c="5.7862920514046209e-05" d="-2.4804643120945038e-06" /> - <width sOffset="100.54508483611136" a="2.4952154780956466" b="0.00044487838718461174" c="3.9794888388447393e-06" d="-2.3676930734088827e-06" /> - <width sOffset="110.59959331972249" a="2.4976841883299592" b="-0.0001931705922924333" c="-6.9016534367044745e-05" d="-2.2237998567149798e-06" /> - <width sOffset="110.7820181871263" a="2.4976466389201679" b="-0.00021857327291061046" c="-8.1914264739393523e-05" d="5.7025710876540942e-06" /> - <width sOffset="120.65410180333362" a="2.4929921847571386" b="-0.0001686180979687305" c="8.7878801554033611e-05" d="6.2674616909448444e-06" /> - <width sOffset="122.43529528843202" a="2.4930060700769943" b="0.00020409359099413061" c="-0.00014889852558289498" d="2.5770283214407793e-05" /> - <width sOffset="123.43544460305584" a="2.4930870329763621" b="-1.6413986986996316e-05" c="-0.00025027588032444588" d="2.7959129069715766e-05" /> - <width sOffset="129.3703125271737" a="2.4900188637690572" b="-3.2738112686458293e-05" c="0.00035136495767187849" d="-1.994360197143035e-05" /> - <width sOffset="130.70861028694475" a="2.4905565556967399" b="0.00080056433863806911" c="0.00025472513146186122" d="-3.0941983718602041e-05" /> - <width sOffset="139.53835379648655" a="2.4961841894905206" b="-0.0019382373516332345" c="-0.00064863244631168401" d="0.00074074628896778972" /> - <width sOffset="140.07956632080629" a="2.4950626279453942" b="-0.0019894151579609369" c="0.00022485234910715919" d="-1.0030017827240195e-05" /> - <width sOffset="140.76311877055591" a="2.4938046157959661" b="-0.001696077805334398" c="0.00020399670134663882" d="-9.7110800011637127e-06" /> - <width sOffset="147.01157508987313" a="2.4888023201859344" b="-0.00028420395184594778" c="0.00030566602398074307" d="-2.5353362708853674e-05" /> - <width sOffset="150.81762725416704" a="2.4907506658045211" b="0.00094074875993496732" c="1.9302051080232172e-05" d="-2.4768788819269572e-05" /> - <width sOffset="155.05091850242815" a="2.4931999828133868" b="-0.00022745500506167297" c="0.00016465145900150752" d="-1.7429275886360942e-05" /> - <width sOffset="155.80100548811114" a="2.4931146541702081" b="-9.8678978098431722e-06" c="1.9373568662350355e-05" d="-1.3886756968700052e-06" /> - <width sOffset="160.87213573777817" a="2.4933817318643783" b="7.9488821564888991e-05" c="2.5597936118571256e-06" d="-6.5797436655322503e-07" /> - <width sOffset="169.79024615614583" a="2.4938275202910472" b="-3.1845555026039848e-05" c="-0.00033712668535010987" d="0.00010395502822442131" /> - <width sOffset="170.9266442213893" a="2.4935085241651471" b="-0.00039532303515067897" c="1.1952709238160792e-05" d="9.8898941958685247e-05" /> - <width sOffset="172.04051098908153" a="2.493219692415277" b="-5.8407649050845958e-07" c="-0.00057603399792872695" d="8.259374935216612e-05" /> - <width sOffset="177.40235370790856" a="2.4893877412779215" b="0.00094576017121084728" c="0.00083757655021535226" d="-0.00015019112746996415" /> - <width sOffset="180.98115270500043" a="2.4966156985571111" b="0.001169941620763697" c="-0.00078752961403418518" d="-0.00014988686596131633" /> - <width sOffset="181.57783280046277" a="2.4970015564095256" b="7.0043755228857283e-05" c="-0.00017845112969938222" d="7.8800653054320952e-06" /> - <width sOffset="188.76211729345025" a="2.4912162052634237" b="-0.0012738798719657532" c="0.00039092752829392467" d="-2.9458243270404958e-05" /> - <width sOffset="191.03566118861158" a="2.4899944966935212" b="4.689277755091795e-05" c="0.00020390650909835829" d="-2.1214233023679631e-05" /> - <width sOffset="197.51304378766025" a="2.4930880855200233" b="1.8229755065073214e-05" c="0.00015230889472086736" d="-3.7274244637675829e-05" /> - <width sOffset="200.45612416525617" a="2.493510794049465" b="-5.3833052786038111e-05" c="-7.9800820972773367e-05" d="8.9980790214040892e-06" /> - <width sOffset="201.09016967222271" a="2.4934468739857394" b="-0.00014417570348061455" c="-6.6575182963345841e-05" d="7.6654379738852561e-06" /> - <width sOffset="210.30611244359181" a="2.4924637584242699" b="0.00058187789904248842" c="-0.00010687547602884016" d="-1.3610956525789782e-05" /> - <width sOffset="211.14467815583384" a="2.4928685212362112" b="0.00037392031392863463" c="-0.00012371726308957158" d="-2.2057602595124369e-05" /> - <width sOffset="212.30630140156603" a="2.4931013612158957" b="-2.7968901511642641e-06" c="-1.1620597465702062e-05" d="3.1626538957572873e-07" /> - <width sOffset="221.19918663944497" a="2.492379915362763" b="-0.00013444413508663253" c="-2.7877403641798911e-06" d="3.0353012215647333e-07" /> - <width sOffset="223.4738681627411" a="2.4920632459423082" b="-0.0001424150232338092" c="-1.7947190932789394e-05" d="3.4800701440798091e-07" /> - <width sOffset="231.2536951230561" a="2.4900328846553936" b="-0.00035847699067481935" c="-7.779247232358556e-06" d="2.2164393315884765e-07" /> - <width sOffset="231.25849793449663" a="2.4900311627785836" b="-0.00035855169972418406" c="3.7594152186361948e-05" d="-6.5403163470573693e-07" /> - <width sOffset="241.30820360666723" a="2.4895608717647413" b="0.00019890374621913201" c="1.8557383383227155e-05" d="-6.3888938020441864e-07" /> - <width sOffset="251.36271209027839" a="2.4927873814420103" b="0.00037831248124430689" c="-1.239992938573007e-06" d="-5.7401593549448071e-07" /> - <width sOffset="261.41722057388949" a="2.4958823188983761" b="0.00017929022075722362" c="-1.9652067851517408e-05" d="-6.0216033165727356e-07" /> - <width sOffset="271.3452708172174" a="2.4951360358909636" b="-0.00038898114714151067" c="4.1162042708366578e-06" d="1.8062076959270676e-06" /> - <width sOffset="271.47172905750068" a="2.4950869154973034" b="-0.00038785343831391464" c="5.2839019127588531e-06" d="1.5036046892871529e-06" /> - <width sOffset="279.59574333010102" a="2.4930909294867014" b="-4.2884894104561484e-06" c="-1.7979034150210673e-05" d="-1.1512539868302018e-06" /> - <width sOffset="281.42720246304265" a="2.4930156969168245" b="-8.1728977345341445e-05" c="1.4894534125316923e-05" d="-3.7342975431041038e-06" /> - <width sOffset="281.52623754111181" a="2.4930077453387316" b="-7.8888692046103591e-05" c="2.3817642259499394e-05" d="-6.0358629749433995e-07" /> - <width sOffset="291.58074602472294" a="2.4940088482106777" b="0.0002170053765122214" c="6.0437965502355218e-06" d="-6.084560084174179e-07" /> - <width sOffset="301.63525450833407" a="2.4961832568395703" b="0.00015400799701298926" c="-1.2899739892726491e-05" d="-5.2429912449120256e-07" /> - <width sOffset="311.6897629919452" a="2.4958947367622102" b="-0.00026440222707756032" c="-3.3707609163903423e-05" d="-5.8874802718530065e-07" /> - <width sOffset="312.54349720363808" a="2.4956440729852485" b="-0.00032324425372731128" c="-2.0105944185865047e-05" d="2.707101580565913e-06" /> - <width sOffset="321.74427147555633" a="2.493076441787645" b="-5.7218224704843864e-06" c="5.3746059721136514e-05" d="3.0737991244367373e-06" /> - <width sOffset="321.79377751739781" a="2.4930762906192605" b="-3.777127675063394e-07" c="-5.3186000051560642e-07" d="1.7462474967634145e-06" /> - <width sOffset="328.79002738212569" a="2.4936456155758826" b="0.00024860364811694246" c="-9.6029426646511487e-06" d="1.7497024296578759e-06" /> - <width sOffset="331.79877995916746" a="2.4943543275822826" b="0.00023833591815489367" c="-1.063794062825723e-07" d="-3.831317892908116e-07" /> - <width sOffset="341.85328844277859" a="2.4963504926832751" b="0.00012000074505590325" c="-9.1194712451115893e-06" d="-4.1146116360630199e-07" /> - <width sOffset="351.90779692638972" a="2.4962168988582878" b="-0.00018817056103995113" c="-2.027889627356209e-05" d="-3.2389622195575358e-07" /> - <width sOffset="358.76834793425684" a="2.4938668868229836" b="-0.00051215399161103168" c="0.00012698787432788143" d="-1.0644849975532542e-05" /> - <width sOffset="361.96230541000085" a="2.4931797001194216" b="-2.6742229906109296e-05" c="7.4651552709785126e-06" d="9.4609514958905235e-06" /> - <width sOffset="363.01836247585129" a="2.4931709272294569" b="2.0679193746483493e-05" c="-1.9824491992266045e-05" d="-9.3538633218404318e-06" /> - <width sOffset="365.87223172373376" a="2.492851064120261" b="-0.00032102339727307157" c="2.2194677323918182e-05" d="-2.4451224519918636e-06" /> - <width sOffset="372.01681389361198" a="2.4911492351230606" b="-0.00032522268348419373" c="-2.8599071731136583e-06" d="-7.7470759352649667e-06" /> - <width sOffset="374.47327519520928" a="2.4902182476954504" b="-0.0004795154523158018" c="6.6214116415314143e-05" d="-1.7568497678522482e-06" /> - <width sOffset="382.07132237722317" a="2.4896268083122663" b="0.00022241000592618156" c="2.6089243746086846e-05" d="-1.7012487932427579e-06" /> - <width sOffset="392.1258308608343" a="2.4927712547387273" b="0.00023108529946561703" c="-2.4946840152425184e-05" d="-1.7439498910086183e-06" /> - <width sOffset="395.48183214406288" a="2.4931998899670464" b="4.7170576155600033e-06" c="-8.9870061824506606e-05" d="2.9228877120116459e-05" /> - <width sOffset="397.48180009092016" a="2.4930836749807614" b="-4.0221454540616741e-06" c="-0.00010593396897822492" d="2.9675492283463217e-05" /> - <width sOffset="399.75021455577945" a="2.492875836069036" b="-2.6522526107765278e-05" c="7.342400645056436e-05" d="-3.383668103980383e-06" /> - <width sOffset="402.18033934444543" a="2.493196429548135" b="0.00027038964837488623" c="4.9027954667374392e-05" d="-3.2736570055517135e-06" /> - <width sOffset="412.23484782805656" a="2.4975439725305151" b="0.00026346081440902446" c="-5.1686390164659891e-05" d="-2.7848848526199522e-06" /> - <width sOffset="417.49678928244077" a="2.497093456079396" b="-0.00051180461189727583" c="-4.5865202919859872e-05" d="6.0479046685174505e-06" /> - <width sOffset="422.28935631166769" a="2.4942528816117342" b="-0.00053469122967497761" c="3.0222772429341128e-05" d="8.2285106428940174e-06" /> - <width sOffset="425.99651229546362" a="2.493105271305776" b="2.8643234420643965e-05" c="-0.0002663754123917559" d="2.0722858693606942e-05" /> - <width sOffset="431.49270158275419" a="2.4886566098879577" b="-0.0010214617847350037" c="0.0024155797560802034" d="-0.00039787180917117684" /> - <width sOffset="432.34386479527882" a="2.4892918680137015" b="0.0022258943761186128" c="0.0013891302354378072" d="-0.00039937065242631888" /> - <width sOffset="435.50802976599306" a="2.4975910190292776" b="-0.00097865614632539457" c="-0.00014877465753173014" d="3.2759928777994945e-05" /> - <width sOffset="440.50781205552619" a="2.493073365021079" b="-9.5572444170650278e-06" c="-0.0001143024852680018" d="1.5385733007915239e-05" /> - <width sOffset="442.39837327888995" a="2.4927507198209238" b="-0.0002767728730017514" c="-2.4044244049037702e-05" d="1.6351152170227004e-05" /> - <width sOffset="446.27748654673144" a="2.4922697139109395" b="0.00027481929018110867" c="-1.7993632179073808e-05" d="2.7835242186410537e-07" /> - <width sOffset="452.45288176250108" a="2.4933461878739482" b="8.4429041454509544e-05" c="-1.2346705119982788e-05" d="3.7646686722656469e-07" /> - <width sOffset="462.50739024611221" a="2.4933295698639046" b="-4.9676407194571915e-05" c="-1.4771507995071448e-07" d="2.6568458769561172e-07" /> - <width sOffset="470.02617719258552" a="2.4930606429860394" b="-6.838515033975325e-06" c="-2.6178523182836998e-05" d="-2.0495088530290582e-06" /> - <width sOffset="472.56189872972334" a="2.4928415615552169" b="-0.00017913571590519572" c="-3.5758057861982206e-05" d="2.5383895678802647e-06" /> - <width sOffset="476.76795183997564" a="2.4916443941131874" b="-0.0003452172400960653" c="-1.2938163861139464e-05" d="1.2835816863149816e-06" /> - <width sOffset="482.61640721333447" a="2.4894396356059527" b="-0.00036484124720991332" c="8.6457251685900558e-06" d="9.4962322429618831e-07" /> - <width sOffset="486.3142090929706" a="2.4882567599305894" b="-0.00026194619003622362" c="0.0017423704392451774" d="-0.000273988752173314" /> - <width sOffset="490.52659245305421" a="2.4975909047319398" b="-0.0001679936255538101" c="-2.9586382969544753e-05" d="5.8069545758832594e-07" /> - <width sOffset="492.67091569694566" a="2.497100355868314" b="-0.00028686883697632377" c="-2.4959491751500576e-05" d="9.7677816013571446e-07" /> - <width sOffset="502.72542418055679" a="2.4926856354907354" b="-0.00049254296374397926" c="4.2984566623679563e-06" d="9.6526881774283282e-07" /> - <width sOffset="512.77993266416786" a="2.4891490421834206" b="-0.0001133590561465677" c="3.2824301661688911e-05" d="9.9211214500550477e-07" /> - <width sOffset="522.34841734636757" a="2.4919387672957587" b="0.00078729975753327481" c="-0.00017675698799067725" d="1.3784448156133298e-05" /> - <width sOffset="522.83444114777899" a="2.4922812429004679" b="0.00062525200234051859" c="-0.00016439792537242847" d="1.4333404070446861e-05" /> - <width sOffset="526.34804011374217" a="2.4930703090672246" b="8.4910180411660111e-07" c="-4.669865260148541e-05" d="1.0382361885319174e-05" /> - <width sOffset="531.67737551077118" a="2.4933200110752836" b="0.0003877373258979798" c="-0.00012255407325242776" d="5.5416735542974045e-06" /> - <width sOffset="532.88894963139012" a="2.4936197407863752" b="0.00011517470367834845" c="-0.0001022654079829684" d="5.8076700732739047e-06" /> - <width sOffset="542.94345811500136" a="2.4903425933972478" b="-0.00017993529447960237" c="7.3374583263688858e-05" d="5.6666598748210725e-06" /> - <width sOffset="547.12838406530363" a="2.4912899582984771" b="0.00073193003241858669" c="-6.1642360980312824e-05" d="-2.8259293160326903e-06" /> - <width sOffset="551.62786689323957" a="2.493077869968106" b="5.5767950665838338e-06" c="1.2320542504894463e-05" d="5.3382506570955041e-06" /> - <width sOffset="552.99796659861249" a="2.4931223680496331" b="6.9400001636317119e-05" c="2.3104691086196415e-05" d="-8.4924184854030499e-07" /> - <width sOffset="563.05247508222362" a="2.4952926717959798" b="0.00027645504928826254" c="-2.6883978366300974e-06" d="-8.8913928751083815e-07" /> - <width sOffset="573.10698356583475" a="2.49689675447779" b="-4.7263638098487702e-05" c="-2.8545173391383251e-05" d="-1.1166985376729536e-06" /> - <width sOffset="576.86933536232721" a="2.4962553945866777" b="-0.00030947918529391013" c="-0.0012708243296953141" d="0.00022767121969848698" /> - <width sOffset="580.64502674043979" a="2.4892247780513035" b="-0.000169022996373119" c="7.1628553201088792e-05" d="-3.1902328002860497e-06" /> - <width sOffset="583.16149204944588" a="2.4892021935606774" b="0.00013087115994087013" c="4.9486810177643337e-05" d="-2.8141969647349511e-06" /> - <width sOffset="593.21600053305701" a="2.4926603482725422" b="0.00027251423507505942" c="-3.0188874280572759e-05" d="-3.8533689471860444e-06" /> - <width sOffset="596.14296816697458" a="2.493102730241878" b="-3.2465290619447962e-06" c="-2.3296105519946007e-05" d="-1.4538931637553734e-06" /> - <width sOffset="601.4206233147703" a="2.4922229896580301" b="-0.00037063281868014264" c="5.1920769108931359e-05" d="-1.3049745227412651e-06" /> - <width sOffset="603.27050901666814" a="2.4917067771036603" b="-0.00019193501219648195" c="4.4353560166744581e-05" d="-1.4386483785939323e-06" /> - <width sOffset="613.32501750027927" a="2.4927985031919047" b="0.0002636590322548898" c="6.5378225063457356e-07" d="-1.4870387581156044e-06" /> - <width sOffset="623.3795259838904" a="2.4940040696547889" b="-0.00017418230523312647" c="-4.4031108685039151e-05" d="-1.5122000049871497e-06" /> - <width sOffset="624.92337684766778" a="2.4936246465953023" b="-0.00032095011052393134" c="4.5614917726213661e-05" d="7.9561444091304119e-07" /> - <width sOffset="628.1728791946482" a="2.4930906778926154" b="7.0476625064127147e-07" c="0.00012424195123430338" d="-2.9169689963110677e-06" /> - <width sOffset="631.00815461854654" a="2.4940249465816251" b="0.00063487839318276474" c="-0.00016655769095683836" d="6.8916333305293463e-06" /> - <width sOffset="633.43403446750153" a="2.4946832963424761" b="-5.1549924079376513e-05" c="-0.00011623908370236209" d="7.157068059423236e-06" /> - <width sOffset="643.48854295111266" a="2.4896887565764896" b="-0.00021841216235635153" c="9.7014288148056119e-05" d="8.2575190871468362e-06" /> - <width sOffset="645.53332971488476" a="2.4897183800564662" b="0.00028191275211471626" c="6.169445123274649e-05" d="-5.709687464265976e-06" /> - <width sOffset="653.54305143472379" a="2.4930004394079877" b="0.00017129752900977202" c="-7.6553944536208603e-05" d="-5.9447013398718179e-06" /> - <width sOffset="654.5318615585104" a="2.4930892225023964" b="2.4656839957072933e-06" c="-7.7849461334109606e-05" d="5.1786699756082384e-06" /> - <width sOffset="663.59755991833492" a="2.4905719021073338" b="-0.00013219749543994246" c="6.2507698130387582e-05" d="5.0476043692644079e-06" /> - <width sOffset="669.02772070891388" a="2.4925053992615229" b="0.00099316698031215326" c="-0.00056434906598717743" d="0.00010088109764836102" /> - <width sOffset="670.52754502110633" a="2.4930658413609432" b="-1.8894012889864725e-05" c="-0.00052830808259811835" d="9.4604367015235427e-05" /> - <width sOffset="673.65206840194605" a="2.4907348969570311" b="-0.00054954898850657474" c="0.00035522986647226447" d="9.6771715987177016e-05" /> - <width sOffset="674.76558360735191" a="2.4906970304016554" b="0.00060152515665817374" c="-2.4455589341195564e-05" d="1.8835814879698344e-07" /> - <width sOffset="683.70657688555718" a="2.4942548796534734" b="0.0002093834570294341" c="-1.9829106402954491e-05" d="2.1180098746048005e-07" /> - <width sOffset="693.76108536916831" a="2.494570824137929" b="-0.00012512549890215377" c="-1.4667557585541873e-05" d="2.254395067450929e-07" /> - <width sOffset="703.81559385277944" a="2.4920591054303873" b="-0.00035170449983314362" c="-8.3147681855526565e-06" d="1.293939581252589e-07" /> - <width sOffset="708.90181420580882" a="2.4900721842921829" b="-0.00042624386181839907" c="0.00010992356294277125" d="-4.3703786692844465e-06" /> - <width sOffset="713.87010233639057" a="2.4901318541193795" b="0.00034238620527695957" c="4.4706919650091474e-05" d="-4.3463495716518322e-06" /> - <width sOffset="722.35431545944687" a="2.4936004622647818" b="0.00016241713430948171" c="-8.2354535568548702e-05" d="7.3697220316091309e-06" /> - <width sOffset="723.9246108200017" a="2.4936809691920718" b="-4.1707365747899183e-05" c="-4.8960954586833156e-05" d="6.471901841667069e-06" /> - <width sOffset="729.35484899737708" a="2.4930470600682" b="-9.2629762179271408e-07" c="-2.5648105845388432e-05" d="2.1733604165319721e-06" /> - <width sOffset="733.97911930361283" a="2.4927092330643941" b="-9.8709238093851702e-05" c="3.9887692747633359e-06" d="2.3366663004789647e-06" /> - <width sOffset="739.79099113998222" a="2.4927289966334545" b="0.00018443791465631897" c="-0.00024594398302257468" d="2.4449373758930068e-05" /> - <width sOffset="744.03362778722396" a="2.4909516494339528" b="-0.00058220032777515918" c="5.7455444875269e-05" d="2.4961358798102069e-05" /> - <width sOffset="746.98806113285718" a="2.4903767981815186" b="0.00041093510657369634" c="8.8552138229370606e-05" d="-1.3662389650377342e-05" /> - <width sOffset="752.9889799977185" a="2.493079207682964" b="-2.2665566571585275e-06" c="0.00014172676060718781" d="-2.5322394873876319e-05" /> - <width sOffset="754.08813627083521" a="2.4932143161797029" b="0.00021751382206912861" c="7.5016017144515396e-05" d="-1.197032197405584e-05" /> - <width sOffset="758.03054794513275" a="2.4945043040306594" b="0.00025085173435318358" c="-2.2817203369368324e-05" d="5.370735048835959e-07" /> - <width sOffset="764.14264475444634" a="2.4953077674187849" b="3.212135930679089e-05" c="-1.2970341095153641e-05" d="3.0634046044010408e-07" /> - <width sOffset="774.19715323805747" a="2.4946308966412456" b="-0.00013579269190377302" c="-4.2308269273302287e-06" d="4.4102388069199723e-07" /> - <width sOffset="784.2516617216686" a="2.4932861354118003" b="-8.7116994508369683e-05" c="6.7649418528509649e-06" d="5.5533951618884556e-07" /> - <width sOffset="788.53726183738263" a="2.4930807455028585" b="1.46538701039289e-06" c="0.00031592968298992449" d="-5.9323717210598941e-06" /> - <width sOffset="789.03250431483229" a="2.4931582371739793" b="0.00031002397337639368" c="0.00041383426138975746" d="-7.4331076242790256e-05" /> - <width sOffset="791.60464550040274" a="2.4954286569124591" b="0.00096360107483520435" c="-0.00030790727239103275" d="1.5676143450069691e-05" /> - <width sOffset="794.30617020527973" a="2.4960937457169674" b="-0.00035681256075397426" c="-0.00018060116261410972" d="1.5711358270233104e-05" /> - <width sOffset="804.36067868889086" a="2.4902183139734575" b="0.00077640725946966365" c="0.00029755461810469899" d="1.5346075184962902e-05" /> - <width sOffset="805.17170873521377" a="2.4910519126980546" b="0.0012893412823552562" c="-0.00017771822894450959" d="-8.3241609445646826e-06" /> - <width sOffset="808.17274140376651" a="2.4930957180930609" b="-2.2422412821656948e-06" c="1.865095634948014e-05" d="-3.0584019300892974e-06" /> - <width sOffset="814.41518717250199" a="2.4930645379552718" b="-0.00012692767863574275" c="-3.8583963233731404e-05" d="-3.0634212383357562e-06" /> - <width sOffset="818.72935975862413" a="2.491552842338681" b="-0.00063089340190870119" c="0.00020472054446017487" d="-1.2882944977839866e-05" /> - <width sOffset="824.46969565611312" a="2.4922403020441486" b="0.00044590058661375231" c="-2.2612255339998216e-05" d="-1.0967074988273507e-05" /> - <width sOffset="827.48275839150017" a="2.4930785461500182" b="1.0940979999810117e-05" c="0.00010759381440097614" d="-1.0883360456016398e-05" /> - <width sOffset="834.52420413972425" a="2.4946906053285112" b="-9.2681976540595406e-05" c="-0.00011815263241600797" d="-1.3870903621116004e-05" /> - <width sOffset="836.36263335606031" a="2.4940346934703879" b="-0.00066775603435039691" c="-0.00010621247025229205" d="2.0530972397341442e-05" /> - <width sOffset="840.53915777287796" a="2.4908888269197895" b="-0.00048056679086723041" c="7.6421457228549637e-05" d="-2.6119736430947253e-06" /> - <width sOffset="844.57871262333538" a="2.4900224219133005" b="8.9839613009224956e-06" c="4.5411369826015152e-05" d="-2.2724820976883329e-06" /> - <width sOffset="854.63322110694651" a="2.4923936833443623" b="0.00023296490931405092" c="-2.0352990924257279e-05" d="-3.8475560038726548e-06" /> - <width sOffset="856.51668673803317" a="2.4927345562798013" b="0.00011534963718654425" c="1.7339977321039789e-06" d="-2.9884573324159504e-06" /> - <width sOffset="860.2685208013138" a="2.4930339114054121" b="2.1620838816867501e-06" c="4.5998151069338749e-05" d="-2.2457345288634919e-06" /> - <width sOffset="864.68772959055764" a="2.4937479656381445" b="0.00027713936455141816" c="1.5818837488841602e-05" d="-2.2442108368684624e-06" /> - <width sOffset="870.98453196145113" a="2.495559965768523" b="0.00020940855679029173" c="-2.785864434687772e-05" d="6.0428450963926297e-07" /> - <width sOffset="874.74223807416877" a="2.4959855510518345" b="2.5637496289290709e-05" c="-2.2081042291262307e-05" d="4.5705753087761489e-07" /> - <width sOffset="884.7967465577799" a="2.4944756539560835" b="-0.00027977441376798168" c="-8.2674737189617345e-06" d="4.0997138947825351e-07" /> - <width sOffset="894.04003831338252" a="2.491507025056336" b="-0.0003275298061658923" c="0.00022098361677203607" d="-2.1353538283708274e-05" /> - <width sOffset="894.85125504139103" a="2.4913753512955576" b="-1.1155127162315072e-05" c="0.00017846324065120295" d="-2.1829685037153753e-05" /> - <width sOffset="900.29365662352041" a="2.493081674866815" b="-8.3863371839144538e-06" c="0.00017206683677787137" d="-2.215000116091367e-05" /> - <width sOffset="904.90576352500216" a="2.4945300604222371" b="0.00016530170637357418" c="-0.00013200666237749741" d="-2.2688824004536964e-05" /> - <width sOffset="905.98786454828769" a="2.4945256128255888" b="-0.00020008931589148447" c="-2.1259379031473343e-05" d="1.4206886940187314e-06" /> - <width sOffset="914.96027200861329" a="2.4920450484052026" b="-0.00023847116247021575" c="1.700358695340824e-05" d="1.4089977901592367e-06" /> - <width sOffset="919.86148597442934" a="2.4914505990675142" b="2.9745678244895435e-05" c="0.001039558194387223" d="-0.00032580227676346656" /> - <width sOffset="921.8627076104774" a="2.4930622436647045" b="0.00027611345780752423" c="0.003664708797904519" d="-0.0015854133508711478" /> - <width sOffset="923.05565685338911" a="2.4959153954091207" b="0.0022509987299857096" c="-0.0029160997576024683" d="0.0036239168973194735" /> - <width sOffset="923.45369038689478" a="2.496577895520657" b="0.0016520067537132855" c="-0.006527388397483385" d="0.002579296964685274" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659144" type="pole" s="841.24711840620012" t="-11.932325858658276" height="1.7829334438946205" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276661142" type="pole" s="842.59189572555249" t="11.190668688254274" height="2.2217105966134909" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422286" type="pole" s="739.06606904843864" t="-10.633583576870835" height="1.4521863819132932" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422274" type="pole" s="741.32632166252597" t="11.225045416583313" height="2.5021874628036471" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5181510" s="0" t="10.647756527251792" orientation="none" validLength="112.78954151165766" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="112.78954151165766" s="0" distance="0" tStart="10.647756527251792" tEnd="10.34282869076417" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616966" s="112.78954151165766" t="10.34282869076417" orientation="none" validLength="15.165511268580488" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="15.165511268580488" s="112.78954151165766" distance="0" tStart="10.34282869076417" tEnd="10.398121137799215" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542052422" s="127.95505278023815" t="10.398121137799215" orientation="none" validLength="12.497802645485294" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="12.497802645485294" s="127.95505278023815" distance="0" tStart="10.398121137799215" tEnd="10.328625512109816" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487878" s="140.45285542572344" t="10.328625512109816" orientation="none" validLength="103.88367272101888" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="103.88367272101888" s="140.45285542572344" distance="0" tStart="10.328625512109816" tEnd="10.250074594353496" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078923334" s="244.33652814674232" t="10.250074594353496" orientation="none" validLength="67.922401692801003" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="67.922401692801003" s="244.33652814674232" distance="0" tStart="10.250074594353496" tEnd="10.340256574780749" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741824" s="312.25892983954333" t="10.340256574780749" orientation="none" validLength="40.528765837996389" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="40.528765837996389" s="312.25892983954333" distance="0" tStart="10.340256574780749" tEnd="10.31263642649372" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741825" s="352.78769567753972" t="10.31263642649372" orientation="none" validLength="100.45658002814474" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="100.45658002814474" s="352.78769567753972" distance="0" tStart="10.31263642649372" tEnd="10.507687190299823" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741826" s="453.24427570568446" t="10.507687190299823" orientation="none" validLength="166.01617558052089" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="166.01617558052089" s="453.24427570568446" distance="0" tStart="10.507687190299823" tEnd="10.476983683302951" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741827" s="619.26045128620535" t="10.476983683302951" orientation="none" validLength="173.96203344453374" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="173.96203344453374" s="619.26045128620535" distance="0" tStart="10.476983683302951" tEnd="10.184891417815825" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741828" s="793.2224847307391" t="10.184891417815825" orientation="none" validLength="69.943031052880883" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="69.943031052880883" s="793.2224847307391" distance="0" tStart="10.184891417815825" tEnd="10.225389115291355" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741829" s="863.16551578361998" t="10.225389115291355" orientation="none" validLength="61.849264708604551" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="61.849264708604551" s="863.16551578361998" distance="0" tStart="10.225389115291355" tEnd="10.511973213146163" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5181885" s="0" t="-11.699627160157391" orientation="none" validLength="79.422750010872093" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="79.422750010872093" s="0" distance="0" tStart="-11.699627160157391" tEnd="-10.591642292121669" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273617341" s="79.422750010872093" t="-10.591642292121669" orientation="none" validLength="41.01906291479844" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="41.01906291479844" s="79.422750010872093" distance="0" tStart="-10.591642292121669" tEnd="-10.32497223429249" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542052797" s="120.44181292567053" t="-10.32497223429249" orientation="none" validLength="46.713663525836338" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="46.713663525836338" s="120.44181292567053" distance="0" tStart="-10.32497223429249" tEnd="-10.151390919034307" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810488253" s="167.15547645150687" t="-10.151390919034307" orientation="none" validLength="87.939616725189865" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="87.939616725189865" s="167.15547645150687" distance="0" tStart="-10.151390919034307" tEnd="-10.136893160988709" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078923709" s="255.09509317669674" t="-10.136893160988709" orientation="none" validLength="1.4964389244406391" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.4964389244406391" s="255.09509317669674" distance="0" tStart="-10.136893160988709" tEnd="-10.251646367739975" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741830" s="256.59153210113737" t="-10.251646367739975" orientation="none" validLength="2.1960336638193212" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.1960336638193212" s="256.59153210113737" distance="0" tStart="-10.251646367739975" tEnd="-10.151764882657638" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741831" s="258.7875657649567" t="-10.151764882657638" orientation="none" validLength="14.582023104592679" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.582023104592679" s="258.7875657649567" distance="0" tStart="-10.151764882657638" tEnd="-10.077807485584213" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741832" s="273.36958886954937" t="-10.077807485584213" orientation="none" validLength="41.201081671623456" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="41.201081671623456" s="273.36958886954937" distance="0" tStart="-10.077807485584213" tEnd="-10.070439661202446" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5181889" s="388.33191773117022" t="-10.146948031577574" orientation="none" validLength="80.386778388502989" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="80.386778388502989" s="388.33191773117022" distance="0" tStart="-10.146948031577574" tEnd="-10.052828194782196" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273617345" s="468.71869611967321" t="-10.052828194782196" orientation="none" validLength="31.165677150836473" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="31.165677150836473" s="468.71869611967321" distance="0" tStart="-10.052828194782196" tEnd="-10.089563990360617" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542052801" s="499.88437327050968" t="-10.089563990360617" orientation="none" validLength="34.26112608607815" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="34.26112608607815" s="499.88437327050968" distance="0" tStart="-10.089563990360617" tEnd="-9.9923279290592415" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810488257" s="534.14549935658783" t="-9.9923279290592415" orientation="none" validLength="106.55898237953159" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="106.55898237953159" s="534.14549935658783" distance="0" tStart="-9.9923279290592415" tEnd="-9.977282272632598" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078923713" s="640.70448173611942" t="-9.977282272632598" orientation="none" validLength="90.700487318687919" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="90.700487318687919" s="640.70448173611942" distance="0" tStart="-9.977282272632598" tEnd="-10.291597771676466" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741833" s="731.40496905480734" t="-10.291597771676466" orientation="none" validLength="47.437615298953233" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="47.437615298953233" s="731.40496905480734" distance="0" tStart="-10.291597771676466" tEnd="-10.276420845588587" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741834" s="778.84258435376057" t="-10.276420845588587" orientation="none" validLength="11.096962225154471" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.096962225154471" s="778.84258435376057" distance="0" tStart="-10.276420845588587" tEnd="-10.374559869428941" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412678" s="1.9639515244879298" t="-11.767866313450698" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848134" s="50.292467789630841" t="-11.115574072600083" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283590" s="98.012916333468027" t="-10.53254922050504" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719046" s="146.41670841527605" t="-10.445937208334833" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154502" s="182.28738708085592" t="-10.207344115704842" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741835" s="214.09173268375898" t="-10.237076463762913" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741836" s="270.17360380205349" t="-10.228248541905394" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741837" s="316.7129769802898" t="-10.319687225302044" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741838" s="387.28247641280319" t="-10.289922770026623" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741839" s="423.60829305376626" t="-10.260809120363556" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741840" s="471.75997975052019" t="-10.208276549318265" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741841" s="515.78616289304591" t="-10.211846297926048" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741842" s="563.88058536888093" t="-10.300887174635685" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741843" s="611.58689051751355" t="-10.099222542355317" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741844" s="671.46876198542179" t="-10.198720377942994" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741845" s="730.7154862285629" t="-10.338424852241857" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741846" s="762.99483644210056" t="-10.444693505583031" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8223688" type="274" subtype="60" value="100" unit="km/h" country="DEU" zOffset="1.7829334438946205" s="841.24711840620012" t="-11.932325858658276" orientation="+" /> - <signal dynamic="no" id="8225686" type="274" subtype="60" value="100" unit="km/h" country="DEU" zOffset="2.2217105966134909" s="842.59189572555249" t="11.190668688254274" orientation="+" /> - <signal dynamic="no" id="8986806" type="123" subtype="-1" country="DEU" zOffset="2.5021874628036471" s="741.32446823433975" t="11.233562167394926" orientation="+" /> - <signal dynamic="no" id="8986818" type="1004" subtype="36" country="DEU" zOffset="2.1210380656932273" s="741.32632166252597" t="11.225045416583313" orientation="+" /> - <signal dynamic="no" id="8986830" type="1004" subtype="36" country="DEU" zOffset="1.017878054858528" s="739.06606904843864" t="-10.633583576870835" orientation="+" /> - <signal dynamic="no" id="8986841" type="123" subtype="-1" country="DEU" zOffset="1.4521863819132932" s="739.06333490475095" t="-10.611222968593797" orientation="+" /> - </signals> - </road> - <road name="" length="5.0000000000001874" id="4939864" junction="33555309"> - <link> - <predecessor elementType="road" elementId="4939858" contactPoint="end" /> - <successor elementType="road" elementId="33782103" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-764.8969343330341" y="-804.13597208467195" hdg="1.2541823082028642" length="5.0000000000001874"> - <paramPoly3 aU="0" bU="4.9999898871517896" cU="9.1649920726749688e-06" dU="-1.2744711398030769e-06" aV="-0" bV="-0" cV="-0.0041107419362389061" dV="2.5037757707946219e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.26756359488729" b="0.00037425284062636479" c="-4.3073640228835386e-05" d="3.4803022484531113e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026490421049647068" b="-3.1047459552927202e-05" c="-5.5511151231253659e-19" d="4.3368086899415298e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="4.0609544452737927" b="-1.4779456092714641e-09" c="-0.21636648343763434" d="0.089130787843284709" /> - <laneOffset s="1.618344525213709" a="3.872063690546403" b="-3.0104659470880625e-10" c="0.0038975278907593712" d="-0.00039874033429595666" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="1.618344525213709" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="3.3816554747864784" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="4.0028138308008554" b="-1.2092709029011341e-09" c="-0.21335452774308564" d="0.088890509772282369" /> - <width sOffset="1.618344525213709" a="3.8207930855560921" b="0.007860871066496607" c="0.0057429254831014489" d="-0.00063901840529829177" /> - <roadMark sOffset="0" color="standard" width="0.30539408610475943" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.305394" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-5" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.4532468494576949" b="7.9547882575807946e-10" c="0.034253468493991739" d="-0.027727650858219512" /> - <width sOffset="0.67968135810726238" a="3.4603646031856652" b="0.0081351306308312631" c="-0.0039043058757395723" d="0.0003848024765352485" /> - <roadMark sOffset="0" color="standard" width="0.16178024958896625" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000001874" space="0" width="0.16178000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="2.4930621925799161" b="0.011722337012795578" c="-0.038103336471358051" d="0.028032307332028321" /> - <width sOffset="0.67968135810726238" a="2.4922290414849826" b="-0.0012239363314385642" c="0.00067564587599676883" d="-8.0146002726443476e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="5.0000000009054864" id="4939871" junction="33554459"> - <link> - <predecessor elementType="road" elementId="33782103" contactPoint="end" /> - <successor elementType="road" elementId="33781870" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-701.63626604093258" y="-632.43206543009728" hdg="1.2141092274364926" length="5.0000000009054864"> - <paramPoly3 aU="0" bU="4.9988572513836065" cU="0.0011925572863397383" dU="-5.0870531202688708e-05" aV="-0" bV="-2.2204460492503131e-16" cV="0.0031526639680671924" dV="-0.00029382487640099272" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.08432448155725" b="-0.00011891142994334829" c="-2.526835467578415e-07" d="-4.902267415849084e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028556750927546001" b="-5.9313973433262702e-06" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.8227373279067169" b="-0.00012385172046825246" c="-0.075162367389922796" d="0.01842182944630821" /> - <laneOffset s="2.6635395477183001" a="2.6372772739886248" b="-0.0084418752155567631" c="0.00035041533932240099" d="1.6298263986007338e-07" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.6635395477183001" color="standard" width="0.1620678747004908" weight="standard" type="solid"> - <type name="solid"> - <line length="2.3364604531871862" space="0" width="0.16206799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="4.1155005092197889" b="-0.0052135566120008114" c="-0.11585868804691397" d="0.10402298777886197" /> - <width sOffset="0.33454202658041815" a="4.1046844062262497" b="-0.047806508265134974" c="-0.055719995856939458" d="0.018421953392960343" /> - <width sOffset="2.2095915962670323" a="3.9405872714751666" b="-0.062457703779312368" c="0.047212292493559599" d="0.018410784843292977" /> - <width sOffset="2.6635395477183001" a="3.9236859299032254" b="-0.0082121950074793126" c="0.00059587560079156629" d="-1.0881620368575178e-05" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000009054864" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4932040199265235" b="-0.0074639487944148731" c="0.044926053749571523" d="-0.085981888131446374" /> - <width sOffset="0.33454202658041815" a="2.4925157839160192" b="-0.0062735003343644359" c="0.0028938796729539567" d="-0.00038085374554471348" /> - <width sOffset="2.2095915962670323" a="2.4884162838313069" b="0.00056180609977133592" c="0.0014454597141354485" d="-0.00036968519588416059" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5177220" s="0" t="-2.7568603209897047" orientation="none" validLength="5.0000000009054864" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.0000000009054864" s="0" distance="0" tStart="-2.7568603209897047" tEnd="-3.0756659017018002" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="810.36456450896367" id="4940030" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554597" /> - <successor elementType="junction" elementId="33554629" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="665.4755797291657" y="-246.96694256282149" hdg="0.045245374476632572" length="203.48871174168644"> - <paramPoly3 aU="0" bU="204.35157648297888" cU="-2.5886427270156855" dU="1.236154755133883" aV="-0" bV="-0" cV="12.029246367972236" dV="0.16446055077071922" /> - </geometry> - <geometry s="203.48871174168644" x="867.71539889364101" y="-225.6040783101808" hdg="0.16567485777310154" length="230.01109833559025"> - <paramPoly3 aU="0" bU="228.8612670895088" cU="3.6016308992070374" dU="-2.9542286818435315" aV="-0" bV="4.2632564145606011e-14" cV="12.143827641507045" dV="0.89029132768085462" /> - </geometry> - <geometry s="433.49981007727672" x="1091.9319104741917" y="-174.89832440627958" hdg="0.28377720918318494" length="351.01049469927557"> - <paramPoly3 aU="0" bU="351.41130454347405" cU="-2.0517904246049437" dU="0.12971653102607217" aV="-0" bV="2.8421709430404007e-14" cV="42.867732494218792" dV="-13.221634219587385" /> - </geometry> - <geometry s="784.51030477655229" x="1419.1427990989807" y="-48.586615334869286" hdg="0.41551192872393572" length="25.854259732411393"> - <paramPoly3 aU="0" bU="25.899092983700484" cU="-0.71367390842275935" dU="0.66762884541479917" aV="-0" bV="-1.7763568394002505e-15" cV="0.0224702809469981" dV="0.1687837018369959" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.08135302663484" b="-0.014831436486142777" c="-0.00014107881827540346" d="1.9430742047301887e-06" /> - <elevation s="10.004500796406958" a="164.92079702347138" b="-0.017070835683341088" c="-4.435731974029126e-05" d="1.9430742047297588e-06" /> - <elevation s="20.009001592813917" a="164.74751780754431" b="-0.017374934262291114" c="3.7772034653144486e-05" d="1.9374980371928335e-06" /> - <elevation s="30.013502389220875" a="164.57941098349499" b="-0.016037380814797744" c="0.00019754385793400986" d="-8.2088500748288593e-06" /> - <elevation s="39.999520773645003" a="164.43078612230718" b="-0.014547801078103068" c="-0.00011977057021482929" d="-1.0161655844123711e-05" /> - <elevation s="40.018003185627833" a="164.43051720287647" b="-0.014552238789792064" c="2.0183892013606141e-05" d="-3.9032746437658677e-06" /> - <elevation s="50.022503982034792" a="164.28304097742691" b="-0.015320415963349782" c="-0.00011765231649636817" d="5.9514091735664461e-06" /> - <elevation s="60.02700477844175" a="164.12395148772006" b="-0.015887491072916354" c="5.1838280413330022e-05" d="-5.0580778026903374e-06" /> - <elevation s="70.031505574848708" a="163.96512865549997" b="-0.01636904840845543" c="8.5056244463654323e-06" d="-9.7307268471925153e-09" /> - <elevation s="80.036006371255667" a="163.8022060820482" b="-0.016201781201766963" c="-6.1042720984512194e-05" d="4.8733254571444436e-06" /> - <elevation s="90.040507167662625" a="163.63888548953258" b="-0.015959871139130662" c="1.2541874961618018e-05" d="-9.7307268471936105e-09" /> - <elevation s="100.04500796406958" a="163.48046051885777" b="-0.01571184258945351" c="0.0001243681906087084" d="-7.5606021450088283e-06" /> - <elevation s="110.04950876047654" a="163.32814857849721" b="-0.015493582092298418" c="-7.719233393034479e-05" d="3.2877420609172482e-06" /> - <elevation s="120.0540095568835" a="163.1687090239158" b="-0.016050912959328215" c="-5.6862646249336914e-05" d="4.5239684862554216e-06" /> - <elevation s="130.05851035329044" a="163.00696634778475" b="-0.01583026523023133" c="4.072236192403317e-05" d="-7.2563517188568199e-07" /> - <elevation s="140.06301114969742" a="162.8519417339663" b="-0.015233337977464307" c="1.7831398985473453e-05" d="8.1733468425039366e-07" /> - <elevation s="150.06751194610439" a="162.70214297618665" b="-0.014631128312395486" c="0.00011345345668169124" d="-4.1385605347053335e-06" /> - <elevation s="160.07201274251133" a="162.56297725082192" b="-0.013603723937962506" c="4.4810595312615613e-06" d="2.5957547726815587e-06" /> - <elevation s="170.07651353891828" a="162.42992655450064" b="-0.012734634843286352" c="0.00012453490553712427" d="-6.8279355605868733e-06" /> - <elevation s="180.08101433532525" a="162.30815043421555" b="-0.012293040672023373" c="0.00010942382650665012" d="-1.2164904484752729e-05" /> - <elevation s="190.08551513173222" a="162.18393559637045" b="-0.013756336343369152" c="3.7340200913870817e-06" d="-9.7307268471987853e-09" /> - <elevation s="200.09001592813917" a="162.04667431280205" b="-0.013684544175819723" c="-0.00029206828671046687" d="2.0034563519513623e-05" /> - <elevation s="210.09451672454611" a="161.90059578145528" b="-0.013512758426945017" c="1.7125682663677001e-05" d="-9.7307268471872958e-09" /> - <elevation s="220.09901752095308" a="161.76711174533719" b="-0.013173012461656213" c="0.00030125099505124998" d="-1.7717502653284142e-05" /> - <elevation s="230.10351831736006" a="161.64773311838525" b="-0.012465317266880455" c="-2.8198519616165047e-05" d="-9.7307268471880287e-09" /> - <elevation s="240.108019113767" a="161.52019170714095" b="-0.013032463337202026" c="-0.00032025270639192047" d="1.7524512834888183e-05" /> - <elevation s="250.11251991017394" a="161.3753024980993" b="-0.014178312878179404" c="4.428567710010219e-05" d="-1.4078743838476263e-06" /> - <elevation s="260.11702070658089" a="161.23647833443491" b="-0.013714943288615644" c="3.2061640467384263e-05" d="-1.6133564896057794e-06" /> - <elevation s="270.12152150298789" a="161.10086068824887" b="-0.013557864601708856" c="-3.9011196812356881e-05" d="3.8579118904479429e-06" /> - <elevation s="280.12602229939483" a="160.965179512281" b="-0.013180024078720898" c="3.0880721341279645e-05" d="7.1031478960367484e-07" /> - <elevation s="290.13052309580178" a="160.83712207772126" b="-0.012348845377232817" c="0.00035515545206262172" d="-2.3269427403436709e-05" /> - <elevation s="300.13502389220878" a="160.72582470552507" b="-0.012229652863679401" c="-2.4214340587500044e-06" d="-9.7307268472618198e-09" /> - <elevation s="310.13952468861572" a="160.60322102841647" b="-0.012281025188024576" c="-3.8326948536268335e-05" d="3.4605850456412817e-06" /> - <elevation s="320.14402548502267" a="160.47998461624195" b="-0.012008798915012761" c="0.00012223618451237531" d="-3.9743782095954452e-06" /> - <elevation s="330.14852628142961" a="160.36809745507844" b="-0.010756361880842665" c="0.00010016519408801336" d="-5.762111753899721e-06" /> - <elevation s="340.15302707783655" a="160.26474106649218" b="-0.010482346274645912" c="2.2079886918158211e-06" d="-1.7523712928117051e-06" /> - <elevation s="350.15752787424356" a="160.15833668402948" b="-0.010964351343717316" c="-8.1883334081143638e-05" d="4.8811451614337888e-06" /> - <elevation s="360.1620286706505" a="160.04533585524842" b="-0.011137093118270897" c="8.8930992812344791e-05" d="-7.3309192737553631e-06" /> - <elevation s="370.16652946705744" a="159.93547508234354" b="-0.011558928667583386" c="-5.2042405443466399e-05" d="3.1040153335953599e-06" /> - <elevation s="380.17103026346444" a="159.81773305342162" b="-0.011668202219817644" c="4.7930115543241704e-06" d="5.0758440893182793e-07" /> - <elevation s="383.99889025982645" a="159.77316750785008" b="-0.011609196105257966" c="2.2794526750102008e-05" d="4.8866008477801588e-07" /> - <elevation s="390.17553105987139" a="159.70244645503882" b="-0.011271680443642237" c="0.00012378219939945971" d="-7.2772457678921214e-06" /> - <elevation s="400.18003185627833" a="159.59478120766906" b="-0.010980061595409528" c="-1.3906015927125416e-05" d="-2.865505137988808e-08" /> - <elevation s="410.18453265268528" a="159.48351062529588" b="-0.011266911345633594" c="-0.00019033362033804216" d="1.1904072288168281e-05" /> - <elevation s="420.18903344909222" a="159.3636604556838" b="-0.011500859979917682" c="1.2662622048190998e-05" d="3.460342572257897e-06" /> - <elevation s="430.19353424549922" a="159.25333251211904" b="-0.010208456115373658" c="0.00022123139998499441" d="-1.1161350419096228e-05" /> - <elevation s="440.19803504190617" a="159.16216863591973" b="-0.0091332565826661629" c="-2.6358324643816171e-05" d="2.3678230257090182e-06" /> - <elevation s="450.20253583831311" a="159.07052777908899" b="-0.0089496738654773287" c="5.6051637098931739e-05" d="-3.5589527896610231e-06" /> - <elevation s="460.20703663472011" a="158.98303720977032" b="-0.0088967837099818963" c="5.1564193779590782e-06" d="-2.0879835695858005e-06" /> - <elevation s="470.21153743112706" a="158.89245463214513" b="-0.0094205679595376068" c="-8.8397981368667456e-05" d="5.3920472412760937e-06" /> - <elevation s="480.216038227534" a="158.79475812640808" b="-0.0095702526990681762" c="1.2736460816202396e-05" d="6.1788996886968618e-07" /> - <elevation s="490.22053902394094" a="158.70090604312594" b="-0.0091298749462818546" c="1.8527380450243734e-05" d="-8.3651564814502429e-07" /> - <elevation s="500.22503982034789" a="158.61058296248189" b="-0.0090103412058194915" c="-2.4842713908058934e-05" d="1.9962131253228082e-06" /> - <elevation s="510.22954061675489" a="158.51995139828165" b="-0.0089080159761342256" c="6.5990471105722599e-05" d="-1.0079889077743133e-06" /> - <elevation s="520.23404141316178" a="158.43642678344858" b="-0.0078902814734298447" c="0.00012622483605672442" d="-8.0940146069039576e-06" /> - <elevation s="530.23854220956878" a="158.36201735619213" b="-0.0077950391723864516" c="-1.8020709464773249e-05" d="-1.8272740420564396e-06" /> - <elevation s="540.24304300597578" a="158.28039844471235" b="-0.0087042913517404504" c="-9.9869293766786723e-05" d="4.1212777367969517e-06" /> - <elevation s="550.24754380238267" a="158.1874472786761" b="-0.0094650796963761646" c="-2.4999510153713977e-05" d="7.0163523009049317e-07" /> - <elevation s="560.25204459878967" a="158.09095426247151" b="-0.0097546148481554643" c="1.291610550030067e-05" d="-2.4438954710315679e-06" /> - <elevation s="570.25654539519667" a="157.99220978712216" b="-0.010230005231012976" c="-8.5919715322666201e-05" d="4.9340346396345408e-06" /> - <elevation s="580.26104619160355" a="157.88620468398977" b="-0.010467629834896587" c="-0.00013909571249597709" d="1.5125966627181071e-05" /> - <elevation s="590.26554698801056" a="157.78270557756284" b="-0.0087089205266252384" c="1.5804218377891082e-06" d="-2.8655051379764423e-08" /> - <elevation s="600.27004778441756" a="157.69570666593734" b="-0.0086859021189440739" c="0.00029805153554445874" d="-1.3154150147077783e-05" /> - <elevation s="610.27454858082444" a="157.62546862086083" b="-0.0066719865621182976" c="0.00028310333919183276" d="-2.4871463246864499e-05" /> - <elevation s="620.27904937723144" a="157.56214948866875" b="-0.0084755283663786526" c="-2.6900114743667472e-05" d="-2.8655051379359886e-08" /> - <elevation s="630.28355017363833" a="157.47463493115933" b="-0.009022377060519924" c="-0.00021715839698110325" d="1.2320968060112402e-05" /> - <elevation s="640.28805097004533" a="157.37497277265959" b="-0.0096678813546837196" c="1.9697595410461398e-05" d="-2.865505138095831e-08" /> - <elevation s="650.29255176645233" a="157.28019328522453" b="-0.0092823563921300267" c="1.4093061800351173e-05" d="-2.8655051375576997e-08" /> - <elevation s="660.29705256285922" a="157.18870982461254" b="-0.0090089725515064001" c="0.00035454365185609799" d="-1.9199251702338392e-05" /> - <elevation s="664.00745260563735" a="157.15918323586541" b="-0.0071709272281741832" c="0.00020463909698437908" d="-1.9395538312043382e-05" /> - <elevation s="670.30155335926622" a="157.11731943430385" b="-0.0068999927704148896" c="0.00018159365478837556" d="-1.5357603285157608e-05" /> - <elevation s="680.30605415567311" a="157.05108581756252" b="-0.0078779142481024082" c="-2.7499221736392691e-05" d="2.7650678090757015e-06" /> - <elevation s="690.31055495208011" a="156.97228762308657" b="-0.0075978790084313807" c="3.5612975567163156e-06" d="1.9755977077632729e-06" /> - <elevation s="700.31505574848711" a="156.89860935333451" b="-0.0069334080617736429" c="3.4255143881240021e-05" d="4.3330830621748079e-07" /> - <elevation s="710.319556544894" a="156.83310655908861" b="-0.0061178873011457436" c="6.6851209022232452e-05" d="-3.0596864721346979e-06" /> - <elevation s="720.324057341301" a="156.77552747100242" b="-0.0056989937424733331" c="3.1739715212790111e-05" d="-3.059686472134769e-06" /> - <elevation s="730.328558137708" a="156.71862489317169" b="-0.0059826461193601566" c="-0.00023660163484586153" d="1.0831439140286718e-05" /> - <elevation s="740.33305893411489" a="156.64593610986714" b="-0.0074644512013826289" c="-0.0001742422117877216" d="1.4979858059874273e-05" /> - <elevation s="750.33755973052189" a="156.56881818614744" b="-0.0064528602887877909" c="7.0288639670978176e-05" d="-2.2494166144886641e-07" /> - <elevation s="760.34206052692889" a="156.51107048721408" b="-0.005113998042756457" c="0.00043172067145613588" d="-2.3736677831872477e-05" /> - <elevation s="770.34656132333578" a="156.47934968490503" b="-0.003603113269273206" c="-7.0392090202619123e-05" d="2.2654482729029165e-06" /> - <elevation s="780.35106211974278" a="156.4385252970238" b="-0.0043313423154265262" c="-1.1725833194000785e-05" d="-1.7829732170453085e-06" /> - <elevation s="790.35556291614967" a="156.39223335857031" b="-0.0051013380919168478" c="1.8437986024159941e-05" d="-7.03085467746724e-06" /> - <elevation s="800.36006371255667" a="156.33600212397081" b="-0.0068435678974351688" c="-4.3268074495666282e-05" d="-2.2494166145281316e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.027780893513750161" b="-8.5458226194449138e-06" c="-8.8832132061845229e-07" d="-5.4136977864845911e-23" /> - <superelevation s="10.004500796406958" a="-0.027955302316077239" b="-2.6320245338631479e-05" c="-9.0519916591246134e-07" d="1.6870252336793734e-09" /> - <superelevation s="20.009001592813917" a="-0.028307535344654092" b="-4.3925813641133537e-05" c="-7.0049356680574431e-06" d="6.1307328746833519e-07" /> - <superelevation s="30.013502389220875" a="-0.028834213991188327" b="0" c="2.1817394652409602e-06" d="-1.4538386336574404e-07" /> - <superelevation s="40.018003185627833" a="-0.028761423863847366" b="0" c="-3.8657158581428018e-05" d="2.5102312246905808e-06" /> - <superelevation s="50.022503982034792" a="-0.030116998102755921" b="-1.9743745291148706e-05" c="9.8674315155435908e-07" d="-2.7068488932422955e-23" /> - <superelevation s="60.02700477844175" a="-0.030215761260500597" b="0" c="1.4164934904249042e-05" d="-7.0370035175400473e-07" /> - <superelevation s="70.031505574848708" a="-0.029502643356443661" b="7.212602404921014e-05" c="7.4631379552524161e-06" d="-7.3752250714626495e-07" /> - <superelevation s="80.036006371255667" a="-0.028772591530416617" b="0" c="-6.9161258993004525e-07" d="0" /> - <superelevation s="90.040507167662625" a="-0.028841815059568936" b="-1.3838477413521822e-05" c="-4.6653578096690163e-06" d="3.5697069473124945e-07" /> - <superelevation s="100.04500796406958" a="-0.029089765042434421" b="0" c="1.9130372098707266e-05" d="-1.1913762583922379e-06" /> - <superelevation s="110.04950876047654" a="-0.028367991031949483" b="2.5044967355771427e-05" c="-2.0902788105320711e-06" d="8.3821653648543038e-08" /> - <superelevation s="120.0540095568835" a="-0.028242709834021083" b="8.3897123467949819e-06" c="-4.0067982681523482e-07" d="-1.2405798753399194e-09" /> - <superelevation s="130.05851035329044" a="-0.028200121264239212" b="0" c="-5.5187059748519356e-06" d="6.2726383446630668e-08" /> - <superelevation s="140.06301114969742" a="-0.028689677627781733" b="-9.1588938674245027e-05" c="-4.9429115370953051e-06" d="6.789922679422766e-08" /> - <superelevation s="150.06751194610439" a="-0.03003272448405632" b="-0.00017010355529275466" c="-7.8625900885513527e-06" d="4.2763495906454398e-07" /> - <superelevation s="160.07201274251133" a="-0.032093279936577769" b="-0.00019902013731760285" c="8.6410215201997855e-06" d="-7.9434878295374596e-07" /> - <superelevation s="170.07651353891828" a="-0.034014918728646273" b="-0.00026464111924517361" c="-1.4907459408105224e-05" d="7.6509113455042796e-07" /> - <superelevation s="180.08101433532525" a="-0.03738848451307851" b="-0.00033319050026012952" c="-4.5549130172522513e-07" d="8.563561949987711e-08" /> - <superelevation s="190.08551513173222" a="-0.04068172797906168" b="-0.00031659060967838086" c="-2.9713878434761228e-06" d="4.2274770873569814e-07" /> - <superelevation s="200.09001592813917" a="-0.043723146526403162" b="-0.00024910661337752647" c="3.5037153679884153e-07" d="5.1346891781158774e-07" /> - <superelevation s="210.09451672454611" a="-0.045666102602913081" b="-8.7916661048268116e-05" c="4.393855467523169e-06" d="0" /> - <superelevation s="220.09901752095308" a="-0.046105883755650501" b="0" c="2.2801770924148047e-05" d="-1.5194341952132298e-06" /> - <superelevation s="230.10351831736006" a="-0.04534514039668814" b="0" c="-2.2019852986240567e-05" d="1.3097800313277141e-06" /> - <superelevation s="240.108019113767" a="-0.046237558935478276" b="-4.7307481284065498e-05" c="2.3643099364368009e-06" d="0" /> - <superelevation s="250.11251991017394" a="-0.046474202802569496" b="0" c="1.08379201956752e-05" d="-5.2179857690331188e-07" /> - <superelevation s="260.11702070658089" a="-0.045911938424814627" b="6.0175447126976617e-05" c="1.2611610140016095e-06" d="-8.6352072161636916e-08" /> - <superelevation s="270.12152150298789" a="-0.045270152185157529" b="5.9481073782924427e-05" c="-1.6062091390310645e-06" d="1.1390387454583869e-07" /> - <superelevation s="280.12602229939483" a="-0.044721781524749808" b="6.1544361336477374e-05" c="3.3753329373761246e-06" d="-2.701223503487873e-07" /> - <superelevation s="290.13052309580178" a="-0.04403871096114724" b="4.7971735994099669e-05" c="-1.293621342448284e-06" d="-7.3559318304373712e-08" /> - <superelevation s="300.13502389220878" a="-0.04376191498283382" b="0" c="-2.9937142691678438e-05" d="1.6978856060731836e-06" /> - <superelevation s="310.13952468861572" a="-0.045058145488839414" b="-8.9188040550954928e-05" c="3.1927676251124499e-06" d="8.427061946422646e-08" /> - <superelevation s="320.14402548502267" a="-0.045546478628277827" b="0" c="8.5820775545095302e-06" d="-4.4169330316938467e-07" /> - <superelevation s="330.14852628142961" a="-0.045129788138424734" b="3.909150736674021e-05" c="3.1400987426165656e-06" d="-3.3943354734680469e-07" /> - <superelevation s="340.15302707783655" a="-0.044764296595111226" b="0" c="-8.9116213991708243e-06" d="5.9384081761624313e-07" /> - <superelevation s="350.15752787424356" a="-0.045061618097882158" b="0" c="9.690503808664018e-06" d="-6.4574295148869933e-07" /> - <superelevation s="360.1620286706505" a="-0.044738310472261136" b="0" c="-9.9523447217564546e-08" d="6.6319115927934116e-09" /> - <superelevation s="370.16652946705744" a="-0.044741630907405572" b="0" c="2.2779981729956976e-06" d="-1.2857602546557781e-07" /> - <superelevation s="380.17103026346444" a="-0.044642375699809278" b="6.972931947661258e-06" c="-1.8705967754415181e-07" d="-1.0757163199705109e-08" /> - <superelevation s="390.17553105987139" a="-0.044602109500958234" b="0" c="-1.6200801697852463e-05" d="7.5593175164602866e-07" /> - <superelevation s="400.18003185627833" a="-0.045466695429547725" b="-9.7178157849573741e-05" c="-1.2939530186915317e-05" d="1.1858830693548878e-06" /> - <superelevation s="410.18453265268528" a="-0.046546547416157075" b="0" c="7.4612551294401143e-06" d="-3.4105420356490417e-07" /> - <superelevation s="420.18903344909222" a="-0.046141265035783564" b="4.6883883041471933e-05" c="6.5975821865538491e-06" d="-5.9577996751423449e-07" /> - <superelevation s="430.19353424549922" a="-0.045608447725702959" b="0" c="-1.9821579096471289e-05" d="1.1911927850803679e-06" /> - <superelevation s="440.19803504190617" a="-0.046399588390761824" b="-3.8930420826267905e-05" c="3.487862604184327e-06" d="-1.5415234499088028e-07" /> - <superelevation s="450.20253583831311" a="-0.046594328103842252" b="-1.5429113788187163e-05" c="-3.3193299505139891e-07" d="7.3503026062182907e-08" /> - <superelevation s="460.20703663472011" a="-0.046708309553125368" b="0" c="2.9863582986138232e-06" d="-6.3515545386241996e-08" /> - <superelevation s="470.21153743112706" a="-0.046473006188107714" b="4.0682228245567074e-05" c="4.5408076435991103e-06" d="-2.8240609414527321e-07" /> - <superelevation s="480.216038227534" a="-0.045894298783360599" b="4.6741147073144006e-05" c="1.3424428979409633e-06" d="-2.4511960084964747e-07" /> - <superelevation s="490.22053902394094" a="-0.045537762501871228" b="0" c="-1.849001037493263e-05" d="1.2321128094382843e-06" /> - <superelevation s="500.22503982034789" a="-0.046154651104369136" b="0" c="5.9825932673334679e-06" d="-3.9866012235094461e-07" /> - <superelevation s="510.22954061675489" a="-0.045955051778832669" b="0" c="-3.5551380435014978e-06" d="2.3690257787298179e-07" /> - <superelevation s="520.23404141316178" a="-0.046073663077305281" b="0" c="1.5089657401765956e-05" d="-6.8484980878731515e-07" /> - <superelevation s="530.23854220956878" a="-0.045249113657849546" b="9.6289052557877578e-05" c="5.737959295946734e-06" d="-4.3495051853137001e-07" /> - <superelevation s="540.24304300597578" a="-0.044147015271304157" b="8.0497249834107868e-05" c="-1.0613530619535e-05" d="7.645123383006929e-07" /> - <superelevation s="550.24754380238267" a="-0.043638444057701738" b="9.7691301576344691e-05" c="9.8288685951542758e-06" d="-5.1429558801701475e-07" /> - <superelevation s="560.25204459878967" a="-0.042192309862459004" b="0.00013992955690864437" c="1.5062919124954232e-06" d="-1.9670792148445064e-07" /> - <superelevation s="570.25654539519667" a="-0.040838593330634915" b="0.00011100344524706123" c="-3.9154739941186866e-06" d="1.4851683482760891e-07" /> - <superelevation s="580.26104619160355" a="-0.039971241749702721" b="7.7253885978185741e-05" c="-3.8392919203951537e-06" d="2.8941888954035339e-07" /> - <superelevation s="590.26554698801056" a="-0.039292820203046336" b="8.7337329208138242e-05" c="-3.965094221925384e-06" d="5.9141234967551277e-07" /> - <superelevation s="600.27004778441756" a="-0.038223708990464962" b="0.00018558320304435676" c="9.5653858263958066e-06" d="-1.6961460008712134e-07" /> - <superelevation s="610.27454858082444" a="-0.035579485597732316" b="0.00032604682889975756" c="1.9468005708677431e-05" d="-1.3290456921513358e-06" /> - <superelevation s="620.27904937723144" a="-0.031699837471677782" b="0.00031650949187552818" c="-1.0306385278299982e-05" d="3.1800823254881236e-07" /> - <superelevation s="630.28355017363833" a="-0.029246446670654142" b="0.00020577737893498092" c="-9.7495225173427831e-06" d="5.8035524098566369e-07" /> - <superelevation s="640.28805097004533" a="-0.02758243756880269" b="0.00018496249856805706" c="9.9082078411479362e-07" d="8.7159335339917846e-08" /> - <superelevation s="650.29255176645233" a="-0.025545531742195031" b="0.00023095917629978137" c="-2.76699506704305e-06" d="5.4993120024326766e-07" /> - <superelevation s="660.29705256285922" a="-0.022961175042345388" b="0.00034072226879134222" c="1.653973501849578e-05" d="-8.2994204237709687e-07" /> - <superelevation s="670.30155335926622" a="-0.018728019323241883" b="0.00042245906596145025" c="4.7041074210802192e-06" d="-4.7685378286584925e-07" /> - <superelevation s="680.30605415567311" a="-0.014508190918624063" b="0.00037339862169618286" c="-9.8582449693188654e-06" d="5.0187254633437171e-07" /> - <superelevation s="690.31055495208011" a="-0.01125668570696846" b="0.00032684230637179153" c="-8.0238949475674309e-07" d="9.8566947466897522e-08" /> - <superelevation s="700.31505574848711" a="-0.0079684026898318838" b="0.00034038400170905737" c="-4.2848825314298664e-06" d="5.4522652919335229e-07" /> - <superelevation s="710.319556544894" a="-0.0044459416746035684" b="0.00041836300942111151" c="1.5566375447109301e-05" d="-8.9377967671074714e-07" /> - <superelevation s="720.324057341301" a="0.00040262343204956367" b="0.00046145531998564686" c="4.05761368836018e-06" d="-6.3720093045226551e-07" /> - <superelevation s="730.328558137708" a="0.0047873185580017347" b="0.00035131172618023095" c="-1.2854850179548787e-05" d="4.1608367276476533e-07" /> - <superelevation s="740.33305893411489" a="0.0074320203207640222" b="0.00021903649805167814" c="-1.5190820194576661e-05" d="1.0656592570766566e-06" /> - <superelevation s="750.33755973052189" a="0.0091700201964021281" b="0.00023506897338827591" c="3.4849089469928496e-06" d="2.6458577839534813e-07" /> - <superelevation s="760.34206052692889" a="0.012135515783711187" b="0.00038424572246059348" c="2.9513377043468194e-05" d="-2.0725042915258318e-06" /> - <superelevation s="770.34656132333578" a="0.016858393469148046" b="0.00035246784213359482" c="-2.0708947304295542e-05" d="8.7496446405939156e-07" /> - <superelevation s="780.35106211974278" a="0.019188045398377932" b="0.00020082815714213409" c="-2.8801501160991506e-06" d="-3.2148713836066964e-08" /> - <superelevation s="790.35556291614967" a="0.020876764385286892" b="0.00013354593108807442" c="2.778343835028969e-06" d="-6.298922600659939e-07" /> - <superelevation s="800.36006371255667" a="0.021860166146233019" b="0" c="-3.3177102853243915e-08" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="8.0643985290141647" b="1.9560120459912565e-09" c="0.0002625867238936278" d="-9.7401962564521067e-07" /> - <laneOffset s="2.1978829964286919" a="8.0656566668372971" b="0.0011401561874577969" c="0.00080333822674159437" d="-4.3799095747326461e-05" /> - <laneOffset s="10.004500796406958" a="8.1026776006243519" b="0.0056750833265940635" c="-0.00021556539624386902" d="-4.4537091692313096e-05" /> - <laneOffset s="13.929394993450089" a="8.1189381515916761" b="0.0019246863511609893" c="-0.00013167122478416758" d="4.2649701391024122e-06" /> - <laneOffset s="20.009001592813917" a="8.1267310964730886" b="0.0007965884276275577" c="-4.5773670675392749e-05" d="4.4927875953776348e-06" /> - <laneOffset s="29.916850566701356" a="8.1344999044945876" b="0.0012126610306731911" c="9.6766148436677705e-05" d="-7.8793918847697997e-06" /> - <laneOffset s="40.23070431180625" a="8.1486558550137271" b="0.00069420021206588695" c="-1.6094292025861035e-05" d="-9.8785576904785543e-06" /> - <laneOffset s="44.55789001771398" a="8.1505580244526588" b="-0" c="1.0555184701401431e-05" d="-2.3571348794430586e-06" /> - <laneOffset s="50.022503982034792" a="8.1504885759542756" b="-9.5806306744238216e-05" c="-8.0380910393186923e-06" d="-4.8512360302918662e-08" /> - <laneOffset s="60.02700477844175" a="8.1486769709660969" b="-0.00027120729484817266" c="-1.3966882263975401e-05" d="3.4659520322418613e-07" /> - <laneOffset s="70.031505574848708" a="8.1449127950178202" b="-0.00044659848501762815" c="-1.3958306672064243e-05" d="3.4604859248444105e-07" /> - <laneOffset s="80.036006371255667" a="8.1393942287499907" b="-0.0006219822170204862" c="-8.279699886572825e-06" d="-1.3802310123208064e-07" /> - <laneOffset s="82.383594388015823" a="8.1378866541844808" b="-0.00066313887161373244" c="3.4695737723741754e-05" d="-3.0558244860515404e-06" /> - <laneOffset s="90.040507167662625" a="8.1334714143462268" b="-0.00066928790267416281" c="-3.1895583444924974e-05" d="-3.2470289935261676e-06" /> - <laneOffset s="97.282295974157748" a="8.125718684291666" b="-0.0016421068059285855" c="-0.00028160547705206559" d="-2.2114747779671839e-06" /> - <laneOffset s="100.04500796406958" a="8.1189860079772824" b="-0.0032487342198366026" c="-0.00030261557431960614" d="-8.5480256557578647e-07" /> - <laneOffset s="108.56996686501964" a="8.0687685247644456" b="-0.0085946730227003075" c="-0.010114347403326448" d="0.021391670527998188" /> - <laneOffset s="109.02660025852106" a="8.0647717232618774" b="-0.0044503786152515759" c="0.00032192167802352168" d="4.5847267673551572e-06" /> - <laneOffset s="110.04950876047654" a="8.0605611403362829" b="-0.00377739419860258" c="0.00030773330792603361" d="-1.3215618355535966e-05" /> - <laneOffset s="120.0540095568835" a="8.0403377643634073" b="-0.0015882131083991035" c="-9.0767222171699624e-05" d="-1.3124070412117241e-05" /> - <laneOffset s="124.53468574011903" a="8.0302186209476449" b="-0.0031920647565543631" c="-0.00015959881677852402" d="6.689190372733365e-06" /> - <laneOffset s="130.05851035329044" a="8.0088438734760921" b="-0.004342941961027187" c="-4.5673770034477101e-05" d="6.4055354809210237e-06" /> - <laneOffset s="139.10650123824769" a="7.9705545733657264" b="-0.0035962642957415303" c="0.00013307263429224295" d="-9.3580160142160314e-06" /> - <laneOffset s="149.31822530353307" a="7.9377421522159484" b="-0.0038060045651443332" c="3.4780293061863774e-05" d="-1.5837322128127809e-05" /> - <laneOffset s="154.42409232069267" a="7.9171078216957058" b="-0.0046894686297970067" c="-0.00013573323228190841" d="5.9815431555178948e-07" /> - <laneOffset s="160.07201274251133" a="7.8864000862876411" b="-0.0061654480361745473" c="-7.5074715132773427e-05" d="1.4837392780293752e-06" /> - <laneOffset s="166.14732274495464" a="7.8465048238569013" b="-0.006913360629477389" c="-4.0354241912774731e-05" d="-4.1612920549018077e-06" /> - <laneOffset s="170.43927565505379" a="7.8157606479159618" b="-0.0074897213738716701" c="-1.5597146122109018e-05" d="-6.1852321141995126e-06" /> - <laneOffset s="174.73111029695499" a="7.7828397321836844" b="-0.0079653951609085644" c="-1.4623819968438248e-05" d="-3.9118481792786314e-06" /> - <laneOffset s="180.08101433532525" a="7.7392080866278832" b="-0.0084577558016292482" c="0.000131134072554288" d="-4.9863075921197965e-05" /> - <laneOffset s="181.99836605155062" a="7.723122207139534" b="-0.0085048210677079773" c="0.00063081315926539886" d="-0.0006181432853748438" /> - <laneOffset s="182.88009083592812" a="7.7156899850031584" b="-0.0088341192166133883" c="6.2886905855435009e-05" d="-3.6154519271645393e-06" /> - <laneOffset s="190.18963563171033" a="7.6530646109505049" b="-0.0084942846767723634" c="-0.00010143251960178671" d="1.3526608387882469e-05" /> - <laneOffset s="200.15967395739719" a="7.5716990942791931" b="-0.0064831547377271525" c="0.00035808959336882968" d="-1.3102351221407385e-05" /> - <laneOffset s="210.09451672454611" a="7.5297859058987893" b="-0.0032476765905600866" c="7.5814799496022635e-06" d="-1.5454559267024288e-05" /> - <laneOffset s="213.76412926759633" a="7.5172065935084715" b="-0.0038163702943794426" c="5.437305625462968e-05" d="-2.0389656298376567e-06" /> - <laneOffset s="220.09901752095308" a="7.4946939945162443" b="-0.0033729518455094276" c="1.2384691811149312e-05" d="-1.0395890663708669e-06" /> - <laneOffset s="230.10351831736006" a="7.4611478859512648" b="-0.0034373040491463519" c="-9.703893998047029e-06" d="-4.3013199878955387e-06" /> - <laneOffset s="234.21916054102914" a="7.4465369454784049" b="-0.0037357534275588339" c="-4.438867966837503e-05" d="4.0178564803223653e-07" /> - <laneOffset s="240.108019113767" a="7.4230803338994304" b="-0.0042167505831888271" c="-1.6791040387138192e-05" d="2.2837797129391916e-06" /> - <laneOffset s="250.11251991017394" a="7.3815000982410215" b="-0.0038669717547183875" c="4.5159221905460884e-05" d="3.9838299425476155e-06" /> - <laneOffset s="254.02925415722655" a="7.3672863483190447" b="-0.003329872911957531" c="-5.6492027919060736e-07" d="3.6011919172079514e-06" /> - <laneOffset s="260.11702070658089" a="7.3478064170757778" b="-0.0029363608600939104" c="3.7260909774403754e-05" d="5.0292015939759821e-06" /> - <laneOffset s="264.09428817539515" a="7.3370335544424732" b="-0.0024013020137545115" c="-9.6745614703972914e-06" d="5.2550354674226437e-06" /> - <laneOffset s="270.12152150298789" a="7.3233595079091192" b="-0.0019452161339794047" c="6.7915359516802751e-05" d="4.641817212833956e-06" /> - <laneOffset s="278.030134568064" a="7.3145194817495405" b="-0" c="0.00086203810072976966" d="-2.9940157948266799e-05" /> - <laneOffset s="280.12602229939483" a="7.318030545549199" b="0.0032189116867955892" c="0.00063907870880216806" d="-3.8101862732874466e-05" /> - <laneOffset s="289.38150985490927" a="7.3723596730442287" b="0.0052570021492364038" c="0.00068957108068990228" d="-9.5294230019877819e-05" /> - <laneOffset s="296.50706163929135" a="7.4103542276511556" b="0.00056888963872319418" c="-0.00013369560210802761" d="1.3892982348671571e-05" /> - <laneOffset s="300.13502389220878" a="7.4113218342233251" b="0.00014738733329680551" c="3.8762532761837717e-05" d="7.7220925642749552e-06" /> - <laneOffset s="303.04377216861542" a="7.4122685532281514" b="0.0005688938593859462" c="0.00067054473234204337" d="-3.2067452876724521e-05" /> - <laneOffset s="310.13952468861572" a="7.4386103039054943" b="0.0052411725436597679" c="2.606578380050615e-05" d="-3.2594856384857729e-05" /> - <laneOffset s="314.56092047658916" a="7.459475893272546" b="0.0035601016488488943" c="-0.00010436279857337942" d="1.0473401808365619e-06" /> - <laneOffset s="320.14402548502267" a="7.4762814853859032" b="0.0024927048377064061" c="-8.5713246250276922e-05" d="1.9693673794900086e-06" /> - <laneOffset s="330.14852628142961" a="7.4946127386941646" b="0.0013690105137851435" c="-3.4543363668374594e-05" d="1.9328716028409769e-06" /> - <laneOffset s="340.15302707783655" a="7.5067870415662075" b="0.0012582158611327829" c="2.2784145655715669e-05" d="1.4860796356632617e-06" /> - <laneOffset s="350.15752787424356" a="7.5231434162155697" b="0.0021603291613719305" c="6.3037718197615325e-05" d="2.9745933761491028e-06" /> - <laneOffset s="353.96471553300876" a="7.5324460559945114" b="0.0027696693252265347" c="-0.00021448318047311319" d="6.8154346131859433e-05" /> - <laneOffset s="357.38520291306833" a="7.5421377334434556" b="0.0036945584462585394" c="0.0004475470121090262" d="-4.3956479428945746e-05" /> - <laneOffset s="360.1620286706505" a="7.5549066351291367" b="0.0051632648283565152" c="7.3449062986467747e-05" d="-4.5913343590368145e-05" /> - <laneOffset s="361.92658860497573" a="7.5639939617815832" b="0.004993598131592121" c="9.6997737174000045e-05" d="-3.1952865872344484e-06" /> - <laneOffset s="370.16652946705744" a="7.6099390857171016" b="0.0059412618382516571" c="1.7033656909644036e-05" d="-3.1232482852135884e-06" /> - <laneOffset s="380.13291413928965" a="7.6677520623958619" b="0.0053501040601283863" c="-2.0726606656915181e-05" d="1.0769755686376191e-07" /> - <laneOffset s="390.17553105987139" a="7.7194998239192723" b="0.0049663905568446591" c="-3.4919957494024003e-06" d="-3.0698046509631598e-06" /> - <laneOffset s="393.22295743184907" a="7.7345152258654641" b="0.0048595813024721428" c="1.6675041416861408e-05" d="-2.2178136710417391e-06" /> - <laneOffset s="400.18003185627833" a="7.7683839802178296" b="0.004769567880489948" c="-2.053863991880043e-06" d="-1.4633514029636731e-06" /> - <laneOffset s="410.18453265268528" a="7.814430226389022" b="0.0042890714279815124" c="-3.8633207501827767e-05" d="-4.1908219807467707e-07" /> - <laneOffset s="420.67277234979019" a="7.8546817484939764" b="0.0033403816336073106" c="-0.00012246772611714947" d="5.5230799560917458e-06" /> - <laneOffset s="430.19353424549922" a="7.8801501163901193" b="0.0025103267212261103" c="4.2937134687511556e-05" d="3.5787282588503558e-06" /> - <laneOffset s="436.21858541137033" a="7.8976163627542526" b="0.0034174604249567328" c="0.00017836091741604894" d="-1.433124781689402e-05" /> - <laneOffset s="440.19803504190617" a="7.9131373655543618" b="0.0041561672450546993" c="3.3886755029426141e-05" d="-1.0829010089223115e-05" /> - <laneOffset s="447.02787898271498" a="7.9396540309168575" b="0.0031036347698630128" c="-6.1065343420324471e-05" d="-9.8221434136100664e-07" /> - <laneOffset s="450.20253583831311" a="7.9488601359957318" b="0.0026862141645610962" c="-6.4473295726288337e-05" d="-8.4624592016333277e-08" /> - <laneOffset s="460.20703663472011" a="7.9691964943353062" b="0.0013707576522491776" c="-6.8342616129671172e-05" d="1.6618211746357703e-07" /> - <laneOffset s="470.63200840707162" a="7.9762474082188097" b="-0" c="-0.00094002774361569839" d="0.00015034412067657372" /> - <laneOffset s="474.80034674707662" a="7.9708030669213734" b="-0" c="4.7955147164542018e-05" d="-1.6902509962548608e-06" /> - <laneOffset s="480.216038227534" a="7.9719410970593554" b="0.00037069682788991727" c="1.6322090026491034e-06" d="-2.56367427890823e-06" /> - <laneOffset s="487.37402766748136" a="7.9737379361080443" b="-0" c="-0.00039412994697968478" d="2.0887856783707748e-05" /> - <laneOffset s="490.22053902394094" a="7.9710262103102263" b="-0.0017360512090641967" c="-0.00021533521031239053" d="1.9131468215850653e-05" /> - <laneOffset s="500.63002571849722" a="7.951200886879068" b="-0" c="1.0472631783122528e-05" d="1.6457644454210786e-07" /> - <laneOffset s="510.22954061675489" a="7.9523115317182711" b="0.0002465618665838829" c="1.5240180935760979e-05" d="-2.7606725966781149e-07" /> - <laneOffset s="516.01956225116123" a="7.9541964609189488" b="0.00039527889449803916" c="0.0014081707998874541" d="-0.00015550333796601312" /> - <laneOffset s="520.23404141316178" a="7.969233557434638" b="0.003978618170486242" c="-0.00057026361421911578" d="-0.00014991956531561367" /> - <laneOffset s="522.19933803725894" a="7.9737121403576809" b="-0" c="-0.001750703025234912" d="0.00010352817361038619" /> - <laneOffset s="530.23854220956878" a="7.9143558255334368" b="-0.008075812093352102" c="0.00065809933849863135" d="0.0001361392693993614" /> - <laneOffset s="531.72300455393201" a="7.9042631322559416" b="-0.0052219636172662585" c="0.0010488798272584815" d="-0.005525456652172224" /> - <laneOffset s="531.91209319279619" a="7.9032758640970684" b="-0.0054179811403912417" c="5.5717871049991151e-05" d="2.5981573699098119e-05" /> - <laneOffset s="539.56514309958311" a="7.8767209272633698" b="-0" c="4.232001380112323e-05" d="3.2167644498078678e-07" /> - <laneOffset s="550.24754380238267" a="7.8819423461720337" b="0.0010142817436693866" c="7.6236432221099199e-06" d="8.314106933035435e-06" /> - <laneOffset s="553.44269466841683" a="7.8855321590715457" b="0.0013176350042445782" c="0.00098020197546017335" d="-0.00013386400096706525" /> - <laneOffset s="558.9229732951344" a="7.9001591139627934" b="-0" c="-0.00049134437369273388" d="7.2746461869789591e-05" /> - <laneOffset s="560.25204459878967" a="7.8994619760110325" b="-0.00092055870094094822" c="-0.00032560508960623532" d="1.8255897958473045e-05" /> - <laneOffset s="569.946767365097" a="7.8765690434500728" b="-0.0020863740342647349" c="-0.00015979340675452593" d="1.2015239850288052e-05" /> - <laneOffset s="580.26104619160355" a="7.8512341388287732" b="-0.0015479811758822883" c="0.00018212136979449891" d="1.6408752179045777e-05" /> - <laneOffset s="583.21348944497424" a="7.8486736490478455" b="-4.3473759341514772e-05" c="-7.3866115068843945e-06" d="8.4325378864775459e-07" /> - <laneOffset s="590.26554698801056" a="7.8482954593327658" b="-2.1846511320634695e-05" c="-9.9503883901348672e-06" d="1.0746785778742146e-06" /> - <laneOffset s="597.3893701222039" a="7.8480233819349259" b="-0" c="0.00081447884240632557" d="-2.9940279917739759e-05" /> - <laneOffset s="600.27004778441756" a="7.8540664602444243" b="0.0039471414000651281" c="0.00048289560230859547" d="-3.8998684044776268e-05" /> - <laneOffset s="609.14463358704575" a="7.8998697137527563" b="0.0033037312792667207" c="-0.00036850027629440615" d="0.00014419183286508964" /> - <laneOffset s="610.27454858082444" a="7.9033401890621668" b="0.0030232558579196237" c="-0.00015145772655791691" d="4.2037380443357508e-06" /> - <laneOffset s="620.27904937723144" a="7.9226363620188591" b="0.0012549948448916535" c="-0.00017558043104376727" d="4.4716739481328348e-05" /> - <laneOffset s="622.14733932917807" a="7.9246598018630507" b="0.0010671768574860466" c="-7.6297038343989393e-05" d="3.134753921045952e-06" /> - <laneOffset s="630.28355017363833" a="7.929980251389849" b="0.00044818190873337389" c="-3.1731685217606991e-05" d="2.2164828230756099e-06" /> - <laneOffset s="640.16192672819852" a="7.9334476990377949" b="0.00047013546880140205" c="-3.1756457773356736e-05" d="1.349186188223355e-06" /> - <laneOffset s="650.29255176645233" a="7.9363540648600326" b="0.0002421091057145239" c="-1.8369083840283409e-05" d="1.5070725481343228e-06" /> - <laneOffset s="660.29705256285922" a="7.93844679170686" b="0.00032709091552543778" c="-8.7687343606154572e-06" d="1.8765205228281389e-06" /> - <laneOffset s="670.42682195080465" a="7.9428108950048504" b="0.00072710225610867309" c="0.00078439541672380793" d="-3.6562063444895252e-05" /> - <laneOffset s="680.30605415567311" a="7.991297154213318" b="0.0055202635766329264" c="-0.00037856666006128178" d="-1.6217774314198376e-05" /> - <laneOffset s="682.24400286287596" a="8.0004553428391425" b="0.0038702534193510284" c="0.00024837393755879631" d="-4.6993257841327257e-05" /> - <laneOffset s="689.53355520472087" a="8.0236629488648159" b="-0" c="-8.5665230182441616e-05" d="2.8579876159684251e-06" /> - <laneOffset s="700.31505574848711" a="8.0172869301904246" b="-0.00085055554559195564" c="-6.2086653264684428e-05" d="4.2663609610604185e-05" /> - <laneOffset s="701.33749955935855" a="8.0163979812530215" b="-0.00084371526944585656" c="-0.0001302958823274367" d="7.7756687238868724e-06" /> - <laneOffset s="710.319556544894" a="8.0039423833667929" b="-0.0013024043620270007" c="6.6178389077914827e-05" d="8.3209875497154871e-06" /> - <laneOffset s="715.36275135270807" a="8.0001245870326265" b="-0" c="1.9336865153891116e-05" d="2.6597388933134231e-07" /> - <laneOffset s="720.324057341301" a="8.0006330362286846" b="0.00021151269824533939" c="2.6432031443366052e-05" d="-1.8917902847170434e-06" /> - <laneOffset s="722.12684494610494" a="8.0010891696826185" b="0.00028837017540253872" c="0.00038170947882412617" d="-1.580357222651255e-05" /> - <laneOffset s="730.328558137708" a="8.0204121236407371" b="0.0033604847146583398" c="3.6387717386649717e-06" d="-1.6312535916626342e-05" /> - <laneOffset s="735.9973499419973" a="8.0366073263594018" b="0.0018291197554467056" c="-6.3917050014894087e-05" d="2.2072144575126209e-07" /> - <laneOffset s="740.33305893411489" a="8.0433543105586196" b="0.0012873159102929843" c="-4.8488319619716721e-05" d="1.2952226778238178e-06" /> - <laneOffset s="749.20611495253593" a="8.0518640208795009" b="0.00073275976613513952" c="-7.3934933843346415e-05" d="-1.4923250231154146e-05" /> - <laneOffset s="750.33755973052189" a="8.0525768335953174" b="0.00050814040630191217" c="-7.3517344284783429e-05" d="9.0180206944788919e-06" /> - <laneOffset s="757.84267538835593" a="8.0560617599851216" b="0.00092849575293995907" c="0.0025795349993983732" d="-0.00029204477427801869" /> - <laneOffset s="760.34206052692889" a="8.0699367593662448" b="0.0083498522938497792" c="0.00049092293061230301" d="-0.00029958247997931281" /> - <laneOffset s="762.55442887266918" a="8.087568507919471" b="0.0061230714176429306" c="-0.00030481297549141069" d="1.9441344805798777e-05" /> - <laneOffset s="770.34656132333578" a="8.1259709016883459" b="0.004914064797733971" c="0.00022831748842050038" d="5.1905916219538386e-06" /> - <laneOffset s="772.66010446053792" a="8.1386261439111447" b="0.0060538571569163958" c="-0.00029378343592545317" d="7.4800168350432257e-05" /> - <laneOffset s="778.06485647646946" a="8.1745733874579205" b="0.0094332443479860344" c="0.0016522320318530723" d="-0.00033049985416927469" /> - <laneOffset s="780.35106211974278" a="8.2008262320241023" b="0.011805622039814834" c="-0.00049272258467933415" d="-0.00036744416043027716" /> - <laneOffset s="781.48826033433215" a="8.2130739850031684" b="0.0092594173845080719" c="0.0004509831332379939" d="-0.00023529509760442408" /> - <laneOffset s="785.80487173785161" a="8.2425212658369187" b="-0" c="1.6669719526216043e-05" d="-5.2347585990059416e-06" /> - <laneOffset s="790.35556291614967" a="8.2423731555287727" b="-0.00017349906154209783" c="-3.0655563319354139e-05" d="-3.3758477686470053e-06" /> - <laneOffset s="798.5388830411955" a="8.237050455461052" b="-0.0013534360786562401" c="0.00029241414985552969" d="-4.5508125188445289e-05" /> - <laneOffset s="800.36006371255667" a="8.2352805704632868" b="-0.00074116834821979778" c="5.1843892210888142e-05" d="-4.2546179781471925e-05" /> - <laneOffset s="804.17880193167446" a="8.2308369687039704" b="-0.0022065342314578117" c="-0.0046992567433460893" d="0.00039124209999255415" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4931495171549134" b="0.00027439945441416329" c="0.0002972952794862423" d="-2.0957075830107889e-05" /> - <width sOffset="2.1978829964286919" a="2.494966248918514" b="0.0012775285448926436" c="-0.00038806216874742814" d="2.1868000291566377e-05" /> - <width sOffset="10.004500796406958" a="2.4916935836473648" b="-0.00078325443200174052" c="0.00012351840343973564" d="2.2173705793448662e-05" /> - <width sOffset="13.929394993450089" a="2.4918628392658153" b="0.0012110830381372303" c="-0.00022369753864098029" d="-2.6628356038197009e-05" /> - <width sOffset="15.938913715697693" a="2.4931771226607609" b="-1.0554871534271476e-05" c="9.2142610498469201e-05" d="-5.6582891246082209e-06" /> - <width sOffset="20.009001592813917" a="2.4942790607328078" b="0.0004583030492278841" c="2.8669680406350371e-05" d="-4.7426445361335058e-06" /> - <width sOffset="29.916850566701356" a="2.4970214936515855" b="-0.00037027903172342895" c="-0.00012129677309227002" d="7.6295337849908271e-06" /> - <width sOffset="30.013502389220875" a="2.4969845792940077" b="-0.00039351232450156727" c="-0.0001149594594201521" d="7.9935660518563154e-06" /> - <width sOffset="40.018003185627833" a="2.48954575261134" b="-0.0002935073850078788" c="0.00013701856377790054" d="7.1006607071904388e-06" /> - <width sOffset="40.23070431180625" a="2.4894895905517096" b="-0.00023425563998631546" c="1.0609273274039388e-05" d="9.0998261931115129e-06" /> - <width sOffset="44.55789001771398" a="2.4894118858934462" b="0.00036873102441850852" c="-2.6149350865828114e-05" d="1.5784033820934673e-06" /> - <width sOffset="50.022503982034792" a="2.4909035572362352" b="0.00022434168137268877" c="-6.6415775102890593e-06" d="5.4801999244366543e-08" /> - <width sOffset="60.02700477844175" a="2.4925381040612091" b="0.0001079057486527346" c="-6.3658065197403116e-06" d="1.7569216609834537e-07" /> - <width sOffset="70.031505574848708" a="2.4931564229039207" b="3.3287421646833939e-05" c="-3.7067674374868112e-06" d="1.2011090509618735e-07" /> - <width sOffset="80.036006371255667" a="2.493238709609864" b="-4.8155794025813879e-06" c="4.6057049966605685e-06" d="6.0418256391285845e-07" /> - <width sOffset="80.481734115334959" a="2.4932375317056596" b="-3.4969371811124136e-07" c="9.5069094744186381e-05" d="-5.3440876865077359e-06" /> - <width sOffset="82.383594388015823" a="2.4935439755760598" b="0.00030327671741863877" c="2.0630468803425615e-05" d="-2.4262863018776512e-06" /> - <width sOffset="90.040507167662625" a="2.4959864797895133" b="0.00019246089738528407" c="-3.5723867938372726e-05" d="-2.3391512513559324e-06" /> - <width sOffset="97.282295974157748" a="2.4946183820479408" b="-0.00069296838840369719" c="9.2624212964547282e-05" d="-3.3747054670295442e-06" /> - <width sOffset="100.04500796406958" a="2.4933397103503214" b="-0.00025845344442972269" c="6.0332573788182865e-05" d="-3.7562770034663607e-06" /> - <width sOffset="107.58191948259504" a="2.4932107717196601" b="1.0862753585735851e-05" c="0.00092678902046016505" d="-1.2230084729772413e-05" /> - <width sOffset="108.56996686501964" a="2.4941144741906509" b="0.001806467278245817" c="0.010680407669641312" d="-0.021404755415289235" /> - <width sOffset="109.02660025852106" a="2.4951283399196953" b="-0.0018290482373020224" c="0.00022621359882486807" d="-1.7669614055784285e-05" /> - <width sOffset="110.04950876047654" a="2.4934751756735523" b="-0.0014217219778183536" c="0.00017763798841860209" d="-5.5987418248119052e-06" /> - <width sOffset="120.0540095568835" a="2.4914250448360136" b="0.00045150199988082114" c="9.1949508185537268e-06" d="-5.6125204402774504e-06" /> - <width sOffset="124.53468574011903" a="2.4931278006301767" b="0.00019586258364634544" c="-0.00017383124372715925" d="-2.5425781256134372e-05" /> - <width sOffset="125.03708248178125" a="2.4931791017695897" b="1.9454915694931685e-06" c="5.7441639495085326e-05" d="-3.2996694956683686e-06" /> - <width sOffset="130.05851035329044" a="2.4942194624854945" b="0.00032922268649889126" c="8.6482339801380152e-06" d="-3.3586129495043427e-06" /> - <width sOffset="139.10650123824769" a="2.4954184583907288" b="-0.00033914905331376352" c="-8.7392588469737477e-05" d="1.2404938544004509e-05" /> - <width sOffset="140.06301114969742" a="2.4950249583310287" b="-0.0004722845554052885" c="-2.5967829222533429e-05" d="9.7297714923989956e-06" /> - <width sOffset="144.88389226649281" a="2.4932347541246624" b="-4.4274405128527042e-05" c="-5.1351675243790377e-05" d="6.4164070972158646e-06" /> - <width sOffset="149.31822530353307" a="2.4925881528216944" b="-0.00012119186963980861" c="-0.00015438630809941925" d="1.2895713199829692e-05" /> - <width sOffset="150.06751194610439" a="2.4924160930646764" b="-0.00033083092747041454" c="-7.8000447607982077e-05" d="1.5093728556626255e-05" /> - <width sOffset="154.42409232069267" a="2.4907424242326721" b="-0.00015103385508663178" c="4.7194420481098788e-05" d="-1.3417478870963771e-06" /> - <width sOffset="160.07201274251133" a="2.491153118716011" b="0.00025366553932898526" c="1.360669144732689e-05" d="-2.209724659931516e-06" /> - <width sOffset="166.14732274495464" a="2.492700930397441" b="0.00017431649805292691" c="-3.4345540529355288e-05" d="3.4353066730137481e-06" /> - <width sOffset="170.07651353891828" a="2.4930639972018049" b="6.3524496222417889e-05" c="6.2933627239898464e-05" d="2.2758131921032566e-06" /> - <width sOffset="170.43927565505379" a="2.4930954319614571" b="0.00011008283396432995" c="-1.2926940756756002e-05" d="4.2997532273450937e-06" /> - <width sOffset="174.73111029695499" a="2.4936696937199772" b="0.00023672460837048225" c="-3.8176757719959295e-05" d="2.0263692924248541e-06" /> - <width sOffset="180.08101433532525" a="2.4941537546022658" b="2.2336510845707286e-06" c="-3.8597691806814359e-05" d="1.7463608357057715e-05" /> - <width sOffset="181.99836605155062" a="2.4941392377077403" b="4.682407104355038e-05" c="-0.00072464030273461789" d="0.0005857438178107036" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="182.88009083592812" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8103425103325668" b="5.6891130713347393e-11" c="7.3577029421699361e-05" d="-9.3272297828842531e-07" /> - <width sOffset="2.1978829964286919" a="3.810688035262304" b="0.00030991037491969364" c="0.00061460082786685176" d="-4.3757799099976417e-05" /> - <width sOffset="10.004500796406958" a="3.8297449282167273" b="0.0019055862985121615" c="-0.00040763271337356888" d="-4.3669031101647846e-05" /> - <width sOffset="12.827019606936359" a="3.8308940914917002" b="-0.0014391984427557063" c="-0.014483321559237518" d="0.042373817738156676" /> - <width sOffset="13.091518380881311" a="3.8302842726832198" b="-0.00020747383429466516" c="-0.00054612416548214648" d="-4.4345041678257996e-05" /> - <width sOffset="13.929394993450089" a="3.8297009510544644" b="-0.0012160387749939497" c="-4.9286895733119461e-05" d="4.457020153230866e-06" /> - <width sOffset="20.009001592813917" a="3.8214877366596092" b="-0.0013211126405039688" c="3.617500164212321e-05" d="4.6225352277980145e-06" /> - <width sOffset="29.916850566701356" a="3.8164454060372313" b="0.00075704031286241832" c="0.00018257138029891559" d="-7.7496423731926481e-06" /> - <width sOffset="30.013502389220875" a="3.8165202738703981" b="0.00079211484456706495" c="0.00017905181461867889" d="-8.0508651353511813e-06" /> - <width sOffset="32.629977088003855" a="3.8196743913373741" b="0.0015637367146517896" c="3.6995935722877377e-05" d="-7.9166856650241666e-06" /> - <width sOffset="40.018003185627833" a="3.830054182030465" b="0.00081404290249135558" c="-0.00014322322965704655" d="-7.53510078577277e-06" /> - <width sOffset="40.23070431180625" a="3.8302207776902106" b="0.00075209271412906545" c="-1.7091156930605551e-05" d="-9.5342666674699295e-06" /> - <width sOffset="44.55789001771398" a="3.8323826889271437" b="6.8605332032318697e-05" c="1.4027753376932082e-05" d="-2.0128438564285846e-06" /> - <width sOffset="50.022503982034792" a="3.8328480228512873" b="4.1595181397604021e-05" c="-6.047003450652009e-06" d="3.4854029831985731e-07" /> - <width sOffset="53.311686783306229" a="3.8329318188708283" b="1.3128065246821401e-05" c="-5.592129350390036e-06" d="7.4730475302363774e-08" /> - <width sOffset="60.02700477844175" a="3.8327904288323724" b="-5.1867764968215491e-05" c="-6.1910978412600391e-06" d="2.4796690748959142e-07" /> - <width sOffset="70.031505574848708" a="3.831900152402258" b="-0.00010128840130485002" c="-3.6388660401221452e-06" d="2.4775242146556951e-07" /> - <width sOffset="80.036006371255667" a="3.8307706853741221" b="-9.9705831209020187e-05" c="1.5820850956381278e-06" d="-3.5942414029658857e-08" /> - <width sOffset="82.383594388015823" a="3.8305448712773398" b="-9.2871917397603426e-05" c="4.5276452900001524e-05" d="-2.9537437988475793e-06" /> - <width sOffset="90.040507167662625" a="3.8311622704864421" b="8.0964733582603726e-05" c="-2.0743206579549285e-05" d="-3.0203916790051427e-06" /> - <width sOffset="97.172861080270863" a="3.8295886456315227" b="-0.00067587730167276193" c="0.00029275458662190502" d="-1.5285806471670837e-05" /> - <width sOffset="97.282295974157748" a="3.8295181670650447" b="-0.0006123513557269773" c="0.0001085691856764229" d="-1.425025251310436e-05" /> - <width sOffset="100.04500796406958" a="3.8283545897938271" b="-0.00033875904549738201" c="-1.1452811312441557e-05" d="-1.3507307341318869e-05" /> - <width sOffset="108.56996686501964" a="3.8162658883668099" b="-0.0034789561510536644" c="-0.010146770889941812" d="0.021379018023222639" /> - <width sOffset="109.02660025852106" a="3.8145971285651532" b="0.00062781228768019406" c="0.00027216552283427175" d="-8.0677780082412281e-06" /> - <width sOffset="110.04950876047654" a="3.8155154662168052" b="0.0011592881819982837" c="0.00022338267285013194" d="-2.5946838636202036e-05" /> - <width sOffset="114.14588960361928" a="3.8222292378456286" b="0.0016832191732063042" c="8.7140226846080951e-05" d="-1.1677356067294276e-05" /> - <width sOffset="120.0540095568835" a="3.8328074056953882" b="0.0014900637819031642" c="-0.00012100275835398869" d="-1.1535749748216662e-05" /> - <width sOffset="124.53468574011903" a="3.8360168808745696" b="-0.00028907559562661462" c="-0.00016848410125050854" d="8.2775110366261079e-06" /> - <width sOffset="130.05851035329044" a="3.8306743287397698" b="-0.0013927227441846426" c="-2.9956923322833598e-05" d="8.3479998782698039e-06" /> - <width sOffset="133.68323545493931" a="3.8256300632131772" b="-0.001280850071481726" c="-6.0661918753624172e-05" d="1.079422257022098e-05" /> - <width sOffset="139.10650123824769" a="3.8186212615461983" b="-0.0009863885612596524" c="0.00011983261940525005" d="-4.9693289243749564e-06" /> - <width sOffset="140.06301114969742" a="3.8177830585504315" b="-0.00077078586913389372" c="9.7017973689618201e-05" d="-5.0264155569793513e-06" /> - <width sOffset="149.31822530353307" a="3.814974828320798" b="-0.00026661464781261137" c="0.00014584840724559168" d="-1.1505721667445735e-05" /> - <width sOffset="150.06751194610439" a="3.8148521011276868" b="-6.7429109300367728e-05" c="9.9480219594999875e-05" d="-9.6461240822028074e-06" /> - <width sOffset="154.42409232069267" a="3.8156488457424738" b="0.00025011373311889865" c="4.5484131752925342e-05" d="6.789352329191188e-06" /> - <width sOffset="154.83369282944506" a="3.8157593900072699" b="0.00029079158153488393" c="9.1549152249348884e-06" d="5.6025005852198305e-08" /> - <width sOffset="160.07201274251133" a="3.8175419131769806" b="0.00039131630871279237" c="3.713504836196877e-05" d="-5.5053727904173086e-07" /> - <width sOffset="166.14732274495464" a="3.8211664628292876" b="0.00078157018211247146" c="3.4778939437079036e-05" d="-6.1955686119590117e-06" /> - <width sOffset="170.07651353891828" a="3.8243985080474241" b="0.00076792475242751929" c="-6.018268536155737e-05" d="-5.756696996771038e-06" /> - <width sOffset="170.43927565505379" a="3.8246688874195627" b="0.00072198807483919106" c="1.1889684310073787e-05" d="-7.7806370320109735e-06" /> - <width sOffset="174.73111029695499" a="3.827371449293905" b="0.00039409081794309839" c="-7.6786318185838103e-06" d="-5.5072530970889954e-06" /> - <width sOffset="180.08101433532525" a="3.8284167412442338" b="-0.0001609461599072267" c="4.5364829758997685e-05" d="-3.9826563892957144e-05" /> - <width sOffset="181.99836605155062" a="3.827994199610977" b="-0.00042622122694676613" c="0.00060277448715690025" d="-0.00060810677334660298" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6768236945816608" b="1.8437243908305661e-09" c="0.0005475814918838802" d="-1.8619239663217161e-05" /> - <width sOffset="10.004500796406958" a="3.712986772962064" b="0.0053657596721211369" c="-7.5070016552518577e-06" d="-1.9341458174497806e-05" /> - <width sOffset="12.827019606936359" a="3.7276370148420335" b="0.0048611246616975835" c="0.013534636970278046" d="-0.042436828226036699" /> - <width sOffset="12.866431008441266" a="3.7278470235516923" b="0.0057302165842281145" c="0.0088664542465640931" d="-0.042418331590401079" /> - <width sOffset="13.091518380881311" a="3.7291023014627922" b="0.0032743819202041332" c="-9.0767032788366701e-05" d="-1.688106353194496e-07" /> - <width sOffset="20.009001592813917" a="3.7473535596165477" b="0.0019943895053652714" c="-9.0833021074155824e-05" d="-1.1295716516069513e-07" /> - <width sOffset="30.013502389220875" a="3.7581018408922087" b="0.0001429937817672287" c="-9.3117628523813734e-05" d="1.5227783592538018e-07" /> - <width sOffset="32.629977088003855" a="3.7578412304558753" b="-0.00034115860160268595" c="-1.3061111099629275e-05" d="1.8098363623808062e-08" /> - <width sOffset="32.96456033530071" a="3.7577256230425031" b="-0.00034989258141917878" c="-9.5947066497449062e-05" d="2.1094811143133329e-06" /> - <width sOffset="40.018003185627833" a="3.751224458994284" b="-0.0013885601423929146" c="-4.7191715468144592e-05" d="1.7790429558049868e-06" /> - <width sOffset="50.022503982034792" a="3.7343906336051629" b="-0.0017986258308975119" c="1.2304311649795796e-05" d="1.7658578033331248e-06" /> - <width sOffset="52.683686821487399" a="3.7297245789774527" b="-0.0016956209309670666" c="-0.00011040119504656636" d="4.3173503551600994e-06" /> - <width sOffset="53.311686783306229" a="3.7286172579295092" b="-0.0018291767424307612" c="-9.9282943305089194e-05" d="4.5911601839116601e-06" /> - <width sOffset="60.02700477844175" a="3.7132468846512983" b="-0.0025414878799655998" c="-8.816135404093284e-06" d="4.7819858906065869e-06" /> - <width sOffset="70.031505574848708" a="3.6917266054411138" b="-0.0012820025248235151" c="0.00013124236373969356" d="4.4311018566757339e-06" /> - <width sOffset="72.949115068593187" a="3.6892134669324053" b="-0.00040301605733343663" c="0.00010725821281629198" d="5.012828283283217e-08" /> - <width sOffset="80.036006371255667" a="3.6917621177320599" b="0.0011247914666529136" c="0.00010630746641958532" d="-9.9655936639650518e-08" /> - <width sOffset="90.040507167662625" a="3.7135556224601469" b="0.0032219740326568389" c="0.00010441067409684476" d="4.0145719037313132e-08" /> - <width sOffset="91.649067044359967" a="3.719008686655024" b="0.0035581873016730264" c="0.0020651760534357534" d="-0.00035187832709668835" /> - <width sOffset="95.634964531266434" a="3.7437186326476519" b="0.0032500745874056393" c="-0.00026963642175876357" d="7.5941280171148883e-06" /> - <width sOffset="97.172861080270863" a="3.748106809347731" b="0.0024746119465901607" c="-0.00061272477229252706" d="1.9859543066606323e-05" /> - <width sOffset="100.04500796406958" a="3.750630284189798" b="-0.00055358146450159998" c="-0.00044225793148076756" d="2.0419103649593359e-05" /> - <width sOffset="110.04950876047654" a="3.7212730523511204" b="-0.0032714746504567517" c="0.00016701059318453008" d="2.0441483496363866e-05" /> - <width sOffset="112.79500237979995" a="3.7139731536948961" b="-0.0018921741446462901" c="9.1599165633313043e-05" d="1.8050562294341973e-05" /> - <width sOffset="114.14588960361928" a="3.7116286975664869" b="-0.0015458726469442341" c="-1.7869964593288071e-05" d="3.7810797252607957e-06" /> - <width sOffset="120.0540095568835" a="3.7026514946887792" b="-0.0013610826745403112" c="4.8539060118272174e-05" d="3.7351450490058126e-06" /> - <width sOffset="130.05851035329044" a="3.6976330089284772" b="0.00073168786601668628" c="0.00016216892737107893" d="3.4228628150807157e-06" /> - <width sOffset="133.54880852766598" a="3.7023079272616521" b="0.001988817494912008" c="0.00012563839449338202" d="-3.0092552558204189e-06" /> - <width sOffset="133.68323545493931" a="3.7025775409374102" b="0.0020224327244281687" c="0.00024590742944712409" d="-5.4554770870752132e-06" /> - <width sOffset="140.06301114969742" a="3.7240724130045884" b="0.0044939622850036481" c="0.00014921810684733806" d="-5.4070089642963455e-06" /> - <width sOffset="150.06751194610439" a="3.7785531949731186" b="0.0058561044539167557" c="5.8012208819859272e-06" d="-7.1323350560121265e-06" /> - <width sOffset="154.83369282944506" a="3.8058240073860174" b="0.0054253391455407205" c="-5.1508793016546143e-05" d="-3.9900797487319666e-07" /> - <width sOffset="154.89775075867308" a="3.8061713319100345" b="0.005418735140413293" c="0.00028471742671004212" d="-7.4732215975786885e-05" /> - <width sOffset="159.07331955768447" a="3.8283210881883951" b="0.0038874969629654078" c="-0.00049172647099904603" d="8.6466321997879066e-06" /> - <width sOffset="160.07201274251133" a="3.8317216755696468" b="0.002931201355793161" c="-0.00044239664225164001" d="1.0138779444894163e-05" /> - <width sOffset="170.07651353891828" a="3.8269198613188209" b="-0.0028763413591323412" c="-0.0001171522959295051" d="9.7342788209182751e-06" /> - <width sOffset="178.10000898292424" a="3.8013276895949581" b="-0.0028763073920498681" c="-0.00010081356869522202" d="1.5176220293947082e-05" /> - <width sOffset="180.08101433532525" a="3.7953520615890666" b="-0.0030970599637702035" c="5.2676813183610728e-05" d="3.1057198948905087e-06" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.8367259557758486" b="3.6668516438420065e-09" c="0.00083030923590534343" d="-7.6909426913558221e-05" /> - <width sOffset="8.3004433063903829" a="3.8499492426271327" b="-0.0021126960630407925" c="9.9045422471081689e-05" d="1.7008849666061918e-05" /> - <width sOffset="10.004500796406958" a="3.8467208606085133" b="-0.0016269663733219958" c="0.00019154158724038977" d="1.8408334917588336e-05" /> - <width sOffset="12.866431008441266" a="3.8440649562017417" b="-7.8280678983658024e-05" c="2.8979308010920759e-07" d="-8.8302045049277779e-08" /> - <width sOffset="20.009001592813917" a="3.8434884389289268" b="-8.765547864226028e-05" c="1.387042457272183e-05" d="-9.301835036036968e-06" /> - <width sOffset="21.013867336193101" a="3.8434049243962241" b="-8.7957377480192122e-05" c="-0.00035140030601778861" d="2.8337436228035475e-05" /> - <width sOffset="29.79055151926109" a="3.8347225990197762" b="0.00029229749342573659" c="0.001022311521417106" d="-0.00013287952608202733" /> - <width sOffset="30.013502389220875" a="3.8348371105287775" b="0.00072833281571475566" c="0.00093360158515490049" d="-0.00013284354020706661" /> - <width sOffset="32.96456033530071" a="3.8417028794639352" b="0.0027678568153358539" c="-0.00015958124796174676" d="-0.00013493492295579241" /> - <width sOffset="34.87810737557578" a="3.8454695140184603" b="0.00067486601485433335" c="-0.0010968720838512897" d="0.00011622957141581225" /> - <width sOffset="40.018003185627833" a="3.8357431456857345" b="-0.0013889075532797323" c="0.00069598666441628501" d="0.00011617842477096447" /> - <width sOffset="40.660493398084462" a="3.8351688974332534" b="-0.00035070515741446686" c="0.00034787415424315712" d="-2.5269906044378167e-05" /> - <width sOffset="49.403685729144208" a="3.8418059215096561" b="-6.2797409618581528e-05" c="-0.0016561818920007901" d="0.00025512593924457077" /> - <width sOffset="50.022503982034792" a="3.8411933062413381" b="-0.0018194578363154707" c="-0.0011815271114606111" d="0.00025508636276101108" /> - <width sOffset="52.683686821487399" a="3.8327913588369231" b="-0.0026884933569423768" c="0.00099177056016843974" d="0.00025253487020299224" /> - <width sOffset="54.142184761043545" a="3.8317634069200635" b="0.0018160861110433821" c="0.00050885426657502539" d="-0.00018977893634864259" /> - <width sOffset="55.670451259630305" a="3.8350499495912382" b="0.0020416737756762623" c="-0.0013467335425267684" d="0.00013838897389059984" /> - <width sOffset="60.02700477844175" a="3.8298269588551785" b="-0.0018128748285299898" c="0.00045815404514029938" d="0.00013982398481057922" /> - <width sOffset="61.869659692010991" a="3.8289168718407258" b="0.0012998302573339394" c="2.5030873177374748e-05" d="-4.4468516211470334e-06" /> - <width sOffset="70.031505574848708" a="3.8387755501996548" b="0.00081973573868430831" c="-0.00010919119632807852" d="7.9428114083713497e-06" /> - <width sOffset="71.139590543904021" a="3.8395606230975199" b="0.00060700728961545609" c="0.00083042796043098768" d="-6.6405902285661454e-05" /> - <width sOffset="72.949115068593187" a="3.8429846939933325" b="0.0029600525335436653" c="0.00053270745957863849" d="-6.2024928711826004e-05" /> - <width sOffset="80.036006371255667" a="3.8686403079262539" b="0.0011651069264080828" c="-0.00078854443832554878" d="-6.232903192299347e-05" /> - <width sOffset="81.60107212351754" a="3.868293352225693" b="-0.0017611528159543746" c="-0.00017643333747420134" d="6.4944706594020796e-06" /> - <width sOffset="87.783791790480805" a="3.8521952016170959" b="-0.0031980552027022074" c="0.00066401743151860593" d="-4.7549666941338672e-05" /> - <width sOffset="90.040507167662625" a="3.8478133010355413" b="-0.00092753624376874528" c="0.00034580312342747613" d="-4.7543576082286599e-05" /> - <width sOffset="91.649067044359967" a="3.8470181761394482" b="-0.00018409818431305413" c="-0.0018441985921749046" d="0.00030437489673344368" /> - <width sOffset="95.498014978976016" a="3.8363443083114595" b="-0.00085315231283909776" c="0.0021701395257442075" d="0.00032873479748427329" /> - <width sOffset="95.634964531266434" a="3.8362690152010956" b="-0.00024025659914747978" c="0.00043235943196250645" d="-3.0737657558579568e-05" /> - <width sOffset="100.04500796406958" a="3.8409818807113449" b="0.00177978870915893" c="2.1791960899099312e-05" d="-2.7973361968172722e-05" /> - <width sOffset="101.38033649047428" a="3.8433307353012869" b="0.0016883494672635881" c="0.00041454950388270125" d="-8.6102078278962966e-05" /> - <width sOffset="106.20416667835788" a="3.8514566101199215" b="-0.00032283271399894558" c="-0.00017057170711898219" d="5.7250702947990312e-06" /> - <width sOffset="110.04950876047654" a="3.8480185488520893" b="-0.0013806819103932126" c="-0.00011132135567897786" d="4.9750620829240565e-06" /> - <width sOffset="112.79500237979995" a="3.8434917425084087" b="-0.0018794439518564114" c="0.00017343296301143432" d="7.36598328513094e-06" /> - <width sOffset="115.36821733591225" a="3.8399294087439038" b="-0.0008405632199976617" c="0.0017220055623904155" d="-0.00016755473278755027" /> - <width sOffset="120.0540095568835" a="3.8565614250398692" b="0.0042605360807638701" c="-0.00063480238374970265" d="-0.00016739761130169591" /> - <width sOffset="122.51459767136271" a="3.8607076170664993" b="-0.0019039617542256164" c="-0.001191621961946106" d="0.0001152797342024895" /> - <width sOffset="127.66377757148983" a="3.8350476854283873" b="-0.005006114294142926" c="-0.0062672307515315977" d="0.012887292158097955" /> - <width sOffset="128.10329986673995" a="3.8327309032841743" b="-0.0030465941621574026" c="0.0014958935431266364" d="-0.00021651525681825085" /> - <width sOffset="130.05851035329044" a="3.8308744067872174" b="0.00031986454257494634" c="0.00022749741335639293" d="-0.00021710868788338489" /> - <width sOffset="132.06271541241927" a="3.8306814531463114" b="-0.0013845037539757989" c="-0.00022114075320847206" d="-8.7216232086162791e-06" /> - <width sOffset="133.54880852766598" a="3.8281069439889954" b="-0.0020995596571654826" c="-0.00018765321730545962" d="-2.2895059983865158e-06" /> - <width sOffset="137.43130293998382" a="3.8169927846624896" b="-0.0036602192039197311" c="-0.00071899519842314418" d="0.00010512340845551221" /> - <width sOffset="140.06301114969742" a="3.8042965510407085" b="-0.0052603714454906155" c="0.00013344421425696024" d="0.00010385470909968675" /> - <width sOffset="142.43934917494889" a="3.793943328258774" b="-0.0028667571777862937" c="0.0059244483718023846" d="-0.00081375931120630221" /> - <width sOffset="146.3784690625057" a="3.8248399104479747" b="0.005926974570021698" c="-0.00060877736141695248" d="3.4762246086398204e-05" /> - <width sOffset="150.06751194610439" a="3.840165114944301" b="0.002854605105342984" c="-0.00022242056529252267" d="3.4627974558201031e-05" /> - <width sOffset="150.35413188367352" a="3.8409658449661923" b="0.0027356389352890514" c="-0.00054527353648910789" d="1.6868669637564873e-05" /> - <width sOffset="154.89775075867308" a="3.8437209527323226" b="-0.0011746569711861398" c="-0.00065164201779601587" d="9.1201877912989955e-05" /> - <width sOffset="159.07331955768447" a="3.8340942033961074" b="-0.0018461923561155121" c="0.00033111249945467727" d="7.8230297396138404e-06" /> - <width sOffset="160.07201274251133" a="3.8325884637314553" b="-0.0011614249731085741" c="0.0003761039086238254" d="6.0575619352097608e-06" /> - <width sOffset="164.36272647239542" a="3.8350077839788468" b="0.0024006466581109158" c="0.0003633881587342783" d="-4.2855646085600109e-05" /> - <width sOffset="167.76465107143122" a="3.8456928667824957" b="0.0033851680173571479" c="0.0003814371138286069" d="-9.9528974412024714e-05" /> - <width sOffset="170.07651353891828" a="3.854327776790047" b="0.0035529683739004211" c="-0.00018924814083901584" d="-0.00012944657518284701" /> - <width sOffset="171.40164327156231" a="3.8584023995037429" b="0.0023694992522525563" c="-0.0012095841507802042" d="0.00010434700250388364" /> - <width sOffset="178.10000898292424" a="3.851363182958174" b="0.00021058148291720931" c="0.0011052490982632673" d="9.8905061031244202e-05" /> - <width sOffset="179.27436683021779" a="3.8532949323554453" b="0.0032157021477693974" c="0.00078729353185025101" d="-6.9083661006604245e-05" /> - <width sOffset="180.08101433532525" a="3.8563648868702911" b="0.00435098476371539" c="0.00062392582378948335" d="-6.8645077553641383e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid broken"> - <type name="solid broken"> - <line length="6" space="12" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.9720890399898625" b="-1.8121613443197428e-09" c="0.012995115663854695" d="-0.0093892095300332629" /> - <width sOffset="0.9969742311678097" a="3.9757013939693158" b="-0.0020858399235566955" c="-0.071372123234684226" d="0.12036426577785125" /> - <width sOffset="1.3875928576358521" a="3.9711703778311387" b="-0.0027478111332184989" c="0.0022908283495025289" d="-0.00044566772166227298" /> - <width sOffset="5.1846763594330616" a="3.9693670977049758" b="-0.0046275799537419948" c="0.00015521050265518129" d="0.00010522726133032602" /> - <width sOffset="8.3004433063903829" a="3.9596383224221463" b="-0.00059574052892744848" c="-4.5081829063637536e-05" d="1.1308984750643997e-05" /> - <width sOffset="10.004500796406958" a="3.9585481969834837" b="-0.00065086709140446165" c="1.6910855617961124e-05" d="8.6341750158605795e-06" /> - <width sOffset="12.745535076756672" a="3.9570690170827363" b="-0.00036354798494201844" c="5.4019125036153637e-05" d="-2.7157669296848305e-06" /> - <width sOffset="20.009001592813917" a="3.9562376395171666" b="-8.6506267763472068e-06" c="-1.0394869533323998e-05" d="6.0692372627013426e-06" /> - <width sOffset="21.013867336193101" a="3.9562246087885797" b="-1.1156192408766315e-05" c="0.00034513088076337746" d="-3.1570034001362338e-05" /> - <width sOffset="26.035728153818692" a="3.9608742274367406" b="0.0010667400874184887" c="-0.00066126659520602735" d="-2.2012335611676476e-06" /> - <width sOffset="29.79055151926109" a="3.9554401205120824" b="-0.0039922420224714709" c="-0.0013136479671733896" d="0.00015901572870609596" /> - <width sOffset="30.013502389220875" a="3.954486511312115" b="-0.0045542873091029747" c="-0.001202195658374786" d="0.00015998903446366605" /> - <width sOffset="34.87810737557578" a="3.9223000823779421" b="-0.0048925765724532871" c="0.0012953325746019317" d="-9.1175459907935107e-05" /> - <width sOffset="39.465952443487687" a="3.9183137869261695" b="0.0012357223385844004" c="-0.00040222428048138439" d="-0.00011878863539362441" /> - <width sOffset="40.660493398084462" a="3.9190134846575817" b="-0.00023373293598872918" c="-0.00025587493762208046" d="2.2659695421608036e-05" /> - <width sOffset="49.403685729144208" a="3.9125547810088332" b="0.00048849278745574892" c="0.0016797163881143874" d="-0.00025773614985962157" /> - <width sOffset="50.022503982034792" a="3.9134392180177606" b="0.0022712817346184503" c="0.0012095944433184189" d="-0.00025729192436560927" /> - <width sOffset="54.142184761043545" a="3.9253357249328578" b="-0.00086253018247922902" c="-0.00038240628572565701" d="0.00018502188218648934" /> - <width sOffset="55.670451259630305" a="3.923784821645409" b="-0.00073495712678399731" c="0.0014513713838521112" d="-0.0001431460280527412" /> - <width sOffset="60.02700477844175" a="3.9362932342093551" b="0.0037604518249130222" c="-0.00042251275565836151" d="-0.00014344961159789313" /> - <width sOffset="61.869659692010991" a="3.9408903654006773" b="0.00074216482259663514" c="-9.4319207390579593e-06" d="8.2122483384991609e-07" /> - <width sOffset="64.515807659135717" a="3.9428034162322922" b="0.00070949919973804494" c="0.00046421934734802115" d="-2.8843204328743888e-05" /> - <width sOffset="70.031505574848708" a="3.9559997140506975" b="0.0031980027768004865" c="-9.1710179296875477e-06" d="-4.115856663662195e-05" /> - <width sOffset="71.139590543904021" a="3.9594761133113248" b="0.0030260683205982266" c="-0.0010592078120015595" d="3.3190147057431878e-05" /> - <width sOffset="76.268295708888672" a="3.9516123961033647" b="-0.0052195981156182422" c="-0.00041186126223590586" d="8.5018688306932045e-05" /> - <width sOffset="80.036006371255667" a="3.9306470560896782" b="-0.0047024612492595191" c="0.00054422699541499552" d="8.3925565098132208e-05" /> - <width sOffset="81.60107212351754" a="3.9249421717618334" b="-0.0023822495908820233" c="3.3515877883722795e-05" d="1.5102062515736105e-05" /> - <width sOffset="87.765545420625898" a="3.9150682116109006" b="-0.000247365875385895" c="0.0002647265310979304" d="-1.8951334695022465e-05" /> - <width sOffset="87.783791790480805" a="3.9150637861019288" b="-0.00023772420743758071" c="-0.00045630114589576904" d="3.5092725262081927e-05" /> - <width sOffset="90.040507167662625" a="3.9126067939107823" b="-0.0017610508980314648" c="-0.00021709130478294686" d="3.5720758966644655e-05" /> - <width sOffset="95.498014978976016" a="3.9023362700142452" b="-0.00093884267092497406" c="-0.00013202106904611669" d="1.1360858145079304e-05" /> - <width sOffset="100.04500796406958" a="3.8964058355254898" b="-0.0014347782451401597" c="2.6741020642978328e-05" d="8.6507290145829607e-06" /> - <width sOffset="100.73312787046554" a="3.8954340168432897" b="-0.00138568759361213" c="5.8268208575315214e-05" d="2.5510354972684162e-05" /> - <width sOffset="101.38033649047428" a="3.8945685111276354" b="-0.0012782069641084407" c="-0.00039701865413977789" d="8.3639071283574695e-05" /> - <width sOffset="106.20416667835788" a="3.888552559391794" b="0.00073016927710938938" c="0.00015245917437050718" d="-8.1880772902262671e-06" /> - <width sOffset="110.04950876047654" a="3.8931490993403717" b="0.0015394617952237313" c="5.8270522078362607e-05" d="-7.6959867564921561e-06" /> - <width sOffset="115.36821733591225" a="3.9018275114575474" b="0.0015061821669935169" c="-0.0015562374345074817" d="0.00016722472931616507" /> - <width sOffset="120.0540095568835" a="3.8919202076273214" b="-0.0020631444364412133" c="0.00079462980790434654" d="0.00016705419348509554" /> - <width sOffset="122.51459767136271" a="3.8941434494165876" b="0.0048816546558383047" c="0.0013489143567072925" d="-0.00011562315201910022" /> - <width sOffset="127.32692786980455" a="3.9359886559106139" b="0.0098315133356131814" c="-0.00059720849351414037" d="-0.00012036119378423697" /> - <width sOffset="127.66377757148983" a="3.9392280339642243" b="0.0093882029985852874" c="0.0061375576701435423" d="-0.012892373617685488" /> - <width sOffset="128.10329986673995" a="3.9434453601169204" b="0.0073117495390995508" c="-0.001632266868856999" d="0.00021143379723059889" /> - <width sOffset="130.05851035329044" a="3.953081817401348" b="0.0033537367776829557" c="-0.00039064174792995468" d="0.00021168431065785978" /> - <width sOffset="132.06271541241927" a="3.959938427732514" b="0.0043387891404126659" c="2.5381725800990001e-05" d="3.2972459830642335e-06" /> - <width sOffset="137.43130293998382" a="3.984473331732544" b="0.0048964141941320169" c="0.00058316138516273136" d="-0.00010411566847105522" /> - <width sOffset="138.84381146269124" a="3.9922596508990447" b="0.0059206664471325009" c="0.00033962235014702404" d="-0.00014050072066100475" /> - <width sOffset="140.06301114969742" a="3.9997283303050524" b="0.0061222603793820406" c="-0.00014188894030251362" d="-0.00011506588206485639" /> - <width sOffset="142.43934917494889" a="4.0119315610259942" b="0.0034985831748500056" c="-0.00601281770772236" d="0.00080254813824112822" /> - <width sOffset="146.3784690625057" a="3.9814673703854653" b="-0.006513223452007607" c="0.00038792156232720217" d="-4.597341905160032e-05" /> - <width sOffset="150.06751194610439" a="3.960410984450029" b="-0.0055280668316380699" c="-3.9945544432197592e-05" d="-7.3543951746673087e-05" /> - <width sOffset="150.35413188367352" a="3.958821517039834" b="-0.0055690903355597671" c="0.00024944514190699619" d="-5.5784646825568367e-05" /> - <width sOffset="151.77602906730871" a="3.9512468006941686" b="-0.00519807443728446" c="0.00015519798448616735" d="-1.2235957104445924e-05" /> - <width sOffset="160.07201274251133" a="3.9118186948556617" b="-0.0051493930425654325" c="-0.00013927197288646616" d="-9.8907568556603233e-06" /> - <width sOffset="164.36272647239542" a="3.8863787945878641" b="-0.0068908185320475188" c="-0.00017589764922040817" d="3.9022451165147207e-05" /> - <width sOffset="167.76465107143122" a="3.8624374144714353" b="-0.0067327684791387349" c="-0.000233067324592955" d="9.5695779491576454e-05" /> - <width sOffset="170.07651353891828" a="3.8468089419718003" b="-0.0062760096650554334" c="0.00031201931780829397" d="0.00012557900924312415" /> - <width sOffset="170.82063553358532" a="3.8423633384577593" b="-0.0056030428894346621" c="8.0614493991367083e-05" d="0.00020097868539219925" /> - <width sOffset="171.40164327156231" a="3.8391745583226093" b="-0.0053058344804226927" c="0.00093666050138246785" d="-3.2814892293510009e-05" /> - <width sOffset="176.39194365189525" a="3.831944562730492" b="0.0015910226074537818" c="0.022233742798912923" d="-0.0040662287539906744" /> - <width sOffset="179.27436683021779" a="3.9238776401926709" b="0.028414015566313445" c="-0.01226162785761347" d="-0.0038982400319499161" /> - <width sOffset="179.71378310971855" a="3.9336649165161854" b="0.015380003257512442" c="0.0097851275646468963" d="-0.0043633943977333754" /> - <roadMark sOffset="0" color="standard" width="0.27156284648318907" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.271563" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="127.32692786980455" color="standard" width="0.29238300025702485" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.292383" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.6885453629290401" b="-9.2419806313461077e-10" c="-0.014369073975341963" d="0.0095132986007165649" /> - <width sOffset="0.9969742311678097" a="3.6836903159724486" b="-0.00028374704410157064" c="0.070369305740719118" d="-0.12024017670716837" /> - <width sOffset="1.3875928576358521" a="3.6871501104141915" b="-0.00034841260360909471" c="-0.0031482313364164941" d="0.00056975679234502589" /> - <width sOffset="3.0157586405641066" a="3.6806962675526931" b="-0.0060689521293451083" c="-0.00051142409740967572" d="0.00054863785466379117" /> - <width sOffset="5.1846763594330616" a="3.6707251357711597" b="-0.0005447124141925695" c="0.00011733218248317411" d="-2.2571283288818987e-06" /> - <width sOffset="10.004500796406958" a="3.6705727011981422" b="0.00042902456186413027" c="9.8365229557402585e-05" d="-1.1660980523449805e-05" /> - <width sOffset="11.24891419647633" a="3.6712364386880454" b="0.00061966523260946883" c="0.00022516071519901817" d="-1.9930473986478803e-05" /> - <width sOffset="12.745535076756672" a="3.6726013624814193" b="0.0011597004331683832" c="0.00016956706431731051" d="-8.5805320412332245e-06" /> - <width sOffset="20.009001592813917" a="3.6866827100427457" b="0.0022649160870884966" c="1.4408860108073443e-05" d="-2.7532239291555022e-05" /> - <width sOffset="21.287177618406702" a="3.6895437189189577" b="0.0021668091438291396" c="0.00054929981518227363" d="-0.00010342968906559708" /> - <width sOffset="25.853793023741051" a="3.7010439628607061" b="0.00071293029901591518" c="4.4556372263805514e-05" d="4.773109202584298e-06" /> - <width sOffset="26.035728153818692" a="3.7011751735050176" b="0.00072961701316042555" c="0.00057793808676761594" d="-2.4595691181043332e-05" /> - <width sOffset="30.013502389220875" a="3.7116739290373086" b="0.0041599216422135727" c="0.00028586013898421561" d="-2.3527283174274296e-05" /> - <width sOffset="31.745390746815733" a="3.719613651501966" b="0.0049383715044443652" c="0.00094327837696656937" d="-7.8855911620074462e-05" /> - <width sOffset="39.465952443487687" a="3.7776772192258168" b="0.005402539096989489" c="-0.00044049721256893796" d="-5.1242736116487191e-05" /> - <width sOffset="40.018003185627833" a="3.7805168277721446" b="0.0048693352586436679" c="-0.00049479633678976744" d="-6.0915543822439089e-05" /> - <width sOffset="42.205372255349879" a="3.7881629459925961" b="0.0018303643448927093" c="-0.0026841831134785613" d="0.00025226170084629603" /> - <width sOffset="49.192451579789804" a="3.7559594832891552" b="0.0012668655926264269" c="0.00039260109719657047" d="-6.5516068260892884e-05" /> - <width sOffset="50.022503982034792" a="3.7572440768341089" b="0.0017832054042362974" c="0.00022110223055997897" d="-6.5960293765465267e-05" /> - <width sOffset="53.513699883481593" a="3.7633577297147554" b="0.00091516681190583014" c="-0.00039470262012104704" d="1.6834259714043635e-05" /> - <width sOffset="60.02700477844175" a="3.7572255213627299" b="-0.0020839837004689235" c="-6.8942151220648408e-05" d="1.7315384578227478e-05" /> - <width sOffset="64.515807659135717" a="3.7480479050457385" b="-0.0016562378540944023" c="-0.0003028981274880272" d="4.697981370868367e-05" /> - <width sOffset="64.814928859678602" a="3.7475266451774836" b="-0.0018248340131238399" c="-0.00043918387843165066" d="2.6966106444620586e-05" /> - <width sOffset="70.031505574848708" a="3.7298839188703825" b="-0.0042054473209669103" c="-3.0739352442970098e-05" d="2.715766133646461e-05" /> - <width sOffset="75.360823577359781" a="3.7107093244973059" b="-0.0022191213125590482" c="0.00020749178645933309" d="5.9019263307921533e-05" /> - <width sOffset="76.268295708888672" a="3.7089105100061035" b="-0.0016967271912595395" c="0.00023148768264536857" d="7.1907220620050231e-06" /> - <width sOffset="80.036006371255667" a="3.706188445854794" b="0.00035386081257861236" c="0.00030978520845058722" d="6.8599308085538775e-06" /> - <width sOffset="82.654264359998947" a="3.7093617355797122" b="0.0021171361405899567" c="0.00017608388649515249" d="-2.9470135872298612e-05" /> - <width sOffset="87.765545420625898" a="3.7208479973134345" b="0.0016074255510909845" c="-0.00022772842642352123" d="4.5833389820693567e-06" /> - <width sOffset="90.040507167662625" a="3.723380195669856" b="0.00064244117171081624" c="-0.00019763804739448003" d="3.6287323468089045e-06" /> - <width sOffset="100.04500796406958" a="3.7136595337766014" b="-0.0022224989777094341" c="-0.00010325358132838937" d="1.3308376502747985e-05" /> - <width sOffset="100.73312787046554" a="3.712085632768737" b="-0.0023456957587701856" c="-8.9449276357673823e-05" d="-3.5512494660912242e-06" /> - <width sOffset="101.22626008039236" a="3.7109067165517944" b="-0.0024365071693096462" c="-0.00078188830681709008" d="7.7394552401145779e-05" /> - <width sOffset="108.37508004788627" a="3.6818053803793376" b="-0.0017497732858238627" c="0.00079104332778477063" d="-7.4240689831866713e-05" /> - <width sOffset="110.04950876047654" a="3.6807448355742931" b="0.000274869605499276" c="0.00038605499994737711" d="-8.1203181498565121e-05" /> - <width sOffset="111.94798140019431" a="3.682102456304734" b="0.00086268219349151798" c="0.0011709293378350844" d="-0.00018454300262820683" /> - <width sOffset="117.36734090649806" a="3.6917946630270073" b="-0.0027057273249899514" c="-0.00016908680273089064" d="-4.3175612395842821e-06" /> - <width sOffset="120.0540095568835" a="3.6832210398926124" b="-0.003707782661016081" c="-0.00020703828982176407" d="-4.6867164452829062e-06" /> - <width sOffset="123.85038194248632" a="3.6659045548772191" b="-0.0054824126584531148" c="-0.0025312879289522963" d="0.00015682779522286749" /> - <width sOffset="127.32692786980455" a="3.6228403288054443" b="-0.017396253115349491" c="-0.00061875833872386153" d="0.00016156583708024371" /> - <width sOffset="127.68010615463619" a="3.6166262867738013" b="-0.017772858436948053" c="-0.0011427078021329935" d="-1.1514709179236259e-06" /> - <width sOffset="130.05851035329044" a="3.5678756765975477" b="-0.023228041450436911" c="-0.0011495352573722784" d="-1.3822116982917643e-06" /> - <width sOffset="137.4467083814468" a="3.3329569543772406" b="-0.040440375720065473" c="1.6304395696990743e-05" d="-0.00034671311570733321" /> - <width sOffset="138.84381146269124" a="3.2755439182221568" b="-0.042425062768775529" c="-0.0016345312632644554" d="-0.00031032806351784101" /> - <width sOffset="140.06301114969742" a="3.2208272491018128" b="-0.047794562251297613" c="-0.0028236177411468007" d="-0.00033448558425287636" /> - <width sOffset="140.83298703465007" a="3.182199881276806" b="-0.052737709633066454" c="-0.003986856183488016" d="0.00030858021294734409" /> - <width sOffset="146.16351679349151" a="2.8345342119949155" b="-0.06893731932945818" c="-0.0017396993970210366" d="5.4252473249930287e-05" /> - <width sOffset="150.06751194610439" a="2.5421162858154602" b="-0.080040260525500867" c="-0.0011303430732065554" d="8.6837419735782788e-05" /> - <width sOffset="151.77602906730871" a="2.4024997009264792" b="-0.083142238216039943" c="-0.00082896635728170118" d="4.3288730014198874e-05" /> - <width sOffset="160.07201274251133" a="1.6804168307266742" b="-0.087958595331424944" c="0.00025197406093660111" d="4.2827436948184573e-05" /> - <width sOffset="170.05119013619267" a="0.87031544480526524" b="-0.070134827565655991" c="-0.00059215753587505164" d="0.00019108038333569239" /> - <width sOffset="170.82063553358532" a="0.81608698604844321" b="-0.070706708090919584" c="0.00036066336095596016" d="0.00011568070718774001" /> - <width sOffset="175.2160741682344" a="0.52209149322954662" b="-0.060831348331178529" c="0.0019138789550915743" d="-0.00021302803975088393" /> - <width sOffset="176.39194365189525" a="0.45286167910639907" b="-0.057214046441061789" c="-0.020625951364237914" d="0.0038203858219465615" /> - <width sOffset="179.71378310971855" a="0.17524343178169666" b="-0.067776757226618564" c="-0.0097394320784813127" d="0.0042855401877457339" /> - <width sOffset="180.08101433532525" a="0.14925248090028465" b="-0.073196176309526892" c="-0.0048493779984666932" d="0.004269130954614119" /> - <roadMark sOffset="0" color="standard" width="0.29238300025702485" weight="bold" type="solid"> - <type name="solid"> - <line length="182.88009083592812" space="0" width="0.292383" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link> - <successor id="-5" /> - </link> - <width sOffset="0" a="2.4931495171548477" b="-0.00023050356653928918" c="0.00014613431591844065" d="-2.6900291189887263e-05" /> - <width sOffset="3.0157586405641066" a="2.4930456227204001" b="-8.3050234022690101e-05" c="4.8928261805408099e-05" d="-5.7813535080192511e-06" /> - <width sOffset="7.7359685532566189" a="2.4931357346898224" b="-7.5791885658292547e-06" c="0.00014746973425419689" d="-1.540570314285591e-05" /> - <width sOffset="10.004500796406958" a="2.4936976030209586" b="0.00042365623585177085" c="3.5814248804684761e-05" d="-1.5583003414951143e-06" /> - <width sOffset="11.24891419647633" a="2.4942772642697388" b="0.00050555231135474043" c="-0.00014033198758068736" d="6.7111931218266941e-06" /> - <width sOffset="20.009001592813917" a="2.4924485343991893" b="-0.00040805525177911085" c="4.5334527887992952e-06" d="2.5959565497917695e-05" /> - <width sOffset="21.287177618406702" a="2.4919885831685082" b="-0.00026923307980978054" c="-0.0005363879641027186" d="0.00010185701527196189" /> - <width sOffset="25.853793023741051" a="2.4892733337383106" b="0.0012041831752333063" c="-5.3189910365652025e-05" d="-6.3457830528125903e-06" /> - <width sOffset="30.013502389220875" a="2.4929052856677263" b="0.0004322673212536861" c="-0.00013516237112231799" d="-6.8012802429437816e-06" /> - <width sOffset="31.318854199879411" a="2.4932241098575982" b="4.4631440787350454e-05" c="0.00092345317280228222" d="-6.7537686174239499e-05" /> - <width sOffset="31.745390746815733" a="2.4934059127883792" b="0.00079554240808861519" c="5.7373177029899306e-05" d="-1.2209057699207301e-05" /> - <width sOffset="40.018003185627833" a="2.4970014215410465" b="-0.0007618269634804475" c="-0.00024141758901369362" d="-1.0131147719163062e-05" /> - <width sOffset="42.205372255349879" a="2.4940739131598431" b="-0.0019633856627116041" c="0.0014817531809165564" d="-0.00032330839238839534" /> - <width sOffset="43.198952465753315" a="2.4932687996166454" b="2.3583891583802211e-05" c="0.00047612791261268357" d="-7.5427376249871545e-05" /> - <width sOffset="49.192451579789804" a="2.4942742181946613" b="-0.0023975854498271658" c="0.0013308395067556566" d="0.00024235039285771805" /> - <width sOffset="49.937649035109224" a="2.4933268744548869" b="-1.0363508780665163e-05" c="-0.00042775402550525738" d="6.8791009674893969e-05" /> - <width sOffset="53.513699883481593" a="2.4909655200558998" b="-0.00043057668106329675" c="0.00023521034894372536" d="-1.4003543804641696e-05" /> - <width sOffset="60.02700477844175" a="2.4942700174667163" b="0.00085119382771367915" c="-3.611037865455343e-05" d="-1.4935331729199249e-05" /> - <width sOffset="64.814928859678602" a="2.4958783735271872" b="-0.00052173603229994925" c="-7.2194356211298258e-05" d="5.0783755669748579e-06" /> - <width sOffset="70.031505574848708" a="2.4919130070404485" b="-0.00086036231214123987" c="2.3172335966914758e-05" d="5.1615189494732183e-06" /> - <width sOffset="75.360823577359781" a="2.488767249124276" b="-0.00017359015760047536" c="0.00030165876504193427" d="-2.6700083025627509e-05" /> - <width sOffset="80.036006371255667" a="2.4918207375812642" b="0.00089625166822063218" c="-7.0610828321795001e-05" d="-2.5777333776726412e-05" /> - <width sOffset="82.654264359998947" a="2.4932206248069182" b="-3.6351898148556888e-06" c="-8.550143070739841e-05" d="1.0552733054299925e-05" /> - <width sOffset="82.902653335504922" a="2.4932146083962774" b="-4.4157196854810845e-05" c="-3.2538125411990559e-06" d="-2.2693272494649072e-07" /> - <width sOffset="90.040507167662625" a="2.4926511146590915" b="-0.00012529363064744405" c="-7.2465306032846625e-06" d="-2.2835544315425619e-07" /> - <width sOffset="100.04500796406958" a="2.4904436450048397" b="-0.0003388577867355011" c="-1.1091407286721973e-05" d="-8.0167624891284202e-06" /> - <width sOffset="101.22626008039236" a="2.4900146782869683" b="-0.00039862000984766373" c="0.00064768446371343054" d="-8.8962564352700009e-05" /> - <width sOffset="105.69717540692075" a="2.4932285610158562" b="5.8024304351948428e-05" c="0.00049452480005528492" d="-0.00010706215302404875" /> - <width sOffset="108.37508004788627" a="2.4948742761819549" b="0.00040332106990197082" c="-0.0002786743791673089" d="4.4573089208447658e-05" /> - <width sOffset="110.04950876047654" a="2.4949775394922611" b="-0.00015500944375654497" c="-3.7982287402327567e-05" d="4.892576190845413e-05" /> - <width sOffset="111.94798140019431" a="2.4948811357613181" b="0.00022978834243053692" c="-0.0010066900192076812" d="0.00015226558303810025" /> - <width sOffset="117.36734090649806" a="2.4907956474394464" b="0.0027344307817648958" c="-0.00019144270072547469" d="-2.7959858350390559e-05" /> - <width sOffset="120.0540095568835" a="2.4962180652145474" b="0.0011002859982607639" c="-0.00041429006389744028" d="-2.7647742638271155e-05" /> - <width sOffset="123.85038194248632" a="2.4929114822571155" b="-0.0032407272867854111" c="0.0015416986325287236" d="-0.00018916225430641931" /> - <width sOffset="127.68010615463619" a="2.492486960006465" b="0.00024462609074502213" c="6.3514935511364314e-05" d="-2.6444946394469563e-05" /> - <width sOffset="130.05851035329044" a="2.493072276561799" b="9.7972632820002986e-05" c="-0.0001294052732845794" d="-2.591314945822979e-05" /> - <width sOffset="130.41186851989374" a="2.4930895948770555" b="-3.1868899549661323e-06" c="6.0270095772292729e-05" d="-3.8612277279221384e-06" /> - <width sOffset="137.4467083814468" a="2.494705605872122" b="0.00027152948311987002" c="-0.001217695074732687" d="0.00034146967628185333" /> - <width sOffset="139.68103516455798" a="2.4930421299306449" b="-5.5856632844242249e-05" c="-0.0013138565050387729" d="0.00052336441372382832" /> - <width sOffset="140.83298703465007" a="2.4920343389399111" b="-0.00099935263419013987" c="0.00088541628147289489" d="-0.00011970138347315091" /> - <width sOffset="146.16351679349151" a="2.4937354418796005" b="-0.0017636589025752034" c="0.0016587321590077525" d="0.00013462635619303085" /> - <width sOffset="146.6592731391685" a="2.4932851740524278" b="-1.9741798074457417e-05" c="2.3838050314277685e-05" d="-4.0204625748906694e-06" /> - <width sOffset="150.06751194610439" a="2.4933356224892833" b="2.6435516275319371e-06" c="3.6762454556484112e-06" d="-2.7111652454502933e-07" /> - <width sOffset="160.07201274251133" a="2.4934585426829106" b="-5.2066354517266156e-06" c="6.839538689876987e-06" d="-5.7616737420173371e-07" /> - <width sOffset="168.96831823319934" a="2.4935478585176689" b="-2.0314390758405243e-05" c="-0.00067764407118750091" d="-0.00015700543145329363" /> - <width sOffset="170.05119013619267" a="2.4925318837343973" b="-0.0020402369915128588" c="0.00093858499962527764" d="-0.00030525869629334577" /> - <width sOffset="170.07651353891828" a="2.4924808149250683" b="-0.0019932879237456458" c="0.0012531437013892162" d="-0.00017004738044760462" /> - <width sOffset="174.02335651412344" a="2.4936796629876774" b="-4.8139741058481067e-05" c="0.00091209477679066045" d="-0.00031264119807328364" /> - <width sOffset="175.2160741682344" a="2.4943893015136887" b="0.00079333630944925654" c="-0.00023439649740734751" d="1.6067548865919925e-05" /> - <width sOffset="180.08101433532525" a="2.4945512669596015" b="-0.00034647053796851845" c="3.7145684492339041e-05" d="6.6656903734797833e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="182.88009083592812"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4940186800134727" b="0.00015942337758987485" c="-8.7118738752661368e-05" d="4.0959893282279532e-06" /> - <width sOffset="7.2054242958041073" a="2.492176628028818" b="-0.00045806314273772256" c="9.5148900073474511e-05" d="6.5789668638391358e-06" /> - <width sOffset="7.3095447957822159" a="2.4921299732082662" b="-0.0004380352713541924" c="0.00018224141813310472" d="-1.0563092768923471e-05" /> - <width sOffset="17.209925092211051" a="2.4954055715644712" b="6.4378631649086686e-05" c="-2.7532757391251692e-05" d="-1.693490906666456e-05" /> - <width sOffset="17.279583121469074" a="2.4954099167335428" b="6.0296359551390011e-05" c="-8.6011415828383107e-05" d="9.6940517011760999e-06" /> - <width sOffset="22.047358404218159" a="2.4947928490835354" b="-9.8783568416608777e-05" c="-7.8992366848212335e-05" d="6.7588106091065028e-06" /> - <width sOffset="27.214425888617995" a="2.4931058440761653" b="-0.0003737492821419006" c="3.2906682980436366e-05" d="1.4005583441912439e-05" /> - <width sOffset="30.884038431668216" a="2.4928695410954544" b="0.00043356019299348875" c="-2.9836432911809313e-05" d="5.8998980472739307e-07" /> - <width sOffset="37.218926685024968" a="2.4945687259545126" b="0.000126569561063169" c="-3.0867710983459967e-05" d="3.0480132963560082e-06" /> - <width sOffset="41.922742435716088" a="2.4947983357604313" b="3.8497464065756059e-05" c="-6.5670451715326331e-05" d="4.5376475675730066e-06" /> - <width sOffset="47.223427481431941" a="2.4938330521517642" b="-0.00027521288155896986" c="-1.0558199384802364e-05" d="4.4602107592496357e-06" /> - <width sOffset="51.339069705101025" a="2.4928324682272596" b="-0.00013547243808546263" c="2.6088398988142904e-05" d="-2.428948766831203e-07" /> - <width sOffset="57.227928277838885" a="2.4928897973622393" b="0.00014651954287597975" c="1.6738513194769173e-05" d="-1.5302562447476252e-06" /> - <width sOffset="67.232429074245829" a="2.4944986872505961" b="2.1950271323012416e-05" c="-2.7011960502176177e-05" d="-2.5016809401462775e-06" /> - <width sOffset="71.149163321298431" a="2.4940199596901671" b="-0.00030478048488719869" c="3.6127732953428963e-05" d="-2.1190429148198144e-06" /> - <width sOffset="77.236929870652773" a="2.4930253591320612" b="-0.00010050699913059617" c="9.0670599333476183e-06" d="-3.4841568006892193e-06" /> - <width sOffset="81.214197339467034" a="2.492549838798177" b="-0.00019372679316824503" c="7.4437700360722276e-05" d="-3.7099906741337896e-06" /> - <width sOffset="87.241430667059774" a="2.4932740214589568" b="0.00029925546223307582" c="5.5967618546352648e-06" d="-2.6311218908390807e-06" /> - <width sOffset="94.009713470803092" a="2.4947400663761075" b="1.3424060822951058e-05" c="0.00048645610951845802" d="-2.0586693687295203e-05" /> - <width sOffset="95.150043732135885" a="2.4953574123432176" b="0.0010425553926448367" c="-0.00026796251230238211" d="1.3995281474497821e-05" /> - <width sOffset="97.245931463466718" a="2.4964942506854317" b="0.00010374983287385689" c="-0.00017740751030115401" d="1.797606944633313e-05" /> - <width sOffset="106.50141901898115" a="2.4965096123782429" b="0.0014394725548248083" c="-0.00078672197010795002" d="7.5168436724703638e-05" /> - <width sOffset="107.25043225987366" a="2.4971780156467807" b="0.00038745538722465001" c="-0.00063224897079238785" d="7.5037965513588642e-05" /> - <width sOffset="113.62697080336324" a="2.4933964568263827" b="0.0014775214398976247" c="-0.0004106067623068537" d="-3.4149246854679467e-05" /> - <width sOffset="115.13252895935892" a="2.4945736870738973" b="8.9178773367599323e-06" c="7.3163566093127578e-05" d="7.4140021466056409e-07" /> - <width sOffset="117.25493305628066" a="2.4949292751668048" b="0.00032950231450915349" c="7.2331329173444683e-05" d="4.0059280252060793e-06" /> - <width sOffset="120.1636813326873" a="2.4965982839951559" b="0.0008519698388636804" c="-0.000457109291380809" d="4.379547346620107e-05" /> - <width sOffset="125.93520688534699" a="2.4947086941346051" b="-4.7917768933772309e-05" c="-0.0001351549163743692" d="-2.4466411572298438e-05" /> - <width sOffset="127.25943385268761" a="2.4943514212847413" b="-0.00053458055328775567" c="-0.00014841937204789369" d="3.3760885834066922e-05" /> - <width sOffset="131.68082964066105" a="2.4920044624442896" b="0.0001329262841843655" c="-2.5243565878913405e-06" d="1.1868926837884084e-07" /> - <width sOffset="137.26393464909455" a="2.4926885726215664" b="0.00011583779983100539" c="-6.9942401104711323e-07" d="1.3777384511970743e-08" /> - <width sOffset="147.2684354455015" a="2.4937912626032999" b="0.00010597996042252924" c="-2.9276276227048934e-06" d="1.5328573073145402e-09" /> - <width sOffset="157.27293624190844" a="2.4945600477750229" b="4.7861325887478849e-05" c="8.6145159518130146e-07" d="-9.3834572529059089e-07" /> - <width sOffset="162.29974893779053" a="2.4947032152621533" b="-1.46107030220288e-05" c="4.5029669168053189e-05" d="-2.1894423643869116e-06" /> - <width sOffset="167.27743703831544" a="2.495476172086839" b="0.00027093066511443917" c="2.0365545736173671e-05" d="-2.3083233444993543e-06" /> - <width sOffset="171.08462469708064" a="2.4966754655764047" b="0.00032562636400645419" c="0.0003054962895327329" d="-6.7488076100227331e-05" /> - <width sOffset="174.50511207714021" a="2.498662700450959" b="4.6741171152471853e-05" c="-0.00034969699834480855" d="4.4622749460627816e-05" /> - <width sOffset="177.28193783472238" a="2.4970514998090758" b="-0.00086312798624187809" c="2.5657253759798603e-05" d="4.6281817373651367e-05" /> - <width sOffset="179.04649776904762" a="2.4958626313711418" b="-0.00034026129869752213" c="4.0591617967970258e-06" d="3.5637603705147755e-06" /> - <width sOffset="184.31804375631151" a="2.4947037916272619" b="-3.6306451994122524e-07" c="-4.4596482348684274e-05" d="2.8400411644640319e-06" /> - <width sOffset="187.28643863112933" a="2.4943840409224975" b="-0.00019004905915983358" c="-1.9569437930790967e-05" d="2.8821555131905058e-06" /> - <width sOffset="197.25282330336154" a="2.4933993173746325" b="0.00027872119660970682" c="1.0982352193757064e-05" d="-3.4876146638149875e-07" /> - <width sOffset="197.29093942753633" a="2.4934099570826476" b="0.00027955688606871171" c="9.0459787505329884e-06" d="-4.0203586618477542e-07" /> - <width sOffset="207.29544022394327" a="2.4967096175574151" b="0.00033983853611388361" c="-5.5875912638649441e-06" d="1.9417577979570201e-06" /> - <width sOffset="210.34286659592095" a="2.497748313009768" b="0.00035988118276501779" c="-3.6067547616318969e-05" d="1.0897668180463781e-06" /> - <width sOffset="217.29994102035022" a="2.4988732875811719" b="1.6268990450762043e-05" c="-1.358488243814372e-05" d="1.104849487995132e-07" /> - <width sOffset="227.30444181675716" a="2.497786973531313" b="-0.00022237561632331825" c="-8.1102043356128038e-06" d="4.7601988219073e-07" /> - <width sOffset="237.30894261316411" a="2.4952271287673744" b="-0.00024171816609230585" c="-1.65489075094534e-05" d="2.1344172476757521e-06" /> - <width sOffset="237.79268151386208" a="2.4951065693966461" b="-0.00025623048455239439" c="5.7196809433340408e-05" d="-3.8077448974945992e-06" /> - <width sOffset="242.81639212979826" a="2.494780084127048" b="3.0154144260389776e-05" c="9.0191641330637662e-05" d="-5.2593828068477077e-06" /> - <width sOffset="247.31344340957111" a="2.4962613570947383" b="0.00052225810180427015" c="1.069681103556305e-05" d="-5.8855819564679148e-06" /> - <width sOffset="253.33849457544221" a="2.4985090205274005" b="1.0193972589182289e-05" c="-0.00016642370637394142" d="1.2024394119278664e-05" /> - <width sOffset="257.31794420597805" a="2.4966718588724719" b="-0.00074309992682841186" c="-3.5317419080638323e-05" d="9.0893768714003614e-06" /> - <width sOffset="264.14778814678687" a="2.4928449447949745" b="4.6445321274641866e-05" c="2.3990409192653346e-05" d="-7.5741887639192788e-07" /> - <width sOffset="267.322445002385" a="2.4932099447221674" b="0.00017586713922228096" c="1.5282306627207065e-05" d="-1.5728594488740864e-06" /> - <width sOffset="277.326945798792" a="2.4949240301389723" b="9.36815941070669e-06" c="-3.0595274014421384e-05" d="-1.823666941132981e-06" /> - <width sOffset="277.46664379176428" a="2.4949247367972482" b="7.1319318247073035e-07" c="-5.9900252414289414e-05" d="3.2937934446471226e-06" /> - <width sOffset="287.33144659519894" a="2.4922646170759588" b="-0.00021949521304052521" c="2.564755405671846e-05" d="3.6136101842421279e-06" /> - <width sOffset="287.75191757114351" a="2.4921771287172367" b="-0.0001960104951242266" c="0.00090708826779678075" d="-0.00014656432834588346" /> - <width sOffset="291.9202559111485" a="2.4965058587963735" b="-0.00027359407500604537" c="-3.3628263115661221e-05" d="5.4700433269348321e-06" /> - <width sOffset="297.33594739160588" a="2.4949067157688134" b="-0.00015653024861187766" c="3.8083166394577187e-06" d="4.2764033217406994e-05" /> - <width sOffset="298.45196323664663" a="2.494796210253897" b="1.1756737295139466e-05" c="-0.00012412689389726809" d="5.9013194686360248e-06" /> - <width sOffset="304.49393683155324" a="2.4916375608025518" b="-0.00084189521491469157" c="0.00032354985104991534" d="-1.7550211593773278e-05" /> - <width sOffset="307.34044818801283" a="2.4914579183073648" b="0.0005734729860623121" c="0.00017661696861839192" d="-1.679794043446245e-05" /> - <width sOffset="317.34494898441977" a="2.4980521961557587" b="-0.00093651720530591961" c="-0.00032155517854860635" d="-1.6014998543070532e-05" /> - <width sOffset="317.74993488256911" a="2.4976191167117445" b="-0.001204847862498318" c="3.0625725176916128e-05" d="2.9518932195021518e-06" /> - <width sOffset="327.34944978082677" a="2.4914865936072808" b="0.00019919330573626824" c="0.00011441999810733505" d="3.0885889918117599e-06" /> - <width sOffset="333.13947141523312" a="2.49707529914342" b="0.0018348106546218624" c="-0.0012296569358151246" d="0.00015831585969815613" /> - <width sOffset="337.35395057723366" a="2.4948181388975357" b="-9.3976063340061016e-05" c="0.00078433742166440648" d="0.00015273207027501515" /> - <width sOffset="337.40778924557452" a="2.4948153766684982" b="-8.192570095467977e-06" c="-0.0011189972866430674" d="0.00022629353756743368" /> - <width sOffset="339.31924720133082" a="2.4922916661454009" b="-0.0018056183443270974" c="0.00047518462572909096" d="-2.7154201358487289e-05" /> - <width sOffset="347.35845137364066" a="2.4943781960186504" b="0.00056976345758379728" c="-0.00019181560113608299" d="-2.5428781337396178e-05" /> - <width sOffset="348.8429137180039" a="2.4947181153830211" b="-0.00016782937446593264" c="-8.9559437933748849e-05" d="0.0056361671402341889" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="349.03200235686808" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8276701607287009" b="-0.00078155584464884367" c="-0.00011602227996207708" d="-2.4570553014920619e-06" /> - <width sOffset="7.2054242958041073" a="3.8150958930884356" b="-0.0028362325725389071" c="-0.00021175224360490063" d="-2.2936260901655385e-06" /> - <width sOffset="7.3095447957822159" a="3.8147982849232349" b="-0.0028804026676302772" c="-0.00029750618619265917" d="1.4848433542592962e-05" /> - <width sOffset="14.167796347760145" a="3.7858402111214611" b="-0.0048659316125462017" c="-0.00038003441827640875" d="0.0001095878840506813" /> - <width sOffset="17.279583121469074" a="3.7703206275539753" b="-0.0040476140043841837" c="0.00069794766700429195" d="8.295892444146427e-05" /> - <width sOffset="17.971066585379134" a="3.7678829215539782" b="-0.0029633751884891686" c="0.0007220190607914762" d="-2.6176965274904046e-05" /> - <width sOffset="27.214425888617995" a="3.7815072133735343" b="0.0036747325272651534" c="2.2350694931879119e-05" d="-2.9008192790421015e-05" /> - <width sOffset="30.884038431668216" a="3.7938595877588286" b="0.0026668914436698324" c="-8.0067479507191024e-05" d="-1.5592599153237413e-05" /> - <width sOffset="35.288407370383396" a="3.8027201748510127" b="0.0010541805023799814" c="-0.00013415639180339905" d="3.8485650796266019e-06" /> - <width sOffset="37.218926685024968" a="3.8042829924618311" b="0.0005792271985420633" c="-0.00011352559369274213" d="3.8168369846958256e-06" /> - <width sOffset="47.223427481431941" a="3.8025370835967278" b="-0.00054622453074667328" c="5.6790499950725919e-06" d="2.162040915312839e-06" /> - <width sOffset="51.320324160874378" a="3.8005432504170886" b="-0.0003908248366346124" c="-6.5061991452499302e-05" d="-3.4039593340925062e-06" /> - <width sOffset="51.339069705101025" a="3.8005359013079172" b="-0.00039326767028951453" c="-4.6830134016672045e-05" d="1.2990670635653581e-06" /> - <width sOffset="57.227928277838885" a="3.7968612900249292" b="-0.00080967004593585079" c="-1.3379569776429661e-05" d="2.2665187597031604e-06" /> - <width sOffset="67.232429074245829" a="3.789691364261623" b="-0.00039681404488385802" c="5.1714061114752182e-05" d="2.4064408914293599e-06" /> - <width sOffset="69.416801177399464" a="3.789096409006897" b="-0.00013644167552839814" c="0.00026078115716997622" d="-5.6607412902368613e-06" /> - <width sOffset="71.149163321298431" a="3.7896132374238394" b="0.0007161281449218882" c="0.00013882684372231254" d="-6.0433793152395071e-06" /> - <width sOffset="77.236929870652773" a="3.7977544105183183" b="0.0017344997179868592" c="7.7812225211117008e-06" d="-4.4653501186692146e-06" /> - <width sOffset="81.214197339467034" a="3.8044951306800732" b="0.0015844882051015098" c="-0.00015244136369677318" d="-4.239516245217381e-06" /> - <width sOffset="87.241430667059774" a="3.8075791293642975" b="-0.00071514473855135118" c="-0.00022855466149571048" d="-1.0075851153241818e-05" /> - <width sOffset="89.06762235940721" a="3.8054495486378017" b="-0.001650722154957554" c="-0.00045710235800461795" d="2.6301422399056024e-05" /> - <width sOffset="95.150043732135885" a="3.7844167311696784" b="-0.0042921700443732044" c="0.00070681837564228757" d="-8.2805527620544163e-06" /> - <width sOffset="97.245931463466718" a="3.778449461213981" b="-0.0014384692005241007" c="0.00062921066829724334" d="-1.6888965470177887e-05" /> - <width sOffset="102.93926043394242" a="3.7875382647524658" b="0.0040838209371099341" c="0.00015650590577018513" d="-4.5463082310734483e-05" /> - <width sOffset="106.50141901898115" a="3.8020164443543663" b="0.0034681790699331461" c="0.00077911209988783953" d="-0.00010265544959951331" /> - <width sOffset="107.25043225987366" a="3.8050081174651353" b="0.0044625340896847837" c="0.00055669577009313386" d="-0.00010166703377681557" /> - <width sOffset="113.62697080336324" a="3.8297396481123323" b="-0.00083930097865176484" c="-0.00017435027886670703" d="7.520178591710019e-06" /> - <width sOffset="117.25493305628066" a="3.824758979125682" b="-0.0018074291836970991" c="-8.195046955146188e-05" d="4.4237727614139506e-06" /> - <width sOffset="119.93208643977272" a="3.8194177440512598" b="-0.0021510996053655182" c="-0.0001124477040166229" d="1.5728317170131266e-05" /> - <width sOffset="120.1636813326873" a="3.8189137244766824" b="-0.0022006534120704124" c="0.00046287741905401701" d="-2.4061228266782631e-05" /> - <width sOffset="127.25943385268761" a="3.8180078415679142" b="0.00073384666263622174" c="-2.3573406356098889e-05" d="-2.5336136356357421e-05" /> - <width sOffset="131.68082964066105" a="3.8186017665266769" b="-0.00096047673747226645" c="-5.7720966249695439e-05" d="8.3060602093378136e-06" /> - <width sOffset="137.26393464909455" a="3.8128856147896744" b="-0.00082827502729213237" c="8.3529264310566604e-05" d="8.4833601412746209e-06" /> - <width sOffset="141.18581511988873" a="3.8114337368657396" b="0.00021835996716963908" c="7.6891428197940382e-05" d="-3.2924703212105161e-06" /> - <width sOffset="147.2684354455015" a="3.8148658287741983" b="0.00078831557722832866" c="1.4893595807109671e-05" d="-2.9885731131936803e-06" /> - <width sOffset="157.27293624190844" a="3.821250622920255" b="0.00018894238632930112" c="-7.7300983481518211e-05" d="-2.4164372949030051e-06" /> - <width sOffset="159.96448604961739" a="3.8211520508386205" b="-0.00027969371577677956" c="-0.00015061128683240514" d="5.3254294229680529e-06" /> - <width sOffset="167.27743703831544" a="3.8131348137333494" b="-0.0016281196847139478" c="-3.8986464165702221e-05" d="6.5184690392428269e-06" /> - <width sOffset="171.08462469708064" a="3.8067308752496332" b="-0.0016415279284042383" c="-0.000276030763770267" d="7.1698221794954897e-05" /> - <width sOffset="174.50511207714021" a="3.800755839437552" b="-0.0010132970643733858" c="0.00042236477475822063" d="-4.0412603765867548e-05" /> - <width sOffset="177.28193783472238" a="3.8003335519405201" b="0.00039753388492280717" c="7.7789001303254295e-05" d="-4.2369467928253193e-05" /> - <width sOffset="178.00506585937194" a="3.8006456754713396" b="0.0004435699169746234" c="-0.00022064463027501115" d="-3.6329171224402384e-05" /> - <width sOffset="179.04649776904762" a="3.8008272820865621" b="-0.00013420852398466753" c="-6.7548490933379843e-05" d="6.3888857777896451e-06" /> - <width sOffset="187.28643863112933" a="3.798709449930548" b="5.395168812446019e-05" c="9.0190222610516232e-05" d="6.3636604138099118e-06" /> - <width sOffset="192.86414975821077" a="3.8029205418112699" b="0.001653998576261524" c="0.00016417930741549695" d="-3.6423726577008248e-05" /> - <width sOffset="196.1204495655914" a="3.8087896870100382" b="0.0015645769798719091" c="2.5032847578577053e-05" d="-1.2564351141498247e-05" /> - <width sOffset="197.25282330336154" a="3.8105752282159422" b="0.0015729373759929555" c="3.7972440964537923e-05" d="-9.333400273688752e-06" /> - <width sOffset="197.29093942753633" a="3.8106352371432748" b="0.0015757914207999617" c="4.0930864375172095e-05" d="-7.1731071101819627e-06" /> - <width sOffset="207.29544022394327" a="3.8233142184855917" b="0.00024090750062017927" c="-0.0001674183592043576" d="-8.7790019333175555e-06" /> - <width sOffset="210.34286659592095" a="3.8222451309607526" b="-0.0010240694481583237" c="-0.0001994463971824194" d="-7.9270056862843466e-06" /> - <width sOffset="210.39916181065217" a="3.8221868472612393" b="-0.0010466005693530985" c="-0.00033340387162057538" d="4.8628284715896648e-05" /> - <width sOffset="214.82322303897485" a="3.8152418167155169" b="-0.0011412941323965375" c="0.00024820689428665829" d="-9.8170843710685637e-06" /> - <width sOffset="217.29994102035022" a="3.8137885406577103" b="-9.2475048996940035e-05" c="0.00017334184031874306" d="-1.5011210002629616e-05" /> - <width sOffset="227.30444181675716" a="3.815181677179754" b="-0.0011314955470032211" c="-0.00027180329564848458" d="-1.684255837493236e-05" /> - <width sOffset="228.37114936964855" a="3.813644983897281" b="-0.0017688584769737312" c="-0.00042609063645726033" d="7.8351934101261993e-05" /> - <width sOffset="232.11552020878395" a="3.8051610588733862" b="-0.0016641852686407129" c="0.00037515625264932748" d="-1.6852123270673868e-05" /> - <width sOffset="237.30894261316411" a="3.8042762569513284" b="0.0008689164889462515" c="0.00012245592969937279" d="-1.6477027910115952e-05" /> - <width sOffset="237.79268151386208" a="3.8047233756110206" b="0.00097582284465879895" c="2.7895976592936568e-05" d="-1.0534865767282119e-05" /> - <width sOffset="245.40266041410615" a="3.809122079034891" b="-0.00042988001876573647" c="-4.3683920574021833e-05" d="5.987044164241579e-06" /> - <width sOffset="247.31344340957111" a="3.8081829458844849" b="-0.00053124326301155723" c="-5.26429605442049e-07" d="6.3130150539923989e-06" /> - <width sOffset="253.33849457544221" a="3.8063438306842112" b="0.0001499240595501921" c="0.00018432000665180717" d="-1.1596961021748687e-05" /> - <width sOffset="257.31794420597805" a="3.8091285163937831" b="0.0010659593264502019" c="6.6645013911898648e-05" d="-8.2829789865171898e-06" /> - <width sOffset="264.14778814678687" a="3.81687875126274" b="0.00081718681159828653" c="2.3859900762470502e-05" d="1.5638167612526249e-06" /> - <width sOffset="265.79210339840512" a="3.8182939282494495" b="0.00090833782399975466" c="1.6897639754876405e-05" d="-8.4446629656269357e-07" /> - <width sOffset="267.322445002385" a="3.819720542214724" b="0.00095412306431477234" c="1.3008925237023968e-05" d="-2.2113396086225624e-06" /> - <width sOffset="277.326945798792" a="3.8283538041797422" b="0.00055041948576870696" c="-5.3899947497850314e-05" d="-2.1304450553195707e-06" /> - <width sOffset="285.00106677540549" a="3.8284406622982532" b="-0.00065324930882545149" c="-0.00010357627461756618" d="7.9102560852323985e-07" /> - <width sOffset="287.33144659519894" a="3.8263658655571593" b="-0.0011231060318098261" c="-8.5310962008168447e-05" d="3.2587311876764608e-06" /> - <width sOffset="287.75191757114351" a="3.825878791690541" b="-0.0011931192083519573" c="-0.00095808281549433598" d="0.00015343666975189128" /> - <width sOffset="291.9202559111485" a="3.8153713962404687" b="-0.0011824389714768181" c="6.8572447922900709e-05" d="1.4022980790613716e-06" /> - <width sOffset="297.33594739160588" a="3.8112016238620257" b="-0.0003163175217606162" c="8.328601490898468e-05" d="-5.9054825382777832e-07" /> - <width sOffset="301.04434618482179" a="3.8111438428738227" b="0.00027703394122676042" c="0.00037403073517043811" d="-1.609237893024261e-05" /> - <width sOffset="304.49393683155324" a="3.8158897647708399" b="0.0022830575243388087" c="-0.0001332155200882136" d="7.3591521324726929e-06" /> - <width sOffset="307.34044818801283" a="3.8214788513845104" b="0.0017035439349071821" c="-7.0897069045751371e-05" d="6.1058816338363146e-06" /> - <width sOffset="317.34494898441977" a="3.8375399975758455" b="0.0021183781084663498" c="0.00011140925525070905" d="5.4151229732373245e-06" /> - <width sOffset="317.74993488256911" a="3.8384165431569865" b="0.0022112809241341641" c="-0.00025365004885841445" d="-1.3551768789347253e-05" /> - <width sOffset="321.07485605567678" a="3.8424666241054153" b="7.5099577862528221e-05" c="-0.00023039113151053042" d="9.9970164068857845e-06" /> - <width sOffset="327.34944978082677" a="3.8363368268472833" b="-0.0016353585227726736" c="-4.0887986155471746e-05" d="9.8120749617814588e-06" /> - <width sOffset="333.13947141523312" a="3.8274019120767022" b="-0.0011220128503830825" c="0.0015272743179356489" d="-0.00014541519574456279" /> - <width sOffset="337.30478880166191" a="3.8387175583808757" b="0.0040323479306461681" c="0.00012633564822131971" d="-0.00017875149365629523" /> - <width sOffset="337.35395057723366" a="3.8389160798640756" b="0.004043473637481824" c="8.7634745219252581e-05" d="-0.00017316771882365994" /> - <width sOffset="339.31924720133082" a="3.8458867128284977" b="0.0023814059524799071" c="-0.0012298732186141683" d="8.0280020102343601e-05" /> - <width sOffset="347.35845137364066" a="3.827256706936371" b="-0.0018277928820306507" c="0.00065745644738250577" d="9.9409255650662677e-05" /> - <width sOffset="348.8429137180039" a="3.8263173948638087" b="0.00078132898874988185" c="0.00088466396918870211" d="-0.0055621866659209228" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.7871639769875292" b="-0.0027291687486701247" c="9.1082047522503815e-05" d="3.9708929566121488e-07" /> - <width sOffset="7.2054242958041073" a="3.7723765166249437" b="-0.0013547507403305009" c="0.00014155410572196935" d="2.1859865334642355e-07" /> - <width sOffset="14.167796347760145" a="3.7698797967566375" b="0.00064814342167663708" c="0.0005341511104333728" d="-9.452085185548426e-05" /> - <width sOffset="14.467051560366258" a="3.7701190591502138" b="0.00094244435890431313" c="0.00028384547201497313" d="-8.8051065929873609e-05" /> - <width sOffset="17.209925092211051" a="3.7730225475264669" b="0.00051223048627567274" c="-0.00044116918770074632" d="-8.8149852586673596e-05" /> - <width sOffset="17.971066585379134" a="3.7731179717564332" b="-0.00031255910978809963" c="-0.00049442993943914139" d="2.0986037130292675e-05" /> - <width sOffset="27.214425888617995" a="3.7445586521346534" b="-0.0040738246744932965" c="0.0001012582572585589" d="2.1461942291611956e-05" /> - <width sOffset="32.527418967141074" a="3.7289915038283921" b="-0.0011803794449358439" c="0.00049239394420390835" d="1.9862816706752358e-06" /> - <width sOffset="35.288407370383396" a="3.7295278425660343" b="0.0015840331095722483" c="0.00035690848032247674" d="-1.7454882562105215e-05" /> - <width sOffset="37.218926685024968" a="3.7337904275493661" b="0.0027669124811373772" c="0.00025415507661393264" d="-1.6415689904151346e-05" /> - <width sOffset="47.223427481431941" a="3.770472531500312" b="0.0029231608243878229" c="-0.00023382418319474349" d="-1.8137925252912677e-05" /> - <width sOffset="49.118351066770231" a="3.77504868360742" b="0.0018416174347185912" c="-9.4372197104856942e-05" d="-1.8812060735318181e-05" /> - <width sOffset="51.320324160874378" a="3.778445444284833" b="0.0011523660582637438" c="-0.00012132912796229331" d="-1.3245981247665225e-05" /> - <width sOffset="53.184981530675486" a="3.7800864793181144" b="0.00056172482448538404" c="-0.00024933600872394514" d="6.8041336923292583e-06" /> - <width sOffset="57.227928277838885" a="3.7787316435165321" b="-0.0011207303501968428" c="-0.00015628061568848065" d="7.7951866270568963e-06" /> - <width sOffset="67.232429074245829" a="3.7596828800855171" b="-0.0019070879037135567" c="7.3851467136154799e-05" d="9.4056140834657882e-06" /> - <width sOffset="69.416801177399464" a="3.7559675031881614" b="-0.0014498135941721419" c="-5.7809858814121491e-05" d="1.7472796264824223e-05" /> - <width sOffset="70.351322026477845" a="3.7545763954425313" b="-0.0015120841203990092" c="3.3077584940327331e-05" d="-7.8573042764364032e-07" /> - <width sOffset="77.236929870652773" a="3.7454765305241637" b="-0.001168323763083842" c="9.1368287184219585e-06" d="-9.4713578402921078e-07" /> - <width sOffset="87.181589250739535" a="3.7338300486339095" b="-0.0012676029966182888" c="0.00029385148540378209" d="9.5051790929588091e-06" /> - <width sOffset="87.241430667059774" a="3.733755247792875" b="-0.0012323319044335438" c="0.00027758347913837679" d="1.4728296250878891e-05" /> - <width sOffset="89.06762235940721" a="3.7325202076004556" b="-7.113506951558364e-05" c="0.00053161994540645678" d="-2.1648977301412411e-05" /> - <width sOffset="97.245931463466718" a="3.7556536259009747" b="0.0042804107679954113" c="-9.0535666246603588e-06" d="-2.1199920376873068e-05" /> - <width sOffset="102.93926043394242" a="3.7758176420131386" b="0.00211579857728504" c="-0.0001869064758361577" d="7.3741964637089395e-06" /> - <width sOffset="107.25043225987366" a="3.7820562135376421" b="0.00091540163839584892" c="-0.00010005667951369373" d="6.3778226096760605e-06" /> - <width sOffset="117.25493305628066" a="3.7875861113553806" b="0.00082843686599257745" c="0.00010250437382727636" d="3.2391926202559197e-06" /> - <width sOffset="119.93208643977272" a="3.7906007803659438" b="0.0014469240689070763" c="0.00019454640938469826" d="-8.0653517925485186e-06" /> - <width sOffset="123.14134830450507" a="3.7969814555564416" b="0.0024464208875799873" c="-9.7384554962876111e-05" d="4.7931175801214676e-07" /> - <width sOffset="127.25943385268761" a="3.8054379912962641" b="0.0016687304409995713" c="-7.8033157777102611e-05" d="1.3677073246414406e-06" /> - <width sOffset="137.26393464909455" a="3.8156920196242767" b="0.00051804648958835324" c="-3.8051350995436727e-05" d="2.1932153557379803e-06" /> - <width sOffset="138.74577999052246" a="3.8163832653245602" b="0.00041972207373694621" c="-0.00011896251633442379" d="-8.6631742283198308e-06" /> - <width sOffset="141.18581511988873" a="3.8165732728012949" b="-0.00031555904183872387" c="-7.5927855174404821e-05" d="3.1126562341536604e-06" /> - <width sOffset="147.2684354455015" a="3.8125451398423125" b="-0.00089375098462302527" c="-2.5316004498574154e-05" d="2.7683174458705372e-06" /> - <width sOffset="157.27293624190844" a="3.8038417846169668" b="-0.00056905597897006447" c="5.9640461086185507e-05" d="1.7054219280871027e-06" /> - <width sOffset="159.29580016025153" a="3.8029488259465243" b="-0.00030683125611861875" c="0.00020048649324377828" d="-1.7310446047467989e-06" /> - <width sOffset="159.96448604961739" a="3.8028327803331354" b="-4.1028340144335035e-05" c="0.00025081233727852357" d="-9.4729113234049335e-06" /> - <width sOffset="167.27743703831544" a="3.8122412265403089" b="0.002107515679463874" c="4.3847016230226007e-05" d="-9.1664185732737148e-06" /> - <width sOffset="174.57241011662035" a="3.8263903561234045" b="0.0012838235076125895" c="-0.00014526771810639824" d="5.170774413235055e-07" /> - <width sOffset="177.28193783472238" a="3.828812708433099" b="0.00050799812496492552" c="-0.00014115150531978594" d="4.9604356426049445e-07" /> - <width sOffset="178.00506585937194" a="3.8291064335665812" b="0.00030463507110804061" c="6.6442586323214777e-05" d="-5.5442531373595445e-06" /> - <width sOffset="187.28643863112933" a="3.8332246715052172" b="0.00010518145462825278" c="-8.8715719425500164e-05" d="-5.4468477118209097e-06" /> - <width sOffset="192.86414975821077" a="3.8301061435123001" b="-0.0013928482291136104" c="-0.00014736365500106344" d="3.7340539271176717e-05" /> - <width sOffset="192.97430998873125" a="3.8299509686493787" b="-0.0014239560442305165" c="-0.00028207995968131984" d="3.7497147769866158e-05" /> - <width sOffset="196.1204495655914" a="3.8238466244035925" b="-0.0020854197383271553" c="-0.00014483943950200506" d="1.3637772333825859e-05" /> - <width sOffset="197.29093942753633" a="3.8212290948526526" b="-0.0023684327819694234" c="-0.00010096566593084563" d="1.1478466634311653e-05" /> - <width sOffset="207.29544022394327" a="3.7989224223261226" b="-0.00094201453005882813" c="0.00025039305176499226" d="9.9509974465186886e-06" /> - <width sOffset="210.29758096713061" a="3.7986203694113514" b="0.00083047634837614837" c="0.00021770030612952023" d="8.3869986833351929e-06" /> - <width sOffset="210.39916181065217" a="3.7987069850675503" b="0.00087496433779703751" c="0.00035287489741025612" d="-4.8168297427898801e-05" /> - <width sOffset="214.82322303897485" a="3.8053136094196334" b="0.0011689489734717229" c="-0.00022263083271831119" d="1.0277071659107e-05" /> - <width sOffset="217.29994102035022" a="3.8069992540199986" b="0.00025528414140390653" c="-0.00011730658698083223" d="1.6217285010792132e-05" /> - <width sOffset="227.30444181675716" a="3.814051215957488" b="0.0027776623863295987" c="0.00037131739271818568" d="1.899597645605727e-05" /> - <width sOffset="228.37114936964855" a="3.8174597352017168" b="0.0036346810914435162" c="0.00053249593552237595" d="-7.6198516020618018e-05" /> - <width sOffset="228.81850132587164" a="3.8191854602636539" b="0.0040653598848080334" c="0.00054757358420611251" d="-0.0001239869757842766" /> - <width sOffset="232.11552020878395" a="3.8340976806748919" b="0.0036327414440251843" c="-0.00059989941437119175" d="-2.8782918413259068e-05" /> - <width sOffset="232.49404454561193" a="3.8353852466807252" b="0.0031662162802352156" c="-0.00050255130006738376" d="1.8591096522954125e-05" /> - <width sOffset="237.30894261316411" a="3.841054716510381" b="-0.00038024453950002458" c="-0.00024340028215112067" d="1.8247029971867859e-05" /> - <width sOffset="245.40266041410615" a="3.8317070680734941" b="-0.00073427695218643676" c="3.0728230291855506e-05" d="1.7251200402028437e-06" /> - <width sOffset="247.31344340957111" a="3.8304282509476049" b="-0.00059795127819022974" c="3.8996325166857169e-05" d="-3.1430006964925905e-07" /> - <width sOffset="249.11019886812772" a="3.8294779486341293" b="-0.00046086155117511327" c="-0.00017076545384392283" d="7.481489761097512e-06" /> - <width sOffset="257.31794420597805" a="3.8183280978851535" b="-0.0017520418294650324" c="1.880420289448043e-05" d="7.645636645405755e-06" /> - <width sOffset="265.79210339840512" a="3.8094840556441589" b="0.00021378880642432306" c="0.00022785171328568214" d="1.0053920259852786e-05" /> - <width sOffset="265.85456455999685" a="3.8094983005312648" b="0.00024237024478333553" c="-5.8548896702099437e-05" d="5.624642300100417e-08" /> - <width sOffset="267.322445002385" a="3.8097280952432162" b="7.0848261945115646e-05" c="-5.2821982247961049e-05" d="2.1301980935655742e-06" /> - <width sOffset="277.326945798792" a="3.807283018286383" b="-0.00034643205218938989" c="1.0382253276470009e-05" d="2.2891903122796852e-06" /> - <width sOffset="285.00106677540549" a="3.8062704787661525" b="0.00021736318249398351" c="6.3713271315635599e-05" d="-6.3228035158631827e-07" /> - <width sOffset="287.33144659519894" a="3.8071150214588201" b="0.00050401430793921688" c="4.6946433178620274e-05" d="-3.1110382996327841e-06" /> - <width sOffset="297.33594739160588" a="3.813741062364076" b="0.00050921375623474443" c="-5.6299218499864751e-05" d="-2.0922046239556399e-06" /> - <width sOffset="300.93339930030947" a="3.814746922234697" b="2.2916489974357266e-05" c="6.2358542571355535e-06" d="-3.4210514685647354e-06" /> - <width sOffset="301.04434618482179" a="3.8147495368342872" b="2.417385586115451e-05" c="-0.00029221749625194557" d="1.2080779054061348e-05" /> - <width sOffset="307.34044818801283" a="3.8063331321450264" b="-0.0022188095922143249" c="-6.3155102617190747e-05" d="1.1618675877107521e-05" /> - <width sOffset="317.34494898441977" a="3.7894482242338055" b="6.2609258192963466e-06" c="0.00028646074392141545" d="1.2204952218620716e-05" /> - <width sOffset="319.17408286412012" a="3.7904927885629398" b="0.0011767144814563209" c="0.00047239914886969606" d="7.6076172197592131e-06" /> - <width sOffset="321.07485605567678" a="3.7944884494584388" b="0.0030550193218203446" c="0.00035734560716880272" d="-1.5941167976462948e-05" /> - <width sOffset="327.34944978082677" a="3.8237883277773719" b="0.0056565798059804787" c="5.6024934372423181e-05" d="-1.618045614719573e-05" /> - <width sOffset="334.35710118291541" a="3.8606107781949182" b="0.004058056596962469" c="-0.00021069366349638785" d="-8.7713412789788603e-06" /> - <width sOffset="337.30478880166191" a="3.8705173211055013" b="0.0025872994608705001" c="-0.00070442184612604943" d="2.4564955235663471e-05" /> - <width sOffset="337.35395057723366" a="3.8706428177564987" b="0.0025182163151141741" c="-0.00070062771833896383" d="2.4523273354776425e-05" /> - <width sOffset="347.35845137364066" a="3.8502668617439633" b="-0.0041370388647141588" c="-1.5438109760868395e-06" d="3.7229653653707386e-05" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.8719265721601901" b="0.0062303496009517689" c="-0.0008438926530298593" d="0.00057380215538339451" /> - <width sOffset="0.79880698478288537" a="3.8766574116004691" b="0.0059805516354757152" c="7.6879455238325423e-05" d="2.1264035707139172e-05" /> - <width sOffset="3.9152578263392854" a="3.8966857960456376" b="0.0070792996247856345" c="0.00088046929285437328" d="-0.00019784267017614496" /> - <width sOffset="7.2054242958041073" a="3.9224626204086177" b="0.0064480240268326681" c="-0.0010716075480156414" d="-0.00019782761054385931" /> - <width sOffset="7.2660832584598438" a="3.9228497637126596" b="0.0063158350965139944" c="-0.00095208306504369704" d="1.2801463908296018e-05" /> - <width sOffset="10.26990395733182" a="3.9335777744790574" b="0.0009425819367060214" c="-0.0001008187958489027" d="-0.00037173236209984875" /> - <width sOffset="12.257306139341779" a="3.9321348371516414" b="-0.0038629221859175131" c="-0.0028918897367504587" d="0.00053046153835069744" /> - <width sOffset="14.467051560366258" a="3.9152014873844996" b="-0.0088729113803343619" c="0.0007901131950156016" d="0.00052399175242563093" /> - <width sOffset="15.920796471648856" a="3.9055822060856982" b="-0.0032534932499359869" c="0.002258254610867619" d="-0.00023070548895142299" /> - <width sOffset="17.209925092211051" a="3.9046466711167316" b="0.0014186725026480791" c="0.0014953261156989582" d="-0.00018136608937471371" /> - <width sOffset="21.863349983546129" a="3.9253529837243719" b="0.0035533465126115567" c="-2.4927896232442915e-05" d="-7.6637238834804654e-06" /> - <width sOffset="27.214425888617995" a="3.9424791678472411" b="0.0026282348670415038" c="-0.00012984011811237407" d="-5.8653320145798922e-06" /> - <width sOffset="32.527418967141074" a="3.9518981973250158" b="0.00075185763264605521" c="-0.00027238175770683974" d="1.3610328606347931e-05" /> - <width sOffset="37.218926685024968" a="3.9508357733910966" b="-0.00090520461646874471" c="-8.9109976546662657e-05" d="1.7012249304126922e-05" /> - <width sOffset="39.425779652884614" a="3.9485869810015921" b="-0.0010499506780919637" c="-0.00033235114266873305" d="6.2657874441178206e-05" /> - <width sOffset="45.361289472641204" a="3.9437485321297592" b="0.0016270651646993848" c="0.0022957166475680614" d="-0.00029269551193777162" /> - <width sOffset="47.223427481431941" a="3.9528489267165341" b="0.0071321316582500689" c="0.00065867787587814408" d="-0.00029805557011014982" /> - <width sOffset="49.118351066770231" a="3.9667008886455783" b="0.0064177040873714458" c="-0.0012782616458946365" d="-0.00029738143462761671" /> - <width sOffset="51.298254931008756" a="3.9715360586389865" b="-0.0033947235694357604" c="8.5656416112821264e-05" d="1.1234283759920215e-05" /> - <width sOffset="53.184981530675486" a="3.9655115099874831" b="-0.0029515297964788981" c="0.00020315371320758552" d="-8.8158311800891498e-06" /> - <width sOffset="57.227928277838885" a="3.9563166822832185" b="-0.0017411458560628165" c="0.00010894502507780769" d="-8.1637095519898307e-06" /> - <width sOffset="62.995837343333534" a="3.9483318342565861" b="-0.0012991657089420319" c="-0.0010902182143771332" d="0.00011864377347992446" /> - <width sOffset="67.232429074245829" a="3.9322816227473369" b="-0.0041482767822393248" c="0.00041352443643125026" d="0.00012117906862244555" /> - <width sOffset="68.838644515485726" a="3.9271876162131401" b="-0.001881958279650729" c="0.00065787581422243517" d="-5.4223112609066771e-05" /> - <width sOffset="70.351322026477845" a="3.9256584848689151" b="-0.00026386926241696697" c="0.00036990819861220129" d="-3.5964585916611192e-05" /> - <width sOffset="74.411218167651612" a="3.9282776216605479" b="0.00096132191788044809" c="0.001211907959057688" d="-0.00011191035857800239" /> - <width sOffset="77.236929870652773" a="3.9381457409157581" b="0.0051296329216842674" c="0.00024285945957765772" d="-0.00011437435476187122" /> - <width sOffset="82.669175520833448" a="3.9548433712974327" b="-0.0023571415643015743" c="0.00010976730016741922" d="1.2637546530014946e-05" /> - <width sOffset="87.181589250739535" a="3.9476031948245396" b="-0.0005945380900877963" c="-3.21266695699868e-05" d="2.1852328717948551e-06" /> - <width sOffset="87.241430667059774" a="3.9475675022460037" b="-0.0005983596250058571" c="-4.2735261616561588e-05" d="1.2353169030400395e-06" /> - <width sOffset="97.245931463466718" a="3.9385408246463407" b="-0.0010825208021843142" c="-1.1913644715690451e-05" d="1.251370602375061e-06" /> - <width sOffset="107.25043225987366" a="3.9277713683003266" b="-0.00094515175165791254" c="2.5914314432662951e-05" d="1.2593286213927346e-06" /> - <width sOffset="107.76660827651307" a="3.9272905813777412" b="-0.00091739245866763691" c="7.9281793687507944e-05" d="-7.1436181794638349e-06" /> - <width sOffset="117.25493305628066" a="3.9196214635215081" b="-0.001342273197771053" c="-0.00011157549636674611" d="-1.2232457942951132e-05" /> - <width sOffset="119.1651625281317" a="3.9165650124072027" b="-0.0019024506604355075" c="-0.00026241123997605942" d="2.1025052154424259e-05" /> - <width sOffset="123.14134830450507" a="3.9061734922168432" b="-0.0029920207529711145" c="0.00020266678654282875" d="1.2480388603876787e-05" /> - <width sOffset="127.25943385268761" a="3.8981606394913988" b="-0.0006878715987717306" c="0.00035582529588609941" d="1.2339497622815148e-05" /> - <width sOffset="127.79003360793678" a="3.8978976759666306" b="-0.00029984792683562063" c="0.00014583285457316937" d="-5.1058216559463338e-06" /> - <width sOffset="137.26393464909455" a="3.9038045215746595" b="0.0010885481196579185" c="2.2620757878850277e-08" d="-4.5531765885452708e-06" /> - <width sOffset="138.74577999052246" a="3.9054028154742197" b="0.0010586206688454199" c="7.0442493420818744e-05" d="6.3032129955076233e-06" /> - <width sOffset="142.49651777609978" a="3.9106970036314332" b="0.001853064755395816" c="4.1118401792341201e-05" d="-4.0864338536510366e-06" /> - <width sOffset="147.2684354455015" a="3.9200319501260275" b="0.0019663330253244541" c="-2.835490173677325e-05" d="-4.1946001246244637e-06" /> - <width sOffset="152.13329341853813" a="3.9284438612431662" b="0.0013926290567243054" c="-0.0025096227731777753" d="0.00024673357360079453" /> - <width sOffset="157.27293624190844" a="3.9028060933524267" b="-0.0048514110876526672" c="0.0012961837638597201" d="0.00024416885309523406" /> - <width sOffset="158.58359434852269" a="3.8992239100241179" b="-0.00019538573186631187" c="0.00015624483687979085" d="2.0697479563686458e-06" /> - <width sOffset="159.29580016025153" a="3.899164756062556" b="3.0320788857150956e-05" c="3.017057374587464e-05" d="5.5062144899741991e-06" /> - <width sOffset="167.27743703831544" a="3.9041286410463716" b="0.0015642873273456607" c="0.00016201700827034223" d="5.4951958680554918e-06" /> - <width sOffset="167.83968081185554" a="3.9050603450495833" b="0.001751684827549102" c="0.033176368846803153" d="-0.045195529879368049" /> - <width sOffset="168.32799738768279" a="3.9085641348682896" b="0.0018217868292563647" c="-0.00018499971490799184" d="5.7797785723491528e-06" /> - <width sOffset="174.57241011662035" a="3.9141337849168223" b="0.00018746502814471567" c="-8.8217342057913596e-05" d="-3.9037174422276053e-06" /> - <width sOffset="177.28193783472238" a="3.9139164222547387" b="-0.00037656753748513145" c="-0.00012192715524294705" d="-4.0571479049718574e-06" /> - <width sOffset="179.09373751945634" a="3.912809787352808" b="-0.00085833690176083562" c="-0.0005415213866206386" d="3.9065288641173699e-05" /> - <width sOffset="187.28338959709794" a="3.8909181588413593" b="-0.0018677066588682926" c="-4.5409005873969712e-05" d="4.1121521774624299e-06" /> - <width sOffset="187.28643863112933" a="3.8909124637181627" b="-0.001867983451386339" c="-4.5371679238302346e-05" d="4.1119487154289123e-06" /> - <width sOffset="192.97430998873125" a="3.8795764083962299" b="-0.0019850321795723555" c="0.00017184965865177108" d="3.9553402245764147e-06" /> - <width sOffset="197.29093942753633" a="3.8745280244370983" b="-0.0002803065874605196" c="0.0002216558448823577" d="4.0861897858131758e-06" /> - <width sOffset="200.85358962958122" a="3.8765275245291666" b="0.0014546494966772971" c="0.00027208729769958684" d="-1.4641281540835219e-05" /> - <width sOffset="207.29544022394327" a="3.893275173502694" b="0.0031374138711009634" c="-4.5038646070846112e-06" d="-1.5589559831079439e-05" /> - <width sOffset="210.29758096713061" a="3.9022317190253859" b="0.0026888523520616934" c="-2.2594392639292767e-05" d="-1.402556062607839e-05" /> - <width sOffset="212.13016492908224" a="3.9069970664395406" b="0.0024647312961836539" c="0.00023834686540430482" d="-2.1598118900414314e-05" /> - <width sOffset="217.29994102035022" a="3.9231251510761087" b="0.0031973992774452205" c="-7.4497419641446499e-05" d="-2.1286600176958499e-05" /> - <width sOffset="223.70668837825781" a="3.9349544065142554" b="-0.00037838867965773624" c="-0.00059741305384188384" d="2.1238497926361403e-05" /> - <width sOffset="227.30444181675716" a="3.9268492938614021" b="-0.0038523559096166771" c="-0.00036066162267441644" d="2.3270328046196672e-05" /> - <width sOffset="228.81850132587164" a="3.9202705921594028" b="-0.0047844491900441277" c="-0.00037230395259168017" d="7.1058787810340519e-05" /> - <width sOffset="232.49404454561193" a="3.9011838954470783" b="-0.0046413564992125594" c="0.00028120176500901341" d="2.3684772875039608e-05" /> - <width sOffset="236.81424446902247" a="3.888290461662216" b="-0.00088549395830909679" c="0.00017238935530716325" d="6.5022875538505528e-06" /> - <width sOffset="237.30894261316411" a="3.8878953848490116" b="-0.00071015872860580483" c="0.0001815707896069595" d="6.4712587556562902e-06" /> - <width sOffset="245.55595536116908" a="3.8980176778148201" b="0.0036050679265240714" c="0.00054634857336982676" d="-7.478030957563234e-05" /> - <width sOffset="247.31344340957111" a="3.9056351411598191" b="0.0048325338641600057" c="0.00015552252303764917" d="-7.8749175916528565e-05" /> - <width sOffset="249.11019886812772" a="3.9143633146537891" b="0.004628720725275674" c="-6.0888894104411186e-05" d="-8.6544965747023764e-05" /> - <width sOffset="250.3490520291495" a="3.9198396189927309" b="0.0040793794112955811" c="-0.0017587279616877278" d="0.00013540622298766598" /> - <width sOffset="257.31794420597805" a="3.9086828347348579" b="-0.00070519587914022984" c="0.0010972325169649206" d="0.0001242086656361015" /> - <width sOffset="258.32232389512831" a="3.9092072627651007" b="0.0018747773460619337" c="0.0013156232788289191" d="-0.00035580962786264291" /> - <width sOffset="261.1896220888126" a="3.9170114999418697" b="0.0006435871649833314" c="-0.0064730403257551479" d="0.00087336517112577389" /> - <width sOffset="265.5961766504177" a="3.8688855119401837" b="-0.0055277343989887789" c="-0.0022566615872524551" d="0.0029599899524029951" /> - <width sOffset="265.85456455999685" a="3.8673576108021677" b="-0.0061010574628335146" c="0.00032609980982719851" d="0.0029699876256765569" /> - <width sOffset="266.75376464753771" a="3.8642945640042319" b="0.0016896471812104573" c="0.0050251219763384368" d="-0.00075951476734138637" /> - <width sOffset="267.322445002385" a="3.8667408621269503" b="0.006668148298527023" c="0.0037298377457165009" d="-0.00075932425595073296" /> - <width sOffset="271.18749066910812" a="3.9043899507268267" b="0.0014704608440763833" c="-0.00026385965361586079" d="7.2994781098134509e-06" /> - <width sOffset="277.326945798792" a="3.9051613419920721" b="-0.00094403246498105109" c="-0.00013005308079348611" d="7.5255163796966198e-06" /> - <width sOffset="283.58749415784433" a="3.8960004226128269" b="-0.0016875638859617107" c="-0.00045952013985640298" d="3.8933344006486452e-05" /> - <width sOffset="287.33144659519894" a="3.8852842956911147" b="-0.0034911999255457841" c="-3.2032953707739315e-05" d="3.861559935157512e-05" /> - <width sOffset="293.38897204565836" a="3.8715440444014497" b="0.00037155696826840951" c="0.0047290048175385214" d="-0.0016701318822477009" /> - <width sOffset="295.28646953323471" a="3.877865609219679" b="0.00027819341955421606" c="-0.006362055577311264" d="0.0011076902834728725" /> - <width sOffset="297.33594739160588" a="3.8612484402363831" b="-0.011841498470308203" c="0.00042168922807863952" d="0.0011085946444090923" /> - <width sOffset="299.10741015787829" a="3.8477576305486951" b="8.9092212953644797e-05" c="0.0085753743024289536" d="-0.0010396169133884538" /> - <width sOffset="300.93339930030947" a="3.8701831584547106" b="0.021007187447282395" c="0.0027952718246075352" d="-0.0010382880663901207" /> - <width sOffset="304.3336034653247" a="3.9331128817128103" b="0.0040040225409782877" c="-0.00026625931079122037" d="2.0231344666969078e-06" /> - <width sOffset="307.34044818801283" a="3.9428000740361271" b="0.0024576959091919103" c="-0.00024794712105165361" d="1.2483541139034213e-06" /> - <width sOffset="317.34494898441977" a="3.943821098847835" b="-0.0021286350055662127" c="-0.00021042576348667848" d="1.3528364242352731e-06" /> - <width sOffset="318.20754027474834" a="3.9418292549337952" b="-0.0024886380776899682" c="-0.0094849660206802675" d="0.0010838363075347695" /> - <width sOffset="319.17408286412012" a="3.9315416299522807" b="-0.017786310795273687" c="-0.0064612090973998372" d="0.001088433642533648" /> - <width sOffset="324.02826576103024" a="3.8174521195188889" b="-0.0035735073354887493" c="0.024034059438100559" d="-0.0043283473680630607" /> - <width sOffset="327.34944978082677" a="3.9121231864036674" b="0.012841127653364169" c="-0.019091700788643265" d="-0.00432836378214936" /> - <width sOffset="327.70652549093751" a="3.9140771280414697" b="-0.0024488764960609553" c="-0.00025348234339196034" d="5.6075101471754135e-06" /> - <width sOffset="330.23255154955285" a="3.9063641624555552" b="-0.0036221411747611749" c="-0.0035394872992636096" d="0.00036419906587850507" /> - <width sOffset="334.35710118291541" a="3.8567655844690916" b="-0.014232558419010395" c="0.00089354168090685247" d="0.00035678995101027746" /> - <width sOffset="336.92010080790209" a="3.8321641968994675" b="-0.002621040107359173" c="0.0047817021209203324" d="-0.00045477321624652622" /> - <width sOffset="337.35395057723366" a="3.8318899605831214" b="0.0012712407020215367" c="0.0041896211986033596" d="-0.00045473153514892338" /> - <width sOffset="342.83760992686683" a="3.8898614661613107" b="0.0061981106364681609" c="-0.0010270633786874112" d="6.5981483998718427e-05" /> - <width sOffset="347.35845137364066" a="3.9029875032734953" b="0.00095731942688831494" c="-0.00017739252058061847" d="7.7403549360656376e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid broken"> - <type name="solid broken"> - <line length="6" space="12" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="3.9152578263392854" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.9419527193489134" b="-0.053890238764222984" c="0.0058709625673046021" d="0.00031566259810265299" /> - <width sOffset="0.79880698478288537" a="3.9028119352498885" b="-0.043906441049071016" c="0.0070817224324448086" d="0.00086820071777890518" /> - <width sOffset="2.6796707280038561" a="3.8510594103843747" b="-0.0080527644296424384" c="-0.0028375227677034671" d="0.00021001349480379684" /> - <width sOffset="3.9152578263392854" a="3.8371736990883809" b="-0.014102910118229943" c="-0.0026638377454288593" d="0.00042912020068717983" /> - <width sOffset="7.2054242958041073" a="3.7772200562677449" b="-0.017695919314992831" c="0.0017600634302251611" d="0.00040572118710048273" /> - <width sOffset="7.2660832584598438" a="3.7761532068844521" b="-0.017477913506050019" c="0.0016783707733431465" d="0.00019509211264841475" /> - <width sOffset="9.6720084176481009" a="3.7465348413428279" b="-0.0060139866055640648" c="0.0010734266264089683" d="-1.9490228127279347e-05" /> - <width sOffset="10.26990395733182" a="3.7433186673878649" b="-0.0047512946675968403" c="0.00030256290261236813" d="0.00036504359788164069" /> - <width sOffset="12.257306139341779" a="3.7379364977223597" b="0.00077684562177597269" c="0.0030537540497072991" d="-0.00053715030256891222" /> - <width sOffset="15.920796471648856" a="3.7553566255845969" b="0.001524099753937088" c="-0.0020326711565884985" d="0.00021754693880888425" /> - <width sOffset="17.209925092211051" a="3.7544094462404058" b="-0.0026320565364860334" c="-0.0012616620912064107" d="0.00017039249283271534" /> - <width sOffset="21.863349983546129" a="3.7320108119396886" b="-0.0033049333069105698" c="0.00010539749883704043" d="-3.3098726585198669e-06" /> - <width sOffset="27.214425888617995" a="3.7168366684546927" b="-0.0024612780875401929" c="5.8199874107068577e-05" d="-4.0399596005023238e-06" /> - <width sOffset="37.218926685024968" a="3.6939926204063633" b="-0.0025098358216346143" c="-5.4684035771555281e-05" d="-7.4499682973810135e-06" /> - <width sOffset="37.756056705080169" a="3.6926275809266405" b="-0.0025750288371753269" c="0.000137836932432272" d="-1.1044661033671123e-05" /> - <width sOffset="39.425779652884614" a="3.688660867566691" b="-0.0022071065662403596" c="0.00043838412521835613" d="-5.6690286170781653e-05" /> - <width sOffset="45.361289472641204" a="3.6791504728271569" b="-0.0029946834305997656" c="-0.0020834216286797691" d="0.00029866310020794384" /> - <width sOffset="47.223427481431941" a="3.6682780627133829" b="-0.0076470258019621625" c="-0.00041266685223396624" d="0.00030287756035495396" /> - <width sOffset="51.298254931008756" a="3.6507582330749928" b="0.0040770175582008714" c="-1.8852339348285713e-05" d="-5.7381580327031608e-06" /> - <width sOffset="57.227928277838885" a="3.673074379759794" b="0.0032481625585406727" c="-0.00011915568880695209" d="-6.4127634232565957e-06" /> - <width sOffset="62.995837343333534" a="3.6866147689178392" b="0.0012335698530554552" c="0.00082778023880297638" d="-0.00013322024646236313" /> - <width sOffset="63.574548630499578" a="3.6875800589167316" b="0.0020578123071468518" c="0.00088185152949108142" d="-0.00012689044643143251" /> - <width sOffset="67.232429074245829" a="3.7006961729904457" b="0.0034158107059561798" c="-0.00050974770857648596" d="-0.00012860212313717834" /> - <width sOffset="68.838644515485726" a="3.7043346715384677" b="0.00078292875277805333" c="-0.00078986816071577749" d="4.6800058094324306e-05" /> - <width sOffset="74.411218167651612" a="3.6922680404704433" b="-0.0036603406112131706" c="-0.0012875150599375785" d="0.00012274583075571195" /> - <width sOffset="77.236929870652773" a="3.6744140497997417" b="-0.0079963871054166986" c="-0.00023910789367665309" d="0.00012527284023668256" /> - <width sOffset="82.669175520833448" a="3.6440012585784567" b="0.00049596603264934246" c="7.1594016675839237e-05" d="-1.7390610552147405e-06" /> - <width sOffset="87.241430667059774" a="3.6475994229910818" b="0.0010415903430214576" c="4.6102376050662655e-05" d="-8.605305892383762e-07" /> - <width sOffset="97.245931463466718" a="3.6617727098603376" b="0.0017056612454049601" c="1.3992246821536907e-05" d="-7.9070341079832685e-07" /> - <width sOffset="107.25043225987366" a="3.6794457121091613" b="0.0017482075353483365" c="-3.407391111901753e-05" d="3.0875574334985284e-06" /> - <width sOffset="107.76660827651307" a="3.6803394409650627" b="0.0017154991888372411" c="-8.0710115387383166e-05" d="1.1490504234168928e-05" /> - <width sOffset="109.88941357465751" a="3.6837273257426313" b="0.0015281745258650347" c="-2.4437350014736463e-05" d="7.4142154367886679e-06" /> - <width sOffset="117.25493305628066" a="3.6966199932060482" b="0.0023748700449862216" c="0.0001369136332779104" d="1.13922242270847e-05" /> - <width sOffset="119.1651625281317" a="3.7017355427694447" b="0.0030226528398379507" c="0.00028293425926540508" d="-2.1865285870290952e-05" /> - <width sOffset="127.25943385268761" a="3.7331433113591039" b="0.003305287385829918" c="-0.00020504778229686463" d="-2.784824311967638e-05" /> - <width sOffset="127.79003360793678" a="3.7348352076303435" b="0.0030641699223213394" c="-1.9742150694913039e-05" d="-1.0402923854996769e-05" /> - <width sOffset="130.11431829426465" a="3.7417199337287892" b="0.0028037980403668142" c="-0.00024437670653152749" d="5.975236953192504e-07" /> - <width sOffset="137.26393464909455" a="3.7494925817355309" b="-0.0005989704738125377" c="-0.00022977817237093256" d="7.6691788782595326e-07" /> - <width sOffset="142.49651777609978" a="3.7401769841355232" b="-0.0029406427837510773" c="-0.00011749009848510018" d="1.115656473699967e-05" /> - <width sOffset="147.2684354455015" a="3.7246813863496531" b="-0.0032998038956036451" c="3.4251800677243e-05" d="1.3969348650950658e-05" /> - <width sOffset="150.53983825652773" a="3.7147420421047146" b="-0.0026271979140159449" c="9.5583088683603521e-05" d="4.5955789030110071e-06" /> - <width sOffset="152.13329341853813" a="3.7108170084266421" b="-0.002287577287626207" c="0.0025376011053218663" d="-0.00024633259482198777" /> - <width sOffset="157.27293624190844" a="3.7326485759443546" b="0.0042758368048523357" c="-0.0012641914800530134" d="-0.00024440129745112812" /> - <width sOffset="158.58359434852269" a="3.7355308119633923" b="-0.00029752455464186018" c="-0.00012516651831128789" d="-2.3021923122463877e-06" /> - <width sOffset="167.64869794113446" a="3.7208330409632779" b="-0.0031343750430089553" c="-0.00017872583249786271" d="1.1664159175232086e-06" /> - <width sOffset="167.83968081185554" a="3.72022791821722" b="-0.0032025145549740997" c="-0.033183140455664686" d="0.045202191491171197" /> - <width sOffset="168.32799738768279" a="3.7160148251649447" b="-0.0032744644888643183" c="0.00018798703244202715" d="8.8183323080194138e-07" /> - <width sOffset="177.28193783472238" a="3.7023999957558487" b="0.00030408267560812826" c="0.00021016459456257657" d="8.0440949035249423e-07" /> - <width sOffset="179.09373751945634" a="3.7036456069355936" b="0.0010735566754061206" c="0.00061207889463791155" d="-4.2318027055794641e-05" /> - <width sOffset="187.28338959709794" a="3.7302454561522183" b="0.0025841219058258874" c="3.6050137452315794e-05" d="-7.4251006978174662e-06" /> - <width sOffset="187.28643863112933" a="3.7302533355627845" b="0.0025843415365398217" c="3.5004674339600915e-05" d="-7.2950177798965088e-06" /> - <width sOffset="197.29093942753633" a="3.7523071294137895" b="0.0010942743404693004" c="-0.00018436028190795849" d="-7.4132548589802511e-06" /> - <width sOffset="200.85358962958122" a="3.7535304386873962" b="-0.00050162573912372176" c="-0.00027035124189038462" d="1.1314216467653138e-05" /> - <width sOffset="203.9137529138377" a="3.7497878847588577" b="-0.0018384043159645333" c="0.00052731491732997758" d="-0.00010638480509081924" /> - <width sOffset="207.29544022394327" a="3.7454871005925754" b="-0.00192176494200924" c="-0.00054438920722066212" d="-0.00010895209519513576" /> - <width sOffset="210.10340084941328" a="3.7333863718474212" b="-0.0075561569426466782" c="-0.0042830912143382973" d="0.00077006465463802119" /> - <width sOffset="212.13016492908224" a="3.7068890220130601" b="-0.015428036243311632" c="6.1076618365814848e-05" d="0.0007776372129125864" /> - <width sOffset="214.80366389701351" a="3.6809386754984361" b="0.0015732519130077743" c="-9.2182916843520381e-06" d="3.7121259137929532e-06" /> - <width sOffset="217.29994102035022" a="3.6848662486322232" b="0.0015966243101394626" c="5.9141295144379838e-05" d="1.3578537996193625e-05" /> - <width sOffset="223.70668837825781" a="3.7010937574742235" b="0.0040264817659149453" c="0.00043390610831096525" d="-2.8946560108232693e-05" /> - <width sOffset="224.64145473040736" a="3.7052130759592976" b="0.0047618039438508293" c="-2.6306870664211275e-05" d="-1.7600417816919908e-05" /> - <width sOffset="227.30444181675716" a="3.7173747668062029" b="0.0042472541295589007" c="-0.00015826235244743866" d="-1.4174347647344523e-05" /> - <width sOffset="236.81424446902247" a="3.7312622566212399" b="-0.0026084619936619399" c="-0.00014686682740367259" d="3.0081376550858832e-06" /> - <width sOffset="237.30894261316411" a="3.7299362773274916" b="-0.002751562976787613" c="-0.00015307358101899541" d="3.2053476446914873e-06" /> - <width sOffset="245.55595536116908" a="3.6986309737129459" b="-0.0046223444883366641" c="-0.0002784420757568408" d="8.4456915976393644e-05" /> - <width sOffset="246.36753096248435" a="3.6947413407522198" b="-0.0049074141794753275" c="-0.00057425320498336908" d="9.0915256093209118e-05" /> - <width sOffset="247.31344340957111" a="3.6896624899634092" b="-0.0057497613145334097" c="-0.00031927373450818032" d="9.4653219957175375e-05" /> - <width sOffset="250.3490520291495" a="3.6719141072097345" b="-0.0050714760542174032" c="0.0019189062110350741" d="-0.00012729796877776489" /> - <width sOffset="257.31794420597805" a="3.6866804248954148" b="0.0031269723758105246" c="-0.00074843930604365162" d="-0.00011872674141853112" /> - <width sOffset="258.32232389512831" a="3.6889457893706399" b="0.0012642309269883284" c="-0.00095031226788274683" d="0.00036129155207991517" /> - <width sOffset="259.93779150931817" a="3.6900312344428761" b="0.0010224598325987789" c="0.00042500425928281417" d="0.00034200546043673788" /> - <width sOffset="261.1896220888126" a="3.6926481149265369" b="0.0036943760343427778" c="0.0064374296352551234" d="-0.00088716933855172164" /> - <width sOffset="265.5961766504177" a="3.7580169388004929" b="0.008747720194693694" c="0.0020385644459286617" d="-0.0029737941198234993" /> - <width sOffset="266.75376464753771" a="3.7662620030316645" b="0.0015126143451424138" c="-0.0049759034586015424" d="0.00075570827318712788" /> - <width sOffset="267.322445002385" a="3.7656519852168091" b="-0.003413600594235921" c="-0.0036833333008390629" d="0.00075582295095115871" /> - <width sOffset="271.18749066910812" a="3.7410744230458688" b="0.0019866569129532402" c="0.00026976598734385597" d="-1.0800783109386516e-05" /> - <width sOffset="277.326945798792" a="3.7609402272957921" b="0.0040777504485876581" c="7.0163077206149255e-05" d="-1.0777169141506494e-05" /> - <width sOffset="283.58749415784433" a="3.7865746961506299" b="0.0036890529637338362" c="0.00033855874818279993" d="-4.2184996768321956e-05" /> - <width sOffset="287.33144659519894" a="3.802918119786959" b="0.0044502046042052788" c="-0.00017345784604633305" d="-1.2475772742605393e-05" /> - <width sOffset="288.35160747404967" a="3.8072642762965576" b="0.0040573431206451117" c="-0.00040856650445788266" d="-2.94376748205322e-05" /> - <width sOffset="293.38897204565836" a="3.8135723788271378" b="-0.0022998004383672456" c="-0.0049127242487677298" d="0.0016793098067787353" /> - <width sOffset="295.28646953323471" a="3.802993198630074" b="-0.0028045159466224155" c="0.0062305814122983845" d="-0.0010985123589416618" /> - <width sOffset="297.33594739160588" a="3.8139594953391764" b="0.0088919209102172499" c="-0.00050794303897152421" d="-0.00109957661133691" /> - <width sOffset="299.10741015787829" a="3.8220046979932909" b="-0.0032593626652770379" c="-0.0086137027838847444" d="0.0010486349464606459" /> - <width sOffset="304.3336034653247" a="3.7193895890188098" b="-0.0073687119318964489" c="0.00029776094547929809" d="8.3237456038492928e-06" /> - <width sOffset="307.34044818801283" a="3.7001513903738754" b="-0.0053523022484622297" c="0.0003835764738479271" d="6.0091970731531265e-06" /> - <width sOffset="310.73306422780848" a="3.6866426391477107" b="-0.0025421520978283789" c="0.00024072429296790289" d="-8.9072806233533944e-07" /> - <width sOffset="317.34494898441977" a="3.6801005045442614" b="0.00052431053897342584" c="0.00023144799631625378" d="2.9274943876626428e-07" /> - <width sOffset="318.20754027474834" a="3.6807251702022992" b="0.00092425406326548552" c="0.0095102466576086273" d="-0.001082190721670806" /> - <width sOffset="324.02826576103024" a="3.7949001724483002" b="0.0016407153547271102" c="-0.02403205930580778" d="0.0043345902889259189" /> - <width sOffset="327.34944978082677" a="3.6940607099640759" b="-0.014554050836798518" c="0.019156357185850743" d="0.0043340842343396217" /> - <width sOffset="327.70652549093751" a="3.6915036293950125" b="0.00078431589604246966" c="0.00032426664418336391" d="1.1294204308561497e-07" /> - <width sOffset="330.23255154955285" a="3.6955557352796666" b="0.0024246898666932951" c="0.0036536216339553983" d="-0.00035847861368847723" /> - <width sOffset="331.85513429042675" a="3.7075777750454733" b="0.011449916347910614" c="0.0026108850139169339" d="-0.00039194650176701596" /> - <width sOffset="336.92010080790209" a="3.7816225748571655" b="0.0077331542855074726" c="-0.0044895056184696136" d="0.00041961666548806016" /> - <width sOffset="337.35395057723366" a="3.784166828657332" b="0.0040745601555769295" c="-0.0039494466747840322" d="0.00042045121378233154" /> - <width sOffset="342.83760992686683" a="3.7570793421421502" b="-0.0013107204863723899" c="0.00070329308819546343" d="-0.00010026180536530238" /> - <width sOffset="347.35845137364066" a="3.756263802857545" b="-0.0010992219577140973" c="-0.00068486672650214632" d="-8.638663845855486e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="349.03200235686808" space="0" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <predecessor id="-6" /> - <successor id="-6" /> - </link> - <width sOffset="0" a="2.49401868001355" b="0.0024815034748816231" c="-0.0011027218015098711" d="7.0409426257166618e-05" /> - <width sOffset="2.6796707280038561" a="2.4941048489728077" b="-0.0019116059743914345" c="0.00070568085786182995" d="-6.1585227453725546e-05" /> - <width sOffset="7.2054242958041073" a="2.4941986028079173" b="0.00069162117774335553" c="-8.3665845876839512e-05" d="-6.1633286126926417e-05" /> - <width sOffset="9.6720084176481009" a="2.4944706007430435" b="-0.00084605413845063957" c="0.0014733383127653571" d="0.00015294905464006679" /> - <width sOffset="9.9210302876818162" a="2.4943536411431362" b="-8.381323410270935e-05" c="-6.0680583221608454e-06" d="-4.4479534838951406e-07" /> - <width sOffset="17.209925092211051" a="2.4932481071014161" b="-0.00024316535674809704" c="4.9667115042705597e-06" d="5.4461747714212537e-07" /> - <width sOffset="27.214425888617995" a="2.4918578306022381" b="1.9745930635456117e-05" c="2.9835006858653763e-05" d="8.2793495001490364e-07" /> - <width sOffset="37.218926685024968" a="2.4958706190603133" b="0.00086531874771040998" c="5.0176452092469908e-05" d="1.9473493122131225e-06" /> - <width sOffset="37.756056705080169" a="2.4963501858517239" b="0.00092090678656320127" c="-0.00015121138164879292" d="5.5420420485598656e-06" /> - <width sOffset="47.223427481431941" a="2.496218323820548" b="-0.00045202351304087646" c="1.6634119098590138e-05" d="3.1887270420674316e-06" /> - <width sOffset="52.203225962351439" a="2.4947736163271612" b="-4.9128472782448453e-05" c="-9.5432610343919519e-05" d="6.1268852647396203e-06" /> - <width sOffset="57.227928277838885" a="2.4928945807689216" b="-0.00054410133072356395" c="1.3802172069574315e-05" d="9.6316274191019699e-06" /> - <width sOffset="63.574548630499578" a="2.4924595441749062" b="0.00079496696916738743" c="-8.8172451709918136e-05" d="3.3018273954012182e-06" /> - <width sOffset="67.232429074245829" a="2.494349283592908" b="0.00028245463220614823" c="-5.6798420175527422e-05" d="4.2021284080392808e-06" /> - <width sOffset="72.291715410634907" a="2.4948686417439383" b="3.0413494316585462e-05" c="-2.1683706827947886e-05" d="2.3896115154746602e-06" /> - <width sOffset="77.236929870652773" a="2.4947777546976946" b="-8.7327709080177712e-06" c="-2.8815198065549653e-06" d="1.7162398208878159e-07" /> - <width sOffset="87.241430667059774" a="2.4945738320822635" b="-1.4855553575248933e-05" c="-1.7659259766135734e-06" d="1.4874730602949509e-07" /> - <width sOffset="97.245931463466718" a="2.4943974063306342" b="-5.5255995244158013e-06" c="-1.4155167470409457e-06" d="1.7685594698490521e-07" /> - <width sOffset="107.25043225987366" a="2.4943775411956235" b="1.9255878029680109e-05" c="1.5093272870833397e-05" d="-4.0757337063601185e-06" /> - <width sOffset="109.88941357465751" a="2.4944585643273829" b="1.3764660521667044e-05" c="-2.7053798664882188e-07" d="5.5509119805142383e-10" /> - <width sOffset="117.25493305628066" a="2.4945454930861235" b="9.8696974526907988e-06" c="1.0055770694920024e-05" d="-1.3847073896392838e-06" /> - <width sOffset="124.3330672095953" a="2.4946281088884499" b="-5.5899564984963912e-05" c="-1.0684117459715241e-05" d="-1.2750371268238903e-05" /> - <width sOffset="127.25943385268761" a="2.4940535034351621" b="-0.00044599892423932089" c="-9.4140943933114578e-05" d="7.4962563115855134e-06" /> - <width sOffset="130.11431829426465" a="2.492187370495472" b="-0.00080023027738681206" c="0.00012215837861625513" d="-3.504191238972811e-06" /> - <width sOffset="137.26393464909455" a="2.4914297361713791" b="0.00040916942779448302" c="4.6968264338932716e-05" d="-3.4628601820856699e-06" /> - <width sOffset="147.2684354455015" a="2.4967567893394245" b="0.00030916410097474442" c="-4.8736517981516026e-05" d="-6.2150647796016012e-06" /> - <width sOffset="150.53983825652773" a="2.4970290133053199" b="-0.00020925175628663936" c="-3.3965647824109777e-05" d="3.1587049679224297e-06" /> - <width sOffset="157.27293624190844" a="2.4950444519429382" b="-0.00023704386707789401" c="3.6934835012140869e-05" d="1.0451468209206028e-06" /> - <width sOffset="160.00169833699061" a="2.4946938737495872" b="-1.212417482779728e-05" c="-4.2196324733667081e-05" d="2.5394112287795319e-06" /> - <width sOffset="167.27743703831544" a="2.4933499983479424" b="-0.00022286137569140505" c="1.5132463391303631e-05" d="3.4162802856078734e-06" /> - <width sOffset="167.64869794113446" a="2.4932695192303234" b="-0.00021021254618553298" c="9.8879360802669655e-06" d="-5.2327970542577689e-08" /> - <width sOffset="177.28193783472238" a="2.4921153059891124" b="-3.4274824371940439e-05" c="7.5504037575137718e-06" d="-9.9535508759202527e-08" /> - <width sOffset="187.28643863112933" a="2.4924284537007146" b="8.6913678418325951e-05" c="4.2423929224609907e-06" d="-7.6694101615980075e-08" /> - <width sOffset="197.29093942753633" a="2.4936458052232027" b="0.00014877077894416731" c="1.3433855175827087e-06" d="-7.2070984312973068e-08" /> - <width sOffset="203.9137529138377" a="2.4946690737350785" b="0.00015708130369196729" c="6.6153087098104989e-06" d="-1.1461962387994076e-05" /> - <width sOffset="207.29544022394327" a="2.4948326641973377" b="-0.00019140732535689268" c="-0.00010687240248680006" d="-1.0634651489685516e-05" /> - <width sOffset="210.10340084941328" a="2.4932171005342854" b="-0.0010431456088850662" c="0.0026244449765749373" d="-0.00088965140132328112" /> - <width sOffset="211.84600025998702" a="2.4946611026176813" b="-1.120075320767272e-06" c="0.0028503075027965278" d="-0.00086691946583861493" /> - <width sOffset="214.80366389701351" a="2.4971618517420024" b="-0.0058914655482542001" c="0.0014654707302631405" d="-9.2994378839974485e-05" /> - <width sOffset="217.29994102035022" a="2.4901404991549425" b="-0.00031347880136395296" c="0.00077232374256150274" d="-0.00010522807847177071" /> - <width sOffset="222.02348293085191" a="2.4948016518339537" b="-6.0770401926511092e-05" c="-0.00026116435370321123" d="7.4470292453056723e-06" /> - <width sOffset="224.64145473040736" a="2.4929862165613548" b="-0.0012750914094094806" c="0.0001763621517400249" d="-3.8991130450058541e-06" /> - <width sOffset="227.30444181675716" a="2.4907677037554699" b="-0.00041874282727515739" c="0.00014620281462618458" d="-6.0223266591454069e-06" /> - <width sOffset="237.30894261316411" a="2.4951813739134225" b="0.00069830484375279708" c="-3.6709984182813863e-05" d="-6.1101616105401426e-06" /> - <width sOffset="246.36753096248435" a="2.4939528157994824" b="-0.0014709397700497315" c="0.00029868234582249215" d="-1.2568501729088171e-05" /> - <width sOffset="247.31344340957111" a="2.492818044277227" b="-0.0009396220870308827" c="0.00026648064579069477" d="-1.3765130615241087e-05" /> - <width sOffset="257.31794420597805" a="2.4963059266421821" b="0.00025913231492421781" c="-0.00014732707340748278" d="-1.1389341692831689e-05" /> - <width sOffset="259.93779150931817" a="2.4957688212527929" b="-0.00074733221029484422" c="0.00013880579606183704" d="7.8967499507064385e-06" /> - <width sOffset="262.1771284153586" a="2.4948800284550723" b="-6.8684941314597512e-06" c="1.9997963997322999e-06" d="-2.4948005512917599e-07" /> - <width sOffset="267.322445002385" a="2.4948636472382457" b="-6.1037395412677758e-06" c="4.9711865788564674e-08" d="2.546977058478333e-09" /> - <width sOffset="277.326945798792" a="2.4948101084512251" b="-4.344273661420657e-06" c="-2.9629221242771537e-07" d="8.3728042721038504e-08" /> - <width sOffset="287.33144659519894" a="2.494820831410129" b="1.4868243465018132e-05" c="4.1929325837954557e-06" d="-1.0886802952035128e-05" /> - <width sOffset="288.35160747404967" a="2.4948288044838138" b="-1.0567434091294983e-05" c="0.00016780083372460708" d="6.0750991302079386e-06" /> - <width sOffset="288.84940076674548" a="2.4948658742014524" b="0.00016100902019131497" c="-2.5986576603598504e-05" d="1.0636462883309456e-06" /> - <width sOffset="297.33594739160588" a="2.4950108082875655" b="-5.0247448466793441e-05" c="-9.7875052236780921e-06" d="1.9842736829235834e-06" /> - <width sOffset="302.78761675585179" a="2.4947674910690614" b="1.9958068512580633e-05" c="6.7567492643718204e-05" d="-9.3184427329438844e-06" /> - <width sOffset="307.34044818801283" a="2.4953795110713211" b="5.5739173060493198e-05" c="-6.8697856020375376e-05" d="-7.7853236470299771e-06" /> - <width sOffset="310.73306422780848" a="2.4944739060512333" b="-0.0006792152959151131" c="5.6077178349824545e-05" d="-8.853985115379047e-07" /> - <width sOffset="317.34494898441977" a="2.4921786137985498" b="-5.3784567867663996e-05" c="3.5725365655032302e-05" d="-1.3356443535804141e-06" /> - <width sOffset="327.34944978082677" a="2.4938788305832444" b="0.00025999025538628534" c="-4.1924364286739785e-06" d="-1.5081760299395781e-06" /> - <width sOffset="331.85513429042675" a="2.4948271991656039" b="0.0001303573461042735" c="-1.4754309123021412e-05" d="3.6818705237104973e-07" /> - <width sOffset="337.35395057723366" a="2.4951591020833668" b="1.4934697223616816e-06" c="-1.072112064349901e-05" d="6.5010960809026581e-07" /> - <width sOffset="347.35845137364066" a="2.4947519539557668" b="-1.7816967715513117e-05" c="-1.5181410831321398e-05" d="8.8894123605765397e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="531.91209319279619"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4947212834433881" b="-1.2401885027296666e-05" c="0.0002171930010152143" d="-2.532117799964179e-05" /> - <width sOffset="7.6530499067869187" a="2.4959974030317218" b="-0.0011371454877154034" c="0.00024575298201298939" d="3.3871925170662642e-07" /> - <width sOffset="8.3309498131795863" a="2.4953395730934291" b="-0.00080348666716984353" c="0.00018019640845248061" d="1.6204860156729832e-05" /> - <width sOffset="10.162733229833066" a="2.4945719979709775" b="1.9797763670673736e-05" c="-0.00012398138863050289" d="1.0354528761435393e-05" /> - <width sOffset="18.335450609586474" a="2.4921050318219802" b="6.8107793225119246e-05" c="0.00012882986773207978" d="7.1045609878781197e-06" /> - <width sOffset="21.530601475620642" a="2.4938696147299959" b="0.0011089606762686593" c="-0.00069595355402583977" d="0.00014928266888834715" /> - <width sOffset="23.036201014422659" a="2.4944711495550393" b="2.8501260402622429e-05" c="-0.00079961624571850561" d="0.0001463897053094986" /> - <width sOffset="27.010880102338206" a="2.4911441788683764" b="0.00061009144688869987" c="0.00021665033441388263" d="-6.0220757527471011e-05" /> - <width sOffset="28.339951405993475" a="2.4921963506653455" b="0.00086685157773520112" c="4.4473705500463936e-05" d="-9.4522373681965488e-06" /> - <width sOffset="38.034674172300811" a="2.496167486039627" b="-0.00093600865052993363" c="0.00013470916885336689" d="-3.2115791282570097e-06" /> - <width sOffset="38.344452202400475" a="2.4958903626718376" b="-0.00085347334140158668" c="0.00010333272061632779" d="-3.6536012092096632e-06" /> - <width sOffset="48.348952998807363" a="2.4940358270292409" b="0.00011704399829152675" c="-2.2060837199360146e-05" d="5.6256164237539812e-07" /> - <width sOffset="50.828351345026022" a="2.494198983082569" b="1.8023693346270629e-05" c="-0.00038580898313517068" d="-8.7434916995869209e-06" /> - <width sOffset="51.301396252178051" a="2.4941202505169207" b="-0.00035285588820661997" c="-6.3371465493037874e-05" d="6.8220066823027554e-06" /> - <width sOffset="58.353453795214364" a="2.4908728740830863" b="-0.00022884813565996173" c="7.7540486952975697e-05" d="6.4744070301602761e-06" /> - <width sOffset="65.477276929407708" a="2.4955183571152908" b="0.0018616275450200927" c="-0.00058555369175330974" d="3.748936552572688e-05" /> - <width sOffset="68.357954591621365" a="2.4969181770526072" b="-0.00057866090222119916" c="-0.00026462586243935333" d="5.5839060156609747e-05" /> - <width sOffset="72.49851754379165" a="2.493949221616556" b="0.00010189737129218199" c="-0.00032718006304572461" d="5.0701075994505923e-05" /> - <width sOffset="77.232540394249554" a="2.4924782655099404" b="0.00041292281842704968" c="0.00020598446922184439" d="-0.00013248944091478237" /> - <width sOffset="78.362455388028252" a="2.4930166897143859" b="0.00037096175401909624" c="-8.5571223558391496e-05" d="6.1847659527067709e-06" /> - <width sOffset="85.756996060397114" a="2.4935814855584928" b="0.00011997672068830671" c="-0.00012658505896734982" d="3.1772388795461619e-05" /> - <width sOffset="88.366956184435253" a="2.4935972101525925" b="0.00010850303706415494" c="0.00011014490696426227" d="-4.2683718027097799e-05" /> - <width sOffset="90.235246136381875" a="2.4939060344251054" b="7.3104789146387177e-05" c="2.2256334929711378e-05" d="-1.1017324668225353e-06" /> - <width sOffset="98.37145698084214" a="2.49538076020922" b="0.00021647204044790858" c="-1.0826828108452384e-05" d="-7.5522601070214468e-07" /> - <width sOffset="108.24983353540233" a="2.4957346416567452" b="-0.00021852105579087919" c="3.250247960136218e-05" d="1.1206992330143447e-07" /> - <width sOffset="108.37595777724914" a="2.4957075981065877" b="-0.00021031700637601084" c="8.4397323550083479e-07" d="2.5442075942417343e-07" /> - <width sOffset="118.38045857365614" a="2.4939427192033614" b="-0.00011703499551046762" c="-4.2205933377607903e-07" d="2.7509907185936939e-07" /> - <width sOffset="128.38495937006303" a="2.4930050692521197" b="-4.2875953221466602e-05" c="-1.1417485286624565e-05" d="1.5658692618104469e-06" /> - <width sOffset="136.31459844543713" a="2.4927279131256919" b="7.1432677924171731e-05" c="0.00029059556194519881" d="2.4651309938782408e-05" /> - <width sOffset="138.38946016647003" a="2.4943473498285753" b="0.0015956993449366447" c="0.00029578580551527597" d="-1.4452265951885028e-05" /> - <width sOffset="138.51472875800846" a="2.4945518539645466" b="0.0016691243230400766" c="-0.00044578343005940963" d="2.3986318215148212e-05" /> - <width sOffset="148.39396096287692" a="2.4906611403246108" b="-0.00011573322424141691" c="0.0003096288433167844" d="3.0178540786895924e-06" /> - <width sOffset="150.33190967007977" a="2.4916216760385801" b="0.0011183583764738259" c="-0.00039405405937006064" d="3.3793337605821303e-05" /> - <width sOffset="157.62146201192468" a="2.4919247511376259" b="0.0007604908606386393" c="-0.000348679420020594" d="-1.6057907852878101e-05" /> - <width sOffset="158.62320735210892" a="2.4923205295687243" b="1.3572862812218697e-05" c="-1.0051912160536641e-05" d="-1.7952436486772343e-07" /> - <width sOffset="168.40296255569092" a="2.4913239457549441" b="-0.0002345486937118485" c="3.6506918985818147e-05" d="-4.0218677651792644e-05" /> - <width sOffset="169.42540636656236" a="2.491079309020952" b="-0.00028602891971551644" c="0.00011221556469643438" d="-5.3307367650763057e-06" /> - <width sOffset="178.40746335209781" a="2.4937005245098423" b="0.00043961516347759862" c="-2.834448445159099e-05" d="-6.1293145541741135e-06" /> - <width sOffset="183.45065815991188" a="2.4944104881320524" b="-0.00031395388671314384" c="5.1656141087162198e-05" d="1.9256991061863947e-06" /> - <width sOffset="188.41196414850481" a="2.4943595269168508" b="0.00034081064942642923" c="7.7576389347579477e-05" d="3.6586508523482189e-06" /> - <width sOffset="190.21475175330875" a="2.4952474992822857" b="0.000656190475107615" c="-0.00026814523504087366" d="1.7570432794137764e-05" /> - <width sOffset="198.41646494491181" a="2.492285612802446" b="-0.00019652129526856899" c="0.00015339932292916531" d="1.80793964708139e-05" /> - <width sOffset="198.97568648152651" a="2.492226848045437" b="-7.991045168180555e-06" c="-0.00011318487863497496" d="1.8315878728732208e-05" /> - <width sOffset="204.08525674920111" a="2.4916743424646928" b="0.00026991363202514868" c="-4.2287358479508295e-05" d="1.7826213663287836e-06" /> - <width sOffset="208.4209657413187" a="2.4921949671685919" b="3.7534124226817293e-06" c="-2.1713499295915106e-05" d="7.8473361991480825e-07" /> - <width sOffset="217.29402175973973" a="2.4910669468794264" b="-0.00019622790108906013" c="5.9099821165561436e-05" d="1.7003206529094055e-05" /> - <width sOffset="218.4254665377257" a="2.4909452116035791" b="2.8093132261941068e-06" c="8.2610917834063523e-05" d="-7.7859032795707977e-06" /> - <width sOffset="225.55144065863874" a="2.4923428163974926" b="-5.9171558669636817e-06" c="0.001773931701944085" d="-0.00017943011167322899" /> - <width sOffset="225.93058219555974" a="2.4925857935211582" b="0.0012618469045934722" c="-0.00088016500166673037" d="0.00012163268340794307" /> - <width sOffset="228.4299673341327" a="2.4921404179882796" b="-0.00085840460155148669" c="3.4057938314902437e-05" d="0.0001275668361049221" /> - <width sOffset="230.64233567987299" a="2.4917893801394602" b="0.0011654486496620311" c="-0.00031189205202509167" d="-0.00019145698867758693" /> - <width sOffset="231.64302063789546" a="2.4924514569300289" b="-3.392079582271567e-05" c="8.2689798329068644e-05" d="-9.3499000567981399e-06" /> - <width sOffset="238.43446813053959" a="2.4931062209966601" b="-0.00020451156071934692" c="-0.00012940220799635401" d="5.838513832876997e-06" /> - <width sOffset="240.74801126774173" a="2.4920127511802797" b="-0.00070951512329246041" c="0.00046924765005236654" d="-6.3771062895497766e-05" /> - <width sOffset="244.75026843294859" a="2.4926012662091477" b="-1.7882181405769193e-05" c="0.00067737029694666783" d="-0.00020052278985492795" /> - <width sOffset="246.15276328367327" a="2.4933553869715723" b="0.00069885447173424417" c="-0.00089951262945257837" d="0.0002047772326653617" /> - <width sOffset="248.43896892694659" a="2.4926985605609175" b="-0.00020313747621772925" c="0.00043598326356266369" d="0.00024478261948229497" /> - <width sOffset="249.57616714153596" a="2.4933913640453529" b="0.0017381344770199918" c="-0.00092619391044953582" d="0.00011263355665647369" /> - <width sOffset="253.89277854505542" a="2.4926956619858007" b="3.8244550857084897e-05" c="-9.5804115122255607e-07" d="-5.0557436193703987e-07" /> - <width sOffset="258.44346972335347" a="2.49280221627434" b="-1.8844481517122302e-06" c="-5.5910171467568956e-07" d="5.6617100419451776e-08" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="266.62678984839931" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.826459161351166" b="0.00051926896816376945" c="-0.00020235519903615359" d="6.0199527555480648e-06" /> - <width sOffset="6.5402177475754115" a="3.8228837685945063" b="-0.0013551246882696154" c="0.00051834471429697347" d="1.8407843042874912e-05" /> - <width sOffset="7.6530499067869187" a="3.8220430263105865" b="-0.0001330747877668732" c="-3.0113464316660432e-05" d="-7.2520542058103227e-06" /> - <width sOffset="8.3309498131795863" a="3.8219367171175467" b="-0.00018390062423292894" c="-1.4425384099447654e-05" d="2.8865405539838731e-06" /> - <width sOffset="18.335450609586474" a="3.8215434857872976" b="0.00039420368784049136" c="4.1431993901345465e-05" d="9.857329682162081e-06" /> - <width sOffset="21.530601475620642" a="3.8235475436162698" b="0.00096086674279331633" c="0.0010288028146493732" d="-0.00013232077821793379" /> - <width sOffset="24.717310382116807" a="3.832775071276024" b="0.0034866593026756029" c="-0.00027047884163643393" d="-0.0001379023977877262" /> - <width sOffset="27.010880102338206" a="3.8376852987494603" b="6.9644145137986738e-05" c="-0.00049005541236712274" d="6.870806504981446e-05" /> - <width sOffset="28.339951405993475" a="3.8370735186999196" b="-0.00086888895508871857" c="-0.0003119071974868783" d="1.783322459273142e-05" /> - <width sOffset="38.034674172300811" a="3.8155838093890653" b="-0.0018882879837292554" c="-0.00015838861794488277" d="1.1592566487682784e-05" /> - <width sOffset="38.697746662710983" a="3.8142654792003556" b="-0.0020830437127634703" c="8.1036370451204883e-05" d="3.9956229683145955e-06" /> - <width sOffset="48.348952998807363" a="3.8053017326549927" b="0.00059768004990551349" c="0.00017470851812986384" d="8.4387331325730869e-06" /> - <width sOffset="51.301396252178051" a="3.8088064505162107" b="0.0018499933355553206" c="-8.5392550060576865e-05" d="-7.1267652578213083e-06" /> - <width sOffset="57.517053825819744" a="3.815294877200035" b="-3.756324468341839e-05" c="-1.707774809501142e-05" d="5.6340145801313396e-07" /> - <width sOffset="58.353453795214364" a="3.8152518419652903" b="-6.4948492977480929e-05" c="-3.6067860807348828e-05" d="7.9482625030981451e-07" /> - <width sOffset="65.477276929407708" a="3.8132461079678519" b="-0.0004578210465398331" c="0.00078238051453367766" d="-3.0220132245388118e-05" /> - <width sOffset="68.357954591621365" a="3.8176972999426617" b="0.0032974235824343289" c="0.00046475491614855996" d="-3.978628042566663e-05" /> - <width sOffset="77.232540394249554" a="3.8557553596455856" b="0.0021459421172069833" c="-0.00040760973743422964" d="0.00014340423648399379" /> - <width sOffset="78.362455388028252" a="3.8578665640994094" b="0.001774069371229985" c="-0.00016555437259705981" d="3.1472528409881168e-06" /> - <width sOffset="88.366956184435253" a="3.8621964036900769" b="-0.00059348238154546774" c="-0.00019446705120756847" d="4.3850150155622421e-05" /> - <width sOffset="90.235246136381875" a="3.860694776947855" b="-0.00086094624352584101" c="-0.00010004077889685681" d="2.2681645953422675e-06" /> - <width sOffset="96.87809187542257" a="3.8512259749523974" b="-0.0018897925513989321" c="-0.00029699809783036743" d="2.5619264898568101e-07" /> - <width sOffset="98.37145698084214" a="3.8477423307854925" b="-0.0027751317068316836" c="-0.00027193253941582869" d="2.1291313507862557e-05" /> - <width sOffset="108.24983353540233" a="3.8143165925371196" b="-0.001914668232358757" c="0.00029332776878353105" d="2.0424017213522169e-05" /> - <width sOffset="108.37595777724914" a="3.8140798134945824" b="-0.0018397020730978122" c="0.00033000255471683304" d="1.5201837180123635e-05" /> - <width sOffset="111.12673850127908" a="3.8118326780895035" b="0.00032091479776763694" c="9.155553847749692e-06" d="4.8588271981360106e-07" /> - <width sOffset="118.38045857365614" a="3.8148276814308453" b="0.00053043472583025146" c="9.7554405452049547e-06" d="9.0975180952704598e-07" /> - <width sOffset="127.59070706793364" a="3.8212514410842218" b="0.00094165391710716851" c="0.0013797918601244816" d="-0.00021566118375138514" /> - <width sOffset="128.38495937006303" a="3.8227617196083203" b="0.0027253186588251615" c="0.00083029150905427175" d="-0.00021529173577582657" /> - <width sOffset="131.98361789469368" a="3.8332883442801196" b="0.00033688430845867968" c="-0.00052072715569730522" d="2.4125096531226165e-05" /> - <width sOffset="138.38946016647003" a="3.8204200139017157" b="-0.0033646011092864064" c="-2.6282593587395115e-05" d="2.4560235572627e-05" /> - <width sOffset="138.51472875800846" a="3.8199981709065201" b="-0.0033700296623934123" c="0.00071908527533991488" d="-1.3878348595402718e-05" /> - <width sOffset="145.16363676777632" a="3.8253011302218507" b="0.0043516328548486808" c="0.00015393972112318329" d="-4.2748175158249116e-05" /> - <width sOffset="148.39396096287692" a="3.8395237020251498" b="0.0040079523604509724" c="-0.00031113369180795386" d="-1.7937463188030633e-05" /> - <width sOffset="150.33190967007977" a="3.8459918470660055" b="0.0025999298467169114" c="0.00030580889932262871" d="-4.8712946715159247e-05" /> - <width sOffset="157.62146201192468" a="3.8623251974353883" b="-0.00070711353356436857" c="-6.5837554597840674e-05" d="1.1382987453042258e-06" /> - <width sOffset="158.39846175928392" a="3.8617365563558046" b="-0.00080736338958926088" c="-5.262972534961433e-05" d="1.0215060076346942e-06" /> - <width sOffset="166.05001513178718" a="3.852935302177241" b="-0.0014333455980128341" c="1.4043400655027395e-05" d="-9.7083680068368282e-07" /> - <width sOffset="168.40296255569092" a="3.8496278178231735" b="-0.0013833835419140453" c="-4.4014574079151535e-05" d="4.2881169447555683e-05" /> - <width sOffset="169.42540636656236" a="3.8482132071335471" b="-0.0013389055892296801" c="-0.00011155647501556861" d="7.9932285608392218e-06" /> - <width sOffset="178.40746335209781" a="3.8329792816725572" b="-0.001408301381281779" c="0.00010555728019158943" d="4.4061552823665658e-06" /> - <width sOffset="180.26857033161218" a="3.8307523065472875" b="-0.00096960954566809086" c="0.0025059555290338135" d="-0.00036708033295557293" /> - <width sOffset="183.45065815991188" a="3.8412138084146141" b="0.0038279144259556752" c="-0.0011710246570281828" d="-0.00037513534661520905" /> - <width sOffset="184.51881003547373" a="3.8435093438706192" b="4.2219805037006191e-05" c="-0.00067158909686424145" d="2.7481583406852372e-05" /> - <width sOffset="188.41196414850481" a="3.8351162823691096" b="-0.0039373937677260606" c="-0.0003480433223381968" d="2.5568848746217754e-05" /> - <width sOffset="190.21475175330875" a="3.8270366532750177" b="-0.004942990557603371" c="0.00015575122403749153" d="1.1657066804419151e-05" /> - <width sOffset="198.41646494491181" a="3.8034041141729551" b="-3.5690638764596019e-05" c="0.00044333625238070765" d="1.3379297247537845e-05" /> - <width sOffset="200.87848627584231" a="3.8062032156149099" b="0.0023906137804273701" c="-6.6610004995979149e-05" d="-1.7876242990252221e-05" /> - <width sOffset="204.08525674920111" a="3.8125948948512942" b="0.0014119233549217201" c="-2.8723741603197494e-05" d="-1.3429856280167021e-06" /> - <width sOffset="208.4209657413187" a="3.8180671649775508" b="0.0010871099532598944" c="-3.8145273604957892e-05" d="-3.8394940294817556e-07" /> - <width sOffset="217.29402175973973" a="3.8244417107096425" b="0.00031949335105972839" c="-0.00010829005164036059" d="-1.6602422311992588e-05" /> - <width sOffset="218.4254665377257" a="3.8246405228226656" b="1.0683290475208928e-05" c="-0.00012962706483626179" d="1.185882658805321e-05" /> - <width sOffset="220.46875179099652" a="3.8242223215762214" b="-0.00037051452616977004" c="-0.00035404486042587391" d="1.84965288093295e-05" /> - <width sOffset="225.93058219555974" a="3.8146506461067382" b="-0.0025826378251674218" c="0.0023990383285961907" d="-0.00028256626616324264" /> - <width sOffset="228.4299673341327" a="3.8187704134863933" b="0.0041140919409788706" c="0.00036224766666876891" d="-0.00028905200584769606" /> - <width sOffset="230.64233567987299" a="3.8265153196436765" b="0.0014725834482271494" c="-0.00036359637653177971" d="2.9971818937418734e-05" /> - <width sOffset="234.56979044249624" a="3.828506097231501" b="3.5038186905122712e-06" c="-0.00044927704031622691" d="3.9571754468929271e-05" /> - <width sOffset="238.43446813053959" a="3.824093508919626" b="-0.0016960185358778019" c="5.8874363214853531e-05" d="2.1571720459438396e-05" /> - <width sOffset="240.74801126774173" a="3.8207519477137879" b="-0.0010772150513844187" c="-0.00034953121652634545" d="9.118129718791499e-05" /> - <width sOffset="246.15276328367327" a="3.8191153005558602" b="0.0031351106666353441" c="0.0018620920685755876" d="-0.00031411872533198746" /> - <width sOffset="248.43896892694659" a="3.8322619439785424" b="0.0067239142783718951" c="-0.00019112766948669885" d="-0.00034829280283331235" /> - <width sOffset="249.57616714153596" a="3.8391489813647706" b="0.0049379567645702616" c="0.00081791471742926778" d="-0.00021614374000744664" /> - <width sOffset="251.66611428563237" a="3.8510685049659799" b="0.0055244846690789828" c="-0.00094208306867934327" d="-0.00023492542462972968" /> - <width sOffset="253.89277854505542" a="3.8561052502324156" b="-0.0021652252617457147" c="0.00010133588218582472" d="-4.8650856240591091e-06" /> - <width sOffset="258.44346972335347" a="3.8478920399518612" b="-0.0015451787640148144" c="4.8881519942168125e-05" d="-3.3009899409753315e-06" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8435134966017568" b="-0.0038293907431132803" c="0.00021501367713184404" d="2.0720785104406266e-05" /> - <width sOffset="6.5402177475754115" a="3.8334622654602564" b="0.0016420422376316032" c="1.8984508806688717e-05" d="8.3328948151151446e-06" /> - <width sOffset="8.3309498131795863" a="3.8365114518154044" b="0.0017901983896240869" c="3.3860430560116631e-05" d="-1.7829766286443084e-06" /> - <width sOffset="18.335450609586474" a="3.856025199593347" b="0.0019323372127990701" c="-3.3080431601356632e-05" d="-8.3433089708821378e-07" /> - <width sOffset="23.68619852231177" a="3.8652897245052174" b="0.001506665171792298" c="-3.8339516238919539e-05" d="-2.3477439144852845e-06" /> - <width sOffset="24.717310382116807" a="3.8667999288182768" b="0.0014201122067075095" c="-1.1323627119596053e-05" d="3.233875654459371e-06" /> - <width sOffset="28.339951405993475" a="3.8719496239887845" b="0.0014653889074044179" c="-3.5563162849957181e-06" d="-2.8419421185201396e-07" /> - <width sOffset="38.344452202400475" a="3.8859695785396329" b="0.0013088955423496344" c="-1.1599859645525249e-05" d="-2.7535860643010631e-07" /> - <width sOffset="38.697746662710983" a="3.886430544081942" b="0.0013005961017621382" c="-0.00022825656024479026" d="7.3215849269551441e-06" /> - <width sOffset="48.348952998807363" a="3.8843036084068685" b="-0.001059381920455501" c="-2.3821497547470385e-05" d="7.275337658072736e-06" /> - <width sOffset="57.517053825819744" a="3.8781952874198478" b="0.00033838757972041392" c="-2.4925809263926402e-05" d="-4.1482906086864403e-07" /> - <width sOffset="58.353453795214364" a="3.8784606348365362" b="0.00029582108794698058" c="-2.5204407180311479e-05" d="-5.8849065378019192e-07" /> - <width sOffset="60.678371504550341" a="3.8790047631822691" b="0.00016908193891103935" c="-9.2778534550349689e-05" d="2.1404549211562881e-06" /> - <width sOffset="68.357954591621365" a="3.8758009711785393" b="-0.00087721260552411451" c="-5.9066913601070711e-05" d="2.6384135275633168e-06" /> - <width sOffset="78.362455388028252" a="3.8637548650681133" b="-0.0012668458575139303" c="-6.2972589870494043e-06" d="2.8891864272834128e-06" /> - <width sOffset="88.366956184435253" a="3.8533435010731245" b="-0.00052531140045744876" c="5.5613600736449176e-05" d="2.5266400788067133e-06" /> - <width sOffset="92.434512981714875" a="3.8522969324802161" b="5.2521477953382419e-05" c="-6.4316625323371113e-07" d="6.9747229116697228e-06" /> - <width sOffset="96.87809187542257" a="3.8531295799163576" b="0.00045996150089637087" c="0.00033449354979110218" d="8.9866948583883609e-06" /> - <width sOffset="97.175022124849306" a="3.853295883152275" b="0.00066098101246420604" c="0.00033816758412726631" d="2.9468982863258396e-07" /> - <width sOffset="98.37145698084214" a="3.8545712807141985" b="0.0014714374889867165" c="0.00028714732320198066" d="-1.9754113998277206e-05" /> - <width sOffset="108.37595777724914" a="3.8782520654358859" b="0.0012853987816183767" c="-0.00033395795565444275" d="-1.4536184681763212e-05" /> - <width sOffset="111.12673850127908" a="3.8789583596107109" b="-0.00088186840338342091" c="-7.6177626012413259e-06" d="1.7976977854782186e-07" /> - <width sOffset="118.38045857365614" a="3.8722293252484494" b="-0.0009640060930279934" c="-2.0493378582501674e-05" d="-8.8498291011438465e-08" /> - <width sOffset="127.59070706793364" a="3.8615430202697962" b="-0.0013640258904083769" c="-0.0013678379512106849" d="0.0002164824372690255" /> - <width sOffset="128.9151840889308" a="3.8578398701877008" b="-0.0038480797110063774" c="-0.00051255204911048293" d="0.00021861884567421153" /> - <width sOffset="131.98361789469368" a="3.8475224063942308" b="-0.00081846689603001029" c="0.00052663466487542436" d="-2.0797986632839133e-05" /> - <width sOffset="138.38946016647003" a="3.8584227808282701" b="0.0033682856853430431" c="9.7542466520787938e-05" d="-2.1235953098596813e-05" /> - <width sOffset="145.16363676777632" a="3.8791148350305709" b="0.0017663056636564416" c="-4.570785843815559e-05" d="7.6338734642421948e-06" /> - <width sOffset="146.84471474236943" a="3.8819912278527937" b="0.0016773492250389233" c="-2.014914267240106e-06" d="2.6177961136642758e-06" /> - <width sOffset="148.39396096287692" a="3.8845947528060529" b="0.0016899554472237647" c="-1.5093223240165529e-05" d="-5.9372137776528015e-07" /> - <width sOffset="158.39846175928392" a="3.8993967087590877" b="0.0012096783368169145" c="-4.2744974847661439e-05" d="-4.9335365524520876e-07" /> - <width sOffset="165.0756973896282" a="3.9054213358199861" b="0.00057285257650720742" c="-2.2629259400276259e-05" d="1.7024361476507563e-06" /> - <width sOffset="166.05001513178718" a="3.905959569013465" b="0.00053360474134682184" c="-6.0877920959449015e-05" d="3.694778956515913e-06" /> - <width sOffset="168.40296255569092" a="3.9069262017595818" b="0.00030848654353898022" c="-5.1612080824278117e-05" d="-2.2899509758379115e-07" /> - <width sOffset="178.40746335209781" a="3.9046172961579368" b="-0.00079298004669236632" c="-7.3010399938533077e-05" d="3.9095297688247196e-06" /> - <width sOffset="180.26857033161218" a="3.9029137901400217" b="-0.0010241158366558981" c="-0.0024269795103163301" d="0.00037539601800676948" /> - <width sOffset="184.51881003547373" a="3.8835411760971605" b="-0.001310538807800162" c="0.00065804953849920775" d="-2.7220912016081027e-05" /> - <width sOffset="188.41196414850481" a="3.8868066434045021" b="0.0025755043045714468" c="0.00034066481730254521" d="-2.7454126247173931e-05" /> - <width sOffset="198.41646494491181" a="3.9191792195978188" b="0.0011482137080472813" c="-0.00047443995931552719" d="-2.9223784947173366e-05" /> - <width sOffset="199.8815625060206" a="3.9197511698176211" b="-0.00043017546211518345" c="-0.00061399725270844512" d="-2.9217534662515116e-05" /> - <width sOffset="200.87848627584231" a="3.9186831434812164" b="-0.0017415065280682283" c="-9.2613614084939206e-05" d="2.0380055758500024e-06" /> - <width sOffset="208.4209657413187" a="3.9011536464514083" b="-0.002790758816850421" c="-4.2307585018706093e-05" d="2.1489042011489086e-06" /> - <width sOffset="218.4254665377257" a="3.8711507369715714" b="-0.0029920396551225718" c="3.8243487663898283e-05" d="-2.3710737733595143e-06" /> - <width sOffset="218.9093282902611" a="3.8697116884678682" b="-0.0029566958961863474" c="4.0298506379712629e-05" d="-3.7517362934536707e-06" /> - <width sOffset="220.46875179099652" a="3.8651847180105028" b="-0.002858381455976838" c="0.00031985756120172425" d="-1.0389438514636905e-05" /> - <width sOffset="228.4299673341327" a="3.8574590033312006" b="0.00025905097946307253" c="8.9283123776593364e-05" d="-1.1329587857962102e-05" /> - <width sOffset="234.56979044249624" a="3.8597929787767691" b="7.4127191657931933e-05" c="0.00031941768062207124" d="-2.0929523372282788e-05" /> - <width sOffset="234.68363323729432" a="3.8598055264547821" b="0.00014604024330872826" c="0.00021361099944129774" d="-1.2721955485904902e-05" /> - <width sOffset="238.43446813053959" a="3.862687209127035" b="0.0012115329170335797" c="9.6727989634600787e-05" d="-9.3689161686415169e-06" /> - <width sOffset="248.43896892694659" a="3.8751079270046351" b="0.00033375794069279499" c="-0.00016729070023768227" d="-1.121400364301262e-05" /> - <width sOffset="250.41527894868318" a="3.8750275702060275" b="-0.000458877644242552" c="-0.0010354924088066221" d="0.00013548250330310175" /> - <width sOffset="251.66611428563237" a="3.8730986148791153" b="-0.002413415316995968" c="-0.00012228269111614785" d="0.00015426418792550828" /> - <width sOffset="254.86940849412269" a="3.8691835376362054" b="0.001551927710944825" c="-9.8479584729455288e-05" d="2.4634924630060602e-06" /> - <width sOffset="258.44346972335347" a="3.8735847227163682" b="0.00094238889978969008" c="-6.3677814636050247e-05" d="2.5498025736014959e-06" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9044555986993497" b="0.0010139378611400641" c="-0.00024851095881067882" d="1.6705087846812964e-05" /> - <width sOffset="5.9892584093188361" a="3.9052028984190938" b="-0.00016515938052032012" c="-0.00019689415755782893" d="1.9121017917218157e-05" /> - <width sOffset="8.3309498131795863" a="3.9039820007523454" b="-0.00077273871899340412" c="-8.651495734963909e-05" d="1.3806907802011419e-05" /> - <width sOffset="14.489651695140083" a="3.8991667092173357" b="-0.00026730654234838206" c="9.0173146311579096e-05" d="-3.2380212694586397e-06" /> - <width sOffset="18.335450609586474" a="3.8992881994014845" b="0.00028259638582399903" c="3.7534371767059971e-05" d="-4.074759045750034e-06" /> - <width sOffset="23.68619852231177" a="3.9012506982710122" b="0.00033428310259224926" c="-3.6008451893046649e-05" d="-2.5613460275555271e-06" /> - <width sOffset="28.339951405993475" a="3.9017683655912663" b="-0.00016728217964210191" c="-7.2900748063713415e-05" d="-2.6589996187059625e-06" /> - <width sOffset="28.599247313683236" a="3.9017200422150244" b="-0.00020562423939008713" c="-6.224640092441594e-05" d="3.4552331165498729e-06" /> - <width sOffset="38.344452202400475" a="3.897002504761137" b="-0.0004344118091086193" c="1.1418803688326904e-05" d="8.9603278378385267e-06" /> - <width sOffset="40.633518951131691" a="3.8961754126595483" b="-0.00024128330953015835" c="8.5591535532414476e-05" d="-1.4430938830004815e-06" /> - <width sOffset="48.348952998807363" a="3.8987461039104909" b="0.00082175524267606281" c="4.407563360256561e-05" d="-1.6587658179113576e-06" /> - <width sOffset="58.353453795214364" a="3.9097178800961765" b="0.0012055868734209413" c="-1.4631646945393649e-05" d="-1.2568284879351437e-06" /> - <width sOffset="60.678371504550341" a="3.9124258885290897" b="0.0011171717354921513" c="4.0071834968838566e-05" d="-3.9857740628737782e-06" /> - <width sOffset="66.33213725701853" a="3.9193026936693882" b="0.0011880686647656666" c="-0.0010043839386346589" d="6.583893821237811e-05" /> - <width sOffset="68.357954591621365" a="3.9181349498620497" b="-0.0020707317810541889" c="-0.00065463227385301247" d="5.6137305202911278e-05" /> - <width sOffset="74.939933516762949" a="3.8921525735353479" b="-0.0033922672256096369" c="-0.0013430228401859123" d="0.00024487251629977521" /> - <width sOffset="78.362455388028252" a="3.8746277561242257" b="-0.0039802600844368137" c="0.001057648366060149" d="0.0002654782126614441" /> - <width sOffset="80.195318295098559" a="3.8725201622455758" b="0.0025723205534097949" c="0.00045391387031402697" d="-4.4265373716798261e-05" /> - <width sOffset="87.164747110307189" a="3.8975107338239936" b="0.002449063607547295" c="-0.005318985880884813" d="0.0013909372342732396" /> - <width sOffset="88.366956184435253" a="3.8951842925934859" b="-0.0043090100384556183" c="-0.000304508890162485" d="0.0013911098847451051" /> - <width sOffset="89.134929380865287" a="3.8923255799676193" b="-0.0023153611940816424" c="4.7098884726291321e-05" d="-1.0346038480415057e-06" /> - <width sOffset="92.434512981714875" a="3.8851614630798843" b="-0.0020383397570114684" c="0.00012394612212542853" d="-5.4826866809179576e-06" /> - <width sOffset="97.175022124849306" a="3.8776999902997495" b="-0.0012328321341801996" c="5.0305173406357267e-05" d="3.209318349067682e-06" /> - <width sOffset="98.37145698084214" a="3.8763024930442169" b="-0.0010986764108489107" c="4.4202939851167982e-05" d="1.0225844386440369e-06" /> - <width sOffset="108.37595777724914" a="3.870759023659573" b="9.2831823439424753e-05" c="5.7202590131720799e-05" d="2.3239707522573548e-06" /> - <width sOffset="113.17197805083856" a="3.8727763839316092" b="0.0008018879916937364" c="0.00047235409342695104" d="-2.3136063766862298e-05" /> - <width sOffset="118.38045857365614" a="3.8864980931464994" b="0.0038394580735135282" c="9.0059901115551128e-05" d="-2.3946163343305042e-05" /> - <width sOffset="126.37791869500711" a="3.9107154185380715" b="0.00068521456033117866" c="-0.00023727654102678671" d="2.2767626322922746e-05" /> - <width sOffset="128.38495937006303" a="3.9113189431412665" b="7.9057174049574882e-06" c="-0.00015087215773944312" d="1.0204526903448299e-05" /> - <width sOffset="128.9151840889308" a="3.9112822401658862" b="-0.00014347992885632677" c="-0.00012974794177773405" d="8.0681184975290495e-06" /> - <width sOffset="137.59014706492212" a="3.9055405215788301" b="-0.00057309875884040953" c="-0.00024825123504768239" d="2.9437192554143497e-05" /> - <width sOffset="138.38946016647003" a="3.9049388612150855" b="-0.0009135372945040395" c="-0.00017907617407721867" d="2.944002017876293e-05" /> - <width sOffset="144.57696949421052" a="3.8994044210909986" b="0.00025174922304175163" c="2.2720173158916092e-05" d="-5.8834476865611662e-07" /> - <width sOffset="146.84471474236943" a="3.9000853050834534" b="0.00034571936613345757" c="1.3523990451847734e-05" d="4.4277325819213096e-06" /> - <width sOffset="148.39396096287692" a="3.9006698335768948" b="0.00041950519938690009" c="8.6498507638645405e-06" d="4.0602029814742963e-07" /> - <width sOffset="158.39846175928392" a="3.9061391063235482" b="0.00071449583609906259" c="1.2089176221772306e-05" d="3.4870004669024175e-07" /> - <width sOffset="165.0756973896282" a="3.9115527757485031" b="0.00092258126485443885" c="-1.0924197913329164e-05" d="-1.8470897567221449e-06" /> - <width sOffset="168.40296255569092" a="3.9144334720107654" b="0.00078854016487643966" c="-4.1182664116398423e-05" d="-7.9481784740363136e-07" /> - <width sOffset="171.97207500046011" a="3.9166871158542191" b="0.00046419453366198875" c="-0.00069911137917326807" d="4.7810242263862039e-05" /> - <width sOffset="178.40746335209781" a="3.9034634569071027" b="-0.0025938397800905986" c="0.00021547194142359358" d="4.8269827730917372e-05" /> - <width sOffset="182.22104402060609" a="3.8993824952025653" b="0.0011556213587932203" c="0.00033422108383129065" d="-1.9332715482406053e-05" /> - <width sOffset="188.41196414850481" a="3.914759396722296" b="0.0030709699331998366" c="-2.4125362468662619e-05" d="-1.9722737681396974e-05" /> - <width sOffset="192.55868653515381" a="3.9256727001946654" b="0.0018534720105044401" c="-0.00021037382425455225" d="4.0432473506410868e-06" /> - <width sOffset="198.41646494491181" a="3.9301239498998934" b="-0.00019495975340687484" c="-0.00013366944321461217" d="3.7807767032289422e-06" /> - <width sOffset="199.8815625060206" a="3.9295632818960913" b="-0.00056229086910522183" c="-0.00010594161779725367" d="3.7745264181231966e-06" /> - <width sOffset="208.4209657413187" a="3.9193866591555584" b="-0.0015459159181770736" c="-5.6693910105673652e-06" d="3.8008123152403329e-06" /> - <width sOffset="218.9093282902611" a="3.9069341688391566" b="-0.00041050755871714683" c="0.00010842666740381961" d="5.1814697467575698e-06" /> - <width sOffset="218.95935857784093" a="3.9069139030719682" b="-0.00039961941588171138" c="-2.9219551428786784e-06" d="8.6435550507495066e-07" /> - <width sOffset="228.4299673341327" a="3.903601406470433" b="-0.00022238636634593599" c="2.3322642658544428e-05" d="7.5253882767665885e-07" /> - <width sOffset="228.93528653667613" a="3.9034950828491342" b="-0.00019823913124505585" c="-1.5868373196751854e-05" d="3.8784178614809024e-06" /> - <width sOffset="234.68363323729432" a="3.9025678769351941" b="3.7964303630051363e-06" c="0.00014967375324235596" d="-4.3291500421917655e-06" /> - <width sOffset="238.43446813053959" a="3.9044593936527274" b="0.00094388215292564963" c="0.0001236953432208739" d="-5.2987706884142198e-06" /> - <width sOffset="242.6523777837001" a="3.9102436188581726" b="0.0017045462152481825" c="8.5115208298907596e-05" d="-1.3438003752060063e-05" /> - <width sOffset="248.43896892694659" a="3.9203534095524826" b="0.0013397000009342823" c="-0.00013016829530824924" d="-1.4739063907882244e-05" /> - <width sOffset="250.41527894868318" a="3.9223788886643831" b="0.00065249062286855614" c="0.00058415949077509624" d="-0.00016143557085442227" /> - <width sOffset="253.14158440203596" a="3.925228365798862" b="0.00023795846865978148" c="-0.0010890447887227494" d="-0.00011325879597245812" /> - <width sOffset="254.86940849412269" a="3.9218040958392777" b="-0.0045397574834943706" c="-0.00021746098479739478" d="3.8541899489971143e-05" /> - <width sOffset="258.44346972335347" a="3.9045605175510629" b="-0.0046172025424426394" c="0.00020950043740193574" d="3.869364016172346e-05" /> - <width sOffset="263.25997833174904" a="3.8915053825406209" b="9.3851632770158123e-05" c="0.0019972097434666058" d="-0.00029200599735125716" /> - <width sOffset="266.50416046320618" a="3.9028596407748548" b="0.0038326338895263942" c="-0.0031216468199885884" d="0.026501607082915248" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.7521011281246675" b="-0.0041173887908054901" c="-0.00023523867003752847" d="-8.234884429191697e-07" /> - <width sOffset="5.9892584093188361" a="3.7188258055806234" b="-0.0070238177523971115" c="-1.4984629407412478e-06" d="-3.2394185132094369e-06" /> - <width sOffset="8.3309498131795863" a="3.7023283786494479" b="-0.0070841258632859689" c="-1.9041742198610279e-05" d="1.3179792674499712e-06" /> - <width sOffset="14.489651695140083" a="3.658284989734665" b="-0.0071686993759717092" c="8.3719165517858292e-05" d="1.836290833890196e-05" /> - <width sOffset="18.335450609586474" a="3.632998316625923" b="-0.005709993655253251" c="0.0002776603924425562" d="2.2950967283079008e-05" /> - <width sOffset="22.905883682671629" a="3.6148923361915912" b="-0.0017336786514827768" c="0.00044167567433663388" d="-1.9264511416041216e-05" /> - <width sOffset="28.339951405993475" a="3.6154224476708854" b="0.0013599218096275057" c="8.0605303936731067e-05" d="-2.04369508596812e-05" /> - <width sOffset="28.599247313683236" a="3.6157801329879975" b="0.0013976008641247777" c="5.1984900501885877e-05" d="-2.6551183584971041e-05" /> - <width sOffset="34.755005219465374" a="3.6201599171302061" b="-0.00098072651858194379" c="-0.00067674497423095541" d="3.9810464652439124e-05" /> - <width sOffset="38.344452202400475" a="3.6097614918922716" b="-0.0043002373672943288" c="-0.0002621827683491551" d="2.9272838188624381e-05" /> - <width sOffset="40.633518951131691" a="3.5988952768622915" b="-0.0050403912946771229" c="-7.3800693043569193e-05" d="3.9676259909456354e-05" /> - <width sOffset="46.500102868069234" a="3.5747964115166071" b="-0.0018097166903791278" c="0.0013167334522463734" d="-5.7871116859562299e-05" /> - <width sOffset="48.348952998807363" a="3.5755857011022942" b="0.0024657156592001652" c="0.00096147024223681944" d="-7.0461499435379678e-05" /> - <width sOffset="58.353453795214364" a="3.6259308645936912" b="0.00054629318308529714" c="-0.0011451665218280079" d="-7.0689775170661425e-05" /> - <width sOffset="59.127062631149215" a="3.6256354051907969" b="-0.0013524459597909022" c="5.5121116626976038e-05" d="2.8550509614689948e-06" /> - <width sOffset="66.33213725701853" a="3.6198203360552501" b="-0.00011349880094982411" c="0.0010936855572631738" d="-6.6969661313601199e-05" /> - <width sOffset="68.357954591621365" a="3.6235220496028231" b="0.0034931979336262913" c="0.0007045882037691266" d="-5.6549148286407415e-05" /> - <width sOffset="74.939933516762949" a="3.6609138452752239" b="0.0054188249840279642" c="0.0013848465426141926" d="-0.00024528435938336499" /> - <width sOffset="78.362455388028252" a="3.6858479985095114" b="0.0062786303508813235" c="-0.0010717790097863114" d="-0.00026538718946062754" /> - <width sOffset="80.195318295098559" a="3.6921212801600536" b="-0.00032483200612411792" c="-0.00046754401489478844" d="4.4356396917613211e-05" /> - <width sOffset="87.164747110307189" a="3.6821631775438952" b="-0.00037829991218281503" c="0.0053072588754586574" d="-0.0013908462110726147" /> - <width sOffset="88.366956184435253" a="3.6869623187186691" b="0.006351971778466004" c="0.00024559921406398306" d="-0.0013916686151846244" /> - <width sOffset="89.134929380865287" a="3.6913549742167713" b="0.0042668522407237697" c="-0.00010729583082951259" d="4.7587340852264639e-07" /> - <width sOffset="98.37145698084214" a="3.7219870842797902" b="0.0024065656305480381" c="-0.00010724970796650899" d="3.5271387941626876e-07" /> - <width sOffset="108.37595777724914" a="3.7356821352377856" b="0.00036651548787825763" c="-0.00010209064814157242" d="-8.4460291938382264e-07" /> - <width sOffset="113.17197805083856" a="3.7349985070230924" b="-0.00067102433739275912" c="-0.00049595691708124144" d="2.4615431599734427e-05" /> - <width sOffset="118.38045857365614" a="3.7215271251743443" b="-0.0038340660466415076" c="-0.00011716545031184233" d="2.5552950506404283e-05" /> - <width sOffset="126.37791869500711" a="3.6964411602118479" b="-0.0008050663547089791" c="0.00024872164061083698" d="-2.1160839159747299e-05" /> - <width sOffset="128.38495937006303" a="3.6956561820031122" b="-6.2398511686064797e-05" c="0.00013873970860354195" d="-8.2237357232195389e-06" /> - <width sOffset="137.59014706492212" a="3.7004234046375637" b="0.00040132501118892838" c="0.00024011179696483808" d="-2.9592809776563967e-05" /> - <width sOffset="138.38946016647003" a="3.7008824842246875" b="0.00072845335566335131" c="0.00013429347685109497" d="-2.9860023359197469e-05" /> - <width sOffset="144.57696949421052" a="3.703457703267695" b="-0.0010392596831077807" c="-7.529919117513788e-05" d="1.683415882347767e-07" /> - <width sOffset="148.39396096287692" a="3.6984031537958857" b="-0.0016067345038700571" c="-7.5841210417305766e-05" d="2.5203871871285896e-06" /> - <width sOffset="158.39846175928392" a="3.6772614195212165" b="-0.002367444469627859" c="-8.3011214392204289e-06" d="2.442974237147907e-06" /> - <width sOffset="168.40296255569092" a="3.6551917342150464" b="-0.0017999894823400747" c="6.16839618898993e-05" d="1.5291211995600929e-06" /> - <width sOffset="171.97207500046011" a="3.649622656482522" b="-0.0013012390671359472" c="0.00072747511064430719" d="-4.7075938911737264e-05" /> - <width sOffset="175.21449418004431" a="3.651446898439084" b="0.0019315515529021881" c="-0.000347348603218329" d="-1.6721459736201139e-05" /> - <width sOffset="178.40746335209781" a="3.6535287207798262" b="-0.00079802367244789871" c="-0.00051482950388670446" d="-1.9837394321548128e-05" /> - <width sOffset="182.22104402060609" a="3.64189779311398" b="-0.005590220693501435" c="-0.00030829051106855999" d="4.7765148891780077e-05" /> - <width sOffset="188.41196414850481" a="3.6068070123621485" b="-0.00391526946354313" c="0.00058041337095629964" d="4.6535381791874158e-05" /> - <width sOffset="190.4163250330987" a="3.6016659119746324" b="-0.0010276912866734047" c="0.00038450391521221441" d="8.1070660900858293e-06" /> - <width sOffset="192.55868653515381" a="3.6013087036236588" b="0.00073142879915251468" c="0.00037750302224765018" d="-1.5658918941939871e-05" /> - <width sOffset="198.41646494491181" a="3.6153992643303394" b="0.0035421467708718866" c="0.0001102746161223517" d="-1.7022795117649606e-05" /> - <width sOffset="202.46585100410289" a="3.63042070291108" b="0.0035978405063131491" c="-0.00099616391150372254" d="5.1413257344286171e-05" /> - <width sOffset="208.4209657413187" a="3.6273767971761819" b="-0.002796834848218634" c="-6.9517897522111338e-05" d="5.1316186149945394e-05" /> - <width sOffset="213.56243861521921" a="3.6181338221651704" b="0.00055790700909506136" c="0.00027743530797084542" d="-1.5651972575452177e-05" /> - <width sOffset="218.4254665377257" a="3.6256079484919383" b="0.0021457959042478288" c="6.2789367298139167e-05" d="-1.5157109957826086e-05" /> - <width sOffset="218.95935857784093" a="3.6267691627471543" b="0.0021998802108867069" c="0.00015063890056695866" d="-1.0839990630387246e-05" /> - <width sOffset="228.4299673341327" a="3.6519065942126221" b="0.0021363690829482953" c="-0.00010783788819224559" d="-2.0173768043229931e-05" /> - <width sOffset="228.93528653667613" a="3.6529560033376796" b="0.0020119300081206594" c="-9.8088632515887621e-05" d="-2.3299647076990922e-05" /> - <width sOffset="231.34075949361886" a="3.6569037734344412" b="0.0011355746484293123" c="-0.00027715478193754943" d="4.0905049138048901e-06" /> - <width sOffset="238.43446813053959" a="3.6524727341438172" b="-0.0021790246532006566" c="-0.00017891449099039541" d="6.9282169687624624e-06" /> - <width sOffset="242.6523777837001" a="3.6406186721218701" b="-0.0033185401962307895" c="-0.00011971578448284641" d="1.5067450032416219e-05" /> - <width sOffset="248.43896892694659" a="3.6203264950305369" b="-0.0031904485053971072" c="0.000143334055980977" d="1.5563885809497716e-05" /> - <width sOffset="253.14158440203596" a="3.6101114051960708" b="-0.00080979163772225806" c="0.00071574321470299174" d="-3.2612889072372498e-05" /> - <width sOffset="258.44346972335347" a="3.6210770236107077" b="0.0040295414924763238" c="0.00024329589658893293" d="-6.113409022987098e-05" /> - <width sOffset="259.61556881973604" a="3.6260358483218043" b="0.0043479142661526672" c="0.00018252802131951045" d="-6.4654654038876045e-05" /> - <width sOffset="263.25997833174904" a="3.641176168864777" b="0.0031021528113635262" c="-0.0017529606404832151" d="0.0002660449834741295" /> - <width sOffset="266.50416046320618" a="3.6418745685154641" b="0.0001284506787050492" c="0.0031132291509256465" d="-0.026527568096451171" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link> - <successor id="-6" /> - </link> - <width sOffset="0" a="0" b="0" c="0.0027954323710970338" d="-4.2256579288153819e-05" /> - <width sOffset="8.3309498131795863" a="0.16958315265333113" b="0.037778794811346557" c="0.0017389989663779224" d="-4.2239638852508262e-05" /> - <width sOffset="18.335450609586474" a="0.67930090677125854" b="0.059891126955898197" c="0.0004817745043922423" d="-4.5081663941206753e-05" /> - <width sOffset="22.905883682671629" a="0.9587890162518935" b="0.061469849719454364" c="1.4318618688240539e-05" d="-2.866185242115134e-06" /> - <width sOffset="27.673593302659128" a="1.251874264382371" b="0.06141092950827079" c="0.0035617818904502647" d="-8.2511451309049848e-05" /> - <width sOffset="28.339951405993475" a="1.2943530701193113" b="0.066047860506342829" c="0.0034438517591729358" d="-8.1339011868536903e-05" /> - <width sOffset="34.755005219465374" a="1.838304839685982" b="0.10019083679807828" c="0.0021168712443084916" d="-0.00014770066010591775" /> - <width sOffset="38.344452202400475" a="2.2183778823998344" b="0.10967864764075065" c="0.00054260102278762138" d="-0.00014285187601282309" /> - <width sOffset="46.500102868069234" a="3.0714766499379493" b="0.090023954058391864" c="-0.0036447907907848943" d="-4.5304499243039865e-05" /> - <width sOffset="48.348952998807363" a="3.2251723381348052" b="0.076082024318787467" c="-0.0038772524813422485" d="-3.1892622329354688e-05" /> - <width sOffset="54.845862233672278" a="3.5470661546920681" b="0.021663162952282017" c="-0.00053462224256648058" d="7.8008345637440113e-05" /> - <width sOffset="58.353453795214364" a="3.6198405372518696" b="0.020791946516756785" c="0.00024514145537787684" d="7.373528315408671e-05" /> - <width sOffset="59.127062631149215" a="3.6361062188762787" b="0.021303618912942728" c="-0.00094807808742946545" d="1.9045701763694808e-07" /> - <width sOffset="68.357954591621365" a="3.7521222958920601" b="0.0038490922880285144" c="-0.0010565502530780718" d="4.3203434607073562e-05" /> - <width sOffset="70.324422907363214" a="3.7559342696907372" b="0.00019494983328004477" c="-0.00022036887998725288" d="5.0675891827491527e-06" /> - <width sOffset="78.362455388028252" a="3.7458950435007017" b="-0.0023654643000156862" c="-0.00013375114860286579" d="3.9468739489612725e-06" /> - <width sOffset="88.366956184435253" a="3.7127948022945567" b="-0.003856562976340106" c="-3.8180700635369441e-05" d="3.5246728061958426e-06" /> - <width sOffset="98.37145698084214" a="3.6739197413171123" b="-0.0035621667900287268" c="5.413677176614166e-05" d="3.3182087052854755e-06" /> - <width sOffset="108.37595777724914" a="3.6470232833710305" b="-0.0014825851493814228" c="0.00010953526237612598" d="1.2327477368184975e-05" /> - <width sOffset="111.72195760877526" a="3.6437506771818384" b="-0.00033553044532827784" c="6.2955116039532635e-06" d="1.688409230444881e-06" /> - <width sOffset="118.38045857365614" a="3.6422940962725816" b="-2.7123018532551895e-05" c="1.7681226654483982e-05" d="1.9315894271147426e-07" /> - <width sOffset="128.38495937006303" a="3.643985878498551" b="0.00038466053045526873" c="6.9881583048977836e-06" d="3.7976311177134512e-07" /> - <width sOffset="138.38946016647003" a="3.6489139362129803" b="0.0006385181119077021" c="1.0647198556008808e-06" d="2.4871622588500685e-07" /> - <width sOffset="148.39396096287692" a="3.6556576112243357" b="0.00073450414133948458" c="-3.7409037818565622e-06" d="4.3332541718922031e-08" /> - <width sOffset="158.39846175928392" a="3.6626749223737818" b="0.0006726638586160114" c="-1.0507355914638261e-05" d="-3.1366541000399053e-08" /> - <width sOffset="168.40296255569092" a="3.6683214979369216" b="0.00045300372271243894" c="-2.5133904250180984e-05" d="1.6280960856045882e-06" /> - <width sOffset="172.89156428999354" a="3.6699957004946775" b="0.00032577797033326206" c="-0.00015561518816515507" d="1.7505758475427605e-06" /> - <width sOffset="175.21449418004431" a="3.6699347024728972" b="-0.00036885003451881358" c="0.00047348813890728828" d="-2.8603903328050769e-05" /> - <width sOffset="178.40746335209781" a="3.672653083748302" b="0.0017799611702407673" c="0.00019978009424449926" d="-2.719003076731762e-05" /> - <width sOffset="188.41196414850481" a="3.6832299432241644" b="-0.0023869920959496164" c="-0.00061806110809754951" d="-2.6044194857793177e-05" /> - <width sOffset="190.4163250330987" a="3.6757527928347953" b="-0.0051785218475701861" c="-0.00029893645164458797" d="1.2384120843982745e-05" /> - <width sOffset="198.41646494491181" a="3.6215322939643029" b="-0.0075837543517246553" c="-5.2240797487183537e-06" d="1.3446964825509625e-05" /> - <width sOffset="202.46585100410289" a="3.5916299602013622" b="-0.0069645720583461114" c="0.0010577746958723075" d="-5.4989087636415287e-05" /> - <width sOffset="208.4209657413187" a="3.576054346153188" b="-0.00021653133300628732" c="7.3890546230070085e-05" d="-5.4874068819278445e-05" /> - <width sOffset="213.56243861521921" a="3.5694362061885556" b="-0.0038084646261872055" c="-0.00032794093096158287" d="1.2094089906117486e-05" /> - <width sOffset="218.4254665377257" a="3.5445509402214164" b="-0.0061399955658589453" c="-0.00015044162146709043" d="1.1235412984585293e-05" /> - <width sOffset="228.4299673341327" a="3.4793162326618843" b="-0.0057765235328674364" c="0.00016912558589266761" d="1.9793233090901935e-05" /> - <width sOffset="231.34075949361886" a="3.4644230721315994" b="-0.0042888376431475857" c="0.00035289368553959754" d="-7.596918899928023e-06" /> - <width sOffset="238.43446813053959" a="3.449045366358126" b="-0.00042903455447739196" c="0.00019536252319462362" d="-8.5020697442366168e-06" /> - <width sOffset="248.43896892694659" a="3.4557933770946372" b="0.00092705707824761868" c="-4.4174274533879409e-05" d="-9.7395748151812791e-06" /> - <width sOffset="254.57659792013351" a="3.4575673803025015" b="-0.00071587719506394044" c="-0.00092814892185545748" d="4.2096449011792372e-05" /> - <width sOffset="258.44346972335347" a="3.4433548684665274" b="-0.0060055765762213409" c="-0.00046397415116576521" d="7.4181157756010769e-05" /> - <width sOffset="259.61556881973604" a="3.435797772463256" b="-0.0067874900936786987" c="-0.00035732890772311376" d="7.7701721565033276e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="266.62678984839931" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link> - <predecessor id="-5" /> - <successor id="-7" /> - </link> - <width sOffset="0" a="2.4947212834436669" b="0.00099559156422369564" c="-9.0379577300478929e-05" d="2.2118762664045565e-06" /> - <width sOffset="8.3309498131795863" a="2.4980216600680176" b="-4.9759890413364483e-05" c="-4.123657932994019e-05" d="1.9656257784113848e-06" /> - <width sOffset="18.335450609586474" a="2.4953647475250182" b="-0.00028464400604463064" c="-5.6639153922552043e-06" d="5.9896632319324238e-06" /> - <width sOffset="23.139430529222864" a="2.4945306682442947" b="7.5629674842210559e-05" c="-0.0009502331831645304" d="0.00018895430737227571" /> - <width sOffset="27.673593302659128" a="2.4929516906307168" b="0.0031125320664635997" c="-0.0019684431126821712" d="0.00026859957343853511" /> - <width sOffset="28.665720719610135" a="2.494364453048254" b="-1.9946806124881977e-07" c="-3.0071912113361406e-05" d="1.6773849694546342e-06" /> - <width sOffset="38.344452202400475" a="2.4930663065005731" b="-0.00011091397505863521" c="9.7281641149545082e-06" d="1.426281834076716e-06" /> - <width sOffset="48.012196900073604" a="2.4941920503426154" b="0.00047710836422366898" c="-0.00065052466795953185" d="7.985696869581798e-05" /> - <width sOffset="48.348952998807363" a="2.4942819966735215" b="6.6140525149721574e-05" c="-0.00054658185287896751" d="7.9247795777616243e-05" /> - <width sOffset="54.845862233672278" a="2.4933729737826464" b="0.0029990630192780199" c="-0.0029662253005654066" d="-3.0653172197170605e-05" /> - <width sOffset="55.343607172792872" a="2.4941270797955255" b="2.3432783500518251e-05" c="-2.0311520157901631e-05" d="3.6378094290963487e-06" /> - <width sOffset="58.353453795214364" a="2.4941127944059254" b="3.0337964494753233e-08" c="-3.1079803911167282e-06" d="2.0693822742144691e-07" /> - <width sOffset="68.357954591621365" a="2.4940092378215564" b="-1.9882619138773816e-08" c="-2.9485173378445166e-05" d="9.9976960581734062e-06" /> - <width sOffset="70.324422907363214" a="2.4939712053905989" b="0" c="-9.5580022201629698e-06" d="7.9165163626151113e-07" /> - <width sOffset="78.362455388028252" a="2.4937647971816119" b="-2.0930830464714958e-07" c="-9.7653757248996644e-06" d="6.5072506040750695e-07" /> - <width sOffset="88.366956184435253" a="2.493436890437069" b="-2.1144221006626912e-07" c="-5.5819092628664899e-06" d="3.7290671054694045e-07" /> - <width sOffset="98.37145698084214" a="2.4932494920135611" b="7.2864914990589114e-08" c="-3.5128890615008208e-06" d="2.3598791242638382e-07" /> - <width sOffset="108.37595777724914" a="2.4931349224933061" b="6.4357817016347935e-07" c="-0.00010901741586622586" d="7.2130508790224296e-05" /> - <width sOffset="109.67233582306767" a="2.4931096924367893" b="8.1654750890140012e-05" c="-0.00011663171989020648" d="-1.1713638076082823e-05" /> - <width sOffset="111.72195760877526" a="2.4926862312199418" b="-0.00054407228190136384" c="3.8325659101379347e-05" d="-1.0745699383822548e-06" /> - <width sOffset="118.38045857365614" a="2.4904454952665294" b="-0.00017661462771995909" c="1.4266535326994498e-05" d="4.3473272496521941e-08" /> - <width sOffset="128.38495937006303" a="2.4901500241182024" b="0.00012189822461606138" c="4.3032207916515304e-06" d="1.7079167891191335e-07" /> - <width sOffset="138.38946016647003" a="2.4919712869204869" b="0.00025928501225579631" c="-2.4002996732197522e-06" d="8.1029472159987499e-08" /> - <width sOffset="148.39396096287692" a="2.4944061968815117" b="0.00023558814067404165" c="-8.3418199684389527e-06" d="-5.9399605332301043e-08" /> - <width sOffset="158.39846175928392" a="2.4958687257149172" b="5.0840725696330523e-05" c="-1.5621957388703802e-05" d="-1.1059476859615277e-07" /> - <width sOffset="168.40296255569092" a="2.4947030153501473" b="-0.00029494734774732903" c="-1.6438130829695772e-05" d="-1.7088175179868044e-06" /> - <width sOffset="172.89156428999354" a="2.4928933904548014" b="-0.00054580122908650546" c="0.00011295617400099614" d="-1.8312972799248877e-06" /> - <width sOffset="175.63775059467753" a="2.4922084549802612" b="3.3163766274654522e-05" c="-2.6517989463286658e-05" d="5.3333954552531533e-06" /> - <width sOffset="178.40746335209781" a="2.4922102017711385" b="9.0117086437337124e-06" c="7.9330234206646658e-07" d="2.7215824748755679e-08" /> - <width sOffset="188.41196414850481" a="2.4924070136667211" b="3.305699512137425e-05" c="1.7280238072511951e-06" d="-7.8223110553526741e-08" /> - <width sOffset="198.41646494491181" a="2.4928323615881585" b="4.4144964337269194e-05" c="1.4378039148782635e-06" d="-1.020374625718656e-07" /> - <width sOffset="208.4209657413187" a="2.4933157444653506" b="4.2275185196884342e-05" c="6.6102941906414855e-07" d="-9.3432210124153517e-08" /> - <width sOffset="218.4254665377257" a="2.4937112906250629" b="2.744682401676149e-05" c="1.2965568441656417e-06" d="-1.789396944993897e-07" /> - <width sOffset="228.4299673341327" a="2.4939364734046432" b="-3.406095160137651e-07" c="3.4057937549826324e-06" d="-3.6266183257020683e-07" /> - <width sOffset="238.43446813053959" a="2.4939108000635279" b="-4.1090584682057681e-05" c="7.7812527816984855e-07" d="-2.3073622441769093e-07" /> - <width sOffset="248.43896892694659" a="2.4933465439499169" b="-9.4804265903773374e-05" c="1.3700509624485713e-06" d="-4.9717656379461567e-07" /> - <width sOffset="254.57659792013351" a="2.4927013300842908" b="-0.00013417319069964403" c="2.2739602759105785e-05" d="-1.4898315459305344e-06" /> - <width sOffset="258.44346972335347" a="2.4924363756536394" b="-2.5141934737605252e-05" c="1.3573516006867267e-05" d="-6.5550670590930002e-07" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="798.5388830411955"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="2.4927803807663764" b="0.00036009624290912713" c="-2.9588886405967386e-05" d="-6.5361955915100832e-06" /> - <width sOffset="1.8211806713611622" a="2.4932985630170226" b="0.00018728704600316163" c="-6.2858408425502566e-05" d="-5.6395689874984726e-06" /> - <width sOffset="5.6399188904789526" a="2.4927830591314919" b="-0.00053951403727167148" c="0.00017924103002600177" d="-1.4877129669423311e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="11.825681467768163" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="3.8367118068631161" b="-0.0014083220014319397" c="0.00015835214521287404" d="-2.6251726951125313e-05" /> - <width sOffset="1.8211806713611622" a="3.8345136359416614" b="-0.0010927535017215551" c="1.8680986396279311e-05" d="-2.4872623766666596e-05" /> - <width sOffset="5.0966162281085872" a="3.8302607759124045" b="-0.0017709129646616972" c="0.0041445958999358065" d="-0.00042968423576791181" /> - <width sOffset="5.6399188904789526" a="3.8304531179757841" b="0.0023521272888781313" c="-0.00081943233499350227" d="4.1040440183949404e-06" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.8784296156111022" b="0.00041245282398652116" c="-4.9580432644067161e-05" d="1.4465824403376956e-06" /> - <width sOffset="1.8211806713611622" a="3.8790250611525012" b="0.00024625660853188475" c="-3.7878790286989487e-05" d="2.8417782225465739e-06" /> - <width sOffset="4.7201030083083424" a="3.8794898469160368" b="9.8286053327276623e-05" c="0.0024967076010839638" d="-0.00015872609916830818" /> - <width sOffset="5.0966162281085872" a="3.8798723196282516" b="0.0019108688036205525" c="-0.0020529007652577013" d="0.00024608551282913034" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="3.9033315626152025" b="0.0042626134366445185" c="-0.00022876608473967089" d="2.7329736881597186e-05" /> - <width sOffset="1.8211806713611622" a="3.9105008835956308" b="0.0037012982291136851" c="-7.5624116830550313e-05" d="2.8734201983044764e-05" /> - <width sOffset="4.7201030083083424" a="3.9212951509574023" b="0.0039872665575657277" c="-0.0023356015652147869" d="0.00019030207936542384" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - </link> - <width sOffset="0" a="3.6418882175811791" b="-0.015720655596769436" c="0.0015621671535994402" d="-5.0552295214462318e-05" /> - <width sOffset="1.8211806713611622" a="3.6181339503200314" b="-0.010533678592311049" c="0.0012895296131005827" d="-4.9248525265449273e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="restricted" level="false"> - <link /> - <width sOffset="0" a="0" b="0.088763403321537676" c="-0.0043413495163326949" d="-2.9038109111704293e-08" /> - <width sOffset="1.8211806713611622" a="0.1472550692909822" b="0.072950350735997843" c="-0.0043414563475808925" d="7.4263880899503936e-11" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="-6" type="driving" level="false"> - <link> - <predecessor id="-5" /> - </link> - <width sOffset="0" a="3.3974239477134507" b="-0.073686824363549175" c="0.004760744738382873" d="8.5144843201537872e-05" /> - <width sOffset="1.8211806713611622" a="3.2795311860341858" b="-0.055499272307348343" c="0.0052292208604282128" d="8.6341731774160817e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="11.825681467768163" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-7" type="shoulder" level="false"> - <link> - <predecessor id="-6" /> - </link> - <width sOffset="0" a="2.4927803807664812" b="-4.2061015555201579e-05" c="-3.8762839588668465e-05" d="2.8899436209397741e-06" /> - <width sOffset="1.8211806713611622" a="2.4925926715352631" b="-0.00015449406432860475" c="-2.0532487594707854e-05" d="3.785852304825178e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5172994" s="210.78724072719942" t="9.0497233734097513" orientation="none" validLength="7.3685715275122163" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="7.3685715275122163" s="210.78724072719942" distance="0" tStart="9.0497233734097513" tEnd="8.9336950596599767" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="273608450" s="218.15581225471163" t="8.9336950596599767" orientation="none" validLength="9.1493013721482157" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="9.1493013721482157" s="218.15581225471163" distance="0" tStart="8.9336950596599767" tEnd="9.0157234159963551" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5172999" s="227.30511362685985" t="9.0157234159963551" orientation="none" validLength="14.9764858457917" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.9764858457917" s="227.30511362685985" distance="0" tStart="9.0157234159963551" tEnd="9.6082611806338249" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273608455" s="242.28159947265155" t="9.6082611806338249" orientation="none" validLength="7.6005310701871167" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.6005310701871167" s="242.28159947265155" distance="0" tStart="9.6082611806338249" tEnd="9.8018235954329622" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542043911" s="249.88213054283867" t="9.8018235954329622" orientation="none" validLength="12.945149448944363" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.945149448944363" s="249.88213054283867" distance="0" tStart="9.8018235954329622" tEnd="9.9095169453696439" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810479367" s="262.82727999178303" t="9.9095169453696439" orientation="none" validLength="16.579338064055037" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.579338064055037" s="262.82727999178303" distance="0" tStart="9.9095169453696439" tEnd="9.8172688238160699" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078914823" s="279.40661805583807" t="9.8172688238160699" orientation="none" validLength="51.318209122042674" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="51.318209122042674" s="279.40661805583807" distance="0" tStart="9.8172688238160699" tEnd="9.8378816684339458" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741847" s="330.72482717788074" t="9.8378816684339458" orientation="none" validLength="12.061474555245866" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.061474555245866" s="330.72482717788074" distance="0" tStart="9.8378816684339458" tEnd="9.9349356652079805" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741848" s="342.78630173312661" t="9.9349356652079805" orientation="none" validLength="22.127674581702195" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="22.127674581702195" s="342.78630173312661" distance="0" tStart="9.9349356652079805" tEnd="9.9408537372716133" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741849" s="364.9139763148288" t="9.9408537372716133" orientation="none" validLength="9.8337584139056844" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.8337584139056844" s="364.9139763148288" distance="0" tStart="9.9408537372716133" tEnd="9.7176616914082405" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741850" s="374.74773472873449" t="9.7176616914082405" orientation="none" validLength="4.6408284063330711" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.6408284063330711" s="374.74773472873449" distance="0" tStart="9.7176616914082405" tEnd="9.7352373352562225" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741851" s="379.38856313506756" t="9.7352373352562225" orientation="none" validLength="8.5443052824715551" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.5443052824715551" s="379.38856313506756" distance="0" tStart="9.7352373352562225" tEnd="9.9266113475774986" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741852" s="387.93286841753911" t="9.9266113475774986" orientation="none" validLength="17.967486286352255" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.967486286352255" s="387.93286841753911" distance="0" tStart="9.9266113475774986" tEnd="10.144701824767706" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741853" s="405.90035470389137" t="10.144701824767706" orientation="none" validLength="20.374291246461212" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="20.374291246461212" s="405.90035470389137" distance="0" tStart="10.144701824767706" tEnd="10.220388423588098" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741854" s="426.27464595035258" t="10.220388423588098" orientation="none" validLength="10.765493307407951" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.765493307407951" s="426.27464595035258" distance="0" tStart="10.220388423588098" tEnd="10.422533490362046" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741855" s="437.04013925776053" t="10.422533490362046" orientation="none" validLength="12.504701079138727" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.504701079138727" s="437.04013925776053" distance="0" tStart="10.422533490362046" tEnd="10.363803861088446" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741856" s="449.54484033689926" t="10.363803861088446" orientation="none" validLength="12.729386192840423" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.729386192840423" s="449.54484033689926" distance="0" tStart="10.363803861088446" tEnd="10.455159262208909" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741857" s="462.27422652973968" t="10.455159262208909" orientation="none" validLength="8.5550813213141055" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.5550813213141055" s="462.27422652973968" distance="0" tStart="10.455159262208909" tEnd="10.302579212560694" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741858" s="470.82930785105378" t="10.302579212560694" orientation="none" validLength="22.102253034062414" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="22.102253034062414" s="470.82930785105378" distance="0" tStart="10.302579212560694" tEnd="10.176601367842652" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741859" s="492.9315608851162" t="10.176601367842652" orientation="none" validLength="10.059257722552331" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.059257722552331" s="492.9315608851162" distance="0" tStart="10.176601367842652" tEnd="10.247916798728356" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741860" s="502.99081860766853" t="10.247916798728356" orientation="none" validLength="32.554589780136553" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="32.554589780136553" s="502.99081860766853" distance="0" tStart="10.247916798728356" tEnd="10.104100295295227" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741861" s="535.54540838780508" t="10.104100295295227" orientation="none" validLength="9.9720339544197714" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.9720339544197714" s="535.54540838780508" distance="0" tStart="10.104100295295227" tEnd="10.208527281672689" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741862" s="545.51744234222485" t="10.208527281672689" orientation="none" validLength="12.557206861611917" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.557206861611917" s="545.51744234222485" distance="0" tStart="10.208527281672689" tEnd="9.8946555187279497" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741863" s="558.07464920383677" t="9.8946555187279497" orientation="none" validLength="17.984146758376255" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.984146758376255" s="558.07464920383677" distance="0" tStart="9.8946555187279497" tEnd="10.002505611957748" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741864" s="576.05879596221303" t="10.002505611957748" orientation="none" validLength="8.5356389431144635" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.5356389431144635" s="576.05879596221303" distance="0" tStart="10.002505611957748" tEnd="10.157541939949208" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741865" s="584.59443490532749" t="10.157541939949208" orientation="none" validLength="12.243283111403343" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.243283111403343" s="584.59443490532749" distance="0" tStart="10.157541939949208" tEnd="10.177611142402938" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741866" s="596.83771801673083" t="10.177611142402938" orientation="none" validLength="4.5175539928463877" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.5175539928463877" s="596.83771801673083" distance="0" tStart="10.177611142402938" tEnd="10.270258365319268" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741867" s="601.35527200957722" t="10.270258365319268" orientation="none" validLength="14.723562054446575" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.723562054446575" s="601.35527200957722" distance="0" tStart="10.270258365319268" tEnd="10.327631911884751" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741868" s="616.07883406402379" t="10.327631911884751" orientation="none" validLength="18.565761989826115" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.565761989826115" s="616.07883406402379" distance="0" tStart="10.327631911884751" tEnd="10.534927944014804" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741869" s="634.64459605384991" t="10.534927944014804" orientation="none" validLength="57.873547640499282" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="57.873547640499282" s="634.64459605384991" distance="0" tStart="10.534927944014804" tEnd="10.308207903577332" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741870" s="692.51814369434919" t="10.308207903577332" orientation="none" validLength="72.206654013622483" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="72.206654013622483" s="692.51814369434919" distance="0" tStart="10.308207903577332" tEnd="10.452203371358873" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741871" s="764.72479770797167" t="10.452203371358873" orientation="none" validLength="29.723446688255081" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="29.723446688255081" s="764.72479770797167" distance="0" tStart="10.452203371358873" tEnd="10.673753377253329" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741872" s="794.44824439622676" t="10.673753377253329" orientation="none" validLength="15.916320112736912" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.916320112736912" s="794.44824439622676" distance="0" tStart="10.673753377253329" tEnd="10.64403897037786" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5173312" s="0" t="9.5738595799752559" orientation="none" validLength="81.224866962122462" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="81.224866962122462" s="0" distance="0" tStart="9.5738595799752559" tEnd="9.6162584421932316" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273608768" s="81.224866962122462" t="9.6162584421932316" orientation="none" validLength="69.308020442948134" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="69.308020442948134" s="81.224866962122462" distance="0" tStart="9.6162584421932316" tEnd="9.4326317798498795" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542044224" s="150.5328874050706" t="9.4326317798498795" orientation="none" validLength="49.214645003811768" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="49.214645003811768" s="150.5328874050706" distance="0" tStart="9.4326317798498795" tEnd="9.2054658395630327" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810479680" s="199.74753240888236" t="9.2054658395630327" orientation="none" validLength="12.892945528137801" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="12.892945528137801" s="199.74753240888236" distance="0" tStart="9.2054658395630327" tEnd="9.0796132834822085" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078915136" s="212.64047793702017" t="9.0796132834822085" orientation="none" validLength="1.3774419791999435" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="1.3774419791999435" s="212.64047793702017" distance="0" tStart="9.0796132834822085" tEnd="9.1892959950212081" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5173983" s="784.41125515903013" t="-11.322756361003448" orientation="none" validLength="10.439287902629076" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.439287902629076" s="784.41125515903013" distance="0" tStart="-11.322756361003448" tEnd="-11.214227898638967" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273609439" s="794.85054306165921" t="-11.214227898638967" orientation="none" validLength="5.9304405217363865" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.9304405217363865" s="794.85054306165921" distance="0" tStart="-11.214227898638967" tEnd="-11.308353204057587" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542044895" s="800.7809835833956" t="-11.308353204057587" orientation="none" validLength="9.5835809255680715" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.5835809255680715" s="800.7809835833956" distance="0" tStart="-11.308353204057587" tEnd="-11.622012827737437" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5174155" s="0" t="-14.299190097099501" orientation="none" validLength="127.74854113924131" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="127.74854113924131" s="0" distance="0" tStart="-14.299190097099501" tEnd="-14.262356699944979" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273609611" s="127.74854113924131" t="-14.262356699944979" orientation="none" validLength="8.4276074057721218" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.4276074057721218" s="127.74854113924131" distance="0" tStart="-14.262356699944979" tEnd="-14.098472250191108" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542045067" s="136.17614854501343" t="-14.098472250191108" orientation="none" validLength="10.787097766744552" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.787097766744552" s="136.17614854501343" distance="0" tStart="-14.098472250191108" tEnd="-13.666420638683139" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810480523" s="146.96324631175798" t="-13.666420638683139" orientation="none" validLength="15.838946121190844" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.838946121190844" s="146.96324631175798" distance="0" tStart="-13.666420638683139" tEnd="-12.494415827084707" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078915979" s="162.80219243294883" t="-12.494415827084707" orientation="none" validLength="13.442982607442701" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.442982607442701" s="162.80219243294883" distance="0" tStart="-12.494415827084707" tEnd="-11.704522939534927" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741873" s="176.24517504039153" t="-11.704522939534927" orientation="none" validLength="8.4308678084614144" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.4308678084614144" s="176.24517504039153" distance="0" tStart="-11.704522939534927" tEnd="-11.427536134883976" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741874" s="184.67604284885294" t="-11.427536134883976" orientation="none" validLength="19.225547733982324" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.225547733982324" s="184.67604284885294" distance="0" tStart="-11.427536134883976" tEnd="-11.324840532343968" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741875" s="203.90159058283527" t="-11.324840532343968" orientation="none" validLength="87.26858665429242" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="87.26858665429242" s="203.90159058283527" distance="0" tStart="-11.324840532343968" tEnd="-11.333074872219969" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741876" s="291.17017723712769" t="-11.333074872219969" orientation="none" validLength="63.544147576661942" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="63.544147576661942" s="291.17017723712769" distance="0" tStart="-11.333074872219969" tEnd="-11.179637520965864" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741877" s="354.71432481378963" t="-11.179637520965864" orientation="none" validLength="18.768293665507088" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.768293665507088" s="354.71432481378963" distance="0" tStart="-11.179637520965864" tEnd="-11.25155248046911" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741878" s="373.48261847929672" t="-11.25155248046911" orientation="none" validLength="14.411281407768854" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.411281407768854" s="373.48261847929672" distance="0" tStart="-11.25155248046911" tEnd="-11.066344094708892" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741879" s="387.89389988706557" t="-11.066344094708892" orientation="none" validLength="37.372559190536037" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="37.372559190536037" s="387.89389988706557" distance="0" tStart="-11.066344094708892" tEnd="-10.862929391296824" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741880" s="425.26645907760161" t="-10.862929391296824" orientation="none" validLength="11.184419519845846" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.184419519845846" s="425.26645907760161" distance="0" tStart="-10.862929391296824" tEnd="-11.036891761836436" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412696" s="42.034194465647474" t="-14.628137984124391" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848152" s="90.739274107500307" t="-14.112536010587998" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283608" s="150.72827549461641" t="-13.532521715172463" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719064" s="220.13074181670561" t="-11.61427206705266" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154520" s="268.54916249114416" t="-11.945446630825252" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741881" s="308.35956741114825" t="-10.841387672125823" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741882" s="356.51155388585954" t="-11.122327202221406" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741883" s="449.31009991894553" t="-11.207158668281613" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741884" s="499.2878871745562" t="-10.913758745710281" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741885" s="602.11516996008936" t="-12.248667144072323" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741886" s="645.99601494551462" t="-12.930232889471039" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="148.21037829549289" id="4940168" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556490" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-563.13465225446271" y="-223.09689532607879" hdg="1.2518580200767282" length="148.21037829549289"> - <paramPoly3 aU="0" bU="148.18713016636738" cU="0.037399877851305385" dU="-0.021314317598637111" aV="-0" bV="7.1054273576010019e-15" cV="3.6086271350797423" dV="-2.2478177016941969" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.97593924436515" b="-0.00046532277977402362" c="-0.00017925958253698797" d="3.2330195150923071e-06" /> - <elevation s="10.586455592535206" a="156.9547587950108" b="-0.0031737670040738191" c="-0.00011752369690624789" d="1.9438638705567312e-06" /> - <elevation s="21.172911185070411" a="156.91029492284162" b="-0.0050085215891152012" c="4.9545260383296421e-05" d="-2.6660073787006469e-06" /> - <elevation s="31.759366777605617" a="156.85966201829928" b="-0.004855866862256494" c="4.6596839050754832e-05" d="-1.1657781889431699e-06" /> - <elevation s="42.345822370140823" a="156.8120947040432" b="-0.0042612330513706635" c="-1.1769401717333188e-05" d="7.0694652374352375e-06" /> - <elevation s="47.996316752455343" a="156.78891625465684" b="-0.003717095429502131" c="4.911940595718203e-08" d="5.3108532281000808e-06" /> - <elevation s="52.932277962676025" a="156.7712086869405" b="-0.0033284342139373113" c="7.8617381911817759e-05" d="-2.6923714347043009e-06" /> - <elevation s="63.518733555211234" a="156.7415888740847" b="-0.0025691021398620197" c="5.6661408646147735e-05" d="-2.9402708509215367e-06" /> - <elevation s="74.105189147746444" a="156.71725290197705" b="-0.0023579904627884685" c="3.0349532592858301e-05" d="-3.0246097051277459e-06" /> - <elevation s="84.691644740281646" a="156.69210293791002" b="-0.002732334136356067" c="-1.9421741800511929e-05" d="-9.7730510151814903e-07" /> - <elevation s="95.278100332816848" a="156.65984102044925" b="-0.003472137617662741" c="-0.00024703973374601149" d="9.8270836727439274e-06" /> - <elevation s="105.86455592535205" a="156.60705630045084" b="-0.0053986344754966527" c="-0.00014574683230957075" d="1.0456511021322292e-05" /> - <elevation s="116.45101151788727" a="156.5459757986481" b="-0.0049688402144951755" c="9.6146351855444449e-05" d="-1.5657822067722818e-06" /> - <elevation s="127.03746711042247" a="156.50229107436573" b="-0.0034595879710183968" c="1.5169270818498974e-05" d="4.8880604269061263e-06" /> - <elevation s="137.62392270295769" a="156.47316583627003" b="-0.0014949509424799395" c="6.5463248641533503e-05" d="1.8525186125241518e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028198181843912082" b="0" c="-1.8947798104209926e-06" d="-4.569077633030524e-23" /> - <superelevation s="10.586455592535206" a="0.027985828106613923" b="-4.0118004641306922e-05" c="-1.1000334927318215e-05" d="6.3623932598237894e-07" /> - <superelevation s="21.172911185070411" a="0.027083149778968363" b="-5.9111288930542764e-05" c="4.317835658518468e-06" d="-1.7448066807792118e-07" /> - <superelevation s="31.759366777605617" a="0.026734270036052506" b="-2.6353875752715141e-05" c="-6.1867966994069377e-07" d="1.1734348941201429e-07" /> - <superelevation s="42.345822370140823" a="0.026525161508273744" b="0" c="3.7291620232906185e-06" d="-1.4477652035363168e-07" /> - <superelevation s="52.932277962676025" a="0.026771329028266396" b="3.0280581169726206e-05" c="4.8517782843636984e-06" d="-3.9559573377487591e-07" /> - <superelevation s="63.518733555211234" a="0.027166289564012673" b="0" c="-8.2492100581893707e-07" d="0" /> - <superelevation s="74.105189147746444" a="0.027073838157470345" b="-1.7465979190904622e-05" c="-4.1517933373485308e-06" d="7.9083132328313673e-08" /> - <superelevation s="84.691644740281646" a="0.02651745991444274" b="-7.8782269145567357e-05" c="-1.4873918081770354e-05" d="1.1709816163766375e-06" /> - <superelevation s="95.278100332816848" a="0.025405788169892935" b="0" c="2.0533279305453035e-06" d="0" /> - <superelevation s="105.86455592535205" a="0.025635910877318837" b="4.3474929907261434e-05" c="2.1025758282304256e-05" d="-1.4533719374482745e-06" /> - <superelevation s="116.45101151788727" a="0.026728214717660698" b="0" c="-1.1071924393419279e-05" d="5.6966502736060776e-07" /> - <superelevation s="127.03746711042247" a="0.026163233120524092" b="-4.2892594195991159e-05" c="1.0006782926453165e-06" d="-1.0518776960125734e-09" /> - <superelevation s="137.62392270295769" a="0.025820053630251711" b="-2.2058982980637149e-05" c="9.7840697960994147e-07" d="4.5690776330305293e-23" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="5.7781324235740543" b="0.034704787831218067" c="-0.01508961510039708" d="0.002888232031537593" /> - <laneOffset s="2.4985758724520606" a="5.8156938385240862" b="0.013392361404865681" c="-0.0010932898123441857" d="7.5569827833198416e-05" /> - <laneOffset s="8.2643090394547123" a="5.8710504302953348" b="0.0083217840255844552" c="-0.00028499133463974626" d="7.133066025359725e-06" /> - <laneOffset s="10.586455592535206" a="5.888927374458194" b="0.0071135930132761351" c="-0.00024780144793026603" d="5.3206341662742557e-06" /> - <laneOffset s="19.366020755967057" a="5.9358815653490602" b="0.003992770740711105" c="-0.000327699287807649" d="1.9004018198408797e-05" /> - <laneOffset s="21.172911185070411" a="5.9421382836818797" b="0.0029946733059620966" c="-0.00024590580713221402" d="1.1819253757229408e-05" /> - <laneOffset s="31.759366777605617" a="5.9603048756691024" b="0.0017619906603379776" c="0.00012213867981511456" d="1.3472095629832484e-05" /> - <laneOffset s="33.984080662719826" a="5.9649776478477037" b="0.0025054723192438713" c="-5.2742537382087497e-06" d="5.5101562382946328e-06" /> - <laneOffset s="41.18122002559933" a="5.9847908855819734" b="0.0032858119318355077" c="0.001514296536563625" d="-0.00056751963425594773" /> - <laneOffset s="42.345822370140823" a="5.9897749633481592" b="0.0045037402336242909" c="-0.00046823899899016907" d="-0.00056914817370334674" /> - <laneOffset s="43.718680635485988" a="5.9936027917895789" b="-0" c="-0.00070007618142584982" d="4.1684088876713243e-05" /> - <laneOffset s="53.513438639381256" a="5.9656091922729511" b="-0.001716978699797557" c="0.0002828622955081352" d="-2.0555477005428428e-05" /> - <laneOffset s="62.687416340318592" a="5.9577930217348589" b="-0.0017169958736999752" c="-0.0002721114326595627" d="6.3349281221494787e-06" /> - <laneOffset s="74.105189147746444" a="5.9121442397977066" b="-0.005453240008266848" c="-5.8764577831426982e-05" d="6.7268690619034989e-06" /> - <laneOffset s="79.498164431663383" a="5.8820810427898573" b="-0.0055001353793027721" c="-0.00013132395839685036" d="1.1014914102869421e-05" /> - <laneOffset s="84.691644740281646" a="5.8515170637833904" b="-0.005972901518458063" c="-1.700945083535453e-06" d="2.9551854583066711e-05" /> - <laneOffset s="85.927493896541449" a="5.8441886409260544" b="-0.005841700047811183" c="-9.5065406002666042e-05" d="2.834687206317053e-06" /> - <laneOffset s="95.278100332816848" a="5.7835707945607133" b="-0.0068759956731665756" c="-1.9792515524379732e-05" d="2.411408265485148e-06" /> - <laneOffset s="105.86455592535205" a="5.7114211947743581" b="-0.0064842992669506124" c="6.2037879436494049e-05" d="2.1946359938547597e-06" /> - <laneOffset s="116.45101151788727" a="5.6523320620670061" b="-0.0044328981597060117" c="0.00013329483981143215" d="2.688974888085552e-06" /> - <laneOffset s="124.91409997498569" a="5.6259930912362064" b="-0.0015989417862468961" c="2.2807729459084367e-05" d="3.6140288776575988e-06" /> - <laneOffset s="127.03746711042247" a="5.6227353829982682" b="-0.0014531998341047452" c="3.2976756235632618e-05" d="8.4446371511751548e-08" /> - <laneOffset s="137.62392270295769" a="5.6111471448024828" b="-0.00072659341792926302" c="3.3838092812256406e-05" d="3.0165879144956121e-08" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4931786441896131" b="-0.0067512631183931499" c="0.006019795986884539" d="-0.0013279103388643564" /> - <width sOffset="2.4985758724520606" a="2.4931778125358894" b="-0.0015393893264186737" c="0.00070978730519529929" d="-6.9320793856724776e-05" /> - <width sOffset="8.2643090394547123" a="2.4946110392573546" b="-0.00026793555948922965" c="9.5796148704845084e-06" d="-8.840320487004265e-07" /> - <width sOffset="10.586455592535206" a="2.4940294406713326" b="-0.00023774608960180823" c="4.2955226640125732e-06" d="1.7698518983823435e-06" /> - <width sOffset="16.777798139788111" a="2.493142173018982" b="1.8973740123464505e-05" c="-0.00010963504888707268" d="3.0755731021478325e-06" /> - <width sOffset="19.366020755967057" a="2.4925101724667549" b="-0.00048673725006494672" c="0.00013428215769225761" d="-1.0607810929750882e-05" /> - <width sOffset="21.172911185070411" a="2.4920065251622869" b="-0.00010536978973309675" c="8.2184855441782336e-05" d="-5.3672560097609577e-06" /> - <width sOffset="31.759366777605617" a="2.4937337247072495" b="-0.00016985126953199649" c="-8.4498500271284023e-05" d="-7.0579979619175177e-06" /> - <width sOffset="33.984080662719826" a="2.4928599265670481" b="-0.00065061878942608477" c="8.5723029708970519e-05" d="9.0394142961785397e-07" /> - <width sOffset="41.18122002559933" a="2.4929546761646568" b="0.00072377167809555085" c="-0.0012953582961904293" d="0.00057393373193967922" /> - <width sOffset="41.681675067313364" a="2.4930643998333313" b="-0.0001415313553761394" c="-0.0016495873645873335" d="0.00060674719198913632" /> - <width sOffset="42.345822370140823" a="2.4924205294521045" b="-0.0015297760116484505" c="-0.00044094738574129732" d="0.00060837573143821021" /> - <width sOffset="43.718680635485988" a="2.4910634531395512" b="0.00069939735586758305" c="-4.754857270885583e-05" d="-2.4565311418275532e-06" /> - <width sOffset="48.972652644597623" a="2.4930692507642487" b="-3.6722763335156686e-06" c="0.00035901653195528828" d="-5.3703609886026377e-05" /> - <width sOffset="52.932277962676025" a="2.4953495970103035" b="0.00031347210705712485" c="-0.00027111984191522157" d="-5.2948159250257413e-05" /> - <width sOffset="53.513438639381256" a="2.495429811593886" b="-5.5305636668593131e-05" c="-0.0001215157935586859" d="9.2914066302626219e-06" /> - <width sOffset="62.687416340318592" a="2.4918693294801644" b="6.1074385693072469e-05" c="0.00012344894328789434" d="-1.759899850221317e-05" /> - <width sOffset="63.518733555211234" a="2.4919953049260144" b="0.00022983746262712594" c="8.1401737603788881e-05" d="-1.7356437664365207e-05" /> - <width sOffset="67.688374614266507" a="2.493110667591619" b="3.3973069983889853e-06" c="7.1723217191186373e-05" d="-4.9244603411630412e-06" /> - <width sOffset="74.105189147746444" a="2.4947845881795168" b="0.00031556499221527604" c="-2.4070206519945932e-05" d="-5.2408475430964695e-06" /> - <width sOffset="79.498164431663383" a="2.4949643317175019" b="-0.00040133236329227811" c="7.2531406012489499e-05" d="-9.5288925840724592e-06" /> - <width sOffset="84.691644740281646" a="2.4935015490875525" b="-0.00041899817337225" c="-4.3699618322055716e-05" d="-2.7872083450382018e-05" /> - <width sOffset="85.927493896541449" a="2.4928643774098198" b="-0.00065471948002858611" c="5.5892673808175169e-05" d="-1.1549160736324498e-06" /> - <width sOffset="95.278100332816848" a="2.4906850518341184" b="8.7605066772528627e-05" c="2.2603060922893134e-05" d="-1.2176343387736048e-06" /> - <width sOffset="105.86455592535205" a="2.4927010028687278" b="0.00015678571498768754" c="-2.1782590682975611e-06" d="-4.2724389110506646e-06" /> - <width sOffset="109.41265375595725" a="2.4930390348072908" b="-2.002881504613134e-05" c="6.9555851377082068e-05" d="-4.2821304968121561e-06" /> - <width sOffset="116.45101151788727" a="2.4948507075002775" b="0.00032269841008204792" c="-1.6039180012190064e-05" d="-3.6605251465903056e-06" /> - <width sOffset="124.91409997498569" a="2.4942140839207267" b="-0.00073532647868460596" c="6.9780983005390411e-05" d="-4.5855791360081132e-06" /> - <width sOffset="127.03746711042247" a="2.4929234360222221" b="-0.00050101002345981208" c="4.8234021191672467e-05" d="-1.1387847799015905e-06" /> - <width sOffset="137.62392270295769" a="2.4916741307845074" b="0.00013736339988675776" c="1.1259017675268748e-05" d="-1.162824492407749e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16603545738128378" weight="standard" type="solid"> - <type name="solid"> - <line length="148.21037829549289" space="0" width="0.16603499999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.6536873698155201" b="-4.1617348541189703e-05" c="-0.010613648923315743" d="0.0026249735536443457" /> - <width sOffset="2.4985758724520606" a="3.6282687929901116" b="-0.0039174359404737548" c="0.0014093625214895646" d="-0.00018768865006004804" /> - <width sOffset="5.8192425222107076" a="3.6239286049987145" b="-0.00076622051697584209" c="0.00035555682700501491" d="4.9731017878015829e-05" /> - <width sOffset="8.2643090394547123" a="3.6249077294895149" b="0.0018644280014322948" c="0.00022149585646765525" d="-1.8705743929949786e-05" /> - <width sOffset="10.586455592535206" a="3.6301973602415223" b="0.0025905151057312361" c="8.1876266235720468e-05" d="-2.0500614807710262e-05" /> - <width sOffset="19.003176668788608" a="3.6455777125432247" b="-0.00038808957510283373" c="-0.00035585714519982667" d="2.1441209409140446e-05" /> - <width sOffset="19.366020755967057" a="3.6453910701253753" b="-0.00063786231635108541" c="-0.00055255410000905358" d="3.5124593433293605e-05" /> - <width sOffset="21.172911185070411" a="3.6426417230015096" b="-0.0022906418409556553" c="-0.0003762352464802346" d="2.9917516976525304e-05" /> - <width sOffset="31.759366777605617" a="3.6117219422586335" b="-0.00019779588829528646" c="0.00056978006772019781" d="3.0725799416831168e-05" /> - <width sOffset="33.724998955426358" a="3.6137679643132703" b="0.0023983069048385264" c="0.00072296211553135755" d="-8.2727458127658025e-05" /> - <width sOffset="33.984080662719826" a="3.6144364107203688" b="0.0027562605955486104" c="0.0004413349940787291" d="-9.06893974576062e-05" /> - <width sOffset="36.463910522799466" a="3.6226024823942629" b="0.0032720333672480563" c="7.644679867440445e-07" d="6.798351924110341e-06" /> - <width sOffset="41.18122002559933" a="3.6387683406461742" b="0.0037330971899847583" c="0.001497572961618888" d="-0.00056623143857010617" /> - <width sOffset="42.345822370140823" a="3.6442526804786777" b="0.0049173143966903454" c="-0.00048042095576051588" d="-0.00056778278440593015" /> - <width sOffset="43.718680635485988" a="3.6486288607275918" b="0.00038784617370807788" c="-0.00070663468024907792" d="4.3049478174129511e-05" /> - <width sOffset="52.932277962676025" a="3.6258868016108381" b="-0.0016699895001229749" c="0.00048151035879615754" d="4.3169327570310001e-05" /> - <width sOffset="53.513438639381256" a="3.6250873719362544" b="-0.0010665787007398766" c="0.00031485709313076887" d="-1.9070238309798756e-05" /> - <width sOffset="59.17791304326304" a="3.625682302753507" b="0.00066474272740777124" c="0.0024188788295946436" d="-0.00045101925809585728" /> - <width sOffset="62.137613355865" a="3.6371453669676193" b="0.0031305049935168154" c="-0.00041124597730710067" d="-1.2024180426475342e-05" /> - <width sOffset="62.687416340318592" a="3.6387402167818728" b="0.0026673923345820394" c="-0.00042032603327723546" d="1.4866224713044591e-05" /> - <width sOffset="63.518733555211234" a="3.6406757243881858" b="0.0019993654223372584" c="-0.00038445036264076566" d="1.4203283339229835e-05" /> - <width sOffset="74.105189147746444" a="3.6356069707493308" b="-0.0013651524497356972" c="6.2991467061572449e-05" d="1.4595224273871303e-05" /> - <width sOffset="74.508141004574497" a="3.6350680628990757" b="-0.0013072779041000708" c="2.3892013305115155e-05" d="5.171767676270036e-06" /> - <width sOffset="79.498164431663383" a="3.6297822435753671" b="-0.00068249826740394808" c="-8.0079157435098558e-05" d="9.4598127172451414e-06" /> - <width sOffset="84.691644740281646" a="3.6254029167284014" b="-0.00074882036986826349" c="2.7967102550420353e-05" d="2.7952568198703138e-05" /> - <width sOffset="85.927493896541449" a="3.6245729641277271" b="-0.00055161631724150086" c="-7.1326788554891077e-05" d="1.235400821952958e-06" /> - <width sOffset="95.278100332816848" a="3.6141886555679217" b="-0.0015614662574238167" c="-3.9547750389126601e-05" d="9.581460951687205e-07" /> - <width sOffset="101.04252124787621" a="3.6040571189773023" b="-0.0019218926044574777" c="5.2397351985951365e-05" d="1.1821005600392322e-06" /> - <width sOffset="105.86455592535205" a="3.5961405699116491" b="-0.0013341102358624991" c="7.2013639070709387e-05" d="9.0891461046566838e-07" /> - <width sOffset="116.45101151788727" a="3.5911662461909453" b="0.00049622262426933517" c="0.00010156671712112715" d="1.2596301745905505e-06" /> - <width sOffset="124.91409997498569" a="3.603403959427895" b="0.0024860175962377745" c="-4.5210405469163774e-05" d="2.1846841641620706e-06" /> - <width sOffset="127.03746711042247" a="3.6084997631697253" b="0.0023235711957013648" c="-4.4146449462726729e-05" d="-1.3448983420113121e-06" /> - <width sOffset="127.91163864565584" a="3.6104963288974758" b="0.0022433048401044823" c="0.00078972192047560173" d="-0.00039666461322206299" /> - <width sOffset="129.92395718606818" a="3.6149761784732437" b="0.00060285707998175954" c="-6.4732906798193246e-05" d="3.2785355497229843e-08" /> - <width sOffset="137.62392270295769" a="3.6157951449279429" b="-0.00038819374137523312" c="-6.3355492101638131e-05" d="-6.8912294154616631e-07" /> - <width sOffset="139.33237534274684" a="3.6149435752205941" b="-0.00061070771450085534" c="-0.00057404694137958164" d="9.9677049119830329e-05" /> - <width sOffset="143.40033763348742" a="3.6096697810435137" b="-0.00033264805694309282" c="0.0018516342994367712" d="-0.00025184205335605087" /> - <roadMark sOffset="0" color="standard" width="0.309946502090447" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30994699999999997" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - <speed sOffset="16.596370165599318" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.7660633390009002" b="-4.2978790217841623e-05" c="-0.0031549292013040341" d="0.00025041567074556253" /> - <width sOffset="4.9299934943399997" a="3.7191768949197295" b="-0.012891604346885153" c="-0.0010860198638761684" d="0.0041791482405902176" /> - <width sOffset="5.3631186734603569" a="3.7137290509801915" b="-0.011480377149947821" c="0.00010851808665151381" d="0.00026334780653216461" /> - <width sOffset="5.8192425222107076" a="3.7085401449235276" b="-0.011217014059194997" c="-0.00034707289601134344" d="2.5928138598080935e-05" /> - <width sOffset="10.586455592535206" a="3.6499876449922546" b="-0.012758401391668008" c="1.8984808185382868e-05" d="2.5875719740716423e-05" /> - <width sOffset="19.003176668788608" a="3.5593770581628323" b="-0.0069396211003717708" c="0.00059244049652141997" d="-1.606610446804839e-05" /> - <width sOffset="21.172911185070411" a="3.5469448749806611" b="-0.0045956494194016517" c="0.00047953734024318306" d="-1.8079345416449479e-05" /> - <width sOffset="31.759366777605617" a="3.5305860920122392" b="-0.00052106961976833982" c="-9.8856748488051409e-05" d="-1.7118592373764293e-05" /> - <width sOffset="33.724998955426358" a="3.5290498975903382" b="-0.0011081254537682376" c="-0.00017179850421238953" d="9.6334665109035734e-05" /> - <width sOffset="35.308477350710262" a="3.5272469257087202" b="-0.0009275541690069762" c="0.00010970075283770156" d="9.3838885576529743e-05" /> - <width sOffset="36.463910522799466" a="3.5264664017781575" b="-0.00029821838721028006" c="0.00020086213518645958" d="-3.6488638054258371e-06" /> - <width sOffset="42.345822370140823" a="3.5309189834999453" b="0.0016859703720166648" c="0.00013646604908867119" d="-3.7667744948947024e-06" /> - <width sOffset="50.351893413245911" a="3.5512310875283148" b="0.0031467653444305164" c="0.00012486436250955745" d="-5.9005061144549139e-06" /> - <width sOffset="52.932277962676025" a="3.560080969399924" b="0.0036732979740189769" c="8.2770321921201592e-05" d="-5.7691087371761593e-06" /> - <width sOffset="59.17791304326304" a="3.5848462243992407" b="0.0040320809801301866" c="-0.0024534152886259023" d="0.00042617991104887534" /> - <width sOffset="60.195625742760413" a="3.586857855978359" b="0.00036257082940562447" c="-0.0010039693420565946" d="0.00042413580869806778" /> - <width sOffset="62.137613355865" a="3.5868819850148661" b="0.0012618291208704039" c="0.00029250940762200292" d="-1.4859268981875003e-05" /> - <width sOffset="63.518733555211234" a="3.5891435359466284" b="0.0019847785686726849" c="0.00023270987251869287" d="-1.405878840410267e-05" /> - <width sOffset="74.105189147746444" a="3.6195556716196489" b="0.0021850904810172302" c="-0.00021492487383091072" d="-1.3838877665585303e-05" /> - <width sOffset="74.508141004574497" a="3.6204003550503838" b="0.0020051406630854926" c="-0.00017491110626367801" d="-4.4154210679876755e-06" /> - <width sOffset="77.202537490049124" a="3.6244468154302458" b="0.00096641606682229455" c="-0.00020719868081918336" d="1.1369278974811643e-05" /> - <width sOffset="84.691644740281646" a="3.6248388595207066" b="-0.00022405326672890642" c="4.0228039559606372e-05" d="1.2392841269140233e-05" /> - <width sOffset="87.47781866586223" a="3.6247949264738333" b="0.00028871951176896119" c="0.00021489099803194449" d="-8.4558981348816038e-06" /> - <width sOffset="95.278100332816848" a="3.6361087344538192" b="0.0020976581410985856" c="1.4426921187311985e-05" d="-8.7436168747612239e-06" /> - <width sOffset="101.04252124787621" a="3.6470051229864575" b="0.001392370741765632" c="-0.00021215437297414732" d="-8.9675713396322269e-06" /> - <width sOffset="104.86226102202959" a="3.6487284203011279" b="-0.00062089993155409196" c="-5.5379713065903442e-05" d="-9.6570467206733125e-06" /> - <width sOffset="105.86455592535205" a="3.6480407375919741" b="-0.00076101780453351805" c="-7.5295687334730842e-05" d="-6.4791940747225691e-06" /> - <width sOffset="114.98339950951529" a="3.6299271230288466" b="-0.0037505362628028598" c="-1.4520408984660517e-05" d="-2.2243508875932903e-08" /> - <width sOffset="116.45101151788727" a="3.624391445367281" b="-0.0037933006458677658" c="-1.1497278509831776e-05" d="1.4688772610153296e-06" /> - <width sOffset="127.03746711042247" a="3.5846880602075908" b="-0.0035428668736706089" c="3.2726684010111699e-05" d="1.8663382350463447e-06" /> - <width sOffset="127.91163864565584" a="3.5816172425285848" b="-0.0034813707705099567" c="-0.00079977420219190336" d="0.000397186053114585" /> - <width sOffset="129.78302502917109" a="3.5749044350800281" b="-0.0023018035389476086" c="0.0011165563150645705" d="0.00041647048499161019" /> - <width sOffset="129.92395718606818" a="3.5746033796165162" b="-0.0019622705079360074" c="-0.00024755327299909037" d="1.9773086406384149e-05" /> - <width sOffset="137.62392270295769" a="3.553843607453322" b="-0.0022575664610281301" c="0.00020458885325787447" d="2.118543134839217e-05" /> - <width sOffset="139.07836271864662" a="3.5510580804076017" b="-0.0015279953162489731" c="0.00042012528907177035" d="-6.3514147356949128e-05" /> - <width sOffset="139.33237534274684" a="3.5506960168396131" b="-0.0013268553201749992" c="0.00087888455090859318" d="-0.00016388031940847502" /> - <width sOffset="143.40033763348742" a="3.5488103958354262" b="-0.0023121474228328985" c="-0.0023303261373372954" d="0.00018763878306636561" /> - <width sOffset="143.87151787404144" a="3.5472232283930816" b="-0.0043831811629876398" c="-0.0042697085992872644" d="0.00073365129512675592" /> - <roadMark sOffset="0" color="standard" width="0.30101077355352895" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30101099999999997" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.4112627774108573" b="-0.0065403820169963184" c="0.011143818054599538" d="-0.0045245792810887451" /> - <width sOffset="1.3048470945821915" a="3.411650226365158" b="-0.00056942295276091182" c="-0.00098526529197626297" d="0.00035539999003203747" /> - <width sOffset="2.2881305444766498" a="3.4104755951422376" b="-0.0014761615216517879" c="-0.0010158075125444696" d="0.00040012936259518038" /> - <width sOffset="4.1994216883146001" a="3.4067371491833605" b="-0.00097411102516223314" c="0.0013660579423693849" d="-0.00010575448480150649" /> - <width sOffset="4.9299934943399997" a="3.4067133672487833" b="0.00085256114922983503" c="0.0027690077530416772" d="-0.004034487054646198" /> - <width sOffset="5.3631186734603569" a="3.4072742768135487" b="0.00098063701031061989" c="0.0017624390087348299" d="-0.00011868662059198617" /> - <width sOffset="10.586455592535206" a="3.443567553108791" b="0.0096777927795004635" c="-0.00011112538850047591" d="-0.00011356916405544154" /> - <width sOffset="12.295966197753726" a="3.4592197043621469" b="0.0083021601121569446" c="0.00034834607261640386" d="-3.1264316174949026e-05" /> - <width sOffset="21.172911185070411" a="3.5384977130190425" b="0.0070957593293242303" c="-0.0004938833276736073" d="-2.9902261832390001e-05" /> - <width sOffset="23.945947339827285" a="3.5537390482023445" b="0.0036668257653969891" c="-0.00034057114406447814" d="-1.358128051536563e-05" /> - <width sOffset="27.117664499193502" a="3.5615097729961986" b="0.0010965606030548854" c="-0.0017914420909780761" d="0.00035424359300119152" /> - <width sOffset="30.963873804680134" a="3.5593818204852039" b="0.0030373610089362213" c="-0.00022923168496736184" d="3.1790241171561893e-07" /> - <width sOffset="31.759366777605617" a="3.5616531199652153" b="0.0026732601343976595" c="-0.00022744893864568667" d="2.0170880185369173e-07" /> - <width sOffset="35.308477350710262" a="3.5682848441117048" b="0.0010663995530934291" c="-4.9168952406109884e-05" d="2.6974879347996047e-06" /> - <width sOffset="35.450393300760382" a="3.5684352006579632" b="0.0010526068192550082" c="0.00053881739460267175" d="-0.00012922316584358697" /> - <width sOffset="39.712197218884853" a="3.5727049489088865" b="-0.001395955489476865" c="-0.0018574177651475602" d="0.00050828873101392276" /> - <width sOffset="41.971430186892754" a="3.5659319461651329" b="-0.0020055136131446128" c="0.00070349507974832421" d="-4.2525689221983281e-05" /> - <width sOffset="42.345822370140823" a="3.5652774744246365" b="-0.0014966299101873389" c="0.0006556995121763154" d="-4.2484972154149318e-05" /> - <width sOffset="49.88170111223161" a="3.5730540726497657" b="0.0011478171669874943" c="0.00016641007059479024" d="-1.0658626519555393e-05" /> - <width sOffset="50.351893413245911" a="3.5736294495467291" b="0.0012972373819666876" c="7.2505752160140484e-05" d="-8.5248948992459222e-06" /> - <width sOffset="52.932277962676025" a="3.5773131241563481" b="0.0015011367449921115" c="1.1550679410908985e-05" d="-8.219640835586406e-06" /> - <width sOffset="59.056482243203611" a="3.5850516112299453" b="0.00071775964470764328" c="4.9482521429776071e-05" d="-1.4988919932667724e-07" /> - <width sOffset="60.195625742760413" a="3.5859332317868096" b="0.00082991151974471603" c="-9.9289537824887603e-05" d="1.8942131516873227e-06" /> - <width sOffset="63.518733555211234" a="3.5876641707319186" b="0.00023276548831372996" c="-7.8960314311248106e-05" d="2.1276580723297342e-06" /> - <width sOffset="74.105189147746444" a="3.5838033829009754" b="-0.00072369489615645936" c="-1.489814580786725e-05" d="3.0136648142497063e-06" /> - <width sOffset="76.660186301585384" a="3.5819073543099376" b="-0.00074080463017521178" c="0.0020788883905008258" d="-0.00086188717410266933" /> - <width sOffset="77.202537490049124" a="3.5819795755940529" b="0.0007536116269544384" c="0.00067314868044649227" d="-0.00087767187414438774" /> - <width sOffset="78.97129317303893" a="3.5805618359301734" b="-0.0051024978615678007" c="-0.00016826833605364157" d="4.4145076865777237e-05" /> - <width sOffset="82.201332499120795" a="3.5638126646284265" b="-0.0048078073849334418" c="0.00091027026510589343" d="-5.2114669351161096e-05" /> - <width sOffset="84.691644740281646" a="3.556680043288309" b="-0.0012436846254252781" c="0.00050913616358647345" d="-5.583542257834353e-05" /> - <width sOffset="87.47781866586223" a="3.5559595944512421" b="0.00029308736517944314" c="-2.8642556796761015e-05" d="-3.4986683174314937e-05" /> - <width sOffset="93.372153211811323" a="3.5495271656987781" b="-0.0036912161248930961" c="-0.00076490079276904041" d="0.00011610959205709136" /> - <width sOffset="95.278100332816848" a="3.5405171954302874" b="-0.0053415859479523063" c="-0.00010667282490823755" d="0.00011343654431795416" /> - <width sOffset="99.295669360320744" a="3.5246912361152027" b="-0.00070582637751451759" c="0.010288538143098486" d="-0.0067977036084651103" /> - <width sOffset="100.46269294720921" a="3.5270755216831398" b="-0.004466168999960907" c="-0.00041160152658686953" d="8.7923368081287067e-05" /> - <width sOffset="104.83630763744256" a="3.5070246289047255" b="-0.0030210140875156495" c="0.00075935594754310937" d="-2.9613973075912645e-05" /> - <width sOffset="104.86226102202959" a="3.5069467343321588" b="-0.0029816582155975132" c="0.00049751417183714944" d="-2.8924514238364195e-05" /> - <width sOffset="105.86455592535205" a="3.5044289096766228" b="-0.0020715186515737139" c="0.00042370569641026363" d="-2.2205171276819545e-05" /> - <width sOffset="114.98339950951529" a="3.5039342476692656" b="0.00011659293105904561" c="-0.00042177430479460761" d="-2.8662121843263385e-05" /> - <width sOffset="116.30550754578539" a="3.5032849091331579" b="-0.0011489710227435823" c="-0.00017106738093162674" d="3.2578370843615689e-05" /> - <width sOffset="116.45101151788727" a="3.5031142079070028" b="-0.0011966837998445984" c="-0.00015909741349693978" d="3.1230873334339746e-05" /> - <width sOffset="120.90991893522407" a="3.4973838130281409" b="-0.00075270195522528823" c="0.00029503340018931153" d="-1.1544242029026517e-05" /> - <width sOffset="127.03746711042247" a="3.5011931843142694" b="0.0015626111355851258" c="7.8524865868169626e-05" d="-1.2116803858150069e-05" /> - <width sOffset="129.78302502917109" a="3.505824578564412" b="0.0017197876585400564" c="0.00029225790282542421" d="-3.1401235727516452e-05" /> - <width sOffset="132.91483176579231" a="3.513112583801921" b="0.002626408129872383" c="7.226216965476793e-05" d="-1.006230460202445e-05" /> - <width sOffset="137.62392270295769" a="3.5260322584896331" b="0.0026375753485725546" c="-7.3650853604257429e-05" d="-9.9625488554020304e-06" /> - <width sOffset="139.07836271864662" a="3.5296820009817456" b="0.0023601096504306325" c="-0.00024021826124075515" d="7.4737029839060665e-05" /> - <width sOffset="139.74943195638275" a="3.5311802054563186" b="0.0021386733387721612" c="8.0032877374435157e-05" d="2.3573574847409853e-05" /> - <width sOffset="143.87151787404144" a="3.5430069988535822" b="0.0040001358517921335" c="0.0025761673028759664" d="-0.00052243893721185604" /> - <width sOffset="145.59349841446996" a="3.554866452768902" b="0.0082249213552404443" c="-0.0014072791801436042" d="-4.1839537178042937e-05" /> - <roadMark sOffset="0" color="standard" width="0.31142079886616042" weight="bold" type="solid"> - <type name="solid"> - <line length="148.21037829549289" space="0" width="0.311421" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4931786441895127" b="0.0050075877079636955" c="-0.01106556567437162" d="0.0045499188058222492" /> - <width sOffset="1.3048470945821915" a="2.4909806635404523" b="-0.00062972537792881089" c="0.001162710287884128" d="-0.00033006046529853269" /> - <width sOffset="2.2881305444766498" a="2.4911718439821069" b="0.00069946892690105414" c="0.0012680003143481975" d="-0.00037478983786165722" /> - <width sOffset="4.1994216883146001" a="2.4945239939474622" b="0.0014391445914239721" c="-0.0009685715129283273" d="0.00013109400953496801" /> - <width sOffset="8.1933729825621846" a="2.4931735691205255" b="-2.4214235365615719e-05" c="-0.00049444424638316314" d="0.00010610019403017363" /> - <width sOffset="10.586455592535206" a="2.4917381003818511" b="-0.00056784819149890454" c="0.00026766367790527479" d="9.8877609792621626e-05" /> - <width sOffset="12.295966197753726" a="2.4920435698446148" b="0.0012141872446412953" c="-0.00026715388666988319" d="1.6572761912127438e-05" /> - <width sOffset="19.786800306254861" a="2.4931141784775166" b="1.5984151637222013e-06" c="-0.0003827320196509426" d="6.8035988268260584e-05" /> - <width sOffset="21.172911185070411" a="2.4925622390674311" b="-0.00066726629676323868" c="-0.00012103422876469976" d="5.2292304485501225e-05" /> - <width sOffset="23.945947339827285" a="2.4908962407856388" b="-0.00013218984969758617" c="-8.808121902294419e-05" d="3.5971323168479023e-05" /> - <width sOffset="27.117664499193502" a="2.4907386235200368" b="0.00039466456584390935" c="0.0015758343753361622" d="-0.00033185355034807664" /> - <width sOffset="30.963873804680134" a="2.496686538678321" b="-0.0022110110426947376" c="0.00027197434053064098" d="2.2072140243642432e-05" /> - <width sOffset="31.759366777605617" a="2.4951109137690368" b="-0.0017364013376592238" c="0.00031567223892938157" d="2.4122150226573203e-05" /> - <width sOffset="33.961157470557765" a="2.4930755436731866" b="4.5110898888778197e-06" c="-0.00016927838113556308" d="8.7071218874920054e-06" /> - <width sOffset="35.450393300760382" a="2.4927355906242967" b="-0.00044174719613720602" c="-0.00071721540462275977" d="0.00014062777606552325" /> - <width sOffset="39.712197218884853" a="2.4887117651163688" b="0.0011076453065905646" c="0.0018248323927132183" d="-0.00049688412079201794" /> - <width sOffset="41.971430186892754" a="2.4947985993247208" b="0.0017445994977146819" c="-0.00065878343801291546" d="5.3930299490004404e-05" /> - <width sOffset="42.345822370140823" a="2.4953622525640036" b="0.0012739909088850814" c="-0.00059779250133209822" d="5.3653638020963864e-05" /> - <width sOffset="48.467105829969924" a="2.493067636453441" b="-1.3300444666458112e-05" c="0.00014032018844711353" d="4.2057032516301426e-05" /> - <width sOffset="49.88170111223161" a="2.4934486652051513" b="0.00063617054473648089" c="-0.00015239412616468729" d="1.023068688151669e-05" /> - <width sOffset="52.932277962676025" a="2.494261605861694" b="-7.9885389032332416e-06" c="-5.9435560668877701e-05" d="1.015244447651089e-05" /> - <width sOffset="59.056482243203611" a="2.4943154516458961" b="0.00040634946490318655" c="-6.1856749693821046e-05" d="2.0826928399736783e-06" /> - <width sOffset="63.518733555211234" a="2.4950820620924592" b="-2.1281477637666996e-05" c="-3.4400976425674774e-05" d="1.8744461317920965e-06" /> - <width sOffset="74.105189147746444" a="2.493225292987332" b="-0.00011942565594179073" c="2.1464651965524424e-05" d="3.4134412090444609e-06" /> - <width sOffset="76.052244819685299" a="2.4930993333999405" b="2.9814197341137758e-06" c="-0.00047804658901152156" d="3.8523488119235912e-05" /> - <width sOffset="76.660186301585384" a="2.4929331192038164" b="-0.00053555326698207558" c="-0.0024784733308895832" d="0.00090342432703288276" /> - <width sOffset="78.97129317303893" a="2.4896093165665283" b="0.002484563864451375" c="-3.0487149837075738e-05" d="-1.8392623977160925e-05" /> - <width sOffset="82.201332499120795" a="2.4966966562335848" b="0.0017119352407190872" c="-0.00085948144427658215" d="7.786712223965597e-05" /> - <width sOffset="84.691644740281646" a="2.4968322863868764" b="-0.0011201039851654435" c="-0.00028421519702147399" d="8.4006542583420002e-05" /> - <width sOffset="88.202317368094583" a="2.4930318962432905" b="-9.5798822955526011e-06" c="-0.00031397297752130168" d="4.9655665317677793e-05" /> - <width sOffset="93.372153211811323" a="2.4914519344097359" b="0.0007255137005520401" c="0.00057375052781181394" d="-0.00010144060991351483" /> - <width sOffset="95.278100332816848" a="2.4942166159460699" b="0.0018071000779389945" c="-6.3118645417979344e-06" d="-9.9465400532216806e-05" /> - <width sOffset="99.295669360320744" a="2.4949248512259432" b="-0.0030599882053408923" c="-0.010233132728891297" d="0.0068116747522508443" /> - <width sOffset="100.46269294720921" a="2.4882434363173083" b="0.00088675701609841617" c="0.00051592090379547098" d="-7.3952224295547534e-05" /> - <width sOffset="104.83630763744256" a="2.4958036698803001" b="0.001155848925430485" c="-0.00047172337199552776" d="4.3585133406750785e-05" /> - <width sOffset="105.86455592535205" a="2.496540803082997" b="0.00032399839713162602" c="-0.00034485294431281348" d="3.2708074214653919e-05" /> - <width sOffset="112.34118854917809" a="2.4930596819494069" b="-2.6979049178987597e-05" c="-0.00013771407506907941" d="4.2821555656405357e-05" /> - <width sOffset="116.30550754578539" a="2.4934563299299199" b="0.00090006414152699824" c="7.1706558034580886e-06" d="-1.841893674188866e-05" /> - <width sOffset="116.45101151788727" a="2.4935873879105523" b="0.0009009809949618667" c="7.6919383657401096e-06" d="-1.6360910136280783e-05" /> - <width sOffset="120.90991893522407" a="2.4963072919491136" b="-6.2794694577035992e-06" c="-0.00024752750772252666" d="2.6414205227083904e-05" /> - <width sOffset="127.03746711042247" a="2.4930520559706846" b="-6.4442587683922201e-05" c="0.00024475692321598315" d="2.6589305940767761e-05" /> - <width sOffset="127.16617018263801" a="2.4930478729687611" b="-1.1933757310925337e-07" c="-8.2741339227456753e-05" d="1.2039848263245942e-05" /> - <width sOffset="132.91483176579231" a="2.4926001148583996" b="0.00024222331584709714" c="4.9865628707895997e-05" d="-9.2990828622228242e-06" /> - <width sOffset="137.62392270295769" a="2.4938754917817123" b="9.3230395385698059e-05" c="-7.8042327128765708e-05" d="-1.0219026921748715e-05" /> - <width sOffset="139.74943195638275" a="2.493622945772592" b="-0.00037703122178797709" c="-0.00031299420965715099" d="4.0944428070926071e-05" /> - <width sOffset="145.59349841446996" a="2.488902047437664" b="0.00015978986094943121" c="0.0016894090992432586" d="-0.00043965497196297168" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276670170" type="pole" s="16.65104144346698" t="-10.270831531400715" height="1.8394829059718631" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670214" type="pole" s="16.596371004345425" t="8.0935834179688477" height="2.2631013414957692" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5177140" s="0" t="6.807507157638919" orientation="none" validLength="32.0495409724358" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="32.0495409724358" s="0" distance="0" tStart="6.807507157638919" tEnd="7.0284541504012008" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273612596" s="32.0495409724358" t="7.0284541504012008" orientation="none" validLength="19.132452450103159" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.132452450103159" s="32.0495409724358" distance="0" tStart="7.0284541504012008" tEnd="7.0638409741993948" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542048052" s="51.181993422538959" t="7.0638409741993948" orientation="none" validLength="22.508535698150006" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="22.508535698150006" s="51.181993422538959" distance="0" tStart="7.0638409741993948" tEnd="6.8773577266187864" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810483508" s="73.690529120688964" t="6.8773577266187864" orientation="none" validLength="64.53429806233315" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="64.53429806233315" s="73.690529120688964" distance="0" tStart="6.8773577266187864" tEnd="6.5426562780802522" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078918964" s="138.22482718302211" t="6.5426562780802522" orientation="none" validLength="9.9855511124707732" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.9855511124707732" s="138.22482718302211" distance="0" tStart="6.5426562780802522" tEnd="6.5665909913093827" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5182586" s="0" t="-8.5586518379395695" orientation="none" validLength="9.7650576938798821" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.7650576938798821" s="0" distance="0" tStart="-8.5586518379395695" tEnd="-8.330770708046451" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273618042" s="9.7650576938798821" t="-8.330770708046451" orientation="none" validLength="19.23803471782669" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.23803471782669" s="9.7650576938798821" distance="0" tStart="-8.330770708046451" tEnd="-8.2007239261815048" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542053498" s="29.003092411706572" t="-8.2007239261815048" orientation="none" validLength="17.602449692475449" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.602449692475449" s="29.003092411706572" distance="0" tStart="-8.2007239261815048" tEnd="-8.196283152065309" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810488954" s="46.605542104182021" t="-8.196283152065309" orientation="none" validLength="72.0636002032645" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="72.0636002032645" s="46.605542104182021" distance="0" tStart="-8.196283152065309" tEnd="-8.5081763515800386" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078924410" s="118.66914230744652" t="-8.5081763515800386" orientation="none" validLength="29.541235988046367" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="29.541235988046367" s="118.66914230744652" distance="0" tStart="-8.5081763515800386" tEnd="-8.4291938001732625" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412777" s="39.575889489214426" t="-8.2087284560232163" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848233" s="89.589984927751487" t="-8.6760988498597911" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283689" s="139.42088615008191" t="-8.5356415469115348" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412810" s="39.176529761197692" t="7.2731953242093859" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848266" s="88.649586625591851" t="7.0568956102114919" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283722" s="138.06917632885515" t="6.8385794195310412" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8234714" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="1.8394829059718631" s="16.65104144346698" t="-10.270831531400715" orientation="+" /> - <signal dynamic="no" id="8234758" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.2631013414957692" s="16.596371004345425" t="8.0935834179688477" orientation="+" /> - </signals> - </road> - <road name="" length="1163.1043927229293" id="4940763" junction="-1"> - <link> - <successor elementType="junction" elementId="33555309" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-415.30543576688046" y="310.38136974918422" hdg="4.4187803177054619" length="95.996254286175144"> - <paramPoly3 aU="0" bU="96.00370961624435" cU="0.098741341877372157" dU="-0.13013449729593862" aV="0" bV="3.5527136788005009e-15" cV="6.690181735028065" dV="-4.8811209658585195" /> - </geometry> - <geometry s="95.996254286175144" x="-441.34898070272914" y="217.99256093070298" hdg="4.4055988556460264" length="51.494086941831796"> - <paramPoly3 aU="0" bU="52.539136320613231" cU="-2.2406611966577872" dU="1.1594841169444152" aV="0" bV="3.3750779948604759e-14" cV="-2.9738112840281974" dV="1.1939724641736014" /> - </geometry> - <geometry s="147.49034122800694" x="-458.58602893160355" y="169.47479548526815" hdg="4.3597273594658761" length="107.0039687322692"> - <paramPoly3 aU="0" bU="107.10641626350123" cU="-0.34047932781930457" dU="0.16235087749368338" aV="0" bV="-1.4210854715202004e-14" cV="6.6263980573801806" dV="-2.8838306796496895" /> - </geometry> - <geometry s="254.49430996027615" x="-492.0064845595723" y="67.834553991787118" hdg="4.4027388486051411" length="260.49755919956112"> - <paramPoly3 aU="0" bU="260.52616177030018" cU="-0.07550874916736286" dU="0.036898948699666534" aV="0" bV="1.1368683772161603e-13" cV="-0.16479284728326593" dV="-1.5642012670743379" /> - </geometry> - <geometry s="514.99186915983728" x="-573.03042851139458" y="-179.73740455436084" hdg="4.3834611507182339" length="332.00074021005554"> - <paramPoly3 aU="0" bU="331.97225568157307" cU="0.028860084478175008" dU="-0.044463627764962155" aV="0" bV="-4.2632564145606011e-14" cV="8.7963469820543025" dV="-3.7693609651661726" /> - </geometry> - <geometry s="846.99260936989276" x="-675.50441039721761" y="-495.52146451264503" hdg="4.4023943377300458" length="316.11178335303657"> - <paramPoly3 aU="0" bU="316.10148423195994" cU="0.031965184384954631" dU="-0.022706126022018824" aV="0" bV="1.4210854715202004e-13" cV="0.44750325223679882" dV="-0.96960154491015249" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="155.42077433269137" b="-0.00037960631195406181" c="0.00011662216918917177" d="-9.5542206751669507e-07" /> - <elevation s="10.026762006232149" a="155.42772971853643" b="0.0016709163444980255" c="0.00016243062809982421" d="-7.6737855162385225e-06" /> - <elevation s="20.053524012464297" a="155.45307815727608" b="0.0026137487488272155" c="-0.00011102209035363551" d="5.6103801987092402e-06" /> - <elevation s="30.080286018696448" a="155.47377942625789" b="0.002079499409956605" c="-0.00012193063842803875" d="1.0397859515416379e-05" /> - <elevation s="40.107048024928595" a="155.49285322199239" b="0.0027704366748751174" c="0.00020946639816124156" d="-1.6533666513184165e-05" /> - <elevation s="50.133810031160742" a="155.52502387154198" b="0.0019842921965920056" c="-0.00020716005156972621" d="9.256452665112541e-06" /> - <elevation s="56.000445592686212" a="155.531404088946" b="0.00050937660330829218" c="6.1548958841364936e-05" d="1.0106115538891796e-05" /> - <elevation s="60.160572037392896" a="155.53531598513743" b="0.0015461885811486067" c="0.00012133873497586654" d="-4.8247811723188917e-06" /> - <elevation s="70.187334043625043" a="155.5581545346401" b="0.0025242658489085064" c="4.1307583615366073e-05" d="-1.8793263724054532e-06" /> - <elevation s="80.21409604985719" a="155.58572318981888" b="0.0027858088465203532" c="-0.00031493905485746533" d="1.758923557846518e-05" /> - <elevation s="90.240858056089337" a="155.59972396386235" b="0.0017752228074373068" c="6.9813892843563538e-06" d="2.8608307786034608e-06" /> - <elevation s="100.26762006232148" a="155.62110944188177" b="0.0027780733397638436" c="4.8191619292078556e-05" d="1.4001194167384705e-06" /> - <elevation s="110.29438206855363" a="155.65522090315619" b="0.0041667721680494988" c="3.1738173559414995e-05" d="-1.0575919391235564e-07" /> - <elevation s="120.32114407478579" a="155.70008435308364" b="0.0047713365885331009" c="0.00020086614989586515" d="-1.1828854086846825e-06" /> - <elevation s="130.34790608101792" a="155.76692727221953" b="0.0084426432013896772" c="0.00059361495452316311" d="-4.1747342746225877e-05" /> - <elevation s="140.37466808725009" a="155.86917588011789" b="0.0077553878644410178" c="-0.00013008047881339331" d="-1.0575919391231415e-07" /> - <elevation s="150.40143009348222" a="155.93375293259658" b="0.0051149180539019129" c="-0.00012828621726165371" d="6.70843221037738e-06" /> - <elevation s="160.42819209971438" a="155.97890405687687" b="0.0045656432588052891" c="1.9309399554860715e-05" d="-1.5148215271247499e-06" /> - <elevation s="170.45495410594654" a="156.0250969481859" b="0.0044959826737504087" c="-1.7633937212983116e-05" d="4.4331184500301294e-07" /> - <elevation s="180.48171611217867" a="156.0688511322511" b="0.0042760664312844416" c="2.4694926487399964e-05" d="-3.5464832499429535e-06" /> - <elevation s="190.50847811841084" a="156.11063392791107" b="0.0037016394771655688" c="-9.2494318419230842e-05" d="4.3831611174294382e-06" /> - <elevation s="200.53524012464297" a="156.14286882725841" b="0.003168798325791733" c="-2.4317860961721761e-05" d="1.7553547910831363e-06" /> - <elevation s="210.56200213087513" a="156.1739662800945" b="0.0032105683349220497" c="3.213174510070603e-05" d="-2.3307026863908487e-06" /> - <elevation s="220.58876413710726" a="156.20703881532293" b="0.0031519647863724833" c="-3.3865371085380775e-05" d="1.7091728469657034e-06" /> - <elevation s="230.61552614333942" a="156.23696106049096" b="0.0029883447342277342" c="6.6132707293806277e-06" d="-8.3023289235377189e-07" /> - <elevation s="240.64228814957158" a="156.26675243707476" b="0.0028705593441730169" c="-5.133330099726397e-05" d="3.9072067258556864e-06" /> - <elevation s="250.66905015580372" a="156.29431267009502" b="0.0030195900542696026" c="-2.4870211732218181e-05" d="-1.0575919426514268e-07" /> - <elevation s="255.99430995864179" a="156.30967152110949" b="0.002745711894566218" c="3.9184953672982035e-06" d="-4.0405514163074812e-10" /> - <elevation s="260.69581216203585" a="156.32266706454467" b="0.0027825307299192835" c="1.5757650913179014e-05" d="-4.2093928983028019e-07" /> - <elevation s="270.72257416826801" a="156.35172672055646" b="0.0029715685587073559" c="1.5352755899009986e-05" d="-8.0230525734205969e-07" /> - <elevation s="280.74933617450017" a="156.38225667137579" b="0.0030374638388401569" c="1.1703088822938265e-05" d="-1.2414260345575686e-06" /> - <elevation s="290.77609818073233" a="156.41263775997001" b="0.0028977281507807499" c="-3.7401198830955527e-06" d="4.0728185905282748e-07" /> - <elevation s="300.80286018696444" a="156.44172713448907" b="0.0029455649804823398" c="8.2314474733531577e-05" d="-4.4828631828725968e-06" /> - <elevation s="310.8296221931966" a="156.47501822724738" b="0.003244193464569777" c="-1.0656469724218559e-05" d="3.0574548832706238e-07" /> - <elevation s="320.85638419942876" a="156.50678383141627" b="0.0031227089382543454" c="-1.7440324682114332e-06" d="-4.0405514164195782e-10" /> - <elevation s="330.88314620566092" a="156.537918745475" b="0.0030876130750643253" c="-2.1062297854244438e-05" d="1.0639020600624015e-06" /> - <elevation s="340.90990821189308" a="156.56783245527441" b="0.0029861210124348414" c="-1.8651419064582414e-05" d="1.8865516083324918e-06" /> - <elevation s="350.93667021812519" a="156.5978001802863" b="0.003181093142683378" c="3.5525397410485369e-05" d="-1.1042309280460463e-06" /> - <elevation s="360.96343222435735" a="156.63215470384495" b="0.0035604578156273152" c="3.7683923843467606e-05" d="-2.424546486516356e-06" /> - <elevation s="370.99019423058951" a="156.66919909197173" b="0.0035848909882435376" c="-2.2339290915703305e-05" d="1.136399850311715e-06" /> - <elevation s="381.01695623682167" a="156.70404358674412" b="0.0034796566186158367" c="1.2746528877824342e-05" d="-1.2272257813018276e-06" /> - <elevation s="391.04371824305377" a="156.73897765491265" b="0.0033651284888762262" c="-4.7339130085257089e-05" d="3.2980435514686402e-06" /> - <elevation s="401.07048024928594" a="156.77128430583161" b="0.0034105279943732682" c="0.00010975048474720857" d="-6.7316664452868591e-06" /> - <elevation s="411.0972422555181" a="156.80972887120677" b="0.0035810884043242118" c="-1.0293462687417583e-05" d="6.2648345738292314e-07" /> - <elevation s="421.12400426175026" a="156.84523225596138" b="0.0035636205436887169" c="-4.0199648888841882e-06" d="6.264834573829351e-07" /> - <elevation s="431.15076626798242" a="156.88119120673528" b="0.003671958421798256" c="0.00021514869797124471" d="-1.3655080142594432e-05" /> - <elevation s="441.17752827421452" a="156.92587423502968" b="0.0038679683801350279" c="-3.9421318359716052e-05" d="2.7675577581005482e-06" /> - <elevation s="451.20429028044668" a="156.96348401037855" b="0.00391214922352976" c="6.9398000303720321e-05" d="-3.127760517342279e-06" /> - <elevation s="461.23105228667885" a="157.00653425457892" b="0.0043604665046943162" c="8.372793492531591e-05" d="-7.685497864908305e-06" /> - <elevation s="471.25781429291101" a="157.05092591552034" b="0.0037215000250797408" c="-7.4065569355060673e-05" d="2.221121142018675e-06" /> - <elevation s="481.28457629914317" a="157.0830332591371" b="0.0029061319659315515" c="-0.00017855870437728474" d="1.4862857855425147e-05" /> - <elevation s="491.31133830537527" a="157.10920328806691" b="0.0038081555849262738" c="7.893137003172452e-05" d="-5.1056026758784252e-06" /> - <elevation s="501.33810031160743" a="157.15017549524555" b="0.0038511177662186456" c="-2.1596518367499984e-05" d="1.5775607915524782e-06" /> - <elevation s="511.3648623178396" a="157.18820877024297" b="0.0038938362150908838" c="0.00020717526980187312" d="-1.3633992856669587e-05" /> - <elevation s="521.3916243240717" a="157.23433615517976" b="0.0039363109315420572" c="-0.00018513909183406153" d="8.8866849996440122e-06" /> - <elevation s="531.41838633030386" a="157.26414969618773" b="0.0029039138329197862" c="-0.00012216041871100815" d="1.1491503947879331e-05" /> - <elevation s="541.44514833653602" a="157.29256904634266" b="0.0039200949601228708" c="7.0959893320646042e-06" d="-4.0405514239002259e-10" /> - <elevation s="551.47191034276818" a="157.33258790031545" b="0.0040622726863751733" c="0.00013577061087954688" d="-8.632586492548103e-06" /> - <elevation s="561.49867234900034" a="157.37826709021326" b="0.0041812958759556394" c="-1.8024503936585453e-06" d="-4.0405514033152893e-10" /> - <elevation s="571.52543435523251" a="157.42001033045722" b="0.004145028527495302" c="-6.8470238197021298e-05" d="3.9124250323548951e-06" /> - <elevation s="575.99164018088914" a="157.43750565325803" b="0.0037675475355966161" c="-1.3484675770644262e-05" d="3.8852374983426061e-06" /> - <elevation s="581.55219636146467" a="157.4587063632689" b="0.0039779750660008497" c="1.5608704499527072e-05" d="-3.7806786008632686e-07" /> - <elevation s="591.57895836769683" a="157.49978069720945" b="0.0041769563548717586" c="1.8719389709728489e-05" d="-1.1215571605848595e-06" /> - <elevation s="601.60572037392888" a="157.54241343042062" b="0.0042140756207612829" c="-9.4232475633666948e-05" d="6.8381063492316735e-06" /> - <elevation s="611.63248238016104" a="157.58208636552939" b="0.0043868090917985585" c="3.4993077201598469e-05" d="-2.2438575850340224e-06" /> - <elevation s="621.6592443863932" a="157.62732799786193" b="0.0044117785011942232" c="-9.690986631026093e-05" d="5.4962629773166464e-06" /> - <elevation s="631.68600639262536" a="157.66736143331372" b="0.0041261103340875481" c="1.4573417260984114e-05" d="-1.8123005018608539e-07" /> - <elevation s="641.71276839885752" a="157.7100154231149" b="0.0043636982978409872" c="6.3641753554681581e-06" d="-5.0590781232638854e-07" /> - <elevation s="651.73953040508968" a="157.75389903544553" b="0.0043387366639708247" c="-4.9530900518888911e-05" d="1.5329253107064622e-06" /> - <elevation s="661.76629241132184" a="157.79396814445508" b="0.0038078098973375681" c="-5.8205631434016493e-05" d="3.8758251979805025e-06" /> - <elevation s="671.793054417554" a="157.83020341524693" b="0.0038095612482511049" c="3.4820976780921489e-05" d="-1.5813642663555958e-06" /> - <elevation s="681.81981642378616" a="157.87030764501412" b="0.0040308926357941295" c="-1.2737126592221111e-06" d="3.8192335124317882e-07" /> - <elevation s="691.84657843001821" a="157.91098139010077" b="0.004120541296482972" c="7.2873708413004852e-06" d="-2.4129542409295635e-07" /> - <elevation s="701.87334043625037" a="157.95278648193599" b="0.0041939021639792818" c="1.2860918406692917e-05" d="-1.0936411719462592e-06" /> - <elevation s="711.90010244248253" a="157.99502828044234" b="0.0041219581167610524" c="-1.0835408222498994e-05" d="1.2084245352651933e-07" /> - <elevation s="721.9268644487147" a="158.03539064059908" b="0.0039411170326778319" c="-1.6973813250557627e-05" d="7.9870385492553456e-07" /> - <elevation s="731.95362645494686" a="158.0740059380833" b="0.0038416276287119694" c="3.0072606947947989e-07" d="-1.8061872717290002e-07" /> - <elevation s="741.98038846117902" a="158.11237318508867" b="0.0037931822167653483" c="1.3315965038431128e-05" d="-1.714470688096259e-06" /> - <elevation s="752.00715046741118" a="158.15001698134117" b="0.0035431163907320819" c="-4.4713271184004692e-05" d="2.3033107289153157e-06" /> - <elevation s="762.03391247364334" a="158.18336952729948" b="0.003341154373935147" c="2.0652977276636553e-05" d="-1.967739938646586e-06" /> - <elevation s="772.0606744798755" a="158.21696327339851" b="0.0031618335000615848" c="3.1632504948968335e-06" d="-2.2463584873133959e-06" /> - <elevation s="782.08743648610755" a="158.24671980390667" b="0.0025477484234748158" c="-3.2956341654640161e-05" d="1.335898897380576e-06" /> - <elevation s="792.11419849233971" a="158.27029882670192" b="0.002289775254364035" c="0.00014623069825738948" d="-8.3645085808385384e-06" /> - <elevation s="802.14096049857187" a="158.29952745754775" b="0.0026994144650222566" c="-6.2974163851103909e-06" d="-1.5720995103762851e-06" /> - <elevation s="812.16772250480403" a="158.3243759720861" b="0.0020989714911639353" c="-5.9333633825306282e-05" d="2.5346382799477527e-06" /> - <elevation s="822.19448451103619" a="158.34201173845651" b="0.001673589890774029" c="-1.9532726489903675e-05" d="1.0446257389307729e-06" /> - <elevation s="831.9926112686785" a="158.35751720807312" b="0.0015916841475025125" c="2.5880733096157817e-05" d="1.0729837192463306e-06" /> - <elevation s="832.22124651726836" a="158.35788248888926" b="0.0016036869108930162" c="3.1891504854780807e-05" d="-1.5975236692182168e-06" /> - <elevation s="842.24800852350052" a="158.37555813491068" b="0.0017613982597598078" c="1.6683495126881822e-05" d="-1.6767726925820266e-06" /> - <elevation s="852.27477052973268" a="158.39320627630451" b="0.0015902332913101836" c="-2.7334552914582632e-05" d="1.0380435266177151e-06" /> - <elevation s="862.30153253596484" a="158.40744946152105" b="0.0013551612740484759" c="-2.8155819778452012e-06" d="-3.6773300705212241e-07" /> - <elevation s="872.32829454219689" a="158.42038358057206" b="0.0011877877646328415" c="-3.4398837679747121e-06" d="-6.7166968624575126e-07" /> - <elevation s="882.35505654842905" a="158.43127033709845" b="0.00091622511015867613" c="-2.1112441219223985e-05" d="7.6638929744723167e-10" /> - <elevation s="892.38181855466121" a="158.43833532131254" b="0.00049307741225004483" c="-9.0933168387374484e-05" d="6.0331728272455675e-06" /> - <elevation s="902.40858056089337" a="158.44021897864508" b="0.00048919933613141432" c="1.6115471854299432e-05" d="7.6638929744733279e-10" /> - <elevation s="912.43534256712553" a="158.44674502089549" b="0.00081260248697662" c="2.56647918506981e-05" d="-1.8178763031408617e-06" /> - <elevation s="922.46210457335769" a="158.45564051662856" b="0.00077898620875382788" c="-4.5416711604395201e-05" d="2.9097753302356121e-06" /> - <elevation s="932.48886657958985" a="158.4618184127489" b="0.0007458322286166473" c="2.46672590430742e-06" d="7.6638929745377105e-10" /> - <elevation s="942.51562858582201" a="158.46954546220843" b="0.00079552992481366619" c="0.00017010144370536892" d="-1.117234239158634e-05" /> - <elevation s="952.54239059205418" a="158.48336108180402" b="0.00083699693037384308" c="-1.4588411741847773e-05" d="5.2030718984747801e-07" /> - <elevation s="962.56915259828634" a="158.49081128661751" b="0.00070137660795446431" c="-9.356046572937479e-06" d="5.2030718984749336e-07" /> - <elevation s="972.59591460451838" a="158.49742769957103" b="0.00067068364609181215" c="2.9950299173968998e-05" d="-1.7722706712202609e-06" /> - <elevation s="982.62267661075055" a="158.50537702920161" b="0.00073676190933928709" c="1.242634909204877e-06" d="-6.7990437857415667e-07" /> - <elevation s="992.64943861698271" a="158.51220391732912" b="0.00055661660759180576" c="-1.3377867174483192e-05" d="7.9028272001126297e-07" /> - <elevation s="1002.6762006232149" a="158.51723666749274" b="0.00052669871405406699" c="2.9527549299021301e-05" d="-1.5821991273803466e-06" /> - <elevation s="1012.702962629447" a="158.52389139455448" b="0.00064162642582599216" c="-1.0300008814718715e-05" d="8.0926013018466348e-07" /> - <elevation s="1022.7297246356792" a="158.53010508354774" b="0.00067915417505408089" c="1.2280563468438555e-05" d="-6.3197730434289343e-07" /> - <elevation s="1032.7564866419114" a="158.53751237422975" b="0.00073481342144282027" c="3.1097756599010261e-05" d="-3.139118725746448e-06" /> - <elevation s="1042.7832486481434" a="158.54484222725696" b="0.00041165012075943831" c="-1.1908594302741095e-05" d="7.6638929749396706e-10" /> - <elevation s="1052.8100106543757" a="158.54777327568971" b="0.00017307198799755398" c="-2.5397764446867299e-05" d="3.4654793895722243e-07" /> - <elevation s="1062.8367726606077" a="158.54730457647301" b="-0.000231721105829238" c="-4.1734052277981535e-05" d="2.3238971901553192e-06" /> - <elevation s="1072.86353466684" a="158.54312799604739" b="-0.00036773024605122478" c="1.2929801673526846e-05" d="-8.0246813827159167e-07" /> - <elevation s="1082.890296673072" a="158.53993183427136" b="-0.00035047286283030373" c="-4.7167807428413122e-05" d="4.3903170136775001e-06" /> - <elevation s="1092.9170586793043" a="158.53610132519458" b="2.7800536969558903e-05" c="1.1215708881643307e-05" d="7.663892976679552e-10" /> - <elevation s="1102.9438206855364" a="158.53750842913956" b="0.00025294617338728526" c="0.00013763431325209414" d="-9.2334647291271897e-06" /> - <elevation s="1112.9705826917684" a="158.54457406241718" b="0.00022811355879134648" c="-2.1795761129569091e-05" d="7.663892976597111e-10" /> - <elevation s="1122.9973446980007" a="158.54467081765128" b="-0.00020873711134752361" c="-0.00011201746531929724" d="5.8886088461372515e-06" /> - <elevation s="1133.0241067042327" a="158.53725209009096" b="-0.00067903127655103671" c="1.5630516459023996e-05" d="-9.5197772422633147e-07" /> - <elevation s="1143.050868710465" a="158.53105539275938" b="-0.00065270831214155186" c="-2.4421102490098211e-05" d="2.0920492169176842e-06" /> - <elevation s="1153.0776307166971" a="158.52416453339794" b="-0.00051145897120323763" c="1.7539541120213385e-05" d="7.6638927185086246e-10" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.025463469629529185" b="0.00012720128517464073" c="-6.3430888803173551e-06" d="0" /> - <superelevation s="10.026762006232149" a="-0.024825761122862691" b="0" c="-2.7195998683568236e-05" d="1.8082273996107966e-06" /> - <superelevation s="20.053524012464297" a="-0.025737153034859902" b="0" c="2.6321819279127386e-05" d="-1.0982154888229922e-06" /> - <superelevation s="30.080286018696448" a="-0.024197920002518778" b="0.00019661480169126506" c="3.2505188353763096e-05" d="-2.8131175082320567e-06" /> - <superelevation s="40.107048024928595" a="-0.021794333387938212" b="0" c="-0.00010029500092216393" d="6.6684871852498639e-06" /> - <superelevation s="50.133810031160742" a="-0.025155417998868185" b="0" c="4.5200524753033995e-05" d="-2.5460712720154487e-06" /> - <superelevation s="60.160572037392896" a="-0.023177707434879732" b="0.00013851467786461406" c="-3.7570324934631439e-06" d="-2.0945387384331488e-07" /> - <superelevation s="70.187334043625043" a="-0.022377710580231389" b="0" c="-4.4188413970191083e-06" d="-1.0755439285771497e-22" /> - <superelevation s="80.21409604985719" a="-0.022821963025949632" b="-8.8613342062396027e-05" c="-8.0408724820401283e-05" d="4.34051294249005e-06" /> - <superelevation s="90.240858056089337" a="-0.027418981427530905" b="-0.00039195877715694956" c="7.8578985404636675e-06" d="-1.2207758012685287e-07" /> - <superelevation s="100.26762006232148" a="-0.030682117775562661" b="-0.00027119977888162978" c="1.6968611504385175e-05" d="-1.1527947547966623e-06" /> - <superelevation s="110.29438206855363" a="-0.032857492705508674" b="-0.00027861128999602172" c="-4.6233723416129053e-05" d="3.9977749146575664e-06" /> - <superelevation s="120.32114407478579" a="-0.036269255969641541" b="0" c="2.5144665058531299e-05" d="0" /> - <superelevation s="130.34790608101792" a="-0.033741313021394125" b="0.0005042391445366258" c="0.0002299447390655991" d="-1.6960570385905151e-05" /> - <superelevation s="140.37466808725009" a="-0.02266481767542252" b="0" c="-4.5390602114590558e-05" d="2.7004887339843157e-06" /> - <superelevation s="150.40143009348222" a="-0.024505977309642556" b="-9.575287715971723e-05" c="9.2137973057794309e-06" d="-4.4270841800050706e-07" /> - <superelevation s="160.42819209971438" a="-0.02498602296498879" b="-4.450811417885449e-05" c="1.597115040393265e-06" d="-1.2578154589918942e-07" /> - <superelevation s="170.45495410594654" a="-0.025398521846077719" b="-5.0417033382439332e-05" c="-7.8039913730444473e-06" d="6.8603834000927123e-07" /> - <superelevation s="180.48171611217867" a="-0.025997062154560751" b="0" c="1.1013193055384414e-05" d="-4.1286329534804588e-07" /> - <superelevation s="190.50847811841084" a="-0.025306027147623724" b="9.6330512696413855e-05" c="4.3597823744653565e-06" d="-1.6216135629802586e-07" /> - <superelevation s="200.53524012464297" a="-0.024065295905070221" b="0.00013485037212648281" c="1.6772672036531853e-05" d="-1.5622986069427285e-06" /> - <superelevation s="210.56200213087513" a="-0.022601801972095555" b="0" c="-1.9551557882115995e-06" d="5.3777196428857707e-23" /> - <superelevation s="220.58876413710726" a="-0.022798365429036814" b="-3.9207763547012569e-05" c="-1.3455504864664361e-05" d="8.2622910492552393e-07" /> - <superelevation s="230.61552614333942" a="-0.023711374054605806" b="-5.9840853817225549e-05" c="2.984056756310431e-06" d="0" /> - <superelevation s="240.64228814957158" a="-0.024011379054343331" b="0" c="5.3453950929756553e-05" d="-3.309534828836758e-06" /> - <superelevation s="250.66905015580372" a="-0.021973511916968523" b="7.3758341461090734e-05" c="-3.6780738096330417e-06" d="0" /> - <superelevation s="260.69581216203585" a="-0.021603733249066143" b="0" c="-1.3604834898404335e-05" d="6.6113983102767275e-07" /> - <superelevation s="270.72257416826801" a="-0.022305046258751404" b="-7.3419907780850974e-05" c="-1.3785558244619407e-06" d="1.0291501907857513e-07" /> - <superelevation s="280.74933617450017" a="-0.023076061132742354" b="-7.0024830517985201e-05" c="4.6491635398223067e-06" d="-3.9533306519942992e-07" /> - <superelevation s="290.77609818073233" a="-0.023709290879012565" b="-9.602828116991871e-05" c="-1.900637807958905e-05" d="1.5685742310167491e-06" /> - <superelevation s="300.80286018696444" a="-0.025001766575058985" b="-4.0788092111302028e-06" c="2.0339613170215829e-07" d="0" /> - <superelevation s="310.8296221931966" a="-0.0250222151996734" b="0" c="1.6689193530802568e-06" d="-7.9049014577027649e-08" /> - <superelevation s="320.85638419942876" a="-0.024934114164091782" b="9.6259094896159061e-06" c="-6.7632885740362068e-07" d="7.5800831617373305e-08" /> - <superelevation s="330.88314620566092" a="-0.024829181792581579" b="1.8925259799049382e-05" c="1.4065406901672437e-06" d="-5.6129361624153504e-08" /> - <superelevation s="340.90990821189308" a="-0.02455459601226942" b="3.0202300156660648e-05" c="4.2149616443289913e-07" d="-1.401718474144716e-08" /> - <superelevation s="350.93667021812519" a="-0.024223519241158332" b="3.4427090392186142e-05" c="3.8547268910846965e-06" d="-3.7044109306103632e-07" /> - <superelevation s="360.96343222435735" a="-0.023864211528410437" b="0" c="-1.5579881150739028e-05" d="1.0358865032769486e-06" /> - <superelevation s="370.99019423058951" a="-0.024386324278740896" b="0" c="1.096523102143838e-05" d="-7.2906427915099914e-07" /> - <superelevation s="381.01695623682167" a="-0.024018857616369051" b="0" c="-3.0631013176195946e-05" d="2.0366171489963467e-06" /> - <superelevation s="391.04371824305377" a="-0.025045363684040398" b="0" c="2.9051443641319844e-05" d="-1.9315935774854513e-06" /> - <superelevation s="401.07048024928594" a="-0.024071792127628343" b="0" c="-2.3076940098045587e-05" d="1.5092868150059835e-06" /> - <superelevation s="411.0972422555181" a="-0.024870417633905441" b="-7.5611924234151697e-06" c="7.4893158949029747e-07" d="-3.708884593323677e-08" /> - <superelevation s="421.12400426175026" a="-0.024908324772361896" b="-3.7287625950599256e-06" c="-3.5637245033796869e-07" d="3.6057700091688982e-08" /> - <superelevation s="431.15076626798242" a="-0.024945192464142254" b="0" c="4.9661780417600997e-05" d="-3.3019486840473458e-06" /> - <superelevation s="441.17752827421452" a="-0.023280927601703888" b="0" c="-3.9121725841647759e-05" d="2.6011538465645956e-06" /> - <superelevation s="451.20429028044668" a="-0.024591974308622321" b="0" c="6.0553126721402006e-06" d="-4.0261004621941482e-07" /> - <superelevation s="461.23105228667885" a="-0.024389048758499489" b="0" c="-7.4556606686122419e-06" d="1.8670294612692865e-07" /> - <superelevation s="471.25781429291101" a="-0.024950404809032354" b="-9.3201192531515366e-05" c="-1.5974285004894803e-05" d="1.2229946559033752e-06" /> - <superelevation s="481.28457629914317" a="-0.026258061110920543" b="-4.4677088507340948e-05" c="2.2278921390360788e-06" d="0" /> - <superelevation s="491.31133830537527" a="-0.02648204437771778" b="0" c="5.6622538036834243e-05" d="-3.764760614419718e-06" /> - <superelevation s="501.33810031160743" a="-0.024584510707269958" b="0" c="-4.281372225052332e-06" d="2.8466299970626601e-07" /> - <superelevation s="511.3648623178396" a="-0.024727987990952861" b="0" c="2.2182544091413957e-05" d="-1.4748891734358131e-06" /> - <superelevation s="521.3916243240717" a="-0.02398460689626811" b="0" c="-2.6727476885518891e-05" d="1.7770759805213568e-06" /> - <superelevation s="531.41838633030386" a="-0.024880297712589271" b="0" c="2.9438359142811731e-05" d="-1.8874284302190242e-06" /> - <superelevation s="541.44514833653602" a="-0.023823306554780155" b="2.1079575250570647e-05" c="-1.051165632407979e-06" d="-2.6888598214428624e-23" /> - <superelevation s="551.47191034276818" a="-0.023717626612665188" b="0" c="-2.2338849024804334e-05" d="1.485281689869542e-06" /> - <superelevation s="561.49867234900034" a="-0.024466245796002428" b="0" c="1.4139529986324502e-05" d="-9.4011938433936451e-07" /> - <superelevation s="571.52543435523251" a="-0.023992402072926935" b="0" c="-2.5184871128803178e-05" d="1.4269670031583379e-06" /> - <superelevation s="581.55219636146467" a="-0.025085932936414677" b="-7.4660940992262009e-05" c="2.8463711387196295e-06" d="5.8291479836064002e-08" /> - <superelevation s="591.57895836769683" a="-0.025489617045908443" b="0" c="6.8507877558739384e-07" d="-4.555001738756413e-08" /> - <superelevation s="601.60572037392888" a="-0.025466658695953513" b="0" c="-1.9610893714512249e-06" d="1.3039034071898585e-07" /> - <superelevation s="611.63248238016104" a="-0.025532378694422413" b="0" c="3.2870024653677668e-05" d="-2.1854861774417495e-06" /> - <superelevation s="621.6592443863932" a="-0.024430838906710512" b="0" c="-1.3448693125900544e-05" d="6.1511650661223605e-07" /> - <superelevation s="631.68600639262536" a="-0.025162847871084158" b="-8.4169711797323543e-05" c="-7.3440604369923209e-06" d="6.2139910601553155e-07" /> - <superelevation s="641.71276839885752" a="-0.026118738243360341" b="-4.4025143962607548e-05" c="2.1953819156794732e-06" d="-5.3777196428857249e-23" /> - <superelevation s="651.73953040508968" a="-0.026339453063761929" b="0" c="1.2131393512443032e-05" d="-6.7215931822515239e-07" /> - <superelevation s="661.76629241132184" a="-0.025797382088160476" b="4.0548651515536825e-05" c="7.3393518167477075e-10" d="-1.3449042174633719e-07" /> - <superelevation s="671.793054417554" a="-0.025526309706922063" b="0" c="-4.6411695571926773e-06" d="3.085854671932295e-07" /> - <superelevation s="681.81981642378616" a="-0.02568184451356216" b="0" c="1.53967676352334e-05" d="-8.342922624374258e-07" /> - <superelevation s="691.84657843001821" a="-0.024974924159543568" b="5.7130338099840012e-05" c="-2.2967645796217325e-06" d="9.604619078967046e-08" /> - <superelevation s="701.87334043625037" a="-0.024536179906636823" b="4.0040401379988772e-05" c="1.0190276442274669e-07" d="-4.7134134673217975e-08" /> - <superelevation s="711.90010244248253" a="-0.024171973009001254" b="2.7867884997853148e-05" c="-1.7252794646169249e-06" d="8.7962268079700675e-08" /> - <superelevation s="721.9268644487147" a="-0.023977330605655781" b="1.9800064052891595e-05" c="-1.0007748261749709e-06" d="1.0366744678283757e-07" /> - <superelevation s="731.95362645494686" a="-0.023774911949068261" b="3.0997919752807866e-05" c="6.3258868732599764e-06" d="-5.2337574810320848e-07" /> - <superelevation s="741.98038846117902" a="-0.023355713077556406" b="0" c="-3.3375530722366938e-05" d="1.9675850936690765e-06" /> - <superelevation s="752.00715046741118" a="-0.024727729612167404" b="-7.5857859613944766e-05" c="3.7827695305221723e-06" d="0" /> - <superelevation s="762.03391247364334" a="-0.025108033964493001" b="0" c="1.0161720623957935e-06" d="-6.7563989369260276e-08" /> - <superelevation s="772.0606744798755" a="-0.025073980021130201" b="0" c="-1.5174101743223868e-05" d="9.4120028699575008e-07" /> - <superelevation s="782.08743648610755" a="-0.025650745801138554" b="-2.0420800822824027e-05" c="3.0549444791048714e-06" d="-2.0311937707014648e-07" /> - <superelevation s="792.11419849233971" a="-0.025753123056052117" b="-2.0420800822824027e-05" c="-7.4945403154014511e-06" d="5.6600892268633601e-07" /> - <superelevation s="802.14096049857187" a="-0.026140782988556793" b="0" c="2.1986595257611634e-05" d="-1.4266798267835107e-06" /> - <superelevation s="812.16772250480403" a="-0.025368504360209806" b="1.061085366527511e-05" c="-1.3629442951166563e-06" d="8.3159215344188221e-08" /> - <superelevation s="822.19448451103619" a="-0.025315308108017472" b="8.3604912422488354e-06" c="8.2217862794304171e-07" d="-5.1610639703584912e-08" /> - <superelevation s="832.22124651726836" a="-0.025200847048327372" b="9.2818950420879894e-06" c="-1.1385086875268806e-06" d="9.2324133384239522e-08" /> - <superelevation s="842.24800852350052" a="-0.025129173402909787" b="1.4296468864631727e-05" c="8.2398903345069496e-06" d="-5.1972981306692515e-07" /> - <superelevation s="852.27477052973268" a="-0.024681334551013654" b="2.2780706178646513e-05" c="-2.1199461709193799e-06" d="9.8132479091978446e-08" /> - <superelevation s="862.30153253596484" a="-0.024567126191420059" b="9.8658426325085714e-06" c="-4.9537605227831216e-07" d="3.4241553456558385e-08" /> - <superelevation s="872.32829454219689" a="-0.02448348963887945" b="1.0259329041846088e-05" c="1.5970579166384584e-06" d="-1.4020180728113901e-07" /> - <superelevation s="882.35505654842905" a="-0.024361390490127626" b="0" c="-8.1416676732294276e-07" d="2.6888598214428624e-23" /> - <superelevation s="892.38181855466121" a="-0.024443243524692224" b="-1.6326912818659008e-05" c="-4.3464041674807962e-06" d="5.5277049207960265e-08" /> - <superelevation s="902.40858056089337" a="-0.024988197458015133" b="-8.6815640143504084e-05" c="-8.8573917473615602e-06" d="5.6044884779532775e-07" /> - <superelevation s="912.43534256712553" a="-0.026184203048967444" b="-9.5401775576210002e-05" c="2.6941703939908689e-06" d="-3.1175339968837514e-08" /> - <superelevation s="922.46210457335769" a="-0.026901339255364393" b="-5.0776892739646723e-05" c="1.1428482676235422e-06" d="9.2367475874057916e-08" /> - <superelevation s="932.48886657958985" a="-0.027202458686800275" b="0" c="3.0026689037584788e-05" d="-1.9964364048215199e-06" /> - <superelevation s="942.51562858582201" a="-0.026196204720865035" b="0" c="-1.5527856208215e-05" d="1.0324274309468723e-06" /> - <superelevation s="952.54239059205418" a="-0.026716574012078945" b="0" c="5.0912055884225187e-06" d="-1.5970531414578659e-07" /> - <superelevation s="962.56915259828634" a="-0.026365715748419019" b="5.3928234054116369e-05" c="4.7255275561879434e-06" d="-2.8294042664449644e-07" /> - <superelevation s="972.59591460451838" a="-0.025635122875524937" b="6.3354655242648406e-05" c="3.4732805504187615e-06" d="-4.4099038466203989e-07" /> - <superelevation s="982.62267661075055" a="-0.02509523164820918" b="0" c="-8.7258435700522499e-06" d="4.4745298756354127e-07" /> - <superelevation s="992.64943861698271" a="-0.025521437644232904" b="-4.0028571509310237e-05" c="-1.7422084260726965e-06" d="1.9840643323721464e-07" /> - <superelevation s="1002.6762006232149" a="-0.025897945568155778" b="-1.5125048493921501e-05" c="7.5423394334690849e-07" d="0" /> - <superelevation s="1012.702962629447" a="-0.025973773198946414" b="0" c="4.6692123179867966e-06" d="-2.3852033939207345e-07" /> - <superelevation s="1022.7297246356792" a="-0.025744789926941802" b="2.1694550063498598e-05" c="9.6776639095447222e-07" d="-1.0788402335224987e-07" /> - <superelevation s="1032.7564866419114" a="-0.025538721018308435" b="8.5630062417437916e-06" c="-4.2700755420458332e-07" d="1.3444299107214771e-23" /> - <superelevation s="1042.7832486481434" a="-0.025495791405486513" b="0" c="-6.5901828202032184e-06" d="4.3817288280483979e-07" /> - <superelevation s="1052.8100106543757" a="-0.025716641516225242" b="0" c="1.9843184410380039e-05" d="-1.2974873351774464e-06" /> - <superelevation s="1062.8367726606077" a="-0.025029620242200845" b="6.5933848544096156e-06" c="-3.2878933649321251e-07" d="0" /> - <superelevation s="1072.86353466684" a="-0.024996565091825514" b="0" c="-4.0038045742321365e-06" d="2.2360266930074194e-07" /> - <superelevation s="1082.890296673072" a="-0.025173688718897139" b="-1.2850066582559157e-05" c="1.5907387017060119e-07" d="3.2028590433408743e-08" /> - <superelevation s="1092.9170586793043" a="-0.025254254210600628" b="0" c="3.0787102966890134e-06" d="-2.0469953608655632e-07" /> - <superelevation s="1102.9438206855364" a="-0.025151080515954136" b="0" c="-1.9607114974456636e-06" d="5.4445892132733235e-08" /> - <superelevation s="1112.9705826917684" a="-0.025293318334036082" b="-2.2897865594191895e-05" c="-4.1713159329491854e-07" d="-4.5054215768386951e-08" /> - <superelevation s="1122.9973446980007" a="-0.025610263413481448" b="-4.485153002355658e-05" c="-8.4350640434537607e-06" d="7.0954478105323355e-07" /> - <superelevation s="1133.0241067042327" a="-0.026192749568359232" b="0" c="3.1669416236668e-06" d="-2.1056592491829443e-07" /> - <superelevation s="1143.050868710465" a="-0.02608661906676742" b="0" c="-7.2033386172907569e-07" d="0" /> - <superelevation s="1153.0776307166971" a="-0.026159038520432963" b="-1.4445232393175702e-05" c="-1.7975677192251003e-06" d="3.5811955272841752e-08" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-4.3987348436975111" b="1.5219767441249236e-09" c="-0.0043326045025927941" d="0.00022747647951899081" /> - <laneOffset s="8.7126934247653427" a="-4.5771767307687421" b="-0.023693388661037134" c="-0.0018692903921854794" d="0.00010735441173412201" /> - <laneOffset s="10.026762006232149" a="-4.6112957164722781" b="-0.028050009067761759" c="-0.0014472425078598556" d="0.00010867540854711039" /> - <laneOffset s="20.053524012464297" a="-4.9284961340015467" b="-0.024294963067600862" c="0.001827514029443517" d="0.0001060815909037942" /> - <laneOffset s="22.576780707249679" a="-4.9764588866152488" b="-0.013046180480934826" c="0.00053033108134223914" d="0.00013526189661524962" /> - <laneOffset s="27.088659857403332" a="-5.0121020870235142" b="-0" c="0.0010040275493958513" d="-1.4235362456334237e-05" /> - <laneOffset s="30.080286018696448" a="-5.003497359300674" b="0.005625138069266033" c="0.00090989515581282301" d="-9.1010921962491328e-06" /> - <laneOffset s="40.107048024928595" a="-4.8647926159425552" b="0.02112678140240155" c="0.00061769328506656996" d="-1.5138219065608483e-06" /> - <laneOffset s="42.6365533705969" a="-4.8074245632796231" b="0.024222640233550231" c="0.0012759498387151446" d="-0.00012713207204618181" /> - <laneOffset s="47.158021339937434" a="-4.6835690758857087" b="0.027963833513255851" c="0.0052293828790835103" d="-0.00043606042764313444" /> - <laneOffset s="50.133810031160742" a="-4.5655376371120928" b="0.047502548680578474" c="0.001318276507633873" d="-0.00044336096867862224" /> - <laneOffset s="56.132889299959245" a="-4.3288445806964244" b="0.015451149256682558" c="-0.0023784623655798212" d="0.00012573483111927915" /> - <laneOffset s="60.281374322502877" a="-4.2967020310228037" b="0.0022087804213750139" c="-0.00018364627816877315" d="-6.2109020465797669e-07" /> - <laneOffset s="66.122001300770975" a="-4.2901898264900673" b="-0" c="-0.0052763915954785233" d="0.00036293398955264091" /> - <laneOffset s="70.187334043625043" a="-4.3530077658053825" b="-0.024906020776906124" c="-0.00084869252443569155" d="0.00036374398754746349" /> - <laneOffset s="72.509500502303979" a="-4.4108653611216893" b="-0.022963209901830314" c="-0.0021344598656407284" d="0.00020747104438566643" /> - <laneOffset s="79.723548572694199" a="-4.6097133555504675" b="-0.021367473066417907" c="0.00084909433341947844" d="2.8208560718875394e-07" /> - <laneOffset s="83.239019431268048" a="-4.6743242665841285" b="-0.015387081800934352" c="0.0022209483911482713" d="-0.00092721383853756954" /> - <laneOffset s="84.765729871503567" a="-4.6959387127402135" b="-0.015089166182972784" c="-0.0038740828480003137" d="0.00078592658490662069" /> - <laneOffset s="88.84936070033379" a="-4.7686410076951686" b="-0.0074113832258369001" c="0.0044962778123266781" d="-0.0013845067790462713" /> - <laneOffset s="90.4299398479112" a="-4.7745894813686842" b="-0.003574388268774157" c="-4.5276267805426337e-06" d="5.8945072474736682e-06" /> - <laneOffset s="100.26762006232148" a="-4.8045792509256628" b="-0.001952060572128328" c="0.00013649118654102284" d="7.4917086225399038e-06" /> - <laneOffset s="105.3182754489775" a="-4.8099914510768409" b="-0" c="0.0029106301813870473" d="-9.1785062556350782e-05" /> - <laneOffset s="110.29438206855363" a="-4.7492289212277976" b="0.022148966997734564" c="0.0015020780032797482" d="-9.3272524691027982e-05" /> - <laneOffset s="119.78332601555144" a="-4.4835020767587395" b="0.025460444568719591" c="0.002318686399477036" d="-0.00014334264564257559" /> - <laneOffset s="130.34790608101792" a="-4.1247514450270604" b="0.026456771403699633" c="-0.0021084445237784292" d="-0.0001593007076091393" /> - <laneOffset s="134.586168030762" a="-4.0626221943181191" b="-0" c="-0.0039670231355352576" d="0.00026169291588582275" /> - <laneOffset s="140.37466808725009" a="-4.1447878630217474" b="-0.019620803381933952" c="0.00062252078777969282" d="0.00027498295532641835" /> - <laneOffset s="141.55979480021796" a="-4.1667089347661257" b="-0.016986609777233475" c="-0.00071075833435954485" d="4.1391341735769386e-05" /> - <laneOffset s="150.40143009348222" a="-4.3438522269435547" b="-0.01984789757149585" c="0.00036208257542812063" d="4.9164251649265654e-05" /> - <laneOffset s="151.86761037256127" a="-4.3720195024774151" b="-0.018469078003008003" c="-0.00017943114705552905" d="1.0311470889346952e-05" /> - <laneOffset s="160.42819209971438" a="-4.5368060070544329" b="-0.019274164128959239" c="8.2329930784284938e-05" d="1.0281057346622863e-05" /> - <laneOffset s="170.45495410594654" a="-4.7114225243583654" b="-0.014522311087764828" c="0.0003879584853097055" d="1.0331695031916882e-05" /> - <laneOffset s="180.48171611217867" a="-4.8076156377947097" b="-0.0036262557651480978" c="0.0007003007835947408" d="9.1739810401684677e-06" /> - <laneOffset s="182.95097501275259" a="-4.8121617801398546" b="-0" c="9.3352538005629694e-05" d="-2.0818234990614941e-06" /> - <laneOffset s="190.50847811841084" a="-4.8077284961380871" b="0.0010543088157651845" c="5.4620592378450894e-05" d="-2.0136310814985006e-06" /> - <laneOffset s="200.53524012464297" a="-4.7936957000988185" b="0.0015423171971806551" c="3.3167173938737274e-06" d="-2.0459957434381112e-06" /> - <laneOffset s="210.56200213087513" a="-4.779960269497975" b="0.00099174065294277414" c="-5.3981740779696452e-05" d="-1.6608468367977923e-06" /> - <laneOffset s="217.51609425600103" a="-4.7762326737376064" b="-0" c="-0.00051538119736546282" d="1.321971480837549e-05" /> - <laneOffset s="220.58876413710726" a="-4.7807150384283039" b="-0.0027927586767433291" c="-0.0004000938501293408" d="1.2657751691440768e-05" /> - <laneOffset s="230.61552614333942" a="-4.8361815349159096" b="-0.0069983727937054695" c="-2.3542395334098417e-05" d="1.2537300168835985e-05" /> - <laneOffset s="240.10054032772359" a="-4.893980824388092" b="-0.0040611994887832133" c="0.00016371184777204671" d="-1.4580060513559684e-05" /> - <laneOffset s="247.64391596336876" a="-4.9215586638315916" b="-0.004080245940388999" c="-0.00068204732619946606" d="0.00015769626933828971" /> - <laneOffset s="251.65798670980072" a="-4.9387272835348126" b="-0.0019330500855352024" c="1.6998718294836753e-05" d="-8.7614145241048917e-08" /> - <laneOffset s="260.69581216203585" a="-4.9548740379935996" b="-0.0016472567595852852" c="1.3528567520996636e-05" d="1.5163873195005653e-07" /> - <laneOffset s="270.72257416826801" a="-4.9698777225716286" b="-0.0013302258711489535" c="1.3211168018207694e-05" d="1.727675477801084e-07" /> - <laneOffset s="280.74933617450017" a="-4.9817132250401714" b="-0.0010131873441465815" c="1.3605586753212209e-05" d="1.4658612536671872e-07" /> - <laneOffset s="290.77609818073233" a="-4.9903565965726093" b="-0.00069613585459246078" c="1.1118527004903734e-05" d="3.1195776647976702e-07" /> - <laneOffset s="300.80286018696444" a="-4.9959043043052596" b="-0.00037908128915366089" c="1.5735215274368004e-05" d="5.0725953274032506e-09" /> - <laneOffset s="310.8296221931966" a="-4.998118193826695" b="-6.2004837140991156e-05" c="1.6379588993756738e-05" d="-1.931477762192992e-07" /> - <laneOffset s="312.79037128404138" a="-4.9981782538001021" b="-0" c="3.943580143390606e-05" d="-3.9152793655657801e-08" /> - <laneOffset s="320.85638419942876" a="-4.9956330848808657" b="0.00062853745883599641" c="3.9350947240970165e-05" d="-2.5866762853188626e-08" /> - <laneOffset s="330.88314620566092" a="-4.9854007792488346" b="0.0014098610050241943" c="3.9968650535773424e-05" d="-6.6980894990854108e-08" /> - <laneOffset s="340.90990821189308" a="-4.9673136720831454" b="0.0021911713332881332" c="4.0154978084616244e-05" d="-7.941747249508379e-08" /> - <laneOffset s="350.93667021812519" a="-4.941386356277917" b="0.0029724672158881055" c="4.0230044096984757e-05" d="-8.4457385011037905e-08" /> - <laneOffset s="360.96343222435735" a="-4.9076227062524191" b="0.0037537483592959696" c="3.5205427548486868e-05" d="5.2752174162598024e-07" /> - <laneOffset s="365.7128737348321" a="-4.8889438467378303" b="0.004123858829123089" c="0.0027960076017200181" d="-0.00049481770570296963" /> - <laneOffset s="368.87711231845924" a="-4.863576847559095" b="0.006955382075557205" c="-0.00068811207333551241" d="3.1339322059193549e-05" /> - <laneOffset s="370.99019423058951" a="-4.8516563638258967" b="0.0044671087709753643" c="-0.00049291513402964569" d="2.975440260428147e-05" /> - <laneOffset s="381.01695623682167" a="-4.8264274929778868" b="0.0035565852571184512" c="0.00039492405058222922" d="3.164556972002574e-05" /> - <laneOffset s="384.14440905081938" a="-4.8104736816541509" b="0.0069553701833522949" c="0.0012809206195812915" d="-0.00019218729393354053" /> - <laneOffset s="388.50413623799659" a="-4.7717292734031567" b="0.0071654598908711667" c="-0.00065897962425378101" d="3.1793438363405375e-05" /> - <laneOffset s="391.04371824305377" a="-4.7572613302425282" b="0.0044335474255377096" c="-0.00042107671076899769" d="2.9011605883304452e-05" /> - <laneOffset s="399.04027781926641" a="-4.7338991531697019" b="0.0032646557911693835" c="-0.00079260538215514568" d="0.0002831064099540536" /> - <laneOffset s="401.73852303557572" a="-4.7252993706610695" b="0.0051708602242261795" c="0.0015830142456246304" d="-0.00019330314898951127" /> - <laneOffset s="406.12874200168721" a="-4.6884438769788401" b="0.0078932307840948769" c="-0.00028899797616995318" d="1.5307687029205923e-05" /> - <laneOffset s="411.0972422555181" a="-4.6544830362403271" b="0.0061551141941189021" c="-6.6712906778439561e-05" d="1.457302772885549e-05" /> - <laneOffset s="417.59222825557947" a="-4.6133270658623324" b="0.0071327980695130274" c="0.00026182516045762286" d="-7.5835142668303978e-05" /> - <laneOffset s="420.38398828072013" a="-4.5930234390237814" b="0.0068215440784977844" c="-0.00013400633221137139" d="-3.1272357411156918e-06" /> - <laneOffset s="429.26139011333566" a="-4.5452145110259394" b="0.0037029319071469492" c="8.6540591197387779e-05" d="-4.8841763425481457e-05" /> - <laneOffset s="431.15076626798242" a="-4.5382387696417972" b="0.0035068898460383926" c="-0.00017802779691480458" d="-5.1137096665846445e-05" /> - <laneOffset s="434.91027168392247" a="-4.5302880632927351" b="-0" c="-0.00029721385735797298" d="5.373665660206346e-06" /> - <laneOffset s="441.17752827421452" a="-4.5406393522692605" b="-0.0030922223492800766" c="-0.0001930030741518031" d="6.9086987976657978e-06" /> - <laneOffset s="448.89600792388069" a="-4.5728279395566416" b="-0.0048368472471536023" c="-0.00031361554029835179" d="1.9366058979255244e-05" /> - <laneOffset s="451.20429028044668" a="-4.5854255633172798" b="-0.0059751168694379356" c="-0.00018975407782468988" d="1.607567351761055e-05" /> - <laneOffset s="459.67905774274959" a="-4.6399069332494003" b="-0.0057276144303861614" c="0.00026339844879704215" d="-2.0655119228743999e-05" /> - <laneOffset s="461.23105228667885" a="-4.6482389295543562" b="-0.0050592836750607689" c="0.00016709848715832721" d="-1.97209772821513e-05" /> - <laneOffset s="470.54416001372101" a="-4.6967933403118414" b="-0.0070783075345769008" c="-0.00069485736202856197" d="7.237629137241304e-05" /> - <laneOffset s="477.76276746240308" a="-4.7568724027007061" b="-0.0057958974937706645" c="0.001145518299632285" d="-0.00032445394801350065" /> - <laneOffset s="480.23995041391709" a="-4.7691325503237243" b="-0.0060935527414856241" c="-0.00090055012529674842" d="6.8931461886774834e-05" /> - <laneOffset s="481.28457629914317" a="-4.7764021746918965" b="-0.007749365709701834" c="-0.00070967691964224128" d="5.417829355700519e-05" /> - <laneOffset s="487.81897086248534" a="-4.8422254378772287" b="-0.010084018624513302" c="-0.00018370459266001362" d="1.0985035617170233e-05" /> - <laneOffset s="491.31133830537527" a="-4.8792152043735255" b="-0.010965205244928699" c="-5.938469850580387e-05" d="9.9812057804999312e-06" /> - <laneOffset s="499.29876333649361" a="-4.9655013244853112" b="-0.010003495295615377" c="0.00016360802489063587" d="-2.5922795905945815e-05" /> - <laneOffset s="501.33810031160743" a="-4.9854412549915246" b="-0.0096596220884643553" c="2.1665438221100043e-05" d="-1.9557045776569021e-05" /> - <laneOffset s="503.29165397539748" a="-5.0043749690504908" b="-0.0097988837768979015" c="0.00011463370216644739" d="-1.1951394990530082e-05" /> - <laneOffset s="511.3648623178396" a="-5.0823005987242498" b="-0.010284817460111418" c="-0.00016870769727764045" d="-1.3686600310722683e-05" /> - <laneOffset s="514.09203579883285" a="-5.1118814486885107" b="-0.011510389027184631" c="-0.00029894767329098084" d="2.4344986187760452e-05" /> - <laneOffset s="520.52664069971627" a="-5.1918379519399585" b="-0.012333659688435552" c="0.00030847674355518516" d="-3.277435757175419e-05" /> - <laneOffset s="529.48558299573847" a="-5.3011423430247282" b="-0.014698079081622878" c="-0.00052865033667889242" d="3.9079535645151236e-05" /> - <laneOffset s="531.41838633030386" a="-5.3312435625259154" b="-0.016303661716520281" c="-0.00030310482701719529" d="3.4750443484956669e-05" /> - <laneOffset s="536.15446040628308" a="-5.4115660639501861" b="-0.016836316745625603" c="-6.675024914583284e-05" d="5.0385877538825231e-06" /> - <laneOffset s="541.83340863353988" a="-5.5084085502982783" b="-0.017106968951594324" c="1.0724572310852784e-07" d="-4.9510997744409875e-07" /> - <laneOffset s="549.32053979892714" a="-5.6366924599701669" b="-0.017188626363699108" c="-9.9347355683912922e-06" d="-5.6764263301644212e-07" /> - <laneOffset s="551.47191034276818" a="-5.6737231985415617" b="-0.017239254781966813" c="-1.913261659206589e-05" d="3.1123856830214297e-07" /> - <laneOffset s="556.76845063646829" a="-5.7655220943262888" b="-0.01741573428809845" c="-7.6661187958300159e-05" d="1.2250395625099222e-05" /> - <laneOffset s="561.75736076911846" a="-5.8527945321958246" b="-0.017265937309013178" c="6.6597753138847067e-07" d="1.0654248168717709e-05" /> - <laneOffset s="565.94306970271589" a="-5.9242717305095356" b="-0.016700369758137466" c="6.6156595348674109e-05" d="3.9823461726186383e-06" /> - <laneOffset s="572.51020239036438" a="-6.0299642347691673" b="-0.015316208779769806" c="-0.0021117052283588277" d="0.00035811518670605366" /> - <laneOffset s="578.7319810167412" a="-6.1207520726974813" b="-4.8484326839888408e-06" c="0.00099785636572352295" d="-2.5297613573685426e-05" /> - <laneOffset s="581.55219636146467" a="-6.1133966297619136" b="0.0050198688309190578" c="0.00076357974928673456" d="-2.9523626559501797e-05" /> - <laneOffset s="591.57895836769683" a="-6.0160576742811358" b="0.011427775577238253" c="-0.00012614194782293797" d="-2.9677345676937311e-05" /> - <laneOffset s="596.30066752878315" a="-5.9680354023867022" b="0.0082516363164243378" c="-3.6580448452685745e-05" d="1.2054395878894249e-06" /> - <laneOffset s="601.60572037392888" a="-5.9251095646556129" b="0.0079652900691502722" c="-1.7849547304759518e-05" d="1.3429221575184099e-06" /> - <laneOffset s="605.50633588358392" a="-5.894231909467158" b="0.0078873385086180511" c="0.00015981817357233965" d="-2.2326632421331608e-05" /> - <laneOffset s="611.63248238016104" a="-5.8450481613979548" b="0.0073317440957893654" c="-0.00023798498797918214" d="-2.7600060731559183e-05" /> - <laneOffset s="613.30054561141583" a="-5.8336086259361055" b="0.0063074099594486082" c="-0.00032410446585257827" d="3.0618930128928634e-05" /> - <laneOffset s="617.87863353568548" a="-5.8085876816413888" b="0.0052650687543073886" c="-0.0002067332584448888" d="1.6374495890198001e-05" /> - <laneOffset s="621.6592443863932" a="-5.7907525300119689" b="0.0044040356675174742" c="-1.4636401056974391e-05" d="1.8695771940798457e-05" /> - <laneOffset s="627.6516880633269" a="-5.7608641297820471" b="0.0062426808551257094" c="0.00039891478108728111" d="-7.1912703316693024e-05" /> - <laneOffset s="631.31632112138141" a="-5.7361688897170717" b="0.0062691708478323982" c="-0.00020901620276526033" d="3.3587038559874751e-06" /> - <laneOffset s="641.71276839885752" a="-5.6898093205553923" b="0.0030122067471546475" c="-0.00010925584177614609" d="3.1669378103714373e-06" /> - <laneOffset s="651.73953040508968" a="-5.6673983489264739" b="0.001776415464800717" c="-1.050046141858411e-05" d="2.1545052236202236e-06" /> - <laneOffset s="654.8891179481376" a="-5.6618402219554289" b="0.0017743886598773162" c="-2.6596726511509797e-05" d="-2.6611348345567558e-06" /> - <laneOffset s="661.76629241132184" a="-5.6517609074710693" b="0.0010309886671340366" c="-7.4497450598482763e-05" d="-2.6059051458035211e-06" /> - <laneOffset s="667.30016511172983" a="-5.6487785558348573" b="-3.2937889275185709e-05" c="-0.0054927811624135951" d="0.00058363258797895215" /> - <laneOffset s="671.793054417554" a="-5.7068723177526115" b="-0.014046136015183111" c="0.0023735062755096095" d="0.00058452394823527403" /> - <laneOffset s="673.5767317539927" a="-5.7210577268343066" b="-0" c="0.027940323352687629" d="-0.036453724113282286" /> - <laneOffset s="674.06138239795996" a="-5.7186447398380107" b="0.0013951561056777663" c="-0.00015938962299504939" d="9.0414672073923642e-06" /> - <laneOffset s="681.81981642378616" a="-5.7131922833535205" b="0.00055463556123643508" c="5.6236880623194268e-05" d="6.4502042997505137e-06" /> - <laneOffset s="683.46113122967517" a="-5.7121019344841004" b="0.00079136930349303245" c="9.2885849106950078e-05" d="-6.1845964171444107e-06" /> - <laneOffset s="691.84657843001821" a="-5.70258122932161" b="0.0010445249321152888" c="-5.454611842770089e-05" d="-6.3859878873282983e-06" /> - <laneOffset s="696.91319469922951" a="-5.6995198351820395" b="-0" c="-0.0010779804509832465" d="0.00011488777402652892" /> - <laneOffset s="701.63491588320278" a="-5.7114588975387601" b="-0.0024956978053308279" c="-6.183438297518985e-06" d="1.0382831945773843e-06" /> - <laneOffset s="711.90010244248253" a="-5.7366061804080042" b="-0.0022944217690793961" c="2.9858194590642324e-05" d="6.6367958420324254e-07" /> - <laneOffset s="715.55749266515522" a="-5.7445659086587497" b="-0.0020493824948284154" c="5.6357786810210385e-05" d="-1.4429678339170255e-06" /> - <laneOffset s="721.9268644487147" a="-5.7557056750126767" b="-0.0015070739405699648" c="3.075626851080877e-05" d="-1.3789364819041995e-06" /> - <laneOffset s="731.95362645494686" a="-5.7691146729410869" b="-0.0013062004652326209" c="-7.1052765984492489e-06" d="-1.5800046841507104e-06" /> - <laneOffset s="739.19747686652579" a="-5.7795500058883622" b="-0.0016578640922781337" c="8.2676252417373088e-05" d="-5.5524075584951781e-06" /> - <laneOffset s="741.98038846117902" a="-5.7836430692642118" b="-0.0013267061651921995" c="3.3848770119125221e-05" d="-4.3997859738029708e-06" /> - <laneOffset s="752.00715046741118" a="-5.7979778224827756" b="-0.0019749291123818667" c="-0.0001086942843582687" d="-4.2193392468336412e-06" /> - <laneOffset s="757.36395940618274" a="-5.8123247456394944" b="-0.0035026650481381795" c="-0.00027187789295786147" d="2.6445277850946029e-05" /> - <laneOffset s="762.03391247364334" a="-5.8319179597291759" b="-0.0043117865648355947" c="9.7347490576408816e-05" d="2.6083144508354831e-05" /> - <laneOffset s="764.08078610183975" a="-5.8401121029395693" b="-0.003585429544127616" c="0.00023441224025035111" d="-8.7841971971508519e-06" /> - <laneOffset s="772.0606744798755" a="-5.8582600574549755" b="-0.0015223591479627335" c="2.1506584791314454e-05" d="-8.5664096713708224e-06" /> - <laneOffset s="781.45828743592062" a="-5.8777769464175051" b="-0.0033877687607741184" c="-0.00022051797809006206" d="2.1913671207684988e-05" /> - <laneOffset s="788.29373233267734" a="-5.9042385125236105" b="-0.0033308081788984241" c="0.00011273867585719083" d="-3.724945562064355e-06" /> - <laneOffset s="792.11419849233971" a="-5.9155259386091981" b="-0.0026324870749223359" c="6.4673966624366713e-05" d="-3.4477434474309142e-06" /> - <laneOffset s="797.19259551196853" a="-5.9276783634098242" b="-0.0022423600295483001" c="6.2672989419128156e-05" d="-1.0359545488235805e-06" /> - <laneOffset s="802.14096049857187" a="-5.9373652723832651" b="-0.0016982025081115969" c="4.7494056685525912e-05" d="-1.6702782160393973e-06" /> - <laneOffset s="812.50109060765601" a="-5.9517185353828328" b="-0.0012519376818146183" c="4.0598242686180545e-05" d="-9.4713640498613198e-07" /> - <laneOffset s="822.19448451103619" a="-5.9609020339484902" b="-0.00073185233246459813" c="1.3759002117683849e-05" d="-9.5898391278348317e-07" /> - <laneOffset s="833.08903686587576" a="-5.968482214896337" b="-0.000773525053088344" c="5.6135438442933401e-06" d="-2.5324915283627797e-07" /> - <laneOffset s="842.24800852350052" a="-5.9752905824147273" b="-0.00073442922925023965" c="2.8176944642459576e-06" d="-7.3709755874037746e-07" /> - <laneOffset s="847.245664788353" a="-5.9789826386040499" b="-0.00076149599467569972" c="3.1155363890533959e-05" d="-1.5936461318059093e-06" /> - <laneOffset s="852.27477052973268" a="-5.9822270088683229" b="-0.00056904779343586111" c="1.1756800323392689e-05" d="-1.077800255241619e-06" /> - <laneOffset s="862.30153253596484" a="-5.9878372111622138" b="-0.00065835555402105755" c="-1.9794567235667414e-05" d="-1.068783421304925e-06" /> - <laneOffset s="872.32829454219689" a="-5.9975058386074362" b="-0.0013776598735079336" c="-4.8637749307931107e-05" d="-2.0651822777867201e-06" /> - <laneOffset s="874.24784015001205" a="-6.0003441396627641" b="-0.0015872130843493431" c="-0.00016795323410712164" d="6.1647066162471167e-06" /> - <laneOffset s="882.35505654842905" a="-6.0209661327024637" b="-0.0030949172782237457" c="-1.7725104612240983e-05" d="6.2423211352341094e-06" /> - <laneOffset s="892.38181855466121" a="-6.0474875695339634" b="-0.0015676349140471989" c="0.00016594381023136631" d="6.8718590302678556e-06" /> - <laneOffset s="896.19976164873788" a="-6.0506713596663255" b="-0" c="6.7209538898934889e-05" d="-6.0768903649941909e-06" /> - <laneOffset s="902.40858056089337" a="-6.0495349521984698" b="0.00013180169151802179" c="-9.1501546492979861e-05" d="1.8657746577546496e-05" /> - <laneOffset s="903.47972287072298" a="-6.049475827926087" b="-0" c="-0.00019290717506545156" d="3.8137585644890674e-06" /> - <laneOffset s="912.43534256712553" a="-6.0622082827130797" b="-0.0025375805383480183" c="-0.00010027382646952134" d="3.5744312474682533e-06" /> - <laneOffset s="922.39590372254679" a="-6.0939001474008778" b="-0.0034712599328366512" c="-0.00054743187407506973" d="5.1222348402858726e-05" /> - <laneOffset s="931.89810338521079" a="-6.1323660868519827" b="-0" c="0.001608376793099708" d="-0.00022371792876947123" /> - <laneOffset s="936.69097448542834" a="-6.1200504168967305" b="-0" c="-0.0064049429408666661" d="0.0013101819513682464" /> - <laneOffset s="939.12282801590959" a="-6.1390859519372096" b="-0.007906865510342035" c="-0.0039862598583137142" d="0.0019813539308490293" /> - <laneOffset s="941.12760676399034" a="-6.1549940718271881" b="-0" c="0.00020542418869879206" d="-1.4406442354124495e-05" /> - <laneOffset s="942.51562858582201" a="-6.1546368259092015" b="0.00048699995992266198" c="0.00015610944103846026" d="-7.8984644212921538e-06" /> - <laneOffset s="952.54239059205418" a="-6.1420212291736167" b="0.0012353053619695929" c="-8.1856354941837081e-05" d="-8.3871536569015128e-06" /> - <laneOffset s="957.0143481497023" a="-6.1388840725701828" b="-0" c="-0.0028673532605686227" d="0.00028251533571101769" /> - <laneOffset s="962.94077615970718" a="-6.1807869053320621" b="-0.0042183492265310948" c="0.00088402645044105392" d="-9.2117251341293385e-05" /> - <laneOffset s="967.7718825265124" a="-6.1909201614411167" b="-0.0021266338832399982" c="-2.8036892654860376e-05" d="1.7476524567610855e-06" /> - <laneOffset s="972.59591460451838" a="-6.2016353720853354" b="-0.0022751252645345872" c="9.488544326647588e-06" d="2.3012189054483506e-06" /> - <laneOffset s="979.24453123946023" a="-6.2156660558299928" b="-0.0018437839235708837" c="-0.00010496900058670984" d="1.3635672449279574e-05" /> - <laneOffset s="982.62267661075055" a="-6.2225668501128339" b="-0.0020861596039423811" c="3.4298138847313098e-05" d="1.4710127744877628e-05" /> - <laneOffset s="988.76477396131827" a="-6.2306778104867666" b="-0" c="0.00077101174438636022" d="-7.4254143669347914e-05" /> - <laneOffset s="992.64943861698271" a="-6.2233956917567852" b="0.0026286210627052089" c="-0.00010759812856693907" d="-7.379544259656089e-05" /> - <laneOffset s="995.64331430517791" a="-6.2184706597633355" b="-0" c="-2.0966894126576712e-05" d="6.8667621144917196e-07" /> - <laneOffset s="1002.6762006232149" a="-6.2192688484350978" b="-0.00019302348004949317" c="-9.2397743331403889e-06" d="4.8386082886815375e-07" /> - <laneOffset s="1012.702962629447" a="-6.2216454225196172" b="-0.00023237728302676021" c="6.7562068761027406e-06" d="1.5405751914567203e-07" /> - <laneOffset s="1016.644511174979" a="-6.2224469520172905" b="-0.00017193722555437354" c="-3.5340740721693263e-06" d="5.6557259779944392e-08" /> - <laneOffset s="1022.7297246356792" a="-6.2236113485786335" b="-0.00020866549985090619" c="7.0807958443757235e-07" d="2.3537308194546649e-07" /> - <laneOffset s="1032.7564866419114" a="-6.2253951325658878" b="-0.0001234756352388503" c="9.3098633773620253e-06" d="2.3506098292236226e-07" /> - <laneOffset s="1038.2464506349065" a="-6.2257535182493777" b="-0" c="5.6787122322391301e-05" d="-1.210830719662059e-06" /> - <laneOffset s="1042.7832486481434" a="-6.2246977611787369" b="0.00044049750605300016" c="3.8591814708300969e-05" d="-9.6283675234632618e-07" /> - <laneOffset s="1048.6492342216427" a="-6.2209802190597046" b="0.00079386254075553215" c="4.2103016506557365e-05" d="-5.5475663668411971e-08" /> - <laneOffset s="1052.8100106543757" a="-6.2169522405408886" b="0.0011413438242697388" c="4.235606584822453e-05" d="-6.3631316571210182e-07" /> - <laneOffset s="1062.8367726606077" a="-6.2018913856161406" b="0.0017988151499108334" c="2.6600855275164445e-05" d="-4.3161203814818303e-07" /> - <laneOffset s="1072.86353466684" a="-6.1816158383518216" b="0.0022020784528679377" c="1.2447276548196721e-05" d="-2.4986543501159113e-07" /> - <laneOffset s="1078.0072727495419" a="-6.1699935979891638" b="0.0023102966635637394" c="3.4464612300149792e-05" d="-3.3751014891697634e-07" /> - <laneOffset s="1082.890296673072" a="-6.1579298890178276" b="0.0026227370186752991" c="2.7167049227879852e-05" d="-5.8313555255273768e-07" /> - <laneOffset s="1092.9170586793043" a="-6.1294888937081105" b="0.0029916538213774499" c="9.7274670132155751e-06" d="-6.3945574361430159e-07" /> - <laneOffset s="1102.9438206855364" a="-6.0991589360681777" b="0.0029938589305630423" c="-9.8667960013522585e-06" d="-4.0237083675999124e-07" /> - <laneOffset s="1105.6501205294148" a="-6.0911368965386385" b="0.0029316129505494197" c="-6.5740684307030899e-05" d="5.6196865311733336e-06" /> - <laneOffset s="1112.9705826917684" a="-6.0709945345469114" b="0.0028725715142766802" c="5.4119878377953274e-05" d="5.8516032781333021e-06" /> - <laneOffset s="1117.8755322013603" a="-6.0549121480501249" b="0.0038258249697275299" c="0.00012448425256518506" d="-5.8594204964285792e-06" /> - <laneOffset s="1122.9973446980007" a="-6.0328386726944396" b="0.0046398650829145432" c="2.3318774913404768e-05" d="-5.0000809630760494e-06" /> - <laneOffset s="1127.0135448196359" a="-6.0141518263716023" b="0.004585218947175204" c="4.5505507558165763e-05" d="-1.6109970618907167e-06" /> - <laneOffset s="1133.0241067042327" a="-5.9852979295396702" b="0.0049576455179494204" c="1.2894196331420009e-05" d="-2.0932402875263427e-06" /> - <laneOffset s="1143.050868710465" a="-5.9364025585568543" b="0.0045848818513002975" c="-4.991128703913844e-05" d="-1.9368932657222926e-06" /> - <laneOffset s="1144.8561227294983" a="-5.9282997353271245" b="0.0043857400793875399" c="-0.00020408248741884773" d="2.0056430666305944e-05" /> - <laneOffset s="1153.8284820225281" a="-5.8908917608568778" b="0.0055673597042495875" c="0.00022759844176853188" d="-9.3857208566557467e-06" /> - <laneOffset s="1161.5521406333032" a="-5.8386385216894885" b="0.0074034322502148" c="8.87383162565044e-05" d="-6.7691093270851765e-06" /> - <laneSection s="0"> - <left> - <lane id="4" type="shoulder" level="false"> - <link> - <successor id="-4" /> - </link> - <width sOffset="0" a="2.4929956709256391" b="-0.020684618710890737" c="0.070180193595642676" d="-0.046572413838830047" /> - <width sOffset="0.86308716984601053" a="2.4974788119161859" b="-0.0036194618592415295" c="-0.040872811221756677" d="0.039789363903748022" /> - <width sOffset="1.6807165674443758" a="2.4889440899879922" b="0.0093426119649057532" c="1302.9243837162239" d="-280847.6910486375" /> - <width sOffset="1.6838082386499986" a="2.493127409210226" b="0.012380514959930679" c="-0.0098440509144156231" d="0.0019464579447203046" /> - <width sOffset="4.198439615690587" a="2.4929627795643183" b="-0.00020327671170468006" c="0.00016694795129000442" d="-4.627360862660755e-05" /> - <width sOffset="5.9586869607370474" a="2.4928698658852753" b="-4.5669599391597038e-05" c="-0.00094495440813036156" d="0.0010658592031864782" /> - <width sOffset="7.089477072918875" a="2.4931510762395783" b="0.0019059388098271075" c="-0.00099120480994232857" d="0.00012564557411860383" /> - <width sOffset="10.026762006232149" a="2.493381691250633" b="-0.0006648877073685347" c="0.00012364057621479962" d="0.00011783216547424838" /> - <width sOffset="11.106320798608467" a="2.4929562551910127" b="1.4048332017790877e-05" c="0.00039529986019295018" d="-6.495583100074851e-05" /> - <width sOffset="17.883980290817895" a="2.490986679040037" b="-0.0035790993360865359" c="0.0021400457158673577" d="-0.00027938784250302679" /> - <width sOffset="20.053524012464297" a="2.4904416184924676" b="0.0017615775202160615" c="0.00031384305543079717" d="-0.00027768127416544447" /> - <width sOffset="21.895817805233118" a="2.4930158657398236" b="9.0570343556816563e-05" c="0.0013531851959072009" d="-0.00046305161792624497" /> - <width sOffset="24.914628104338387" a="2.4928821037989488" b="-0.0043990785592523144" c="0.0016802995605659119" d="-0.00015999037869674014" /> - <width sOffset="30.080286018696448" a="2.4929419604944849" b="0.00015306668268029889" c="-0.0007682143630082679" d="-0.00016124339697627909" /> - <width sOffset="30.174832728997469" a="2.4929494290392364" b="3.4782979666885504e-06" c="-0.00087137479974195567" d="0.00020067480333397958" /> - <width sOffset="34.550277321062239" a="2.4930922785596357" b="0.0039036395629323591" c="-0.0026952028801798425" d="0.00045296618486145314" /> - <width sOffset="37.5514388874766" a="2.4927764166347748" b="-3.4279502173554383e-05" c="-0.00075359679962579791" d="0.00016789351391428956" /> - <width sOffset="40.107048024928595" a="2.4905692835871402" b="-0.00059647007834304211" c="0.00051539365419590443" d="0.00017165295258748199" /> - <width sOffset="42.001449571591301" a="2.4924559431508451" b="0.0032043173117522888" c="-0.0022797539491391018" d="0.00030583041867428496" /> - <width sOffset="46.743862119336541" a="2.4889989876323693" b="0.0022160656264374468" c="-0.00039514733155529704" d="2.2221903818583428e-05" /> - <width sOffset="50.133810031160742" a="2.4928360874644282" b="0.00030311336278381756" c="-0.00018823147015105835" d="2.7150781953733002e-05" /> - <width sOffset="51.237446402048825" a="2.4929778432413237" b="-1.3154794797524266e-05" c="0.0022547560776198759" d="-0.00039650867416000869" /> - <width sOffset="52.10880100579211" a="2.4944160005746783" b="0.0030130712278324846" c="-0.0041607243555408461" d="0.0008623890676308603" /> - <width sOffset="55.669092035221794" a="2.4913222599483849" b="0.0061803754572008866" c="-0.0058081689901752585" d="-0.00049913356598908483" /> - <width sOffset="56.167745918895669" a="2.4928980047393505" b="1.5506196918111791e-05" c="6.9982030805705407e-05" d="-6.5176300325793542e-06" /> - <width sOffset="60.160572037392896" a="2.4936607300165816" b="0.00026263327085864949" c="-2.2955506845066527e-05" d="-8.396124052822394e-06" /> - <width sOffset="65.904192404056019" a="2.4928210376992306" b="-0.00083200577742036834" c="0.00053928777806093713" d="-5.6276908687944295e-05" /> - <width sOffset="70.187334043625043" a="2.4947288486021799" b="0.00069043539048020686" c="-0.00018463764358216919" d="-5.661147742745074e-05" /> - <width sOffset="73.311776206552395" a="2.493356895581619" b="-0.002121291192430156" c="0.0019565420985061294" d="0.00024343500180602025" /> - <width sOffset="73.809155301993755" a="2.4928157841056366" b="5.6622940683009881e-06" c="4.8506049162713315e-05" d="-2.5944451556259623e-05" /> - <width sOffset="79.674839483543778" a="2.4892818979632203" b="-0.0021032493058642625" c="0.0020472647352507592" d="-0.00033482811187765315" /> - <width sOffset="80.21409604985719" a="2.4886905408106692" b="-0.00018734908148915555" c="0.0015573201851679494" d="-0.00034508299281333298" /> - <width sOffset="83.153803189014909" a="2.4928312683557223" b="2.2286013519310505e-05" c="0.0012990696364682426" d="-0.00034067837989993911" /> - <width sOffset="86.2772195498017" a="2.4951933680939051" b="-0.0018333419048161461" c="-0.0027922731734904729" d="0.0024491874815410586" /> - <width sOffset="87.271049033691497" a="2.4930175473121112" b="-0.00012626301842389494" c="-0.0011874820736837114" d="0.0027602242186884822" /> - <width sOffset="87.541955453923634" a="2.4929510707006211" b="-0.00016193509837460901" c="0.00062538112242733817" d="-8.9304784807253809e-05" /> - <width sOffset="90.240858056089337" a="2.4953137031742099" b="0.001262242059189362" c="-5.5881884028824742e-05" d="-8.5660924327079493e-05" /> - <width sOffset="94.212254300816639" a="2.4940796707142878" b="-0.0032347453953242445" c="0.0030003449507391526" d="0.00032779956657143358" /> - <width sOffset="94.708157762396326" a="2.4932533708775741" b="-1.7144853919212437e-05" c="-0.00036189241423816585" d="4.2150008909211349e-05" /> - <width sOffset="100.26762006232148" a="2.4892154467689052" b="-0.0001327298114242835" c="0.00035295125351188488" d="4.5614506683275239e-05" /> - <width sOffset="104.20193325065672" a="2.4969343713897141" b="0.0047626879827700058" c="-0.0055808028619654688" d="0.0012479355947579093" /> - <width sOffset="106.68261973697608" a="2.4934564950675409" b="0.00011290206591979546" c="-0.0029945267398645741" d="0.0017877559554625698" /> - <width sOffset="107.73424970427061" a="2.492342706475978" b="-0.00025399087975655141" c="0.0018907305680629055" d="-0.00042848802166335924" /> - <width sOffset="110.29438206855363" a="2.4968948782037952" b="0.0010017616746857434" c="-0.0012426301832563923" d="-0.0004558507374798356" /> - <width sOffset="111.22296808430426" a="2.4963886180683561" b="-0.0024852183129552771" c="-0.0011322293270014066" d="0.0011188625172516837" /> - <width sOffset="112.46470391429074" a="2.4936990615802834" b="-0.00012152899182020852" c="-0.0016026596195670762" d="0.00048790839047750141" /> - <width sOffset="114.96924948371827" a="2.4910068343515768" b="0.0010321827963911678" c="0.00054149541690313204" d="-0.00020177894895323788" /> - <width sOffset="117.4547905455525" a="2.4938192708448641" b="-1.5718221538209287e-05" c="0.00099881783550001069" d="-0.00021362326118648818" /> - <width sOffset="119.93280540009536" a="2.49666304383324" b="0.00099915481272895568" c="-0.0016370449239388732" d="0.00023096973163538591" /> - <width sOffset="120.32114407478579" a="2.4968177031246519" b="-0.00016780539374253167" c="-0.0013394021062874931" d="0.00024357582029260451" /> - <width sOffset="125.13600958068892" a="2.4921470657531906" b="0.0038745160637072493" c="-0.001451999608198079" d="0.00014735721211221482" /> - <width sOffset="130.12209338826364" a="2.4936337995471769" b="0.00038528957424636273" c="-0.0018171913014251779" d="0.00039350041807447215" /> - <width sOffset="130.34790608101792" a="2.4936326727055986" b="-0.00037520476895269023" c="-0.0013623549712237699" d="0.00037026142713153976" /> - <width sOffset="133.94683613957466" a="2.4918962291028981" b="0.0042059632630080321" c="-0.0016202425427893031" d="0.00016303136185111424" /> - <width sOffset="138.94644427308117" a="2.4927988117282629" b="0.00023024329073912959" c="0.00039661859889923349" d="-0.00013057258824475062" /> - <width sOffset="140.37466808725009" a="2.4935562822477078" b="0.00056412853773824337" c="-0.00022361690232399888" d="-0.00018412826584059998" /> - <width sOffset="142.24950567137031" a="2.4926144939037593" b="-0.0022160035912264535" c="0.0023596990953053554" d="-0.00059577369120038942" /> - <width sOffset="144.25271479199466" a="2.4928553169388312" b="6.5692291335801845e-05" c="0.0016302167014487542" d="-0.00041871212935969793" /> - <width sOffset="147.1718843774791" a="2.4965232374981579" b="-0.0011207800638443101" c="-0.00039896478256286393" d="7.3327226882792933e-05" /> - <width sOffset="150.40143009348222" a="2.4912123961272989" b="-0.0014033287257897258" c="0.00033353748908621235" d="7.5084380765744348e-05" /> - <width sOffset="151.31548822347898" a="2.4902656851882696" b="-0.00060538390808519832" c="0.00031992606398866902" d="-2.5503593424496662e-05" /> - <width sOffset="158.59971617744517" a="2.4929740368452693" b="-4.2153838588181169e-06" c="-0.00037320916986874965" d="5.164953474364515e-05" /> - <width sOffset="160.42819209971438" a="2.4920343131742406" b="-0.00085097992798603694" c="-7.5507152770506038e-05" d="5.5519366434650101e-05" /> - <width sOffset="160.50616880232545" a="2.4919675237775607" b="-0.00086174279135055321" c="0.0011950273286017072" d="-0.00017973458715012835" /> - <width sOffset="164.97616182028713" a="2.4959403348055709" b="-0.00095195794150826005" c="-0.0006337501434559885" d="0.00021647913311457451" /> - <width sOffset="167.48561583930072" a="2.4929814931152308" b="-4.2950871367086058e-05" c="-0.00013541857580344426" d="0.00015858040012482448" /> - <width sOffset="168.65166859531092" a="2.4929987068170947" b="0.00028809405533323715" c="3.8376030914371933e-06" d="-1.444130319365964e-05" /> - <width sOffset="170.45495410594654" a="2.4934460182108573" b="0.00016105228053110016" c="-8.0944352783036239e-05" d="-1.3685536514626038e-05" /> - <width sOffset="172.92204015141499" a="2.4931451777758555" b="-0.00048823269643203174" c="0.00036894245518301328" d="-3.7414086127446813e-05" /> - <width sOffset="180.48171611217867" a="2.4943750335280308" b="-0.001324561100250303" c="-0.00047997902446163579" d="-3.6968245512768314e-05" /> - <width sOffset="181.22854906987027" a="2.4931026955599815" b="-0.0021033475758911874" c="0.00019439340152388798" d="1.4569687634809439e-05" /> - <width sOffset="188.33514750239945" a="2.4932018468321795" b="0.0028670753138061141" c="-0.0014510943082446787" d="0.00017923447677823436" /> - <width sOffset="190.50847811841084" a="2.4944188199466213" b="-0.00090056997694384997" c="-0.00029429294749948017" d="0.00019331926912819234" /> - <width sOffset="192.34399181560801" a="2.4929698016916362" b="-2.6985491866540756e-05" c="-0.00087912464424813553" d="0.00016141232570456373" /> - <width sOffset="196.62823669583827" a="2.489410934368296" b="0.001328294682185825" c="-0.00089336871245798818" d="0.00014011519746585092" /> - <width sOffset="200.53524012464297" a="2.489319952457552" b="0.00076394462550070322" c="0.00071179198877678932" d="0.00014632350079096617" /> - <width sOffset="201.37916964849401" a="2.4905595676138388" b="0.0022779914462205115" c="-0.00055616658969394491" d="-1.9217114964981934e-06" /> - <width sOffset="203.382315367117" a="2.4928756000415566" b="2.669286327645345e-05" c="0.00013334429519548687" d="-1.1911205937221503e-05" /> - <width sOffset="206.62521604170499" a="2.4939582492580818" b="0.00051574828361208532" c="2.1651644214902184e-05" d="-1.1757928325921678e-05" /> - <width sOffset="210.56200213087513" a="2.4956068117166668" b="0.00013954090466622286" c="-0.00011872798150735502" d="-1.1382902070890826e-05" /> - <width sOffset="215.39020691674941" a="2.492231629450818" b="-0.0018030047758590684" c="0.0016951996388894122" d="-0.00035139099711923742" /> - <width sOffset="217.89204422998588" a="2.4928287828397977" b="8.0953659529159512e-05" c="0.0018517114450591935" d="-0.00048599353524657541" /> - <width sOffset="219.47906670079374" a="2.4956784696178005" b="0.0022862402615017878" c="-0.0012491020266794735" d="0.00013823933227119883" /> - <width sOffset="220.58876413710726" a="2.4968662307006149" b="2.4685147434530715e-05" c="-0.00078794674396828876" d="0.00013260782666672577" /> - <width sOffset="224.48093885418407" a="2.4928445940970496" b="-8.2330185590583083e-05" c="-0.0014328500796504783" d="0.00030903619888984985" /> - <width sOffset="226.5059931078365" a="2.4893683457343609" b="-0.0020836000798676274" c="0.0066118897593440123" d="-0.0036344919961725803" /> - <width sOffset="227.56939069489118" a="2.4902589747613817" b="-0.00035127281279818783" c="0.0012673907996830123" d="-0.00029114778543433038" /> - <width sOffset="230.31871756424843" a="2.4928226434368677" b="1.5488246667180738e-05" c="0.00092166274944069522" d="-0.00017045490431957073" /> - <width sOffset="230.61552614333942" a="2.4929039777066571" b="0.0005175542243127107" c="0.00075768419547974611" d="-0.00017186889668690346" /> - <width sOffset="234.90929042503686" a="2.4954897934253548" b="-0.0024817483217016" c="-9.5666545511496979e-05" d="0.00040087071316251488" /> - <width sOffset="236.40858196975034" a="2.4929049052706063" b="-6.5290480634479231e-05" c="-0.0012612512109498534" d="0.00027802271910317951" /> - <width sOffset="239.31166602563988" a="2.4888880184366853" b="-0.00035888649214975855" c="0.00095489166748681715" d="-0.00011778671248962536" /> - <width sOffset="240.64228814957158" a="2.4898236661487561" b="0.0015566698234495135" c="0.00048234075559134166" d="-0.00011823876505626022" /> - <width sOffset="245.44320853138922" a="2.4953307223325432" b="-0.0019877689432350873" c="0.00026043480217594447" d="5.6042474497266873e-05" /> - <width sOffset="247.6908349879881" a="2.492814971941165" b="3.2301628740462622e-05" c="-5.4222807829327585e-05" d="3.3190825192963229e-05" /> - <width sOffset="248.8464042469457" a="2.4928311088485087" b="3.9948349646413593e-05" c="2.4302404588447477e-06" d="-1.5102771920938301e-06" /> - <width sOffset="250.66905015580372" a="2.4929028493198651" b="3.3755690146941716e-05" c="-1.1542401162190452e-05" d="6.8218937417468827e-07" /> - <width sOffset="260.33951372486428" a="2.4927668073121465" b="1.9056329762006657e-06" c="0.0019236839413642372" d="-0.00018393586121870546" /> - <width sOffset="261.67179569142235" a="2.495748871968134" b="0.0041482396844909819" c="-0.0031866173235824014" d="0.00043298797031039802" /> - <width sOffset="266.41601636369995" a="2.4899407922672081" b="0.0031488069363945683" c="-0.00035308994407631626" d="-0.00031782367193739262" /> - <width sOffset="267.91593499428507" a="2.4927968999312275" b="-5.5482476139687934e-05" c="0.00049316834021351935" d="-0.00013552625327641852" /> - <width sOffset="270.53782128765937" a="2.4935989411744899" b="-0.0002643592352379689" c="1.1270283131804881e-05" d="-3.8431204398747799e-06" /> - <width sOffset="270.72257416826801" a="2.493550460504089" b="-0.00026058833957705806" c="2.6360734010910238e-05" d="-8.1967309614941448e-07" /> - <width sOffset="280.74933617450017" a="2.492761533292458" b="2.08174170999555e-05" c="5.2045537623822896e-06" d="-1.0402638675172529e-06" /> - <width sOffset="285.5367073119711" a="2.492866337563032" b="-8.7550256075076373e-07" c="-0.00016784624429940127" d="-9.6663377567864344e-07" /> - <width sOffset="285.66330607842167" a="2.4928635346508292" b="-4.3420234970615198e-05" c="-0.0011487409759722976" d="0.00052291125308152821" /> - <width sOffset="287.06180856996383" a="2.4919863621385074" b="-0.00018831052078834969" c="-2.8436289792945883e-05" d="2.0441385530940283e-06" /> - <width sOffset="290.77609818073233" a="2.4909993628134277" b="-0.00031494926894585639" c="-1.0299642433506906e-05" d="3.2106873021066138e-06" /> - <width sOffset="294.76768778136068" a="2.4897823031310624" b="-0.00024370756427759044" c="6.7027701705124854e-05" d="-5.2432723717039904e-06" /> - <width sOffset="300.80286018696444" a="2.4896002754367847" b="-7.5920343581793379e-06" c="-2.1498761660701123e-05" d="-4.8309947662951493e-06" /> - <width sOffset="300.83515679882117" a="2.4896000076523155" b="-8.995826033497494e-06" c="7.1166192493427396e-05" d="-3.8501362355530202e-06" /> - <width sOffset="310.68142343862371" a="2.4927356374298482" b="0.00027264659846624204" c="-0.00010043671790825407" d="1.1990924948414873e-05" /> - <width sOffset="310.8296221931966" a="2.4927738764664245" b="0.00024366747092110396" c="-9.5719587589087964e-05" d="1.2151695330101991e-05" /> - <width sOffset="313.93091526473165" a="2.4929713922715546" b="5.8418265019084988e-07" c="-0.00010954799070881071" d="1.1299425450014065e-05" /> - <width sOffset="319.79449002548699" a="2.4914863402113747" b="-0.00011862759160817386" c="-1.7587941972538843e-05" d="3.7997670610099614e-07" /> - <width sOffset="320.85638419942876" a="2.4913409927500592" b="-0.00015469525070250861" c="-1.429397684379154e-05" d="2.2370539990527319e-06" /> - <width sOffset="330.88314620566092" a="2.4906079041795524" b="0.00023337323089413665" c="5.4311320226593481e-05" d="1.5211796468947016e-06" /> - <width sOffset="333.29248707273683" a="2.4915067281746337" b="0.00052157319167479973" c="0.00045336578374436336" d="-0.00011700970092278163" /> - <width sOffset="335.73364755284064" a="2.4937794975765133" b="0.00064317519334006375" c="-0.00011621733036999508" d="5.096655846960609e-06" /> - <width sOffset="340.90990821189308" a="2.4947017112299044" b="-0.0001502927848129425" c="-3.6285294138435229e-05" d="5.0758895633022056e-06" /> - <width sOffset="345.67915306357759" a="2.4937102253163381" b="-0.00015003575959302126" c="-5.0218146730966251e-05" d="9.9206526141121311e-06" /> - <width sOffset="350.17810300960934" a="2.492922165773984" b="5.0479752310194151e-07" c="-0.00013987304426926557" d="1.6980506219430696e-05" /> - <width sOffset="351.0165090210819" a="2.4928342760177165" b="-0.00019822795612901368" c="-3.4450016829949283e-05" d="2.4628418519100952e-06" /> - <width sOffset="360.96343222435735" a="2.4898778226607687" b="-0.00015254111489562596" c="3.8761082684854667e-05" d="2.4451245157613731e-06" /> - <width sOffset="370.16716501420166" a="2.4936635834404317" b="0.0011823221176130317" c="-0.0021129787440622421" d="0.00067212377884024973" /> - <width sOffset="371.91663287606673" a="2.4928638337238622" b="-3.9472362681580546e-05" c="-0.00095141679895006091" d="0.0007956999418734014" /> - <width sOffset="373.35826155146026" a="2.4932136243155218" b="0.0021784415834281102" c="-0.0010147051095590037" d="9.581983382023188e-05" /> - <width sOffset="380.9478158959671" a="2.493188065523654" b="0.0033341735233127431" c="-0.0030899318789509248" d="0.00069363045923552644" /> - <width sOffset="381.01695623682167" a="2.4934040496052168" b="0.002916843102153083" c="-0.0029353362351537335" d="0.00068954200229273883" /> - <width sOffset="383.19700287127557" a="2.4929566884198877" b="-5.0137813233009157e-05" c="-0.0020404664700667064" d="0.00060399939363867854" /> - <width sOffset="385.60172328753896" a="2.4894358078615388" b="0.00061456557711851018" c="0.0011234670462624461" d="-0.00032238786016593397" /> - <width sOffset="388.10087590867477" a="2.4929564210304225" b="0.00018932150126580848" c="0.0019405151446255464" d="-0.00070578041556704099" /> - <width sOffset="389.52272987091385" a="2.4951199090148863" b="0.0014270172912446803" c="-0.0036925119983713499" d="0.00082072540453719824" /> - <width sOffset="391.04371824305377" a="2.4916359638463161" b="-0.0041095060256145146" c="5.2339691479866138e-05" d="0.00081951138868371974" /> - <width sOffset="393.00912883434069" a="2.4899830601061455" b="0.0055931530912647206" c="-0.002276522270328863" d="-0.00034421921885407407" /> - <width sOffset="394.00878056835057" a="2.4929554687119841" b="9.7557184462537955e-06" c="0.00041944892692442757" d="-1.4659339194922294e-05" /> - <width sOffset="396.07364093719366" a="2.4946349371759151" b="0.0015544558485720865" c="-0.00035639572260327178" d="1.6812193498274899e-05" /> - <width sOffset="401.07048024928594" a="2.4956012125488209" b="-0.00074792759283001404" c="-0.00010535883880153778" d="1.6918179805351878e-05" /> - <width sOffset="409.31267634762384" a="2.4917521101154456" b="0.00096324454031042599" c="-0.00027985485527919551" d="1.7098154768709087e-05" /> - <width sOffset="411.0972422555181" a="2.4926770099028852" b="0.00012776189524334961" c="-0.00019215938283691434" d="1.4387748977912801e-05" /> - <width sOffset="421.12400426175026" a="2.4891426925980875" b="0.00061374740607779161" c="0.00024128857006727164" d="1.4342231316074623e-05" /> - <width sOffset="421.56304741242627" a="2.489459878484892" b="0.00083391337180957221" c="9.4433187872847103e-05" d="-0.00012655489691839285" /> - <width sOffset="422.38722329802033" a="2.490140465214167" b="0.00073167921008268286" c="0.00016164004548858499" d="-4.2041889989352858e-05" /> - <width sOffset="426.38540761712193" a="2.4929627283665372" b="8.033496976199081e-06" c="0.00041998654109660737" d="-5.145899196621286e-05" /> - <width sOffset="430.48430467758635" a="2.4965080889661664" b="0.00085731574325063637" c="-0.0003682282079001221" d="2.1184556547898051e-05" /> - <width sOffset="431.15076626798242" a="2.4969221717844317" b="0.00039472452940089546" c="-0.00033417107265461949" d="2.1796240357183073e-05" /> - <width sOffset="441.17752827421452" a="2.4892554747600419" b="0.00026733450574979202" c="0.0003273160937564764" d="1.8931190044361672e-05" /> - <width sOffset="442.11023798798408" a="2.4898049289650688" b="0.00092732372524248399" c="0.00031049259826820694" d="-9.3639551450487097e-05" /> - <width sOffset="445.35856542262013" a="2.492883873486484" b="-1.9663040520847587e-05" c="4.4060325944642433e-05" d="-8.1493659089088333e-05" /> - <width sOffset="447.07837286894812" a="2.4925658387345901" b="-0.00059122307899555238" c="-0.0002320503226329579" d="3.461673205958945e-05" /> - <width sOffset="451.20429028044668" a="2.4886076143546889" b="-0.00073820192497356645" c="0.00020000155097617083" d="3.3489446964467998e-05" /> - <width sOffset="452.46098121014165" a="2.4880622446217417" b="-7.6854807918101675e-05" c="9.7605601545494729e-05" d="-2.3870059625404824e-06" /> - <width sOffset="458.64776764126145" a="2.4907574833861901" b="0.00085677775694397319" c="6.6540058161576056e-05" d="-1.0028056274660829e-05" /> - <width sOffset="461.23105228667885" a="2.4932419544032465" b="0.0009997991024487049" c="-9.8323565782184057e-06" d="-9.4331203002343053e-06" /> - <width sOffset="465.10660499952985" a="2.4964199412650432" b="0.00049853364934862848" c="-0.0005406939557645301" d="4.6135353342170184e-05" /> - <width sOffset="471.25781429291101" a="2.4897658870018864" b="-0.00091638761959424858" c="0.00030499116405310184" d="4.9129371415388784e-05" /> - <width sOffset="473.7663313923756" a="2.4901618370215868" b="0.0015412264826940164" c="-0.00012884242443069165" d="-2.307426388756536e-05" /> - <width sOffset="477.01437834772798" a="2.4930178809606041" b="-2.603323825082235e-05" c="9.9362401100007478e-06" d="5.4768851014392089e-05" /> - <width sOffset="480.15604053104266" a="2.4947324553232155" b="0.0016581118414807153" c="-0.0018839025758188733" d="0.00038792253177568898" /> - <width sOffset="481.28457629914317" a="2.4947619279537223" b="-0.0011118247997520992" c="-0.00056656009737228593" d="0.00037124208905646151" /> - <width sOffset="482.90430969126976" a="2.4930522442458516" b="-2.527616909061333e-05" c="-0.0012028184713404591" d="0.00036765156353243825" /> - <width sOffset="485.65164800891523" a="2.4915279109576689" b="0.0016905815088147961" c="-0.00050778653781123509" d="4.6313279045153888e-05" /> - <width sOffset="490.39864032111188" a="2.493064717363719" b="5.253258977717945e-07" c="0.0035782315583089033" d="-0.00048941571114520196" /> - <width sOffset="490.67220722092327" a="2.4933226317864108" b="0.0018484148292998027" c="-0.00166298894294573" d="0.00023363907110177085" /> - <width sOffset="495.4106784993927" a="2.4895996777529348" b="0.0018261354752853454" c="0.0034118873290941982" d="-0.0021773515622368366" /> - <width sOffset="496.65983171244693" a="2.4929606512616367" b="0.00015756352953388841" c="0.0039306832293144779" d="-0.0019582943775521911" /> - <width sOffset="498.07551719114144" a="2.4955052452740087" b="-0.00048745148650289295" c="-0.00053315889627641565" d="8.85509819771655e-05" /> - <width sOffset="501.33810031160743" a="2.4913149455852004" b="-0.0011386727843616098" c="0.00032866280688943712" d="8.8758241172637287e-05" /> - <width sOffset="503.83391811176546" a="2.4919002004724273" b="0.0021605457918177397" c="-0.0002857294910788516" d="-0.0010022595656221593" /> - <width sOffset="504.58340562707281" a="2.492937037229499" b="4.3242004574964299e-05" c="0.0012286511912215901" d="-0.00078947786685622809" /> - <width sOffset="505.3552908940311" a="2.4933393773491339" b="0.0005288685107026599" c="-0.00073788458172891771" d="0.00012928648367424521" /> - <width sOffset="509.87011055310563" a="2.4925843921310662" b="0.0017720074485581246" c="-0.0010433466948823727" d="0.00016449314882064991" /> - <width sOffset="511.3648623178396" a="2.4934513292528244" b="-0.00024450852002605092" c="-0.00031126294132573299" d="0.00016808930570390713" /> - <width sOffset="512.86863888617268" a="2.4929513676040109" b="-4.0325143186805204e-05" c="-0.00096591963122536514" d="0.00026714901094615582" /> - <width sOffset="516.00393021666514" a="2.49156344940255" b="0.0017810617546477577" c="-0.00033214544491145154" d="2.0782062633734948e-05" /> - <width sOffset="521.3916243240717" a="2.4947681025495934" b="1.1803887227361358e-05" c="5.3014223960821233e-06" d="2.4758054730937226e-05" /> - <width sOffset="522.48818396356069" a="2.494820065620079" b="0.00011274099089816914" c="-0.00069165709349104025" d="0.00014789702173879224" /> - <width sOffset="525.49046531936551" a="2.4929264973293979" b="-4.1062202601445733e-05" c="-0.0006267340978176664" d="9.4990080146168589e-05" /> - <width sOffset="530.33857750103357" a="2.4888207554231503" b="0.00057997853628783281" c="0.00031611052379716231" d="-3.9668773232048689e-05" /> - <width sOffset="531.41838633030386" a="2.4897656574646527" b="0.0011238965710222365" c="0.0001893927892720499" d="-4.5300523824950691e-05" /> - <width sOffset="535.77934823569854" a="2.4945117204700873" b="0.00019119149326733134" c="-8.4567392354581406e-05" d="4.8556739483626494e-06" /> - <width sOffset="541.44514833653602" a="2.4937633983323666" b="-0.00029947218290768797" c="-1.8121424601232376e-06" d="5.6201051822576218e-06" /> - <width sOffset="545.7864197564711" a="2.4928889833506949" b="2.5540684951447668e-06" c="2.7301920961115317e-05" d="-8.989435616891347e-07" /> - <width sOffset="549.32053979892714" a="2.4931993304251172" b="0.00016184717330278067" c="1.6913802763251407e-05" d="-1.0292684146144259e-06" /> - <width sOffset="551.47191034276818" a="2.4936155585999282" b="0.00022033130437964414" c="1.1427527616241696e-05" d="-1.1763811317928154e-06" /> - <width sOffset="561.49867234900034" a="2.4957877944428546" b="9.4687697556780984e-05" c="-2.0262889672407952e-05" d="-2.7690855615265126e-06" /> - <width sOffset="563.22025917515009" a="2.4958766217610533" b="2.9749395160597741e-07" c="-0.00011605278717636793" d="8.8228918915860335e-06" /> - <width sOffset="571.52543435523251" a="2.49292850035659" b="-0.00010167831448187285" c="9.9093686670413165e-05" d="1.0045717473160969e-05" /> - <width sOffset="571.97589777333678" a="2.4929037240650151" b="-6.2868035329149974e-06" c="-0.00012345140817288645" d="1.6756702499589042e-05" /> - <width sOffset="576.08302937969142" a="2.4919563852271605" b="-0.00017236634619415079" c="0.00010203026121231023" d="-5.8920341928760989e-06" /> - <width sOffset="581.55219636146467" a="2.4931016994274344" b="0.00041495090162374168" c="9.6848428276590209e-07" d="-6.1693734898858462e-06" /> - <width sOffset="587.03070450305881" a="2.4943896356459643" b="-0.00012994108047799336" c="-0.00011475671046034776" d="1.701336722226675e-05" /> - <width sOffset="591.57895836769683" a="2.4930254561006153" b="-0.00011797954241930114" c="0.00011574420909150271" d="1.6752829660210384e-05" /> - <width sOffset="592.03355478877825" a="2.4929973163391699" b="-2.3594218857394059e-06" c="-9.750061290058384e-05" d="6.1994531062729924e-06" /> - <width sOffset="601.60572037392888" a="2.4894784145508986" b="-0.00016484358999040768" c="8.040955665837671e-05" d="6.3824173104525676e-06" /> - <width sOffset="603.47254641438985" a="2.4894924344900513" b="0.000202106647186034" c="0.00033778107535597656" d="-4.7574072065635471e-05" /> - <width sOffset="608.47525115074745" a="2.4930007649348811" b="9.8279095628018252e-06" c="0.00057017558884958641" d="-7.8458989431494527e-05" /> - <width sOffset="611.63248238016104" a="2.4962461344524112" b="0.0012639169757732403" c="-0.00017908528777288636" d="-7.7773018594831e-05" /> - <width sOffset="612.13615753164913" a="2.4968273685426912" b="0.0010243249586717098" c="-0.0015483598007235801" d="0.00022829140595085677" /> - <width sOffset="616.21038526972654" a="2.4907381877722541" b="-0.00022396164989678651" c="0.00035061651310152643" d="-4.3621825913460373e-05" /> - <width sOffset="621.21281047720197" a="2.4929310879502413" b="9.09264413679646e-06" c="0.00010189172109498817" d="-8.4940568159900251e-06" /> - <width sOffset="621.6592443863932" a="2.4929546987997275" b="9.498980383871973e-05" c="9.5955225341641694e-05" d="-7.2718772126330857e-06" /> - <width sOffset="631.68600639262536" a="2.4962236726967415" b="-0.00017402517030277575" c="-0.00012970492917226356" d="-4.6067703454946266e-06" /> - <width sOffset="634.72952330789178" a="2.4943626935589664" b="-0.0010915609371419063" c="7.9242227150772758e-05" d="-1.45555378542654e-06" /> - <width sOffset="641.71276839885752" a="2.490108681095939" b="-0.00019776849974977376" c="4.9367938678155926e-05" d="-1.6347223309907523e-06" /> - <width sOffset="651.73953040508968" a="2.4914410743226743" b="0.00029918752533987384" c="-1.2849009300038921e-06" d="-1.4079545826181432e-06" /> - <width sOffset="659.73981586666207" a="2.4930314704865708" b="8.2818046611668646e-06" c="-0.00041258960311928074" d="5.5961066997124708e-05" /> - <width sOffset="661.76629241132184" a="2.4918196147580431" b="-0.00097449414231287894" c="-8.7837331586966848e-05" d="5.0801451392107439e-05" /> - <width sOffset="667.52729733097442" a="2.4930036911238513" b="0.003071618449496368" c="-0.0011147434527868129" d="0.0001011224137545735" /> - <width sOffset="671.793054417554" a="2.493671223351777" b="-0.00091855343725943256" c="0.00017949867696182009" d="0.00010056286724503555" /> - <width sOffset="673.02460832514771" a="2.4930000696717656" b="-1.8850190506403131e-05" c="0.014011837258513422" d="0.0021916344608351136" /> - <width sOffset="673.04170997636618" a="2.4930038562568306" b="0.00046232385580126205" c="-0.00017862898957754676" d="4.4601210603207469e-05" /> - <width sOffset="677.17164705966411" a="2.4950082492685191" b="0.0012690765106579342" c="-0.00085968519938894406" d="0.00010643773055390131" /> - <width sOffset="681.67302595544686" a="2.4930096048181172" b="-4.0568163739429508e-07" c="-1.6042685003532094e-05" d="5.4759141489760054e-07" /> - <width sOffset="681.81981642378616" a="2.4930092013211107" b="-5.0801105358668896e-06" c="-1.4135348584492281e-05" d="1.3736033268615094e-07" /> - <width sOffset="691.84657843001821" a="2.491675619571895" b="-0.00024711470557445617" c="-1.0504409335800213e-05" d="-1.3875524526474027e-07" /> - <width sOffset="697.81210452154562" a="2.4897981671801714" b="-0.00038725721902945127" c="0.00010306680531464911" d="-3.8382413255190921e-06" /> - <width sOffset="701.87334043625037" a="2.4896682678695568" b="0.00025998032447754741" c="5.7087759544848523e-05" d="-3.2950217190016177e-06" /> - <width sOffset="711.90010244248253" a="2.494692854212933" b="0.00041098660238786389" c="-4.0735881695408289e-05" d="-3.922153587441287e-06" /> - <width sOffset="715.03708675906807" a="2.4954601673491439" b="3.9621093866711162e-05" c="-2.7477212031370835e-05" d="8.5950745145801932e-07" /> - <width sOffset="721.9268644487147" a="2.4947099339593155" b="-0.00021660269894095132" c="-1.0070865095301154e-05" d="8.9117305627447311e-07" /> - <width sOffset="730.2860826465178" a="2.4927161335436736" b="-0.00019815557707773606" c="8.6635469740983714e-05" d="-9.6065074178581862e-06" /> - <width sOffset="731.95362645494686" a="2.4925820630653286" b="1.0642791895574231e-05" c="3.949004840970176e-05" d="-6.0790373511369223e-06" /> - <width sOffset="736.28685609570346" a="2.4928750625802172" b="1.044563994672407e-05" c="5.9021821194634207e-05" d="-8.0760809089586018e-06" /> - <width sOffset="741.56494498160134" a="2.4933869464255922" b="-4.1465294628000027e-05" c="-7.0381127154481554e-05" d="3.8916436598572154e-06" /> - <width sOffset="741.98038846117902" a="2.4933578516709618" b="-9.7929040671592684e-05" c="-6.1187416921711262e-05" d="2.9197979804870341e-06" /> - <width sOffset="752.00715046741118" a="2.4891677076782743" b="-0.0004443183283996101" c="2.8708746735987515e-05" d="3.2810247980937436e-06" /> - <width sOffset="758.79709990282038" a="2.4885014714077025" b="0.00039934287627373523" c="-4.7428906856150111e-07" d="-3.7642697774005314e-07" /> - <width sOffset="762.03391247364334" a="2.4897763349744615" b="0.00038444108041385192" c="-3.4986939286626322e-06" d="-5.5197684843517667e-07" /> - <width sOffset="772.0606744798755" a="2.4927228693319385" b="0.00014779937671555729" c="-1.7616431875689787e-05" d="-1.2565593904249431e-06" /> - <width sOffset="775.2974066754449" a="2.4929740897297687" b="-5.7327572151374268e-06" c="-0.00015504880571693203" d="1.7466313429777892e-05" /> - <width sOffset="775.97606117849" a="2.4929042474718015" b="-0.00019204841630265446" c="0.00010640107869528602" d="-8.0648630767722001e-06" /> - <width sOffset="782.08743648610755" a="2.4938637008730353" b="0.00020482394287789796" c="-4.0141154579271862e-05" d="-7.9095780359374525e-06" /> - <width sOffset="786.19673043914577" a="2.4934786956032955" b="-0.00052577011133826592" c="8.2265486293077894e-05" d="4.020268273944593e-05" /> - <width sOffset="787.69664552625363" a="2.493010822482395" b="-7.6502374368811335e-06" c="-0.00032304335318670933" d="2.9219665516462153e-05" /> - <width sOffset="792.11419849233971" a="2.4891918647940185" b="-0.0011511269585486917" c="6.8168718080910247e-05" d="2.929106903203359e-05" /> - <width sOffset="792.79711271838335" a="2.4884468647586448" b="-0.0010170385945630276" c="0.0057663656394718833" d="-0.0024035699780186708" /> - <width sOffset="794.05796496125708" a="2.4915137932507623" b="0.0020608170804668892" c="-0.00022667196148662343" d="6.5113428747538544e-06" /> - <width sOffset="802.14096049857187" a="2.4968004443241147" b="-0.00032730764316458646" c="-7.1146674868244729e-05" d="6.7235430076023352e-06" /> - <width sOffset="811.05616713560232" a="2.4929918534398992" b="7.2976783769290341e-06" c="4.082995271978689e-05" d="3.7307091865423876e-06" /> - <width sOffset="812.16772250480403" a="2.4930555365914131" b="0.00011189567767716974" c="3.519350767413377e-05" d="-6.8947737853333351e-06" /> - <width sOffset="812.44247815605513" a="2.4930887943347404" b="0.00012967343468232338" c="8.4818353582134586e-05" d="-6.2851199161092258e-06" /> - <width sOffset="822.19448451103619" a="2.4965907146758131" b="-9.2037266174869905e-06" c="-9.8990790272325646e-05" d="-6.3486338034596852e-06" /> - <width sOffset="827.75778876226491" a="2.492382564158711" b="-0.0017001128898784489" c="0.00083928142387819349" d="-9.6005190659166121e-05" /> - <width sOffset="832.22124651726836" a="2.4929776554982928" b="5.4104160535787919e-05" c="-0.00044448252340010435" d="-9.5964467957731679e-05" /> - <width sOffset="832.25686027046515" a="2.4929790142610653" b="2.2079632279598839e-05" c="0.00032210515164403169" d="-0.00010155912261618079" /> - <width sOffset="836.02085302920329" a="2.4922097589743126" b="-0.001869677168171339" c="0.00027962637784549268" d="-1.2579547437481103e-05" /> - <width sOffset="842.24800852350052" a="2.488372565829251" b="0.00014946779995041198" c="4.6268060447698467e-05" d="-1.3260561143657746e-05" /> - <width sOffset="845.53395640259987" a="2.4888928034826927" b="2.3995794572579515e-05" c="0.00032841778263180508" d="-3.6622526084353235e-05" /> - <width sOffset="851.53394188530365" a="2.492949352648659" b="9.785973306939387e-06" c="5.3939444733981995e-05" d="-2.4270067303666732e-05" /> - <width sOffset="852.27477052973268" a="2.4929763379164358" b="4.9745534218501811e-05" c="5.8091719327888185e-06" d="-2.4688266838877761e-05" /> - <width sOffset="854.88798748157456" a="2.4927054319484059" b="-0.00042567453903832246" c="2.5582757232177386e-05" d="-3.7048360166152241e-07" /> - <width sOffset="862.30153253596484" a="2.4908047647978337" b="-0.00010744275131560404" c="1.7000675903545545e-05" d="-3.580837831492994e-07" /> - <width sOffset="872.32829454219689" a="2.4910756747153249" b="0.0001254798243891062" c="6.6073494741289683e-06" d="-4.942809775051803e-07" /> - <width sOffset="877.10384878909372" a="2.4917717645100446" b="0.00015476974120724881" c="-4.6360990281009074e-05" d="2.0172636860016271e-06" /> - <width sOffset="882.35505654842905" a="2.4915981856510161" b="-0.00016525339709253775" c="-1.4386497221691279e-05" d="2.0585581065491394e-06" /> - <width sOffset="891.4547258886962" a="2.4904542757168127" b="8.4292293375530167e-05" c="4.9218455197243358e-05" d="-3.4365591617617577e-06" /> - <width sOffset="892.38181855466121" a="2.4905719874088259" b="0.0001666912549011996" c="4.3399403927545595e-05" d="-3.6322198734463424e-06" /> - <width sOffset="901.9546632379122" a="2.4929584279021348" b="-9.601016653943556e-07" c="8.6181240163944579e-05" d="-5.2522144243950232e-06" /> - <width sOffset="902.40858056089337" a="2.4929752577425113" b="7.4031700455212505e-05" c="6.9704073450110301e-05" d="-4.6382122588249983e-06" /> - <width sOffset="909.19999672075687" a="2.4952401356791691" b="0.00037902101016207236" c="-5.9768524057476262e-05" d="3.728515053407512e-06" /> - <width sOffset="912.43534256712553" a="2.4959670443078465" b="0.00010936159530946154" c="-3.0494607649457844e-05" d="9.393605581980106e-07" /> - <width sOffset="922.46210457335769" a="2.4949447049650804" b="-0.00021884421526914566" c="-1.3887839623070124e-06" d="1.169331055705338e-06" /> - <width sOffset="928.77627437478532" a="2.4938018814192251" b="-9.6522982291941724e-05" c="-0.00016220371194296219" d="3.9172607782975184e-05" /> - <width sOffset="931.77615983481587" a="2.4931101408616945" b="-1.2128447580796783e-05" c="-0.00043475461219179745" d="6.8206200776074007e-05" /> - <width sOffset="932.48886657958985" a="2.4929053548482152" b="-0.00052789733239917659" c="-0.00027817231277584942" d="6.0508316983506464e-05" /> - <width sOffset="933.59868847113171" a="2.49205956992766" b="-0.00092175565435645163" c="0.00017062730976205988" d="-7.2347848574572091e-06" /> - <width sOffset="942.51562858582201" a="2.4922777400781353" b="0.00039543859592830986" c="-2.053644218530303e-05" d="-7.8273251249531421e-06" /> - <width sOffset="945.84778210706145" a="2.4930777877823438" b="-2.1487350819280465e-06" c="-4.8021652644300128e-05" d="-4.2893764505008084e-05" /> - <width sOffset="946.34815485733952" a="2.4930593155729408" b="-8.2424495139840799e-05" c="0.0010897064334734717" d="-0.00021685783109542714" /> - <width sOffset="950.12953865246163" a="2.4966038079570492" b="-0.0011436895132569615" c="2.1280117441661037e-05" d="5.9875632890387655e-06" /> - <width sOffset="952.54239059205418" a="2.4940522531792091" b="-0.00093642180145380349" c="6.4012387377371672e-05" d="4.9532508755248575e-06" /> - <width sOffset="959.09973278519851" a="2.4920608726634095" b="0.00054203104550809523" c="-7.6879151691429105e-05" d="7.1266496178671173e-07" /> - <width sOffset="962.56915259828634" a="2.4930457828412926" b="3.4313716029700167e-05" c="-5.8713410754363911e-05" d="1.4431022209176007e-06" /> - <width sOffset="962.84948027014275" a="2.4930508198043571" b="1.7359410721524927e-06" c="-0.00024301232847968881" d="2.3751938784204969e-05" /> - <width sOffset="969.20163003693301" a="2.4893441585732647" b="-0.00021040705707729137" c="0.00064174270473313832" d="-7.5197038431745774e-05" /> - <width sOffset="972.59591460451838" a="2.4930829379397048" b="0.0015470345842402262" c="-0.00011671605884485851" d="-7.5380968842308842e-05" /> - <width sOffset="975.38875123332764" a="2.4948510798337251" b="-0.00086880348057153138" c="-4.7204423274828697e-05" d="4.2796126719319487e-05" /> - <width sOffset="978.38851015523483" a="2.4929753241881709" b="3.3024588114704276e-06" c="-0.00046746525103449855" d="4.584397196902328e-05" /> - <width sOffset="981.62438628741052" a="2.4896445404468563" b="-0.0015819346778536767" c="0.0011986848211950002" d="-0.00012734465942054491" /> - <width sOffset="982.62267661075055" a="2.4891332073429275" b="0.00043060745181907126" c="0.000816070510033591" d="-0.00012842854315023601" /> - <width sOffset="987.82147203816726" a="2.4953826376855401" b="-0.0014975225686886385" c="-0.00080270567578019094" d="0.0004039422989216213" /> - <width sOffset="989.10782378606177" a="2.492987861379734" b="-0.0015574353079156693" c="-0.026314552202072641" d="0.0086631444617667631" /> - <width sOffset="991.10763238075674" a="2.4539204856091681" b="-0.0028677341947733626" c="-0.053268212741559261" d="0.028452596859106855" /> - <width sOffset="992.35751158749031" a="2.422676036598598" b="-0.0026796247591777851" c="-0.013432262427331134" d="0.0023984219778106033" /> - <width sOffset="992.8908877072231" a="2.4177893803341881" b="-0.014961538966895453" c="-0.009441869493121138" d="0.0024818930897228079" /> - <width sOffset="995.39063680154436" a="2.3601573516976444" b="-0.01563999331017123" c="-0.015600282490473497" d="0.0077950153725578741" /> - <width sOffset="996.39053482922077" a="2.3367144831635747" b="-0.023457099591150665" c="0.0056404590397050366" d="-0.0015042876309329565" /> - <width sOffset="998.89028398237224" a="2.2898259935121521" b="-0.023457367352163881" c="0.001410772849197136" d="-0.00013474955600173088" /> - <width sOffset="1002.6762006232149" a="2.2139271234285438" b="-0.018569393323026716" c="-0.00011709147323901057" d="-0.00013381084988541453" /> - <width sOffset="1004.8656250958491" a="2.1713051829591645" b="-0.021006418046360768" c="-0.0009803547099812948" d="-0.00015935955862812152" /> - <width sOffset="1005.8655135569918" a="2.1491616656775534" b="-0.023444880804171099" c="0.0078136506946981897" d="-0.0019534157697217265" /> - <width sOffset="1007.8652867742624" a="2.1179027253907732" b="-0.015629495553979605" c="-0.0062778802720970693" d="0.0020949914018358281" /> - <width sOffset="1010.6149793272516" a="2.0710152262944401" b="-0.002634486427163719" c="-0.073179690755640778" d="0.065197081158603051" /> - <width sOffset="1011.364893922434" a="2.0553810081746304" b="-0.0023965035342554237" c="-0.073861107549056879" d="0.065710053083697359" /> - <width sOffset="1012.1148106022654" a="2.0397583785264191" b="-0.0023147780478699545" c="-0.011585286344768624" d="0.0022142954283733886" /> - <width sOffset="1012.702962629447" a="2.0348398322716568" b="-0.013644671475338158" c="-0.0076768330521674102" d="0.0022135747709655837" /> - <width sOffset="1014.3664162193943" a="2.0010890355141093" b="-0.020809381348442672" c="0.0036212712235710832" d="0.0022069071966064387" /> - <width sOffset="1015.61626989964" a="1.9850461174933089" b="-0.0014148072465981969" c="-0.066310518471267052" d="0.044284050375838969" /> - <width sOffset="1016.6161539139507" a="1.9616049803378344" b="-0.0011991270286520882" c="-0.012203342747329057" d="0.0023152030466286238" /> - <width sOffset="1019.3328790319113" a="1.9147015961931615" b="-0.016242651922387854" c="-0.0013184389775179161" d="0.00017512327732043578" /> - <width sOffset="1022.7297246356792" a="1.8511788336383788" b="-0.019137707854014498" c="0.00045441155827764378" d="0.00017710620735273189" /> - <width sOffset="1023.4395227961793" a="1.8378871966675181" b="-0.018224941420983881" c="0.0011374310657279918" d="0.00011044159971583366" /> - <width sOffset="1024.4393961371823" a="1.8209121061913232" b="-0.015619126547350466" c="-0.0071121600677686685" d="0.003553081818624355" /> - <width sOffset="1026.4391440295294" a="1.7896502289892569" b="-0.0014379473669041394" c="-0.066038977517758043" d="0.044031758708355337" /> - <width sOffset="1027.4390171791226" a="1.7662052440827907" b="-0.0014373826885117024" c="-0.013563127584756743" d="0.00365445655260583" /> - <width sOffset="1029.9387025560573" a="1.7349433552532263" b="-0.00074067126498727001" c="-0.075310004767178057" d="0.085402557560855991" /> - <width sOffset="1030.3896050491517" a="1.7271271025665964" b="-0.016565243586345868" c="-0.00099870162733598834" d="0.00018590447120666421" /> - <width sOffset="1032.7564866419114" a="1.6847892918540728" b="-0.018168478388290544" c="0.00031835728655231791" d="0.0001867049907540599" /> - <width sOffset="1034.3890700458674" a="1.6567886850517732" b="-0.015636098304638461" c="0.0050046322403571103" d="-0.006004442735104842" /> - <width sOffset="1035.6389017053821" a="1.6333411363980135" b="-0.031264447568433031" c="0.030025113451260809" d="-0.016016300564147788" /> - <width sOffset="1036.8887342414146" a="1.6098982167736278" b="-0.03126801428218566" c="0.022965196941489213" d="-0.0087494660559585928" /> - <width sOffset="1038.6385001946014" a="1.5786257564528476" b="-0.031264793937439597" c="0.021660464338598119" d="-0.0069503670965022687" /> - <width sOffset="1040.1515903553839" a="1.5568326891111477" b="-0.013453706590875442" c="-0.0071370128002495176" d="-0.0075654773053304408" /> - <width sOffset="1040.6515166748168" a="1.5473778330595058" b="-0.026262103489056107" c="0.0072572635698450634" d="-0.0011660979534645326" /> - <width sOffset="1042.7832486481434" a="1.5130769019125294" b="-0.011218252950874067" c="-0.00019768234671501783" d="-0.0011667674624126034" /> - <width sOffset="1043.5325807219488" a="1.5040687907112522" b="-0.01347992713542613" c="-0.00054851930124028513" d="-0.00049464567470135353" /> - <width sOffset="1045.7822523108914" a="1.4653354566380781" b="-0.023458142020002543" c="0.0043936276638968548" d="-0.00073230245038347639" /> - <width sOffset="1049.7816683016165" a="1.3949472735037407" b="-0.023454506800986263" c="0.0066841692409259157" d="-0.0011888538633780033" /> - <width sOffset="1050.1688438235815" a="1.3867992517245389" b="-0.018813258375800387" c="0.0054929294623434401" d="-0.0013913293270096634" /> - <width sOffset="1052.8100106543757" a="1.3497936048408379" b="-0.018914519874685551" c="-0.00552670505464164" d="-0.0013938308414596001" /> - <width sOffset="1053.1683899067216" a="1.3422410509785978" b="-0.023412885596894941" c="0.01003367967207875" d="-0.0029527631737508377" /> - <width sOffset="1055.113566156949" a="1.3129311125838594" b="-0.017895539149031667" c="-0.00073827866257491191" d="0.00013143085764227727" /> - <width sOffset="1060.1619722809751" a="1.2206817405330233" b="-0.015300700228982892" c="-8.5533042051577372e-05" d="-6.5837622356861182e-05" /> - <width sOffset="1062.8367726606077" a="1.1778835353540167" b="-0.017171384935374276" c="-0.00060658548188708133" d="-6.406988685483123e-05" /> - <width sOffset="1063.161471998503" a="1.1722418526329808" b="-0.017585565343227139" c="0.002615848797190983" d="-0.00031711992632690346" /> - <width sOffset="1068.6605524225733" a="1.1019060146187902" b="-0.017585050312875179" c="0.0078150122554980477" d="-0.0043426937777301831" /> - <width sOffset="1070.1603011944808" a="1.0784615165862457" b="-0.023447305009511945" c="0.022512257158506126" d="-0.012008726183055979" /> - <width sOffset="1071.4100926289013" a="1.0608781352695855" b="-0.023448173675349189" c="0.0078177580194221264" d="-0.0017375642110294411" /> - <width sOffset="1072.86353466684" a="1.0379775439830174" b="-0.011734638027563072" c="0.00024213279941076314" d="-0.001738270468854973" /> - <width sOffset="1074.4095914605164" a="1.0139900704146481" b="-0.02345085585761017" c="0.0062550615524046733" d="-0.0011121829060891488" /> - <width sOffset="1078.1589645961403" a="0.95537559618637502" b="-0.023450267300376072" c="0.0065909526353085911" d="-0.0013816754634949754" /> - <width sOffset="1079.7682259769094" a="0.92894853531816945" b="-0.012971603051766038" c="-0.00026064435638238067" d="-0.0013671944859365939" /> - <width sOffset="1080.7680390494165" a="0.91435238216281434" b="-0.017592844525034339" c="0.0007081194552640373" d="-9.4725227870985439e-05" /> - <width sOffset="1082.890296673072" a="0.87929974718296577" b="-0.015867141562887984" c="0.00010805069594666442" d="-9.4466291934201341e-05" /> - <width sOffset="1085.767105338211" a="0.83229814206690556" b="-0.017590876264606016" c="0.00045111953103156186" d="-2.1126475559715265e-05" /> - <width sOffset="1092.9170586793043" a="0.72186413248972059" b="-0.014379981520714787" c="-2.0529998033950493e-06" d="-2.1096160932377046e-05" /> - <width sOffset="1098.0754697813986" a="0.64473596270679234" b="-0.016085218173775763" c="0.0043586902612711151" d="-0.0010894843555390766" /> - <width sOffset="1100.0750650821863" a="0.6212891570059238" b="-0.011722506885975191" c="-0.0011006760996642281" d="0.00018346736389976298" /> - <width sOffset="1102.9438206855364" a="0.58293336249812278" b="-0.013507971933618981" c="0.00047828904714272604" d="0.00018287214537924892" /> - <width sOffset="1104.0742527858279" a="0.56853888034390376" b="-0.011725561170117693" c="7.1372178721720603e-05" d="-2.168648853010269e-06" /> - <width sOffset="1112.9705826917684" a="0.4683462088403223" b="-0.010970571370304792" c="1.2717719884975748e-05" d="-1.221062471605388e-06" /> - <width sOffset="1114.5422706774434" a="0.45113056833402787" b="-0.010939643612206645" c="-0.00085450623630151752" d="6.6670207147117856e-05" /> - <width sOffset="1115.0421617351844" a="0.44545673316971524" b="-0.011743982796699264" c="0.00048300962825793391" d="-3.884619979295162e-05" /> - <width sOffset="1120.8463093669855" a="0.38596898268267132" b="-0.0100630318713479" c="-0.00068617269628845937" d="-9.9967358584748429e-05" /> - <width sOffset="1121.8460810184677" a="0.3751224904386774" b="-0.01173482901789058" c="-0.0025233471673852554" d="0.00031973792025600237" /> - <width sOffset="1122.9973446980007" a="0.35875602955668207" b="-0.016273555257617912" c="-0.0014089321315934795" d="0.00032628981605024632" /> - <width sOffset="1128.3446001564901" a="0.28133940298085669" b="-0.0033524432290124402" c="-0.004474335226792376" d="0.00087270932867754508" /> - <width sOffset="1130.3189421173206" a="0.26399586077476034" b="-0.010814647371484158" c="0.00058468111259019258" d="0.00087441278510836664" /> - <width sOffset="1131.818587163177" a="0.25204168699795559" b="-0.0031615258616640466" c="-0.0011298119113198357" d="7.175050381996678e-05" /> - <width sOffset="1133.0241067042327" a="0.24671417931689277" b="-0.0055727263861496956" c="-0.00086925098882290996" d="7.3452489696397962e-05" /> - <width sOffset="1138.5056936370854" a="0.20214604975010086" b="-0.0084812199850009002" c="0.00056349135492969507" d="7.100760386720592e-06" /> - <width sOffset="1143.0729173058467" a="0.17584107756351841" b="-0.0028896822618494516" c="-0.0019006169758960397" d="0.00030952456471335061" /> - <width sOffset="1147.8217162070364" a="0.15240474139414584" b="-6.2799486705896607e-07" c="-0.00066584276631679999" d="2.2999527117557632e-05" /> - <width sOffset="1148.7650862924017" a="0.15183089335290223" b="-0.0011954952008528166" c="-0.0019487873116470576" d="0.00027216182362205162" /> - <width sOffset="1153.0776307166971" a="0.13226034796368591" b="-0.002818929944711954" c="0.0015747056956684081" d="0.00027214054686738951" /> - <width sOffset="1154.0717952530888" a="0.13128165292039373" b="0.0011190242154299551" c="0.0011825564838232896" d="-0.00016708114113791507" /> - <width sOffset="1158.6088541472957" a="0.14509701302583533" b="0.0015316335854745407" c="-0.00044907363400541027" d="2.1397778699270557e-05" /> - <width sOffset="1160.6083022059031" a="0.14653517214615253" b="-7.5335857834942996e-06" c="0.0029484726909708462" d="-0.00080303932078779517" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="3" type="driving" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.2259558614803465" b="-6.2133989532690374e-10" c="-0.070508860649189486" d="0.047214339102059161" /> - <width sOffset="0.86308716984601053" a="3.2037879737321244" b="-0.016197946240487558" c="0.042206256544288952" d="-0.039147438640518929" /> - <width sOffset="1.6807165674443758" a="3.1973617084307513" b="-0.025692076417562448" c="-1302.9214757000027" d="280847.69169056276" /> - <width sOffset="1.6838082386499986" a="3.1931278698550836" b="-0.028711979745158517" c="0.012758021001337137" d="-0.0013045326814912022" /> - <width sOffset="6.7074389427374763" a="3.2054723899665474" b="0.00070424502838664985" c="-0.0024684883937783515" d="-0.00092342431935746457" /> - <width sOffset="7.089477072918875" a="3.2053296649778273" b="-0.0015861983695420294" c="0.00013520125085760763" d="1.6789309718821598e-05" /> - <width sOffset="10.026762006232149" a="3.2022624885884685" b="-0.00035739267501922259" c="0.00028515862823634986" d="1.6116107331361754e-05" /> - <width sOffset="17.883980290817895" a="3.2248763718511437" b="0.0071085406653305649" c="-0.0024004494215063696" d="0.00023054811883354884" /> - <width sOffset="20.053524012464297" a="3.2313542654328224" b="-5.1704650858932361e-05" c="-0.00089841198792936202" d="0.00023361500780957518" /> - <width sOffset="24.914628104338387" a="3.2367083904060894" b="0.0077749482471488702" c="-0.002012240721068018" d="-6.9446231419897038e-05" /> - <width sOffset="26.471010197355646" a="3.2436730624769208" b="0.0010066533236323849" c="-0.0016567827510679128" d="5.0768837807691427e-05" /> - <width sOffset="30.080286018696448" a="3.2281106828109198" b="-0.0089688410774552661" c="-0.0011323640025340349" d="5.2614401634152905e-05" /> - <width sOffset="34.550277321062239" a="3.1700936853684851" b="-0.015938318542876501" c="0.0040311462799888873" d="-0.00019967697989329745" /> - <width sOffset="40.107048024928595" a="3.1717399953586654" b="0.01036529452168021" c="0.00071271465835388045" d="-0.00020836664873257932" /> - <width sOffset="42.001449571591301" a="3.1925171947059336" b="0.01082229807877156" c="0.0032992108134060078" d="-0.0003425441148194761" /> - <width sOffset="43.355872284717329" a="3.2123763369587399" b="0.017874198859983394" c="-0.0012375750362057505" d="-0.00023502267392119314" /> - <width sOffset="46.743862119336541" a="3.2495886800714886" b="0.0013953098301393504" c="-0.001159822899230469" d="4.8585840934507057e-05" /> - <width sOffset="50.133810031160742" a="3.2428830471556105" b="-0.0047931600477294709" c="-0.00065539898470355173" d="5.7913373211064632e-05" /> - <width sOffset="52.10880100579211" a="3.2313063001492868" b="-0.0067042853465853411" c="0.0050667176407062078" d="-0.0012009843685799472" /> - <width sOffset="55.669092035221794" a="3.2174618230447418" b="-0.016296159188493368" c="0.0030976688376300444" d="0.00016053826503595003" /> - <width sOffset="57.834197227005809" a="3.1983291604028103" b="-0.00062494514349306098" c="0.0014899974853886029" d="-8.0879526678984926e-05" /> - <width sOffset="60.160572037392896" a="3.2039208950980962" b="0.0049944753022922814" c="0.00091668712394222434" d="-8.1183214210703387e-05" /> - <width sOffset="62.903391750160381" a="3.2228409659371162" b="0.0081908517614335836" c="0.0016702312894995551" d="-6.7393392845420592e-05" /> - <width sOffset="65.904192404056019" a="3.2606391067153027" b="0.016394321058288832" c="-0.0039580505188627803" d="0.00026530265588430919" /> - <width sOffset="70.187334043625043" a="3.2790929689037438" b="-0.0029102886461890888" c="-0.00055013024543981281" d="0.00026466073925738236" /> - <width sOffset="73.311776206552395" a="3.2727019727604958" b="0.001402975723933185" c="-0.00074119633064307743" d="-3.538573998170055e-05" /> - <width sOffset="77.695639015946981" a="3.2616266720109586" b="-0.007135786657450089" c="0.00026521076984986939" d="4.4030672241192884e-06" /> - <width sOffset="79.674839483543778" a="3.2485765494433276" b="-0.0060342325576654421" c="-0.0021639501353856944" d="0.00031328672754874079" /> - <width sOffset="80.21409604985719" a="3.244742406225972" b="-0.0080947720699325078" c="-0.0016636190464606295" d="0.00031284205576102484" /> - <width sOffset="86.2772195498017" a="3.2042348780289442" b="0.0062333707878498949" c="0.0049258825470263464" d="-0.0024770238056792794" /> - <width sOffset="87.541955453923634" a="3.2149866139249776" b="0.0068068302084404089" c="-0.0040420360899713279" d="0.00037250519773208339" /> - <width sOffset="90.240858056089337" a="3.2112381739019429" b="-0.0068712255535332539" c="-0.00094261902111698686" d="0.00038408046562860687" /> - <width sOffset="93.883710201469029" a="3.192265629039631" b="0.0015518026857466467" c="0.0039765513678030433" d="0.00041199051467745651" /> - <width sOffset="94.212254300816639" a="3.193219309088259" b="0.0042981599438283533" c="0.0003058152711983527" d="-1.4699762383659571e-06" /> - <width sOffset="99.466124352977417" a="3.2240295669584009" b="0.0073898594073857193" c="-0.0011573142121025998" d="4.8222330113575066e-05" /> - <width sOffset="100.26762006232148" a="3.2292338828473026" b="0.0056276280617471577" c="-0.00099997691018446086" d="4.6470237596559771e-05" /> - <width sOffset="104.20193325065672" a="3.2387262402940986" b="-8.2903263656846846e-05" c="0.0060206478768867477" d="-0.0011558508504781195" /> - <width sOffset="107.73424970427061" a="3.2626120441095274" b="-0.0008147892626314962" c="-0.0054729291513234916" d="0.0010603931266470778" /> - <width sOffset="110.58992619870624" a="3.2403482850334475" b="-0.0061304572113358678" c="0.0027091144751631019" d="0.0011040112553586776" /> - <width sOffset="111.22296808430426" a="3.2378331776120439" b="-0.0013732202087501401" c="0.003425479859062463" d="-0.00047070199937539463" /> - <width sOffset="114.18311366501155" a="3.2515747374279185" b="0.0065330929750420201" c="-0.0015070572078404944" d="-0.00053832829381865249" /> - <width sOffset="114.96924948371827" a="3.2555177190043594" b="0.0031655136309901404" c="-0.0012548433133263096" d="0.00015135904560906432" /> - <width sOffset="119.93280540009536" a="3.2588236677893869" b="0.001895590988427405" c="0.0020467718615883737" d="-0.00029323394718645758" /> - <width sOffset="120.32114407478579" a="3.2598512934544397" b="0.0033526072019220005" c="0.0017026416139151897" d="-0.00029430537295372083" /> - <width sOffset="125.13600958068892" a="3.2826147101251086" b="-0.00071999448467407329" c="0.0010824711961119698" d="-0.00019808676477332403" /> - <width sOffset="129.99109931288677" a="3.2819651944039903" b="-0.004216846942876936" c="-0.0032110256005974096" d="0.00014924379080364389" /> - <width sOffset="130.34790608101792" a="3.2800585752368403" b="-0.0064512771167569358" c="-0.0032395361798060831" d="0.00017248278174097846" /> - <width sOffset="132.75391192063998" a="3.2481858773545911" b="-0.019044524899899141" c="-0.012302671297999619" d="0.0034357926561500124" /> - <width sOffset="133.94683613957466" a="3.2137923067613583" b="-0.033728732266782253" c="0.0042487720247275868" d="0.0036430227214305651" /> - <width sOffset="135.32034332982005" a="3.184920676292152" b="-0.0014393668658972769" c="0.0012937650905885572" d="-4.2222565518033467e-05" /> - <width sOffset="140.37466808725009" a="3.2052447024998245" b="0.0084029728375955501" c="0.00062376574604706579" d="-5.0302669549191176e-05" /> - <width sOffset="142.24950567137031" a="3.2228599595310694" b="0.010211447706426895" c="-0.0032781100372301858" d="0.00036134275581054822" /> - <width sOffset="147.1718843774791" a="3.2367933222210525" b="0.0042050508788653886" c="0.00042019396791363349" d="-0.00013069660043073808" /> - <width sOffset="147.5424282100978" a="3.2384025222605972" b="0.0044626164446225081" c="0.0017615495543600557" d="-0.00025495870769391487" /> - <width sOffset="150.40143009348222" a="3.2596016926005191" b="0.0082831487848912463" c="-0.00043651366687283167" d="-0.00025589285484713554" /> - <width sOffset="151.31548822347898" a="3.266612839163122" b="0.0068437538732970156" c="-0.00091871060889489185" d="-0.00015530488065683621" /> - <width sOffset="153.02868164824366" a="3.274860152565771" b="0.0023284216758148006" c="-0.0008477153001548699" d="2.0012238754588773e-05" /> - <width sOffset="160.42819209971438" a="3.2537824151175072" b="-0.0069297591590431612" c="-0.00040468759699206422" d="2.0020988147274653e-05" /> - <width sOffset="160.50616880232545" a="3.2532396041921183" b="-0.0069925063630191832" c="-0.0016575509158393007" d="0.0002552749347017143" /> - <width sOffset="164.97616182028713" a="3.2116635716565343" b="-0.0065091673784138659" c="0.0011842210346078154" d="-0.00014093878556301602" /> - <width sOffset="167.08359885606455" a="3.2018862308003246" b="-0.0033956752649780715" c="0.00080548048554148822" d="-0.00017800209273001474" /> - <width sOffset="168.65166859531092" a="3.1978558135638262" b="-0.002182613557809833" c="0.00038360455909257655" d="-4.9803894114763582e-06" /> - <width sOffset="170.45495410594654" a="3.1951381533136294" b="-0.00084770273944311317" c="0.00037268272826333071" d="-4.3598982199346695e-06" /> - <width sOffset="172.92204015141499" a="3.1952496681667419" b="0.00091156823827650765" c="-0.00021076300035689348" d="1.936865139288481e-05" /> - <width sOffset="180.48171611217867" a="3.1984637514220449" b="0.0010456480441215794" c="0.00022871282886596203" d="1.9219608262289393e-05" /> - <width sOffset="181.22854906987027" a="3.1993802485773983" b="0.0014194283563710615" c="-0.00048542539887773775" d="-3.2318324885301155e-05" /> - <width sOffset="184.9699834685043" a="3.1962031663454198" b="-0.0035701540764569322" c="-5.3745623252712143e-05" d="1.784281167415283e-05" /> - <width sOffset="188.33514750239945" a="3.1842603370075047" b="-0.0033257061454434605" c="0.0020824968087677551" d="-0.00014682197746905347" /> - <width sOffset="190.50847811841084" a="3.1853616809802494" b="0.0036457202045082479" c="0.0011068500468602277" d="-0.00015052393087870055" /> - <width sOffset="196.62823669583827" a="3.2146265901581357" b="0.00028101416467252865" c="0.00043217355377897092" d="-0.00012922680263999551" /> - <width sOffset="200.53524012464297" a="3.2146145271877651" b="-0.0022597944604982037" c="-0.0010792016014258628" d="-0.00012939667710905117" /> - <width sOffset="201.37916964849401" a="3.2118610188586105" b="-0.0043578102033001338" c="0.00023161211579619654" d="1.8848535178180418e-05" /> - <width sOffset="206.62521604170499" a="3.1980952267709659" b="-0.00037152262794087963" c="0.00052406506344222748" d="1.8695257559951079e-05" /> - <width sOffset="206.94923593879875" a="3.198030503042979" b="-2.6019228861509296e-05" c="0.00014679376763476355" d="-3.0985160165306811e-06" /> - <width sOffset="210.56200213087513" a="3.1997063578159302" b="0.00091331766029116037" c="0.0001084112816942246" d="-4.0234087760850327e-06" /> - <width sOffset="215.39020691674941" a="3.2061904320718098" b="0.0016788055757102883" c="-0.0019286708099950328" d="0.0003359846862722865" /> - <width sOffset="219.47906670079374" a="3.2037779770497057" b="0.0027584330003826655" c="0.002979677493693148" d="-0.00028824818124649146" /> - <width sOffset="220.58876413710726" a="3.2101143676983077" b="0.0083066429619232315" c="0.0020321309914285894" d="-0.00028209715904392325" /> - <width sOffset="222.74479276053407" a="3.2346427687361095" b="0.013135356536868509" c="0.00041341798308537701" d="-0.0002871662381367409" /> - <width sOffset="226.5059931078365" a="3.2746163187195814" b="0.0040579503794833027" c="-0.0089941459124668211" d="0.0036563619569256233" /> - <width sOffset="227.56939069489118" a="3.2731576181521298" b="-0.0026667551760519714" c="-0.0035798775623239591" d="0.0003130177461873643" /> - <width sOffset="230.61552614333942" a="3.2406642663127521" b="-0.015762919307060672" c="-0.00070842879026942573" d="0.00031436564223065011" /> - <width sOffset="234.90929042503686" a="3.1848068107064389" b="-0.0044592485587385093" c="0.0019804642595447016" d="-0.00025837396761888346" /> - <width sOffset="239.31166602563988" a="3.1815137286399464" b="-0.0020443220487809926" c="-0.0012266864025087837" d="0.00013743546397321563" /> - <width sOffset="240.25134193617967" a="3.1786236092965616" b="-0.003985634615436431" c="-0.00074053163926406486" d="0.00014956009350493358" /> - <width sOffset="240.64228814957158" a="3.1769611949492238" b="-0.004496074876716361" c="-0.00057542067845306293" d="0.00015157491999889309" /> - <width sOffset="245.44320853138922" a="3.1588857384034439" b="0.00045970404804807725" c="0.00012661795210893481" d="-2.2706319554768988e-05" /> - <width sOffset="248.8464042469457" a="3.1610216895548691" b="0.00053257925052835754" c="-4.6794352636111121e-05" d="1.199478283061797e-05" /> - <width sOffset="250.66905015580372" a="3.1619095675248285" b="0.00048154155676769639" c="-2.8986466030773708e-06" d="3.8755750492703977e-06" /> - <width sOffset="260.33321717327567" a="3.1697906207364674" b="0.0015114066122391954" c="0.00013961176441919265" d="-4.8864971931102651e-06" /> - <width sOffset="261.67179569142235" a="3.1720521924220608" b="0.001858902463380344" c="0.0044951268561371086" d="-0.00062181032872140555" /> - <width sOffset="266.41601636369995" a="3.2156482572730472" b="0.0025242199438931202" c="-0.001025845331855858" d="0.00012900131352648072" /> - <width sOffset="270.53782128765937" a="3.2176577381655873" b="0.00064246795802056725" c="-1.4795804549527011e-05" d="-2.6818193410827031e-06" /> - <width sOffset="270.72257416826801" a="3.2177759140247382" b="0.00063672620233361471" c="-1.72505588393332e-05" d="-2.675374846633752e-06" /> - <width sOffset="280.74933617450017" a="3.2197290027876253" b="-0.00051612239981883769" c="-9.6312929682850434e-05" d="-1.0920708630048683e-06" /> - <width sOffset="281.9947163418089" a="3.2189347461639191" b="-0.00076109613799314247" c="7.7386574393541635e-05" d="2.0427120842067579e-06" /> - <width sOffset="285.66330607842167" a="3.2172849644788579" b="-0.00011082112066960498" c="0.0010803957998095639" d="-0.00052183517503130706" /> - <width sOffset="287.06180856996383" a="3.2178157032384727" b="-0.0001507788230363394" c="-3.5394192866624269e-05" d="-9.6806050290828526e-07" /> - <width sOffset="290.77609818073233" a="3.2167177651071102" b="-0.00045377332380925988" c="-3.0453857943639249e-05" d="-1.7358602669150675e-06" /> - <width sOffset="294.76768778136068" a="3.2143108776142366" b="-0.0007798632076375893" c="-9.012048931304341e-05" d="6.7180994069006483e-06" /> - <width sOffset="300.80286018696444" a="3.2077985614140916" b="-0.001133562417591103" c="3.0555521743962908e-05" d="6.6563572788916603e-06" /> - <width sOffset="300.83515679882117" a="3.2077619832844961" b="-0.0011315679086367509" c="-6.1932573336481023e-05" d="5.675498748150302e-06" /> - <width sOffset="310.68142343862371" a="3.1960337130545091" b="-0.00070047595201897872" c="0.00016358935481828744" d="-1.0165562042439103e-05" /> - <width sOffset="310.8296221931966" a="3.1959334631951011" b="-0.00065265826950883211" c="0.00015912124816471984" d="-1.017102577999345e-05" /> - <width sOffset="319.79449002548699" a="3.195542675560167" b="-0.00025195744727964607" c="-7.6194284414416586e-06" d="7.4842296411355851e-07" /> - <width sOffset="320.85638419942876" a="3.1952674277715971" b="-0.00026560769222768029" c="-8.4751861827650527e-06" d="-1.1493520355770248e-06" /> - <width sOffset="330.88314620566092" a="3.190593577263992" b="-0.000782218660022208" c="-4.6243689280649048e-05" d="-3.7792027762515011e-07" /> - <width sOffset="331.69580509578634" a="3.1899271574876042" b="-0.00085812810249574528" c="-2.2507865522693691e-05" d="-1.8232203168427831e-06" /> - <width sOffset="333.29248707273683" a="3.1884921968634332" b="-0.00094394822611084165" c="-0.00041930051723224727" d="0.00011670766025270286" /> - <width sOffset="335.73364755284064" a="3.1853869522097815" b="-0.00090463248378780782" c="0.00014807060764057619" d="-5.3986965170357427e-06" /> - <width sOffset="340.90990821189308" a="3.1839229434744265" b="0.00019431888824166053" c="6.0826732149443791e-05" d="-5.3423960862665192e-06" /> - <width sOffset="345.67915306357759" a="3.1856537021815168" b="0.00040996448737148678" c="7.0946480153988097e-05" d="-1.0187159137056122e-05" /> - <width sOffset="350.93667021812519" a="3.188289708775871" b="0.00031120449103528235" c="-8.6893044212810967e-05" d="-1.1690547749823417e-05" /> - <width sOffset="351.0165090210819" a="3.188313995143822" b="0.00029710606288214773" c="-0.00015240647473872877" d="2.8271123290183257e-06" /> - <width sOffset="352.07067679816487" a="3.188461141946215" b="-1.4792873667371321e-05" c="-0.00011321903203144502" d="5.7110765498274036e-06" /> - <width sOffset="360.96343222435735" a="3.1833924151964528" b="-0.00067353656525830628" c="3.9812853855224811e-05" d="5.5508820738306532e-06" /> - <width sOffset="370.16716501420166" a="3.1848935282980237" b="0.0014699411391797808" c="0.0024123320047105879" d="-0.0006641277722504921" /> - <width sOffset="371.1267771944996" a="3.1879386450727121" b="0.0042650502802521126" c="0.00043653572297166593" d="-0.00066253918356816194" /> - <width sOffset="373.35826155146026" a="3.1922678233310156" b="-0.003684090632266821" c="-0.00049420187879449106" d="3.7340924485380852e-05" /> - <width sOffset="380.9478158959671" a="3.1521648037961061" b="-0.0047329733467222461" c="0.0046129173262010855" d="-0.00056046970329956536" /> - <width sOffset="381.01695623682167" a="3.1518594306893637" b="-0.0041031337799786963" c="0.0044960828575844195" d="-0.00056039069123892463" /> - <width sOffset="385.60172328753896" a="3.1735494895824665" b="0.0017854648440849951" c="-0.0020182839690262504" d="0.0003659965625656708" /> - <width sOffset="389.52272987091385" a="3.1715838825820661" b="0.0028388701446812941" c="0.0049094179268740186" d="-0.001160509257538493" /> - <width sOffset="391.04371824305377" a="3.1831758050693986" b="0.0097190193623298803" c="-0.00038525323556147772" d="-0.0011538461261133216" /> - <width sOffset="393.00912883434069" a="3.1920294235650406" b="-0.0051667069457034757" c="-2.7706375690328533e-05" d="9.8844814233404565e-06" /> - <width sOffset="396.07364093719366" a="3.1762202614715989" b="-0.0050580375462098417" c="0.0007482031470832925" d="-2.158705126984049e-05" /> - <width sOffset="401.07048024928594" a="3.1669342310058988" b="0.00080228165710268928" c="0.0004217272180664553" d="-2.2560389856963445e-05" /> - <width sOffset="409.31267634762384" a="3.1895642284252244" b="0.0031563597176254825" c="0.00045671062965032188" d="-2.2740367820996411e-05" /> - <width sOffset="409.33683597598588" a="3.1896407511586524" b="0.0031783878159723873" c="0.00023701272973884017" d="3.1691972066725309e-06" /> - <width sOffset="411.0972422555181" a="3.1959878043735399" b="0.00404232952571279" c="0.00025940948966499475" d="5.2891932100918699e-06" /> - <width sOffset="414.99053787250557" a="3.2159699869446277" b="0.0063027620011681263" c="0.00068005900445250499" d="-0.00012993747111542968" /> - <width sOffset="419.69808750516847" a="3.2471557433959974" b="0.0040669429644624279" c="-0.0016111471201445677" d="0.00011339679821313731" /> - <width sOffset="421.12400426175026" a="3.2500077822916511" b="0.00016390785320532369" c="-0.0011263948700663306" d="0.00011330768447134431" /> - <width sOffset="421.56304741242627" a="3.2498722114583991" b="-0.00075964086227567774" c="-0.0008114080242516672" d="0.00025420481268950999" /> - <width sOffset="422.38722329802033" a="3.2488372846251155" b="-0.0015791087409058784" c="-0.0005629969347377365" d="0.00016969180576046928" /> - <width sOffset="425.4647875843948" a="3.2435914264128076" b="-0.00022276936708000902" c="0.0011588626575172311" d="-0.0039248769012805934" /> - <width sOffset="425.70048386707106" a="3.2435519078290906" b="-0.00033060309668050784" c="-0.0014290103506970566" d="0.00011565837764718713" /> - <width sOffset="430.48430467758635" a="3.2219295288778831" b="-0.0060623563692222878" c="0.00038629592726892168" d="4.3014829137365806e-05" /> - <width sOffset="431.15076626798242" a="3.2180735160551146" b="-0.0054901357474571328" c="0.00047619098715314013" d="4.231456939317977e-05" /> - <width sOffset="434.92566638981953" a="3.206410640583726" b="-8.6057459698266059e-05" c="-4.7612068780298179e-05" d="-4.1725199833529117e-07" /> - <width sOffset="441.95361122803968" a="3.2033093394781016" b="-0.00081711418867325743" c="0.00017659678210136956" d="-0.00014906911995207498" /> - <width sOffset="442.11023798798408" a="3.2031851170152166" b="-0.00077276549007637089" c="0.00017634755235050408" d="-3.6498378199670964e-05" /> - <width sOffset="446.41004533826595" a="3.2002212618189025" b="-0.0012806281190954772" c="-0.00037820367859576229" d="0.00013725971516592077" /> - <width sOffset="447.07837286894812" a="3.1992374279594991" b="-0.0016022300119965961" c="-0.00024734989571505991" d="2.1149324012996484e-05" /> - <width sOffset="451.20429028044668" a="3.1899015240253146" b="-0.0025632333271285133" c="1.9825375363884107e-05" d="2.3286531575913354e-05" /> - <width sOffset="452.46098121014165" a="3.1867578573903685" b="-0.0024030772799685423" c="0.0003362708965632793" d="5.9162984502918398e-05" /> - <width sOffset="455.68604555889704" a="3.1844899101319957" b="0.0016119829946109488" c="4.220306007686643e-05" d="-2.8563584357132754e-06" /> - <width sOffset="458.64776764126145" a="3.1895601453420181" b="0.0017868042695440775" c="3.5856955974447163e-06" d="4.7846918764359745e-06" /> - <width sOffset="461.23105228667885" a="3.1942823822112381" b="0.0019011199221198923" c="4.1058083020099e-05" d="4.0160702689350512e-06" /> - <width sOffset="465.10660499952985" a="3.2025007385977817" b="0.0024003284800707156" c="0.00050893749337290329" d="-5.1552403373458866e-05" /> - <width sOffset="471.25781429291101" a="3.2245239246765367" b="0.0028096675830255103" c="-0.00042453601631367197" d="-5.5314493258720469e-05" /> - <width sOffset="473.7663313923756" a="3.2280274113091414" b="-0.00036446970141600787" c="-3.7248879548879414e-05" d="1.6889142044266645e-05" /> - <width sOffset="475.29208647148778" a="3.2274445947597874" b="-0.00036018488731348039" c="0.0006376067280901268" d="-1.9311372255403005e-05" /> - <width sOffset="480.15604053104266" a="3.2385550115522408" b="0.0044717866010329926" c="0.0027658523457537651" d="-0.00035246505301659469" /> - <width sOffset="481.28457629914317" a="3.2466175564696851" b="0.0093678221524402111" c="0.0015951709235812216" d="-0.00033978222554297975" /> - <width sOffset="485.65164800891523" a="3.2896504802220079" b="0.0038599918890423269" c="-0.00052123135979965972" d="-1.8443941055654236e-05" /> - <width sOffset="488.72802089057802" a="3.2960552889588124" b="0.00012932359472115414" c="-0.00045019901564315938" d="4.9967499435233382e-05" /> - <width sOffset="490.67220722092327" a="3.2949722274691542" b="-0.0010546074193134975" c="0.0046807960572449259" d="-0.0006730872828670418" /> - <width sOffset="491.31133830537527" a="3.2960345185507025" b="0.0041038317703177675" c="0.0033936531680087917" d="-0.00067350448878183663" /> - <width sOffset="495.4106784993927" a="3.3234902749774058" b="-0.002026591001865672" c="-0.006642719085344779" d="0.0017374861445574896" /> - <width sOffset="498.07551719114144" a="3.3037975378119286" b="-0.00041456947215189424" c="0.0033944972134992016" d="-0.00030935921497452092" /> - <width sOffset="498.53262434356384" a="3.3042877577237215" b="0.0024948094460339682" c="0.033655280687813732" d="-0.032280834327153479" /> - <width sOffset="499.18303863106917" a="3.3112658192466653" b="0.0053064293029369521" c="0.0013212390737539883" d="-0.00028937806438911738" /> - <width sOffset="501.33810031160743" a="3.3259414123834956" b="0.0069692650130620789" c="-0.00055915422998175312" d="-0.00029118679110952096" /> - <width sOffset="503.83391811176546" a="3.335325398800733" b="-0.0012633297396747061" c="-0.0014604362665893316" d="0.00079983101568437598" /> - <width sOffset="505.3552908940311" a="3.3328395840895144" b="-0.00015325875052444438" c="0.0023284639173419756" d="-0.00011893333491607238" /> - <width sOffset="505.50833191710547" a="3.3328702391470193" b="0.00055108543883599509" c="0.001833595850199969" d="-0.00017300008510362833" /> - <width sOffset="509.87011055310563" a="3.3558021965465565" b="0.0066725254151845962" c="0.0016264092120930058" d="-0.00020820675024957132" /> - <width sOffset="511.3648623178396" a="3.3687144761643495" b="0.010139103188472427" c="0.00069054478489432528" d="-0.00020768190664545213" /> - <width sOffset="513.13220987799639" a="3.3876442491829453" b="0.01063387432378206" c="0.0015289610697484923" d="-0.00037981902256632412" /> - <width sOffset="516.00393021666514" a="3.4217957234853533" b="0.010018522385817973" c="0.00013575478099080743" d="-0.00013345207425392451" /> - <width sOffset="521.14609630334803" a="3.4587569620238936" b="0.0008285016257445748" c="-0.0019956096354668425" d="0.00024508691628735056" /> - <width sOffset="521.3916243240717" a="3.4588437066718485" b="-0.00010713007655564798" c="-0.001811291591757142" d="0.00023896863571035455" /> - <width sOffset="522.48818396356069" a="3.4568633493968637" b="-0.0032174700658078948" c="-0.00024675694208787721" d="0.00011582966870245087" /> - <width sOffset="528.35520320638193" a="3.4528848133104733" b="0.0058483114397803182" c="0.002099082187657769" d="-0.00034274542558992478" /> - <width sOffset="530.33857750103357" a="3.4700673683118257" b="0.010129994033905016" c="0.00049842785995106095" d="-0.00020808657221089782" /> - <width sOffset="531.41838633030386" a="3.4813249957906502" b="0.010478528860271095" c="-0.00017403552531284399" d="-0.00020219122803075222" /> - <width sOffset="534.59159001368619" a="3.5063627482275201" b="0.0032663036686481068" c="-9.8141197131601456e-05" d="6.2380109968450913e-05" /> - <width sOffset="535.77934823569854" a="3.5102084000786444" b="0.0032971795282611036" c="-0.00019456512607625841" d="1.2223912194035595e-05" /> - <width sOffset="541.44514833653602" a="3.5248670474897725" b="0.0022696553859036196" c="7.331469575741371e-06" d="1.156182574159887e-05" /> - <width sOffset="548.31407287653985" a="3.5445501307035538" b="0.0040069085075532286" c="0.0032912529798460738" d="-0.00052527979055903753" /> - <width sOffset="549.32053979892714" a="3.5513813740893632" b="0.0090356960855872345" c="0.0017049843150182035" d="-0.0005248361716933712" /> - <width sOffset="551.47191034276818" a="3.5734858456465561" b="0.0090843544714944106" c="-0.0016821194371248935" d="-0.00052391250744760365" /> - <width sOffset="552.7344395754036" a="3.5812194980264405" b="0.0023315862718958787" c="3.0680016405459562e-05" d="8.7243706313936994e-07" /> - <width sOffset="561.49867234900034" a="3.6045979707865472" b="0.0030704002035377301" c="5.1617188183090954e-05" d="2.6873890829023174e-06" /> - <width sOffset="563.22025917515009" a="3.6100506300313784" b="0.0032720222905917164" c="0.0001469851429430033" d="-8.9045883702070185e-06" /> - <width sOffset="566.99413910130102" a="3.6240136306825921" b="0.0040009688754306053" c="-0.001154248771651357" d="0.00011466602215744797" /> - <width sOffset="571.42760175801277" a="3.629056599124568" b="0.00052781656764738566" c="-0.00069544855276269476" d="2.9826662781237677e-05" /> - <width sOffset="571.52543435523251" a="3.6291016084301742" b="0.00039259792373491035" c="-0.00068201397872908267" d="2.8603837154693797e-05" /> - <width sOffset="576.08302937969142" a="3.6194322327951851" b="-0.0040416405035194744" c="-0.00030993558306126253" d="5.1252573847152281e-05" /> - <width sOffset="581.55219636146467" a="3.5964416384936646" b="-0.0028326511289158782" c="0.00054062747527097851" d="5.2261739024733872e-05" /> - <width sOffset="584.87645510520406" a="3.5949193376947806" b="0.0024943058964400776" c="0.0095249371540310768" d="-0.0091844042565769508" /> - <width sOffset="585.55662550591751" a="3.5981323871571735" b="0.0027044748348484422" c="-0.0019461129693748235" d="0.00011821641795863209" /> - <width sOffset="587.03070450305881" a="3.5982689223771702" b="-0.0022623531570770588" c="-0.0014090036468197007" d="9.5033677246396438e-05" /> - <width sOffset="591.57895836769683" a="3.5677731780562216" b="-0.0091815909495390341" c="-0.00011112058317019781" d="9.5228477642412361e-05" /> - <width sOffset="597.01146342951279" a="3.5298822122476299" b="-0.0019577369325294433" c="0.00058448379375700035" d="-4.6788724942626952e-05" /> - <width sOffset="601.60572037392888" a="3.5286874893609257" b="0.00045006403803862002" c="-5.9909362674122584e-05" d="-4.7008387219120044e-05" /> - <width sOffset="603.47254641438985" a="3.5290130593328004" b="-0.0002650949325578634" c="-0.00054480573700507208" d="6.9481021569591295e-06" /> - <width sOffset="606.31203940290243" a="3.5240267778991377" b="-0.0031909772575425925" c="-0.00038122869802204463" d="8.6394939770163151e-05" /> - <width sOffset="611.99011564216426" a="3.5094329720788249" b="0.00083599258743767037" c="0.0012071520396846123" d="1.1364533744471372e-05" /> - <width sOffset="612.13615753164913" a="3.5095808438348786" b="0.0011893092733098014" c="0.0024638886359367594" d="-0.00029469989080826005" /> - <width sOffset="616.21038526972654" a="3.5353948715731622" b="0.006590732436847855" c="-0.00024677755103752344" d="-2.2786658943955975e-05" /> - <width sOffset="621.6592443863932" a="3.5602936454176" b="0.0018718080177658352" c="-0.0006248006851215694" d="-2.2985323548253975e-05" /> - <width sOffset="622.91462665480003" a="3.5616133281141185" b="0.00019440706442492087" c="-0.00064356315129973434" d="4.3880187484925534e-05" /> - <width sOffset="631.02575158055083" a="3.5442658927304755" b="-0.0015849568141359186" c="0.00020904192802717299" d="-3.3434825571422638e-06" /> - <width sOffset="631.68600639262536" a="3.5433095840044562" b="-0.0013132875737470245" c="0.00021905193173262961" d="-6.1469656706356474e-06" /> - <width sOffset="634.72952330789178" a="3.5411683522902595" b="-0.00015072899540062752" c="-8.8082756992727279e-05" d="-9.298182230722616e-06" /> - <width sOffset="637.00997430391044" a="3.5402562808955462" b="-0.00069753020073317273" c="-0.00016924661172052033" d="7.0789570412141729e-06" /> - <width sOffset="641.71276839885752" a="3.5339691059449572" b="-0.0018197137085534984" c="-6.5801429087726751e-05" d="7.1982693037065249e-06" /> - <width sOffset="651.73953040508968" a="3.5163640762117763" b="-0.00096820958172022542" c="0.00015019415534512677" d="7.2766256569044735e-06" /> - <width sOffset="658.49896461880371" a="3.5189291909162534" b="0.0020596514496759879" c="0.00034469785211807584" d="1.5284047047477362e-05" /> - <width sOffset="661.76629241132184" a="3.5298716550235119" b="0.0048016245587244686" c="0.0004933409199826519" d="1.5889982260689239e-05" /> - <width sOffset="667.28652402652551" a="3.5740842689578738" b="0.011700981088406129" c="0.0016034070806724026" d="-8.3303177547568646e-05" /> - <width sOffset="667.52729733097442" a="3.5769933424583984" b="0.012458608629310803" c="0.019526695386343391" d="-0.0021710253073124182" /> - <width sOffset="671.793054417554" a="3.8169391388695799" b="0.060534505768537521" c="-0.0082558667259169365" d="-0.0021721580219799994" /> - <width sOffset="673.04170997636618" a="3.8754250063666467" b="0.029756938041914829" c="-0.002089790341467542" d="-2.5124896916753648e-05" /> - <width sOffset="677.17164705966411" a="3.9609051870351708" b="0.011209913395488026" c="-0.001167426281237321" d="-8.696141686744117e-05" /> - <width sOffset="680.42263532146944" a="3.9820220970049611" b="0.00086206912744078029" c="-4.0550272057951941e-05" d="5.3463055509480069e-07" /> - <width sOffset="681.81981642378616" a="3.9831488630855589" b="0.00075188796084656672" c="-3.9597221142218504e-05" d="6.023725648524431e-07" /> - <width sOffset="691.84657843001821" a="3.9873141419573566" b="0.00013950444146695456" c="-2.6398709557832724e-05" d="7.9885205000798001e-07" /> - <width sOffset="697.81210452154562" a="3.9873764900530753" b="-9.0172494132196467e-05" c="-0.00012815645007336517" d="4.4983381302784322e-06" /> - <width sOffset="701.68039603320074" a="3.9853703657850992" b="-0.00087973044369541408" c="5.0808920600610858e-05" d="5.217152729613853e-07" /> - <width sOffset="701.87334043625037" a="3.9852025219584593" b="-0.00086006558340856248" c="4.5452266300834165e-05" d="-5.4344414833737514e-08" /> - <width sOffset="711.90010244248253" a="3.9810936542105768" b="3.5021827126979418e-05" c="3.994019883989688e-05" d="5.1213606905501734e-07" /> - <width sOffset="715.03708675906807" a="3.9816123651290756" b="0.00030072466892908274" c="-5.4099852475563882e-06" d="-4.2695249698407901e-06" /> - <width sOffset="720.54691067512476" a="3.9823909125183401" b="-0.0001477362244475598" c="-1.3788717614795731e-05" d="-1.375080241447194e-06" /> - <width sOffset="721.9268644487147" a="3.9821571724365605" b="-0.00019364739238441784" c="-1.9480591235476548e-05" d="-5.8541667783352169e-07" /> - <width sOffset="730.2860826465178" a="3.9788352459533409" b="-0.00064205307408754606" c="-0.00010851927322595146" d="9.9122637965686542e-06" /> - <width sOffset="731.95362645494686" a="3.977508797128702" b="-0.00092128519262279986" c="-6.6808788881081419e-05" d="7.2956517772764192e-06" /> - <width sOffset="741.56494498160134" a="3.9689599898664487" b="-0.00018366530667936632" c="0.00014507784010035719" d="-4.6720728071715384e-06" /> - <width sOffset="741.98038846117902" a="3.9689083917728363" b="-6.5541126456950287e-05" c="0.00013807060518161016" d="-4.5244596205027523e-06" /> - <width sOffset="752.00715046741118" a="3.9775714048237694" b="0.0013386484455021092" c="6.1721166309764978e-06" d="-4.1373508334220886e-06" /> - <width sOffset="755.36029072165582" a="3.9819734942262865" b="0.0012404848634747449" c="-2.0146118398496912e-05" d="-6.1344987379897727e-06" /> - <width sOffset="758.79709990282038" a="3.9857498185750186" b="0.00088463234284193106" c="1.2621590078614269e-05" d="-2.477046962113699e-06" /> - <width sOffset="762.03391247364334" a="3.9886614420299358" b="0.000888484052442488" c="-1.0398599249059989e-05" d="-2.1850466659916765e-06" /> - <width sOffset="772.0606744798755" a="3.9943219905242566" b="2.0928224134445731e-05" c="-7.3102749520816688e-05" d="-1.8760807448139442e-06" /> - <width sOffset="773.09372393984324" a="3.9942635274985028" b="-0.00013611569820491708" c="-1.4511424090185641e-05" d="-2.7581901986794999e-06" /> - <width sOffset="775.97606117849" a="3.9936845893221906" b="-0.00028851337420261053" c="-0.00026425063468086917" d="2.2772986310753981e-05" /> - <width sOffset="782.08743648610755" a="3.9872499100137313" b="-0.0009667444597213277" c="0.00015808547501134282" d="2.3027893362034327e-05" /> - <width sOffset="786.19673043914577" a="3.9875446740602691" b="0.0014990624387844107" c="0.00022205563938851685" d="-2.5084367413314954e-05" /> - <width sOffset="792.11419849233971" a="3.9989932269682145" b="0.0014919818945657887" c="-0.00022386341152859493" d="-2.5060767548661684e-05" /> - <width sOffset="792.79711271838335" a="3.9998997373847582" b="0.0011511599688931249" c="-0.0059133935337272693" d="0.0024078002795029506" /> - <width sOffset="794.05796496125708" a="3.9967766581480531" b="-0.0022772812618367848" c="9.5645422574700597e-05" d="-2.2810413904738042e-06" /> - <width sOffset="802.14096049857187" a="3.9834137597236632" b="-0.0011781724786295426" c="4.035221524861568e-05" d="-2.072531997144586e-06" /> - <width sOffset="809.15247760519503" a="3.9764223604272226" b="-0.00091797753394716225" c="7.3883139366998557e-05" d="-5.3927306493773449e-07" /> - <width sOffset="812.16772250480403" a="3.9743113733474851" b="-0.00048713474535276287" c="7.153089536648545e-05" d="6.7226319723545538e-10" /> - <width sOffset="812.44247815605513" a="3.9741829302522866" b="-0.00044782755761033544" c="1.6223469480742738e-05" d="-6.0898144852713015e-07" /> - <width sOffset="822.19448451103619" a="3.9707938027351464" b="-0.00030515018409256445" c="-2.4123758260337493e-06" d="-5.361503884393512e-07" /> - <width sOffset="827.75778876226491" a="3.9689291778145801" b="-0.00038177387873660368" c="-0.0010555910374679407" d="8.912040646720267e-05" /> - <width sOffset="829.16043144557398" a="3.9665628426626416" b="-0.0028169997691698625" c="-0.0005998248260289669" d="8.6426263335827661e-05" /> - <width sOffset="832.22124651726836" a="3.9547993329831708" b="-0.0040598291100666668" c="0.00019252113732004961" d="8.6475000523429486e-05" /> - <width sOffset="836.02085302920329" a="3.9468965917125587" b="0.0011485012739883612" c="7.3909430110539198e-05" d="-2.5045746552772493e-06" /> - <width sOffset="842.24800852350052" a="3.9563097201847457" b="0.0017776291293364213" c="2.2888491379534598e-05" d="-1.6985191422832481e-06" /> - <width sOffset="845.53395640259987" a="3.962337791035464" b="0.0018730308645571628" c="-0.00040672550522129311" d="2.166344579842565e-05" /> - <width sOffset="849.76342923432071" a="3.964623066774621" b="-0.00040486230474791004" c="-8.4853858741822113e-05" d="2.2714065377404482e-05" /> - <width sOffset="852.27477052973268" a="3.9634309194013762" b="-0.00040129470931813847" c="8.2365303751613477e-05" d="2.3593166864222343e-05" /> - <width sOffset="854.88798748157456" a="3.96336574353063" b="0.00051252843912272228" c="5.4006516998993012e-05" d="-7.246163729892194e-07" /> - <width sOffset="862.30153253596484" a="3.9698383821977301" b="0.001193811771954021" c="3.7576891581595778e-05" d="-8.4084934604165192e-07" /> - <width sOffset="864.8577691941905" a="3.9731215430300777" b="0.0013694394261693401" c="5.4104223288962768e-05" d="-1.1558821111947251e-06" /> - <width sOffset="872.32829454219689" a="3.9858895528431635" b="0.0019842883654320291" c="2.6876914659455107e-05" d="-1.0028569336942398e-06" /> - <width sOffset="877.10384878909372" a="3.9958693602438702" b="0.002172379473236466" c="5.8396264484525577e-05" d="-3.5144015971943576e-06" /> - <width sOffset="882.35505654842905" a="4.0083783679199358" b="0.0024949505067771473" c="2.6469846810957486e-06" d="-3.6028419319280061e-06" /> - <width sOffset="884.92898178912628" a="4.014756283094826" b="0.0024369693196041875" c="-4.1224945172175712e-05" d="-9.8155957313509249e-07" /> - <width sOffset="891.4547258886962" a="4.0286309667168352" b="0.0017735223013461046" c="-6.7849523107077722e-05" d="4.5135576940254605e-06" /> - <width sOffset="892.38181855466121" a="4.0302204660844971" b="0.0016593549303224897" c="-5.6019076142047257e-05" d="4.5379191563985415e-06" /> - <width sOffset="902.40858056089337" a="4.0458009415540754" b="0.0019046471681570061" c="8.9807783391401705e-05" d="3.9239170155926251e-06" /> - <width sOffset="902.60770951474092" a="4.0461838040238733" b="0.001940880605540871" c="0.00012365008672364804" d="-1.966060364631277e-06" /> - <width sOffset="909.19999672075687" a="4.0637890076669576" b="0.0033148297429024393" c="0.00011974009140526441" d="-1.0332787676889895e-05" /> - <width sOffset="912.43534256712553" a="4.0754170744902751" b="0.0037651567474463591" c="3.4989237145439509e-05" d="-7.3389017922290037e-06" /> - <width sOffset="918.49631186333363" a="4.0978888959132815" b="0.003380502779868867" c="2.2124918817372931e-06" d="-4.9503052473049911e-06" /> - <width sOffset="922.46210457335769" a="4.1110213054912119" b="0.0031644833953662008" c="-5.270843850562953e-05" d="-5.2856585043659677e-06" /> - <width sOffset="928.77627437478532" a="4.1275703708590123" b="0.0018666656956028596" c="3.0132918067938487e-05" d="-4.3288935231638345e-05" /> - <width sOffset="932.48886657958985" a="4.1327006935513326" b="0.00030040971727444618" c="-0.00046134417755123118" d="-3.5785819886635733e-05" /> - <width sOffset="933.59868847113171" a="4.1324169368309445" b="-0.00085584269852240907" c="-0.00082783109461408784" d="3.1957281954326639e-05" /> - <width sOffset="939.18279335009925" a="4.1073887602956383" b="-0.0071117363180100198" c="-0.00025549722206531745" d="3.4813774472823167e-05" /> - <width sOffset="942.51562858582201" a="4.0821373263574987" b="-0.0076546842448176559" c="9.4011392587266127e-05" d="3.407874011675212e-05" /> - <width sOffset="946.34815485733952" a="4.0560998105000934" b="-0.0054324100382019212" c="-0.00071628230588236116" d="0.00020804280670711127" /> - <width sOffset="950.12953865246163" a="4.0365645288954664" b="-0.0019251596194711082" c="0.00025214503902336262" d="-1.4802587677465437e-05" /> - <width sOffset="952.54239059205418" a="4.0331794195108186" b="-0.00096691786080162234" c="0.00014865371609620528" d="-1.3154906091559093e-05" /> - <width sOffset="959.09973278519851" a="4.0295218066999876" b="-0.00071430431893533314" c="0.00012820207575983569" d="-8.9143201778034101e-06" /> - <width sOffset="962.56915259828634" a="4.0282144667102617" b="-0.00014663231752927279" c="2.5744850211597322e-05" d="-9.6690921719211779e-06" /> - <width sOffset="969.20163003693301" a="4.0255533761922013" b="-0.0010811510855601302" c="-0.00059877267282219229" d="8.9279885044070715e-05" /> - <width sOffset="972.59591460451838" a="4.0184764714139805" b="-0.0020601351808791244" c="0.00029401420148352658" d="8.9685047596946762e-05" /> - <width sOffset="975.38875123332764" a="4.0169698369324003" b="0.0016807450930464854" c="0.00034434943117580446" d="-2.8492047964766522e-05" /> - <width sOffset="976.33588946295299" a="4.0188464324222828" b="0.002256359959271394" c="0.00040507779173768919" d="-4.2302310968141038e-05" /> - <width sOffset="981.62438628741052" a="4.0358515576690364" b="0.0029915068787047124" c="-0.0014871829480646239" d="0.0001308863204228582" /> - <width sOffset="982.62267661075055" a="4.0374860640947601" b="0.00041354365581326409" c="-0.0010950022436228607" d="0.0001309957970310773" /> - <width sOffset="987.82147203816726" a="4.0284471081549249" b="-0.00035038520422212829" c="0.00056381382540297506" d="-0.00040137504504137746" /> - <width sOffset="989.10782378606177" a="4.0280749949965067" b="-0.00089232625227905478" c="-0.00075468719593200411" d="6.0537793122398866e-05" /> - <width sOffset="990.73617352504334" a="4.0248822837887257" b="-0.0028685636199627194" c="-0.0001284771385551179" d="7.4057451365599857e-05" /> - <width sOffset="992.64943861698271" a="4.019442333555225" b="-0.0025469048567798801" c="0.00029391945315007651" d="7.3271291086164826e-05" /> - <width sOffset="992.8908877072231" a="4.0188455518725732" b="-0.0023921570525129517" c="0.00019438340268529964" d="-1.0199820735304073e-05" /> - <width sOffset="1002.6762006232149" a="4.004493321621899" b="-0.0015179225907989806" c="-0.00010141840441455078" d="-1.0875169888861754e-05" /> - <width sOffset="1004.8656250958491" a="4.0005696506985977" b="-0.0021184114390142427" c="-0.00018849250529330599" d="1.4673538851834289e-05" /> - <width sOffset="1012.702962629447" a="3.979452842598477" b="-0.0023690540405935222" c="0.00015523101099526419" d="1.5374961373348922e-05" /> - <width sOffset="1014.3664162193943" a="3.9760123369368379" b="-0.0017249837305781121" c="-1.9609962529889791e-05" d="2.2042535732435563e-05" /> - <width sOffset="1019.3328790319113" a="3.9696618195660927" b="-0.00028868081300822881" c="0.0001393820286529901" d="-2.3475051343217209e-05" /> - <width sOffset="1022.7297246356792" a="3.9693693855646561" b="-0.00015436721967246401" c="-9.9240716471843678e-05" d="-2.3504223137888674e-05" /> - <width sOffset="1023.4395227961793" a="3.9692014119428922" b="-0.00033077420540516292" c="-0.00045518100638668949" d="4.3160384498514679e-05" /> - <width sOffset="1028.5884290370864" a="3.9613224350607581" b="-0.00158543750422028" c="1.8425956264055354e-05" d="4.9903180251848258e-05" /> - <width sOffset="1030.3896050491517" a="3.958818167347367" b="-0.0010333677874644982" c="0.00010863141989006804" d="-1.1325996719644547e-05" /> - <width sOffset="1032.7564866419114" a="3.9568306974229168" b="-0.00070948143736327936" c="2.6080954734924753e-05" d="-1.1876262289923433e-05" /> - <width sOffset="1040.1515903553839" a="3.9482073123439352" b="-0.0022721900885931514" c="-0.0029895166831338024" d="0.00060323394652314253" /> - <width sOffset="1042.7832486481434" a="3.9325178810519654" b="-0.0054736458576307122" c="0.0017725878868245159" d="0.00060330568782962404" /> - <width sOffset="1043.5325807219488" a="3.9296654483817681" b="-0.0018008661240190658" c="0.00085676490117764519" d="-6.8816099880247641e-05" /> - <width sOffset="1047.1553720844922" a="3.9311139468339587" b="0.0016973399273706785" c="-1.0438121561816274e-05" d="-7.7585732480817655e-05" /> - <width sOffset="1050.1688438235815" a="3.9340108815378336" b="-0.00047924092627444709" c="-0.00090149092482780236" d="0.00012488973113698731" /> - <width sOffset="1052.8100106543757" a="3.9287575273237891" b="-0.0026276135766850226" c="8.3768302472748686e-05" d="0.00012730004463595569" /> - <width sOffset="1055.113566156949" a="3.9247052328092935" b="-0.0002151810764992993" c="0.0014645971025852435" d="-0.00019386329779399786" /> - <width sOffset="1060.1619722809751" a="3.9360026645787345" b="-0.00025005432633067287" c="-0.00013370145753751364" d="3.4051822051192073e-06" /> - <width sOffset="1062.8367726606077" a="3.9344424094759409" b="-0.00089221603381869159" c="-0.00011285003749126522" d="1.6617118891541333e-06" /> - <width sOffset="1066.9547513991831" a="3.9289706403023312" b="-0.0017371074650532438" c="-0.00027022023329796195" d="1.1454548250708447e-05" /> - <width sOffset="1072.86353466684" a="3.9116351011402219" b="-0.003730690390351345" c="-6.6498653867007806e-05" d="1.1370363459247006e-05" /> - <width sOffset="1079.7682259769094" a="3.8864484188536723" b="-0.0030227576270263302" c="0.00035019399465334227" d="-3.1106140986212712e-06" /> - <width sOffset="1082.1585276135625" a="3.8811814824848243" b="-0.0014019369419886389" c="0.00021470419485988625" d="-1.1231985947775801e-05" /> - <width sOffset="1082.890296673072" a="3.8802661582116595" b="-0.0011057528807114966" c="0.00019276771923622959" d="-1.0739375056252016e-05" /> - <width sOffset="1092.9170586793043" a="3.8777332960653892" b="-0.00047916081916780234" c="-0.0001306508004636643" d="-1.0640730857263503e-05" /> - <width sOffset="1098.0754697813986" a="3.8703245139418412" b="-0.0026764860677136126" c="-5.0574917007338364e-05" d="1.3509862920388645e-06" /> - <width sOffset="1098.9472569114835" a="3.8679536453720109" b="-0.0027615868905932197" c="2.9957613132070029e-06" d="-5.9189014875017944e-07" /> - <width sOffset="1102.9438206855364" a="3.8569268536819652" b="-0.002766003323580703" c="-4.2794055676244543e-06" d="-6.9300266658926886e-07" /> - <width sOffset="1112.9705826917684" a="3.8280639811043748" b="-0.0030608355433638869" c="-1.9252293419143798e-05" d="-3.1374426770224353e-06" /> - <width sOffset="1114.5422706774434" a="3.823193564807795" b="-0.0031446031019988089" c="0.00082742103223953174" d="-7.1028712309595095e-05" /> - <width sOffset="1118.5595706153617" a="3.8193091746911882" b="6.4460840423923721e-05" c="-2.0322376730224259e-05" d="-6.6751700031918214e-05" /> - <width sOffset="1120.8463093669855" a="3.8185521100653697" b="-0.0010756518788189512" c="1.4521614617476466e-05" d="-5.6305412399010066e-06" /> - <width sOffset="1122.9973446980007" a="3.8162494963889486" b="-0.0010913356155717942" c="-1.1861967067613245e-05" d="-3.6844858877983114e-06" /> - <width sOffset="1130.3189421173206" a="3.8061772192226861" b="-0.0018575620272019257" c="1.7272668093834121e-05" d="-5.3879423183379849e-06" /> - <width sOffset="1133.0241067042327" a="3.8011719475343391" b="-0.0018823967259847304" c="-2.310069993457649e-05" d="-4.2691729265692298e-06" /> - <width sOffset="1136.2349175549127" a="3.794748460623441" b="-0.0021627773162855497" c="-3.4266518399981925e-05" d="-1.0099160333241891e-05" /> - <width sOffset="1138.5056936370854" a="3.7895423330042188" b="-0.0024746271557200901" c="-0.00032789903424116225" d="5.6252568976439961e-05" /> - <width sOffset="1143.050868710465" a="3.7768027280321617" b="-0.0019690434497152379" c="0.0004392506714464982" d="5.627874395545548e-05" /> - <width sOffset="1143.0729173058467" a="3.7767595275306496" b="-0.0019495916510335466" c="0.00018097979547716342" d="-6.2242768617871965e-06" /> - <width sOffset="1148.7650862924017" a="3.7703780622347085" b="-0.0004942709139061233" c="0.0014227266312365394" d="-0.00025538657336672007" /> - <width sOffset="1152.5189941895592" a="3.7750616293678112" b="-0.00060928975579731173" c="-0.0015914634432016392" d="-0.00023240811274154155" /> - <width sOffset="1154.0717952530888" a="3.7694080417738407" b="-0.0072328831590837547" c="-0.0014703074834394056" d="0.00020681357526471805" /> - <width sOffset="1158.6088541472957" a="3.725641224508021" b="-0.0078029140372048817" c="0.00070212781531946774" d="1.8334655427572714e-05" /> - <roadMark sOffset="0" color="standard" width="0.1799245489105335" weight="standard" type="solid"> - <type name="solid"> - <line length="673.04170997636618" space="0" width="0.179925" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="673.04170997636618" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="260.55697849476553" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="933.59868847113171" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="229.50570425179762" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="1049.0917559909308" max="100" unit="km/h" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.9435127023902603" b="1.1112995985010025e-09" c="0.0036339334138071593" d="-0.00048456052656033964" /> - <width sOffset="4.9571275961542609" a="2.9737844512728611" b="0.00030626114381853212" c="0.0018894667748585153" d="0.00023512266669917136" /> - <width sOffset="6.7074389427374763" a="2.9813698380147793" b="0.0090815296312553757" c="-0.0013098815155971062" d="-0.0001459856954437048" /> - <width sOffset="8.7346042472516068" a="2.9931806499550833" b="0.0019710964205051397" c="-0.00022310642402946783" d="4.9593389984673906e-06" /> - <width sOffset="10.026762006232149" a="2.9953658026828056" b="0.0014193604302738319" c="-0.00020325371896497005" d="4.2864978822550561e-06" /> - <width sOffset="20.053524012464297" a="2.9934840895541899" b="-0.0013637514119205288" c="-7.6685428807869802e-05" d="4.9021102986850768e-06" /> - <width sOffset="26.137581804134214" a="2.9834523625241371" b="-0.0017525025698664938" c="0.0016200242009634285" d="7.2354830489000695e-05" /> - <width sOffset="26.471010197355646" a="2.983050815879869" b="-0.00064804640237820627" c="0.0010126870825486584" d="-4.7860238738619103e-05" /> - <width sOffset="30.080286018696448" a="2.9916537103077454" b="0.0047916799955936328" c="0.00047788928296931086" d="-4.9613315393317536e-05" /> - <width sOffset="40.107048024928595" a="3.0377310934164932" b="-0.00058872212233275142" c="-0.0010097872128412065" d="-5.1000961638365766e-05" /> - <width sOffset="40.508992024876484" a="3.0373280080173526" b="-0.0014251969350727173" c="-0.0071770234401272387" d="0.00095044528795660199" /> - <width sOffset="43.355872284717329" a="2.9970326285401523" b="-0.019180150275505476" c="0.0040853256064346212" d="0.0008429238470582833" /> - <width sOffset="44.476610868978717" a="2.9818546793403051" b="-0.0068467101296600351" c="0.0024297936861940013" d="-0.00012129886996158991" /> - <width sOffset="50.133810031160742" a="2.9989228988776335" b="0.0089988319098604566" c="0.00037812618084470152" d="-0.00011944844901639931" /> - <width sOffset="57.834197227005809" a="3.0360983592438329" b="-0.0064261645150029689" c="0.0002691463043083236" d="0.00012196934269445678" /> - <width sOffset="58.224175408362811" a="3.0336404617509061" b="-0.0061605937584319707" c="-0.00055150424727837591" d="8.529778608465907e-05" /> - <width sOffset="60.160572037392896" a="3.0202624988399625" b="-0.0073369497887170393" c="-7.0999180356200219e-05" d="8.3743077434781461e-05" /> - <width sOffset="60.730633340040967" a="3.0160724287262655" b="-0.0073362556235224332" c="0.00055612238094383641" d="4.8271994873116424e-05" /> - <width sOffset="62.903391750160381" a="3.0032530459224493" b="-0.00423595770661803" c="-0.00055078439696124005" d="3.4482173507933105e-05" /> - <width sOffset="70.187334043625043" a="2.9565020846841339" b="-0.0067712817439208491" c="0.00020189958200494978" d="3.4260314547411427e-05" /> - <width sOffset="76.522026604980752" a="2.9304189832430882" b="-8.8910574934729369e-05" c="0.0024201017736708717" d="-0.00017946994570450209" /> - <width sOffset="77.695639015946981" a="2.9333578907296514" b="0.0048500249270338781" c="0.00031643151768946486" d="-0.00021925875291048093" /> - <width sOffset="80.21409604985719" a="2.9440771185064252" b="0.002271834599908245" c="-0.0013336550418701963" d="-0.00021881408112118386" /> - <width sOffset="80.698946435629907" a="2.944840162781349" b="0.00082427190214817356" c="-0.0005575565966631996" d="2.4832177285274442e-05" /> - <width sOffset="90.240858056089337" a="2.9235143541635611" b="-0.0030332736389769611" c="0.00018176823089784057" d="2.3001577761750886e-05" /> - <width sOffset="93.883710201469029" a="2.9159886611002168" b="-0.0007932455957824114" c="-0.00028858307269864395" d="-4.9084712625130375e-06" /> - <width sOffset="96.506993105379038" a="2.9118332266334002" b="-0.0024086502795257745" c="-7.4511128226524375e-05" d="-2.9149590380244152e-06" /> - <width sOffset="99.466124352977417" a="2.9039777297975937" b="-0.0029262008420788172" c="0.0013395719235396856" d="-5.2607265388227913e-05" /> - <width sOffset="100.26762006232148" a="2.9024658409042079" b="-0.00088026253540020478" c="0.0012299261207289534" d="-5.0545674940516289e-05" /> - <width sOffset="110.29438206855363" a="2.9663388836794331" b="0.0085391171547819882" c="-0.00025048319540962806" d="-6.467336048101038e-05" /> - <width sOffset="110.58992619870624" a="2.9688390213195133" b="0.0083741125359574464" c="0.00059455086179600685" d="-0.00010829148917443875" /> - <width sOffset="111.97537236375493" a="2.9812941400165354" b="0.009397965063683289" c="-0.0064728526048726002" d="0.00095638061439242989" /> - <width sOffset="114.18311366501155" a="2.9807843648060728" b="-0.0051982566176182153" c="0.00061396807853048192" d="0.0010240069088387125" /> - <width sOffset="115.32371998971735" a="2.9771734956021785" b="0.00019898121891169865" c="-0.0010220349888224263" d="5.5908406778870401e-05" /> - <width sOffset="120.32114407478579" a="2.9596210896513027" b="-0.0058272921566020694" c="-0.00017517605002223107" d="5.8434152259748893e-05" /> - <width sOffset="129.99109931288677" a="2.9397283091068704" b="0.0071770068609866636" c="0.002928300603675449" d="-0.00028889640331743004" /> - <width sOffset="130.34790608101792" a="2.9426487955627811" b="0.0091563426795246428" c="0.0025893975218712877" d="-0.00028538039148301778" /> - <width sOffset="132.75391192063998" a="2.97569389013037" b="0.01666046888742196" c="0.010837635715109248" d="-0.0035486902658923062" /> - <width sOffset="134.9859215552994" a="3.0274119488896618" b="0.012002574668840797" c="-0.015304663559183475" d="-0.0036339305273178878" /> - <width sOffset="135.32034332982005" a="3.029578316651139" b="0.00054691544654494808" c="-0.00098429940500548304" d="5.131475962516134e-05" /> - <width sOffset="140.37466808725009" a="3.0138231961055899" b="-0.0054703311112125792" c="-0.00024514515498369114" d="4.5153002081539598e-05" /> - <width sOffset="147.5424282100978" a="2.9786462901914144" b="-0.0020251661792670718" c="-0.00076084953589957544" d="0.00016941510934335841" /> - <width sOffset="148.61120279280061" a="2.9758195700755428" b="-0.0030709614494605041" c="0.0020798195162831396" d="-0.00022365239450393491" /> - <width sOffset="150.40143009348222" a="2.9757042822770217" b="0.0022253779789544945" c="0.00090049782883512303" d="-0.00022056539297346089" /> - <width sOffset="152.98449195305412" a="2.9836594961499396" b="0.0024624862555603193" c="0.00090118956793448454" d="0.00017048334294926512" /> - <width sOffset="153.02868164824366" a="2.9837700871572221" b="0.0025431315635790451" c="5.4593179145143948e-05" d="-4.8337742125980784e-06" /> - <width sOffset="160.42819209971438" a="3.0036187700990435" b="0.0025570697984825426" c="-5.0318317568424128e-05" d="-4.8435412198036022e-06" /> - <width sOffset="167.08359885606455" a="3.0169804241722251" b="0.0012436662323992154" c="-0.00065934382879848379" d="3.2219765947346568e-05" /> - <width sOffset="168.41235888927361" a="3.0175444081662044" b="-0.00033789125522394603" c="-6.8597277959964664e-05" d="5.31155753629924e-06" /> - <width sOffset="170.45495410594654" a="3.0166132975257121" b="-0.00055164163402166011" c="-3.0366313239857765e-05" d="6.4562068199564725e-06" /> - <width sOffset="180.48171611217867" a="3.014537391783747" b="0.00078664955497134877" c="0.00016314318495388753" d="6.8174011935346816e-06" /> - <width sOffset="184.9699834685043" a="3.0219709195311264" b="0.0026631103299434326" c="-0.0005394923102721807" d="-4.3343735365891981e-05" /> - <width sOffset="186.11158011105604" a="3.0242435419791946" b="0.0012618828643839446" c="-0.018272716707163794" d="0.0053232940833958615" /> - <width sOffset="188.16063670395843" a="2.9959063392476448" b="-0.0065701050549172493" c="0.00073654595005855452" d="-1.7558938383136495e-05" /> - <width sOffset="190.50847811841084" a="2.9843136300906412" b="-0.0034018924168020626" c="0.00060274313175818735" d="-1.9253636335890719e-05" /> - <width sOffset="200.53524012464297" a="2.991392391456865" b="0.002878183223704138" c="1.2640727914016295e-05" d="-1.8176056725309078e-05" /> - <width sOffset="204.41991020757089" a="3.0016984194738394" b="0.0021535271721195956" c="-0.00043871897840138595" d="-1.719499498267449e-05" /> - <width sOffset="206.94923593879875" a="3.0040604535422117" b="-0.00039581358553347214" c="-0.00017375000607486318" d="4.5987786007129402e-06" /> - <width sOffset="210.56200213087513" a="3.0005795240195567" b="-0.001471179008667358" c="-0.00012808230524450159" d="3.9271957979672415e-06" /> - <width sOffset="220.58876413710726" a="2.9769102953295081" b="-0.002855207436732776" c="-1.5898910238366949e-06" d="1.353891756343538e-07" /> - <width sOffset="221.80090173264702" a="2.9734472961847835" b="-0.0028584649972697787" c="0.00073730187605450118" d="-1.8874604193835722e-05" /> - <width sOffset="222.74479276053407" a="2.9713902288514609" b="-0.001517047614739715" c="0.00047793952727860926" d="-1.3805525101546709e-05" /> - <width sOffset="230.61552614333942" a="2.9823262679847389" b="0.0034407291746524748" c="0.00015500778359348743" d="-1.3661112578352919e-05" /> - <width sOffset="240.25134193617967" a="3.0176505492892836" b="0.0026227223609811903" c="-0.00033862048838906311" d="-2.5785742105258932e-05" /> - <width sOffset="240.64228814957158" a="3.0186225975233345" b="0.0023461343689486639" c="-0.00037449362924567542" d="-2.4467455871335843e-05" /> - <width sOffset="243.75914936954425" a="3.0215561644713866" b="-0.00070144604390925101" c="5.500810609610371e-05" d="-2.6559094310959399e-06" /> - <width sOffset="250.66905015580372" a="3.0184594476863991" b="-0.00032167789535802717" c="-6.7130072830987744e-06" d="-3.1322398373230163e-06" /> - <width sOffset="260.33321717327567" a="3.0118965835766338" b="-0.001329046324568241" c="-0.0001276722713887124" d="5.6298324019397669e-06" /> - <width sOffset="260.69581216203585" a="3.0113981606981826" b="-0.0014194124274142825" c="-0.00012111608944433662" d="5.5382270744013991e-06" /> - <width sOffset="270.72257416826801" a="2.9905723386165923" b="-0.002177843969495415" c="4.8470815501501121e-05" d="5.5111059118918897e-06" /> - <width sOffset="279.97265323934238" a="2.9789363586033764" b="0.00013352996660615521" c="0.00042359610933744089" d="-6.4188528194480158e-06" /> - <width sOffset="280.74933617450017" a="2.9792925902513288" b="0.00077991344900066534" c="0.000412786701052615" d="-8.3210620442364956e-06" /> - <width sOffset="281.9947163418089" a="2.9808880269666402" b="0.0017693489938810014" c="0.00020391840987165599" d="-1.1455844991474282e-05" /> - <width sOffset="290.77609818073233" a="3.004392656947116" b="0.0027005475558919811" c="-9.1788702666103155e-05" d="-1.1864508158361153e-05" /> - <width sOffset="296.63232152686714" a="3.0146768582001737" b="0.00040478482244675831" c="-0.00017541912457131822" d="4.8459455368899975e-06" /> - <width sOffset="300.80286018696444" a="3.0136654192289791" b="-0.00080553735764226687" c="-0.00011041696342700947" d="5.4463249512495438e-06" /> - <width sOffset="310.8296221931966" a="2.9999777812945001" b="-0.0013771321227420939" c="5.3208380128521768e-05" d="5.4749194772588212e-06" /> - <width sOffset="316.54384678546779" a="2.9948674449169204" b="-0.00023273568482613458" c="3.4725910274823966e-05" d="1.0373395628423639e-07" /> - <width sOffset="320.85638419942876" a="2.994517915244769" b="7.2565615566975343e-05" c="3.538393977354518e-05" d="5.489538572411274e-08" /> - <width sOffset="330.88314620566092" a="2.9988582089252023" b="0.00079869518177710496" c="3.575589145504284e-05" d="3.0026234410209838e-07" /> - <width sOffset="331.69580509578634" a="2.9995310505216453" b="0.00085740476069958544" c="1.1830739466579346e-05" d="1.7455623834304294e-06" /> - <width sOffset="333.81963630342739" a="3.0014221202167155" b="0.00093127865809409095" c="2.6331080813504772e-05" d="6.2159375526792162e-08" /> - <width sOffset="340.90990821189308" a="3.0093710102561992" b="0.0013140423234423175" c="2.6089185938803207e-05" d="3.6858559366113197e-08" /> - <width sOffset="350.93667021812519" a="3.0252066564324109" b="0.0018483392716763089" c="1.9401218115463956e-05" d="3.9315699206597708e-06" /> - <width sOffset="352.07067679816487" a="3.0273333681374224" b="0.0019075091434902389" c="2.5298060897322586e-06" d="1.047605400312634e-06" /> - <width sOffset="352.17037931902831" a="3.0275235777936551" b="0.0019080448410353837" c="-0.00044934887228877579" d="1.4207481740867292e-05" /> - <width sOffset="360.96343222435735" a="3.0192175489899493" b="-0.0026987791558991019" c="-7.4219093094941643e-05" d="1.4055302204561414e-05" /> - <width sOffset="370.22630379250381" a="2.9990216632889997" b="-0.00045587492502114409" c="0.00012979319722180213" d="-3.447076169331119e-06" /> - <width sOffset="371.1267771944996" a="2.9987138862770482" b="-0.00023050949071833993" c="0.0001843621791683895" d="-5.0356648516219962e-06" /> - <width sOffset="381.01695623682167" a="3.0095960372430861" b="0.0019385400671400794" c="3.6702316752034062e-05" d="-5.2552051734465051e-06" /> - <width sOffset="390.30883033401608" a="3.0265615555002197" b="0.0012594203958328012" c="9.3656011154604854e-05" d="-8.0629091061179647e-06" /> - <width sOffset="391.04371824305377" a="3.0275344681717478" b="0.0013840103663925623" c="7.587410661462716e-05" d="-7.9465280617332206e-06" /> - <width sOffset="401.07048024928594" a="3.0410291881344937" b="0.00050881819075367356" c="-0.00016314336028567557" d="-8.2187091035019876e-06" /> - <width sOffset="409.33683597598588" a="3.0294448087640431" b="-0.003873202107730676" c="-0.00014890997598061473" d="-3.4128271130311774e-05" /> - <width sOffset="411.0972422555181" a="3.0219787343591422" b="-0.0047147798571198938" c="-0.00032672836057302899" d="-3.3282135154663656e-05" /> - <width sOffset="411.22596957555913" a="3.0213663282641354" b="-0.004800552116710332" c="-0.00073341137179756724" d="2.826964443196302e-05" /> - <width sOffset="414.99053787250557" a="2.994408658866369" b="-0.0091205964776378736" c="-0.00077301468677476394" d="0.00016349630875749075" /> - <width sOffset="419.69808750516847" a="2.9513988098421979" b="-0.005528869843988914" c="0.0019921311192653409" d="-7.9837960570911158e-05" /> - <width sOffset="420.83235564005395" a="2.9475740853029553" b="-0.0013177981318464576" c="0.0015664811788356735" d="-0.00018447510967478021" /> - <width sOffset="421.12400426175026" a="2.947318418156704" b="-0.00045114773838260316" c="0.0014054063784731321" d="-0.0001843859959424786" /> - <width sOffset="425.4647875843948" a="2.956760239002977" b="0.001327157410885617" c="-0.0011508798588340528" d="0.0039101827110985523" /> - <width sOffset="425.70048386707106" a="2.9570603088101102" b="0.0014363052649588176" c="0.0014266030513716123" d="-0.00013035256782921198" /> - <width sOffset="428.39817938848137" a="2.9687580484338882" b="0.0062874402489722292" c="0.00073181471121198873" d="-7.8603636090088391e-05" /> - <width sOffset="431.15076626798242" a="2.9899702121910745" b="0.0085295307425350131" c="7.4666716014017113e-05" d="-7.7183674640575578e-05" /> - <width sOffset="434.92566638981953" a="3.019080478057238" b="0.0057936773287335696" c="0.00020358760301560777" d="-3.4451853246473306e-05" /> - <width sOffset="435.18945603049212" a="3.0206223243649575" b="0.0058938939360269858" c="-0.00016605453780649525" d="-6.2076255367509277e-06" /> - <width sOffset="441.17752827421452" a="3.0486283016079385" b="0.0032374401405900902" c="-0.00027792561450981537" d="-7.0301257676215695e-06" /> - <width sOffset="441.95361122803968" a="3.0509701416458803" b="0.0027933506424285539" c="-0.00052729961968472688" d="0.00014162174192842173" /> - <width sOffset="445.58263284160546" a="3.0609314381418686" b="0.0045615763554252963" c="0.00041316328445099127" d="0.0001109771784723312" /> - <width sOffset="446.41004533826595" a="3.0650514634291124" b="0.0054732180226159848" c="0.00077237824375983653" d="-6.2780914888580265e-05" /> - <width sOffset="451.20429028044668" a="3.1021262355122952" b="0.00855014158916724" c="-0.00012558876777600569" d="-6.1949399078841858e-05" /> - <width sOffset="455.68604555889704" a="3.1323465310075536" b="0.003691454223556359" c="-9.2033773985741402e-05" d="6.99438598165362e-08" /> - <width sOffset="461.23105228667885" a="3.1499978228258376" b="0.0026772501441635231" c="-9.0243214972061917e-05" d="-8.6935789037595512e-08" /> - <width sOffset="471.25781429291101" a="3.1676816493015822" b="0.00084133514768869853" c="-8.0439345904223606e-05" d="-2.9827533258311371e-06" /> - <width sOffset="473.25651764520364" a="3.169018072723059" b="0.00048403972306789941" c="0.00028781313354449506" d="-1.0147444048071823e-06" /> - <width sOffset="475.29208647148778" a="3.1711873754310251" b="0.0016431527044922071" c="-0.00031593313755805919" d="3.5185769894866388e-05" /> - <width sOffset="479.41550146327302" a="3.1750579307509561" b="0.00083244939473819425" c="0.0011405923677799041" d="-7.3850435036433858e-05" /> - <width sOffset="481.28457629914317" a="3.1801162262378231" b="0.0043221780242137728" c="0.00073552268090023968" d="-7.1872752342145592e-05" /> - <width sOffset="486.66214074936181" a="3.2134521142645984" b="0.0059975275120148957" c="-0.0007052617349779356" d="0.00040230791491961356" /> - <width sOffset="488.72802089057802" a="3.2263794325085624" b="0.0082345375747130203" c="0.0015468443968414186" d="0.0003338964744288221" /> - <width sOffset="489.55784265976558" a="3.2344685892463136" b="0.011491515395339101" c="0.0026953635606843693" d="-0.0004903544294229535" /> - <width sOffset="491.31133830537527" a="3.2602626993283286" b="0.016420984527554087" c="0.00010593034941042968" d="-0.00048623860426608525" /> - <width sOffset="492.56987741847445" a="3.2801276551551046" b="0.014377129333406929" c="-0.00042078424649401628" d="-1.2849711900463711e-05" /> - <width sOffset="495.62157421903225" a="3.3197184038841807" b="0.011449915007866095" c="-0.000910815662642475" d="3.1105307542588097e-06" /> - <width sOffset="498.53262434356384" a="3.3454079678642543" b="0.0062261328103983401" c="-0.031568665333633457" d="0.031974585642935927" /> - <width sOffset="499.18303863106917" a="3.3449005864654606" b="0.0057401766538218582" c="0.00016781072119175742" d="-1.6870619828357991e-05" /> - <width sOffset="501.33810031160743" a="3.3578815294746649" b="0.006228405367716368" c="4.9166199996992271e-05" d="-1.9370075019324207e-05" /> - <width sOffset="504.39472923905589" a="3.3768256412660485" b="0.005986048332281035" c="-0.00046097848561372416" d="-4.8045237574506398e-05" /> - <width sOffset="505.50833191710547" a="3.382853706230498" b="0.0047806103081085346" c="-0.00018122537190170244" d="6.0215126817462068e-06" /> - <width sOffset="508.95059683779971" a="3.3974080656515655" b="0.0037470089307684749" c="-0.00030137110059002577" d="1.2451557601646527e-05" /> - <width sOffset="511.3648623178396" a="3.4048729629355847" b="0.0025095575935018821" c="-0.00021376163538325868" d="1.3579001088684156e-05" /> - <width sOffset="513.13220987799639" a="3.4087154959527588" b="0.0018812181224616481" c="-0.0020813198099027871" d="0.00018571611700958696" /> - <width sOffset="521.14609630334803" a="3.3857067287053768" b="0.0043036876657748064" c="0.0024562700225805533" d="-0.00019282287371531211" /> - <width sOffset="521.2658871998633" a="3.3862571869782583" b="0.0048838642988603383" c="0.0020788200046592403" d="-0.00018248482208405918" /> - <width sOffset="527.88711419087349" a="3.4567596860796379" b="0.0084117846170239374" c="-0.0015077874184488502" d="-0.00021903878287830324" /> - <width sOffset="528.35520320638193" a="3.4603443177924884" b="0.0068562481541191303" c="-0.0021224908074041087" d="0.00023953631140893972" /> - <width sOffset="531.41838633030386" a="3.4683155200908713" b="0.0005958650262409531" c="8.0050393077377011e-05" d="0.00024128503542672237" /> - <width sOffset="534.59159001368619" a="3.4787218312594748" b="0.0083925549137552624" c="0.0003763139057726139" d="-2.3286302571381046e-05" /> - <width sOffset="541.44514833653602" a="3.5464203017044542" b="0.01026937248033071" c="-0.00010470657191572896" d="-2.3459581638581859e-05" /> - <width sOffset="542.28360907430476" a="3.5549433286033056" b="0.010044310368749049" c="8.6547119993235817e-05" d="-1.9653709486722681e-05" /> - <width sOffset="548.31407287653985" a="3.6143524013905663" b="0.0089439394124357155" c="-0.0033146854155000696" d="0.00051718790681247603" /> - <width sOffset="549.32053979892714" a="3.6205237716760621" b="0.0038433932476283758" c="-0.0017538251645392322" d="0.00051681283703614272" /> - <width sOffset="549.34693313374714" a="3.6206239994140583" b="0.0037518947060913117" c="-0.0012321587007202367" d="0.00050055378639544035" /> - <width sOffset="551.47191034276818" a="3.6278358538602582" b="0.005296070514678698" c="0.0019619858615959732" d="0.00049920217154674352" /> - <width sOffset="552.7344395754036" a="3.6386542816769492" b="0.012637354450185798" c="0.00015559384379639174" d="-2.5582772964000705e-05" /> - <width sOffset="561.49867234900034" a="3.7441402094803862" b="0.0094695010929914617" c="-0.00051752783681031998" d="-2.5044304017978889e-05" /> - <width sOffset="565.73018501256047" a="3.7730462637028381" b="0.0037443425626481927" c="-0.00027101343051973083" d="2.5886501255372587e-07" /> - <width sOffset="566.99413910130102" a="3.7773464978926521" b="0.0030604861680825781" c="0.00093038752264498195" d="-0.00012331174551503347" /> - <width sOffset="571.42760175801277" a="3.7984566930366164" b="0.0040388670903771977" c="0.00035659582884362256" d="-3.8472386091622588e-05" /> - <width sOffset="571.85515994398247" a="3.8002457245715915" b="0.0043226990724763922" c="-0.002838697183559506" d="0.00034653927003928681" /> - <width sOffset="576.21767351091955" a="3.7938503440160742" b="-0.00065949892850627589" c="-4.1400965860391751e-05" d="-3.168354137840558e-05" /> - <width sOffset="581.55219636146467" a="3.784344351733433" b="-0.0038060760772255092" c="-0.00053754857934918809" d="-3.2304846938797205e-05" /> - <width sOffset="584.70040997719593" a="3.7660262340180242" b="-0.0081512557333437048" c="-0.00097009452578236503" d="-3.5705490928197858e-05" /> - <width sOffset="584.87645510520406" a="3.7645609852908928" b="-0.0084961363049110596" c="-0.0094520669089276799" d="0.0092009605047255524" /> - <width sOffset="585.55662550591751" a="3.7573045902540838" b="-0.0085841985363396475" c="0.0020527664242903417" d="-0.00010166016980993644" /> - <width sOffset="591.57895836769683" a="3.7578537245779491" b="0.0050795033514822053" c="0.00021718368596140939" d="-0.00010152693851980117" /> - <width sOffset="597.01146342951279" a="3.7755804260236712" b="-0.0015496166142456849" c="-0.00058106995275993435" d="4.0490264065230613e-05" /> - <width sOffset="601.60572037392888" a="3.7601227485066548" b="-0.0043248780205744795" c="-2.2690740058377808e-05" d="4.0408753854549175e-05" /> - <width sOffset="605.06633477399316" a="3.7465589649592337" b="-0.0030301380540193037" c="0.00032820441148893387" d="3.7068321485675109e-05" /> - <width sOffset="606.31203940290243" a="3.7433652642812589" b="-0.0020398809025335253" c="0.00036234317356235475" d="-4.2378516127382742e-05" /> - <width sOffset="611.63248238016104" a="3.7363866085548931" b="-0.0017830689109240329" c="-0.0003154484458083095" d="-4.2259177077855027e-05" /> - <width sOffset="611.99011564216426" a="3.7357066444458304" b="-0.0020249136670220684" c="-0.00047749788158738855" d="3.2771228944287006e-05" /> - <width sOffset="621.6592443863932" a="3.7011099916351657" b="-0.0020673424601765065" c="0.00047264466714263539" d="3.1579001262123012e-05" /> - <width sOffset="622.91462665480003" a="3.6993220451944597" b="-0.00073133892860975398" c="0.00052377218518798283" d="-3.5286509771054491e-05" /> - <width sOffset="631.02575158055083" a="3.7090191461313919" b="0.00080088909860538378" c="-0.00011971971360839901" d="1.1937160268275736e-05" /> - <width sOffset="631.68600639262536" a="3.7094991826920047" b="0.00065840959321191318" c="-9.3767727178352878e-05" d="1.1915815772907588e-05" /> - <width sOffset="637.00997430391044" a="3.7121448894852302" b="0.00067322517412562012" c="0.00011410224319743952" d="-4.4613234990099499e-06" /> - <width sOffset="641.71276839885752" a="3.7173704305788799" b="0.0014504203492231916" c="5.5781044198281293e-05" d="-4.0393550742418068e-06" /> - <width sOffset="651.73953040508968" a="3.7334495785375248" b="0.0013507255824625258" c="-6.7253145842021024e-05" d="-3.7900772431590034e-06" /> - <width sOffset="658.49896461880371" a="3.7383364056231945" b="-7.796617682916579e-05" c="-0.00019105555870540706" d="-1.1797498635843023e-05" /> - <width sOffset="659.07957301373426" a="3.7382244227258212" b="-0.0003117541259524185" c="0.00040025442707463472" d="-6.7096353536348955e-05" /> - <width sOffset="661.76629241132184" a="3.7389747825827926" b="0.00038599128226699409" c="-0.00014821379801291124" d="-6.8160267618776042e-05" /> - <width sOffset="667.17723862440675" a="3.7259257175155946" b="-0.0072048207447481518" c="0.00095094091672779323" d="-8.1750984167678907e-05" /> - <width sOffset="667.28652402652551" a="3.7251495864514279" b="-0.0069999019531667263" c="7.7221335752842126e-05" d="1.7442175297205991e-05" /> - <width sOffset="671.793054417554" a="3.6967689374294199" b="-0.005241211565455128" c="0.00031255238195342035" d="1.7263391613435799e-05" /> - <width sOffset="680.42263532146944" a="3.6859093305938071" b="0.0040099776204356192" c="-0.001215527759812336" d="-7.0232655808884168e-05" /> - <width sOffset="681.81981642378616" a="3.6889475888979089" b="0.00020204612016604622" c="-0.0015102893012813739" d="-6.9890151427855481e-05" /> - <width sOffset="681.8284502237708" a="3.6889492206979742" b="0.00017595141942275844" c="-1.1218631761270817e-06" d="1.2844754788829897e-07" /> - <width sOffset="691.84657843001821" a="3.6907284785142926" b="0.00019214758358676389" c="-7.0762648693258407e-07" d="1.1757354331074722e-07" /> - <width sOffset="699.15074274076437" a="3.6921400200121761" b="0.00020062827684915602" c="5.2258656769360156e-05" d="-6.4092986100076803e-07" /> - <width sOffset="701.68039603320074" a="3.6929715756270349" b="0.00045271663231315754" c="-7.9368055371390988e-05" d="3.3356929312021321e-06" /> - <width sOffset="701.87334043625037" a="3.6930559940495069" b="0.00042246192713099563" c="-7.9944711591048353e-05" d="2.8779660640498546e-06" /> - <width sOffset="711.90010244248253" a="3.6921557352155849" b="-0.0003126940548293434" c="5.0973509167059401e-06" d="2.854220759488858e-06" /> - <width sOffset="720.54691067512476" a="3.6916782940876329" b="0.00041566465302566875" c="1.6942789599351304e-05" d="-4.0223969215877222e-08" /> - <width sOffset="721.9268644487147" a="3.6922840500801657" b="0.00046219539372797328" c="1.4245676689601672e-05" d="-8.5857587451916435e-07" /> - <width sOffset="731.95362645494686" a="3.6974850885206676" b="0.00048891817341766594" c="-1.3494255459737008e-05" d="-7.8528312833159235e-07" /> - <width sOffset="739.70057793404351" a="3.7000977468393677" b="0.00013845258202063553" c="9.5384420662750713e-07" d="5.3652145163245278e-09" /> - <width sOffset="741.98038846117902" a="3.7004184137075651" b="0.00014288540783434674" c="2.9889003001441897e-06" d="-6.0149227115443729e-07" /> - <width sOffset="752.00715046741118" a="3.7015452492877237" b="2.1408589658007855e-05" c="-8.4875134654577388e-06" d="-8.7592359140999537e-07" /> - <width sOffset="755.36029072165582" a="3.7014885821438437" b="-6.505652740528868e-05" c="-3.2599915274376788e-05" d="1.1212243131394999e-06" /> - <width sOffset="762.03391247364334" a="3.6999357651091342" b="-0.00035036686855428878" c="-9.1859315044558616e-06" d="1.2123455422497797e-06" /> - <width sOffset="772.0606744798755" a="3.6967213085485047" b="-0.00016892421107959433" c="2.9023141784474162e-05" d="5.7658395469286193e-08" /> - <width sOffset="772.66641965003816" a="3.6966296457194012" b="-0.00013369948586029181" c="-1.7483615857547917e-05" d="3.2717944752116847e-06" /> - <width sOffset="773.09372393984324" a="3.6965695783092025" b="-0.00014684895335974595" c="-7.7695038447045793e-05" d="4.1539039245926558e-06" /> - <width sOffset="782.08743648610755" a="3.6919862067669795" b="-0.00053639383502615632" c="3.6567890468689722e-05" d="4.2652843348347008e-06" /> - <width sOffset="789.83724749020018" a="3.6920107856843938" b="0.00079890808177548751" c="0.00063188083186540732" d="-0.00014189671871907758" /> - <width sOffset="792.11419849233971" a="3.6954307783954752" b="0.0014694383567150056" c="-0.00033260479904768833" d="-0.00014296910598660475" /> - <width sOffset="793.67807358938842" a="3.6963685180817079" b="-0.00061984727702854374" c="-1.6211908090158304e-05" d="2.1579649628140763e-06" /> - <width sOffset="802.14096049857187" a="3.6912696931247346" b="-0.00043058307004539744" c="3.7101937760316979e-05" d="2.4746370167138002e-06" /> - <width sOffset="809.15247760519503" a="3.6909276317229498" b="0.00045466832638945337" c="1.2029112311992945e-05" d="9.4137808458203203e-07" /> - <width sOffset="812.16772250480403" a="3.6924337398406761" b="0.00055288595197118399" c="1.6693615099604891e-05" d="3.244916037802182e-07" /> - <width sOffset="822.19448451103619" a="3.6999828080522903" b="0.00098552098434703177" c="2.5772032122991641e-05" d="3.7460872716015146e-07" /> - <width sOffset="827.62917252131058" a="3.7061601370457411" b="0.0012988400355872034" c="2.6882428900124907e-05" d="-2.4483693436359375e-06" /> - <width sOffset="829.16043144557398" a="3.7082032394339501" b="0.0013639454832543388" c="-6.511878656585216e-05" d="2.4577378774920015e-07" /> - <width sOffset="832.22124651726836" a="3.7117750008755626" b="0.00097222001725394988" c="-6.3899936182166463e-05" d="1.0566090120858318e-07" /> - <width sOffset="842.24800852350052" a="3.7152054898955758" b="-0.00027733072812108567" c="-6.3332603637153415e-05" d="4.7343578127085009e-07" /> - <width sOffset="845.78225064422293" a="3.7134551569802259" b="-0.0007072553682461269" c="-9.4779961845985937e-05" d="5.7368248614999249e-06" /> - <width sOffset="849.76342923432071" a="3.7094992035590941" b="-0.0011891449910780556" c="-7.3258769046625057e-05" d="4.6862052825937993e-06" /> - <width sOffset="852.27477052973268" a="3.7061250466639315" b="-0.0014684351630791866" c="-4.1229950074518699e-05" d="4.1142318777615443e-06" /> - <width sOffset="862.30153253596484" a="3.6914036561873562" b="-0.0010543562477534172" c="8.0698527492199882e-05" d="4.7717611904184299e-06" /> - <width sOffset="863.60475895244804" a="3.6901772113881313" b="-0.00081970627752650711" c="0.00020710121078243714" d="-7.8484237535619286e-06" /> - <width sOffset="864.8577691941905" a="3.689459827142648" b="-0.00033767329325009926" c="0.00015462318327308887" d="-7.5333909886103148e-06" /> - <width sOffset="872.32829454219689" a="3.6924257302196928" b="0.00071127214696566987" c="-1.481359263848723e-05" d="-7.5338543308807983e-06" /> - <width sOffset="882.34774784929573" a="3.6904872525154664" b="-0.0018545344078535531" c="-8.4299342761896449e-05" d="3.7947840744238884e-06" /> - <width sOffset="882.35505654842905" a="3.6904736937799028" b="-0.0018557660368782247" c="-8.4262214799971823e-05" d="3.7628121378142647e-06" /> - <width sOffset="884.92898178912628" a="3.6852030111974416" b="-0.0022147483997785435" c="-3.9155030894697066e-05" d="1.1415297790265104e-06" /> - <width sOffset="892.38181855466121" a="3.6669945501675851" b="-0.0026081624602744984" c="-1.1897937010614881e-05" d="1.0689857807511756e-06" /> - <width sOffset="902.60770951474092" a="3.6402226884755464" b="-0.002516148645097473" c="-1.0602147865395659e-05" d="6.9589636701487148e-06" /> - <width sOffset="902.67886346908904" a="3.6400436033791874" b="-0.0025175517172823843" c="0.00026061511066190364" d="-1.0573009152431363e-05" /> - <width sOffset="912.43534256712553" a="3.6304695823105368" b="-0.00045147879528067199" c="-4.2064215454252769e-05" d="-1.0676212322494434e-05" /> - <width sOffset="918.49631186333363" a="3.6238108614499991" b="-0.0021379617828514064" c="-0.00033685463074171936" d="-1.3064808867167924e-05" /> - <width sOffset="919.66169841696342" a="3.6208411403486291" b="-0.0029763244599840481" c="-3.5391806052904701e-05" d="1.4383387443745954e-06" /> - <width sOffset="922.46210457335769" a="3.6122602588986323" b="-0.0031407077807176003" c="-1.719156628916603e-05" d="2.5164090236103465e-06" /> - <width sOffset="932.48886657958985" a="3.5815774252785442" b="-0.0027264905049939319" c="5.5816102631090782e-05" d="2.869185905605319e-06" /> - <width sOffset="939.18279335009925" a="3.5666881424498937" b="-0.0015935396083713012" c="7.6459033350469272e-05" d="1.2693387141526865e-08" /> - <width sOffset="942.51562858582201" a="3.5622268983485532" b="-0.0010834659010285953" c="7.3842850156906749e-05" d="-6.8168107596667543e-07" /> - <width sOffset="952.54239059205418" a="3.5580999364940054" b="0.00019174309108927162" c="5.3560834531602672e-05" d="-1.8712540964099835e-07" /> - <width sOffset="954.12047031496149" a="3.5585351714385407" b="0.00035939160970746488" c="0.0066183168465883471" d="-0.0014235747019172285" /> - <width sOffset="957.2153418206874" a="3.5808396208048108" b="0.00041909585748666812" c="-2.182633816817839e-05" d="-8.0943354176012382e-07" /> - <width sOffset="962.56915259828634" a="3.5823335521514466" b="0.00011578460379933135" c="-3.8850469839482271e-05" d="-9.0196640941516242e-07" /> - <width sOffset="972.59591460451838" a="3.578679400342871" b="-0.00093534439266563531" c="-7.0769742244132923e-05" d="-6.5122792115578775e-07" /> - <width sOffset="976.33588946295299" a="3.5741572828869872" b="-0.0014920254857310631" c="-0.00021976255456579761" d="1.3159035082310933e-05" /> - <width sOffset="982.62267661075055" a="3.5593611267034002" b="-0.0026949453187896711" c="2.8161181513815822e-05" d="1.2916207400751853e-05" /> - <width sOffset="990.73617352504334" a="3.5462480864176862" b="0.00031280254793095418" c="1.2068049728021428e-05" d="-6.0345095049101989e-07" /> - <width sOffset="990.94995388994357" a="3.5463155030992315" b="0.00031787963525452099" c="-1.1699079943181978e-05" d="-1.4791739695754734e-06" /> - <width sOffset="992.64943861698271" a="3.5468146842605588" b="0.00026529815461108166" c="-1.1007191412109495e-05" d="1.178528363919906e-06" /> - <width sOffset="1002.6762006232149" a="3.5495561628459882" b="0.00040001860570337833" c="2.6060399068026066e-05" d="1.1586665770953268e-06" /> - <width sOffset="1006.8413900846544" a="3.5517581593291991" b="0.00067741604025549904" c="0.00010992665978857479" d="-1.4073226908470834e-05" /> - <width sOffset="1010.6543644238536" a="3.5551591651166947" b="0.00090188873884508732" c="3.4785888394098432e-05" d="-1.7232839732529823e-06" /> - <width sOffset="1012.702962629447" a="3.5571379447342957" b="0.0010227167560663707" c="2.3773774998586957e-05" d="-1.6320927164345182e-06" /> - <width sOffset="1022.7297246356792" a="3.5681373702144681" b="0.0010072127176714691" c="-2.6927317723152097e-05" d="-1.5738830823484508e-06" /> - <width sOffset="1028.5884290370864" a="3.5727975647478667" b="0.00052962646902043452" c="0.00013848929171428263" d="-8.3166788361136314e-06" /> - <width sOffset="1029.7515106299054" a="3.573587820948541" b="0.00081802377977534843" c="0.00016302347336222617" d="-6.5079568249130578e-06" /> - <width sOffset="1032.7564866419114" a="3.5773414546769411" b="0.0016214888096892821" c="0.00010300788333546959" d="-6.7501654808300613e-06" /> - <width sOffset="1042.7832486481434" a="3.5971512280916116" b="0.0016512568456349892" c="-9.9309015428076101e-05" d="-6.853213083911017e-06" /> - <width sOffset="1047.1553720844922" a="3.6018996305856641" b="0.0003898672675922678" c="-6.9914390054484339e-05" d="1.9164195166939208e-06" /> - <width sOffset="1052.8100106543757" a="3.6022151823473902" b="-0.00021698176360959378" c="-3.8481686394677458e-05" d="2.1144852502287255e-06" /> - <width sOffset="1062.8367726606077" a="3.5983022717842559" b="-0.00035092979543540422" c="2.3070056871009585e-05" d="2.0133887005958006e-06" /> - <width sOffset="1066.9547513991831" a="3.5973889648330712" b="-5.8498168034305689e-05" c="0.00022584221094984076" d="-7.7794476609607684e-06" /> - <width sOffset="1072.86353466684" a="3.6033234220835073" b="0.0017955788210844282" c="8.8400539101670986e-05" d="-7.8279723809037677e-06" /> - <width sOffset="1081.5347414896059" a="3.6204363460303646" b="0.0015629058515084116" c="-0.00016871239063649996" d="-7.5920618846782726e-06" /> - <width sOffset="1082.1585276135625" a="3.6213437747304043" b="0.0013435625333224318" c="-6.9735977326016485e-05" d="5.2930996738395072e-07" /> - <width sOffset="1082.890296673072" a="3.6222898169964872" b="0.0012423515864023742" c="-6.63602394506308e-05" d="1.5401574416826259e-06" /> - <width sOffset="1092.9170586793043" a="3.6296275464201484" b="0.00037611853499941146" c="-2.0317559108423664e-05" d="1.6096753144973558e-06" /> - <width sOffset="1098.9472569114835" a="3.6315097685808571" b="0.00030667999123795307" c="-4.1234936316153413e-05" d="3.5525519371737901e-06" /> - <width sOffset="1099.0183955320665" a="3.6315313779735727" b="0.00030086713348794316" c="-2.1972196652258211e-06" d="-4.2827830628484751e-07" /> - <width sOffset="1102.9438206855364" a="3.6326526473574248" b="0.00026381911754752661" c="-7.4741593789904824e-06" d="-5.5918422489337161e-07" /> - <width sOffset="1112.9705826917684" a="3.633982791383001" b="-5.4718479474264153e-05" c="-2.2766026969142975e-05" d="-6.4817313490172264e-07" /> - <width sOffset="1118.5595706153617" a="3.6328526735742264" b="-0.00036993711560909205" c="-4.1921438124568655e-05" d="-4.9251854125334994e-06" /> - <width sOffset="1120.7349287708746" a="3.6317988471217948" b="-0.00062224603783145923" c="-0.00011257250870557127" d="4.3287128360126201e-06" /> - <width sOffset="1122.9973446980007" a="3.6298649899910558" b="-0.0010651478257849992" c="-7.7560826185120611e-05" d="5.2651487676608519e-06" /> - <width sOffset="1133.0241067042327" a="3.6166948881858092" b="-0.0010325054163913367" c="8.1688690501471005e-05" d="5.6144560519909338e-06" /> - <width sOffset="1134.7597493431124" a="3.6151782667362715" b="-0.0006982007728448163" c="-0.0001285053975528565" d="6.1983608968626525e-06" /> - <width sOffset="1136.2349175549127" a="3.6138885574605712" b="-0.0010368697732268629" c="-0.00013103122447430404" d="1.2028348303638739e-05" /> - <width sOffset="1143.050868710465" a="3.6045427369756142" b="-0.0011466648317910982" c="0.00011468628553278128" d="1.1974274860743219e-05" /> - <width sOffset="1151.6255384790916" a="3.6106919781697924" b="0.0034613535185218846" c="0.00071483329688315348" d="-0.00010135241248850565" /> - <width sOffset="1152.5189941895592" a="3.6142828834542042" b="0.0044959796258346833" c="0.0005812686724312394" d="-0.00012433087311586921" /> - <width sOffset="1153.0776307166971" a="3.6169542257928748" b="0.0050290138651473432" c="0.0003755258196041372" d="-0.00012394626451656763" /> - <width sOffset="1155.7040244754064" a="3.6305072530976608" b="0.0044366479625343926" c="-0.00040118442732036227" d="1.1757679917686459e-05" /> - <roadMark sOffset="0" color="standard" width="0.16803765159562165" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16803799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="409.33683597598588" color="standard" width="0.16803765159562165" weight="standard" type="solid"> - <type name="solid"> - <line length="257.94968805053963" space="0" width="0.16803799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="667.28652402652551" color="standard" width="0.16803765159562165" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16803799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="1050.3947359028189" max="100" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="2.9937811288879663" b="-2.7764582624423234e-09" c="-0.0055043830716700187" d="0.0007091805356025106" /> - <width sOffset="4.9571275961542609" a="2.9449080254365416" b="-0.0022915387717040193" c="-0.00041950629630705912" d="-1.0502657657027973e-05" /> - <width sOffset="8.7126934247653427" a="2.9298288478303895" b="-0.0058869029001047679" c="0.0029446478073003055" d="0.0001096194169005629" /> - <width sOffset="8.7346042472516068" a="2.9297012757777594" b="-0.0057577057096347625" c="0.00097726686131367215" d="-4.1325624314298285e-05" /> - <width sOffset="10.026762006232149" a="2.923803967292252" b="-0.0034391404677490585" c="0.00081769961761567732" d="-4.2154216307410517e-05" /> - <width sOffset="20.053524012464297" a="2.9290351750964598" b="0.00024457509971652705" c="-0.00045420285102773538" d="-3.9985609325457892e-05" /> - <width sOffset="22.576780707249679" a="2.9261180969851313" b="-0.0028113097226171047" c="0.0013433114811213444" d="-6.9165915036918503e-05" /> - <width sOffset="26.137581804134214" a="2.930017101468938" b="0.0041242931849777365" c="-0.0010027821799679674" d="-0.00013661863522575795" /> - <width sOffset="27.088659857403332" a="2.932915027498082" b="0.0018461099982707435" c="-3.5427611468823151e-05" d="1.2878623844364075e-05" /> - <width sOffset="30.080286018696448" a="2.9384656466575194" b="0.0019799220293179026" c="5.7548303372492856e-05" d="8.9048855172820052e-06" /> - <width sOffset="40.107048024928595" a="2.9730800981512626" b="0.0058197518573319812" c="0.00034384822109130228" d="1.3176152293927012e-06" /> - <width sOffset="40.508992024876484" a="2.9754749498219186" b="0.006096805933770072" c="0.0064511746794186199" d="-0.0010001286343657037" /> - <width sOffset="42.6365533705969" a="3.0080159501191868" b="0.019966047062163025" c="-0.00060207460571866617" d="-0.00087451038422596203" /> - <width sOffset="44.476610868978717" a="3.0372678368802308" b="0.008867561073738206" c="-0.00093989901822390709" d="8.9712332794085445e-05" /> - <width sOffset="47.158021339937434" a="3.0560171552311939" b="0.0057621357572999778" c="-0.0058961360679059861" d="0.00039864068839099673" /> - <width sOffset="50.133810031160742" a="3.0314566943153505" b="-0.018738903717542971" c="-0.0023240686027079134" d="0.00040486760440700648" /> - <width sOffset="56.132889299959245" a="2.9228108810576172" b="-0.00291116483194424" c="0.00067989603974133472" d="-0.00016422819539088987" /> - <width sOffset="58.224175408362811" a="2.9181942498182067" b="-0.0022221955409910165" c="0.00061289830777891885" d="-0.00012755663877714882" /> - <width sOffset="60.281374322502877" a="2.9151060443250421" b="-0.0013199729417890708" c="-0.00080431872485298085" d="-1.20071745369473e-06" /> - <width sOffset="60.730633340040967" a="2.914350587106334" b="-0.0020433948576291487" c="-0.0012898425221520978" d="3.4270365109804405e-05" /> - <width sOffset="66.122001300770975" a="2.8712127478842033" b="-0.012963031623441269" c="0.0043463125719084257" d="-0.00032928471464749147" /> - <width sOffset="70.187334043625043" a="2.8682211087680991" b="0.0060491854015728291" c="0.00032929315344126147" d="-0.00032999249577890408" /> - <width sOffset="72.509500502303979" a="2.879911797006665" b="0.0022401213409349377" c="0.0018501902409922453" d="-0.00017371955261710309" /> - <width sOffset="76.522026604980752" a="2.9074662537158931" b="0.0086971496227529234" c="-0.0018080889897984934" d="4.0010707634860232e-05" /> - <width sOffset="79.723548572694199" a="2.9180908644384456" b="-0.001649825217406" c="8.2760551689297192e-05" d="0.000247199666412743" /> - <width sOffset="80.698946435629907" a="2.9167897668472742" b="-0.0007828182640852166" c="-0.00028826008943751006" d="3.5534080054974047e-06" /> - <width sOffset="83.239019431268048" a="2.9129997405725052" b="-0.0021784421475629975" c="-0.0016300614088194769" d="0.00093104933215023601" /> - <width sOffset="84.765729871503567" a="2.909187632459715" b="-0.00064531129502022958" c="0.0044825368947548523" d="-0.00078209109129395065" /> - <width sOffset="88.84936070033379" a="2.9280439270756329" b="-0.0031618083023497237" c="-0.0038408355456909424" d="0.0013883422726589597" /> - <width sOffset="90.240858056089337" a="2.919948025128428" b="-0.0057862381157579561" c="0.001939174742100023" d="0.0013888164933773027" /> - <width sOffset="90.4299398479112" a="2.918932670537655" b="-0.0049039542608063785" c="0.00066281228062556319" d="-1.5847926648290726e-06" /> - <width sOffset="96.506993105379038" a="2.9132534452627343" b="0.0029763548780678841" c="0.00038121880163318898" d="-3.5783048893898951e-06" /> - <width sOffset="100.26762006232148" a="2.9296474136038846" b="0.0056917817359894568" c="0.00035694712114101045" d="-7.2370967124423863e-06" /> - <width sOffset="105.3182754489775" a="2.9665676371492342" b="0.0087435796343926109" c="-0.0024133340026593294" d="9.2039674466450739e-05" /> - <width sOffset="110.29438206855363" a="2.9616593317014726" b="-0.0084372759264782285" c="-0.0010409999395957058" d="0.00010765482212602093" /> - <width sOffset="111.97537236375493" a="2.9450461324563761" b="-0.011024487662036106" c="0.0061192075755971027" d="-0.00095701728144081174" /> - <width sOffset="115.32371998971735" a="2.9408111842030893" b="-0.0022346213616109174" c="0.0016458972862897323" d="1.108122061910538e-05" /> - <width sOffset="119.78332601555144" a="2.9645622269428484" b="0.013106638352908935" c="-0.0016776307509333524" d="6.1151341571498636e-05" /> - <width sOffset="120.32114407478579" a="2.9711354748436554" b="0.011355181882077715" c="-0.0015851227460200882" d="5.9697021858524493e-05" /> - <width sOffset="130.34790608101792" a="2.9858069392249384" b="-0.0024270236202082254" c="0.00012430960496774947" d="7.213907198574005e-05" /> - <width sOffset="134.586168030762" a="2.9832455770349653" b="0.0025141628114864773" c="0.0008746466855024445" d="-0.00034885455150582615" /> - <width sOffset="134.9859215552994" a="2.9843681080954156" b="0.0030462051155024277" c="0.002836445858566722" d="-0.00026361429007797896" /> - <width sOffset="140.37466808725009" a="3.0418989363394124" b="0.010651019463244446" c="-0.0014566980139327323" d="-0.00027483268683808307" /> - <width sOffset="141.55979480021796" a="3.052018304639855" b="0.0060402475981097565" c="-0.00012288463019457716" d="-4.1241073247433428e-05" /> - <width sOffset="148.61120279280061" a="3.0740408013664613" b="-0.0018445815428426056" c="-0.0032927768945612886" d="0.00035182643060033844" /> - <width sOffset="150.40143009348222" a="3.0622041277052201" b="-0.010251499590884804" c="-0.0013887317523598979" d="0.00034190066630742109" /> - <width sOffset="151.86761037256127" a="3.0452658570275521" b="-0.012118826005053655" c="0.00087289698176677667" d="0.00038075344706737271" /> - <width sOffset="152.98449195305412" a="3.0333499119122318" b="-0.0087440973890103683" c="0.0004387726155912514" d="-1.0295291105052958e-05" /> - <width sOffset="160.42819209971438" a="2.9883270338910974" b="-0.0039232590429985024" c="0.0002107463399931706" d="-1.0263856620677878e-05" /> - <width sOffset="168.41235888927361" a="2.9652135548460752" b="-0.0025208589052478879" c="-0.00049740822852651528" d="1.6644351790404382e-05" /> - <width sOffset="170.45495410594654" a="2.9581310212014928" b="-0.0043445357869931079" c="-0.0003956397197759799" d="1.5671008697291083e-05" /> - <width sOffset="180.48171611217867" a="2.8905905392451108" b="-0.0075520068697095821" c="7.4668152681714125e-05" d="1.6616571443761354e-05" /> - <width sOffset="182.95097501275259" a="2.8726481221751814" b="-0.006879311220326677" c="0.00087266705208588122" d="2.7872375983004096e-05" /> - <width sOffset="186.11158011105604" a="2.86050278187659" b="-0.00052771235857572766" c="0.01872172898157095" d="-0.0053387654427787768" /> - <width sOffset="188.16063670395843" a="2.892096475477353" b="0.008949503006552291" c="-0.00038263874848577003" d="2.0875790002926852e-06" /> - <width sOffset="190.50847811841084" a="2.9110262647594167" b="0.0071872752622101407" c="-0.00036866816928608445" d="3.6186871130591677e-06" /> - <width sOffset="200.53524012464297" a="2.9496747742516041" b="0.00088560378550794992" c="-0.00026142976165683659" d="2.7433466324938259e-06" /> - <width sOffset="204.41991020757089" a="2.9493307258330397" b="-0.0010213362147976478" c="1.0076983070494699e-05" d="1.7622848898449196e-06" /> - <width sOffset="210.56200213087513" a="2.943846084999691" b="-0.00069810055965647828" c="4.0673868307898051e-05" d="1.6770912877001994e-06" /> - <width sOffset="217.51609425600103" a="2.9415223917468367" b="0.00011090846653425574" c="0.00050241222111810022" d="-1.3203470357490104e-05" /> - <width sOffset="220.58876413710726" a="2.9462235687956975" b="0.0028244284840810915" c="0.00038140013093291647" d="-9.5612384120918811e-06" /> - <width sOffset="221.80090173264702" a="2.9501905191514548" b="0.0037069030205144704" c="-0.00039176791483486813" d="9.4487549579086241e-06" /> - <width sOffset="230.61552614333942" a="2.9588972667631417" b="-0.00099723418143512089" c="-0.00013952027223075215" d="9.4908902957749861e-06" /> - <width sOffset="240.10054032772359" a="2.9449852805334431" b="-0.0010823797995726464" c="0.00030003858170658771" d="3.6608250975703747e-05" /> - <width sOffset="240.64228814957158" a="2.9444927828055398" b="-0.00072505675946921882" c="0.00036516652854212521" d="3.5289964746789333e-05" /> - <width sOffset="243.75914936954425" a="2.9468489815996683" b="0.0025797973989266569" c="3.6861567850457098e-05" d="1.3478418306556054e-05" /> - <width sOffset="247.64391596336876" a="2.9582173794321012" b="0.0034764196443240925" c="0.000709753649613946" d="-0.00015879791154529179" /> - <width sOffset="250.66905015580372" a="2.9708330681592052" b="0.0034109325180154493" c="-0.00072637990281375201" d="-0.00015839030872607919" /> - <width sOffset="251.65798670980072" a="2.9733426765003581" b="0.0015095302107985681" c="3.6720991144019459e-06" d="-6.0642524263136651e-07" /> - <width sOffset="260.69581216203585" a="2.9868378110507825" b="0.0014273031868729648" c="-1.2107705537427673e-05" d="-7.5407279012430006e-07" /> - <width sOffset="270.72257416826801" a="2.9991716375042197" b="0.00095706673585021053" c="-3.1938812583193785e-05" d="-7.5452493737666144e-07" /> - <width sOffset="279.97265323934238" a="3.0046945826807461" b="0.00017251322112110776" c="-0.00027506785605328456" d="1.1175433795270239e-05" /> - <width sOffset="280.74933617450017" a="3.0046678757697309" b="-0.00023454351375305749" c="-0.00024422607137377446" d="1.1201615216364137e-05" /> - <width sOffset="290.77609818073233" a="2.9890544515505497" b="-0.0017536416058756923" c="9.4979962839641133e-05" d="1.1420483005316296e-05" /> - <width sOffset="296.63232152686714" a="2.9843358098566819" b="0.00053381459563177185" c="0.00017080945334242971" d="-5.2899706899568584e-06" /> - <width sOffset="300.80286018696444" a="2.9891493266621074" b="0.0016825178399911237" c="0.0001059775631012138" d="-5.5217494534695245e-06" /> - <width sOffset="310.8296221931966" a="3.0111078881423778" b="0.0021423383606725818" c="-6.0459823929943815e-05" d="-5.3466599589295414e-06" /> - <width sOffset="312.79037128404138" a="3.0150357320607513" b="0.001843578974994612" c="-0.00011610255531056815" d="-5.5006549414861466e-06" /> - <width sOffset="316.54384678546779" a="3.0200289597632786" b="0.00073951355678168783" c="-6.570504759799943e-05" d="-1.2946942052918952e-07" /> - <width sOffset="320.85638419942876" a="3.0219857745255507" b="0.00016557899600567582" c="-6.7704393146294993e-05" d="-9.3498927076984411e-08" /> - <width sOffset="330.88314620566092" a="3.0167450181955884" b="-0.0012203326898514652" c="-7.0633333313416458e-05" d="-2.9775175271424738e-07" /> - <width sOffset="333.81963630342739" a="3.0125449144775871" b="-0.0016428633744960148" c="-7.6634870286036445e-05" d="1.3856512552059993e-06" /> - <width sOffset="340.90990821189308" a="2.9975378857139203" b="-0.0025206093147903475" c="-4.8283287948132601e-05" d="1.4232297858956375e-06" /> - <width sOffset="350.93667021812519" a="2.9688448164134447" b="-0.0030596020862534629" c="-2.9773792558441864e-06" d="-9.6304875947283019e-07" /> - <width sOffset="352.17037931902831" a="2.9650638174226547" b="-0.0030713459168674679" c="0.0004456502798089975" d="-1.4122924800439124e-05" /> - <width sOffset="360.96343222435735" a="2.9629123981887382" b="0.0014900475059662958" c="7.5329662552366035e-05" d="-1.4631760945232067e-05" /> - <width sOffset="365.7128737348321" a="2.9701209573289846" b="0.0012154407189163413" c="-0.0028864342890609599" d="0.00048071346649936303" /> - <width sOffset="368.87711231845924" a="2.9602965416595222" b="-0.0026119978534829323" c="0.00046379785235254987" d="-4.5443561262842299e-05" /> - <width sOffset="370.22630379250381" a="2.9575051084006461" b="-0.0016086587850406733" c="0.00046642674334034992" d="-2.7941182893342089e-05" /> - <width sOffset="370.99019423058951" a="2.9565359878459132" b="-0.00094497436455783261" c="0.00040586546046086707" d="-2.63562634339083e-05" /> - <width sOffset="381.01695623682167" a="2.9612965928195214" b="-0.00075519805618597634" c="-0.00038092647470832112" d="-2.8106901641901879e-05" /> - <width sOffset="384.14440905081938" a="2.9543491435927125" b="-0.0039625947418138446" c="-0.0012337219913911631" d="0.00019572596201166439" /> - <width sOffset="388.50413623799659" a="2.929842770889401" b="-0.0035593574241207008" c="0.00075246113472335872" d="-2.8254770285199999e-05" /> - <width sOffset="390.30883033401608" a="2.9257038515118046" b="-0.0011195037349274618" c="0.00039604167448954096" d="-2.5447066356582178e-05" /> - <width sOffset="391.04371824305377" a="2.9250849285873444" b="-0.00057864010501461382" c="0.00034426266869215158" d="-2.2665233872696366e-05" /> - <width sOffset="399.04027781926641" a="2.9308820284313066" b="0.00057921101118987373" c="0.00086803876570521723" d="-0.0002767600379434519" /> - <width sOffset="401.07048024928594" a="2.9333198498527455" b="0.00068161610015927705" c="-0.0008174918589969936" d="-0.00027662518607030214" /> - <width sOffset="401.73852303557572" a="2.933327895727186" b="-0.00078098080870394639" c="-0.0014558323178629976" d="0.00019978437287373286" /> - <width sOffset="406.12874200168721" a="2.9187446641445636" b="-0.002011880579476156" c="0.00050154187999196481" d="-8.8264631449842915e-06" /> - <width sOffset="411.0972422555181" a="2.9200471085674815" b="0.0023182712674519072" c="0.00037586269810896509" d="-8.091803778177628e-06" /> - <width sOffset="411.22596957555913" a="2.9203517444708327" b="0.0024146366020039948" c="0.00076656784053160624" d="-6.9643583417671823e-05" /> - <width sOffset="417.59222825557947" a="2.948822949436301" b="0.0037071684170860942" c="-0.00060812259579357767" d="2.0764586979494158e-05" /> - <width sOffset="420.38398828072013" a="2.9548846244924052" b="0.00079721655123933272" c="-0.00067352243092654246" d="-5.1943319946866791e-05" /> - <width sOffset="420.83235564005395" a="2.9551019879400355" b="0.00016191859428643391" c="-0.00058941452199371379" d="5.2693829166917762e-05" /> - <width sOffset="428.39817938848137" a="2.9454086241926776" b="0.00029195716090351601" c="0.00024643587517299807" d="9.4489742845462422e-07" /> - <width sOffset="429.26139011333566" a="2.9458448799521415" b="0.00071952156385460958" c="-5.4949296351289759e-05" d="4.6659425112100126e-05" /> - <width sOffset="431.15076626798242" a="2.9473228705130055" b="0.001011568147448304" c="0.00020141543532966732" d="4.823505664767194e-05" /> - <width sOffset="434.91027168392247" a="2.9565356855945253" b="0.004571258635477366" c="0.00028787079027858586" d="-8.2757056862570456e-06" /> - <width sOffset="435.18945603049212" a="2.9578341671362942" b="0.0047300615501247338" c="0.0006233174626758839" d="-3.6519933390688458e-05" /> - <width sOffset="441.17752827421452" a="3.0006670632265546" b="0.0082665147823918206" c="-3.5554948223076642e-05" d="-3.723246629697608e-05" /> - <width sOffset="445.58263284160546" a="3.0332093217405127" b="0.0057857862310657544" c="7.3788512849437185e-05" d="-6.587902841044878e-06" /> - <width sOffset="448.89600792388069" a="3.0529502456725441" b="0.0060577892972288891" c="0.00028889035286807041" d="-1.9045263022624258e-05" /> - <width sOffset="451.20429028044668" a="3.0682383539293747" b="0.0070870412554088829" c="0.00016476698228315103" d="-1.6090581152939489e-05" /> - <width sOffset="459.67905774274959" a="3.1303393353384861" b="0.0064128070934105549" c="-0.00028876456056708478" d="2.0640211593443303e-05" /> - <width sOffset="461.23105228667885" a="3.1396735921639469" b="0.0056656324804642824" c="-0.00019293172469635257" d="1.9762351506797337e-05" /> - <width sOffset="470.54416001372101" a="3.1916677958356301" b="0.0072142465446853633" c="0.00067018009232675327" d="-7.233491714863944e-05" /> - <width sOffset="471.25781429291101" a="3.1971313068302969" b="0.0080602792788394082" c="0.00050788004321508716" d="-7.0104489654730992e-05" /> - <width sOffset="473.25651764520364" a="3.2147105550917354" b="0.0092503189491653821" c="-0.00029861158889887346" d="-7.2072498575773261e-05" /> - <width sOffset="477.76276746240308" a="3.2437361017343185" b="0.0021685075009949214" c="-0.0015459491931296069" d="0.00032475774081010272" /> - <width sOffset="479.41550146327302" a="3.2445633779251395" b="-0.00028032186802055218" c="-0.00095700362437291784" d="0.00043379394574130902" /> - <width sOffset="480.23995041391709" a="3.2439248704214281" b="-0.00097375298492386516" c="-0.00024920767506929559" d="4.0408535841260208e-05" /> - <width sOffset="481.28457629914317" a="3.2426817800009178" b="-0.001362123936540084" c="-0.00010325781705105631" d="5.3441837420475207e-05" /> - <width sOffset="486.66214074936181" a="3.2406815530069228" b="0.0021636500661874891" c="0.0010401863002217125" d="-0.0004207388298403949" /> - <width sOffset="487.81897086248534" a="3.2439252036247166" b="0.0028811190593032079" c="0.00011611096948965149" d="-0.00037754557190160969" /> - <width sOffset="489.55784265976558" a="3.2473011293101375" b="-0.00013980222592576037" c="-0.0021706945464477793" d="0.00044670533195023546" /> - <width sOffset="491.31133830537527" a="3.2427900867785882" b="-0.0036318914862339298" c="0.00017646448000381782" d="0.00044401054254533472" /> - <width sOffset="492.56987741847445" a="3.2393838172584521" b="-0.0010778841189170059" c="0.00054374207387049831" d="-2.9378349820289061e-05" /> - <width sOffset="495.62157421903225" a="3.2403232990991597" b="0.0014199989836722136" c="0.00064717176747795368" d="-4.5338592474998863e-05" /> - <width sOffset="499.29876333649361" a="3.2520414573050513" b="0.0043403777131913474" c="0.00016319570620688869" d="-9.4345907885540793e-06" /> - <width sOffset="501.33810031160743" a="3.2614916454826046" b="0.0048882873630784439" c="9.2901622949169215e-05" d="-1.5175752514525766e-05" /> - <width sOffset="503.29165397539748" a="3.271282581684531" b="0.0050775150276867438" c="-0.0002036237970626412" d="-2.2781403300502248e-05" /> - <width sOffset="504.39472923905589" a="3.2766051214862006" b="0.0045451307518717737" c="5.3510686298750517e-05" d="5.8937592547535917e-06" /> - <width sOffset="508.95059683779971" a="3.2989801207899316" b="0.0053996973117732012" c="0.00031639290107999033" d="-5.3628566525989453e-07" /> - <width sOffset="511.3648623178396" a="3.3138530292947697" b="0.0069180327211204942" c="0.00030691133947176688" d="1.0026845422018384e-06" /> - <width sOffset="514.09203579883285" a="3.335022687883427" b="0.0086144059774027112" c="0.00033337759932791481" d="-3.7028901956280543e-05" /> - <width sOffset="520.52664069971627" a="3.3943909861427821" b="0.0083052626988283154" c="-0.0005188947772194006" d="2.0090441802873412e-05" /> - <width sOffset="521.2658871998633" a="3.4002551703976032" b="0.007571017801473132" c="-0.00016618466766955931" d="9.7523902885997827e-06" /> - <width sOffset="527.88711419087349" a="3.4459298673592671" b="0.0066529782835812326" c="-1.0679163444026472e-05" d="4.6306351087605304e-05" /> - <width sOffset="529.48558299573847" a="3.4567262860394208" b="0.0069737900874088567" c="0.0001676349550080298" d="-2.5547542129034743e-05" /> - <width sOffset="531.41838633030386" a="3.4706470252798152" b="0.0073354848261223474" c="1.9044373710936941e-05" d="-2.1825593020607306e-05" /> - <width sOffset="536.15446040628308" a="3.5034970207350487" b="0.0060472057639673702" c="-3.3671056500114547e-05" d="7.886262710467274e-06" /> - <width sOffset="541.83340863353988" a="3.5381972407544948" b="0.0064277800246338897" c="0.00011967011853158259" d="1.3419960438992564e-05" /> - <width sOffset="542.28360907430476" a="3.5411165094753709" b="0.0065436909951839522" c="-0.00011246837145000839" d="9.6140882898587408e-06" /> - <width sOffset="549.32053979892714" a="3.5849448578096155" b="0.0063890493543061425" c="8.9413769210166299e-05" d="9.6866086891071423e-06" /> - <width sOffset="549.34693313374714" a="3.5851135485928598" b="0.0063937894527619187" c="-0.00039056446413437686" d="2.5945700873882301e-05" /> - <width sOffset="551.47191034276818" a="3.5971855598638198" b="0.0050853839100212204" c="-0.0002206398750774191" d="2.5192213325477395e-05" /> - <width sOffset="556.76845063646829" a="3.6216740165822121" b="0.0048683050405296246" c="0.00024212887804036352" d="1.3253056268683696e-05" /> - <width sOffset="561.49867234900034" a="3.6515224980468042" b="0.0080485628934422321" c="0.00043070868137694106" d="1.2916920842960501e-05" /> - <width sOffset="561.75736076911846" a="3.6536336145704729" b="0.0082739947794429804" c="0.00054675425807080495" d="1.4513068380986181e-05" /> - <width sOffset="565.73018501256047" a="3.6960443791847553" b="0.013305505673000186" c="0.00015528759270749926" d="-1.0790100356434641e-05" /> - <width sOffset="565.94306970271589" a="3.6988838511522055" b="0.013370155356551977" c="0.0002166925784099465" d="-4.118198653490587e-06" /> - <width sOffset="571.85515994398247" a="3.7846524291479264" b="0.015500539655051044" c="0.0032895965537812059" d="-0.00038912985478746319" /> - <width sOffset="572.51020239036438" a="3.796108071472712" b="0.019309286181078265" c="0.0047812264485418907" d="-0.00074326269531879859" /> - <width sOffset="576.21767351091955" a="3.8955392775398501" b="0.024112604064968759" c="-0.0017475979017303267" d="-0.00036503988390108075" /> - <width sOffset="578.7319810167412" a="3.9393156780742316" b="0.0084015428687406763" c="-0.00092628681257677292" d="1.8372916378633562e-05" /> - <width sOffset="581.55219636146467" a="3.956054631043068" b="0.0036152795911976836" c="-0.00075786053391867485" d="2.2820508291095999e-05" /> - <width sOffset="584.70040997719593" a="3.9606370211752067" b="-0.00047799489431594663" c="-0.00041489075968884493" d="2.6221152228428388e-05" /> - <width sOffset="591.57895836769683" a="3.9462525853492769" b="-0.0024637707744416173" c="0.00012720201963305661" d="2.6307377212365101e-05" /> - <width sOffset="596.30066752878315" a="3.9402246199391007" b="0.00049698352399704139" c="-1.0095512652441159e-05" d="-4.5754080524616425e-06" /> - <width sOffset="601.60572037392888" a="3.9418938967654" b="3.5639019863049209e-06" c="-8.2651209184673413e-05" d="-4.6667519275043223e-06" /> - <width sOffset="605.06633477399316" a="3.9407230034435616" b="-0.00073614901896493137" c="-6.2478501077265936e-05" d="-1.3263195520653326e-06" /> - <width sOffset="605.50633588358392" a="3.9403868881775219" b="-0.00079190056883757937" c="-0.00022618229918622978" d="2.2343235020080429e-05" /> - <width sOffset="611.63248238016104" a="3.9321840257321234" b="-0.0010475495970640233" c="0.00017330017604550303" d="2.7497324274407871e-05" /> - <width sOffset="613.30054561141583" a="3.9310464659422171" b="-0.00023986974606270573" c="0.00025890554119885692" d="-3.0721666586080021e-05" /> - <width sOffset="617.87863353568548" a="3.9324268994696996" b="0.00019903891379525768" c="0.00014012332418955007" d="-1.6477232347354025e-05" /> - <width sOffset="621.6592443863932" a="3.9342918040613322" b="0.00055201427794514518" c="-5.2573964416111668e-05" d="-1.8629795686660068e-05" /> - <width sOffset="627.6516880633269" a="3.9317029684504563" b="-0.0020850320694860746" c="-0.00046493906959957593" d="7.1978679570839618e-05" /> - <width sOffset="631.31632112138141" a="3.9213605570224219" b="-0.0025927735514943346" c="0.00014371725054358687" d="-3.2927276079032663e-06" /> - <width sOffset="631.68600639262536" a="3.9204215219016767" b="-0.0024878632735814612" c="0.00013775814795129513" d="-3.2713831045006056e-06" /> - <width sOffset="641.71276839885752" a="3.9060282380107716" b="-0.0007120018325222203" c="4.2725714117080487e-05" d="-3.1465773138398432e-06" /> - <width sOffset="651.73953040508968" a="3.9000127280182131" b="-0.00080423317676119857" c="-5.4728094145783531e-05" d="-2.2449689585924e-06" /> - <width sOffset="654.8891179481376" a="3.896866686999843" b="-0.0012157846380235415" c="-3.9486599411219479e-05" d="2.5706710995875631e-06" /> - <width sOffset="659.07957301373426" a="3.8912677751655913" b="-0.001411295991428789" c="-0.00061902892023857977" d="5.7869526002287168e-05" /> - <width sOffset="661.76629241132184" a="3.8841299030577967" b="-0.0034844232360929624" c="-0.00015573880536416896" d="5.8426226048310305e-05" /> - <width sOffset="667.17723862440675" a="3.8699721910390927" b="-3.7943289989458688e-05" c="-0.001412904646570101" d="7.2016943864661826e-05" /> - <width sOffset="667.30016511172983" a="3.8699463102866503" b="-0.00038204537310294504" c="0.003988675192964683" d="-0.00051422155016316268" /> - <width sOffset="671.793054417554" a="3.902108777913694" b="0.0043189944409813014" c="-0.0029418008453469956" d="-0.00051503054417478974" /> - <width sOffset="673.5767317539927" a="3.8975304327424269" b="-0.011091169059273077" c="-0.028136756492961025" d="0.03652321751734277" /> - <width sOffset="674.06138239795996" a="3.8897038750503565" b="-0.012627758926260791" c="6.3996551809822447e-05" d="6.0451936853091484e-05" /> - <width sOffset="681.81981642378616" a="3.8238158053055176" b="-0.0007183284303608256" c="0.0014658500147322058" d="6.3043193755908113e-05" /> - <width sOffset="681.8284502237708" a="3.8238097127102284" b="-0.00069300262040528624" c="-4.3494757481562454e-05" d="-6.9754143043137736e-06" /> - <width sOffset="683.46113122967517" a="3.8225319607524844" b="-0.00089081073143163349" c="-8.2549157840569037e-05" d="5.6593864125641839e-06" /> - <width sOffset="691.84657843001821" a="3.8125945477410976" b="-0.0010814023687264254" c="5.3558226453097733e-05" d="5.8481513148740012e-06" /> - <width sOffset="696.91319469922951" a="3.809250997319011" b="-8.8307738939932687e-05" c="0.0010688175244241097" d="-0.00011542561059899431" /> - <width sOffset="699.15074274076437" a="3.8131115072140238" b="0.0029610764377639913" c="0.00024361652378854172" d="-0.00011466710719468761" /> - <width sOffset="701.63491588320278" a="3.8202128590077908" b="0.0020485755596607708" c="-5.5335223742269881e-05" d="-8.176163710220813e-07" /> - <width sOffset="701.87334043625037" a="3.8206981330374572" b="0.0020220495723708366" c="-5.3412577117448763e-05" d="-3.5988943792367963e-07" /> - <width sOffset="711.90010244248253" a="3.8352400717574122" b="0.00084239368813380892" c="-6.7536702156730395e-05" d="3.0295565257260164e-08" /> - <width sOffset="715.55749266515522" a="3.8374191114334897" b="0.00034959328603620041" c="-8.6421880597040143e-05" d="2.1369429833768394e-06" /> - <width sOffset="721.9268644487147" a="3.8366919433006466" b="-0.00049123263064594397" c="-4.701439788524982e-05" d="2.0721558752975969e-06" /> - <width sOffset="731.95362645494686" a="3.8291286701230085" b="-0.00080905846980827158" c="1.2843180905097343e-05" d="2.2172925241763674e-06" /> - <width sOffset="739.19747686652579" a="3.8247847099245851" b="-0.00027394388225990968" c="-6.3089094761671375e-05" d="6.189695397094713e-06" /> - <width sOffset="739.70057793404351" a="3.824631708138436" b="-0.00033272422999808043" c="-8.6445718220134248e-05" d="5.3990470557472029e-06" /> - <width sOffset="741.98038846117902" a="3.8234878306543614" b="-0.0006426987218893091" c="-4.7861473811945273e-05" d="4.7056697669099136e-06" /> - <width sOffset="752.00715046741118" a="3.8169753954001542" b="-0.00018322290568606719" c="0.00010138195744519716" d="4.4337272797457015e-06" /> - <width sOffset="757.36395940618274" a="3.8195846351998668" b="0.0012846274060973072" c="0.00026801087323798827" d="-2.6230889818032914e-05" /> - <width sOffset="762.03391247364334" a="3.8287572180884739" b="0.0020716577411727705" c="-9.8734712596810939e-05" d="-2.5908628379360881e-05" /> - <width sOffset="764.08078610183975" a="3.8323617852635037" b="0.0013418152904299701" c="-0.00023472782488435017" d="8.9587133261451558e-06" /> - <width sOffset="772.0606744798755" a="3.8326745325461813" b="-0.00069295292802664418" c="-1.7644311735661626e-05" d="8.7409257976460963e-06" /> - <width sOffset="772.66641965003816" a="3.8322502482752858" b="-0.00070470699067642136" c="4.4851545543211545e-05" d="5.5267897255279278e-06" /> - <width sOffset="781.45828743592062" a="3.8332773652357912" b="0.0013655625137066266" c="0.00019113711452518301" d="-2.4953291157332381e-05" /> - <width sOffset="782.08743648610755" a="3.8342059508704183" b="0.0015764383083521978" c="0.00014285948370584497" d="-2.5008224562936096e-05" /> - <width sOffset="788.29373233267734" a="3.8435141349529696" b="0.0004598862551353786" c="-0.00020665341486949407" d="6.3039220683130929e-07" /> - <width sOffset="789.83724749020018" a="3.8437339553555248" b="-0.00017355348825838501" c="-0.00069988185406523213" d="0.00014679239526074547" /> - <width sOffset="792.11419849233971" a="3.8414431055190503" b="-0.0010776087632426647" c="0.00030402827000646534" d="0.00014756398055112448" /> - <width sOffset="793.67807358938842" a="3.8410658229807639" b="0.00095600975373565165" c="9.1928087656014288e-06" d="2.4369096016924608e-06" /> - <width sOffset="797.19259551196853" a="3.8446450769794951" b="0.0011109275400672006" c="-1.5639527517284653e-05" d="2.5120703098707302e-08" /> - <width sOffset="802.14096049857187" a="3.8497624413138842" b="0.00095799269974509082" c="-1.4994423006826601e-05" d="5.1624212618109051e-07" /> - <width sOffset="812.16772250480403" a="3.8583809253919648" b="0.00081300436548441789" c="1.8593643707520099e-06" d="5.9318321987634103e-07" /> - <width sOffset="812.50109060765601" a="3.8586521837306615" b="0.00081444184000420091" c="-4.2564475471877237e-05" d="-1.2995859122182062e-07" /> - <width sOffset="822.19448451103619" a="3.8624290834040922" b="-4.7380076827353477e-05" c="-4.6631420584436969e-05" d="-1.5316928784349229e-07" /> - <width sOffset="827.62917252131058" a="3.8607697031477115" b="-0.00056780646940498495" c="-4.4131454564148741e-05" d="2.6698087830316134e-06" /> - <width sOffset="832.22124651726836" a="3.8574902150318753" b="-0.0008042203557688583" c="-6.8365482184622325e-06" d="2.7204413139928747e-06" /> - <width sOffset="833.08903686587576" a="3.856788949841091" b="-0.00080993976955542283" c="-2.2951873132604057e-05" d="2.0147065531628848e-06" /> - <width sOffset="842.24800852350052" a="3.8489933083675183" b="-0.00072334925425879075" c="3.0030673390819308e-05" d="2.190584241437062e-06" /> - <width sOffset="845.78225064422293" a="3.8469086311067637" b="-0.00042899102098252592" c="8.9723906924307498e-05" d="-3.0728048392000085e-06" /> - <width sOffset="847.245664788353" a="3.8464633603580278" b="-0.00018612653304904208" c="3.684459861098078e-05" d="-2.2162562657259432e-06" /> - <width sOffset="852.27477052973268" a="3.8461772822297742" b="1.630420593047425e-05" c="1.386579109189283e-07" d="-2.621030688773554e-06" /> - <width sOffset="862.30153253596484" a="3.8437125704612654" b="-0.00077143869491781117" c="-7.8266720978974343e-05" d="-3.1938645725377878e-06" /> - <width sOffset="863.60475895244804" a="3.8425672137522024" b="-0.00099171058161693021" c="-0.00019850033460466887" d="9.4263203716420969e-06" /> - <width sOffset="872.32829454219689" a="3.8250678742446116" b="-0.0023029290381601274" c="4.5230679911446885e-05" d="1.0421085361427014e-05" /> - <width sOffset="874.24784015001205" a="3.8208876633098265" b="-0.0020140900087447355" c="0.00021266477590123052" d="2.1911964673925052e-06" /> - <width sOffset="882.34774784929573" a="3.8196907899316441" b="0.0018623234740640618" c="0.00010894073951665388" d="-9.1409289581369977e-06" /> - <width sOffset="882.35505654842905" a="3.81970440690933" b="0.0018639144392830923" c="0.00010844804924458205" d="-9.2148878659172249e-06" /> - <width sOffset="892.38181855466121" a="3.8400072930339446" b="0.0012593973067041974" c="-0.00016564769989114197" d="-9.7962432247944555e-06" /> - <width sOffset="896.19976164873788" a="3.841855815162031" b="-0.00043386006336624226" c="-0.00010040882587843874" d="3.152506170465944e-06" /> - <width sOffset="902.40858056089337" a="3.8360458945037408" b="-0.0013161185280586771" c="3.8313438248148895e-06" d="-2.1582130742275145e-05" /> - <width sOffset="902.67886346908904" a="3.8356900239132261" b="-0.0013187773430673637" c="-0.00028340028459394298" d="-4.0501584811026751e-06" /> - <width sOffset="903.47972287072298" a="3.8344500222291527" b="-0.001780497928433711" c="-0.00013177017321369441" d="1.0793829532876949e-05" /> - <width sOffset="912.43534256712553" a="3.8156890500233835" b="-0.0015435684955685041" c="0.00016402858852986558" d="1.1067738563868057e-05" /> - <width sOffset="919.66169841696342" a="3.8172768262667125" b="0.0025609685955114677" c="5.6827358048752522e-05" d="-3.435409047965577e-06" /> - <width sOffset="922.39590372254679" a="3.8246336528431475" b="0.0027946758197696323" c="0.0005826160879423679" d="-5.1083326688807793e-05" /> - <width sOffset="922.46210457335769" a="3.8248212012850957" b="0.0028711435550906944" c="0.00056827176602685086" d="-5.1914827200728899e-05" /> - <width sOffset="931.89810338521079" a="3.8588942066856546" b="-0.00027162163898312172" c="-0.0015969666993528658" d="0.00022302544996758496" /> - <width sOffset="932.48886657958985" a="3.8582223821271042" b="-0.0019249715194549187" c="-0.0012004290196446674" d="0.0002228674415320438" /> - <width sOffset="936.69097448542834" a="3.8454732919937844" b="-0.0002076495442467721" c="0.0064056762421698683" d="-0.0013110324386056676" /> - <width sOffset="939.12282801590959" a="3.8639959589269579" b="0.0076876934098203866" c="0.0039807883784440477" d="-0.0019822044180864435" /> - <width sOffset="941.12760676399034" a="3.879435843830219" b="-0.00025136498993446536" c="-0.00021601078478577086" d="1.3555955116816271e-05" /> - <width sOffset="942.51562858582201" a="3.8787070272897011" b="-0.00077266946044765843" c="-0.00016934982376949368" d="7.2314754193514696e-06" /> - <width sOffset="952.54239059205418" a="3.8612235975849809" b="-0.0019876603270397599" c="4.850211435178379e-05" d="7.2841289027092167e-06" /> - <width sOffset="954.12047031496149" a="3.8582363239182502" b="-0.0017801601438632952" c="-0.0064826549857876416" d="0.0014306717054103353" /> - <width sOffset="957.0143481497023" a="3.8334677099358712" b="-0.003356578564876353" c="0.0086108883455272879" d="0.0011397692160513354" /> - <width sOffset="957.2153418206874" a="3.8331501802169368" b="0.00024302430194976608" c="0.0027209483829963173" d="-0.0002829960523330907" /> - <width sOffset="962.56915259828634" a="3.869014658379736" b="0.0050431162415225132" c="-0.0018214235631169844" d="-0.00028287918475647345" /> - <width sOffset="962.94077615970718" a="3.8706227350571174" b="0.0035721481173748059" c="-0.00086525658796440482" d="9.1753402269760431e-05" /> - <width sOffset="967.7718825265124" a="3.8780311795652658" b="0.0016363149152484439" c="4.1533374433424909e-05" d="-2.1115015282997316e-06" /> - <width sOffset="972.59591460451838" a="3.8866543100437765" b="0.0018896195117665904" c="1.0002735581708029e-06" d="-2.6408281390595378e-06" /> - <width sOffset="979.24453123946023" a="3.8984857527741354" b="0.001552714064154337" c="0.00010868402367176536" d="-1.3975281682913844e-05" /> - <width sOffset="982.62267661075055" a="3.9044325738487111" b="0.0018085627952515227" c="-3.3957505060245823e-05" d="-1.4916385905893127e-05" /> - <width sOffset="988.76477396131827" a="3.9108035654688651" b="-0.00029675588697623638" c="-0.00077447168371228036" d="7.4047885508331284e-05" /> - <width sOffset="990.94995388994357" a="3.9072296242119653" b="-0.0026207373693725605" c="-0.00026566771238594101" d="7.4923608635099677e-05" /> - <width sOffset="992.64943861698271" a="3.9023761718262207" b="-0.0028745398444827118" c="0.00012402403253432384" d="7.2593365420883034e-05" /> - <width sOffset="995.64331430517791" a="3.8968298620203186" b="-0.00017988825757339846" c="2.6596189199131291e-05" d="-1.8887533871239809e-06" /> - <width sOffset="1002.6762006232149" a="3.8962231993449392" b="-8.6053977407972752e-05" c="-1.1684047490044575e-05" d="-1.6473165703239072e-06" /> - <width sOffset="1006.8413900846544" a="3.8955430271549467" b="-0.00026912343355842697" c="-0.00010165626761709426" d="1.3584576915244346e-05" /> - <width sOffset="1010.6543644238536" a="3.8937919831704995" b="-0.00045183966033847574" c="-3.210512587709002e-05" d="1.234633979881015e-06" /> - <width sOffset="1012.702962629447" a="3.8927422226392974" b="-0.0005678362993294209" c="-2.5682807644632585e-05" d="1.4924809192748633e-06" /> - <width sOffset="1016.644511174979" a="3.8901964574719239" b="-0.00070073568826327273" c="4.0772068649453608e-06" d="1.5899811786454422e-06" /> - <width sOffset="1022.7297246356792" a="3.8864415868948763" b="-0.00047448417587109612" c="3.0900314074662476e-05" d="1.3821275215942879e-06" /> - <width sOffset="1029.7515106299054" a="3.8851119251774513" b="0.00016390598590488486" c="6.4622152445829945e-06" d="-4.2659448926905513e-07" /> - <width sOffset="1032.7564866419114" a="3.8856512363066069" b="0.00019118729728860551" c="2.0331974665316404e-06" d="-2.4014653571515777e-07" /> - <width sOffset="1038.2464506349065" a="3.8867223915947187" b="0.00019179782207902969" c="-4.5527819983680334e-05" d="1.2057451668732707e-06" /> - <width sOffset="1042.7832486481434" a="3.8867680526174828" b="-0.00014685134373593732" c="-2.7719454751582511e-05" d="9.890574937689787e-07" /> - <width sOffset="1048.6492342216427" a="3.8851524428240718" b="-0.00036995541476424215" c="-3.0769225077113499e-05" d="8.1696405098352151e-08" /> - <width sOffset="1052.8100106543757" a="3.8830863470902419" b="-0.00062176014854456051" c="-2.9877174780038243e-05" d="5.5566909028066705e-07" /> - <width sOffset="1062.8367726606077" a="3.8744085180029035" b="-0.00105330862023845" c="-1.5277107297667055e-05" d="4.2779933189480636e-07" /> - <width sOffset="1072.86353466684" a="3.8627425877189077" b="-0.0012306408134258617" c="-1.5401851749698323e-06" d="2.775129271523082e-07" /> - <width sOffset="1078.0072727495419" a="3.8564095110496748" b="-0.0012244580861054523" c="-2.3130886552383267e-05" d="3.6515764107316108e-07" /> - <width sOffset="1081.5347414896059" a="3.8518184826323623" b="-0.0013740140358870928" c="3.4212387126741027e-05" d="1.2924714309232154e-07" /> - <width sOffset="1082.890296673072" a="3.8500191190048683" b="-0.0012805479920164151" c="3.4877604803690675e-05" d="-6.3597492919573612e-07" /> - <width sOffset="1092.9170586793043" a="3.8400447278092429" b="-0.00077294414971351222" c="1.5822067839380931e-05" d="-6.2346616457320659e-07" /> - <width sOffset="1099.0183955320665" a="3.8357761243721655" b="-0.0006495006552749618" c="-3.3869409195802863e-05" d="3.3573638964540572e-06" /> - <width sOffset="1102.9438206855364" a="3.8329077416638726" b="-0.00076020383235137629" c="6.1764174675598852e-06" d="3.2026018419645641e-06" /> - <width sOffset="1105.6501205294148" a="3.830959117685202" b="-0.00065640522405252446" c="8.4785099969851945e-05" d="-2.8194555259672466e-06" /> - <width sOffset="1112.9705826917684" a="3.82959142564621" b="0.00013165019554867239" c="2.5549539564331117e-05" d="-3.0131757447647165e-06" /> - <width sOffset="1117.8755322013603" a="3.8304962751290108" b="0.00016481086429618588" c="-3.0478034095262843e-06" d="8.6978480298118222e-06" /> - <width sOffset="1120.7349287708746" a="3.8311459611538732" b="0.00036072580474372229" c="0.00011007293086285345" d="-5.5605021877727058e-07" /> - <width sOffset="1122.9973446980007" a="3.8325190449075137" b="0.0008502488363853599" c="0.00011338427247984745" d="-2.255910882845411e-06" /> - <width sOffset="1127.0135448196359" a="3.8376165475961979" b="0.0016518340909728322" c="3.7729938325598784e-06" d="-5.6449947840308539e-06" /> - <width sOffset="1133.0241067042327" a="3.8464555356534982" b="0.0010853820067792293" c="-9.4966675876648714e-05" d="-5.4082222920478854e-06" /> - <width sOffset="1134.7597493431124" a="3.8480250109322642" b="0.00070684949807433596" c="0.00011630125649948281" d="-5.9921271370011099e-06" /> - <width sOffset="1143.050868710465" a="3.858465207821367" b="0.0013996404165900755" c="-3.2782836135698092e-05" d="-6.1206150017889883e-06" /> - <width sOffset="1144.8561227294983" a="3.8608490680306224" b="0.0012214375339838941" c="7.7750816694081956e-05" d="-2.811393893381836e-05" /> - <width sOffset="1151.6255384790916" a="3.8639592366856172" b="-0.0015908701368705178" c="-0.00078531465971380405" d="8.5212748416170207e-05" /> - <width sOffset="1153.0776307166971" a="3.8602541619841677" b="-0.003332537167830964" c="-0.0004167287968447602" d="8.4828139819307169e-05" /> - <width sOffset="1153.8284820225281" a="3.8575528885764014" b="-0.0038148672539293242" c="-0.00011746926114963377" d="0.00011427029134125634" /> - <width sOffset="1155.7040244754064" a="3.8507386267277357" b="-0.0030496125011595697" c="0.00032560224668951206" d="-2.1433653093053104e-05" /> - <width sOffset="1161.5521406333032" a="3.839752977998935" b="-0.0014404155340647894" c="-0.00012905341786629746" d="-2.4050264622452099e-05" /> - <roadMark sOffset="0" color="standard" width="0.16109079863826911" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16109100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="411.22596957555913" color="standard" width="0.16109079863826911" weight="standard" type="solid"> - <type name="solid"> - <line length="255.95126904884762" space="0" width="0.16109100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="667.17723862440675" color="standard" width="0.16109079863826911" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16109100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="1049.0924972572845" max="100" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="47.158021339937434" color="standard" width="0.16677984138680607" weight="standard" type="solid"> - <type name="solid"> - <line length="531.57395967680372" space="0" width="0.16678000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="578.7319810167412" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="88.568184094988624" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="667.30016511172983" color="standard" width="0.16677984138680607" weight="standard" type="solid"> - <type name="solid"> - <line length="495.80422761119951" space="0" width="0.16678000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929956709256444" b="0.0017373860741385094" c="-0.00040952840643827901" d="2.4068523157414552e-05" /> - <width sOffset="8.4487708896537228" a="2.4929570364361968" b="-2.8478851693523183e-05" c="0.0030125925280057777" d="0.00013793395249698921" /> - <width sOffset="8.7126934247653427" a="2.4931618983888928" b="0.0015905266744519371" c="-0.00036068020851673919" d="1.7811884665777493e-05" /> - <width sOffset="10.026762006232149" a="2.4946695624968696" b="0.00073488103203628655" c="-0.00028992654291318666" d="1.7384847840387003e-05" /> - <width sOffset="20.053524012464297" a="2.4904147951797873" b="0.00016423905171033051" c="0.00023053219316433986" d="1.8033422272011949e-05" /> - <width sOffset="22.576780707249679" a="2.4925866797590421" b="0.0016720697472255835" c="-0.0017331551478304177" d="4.721372798709477e-05" /> - <width sOffset="23.075199960311156" a="2.4929953639935762" b="-2.0419290168176632e-05" c="-0.00066952519758414265" d="0.00015149711570808507" /> - <width sOffset="27.088659857403332" a="2.4919228172524264" b="0.0019262387963844656" c="-0.00020260192771762186" d="1.999856636503046e-06" /> - <width sOffset="30.080286018696448" a="2.4959256966428569" b="0.00076771545510514929" c="-0.00017844843324776687" d="6.507133237414771e-06" /> - <width sOffset="40.107048024928595" a="2.4922424292650653" b="-0.0008482018970523697" c="1.4919171361756447e-05" d="1.0360739312185374e-05" /> - <width sOffset="42.6365533705969" a="2.4903600431059791" b="-0.00057384927049728557" c="0.00076328602325095711" d="-0.00011525751082739288" /> - <width sOffset="46.63566622876462" a="2.4929007411457915" b="1.1778319680966209e-06" c="-0.0043104759854947789" d="0.00016435874933805927" /> - <width sOffset="47.158021339937434" a="2.4917486476425772" b="-0.0043674822415611624" c="0.0016249887281354772" d="-0.00014456960624191999" /> - <width sOffset="50.133810031160742" a="2.4893321017595271" b="0.0014631342651060669" c="0.00033737486526001933" d="-0.00013978835203637944" /> - <width sOffset="53.160198763325376" a="2.4929753781295556" b="-0.00033578736249156166" c="0.0022398342626655005" d="-0.00063168873989492532" /> - <width sOffset="56.132889299959245" a="2.4951763090344672" b="-0.0037656090113821865" c="0.0008889227592831046" d="-6.2592940097010478e-05" /> - <width sOffset="60.160572037392896" a="2.4903402416987186" b="0.00034879781340777438" c="9.5758694064451352e-05" d="-5.9392600696261927e-05" /> - <width sOffset="60.281374322502877" a="2.4903836699939559" b="0.00036933336864047807" c="0.00070422330481177144" d="-0.00018574852140740617" /> - <width sOffset="63.03892387500661" a="2.4928622037819324" b="1.5855096131668547e-05" c="-0.00095791563143704809" d="0.00032236703109509324" /> - <width sOffset="66.122001300770975" a="2.4932529646910258" b="0.0033018492283299217" c="-0.0030581307309910095" d="0.0006859221108524256" /> - <width sOffset="68.379861691555917" a="2.49301318515273" b="-1.7459253338882041e-05" c="-0.0011797606793356097" d="0.00028184595167376613" /> - <width sOffset="70.187334043625043" a="2.490791682962687" b="-0.0015198936479513918" c="0.00034754078421482407" d="0.00028085328431153147" /> - <width sOffset="72.509500502303979" a="2.4926532318682604" b="0.0046376692852600696" c="-0.0015156845893625019" d="0.00012458034114973433" /> - <width sOffset="78.536262011443796" a="2.4928219133321301" b="-5.670280588553761e-05" c="-0.00040662358566707023" d="0.00033820559763187243" /> - <width sOffset="79.723548572694199" a="2.4927474345919265" b="0.00040799368816318501" c="-0.00070854676582077821" d="0.00013101663885391776" /> - <width sOffset="80.21409604985719" a="2.4927925381210132" b="-0.00019257568377361797" c="-0.00045815370595036445" d="0.00013687455437874982" /> - <width sOffset="83.239019431268048" a="2.491806318514203" b="0.00079293741980057154" c="0.0021528304801651226" d="-0.00079062136976596256" /> - <width sOffset="84.765729871503567" a="2.4952213720699037" b="0.0018379879097184595" c="-0.003316589314589267" d="0.00092251905367817422" /> - <width sOffset="86.778990210723691" a="2.4930067862420584" b="-0.00029881727833567726" c="-0.0023991730864153901" d="0.00097110073159767016" /> - <width sOffset="88.84936070033379" a="2.4907222664067614" b="0.0022545058823817236" c="0.0023745003713603508" d="-0.0011993326323552188" /> - <width sOffset="90.240858056089337" a="2.4952256962060071" b="0.0018960508521120023" c="-0.0024817807130343749" d="-0.0011952377736899806" /> - <width sOffset="90.4299398479112" a="2.4954873966104856" b="0.00082933561370741003" c="-0.0010956116180286467" d="0.00019516351235215676" /> - <width sOffset="93.708959057375324" a="2.4933074905789976" b="-6.0552550337221282e-05" c="2.4466843388753667e-05" d="-2.0649014591883698e-06" /> - <width sOffset="100.26762006232148" a="2.4933802478358817" b="-6.0847022677987684e-06" c="1.0090077417499501e-05" d="-1.2523404188667448e-06" /> - <width sOffset="105.3182754489775" a="2.4934455563443567" b="0" c="1.1312374096292873e-05" d="-1.4502981702518028e-06" /> - <width sOffset="110.29438206855363" a="2.493546968514802" b="4.8478883572303233e-06" c="3.3986500124449188e-05" d="-4.6628139996212378e-06" /> - <width sOffset="116.13637225331867" a="2.4938055362394893" b="-7.5463940543959995e-05" c="0.0010129059971293558" d="-0.00024824432100029785" /> - <width sOffset="119.78332601555144" a="2.4949610387773848" b="-0.002592572051031139" c="0.0017686809878159804" d="-0.00029831444195175811" /> - <width sOffset="120.78561780561331" a="2.4938389520956923" b="5.3846744811045927e-05" c="-2.0550037501558321e-05" d="1.253518705490313e-06" /> - <width sOffset="130.34790608101792" a="2.4935708236162455" b="4.6912918629134215e-06" c="-0.00018305349177534405" d="8.3973242552355659e-05" /> - <width sOffset="132.31196549998035" a="2.4935101196642879" b="0.00025742317865657532" c="0.0010807191219595366" d="-0.0003013221132361851" /> - <width sOffset="134.586168030762" a="2.4961408267061502" b="0.00049766016952154397" c="-0.00080818764442251939" d="0.00011967151025884325" /> - <width sOffset="138.8359414530816" a="2.4928446258657182" b="0.00011243997729800878" c="-0.00074321946314187288" d="0.00031158919154686504" /> - <width sOffset="140.37466808725009" a="2.4923931200542064" b="3.844697971328026e-05" c="0.00063314032505557352" d="0.00027405448004880017" /> - <width sOffset="141.55979480021796" a="2.4937841209947047" b="0.0026938993778984135" c="-0.00070343987964516556" d="4.0462866458149146e-05" /> - <width sOffset="150.40143009348222" a="2.4905790764622564" b="-0.0002557235139764788" c="0.00035602443719057831" d="4.8640487400046235e-05" /> - <width sOffset="151.86761037256127" a="2.491122786255926" b="0.0011019536250490916" c="-0.00018779308373236887" d="9.7877066401287743e-06" /> - <width sOffset="160.08411698612971" a="2.4929281843569244" b="-1.7195748753078e-06" c="4.0139516276164604e-06" d="-2.4434813251532472e-08" /> - <width sOffset="160.42819209971438" a="2.4929280669011034" b="1.0339485049283559e-06" c="9.3323939494214224e-07" d="-5.4848378882017774e-08" /> - <width sOffset="170.45495410594654" a="2.4929769682575289" b="3.2059844478418698e-06" c="1.129616250317969e-06" d="-8.9000941767030092e-08" /> - <width sOffset="180.48171611217867" a="2.4930329635417063" b="-9.8461333589844324e-07" c="-2.5130095488708031e-06" d="1.1913012737133565e-06" /> - <width sOffset="182.24378873594071" a="2.4930299436180814" b="1.2557897319483754e-06" c="0.00057383336143140428" d="1.2742876047126351e-05" /> - <width sOffset="182.95097501275259" a="2.4933223196989172" b="0.00083198855861187386" c="-7.4038925968302033e-05" d="1.4870715068100764e-06" /> - <width sOffset="190.50847811841084" a="2.496023178619275" b="-3.2304193670444408e-05" c="-4.3946360241150138e-05" d="1.5611187470728212e-06" /> - <width sOffset="200.53524012464297" a="2.4928547687238032" b="-0.00044273788548394822" c="-1.8066624239792965e-06" d="1.5781475158199498e-06" /> - <width sOffset="210.56200213087513" a="2.4898247585528317" b="-2.986124589038049e-06" c="4.3457027770411676e-05" d="1.3917101445211473e-06" /> - <width sOffset="217.51609425600103" a="2.4923735745806894" b="0.00080332901596244077" c="-0.00035425914141753838" d="1.6272271789481718e-05" /> - <width sOffset="218.7660262561819" a="2.4928559881325558" b="-6.0026830673270536e-06" c="9.1055517008159742e-06" d="-2.7918047470223969e-06" /> - <width sOffset="220.58876413710726" a="2.4928583922019953" b="-6.3486838585173275e-07" c="1.6087783298065865e-06" d="-1.0868393936116446e-07" /> - <width sOffset="230.61552614333942" a="2.4929042077389729" b="-1.153124862229328e-06" c="1.1780767436833936e-06" d="-1.2621052465715379e-07" /> - <width sOffset="238.51498334926384" a="2.49290639845972" b="-6.1679406619455368e-06" c="0.00017230168528372818" d="1.2924840651174611e-05" /> - <width sOffset="240.10054032772359" a="2.4933813031081113" b="0.00063769913492417972" c="6.4285732444644593e-05" d="-1.4192520023141822e-05" /> - <width sOffset="240.64228814957158" a="2.4937433859086537" b="0.00069485632796653434" c="3.2434068475443206e-05" d="-1.3005897942786909e-05" /> - <width sOffset="247.64391596336876" a="2.4957343840134891" b="-0.00076371741067147916" c="-0.0007565638561021651" d="0.00015927043190905871" /> - <width sOffset="250.66905015580372" a="2.490909684324321" b="-0.00096847187591465357" c="0.00067673415199207183" d="0.00015870016491490924" /> - <width sOffset="251.65798670980072" a="2.4907672609578713" b="0.00083564654970810326" c="-5.2398565601287413e-05" d="9.162814314635769e-07" /> - <width sOffset="260.69581216203585" a="2.4947160805284794" b="0.00011304026381430245" c="-2.7009778363637533e-05" d="8.087018065817531e-07" /> - <width sOffset="270.72257416826801" a="2.4939492663956369" b="-0.00018469014664110263" c="2.657863205440014e-07" d="7.2949580015468513e-07" /> - <width sOffset="279.66282296364483" a="2.4928406149739573" b="-5.0162278402219977e-06" c="4.1704009926476239e-05" d="-2.0937237366942114e-05" /> - <width sOffset="280.74933617450017" a="2.4928575418629757" b="1.1457773245015851e-05" c="6.0879711138756268e-06" d="-2.4434010979167643e-07" /> - <width sOffset="290.77609818073233" a="2.4933381791525981" b="5.9848148341149518e-05" c="2.1832147948000233e-06" d="-3.2684025282337182e-07" /> - <width sOffset="300.80286018696444" a="2.4938282825279048" b="5.0517064990772886e-06" c="-5.2674025648928169e-06" d="-1.7359784389208542e-07" /> - <width sOffset="310.8296221931966" a="2.4931743761073202" b="-0.00015293675307645195" c="-1.0375062996106431e-05" d="-3.3150188190355632e-07" /> - <width sOffset="312.79037128404138" a="2.492832119275886" b="-0.00019744595749951962" c="1.1867316383266106e-05" d="-1.7750689934182547e-07" /> - <width sOffset="320.85638419942876" a="2.4919184599781596" b="-4.0648200205109009e-05" c="7.3595203678020118e-06" d="-1.5815591738721534e-07" /> - <width sOffset="330.88314620566092" a="2.4920913574775545" b="5.923504900032326e-05" c="1.9035831716987216e-06" d="-1.3753088912049593e-07" /> - <width sOffset="340.90990821189308" a="2.4927380337434064" b="5.5928201455486201e-05" c="-4.3099730287885667e-06" d="3.8203166378595677e-08" /> - <width sOffset="347.29880351130538" a="2.4929293914516197" b="5.5343972113061288e-06" c="7.3204389671395302e-05" d="-3.9853569244423181e-06" /> - <width sOffset="350.93667021812519" a="2.4937264469558391" b="0.00037992249369412203" c="2.5157100532189219e-05" d="-4.7982859511892304e-06" /> - <width sOffset="360.96343222435735" a="2.4952281198740041" b="-0.00056278978723675469" c="-0.00011954854875106095" d="-4.6604183845066181e-06" /> - <width sOffset="365.7128737348321" a="2.4893592131905757" b="-0.002013745361256738" c="0.0025673341708533676" d="-0.00050000564582908453" /> - <width sOffset="368.71372382235074" a="2.492923737391644" b="-0.00011317981409374872" c="-0.00088905197193304075" d="-0.00052904159798157848" /> - <width sOffset="368.87711231845924" a="2.4928792035911931" b="-0.00044607111054301325" c="6.4674248463690511e-05" d="-2.8845703198772431e-06" /> - <width sOffset="370.99019423058951" a="2.4921981803982627" b="-0.00021138695738716264" c="4.8074459117704521e-05" d="-2.2607682318157089e-06" /> - <width sOffset="381.01695623682167" a="2.4926328977493437" b="7.0809874240429418e-05" c="-1.7786694296960956e-05" d="-2.123945357036393e-06" /> - <width sOffset="384.14440905081938" a="2.4926154109102603" b="-0.00010276690079174308" c="0.0005513721798400754" d="-0.0002259568090110089" /> - <width sOffset="385.64488705152053" a="2.4929392561224306" b="2.5696067973236814e-05" c="0.00095854820090981519" d="-0.00020707203751533685" /> - <width sOffset="388.50413623799659" a="2.4960087944500744" b="0.00042852063876249423" c="-0.00024391119617145801" d="1.6908694781425621e-05" /> - <width sOffset="391.04371824305377" a="2.4958009052529437" b="-0.00048318762836935952" c="-0.00011502497600629122" d="1.5897066647211621e-05" /> - <width sOffset="399.04027781926641" a="2.4927106001755446" b="0.00072681633859946913" c="-0.00080116723033953616" d="0.00026999187071787201" /> - <width sOffset="400.0406617200897" a="2.4929062159940196" b="-6.5535627461897356e-05" c="-0.00097045141377808861" d="0.00034961271174004533" /> - <width sOffset="401.07048024928594" a="2.4921913663978383" b="-0.00095199299746550909" c="0.00010107756099275147" d="0.00034002238361396724" /> - <width sOffset="401.73852303557572" a="2.4917018758984701" b="-0.00036170797075077334" c="0.00086647414132911714" d="-0.00013638717533192581" /> - <width sOffset="406.12874200168721" a="2.4952736427731059" b="-0.00063987403991876829" c="-0.00025591731938701129" d="7.222366068679625e-05" /> - <width sOffset="409.38000791344427" a="2.4929702103564608" b="-1.3614096952337985e-05" c="-0.00017320628817218319" d="1.3868513489897328e-05" /> - <width sOffset="411.0972422555181" a="2.4925062941583187" b="-0.0004857953498398947" c="-9.4576235046535319e-05" d="1.8114588167084945e-05" /> - <width sOffset="417.59222825557947" a="2.4903245919109471" b="0.00057814518620460855" c="0.00030296898858367041" d="-7.2293582230099779e-05" /> - <width sOffset="420.38398828072013" a="2.4927269327055717" b="0.00057942654357024705" c="-6.320094351624581e-05" d="4.1432469970687093e-07" /> - <width sOffset="421.12400426175026" a="2.4931212751813234" b="0.00048656780915177708" c="-6.1871993801263902e-05" d="4.1320978531712188e-07" /> - <width sOffset="429.26139011333566" a="2.4932063357197496" b="-0.00043830016760216563" c="0.00025204745688676001" d="-4.5301317898823997e-05" /> - <width sOffset="430.7620597403411" a="2.4929631083945978" b="1.2122786997231967e-05" c="0.00024932524864158562" d="-5.3512365435800454e-05" /> - <width sOffset="431.15076626798242" a="2.4930023490211157" b="0.00018169549659469457" c="0.00019919643275577719" d="-5.580769869489847e-05" /> - <width sOffset="434.91027168392247" a="2.4935354325791934" b="-0.00068688247994833464" c="2.7332911440907911e-05" d="7.0306363115297414e-07" /> - <width sOffset="441.17752827421452" a="2.4904772318319406" b="-0.00026143187581862889" c="4.2547028635458355e-05" d="1.3009166746242224e-06" /> - <width sOffset="448.89600792388069" a="2.4915923091343668" b="0.00062787092560747087" c="-0.00020791609410135574" d="1.3758276856286099e-05" /> - <width sOffset="451.20429028044668" a="2.4921030126278767" b="-0.00011206796947840682" c="-0.00011734922279851089" d="1.0976754572018897e-05" /> - <width sOffset="459.67905774274959" a="2.489406287794659" b="0.000264024259829773" c="0.00020616684670462859" d="-2.5754038174797576e-05" /> - <width sOffset="461.23105228667885" a="2.4902163678949254" b="0.00071786364645878148" c="8.8551821284383518e-05" d="-2.5410655601489186e-05" /> - <width sOffset="465.68224358736438" a="2.4929251883492478" b="-4.2060464816333007e-06" c="0.00038501615031057433" d="-4.3388999843244499e-05" /> - <width sOffset="470.54416001372101" a="2.4970192675815746" b="0.00066270899742258953" c="-0.00055881001433044229" d="4.8708268813669405e-05" /> - <width sOffset="471.25781429291101" a="2.4972253131878732" b="-6.0463599503060225e-05" c="-0.00043763401962578272" d="4.8820464846733842e-05" /> - <width sOffset="477.76276746240308" a="2.4917517661608244" b="0.00044338713244851998" c="0.00078809804663233286" d="-0.00034800977453911723" /> - <width sOffset="479.51377986864156" a="2.4930761324047017" b="2.2857364389283763e-06" c="0.0002328267693739607" d="-0.0003639873222452605" /> - <width sOffset="480.23995041391709" a="2.4930611867628416" b="-0.00023538776120309458" c="-0.00019499690664975507" d="2.9398087656065686e-05" /> - <width sOffset="481.28457629914317" a="2.4926360176417512" b="-0.00054654400037829586" c="-0.00010140330649527015" d="2.395697819811848e-05" /> - <width sOffset="487.81897086248534" a="2.4914191129122116" b="0.0011970051815672969" c="-0.00016786497584740846" d="-1.923627974173923e-05" /> - <width sOffset="490.32044185560073" a="2.4930618978077499" b="-3.9183706732233425e-06" c="-0.00017777473932086073" d="1.3680041138919475e-05" /> - <width sOffset="491.31133830537527" a="2.4928967722195399" b="-0.00031593478382471729" c="-0.00012787967481591459" d="1.267621130412815e-05" /> - <width sOffset="499.29876333649361" a="2.4886743396374724" b="6.7393826628561401e-05" c="0.00015969151231593205" d="-2.3227790382341576e-05" /> - <width sOffset="501.33810031160743" a="2.4892789147148742" b="0.00042891759336582437" c="2.6180128935055537e-05" d="-1.7451994439504527e-05" /> - <width sOffset="503.29165397539748" a="2.4900866282360905" b="0.00033139626252432289" c="0.00013148538513642246" d="-9.8463436534703065e-06" /> - <width sOffset="511.3648623178396" a="2.4961508433367099" b="0.00052915772824421378" c="-0.000105287576223614" d="-1.1131652853611641e-05" /> - <width sOffset="514.09203579883285" a="2.4965850880352178" b="-0.00029349141921546085" c="-0.0002146241973857934" d="2.6899933644874447e-05" /> - <width sOffset="520.08798603780474" a="2.492907911854636" b="3.4028943838047832e-05" c="-0.00013528627460661683" d="5.5400164721259031e-05" /> - <width sOffset="520.52664069971627" a="2.492901483358648" b="-5.2679014129430185e-05" c="7.5091661509613257e-05" d="-1.7191790346953551e-06" /> - <width sOffset="521.3916243240717" a="2.4929109875905757" b="7.3368248849238829e-05" c="6.4426512557678073e-05" d="-7.7850045987878092e-06" /> - <width sOffset="529.48558299573847" a="2.4935975273444386" b="-0.00041373825476329062" c="-8.0864349295989367e-05" d="6.4068888617934767e-05" /> - <width sOffset="531.41838633030386" a="2.4929583702510403" b="-8.2960589483857539e-06" c="0.00028957967485604213" d="5.9739789993231861e-05" /> - <width sOffset="531.48371893836679" a="2.4929590809343676" b="3.0306902844865619e-05" c="-0.00023045235919986592" d="3.3784129820330125e-05" /> - <width sOffset="536.15446040628308" a="2.4915155985843116" b="8.8626200844280079e-05" c="-1.4448996554531836e-05" d="4.0722740892629803e-06" /> - <width sOffset="541.44514833653602" a="2.4921831227529614" b="0.00027770163702290143" c="4.3116676562979941e-05" d="3.7396021615323376e-06" /> - <width sOffset="541.83340863353988" a="2.4922976618161554" b="0.00031287381518687804" c="2.8488351605601414e-05" d="-1.7940955729096852e-06" /> - <width sOffset="549.32053979892714" a="2.4954841697613706" b="0.00043775030259296521" c="-1.2273137545646004e-05" d="-1.7567893000450943e-06" /> - <width sOffset="551.47191034276818" a="2.4963516348950945" b="0.00036054882381619802" c="-2.5294211332044358e-05" d="-1.3624761685057206e-06" /> - <width sOffset="556.76845063646829" a="2.4973492647863464" b="-2.2060813061525186e-05" c="-0.00010941747532917047" d="1.0576680888276972e-05" /> - <width sOffset="561.49867234900034" a="2.4959161186603165" b="-0.00034723902442243548" c="4.2766044919818621e-05" d="1.1014161572281487e-05" /> - <width sOffset="561.75736076911846" a="2.4958293445065411" b="-0.00032290167012544169" c="-5.4707450068768959e-05" d="9.4180140342364181e-06" /> - <width sOffset="565.94306970271589" a="2.4942099522084566" b="-0.00028586527724808533" c="-4.7403810336781732e-06" d="2.7461120381398491e-06" /> - <width sOffset="572.43733547475495" a="2.492905696107715" b="1.9979422354390874e-08" c="0.0019646012874577675" d="-0.00030472502489693471" /> - <width sOffset="572.51020239036438" a="2.4929160108897168" b="0.00028147495935394902" c="-0.00035833144218662622" d="4.9407812414091847e-05" /> - <width sOffset="578.7319810167412" a="2.4926958757764819" b="0.0015603648497466969" c="-0.003010896677679579" d="-0.00033400498771689015" /> - <width sOffset="578.98179914190428" a="2.4928925684128993" b="-6.5231240991819178e-06" c="1.3036520928303547e-05" d="-2.8755145680111886e-06" /> - <width sOffset="581.55219636146467" a="2.4929130996032445" b="3.4998774326305826e-06" c="1.0206938346605295e-06" d="-6.5946143471133135e-08" /> - <width sOffset="591.57895836769683" a="2.4929843314551068" b="4.0785099553221349e-06" c="-2.9546437321412676e-07" d="-1.6891486347634635e-09" /> - <width sOffset="596.21919370270416" a="2.4929967260589248" b="1.227350354337034e-06" c="-0.00054483322281197177" d="-2.7341845767834563e-05" /> - <width sOffset="596.30066752878315" a="2.4929931946743871" b="-8.8096428351131656e-05" c="-4.1571272870406316e-05" d="3.5409399394842563e-06" /> - <width sOffset="601.60572037392888" a="2.4918845474832887" b="-0.00023020778735705939" c="1.4463900156488008e-05" d="3.6154655817626785e-06" /> - <width sOffset="605.50633588358392" a="2.4914212281469394" b="4.7654211091997453e-05" c="0.00021872457541449643" d="-2.005408899709107e-05" /> - <width sOffset="611.63248238016104" a="2.4953111451963803" b="0.00046966171324272412" c="-0.0001451206909755643" d="-2.4689358104790599e-05" /> - <width sOffset="613.30054561141583" a="2.4955761915894312" b="-0.0002205688623456532" c="-0.00021667446076249687" d="3.3529632755698624e-05" /> - <width sOffset="617.87863353568548" a="2.4932423751080703" b="-9.6246769303424268e-05" c="-5.9326895714621351e-05" d="1.9285198516982572e-05" /> - <width sOffset="620.62712190568118" a="2.4929300862777968" b="1.4686729055346341e-05" c="-0.0002659400198516147" d="3.564505402915798e-05" /> - <width sOffset="621.6592443863932" a="2.4927011366432792" b="-0.00042036306807297259" c="-0.00016333226876104643" d="2.564961613438675e-05" /> - <width sOffset="627.6516880633269" a="2.4898363851521532" b="0.00038530362141803252" c="0.00037523047238821649" d="-6.4958859123140044e-05" /> - <width sOffset="631.31632112138141" a="2.4930906464200477" b="0.00051836570423036826" c="-0.00015625064953297003" d="1.0312548084825018e-05" /> - <width sOffset="631.68600639262536" a="2.4932614452769224" b="0.00040706673791814692" c="-0.00013071665236818002" d="9.6771799543461182e-06" /> - <width sOffset="638.56296465690218" a="2.4930262006272486" b="-1.7823492851008413e-05" c="-4.2513232120138788e-05" d="-1.2634392534525058e-07" /> - <width sOffset="641.71276839885752" a="2.492544326888007" b="-0.00028940064224682992" c="-3.2360266976578034e-05" d="2.7476743373711185e-06" /> - <width sOffset="651.73953040508968" a="2.4891589985464737" b="-0.0001096178315416617" c="5.1759734573295654e-05" d="2.0575228976325669e-06" /> - <width sOffset="654.8891179481376" a="2.489391483488224" b="0.00027765707356364991" c="3.4747106502829218e-05" d="-2.7581171605442393e-06" /> - <width sOffset="661.76629241132184" a="2.4920472583048268" b="0.00036424107346419389" c="-2.3717407420313534e-05" d="-2.1914676822572384e-06" /> - <width sOffset="666.38460864312617" a="2.4930077069557663" b="4.9476757865953491e-06" c="0.0026497096658237855" d="-0.00012757782487829859" /> - <width sOffset="667.30016511172983" a="2.495135428326547" b="0.0045360414210370561" c="-0.0030757259124030807" d="0.00045866066824856554" /> - <width sOffset="670.79867043505601" a="2.4929992175652078" b="-0.00014345943951443035" c="-0.0023693989944713351" d="0.00074102737509539464" /> - <width sOffset="671.793054417554" a="2.4912423157353247" b="-0.0026574617517328755" c="-0.00015910413856711934" d="0.00074191873535226307" /> - <width sOffset="673.5767317539927" a="2.4902062950256898" b="0.0038562114994739839" c="0.026249937482573159" d="-0.036296329326165264" /> - <width sOffset="674.06138239795996" a="2.4941090664876651" b="0.0037237840165306791" c="-0.0016209310383094274" d="0.00016643625432441708" /> - <width sOffset="679.05971412352335" a="2.4930092495226406" b="-5.7274274115977266e-06" c="-0.00014935124284889349" d="1.4858313942877731e-05" /> - <width sOffset="681.81981642378616" a="2.4921680833581972" b="-0.00049059759658301146" c="-2.3120774092204239e-05" d="1.3136842007763483e-05" /> - <width sOffset="683.46113122967517" a="2.491358658229136" b="-0.00046032595495469858" c="4.6452826806914399e-05" d="5.0204129086740079e-07" /> - <width sOffset="691.84657843001821" a="2.4910610014250176" b="0.00042463368970201533" c="5.9879411839664694e-05" d="2.275496214062542e-07" /> - <width sOffset="696.91319469922951" a="2.4947791936454031" b="0.0010489297003552964" c="-0.0008630301504990249" d="0.00012150131153520096" /> - <width sOffset="700.91214004250833" a="2.4929425391579896" b="-2.4503155608859069e-05" c="0.00025097022127085954" d="0.00011540768846900835" /> - <width sOffset="701.63491588320278" a="2.4930995127721225" b="0.00051915590108701564" c="-5.4395208082947801e-05" d="1.558197634723845e-06" /> - <width sOffset="711.90010244248253" a="2.4943823792674769" b="-0.00010501720647743996" c="-5.4967733910906268e-06" d="1.1387304949637853e-06" /> - <width sOffset="715.55749266515522" a="2.4939804729731687" b="-9.9528200522905992e-05" c="2.6215158497344029e-05" d="-9.679169231511695e-07" /> - <width sOffset="721.9268644487147" a="2.4941599527518372" b="0.00011661801550608749" c="7.3473476308801868e-06" d="-9.0132926889686329e-07" /> - <width sOffset="731.95362645494686" a="2.4951593413933901" b="-7.8897723996091892e-06" c="-1.9777418555953027e-05" d="-1.0194692520881909e-06" /> - <width sOffset="739.19747686652579" a="2.4936768916082652" b="-0.00045490405358243635" c="8.2185414920841378e-05" d="-4.9918721264548519e-06" /> - <width sOffset="741.98038846117902" a="2.4929398392893809" b="-0.00011345467823566362" c="5.0291455512610836e-05" d="-6.3240354869591269e-06" /> - <width sOffset="746.19684017992859" a="2.4928815054034983" b="-2.664662268887113e-05" c="0.00013140576553104594" d="-9.4777592516149796e-06" /> - <width sOffset="752.00715046741118" a="2.4953037963735918" b="0.00054047083261742415" c="-2.5098446516540074e-05" d="-7.5546788453302404e-06" /> - <width sOffset="757.36395940618274" a="2.4963175119519088" b="-0.00037877797217075217" c="-0.00024188238604124532" d="2.3109938252421603e-05" /> - <width sOffset="762.03391247364334" a="2.4916271737890137" b="-0.0011259601469924205" c="8.2750574380693106e-05" d="2.2918143652891584e-05" /> - <width sOffset="764.08078610183975" a="2.4898657157620931" b="-0.00049914034487973796" c="0.00020038025370191191" d="-1.1949198052615913e-05" /> - <width sOffset="772.0606744798755" a="2.4925706049673018" b="0.00041615849707758875" c="-8.0010511339415188e-05" d="-1.4945436574904029e-05" /> - <width sOffset="773.83074504224828" a="2.4929736641147828" b="-7.5688791777582705e-06" c="0.00014518828513321641" d="-1.3624341825843161e-05" /> - <width sOffset="781.45828743592062" a="2.4953168821125669" b="-0.00017067749908919244" c="-0.00016708560478631302" d="1.6855739058632802e-05" /> - <width sOffset="782.08743648610755" a="2.4951475609486122" b="-0.00036090505109781599" c="-0.00012962094628448054" d="1.7214975062034723e-05" /> - <width sOffset="788.29373233267734" a="2.4920302457855286" b="1.942788074499411e-05" c="7.4790316264145007e-05" d="-8.4236417076445166e-06" /> - <width sOffset="792.11419849233971" a="2.4927263752226985" b="0.00022204217081881568" c="-1.6295287143323298e-05" d="-1.1213741654143436e-05" /> - <width sOffset="794.29413742044471" a="2.4930168090094327" b="-8.8708906259976628e-06" c="3.7741399917962465e-06" d="-3.4286312013221144e-06" /> - <width sOffset="797.19259551196853" a="2.4929393163031639" b="-7.3404919636546172e-05" c="2.4486961385664216e-05" d="-1.0168423026919604e-06" /> - <width sOffset="802.14096049857187" a="2.4930524694802605" b="9.4239759099188974e-05" c="7.9223166113288052e-06" d="-1.0340591498455453e-06" /> - <width sOffset="812.16772250480403" a="2.4937514833562995" b="-5.8770251094674873e-05" c="-2.8530724337854446e-05" d="-1.3445559874619344e-06" /> - <width sOffset="812.50109060765601" a="2.4937286706733861" b="-7.8240996801547374e-05" c="1.5141664362599795e-05" d="-6.2141417636363152e-07" /> - <width sOffset="822.19448451103619" a="2.4938269992263331" b="4.0139494423848342e-05" c="-3.2954068220066579e-06" d="-6.0734256090442611e-07" /> - <width sOffset="832.22124651726836" a="2.4932859297740118" b="-0.0002091243209517722" c="-2.2749873695330942e-05" d="-6.2557722130031939e-07" /> - <width sOffset="833.08903686587576" a="2.4930869128710746" b="-0.00025002185432132994" c="-1.1808402570256393e-06" d="8.0157541456037322e-08" /> - <width sOffset="842.24800852350052" a="2.4907594992877833" b="-0.00025147994944720199" c="1.9093609088456971e-06" d="-2.465525430053163e-07" /> - <width sOffset="847.245664788353" a="2.4895196024766424" b="-0.00025086939960399044" c="3.7601756448411534e-05" d="-1.1031011160834585e-06" /> - <width sOffset="852.27477052973268" a="2.4890686640968855" b="4.3638434441332658e-05" c="2.2073985097518854e-05" d="-7.2739844419238986e-07" /> - <width sOffset="862.30153253596484" a="2.4909921914154989" b="0.0002669105299856852" c="-1.3993895099126844e-07" d="-7.3574049228249209e-07" /> - <width sOffset="872.32829454219689" a="2.4929127075982542" b="4.219913886588096e-05" c="-1.8965094473766204e-05" d="-1.7321393435734809e-06" /> - <width sOffset="873.24465659542261" a="2.4929341190710836" b="3.077819954770732e-06" c="8.3574080896335525e-05" d="-6.6106644119056458e-06" /> - <width sOffset="874.24784015001205" a="2.4930146397408075" b="0.0001507996403461863" c="-4.37438986629359e-05" d="1.6192244802283774e-06" /> - <width sOffset="882.35505654842905" a="2.4922248759586125" b="-0.00023920276788871875" c="-4.3966858047318834e-06" d="1.6018400216956401e-06" /> - <width sOffset="892.38181855466121" a="2.4909991567272645" b="0.00015575574315522382" c="4.4494190268373944e-05" d="1.7723380297428137e-06" /> - <width sOffset="896.19976164873788" a="2.492341037162741" b="0.00057301277936534724" c="-0.00011264912402474392" d="-1.1176411365454327e-05" /> - <width sOffset="898.19977117485951" a="2.4929470548229702" b="-1.1704076956827705e-05" c="0.00013236969605830108" d="-7.9890872090773696e-06" /> - <width sOffset="902.40858056089337" a="2.4946469737446284" b="0.00067797565672162731" c="5.0595532334606909e-06" d="1.8012210643795975e-05" /> - <width sOffset="903.47972287072298" a="2.4954011236917735" b="0.00075081336508514888" c="-9.8420457892519226e-05" d="3.1682226307390576e-06" /> - <width sOffset="912.43534256712553" a="2.4965071295311425" b="-0.000249714958444636" c="-1.045224242985847e-05" d="3.1241926657553375e-06" /> - <width sOffset="922.39590372254679" a="2.4960702062953812" b="0.00047194414679384332" c="-0.00047106417789264087" d="5.0772117218831973e-05" /> - <width sOffset="922.46210457335769" a="2.4960993996663268" b="0.00041024198254332143" c="-0.00045074263513752668" d="5.043721381702541e-05" /> - <width sOffset="927.89605495530373" a="2.4931119750005664" b="-2.0481824755049123e-05" c="-0.00062738359810544442" d="9.1368905991455438e-05" /> - <width sOffset="931.89810338521079" a="2.4888381827324189" b="-0.00065192036730207597" c="0.0011652384842371502" d="-0.00018357137118702984" /> - <width sOffset="932.48886657958985" a="2.4888218735458292" b="0.00053263979104579344" c="0.00082610373677798044" d="-0.00018003633941899194" /> - <width sOffset="935.89826448873464" a="2.4931054915251556" b="-0.00011255154627147707" c="0.0035090020798106266" d="-0.00078097092252137784" /> - <width sOffset="936.69097448542834" a="2.4948322642637857" b="0.0039784295714761827" c="-0.0031448144401789455" d="0.00075292895761806431" /> - <width sOffset="939.12282801590959" a="2.4967375163615859" b="0.0020412392484607904" c="-0.0047916043382949559" d="0.0014241009370992595" /> - <width sOffset="941.12760676399034" a="2.4930462989861404" b="0" c="-5.3466272498315151e-06" d="2.5679842414851183e-06" /> - <width sOffset="942.51562858582201" a="2.4930428653739627" b="-4.5959330091660533e-16" c="1.02441555288073e-06" d="-6.8112088579388373e-08" /> - <width sOffset="952.54239059205418" a="2.4930771955730506" b="-1.2598429244281562e-15" c="-8.7338508312351367e-07" d="1.3020175497781001e-07" /> - <width sOffset="957.0143481497023" a="2.4930713734703511" b="0" c="-0.00053655325606055074" d="8.2069141695243175e-05" /> - <width sOffset="962.56915259828634" a="2.4905820707019855" b="0.0016360431561610583" c="0.000799516013516334" d="9.1933443703401022e-05" /> - <width sOffset="962.94077615970718" a="2.4913051975779608" b="0.002268370281509129" c="-0.00036953077061482301" d="-0.00028269914336485425" /> - <width sOffset="964.190871792694" a="2.4930111236777339" b="1.9117668807632025e-05" c="0.00051984353095916279" d="-9.1984304998525695e-05" /> - <width sOffset="967.7718825265124" a="2.4955218043784235" b="0.00020352794469750274" c="-4.5325444421634995e-05" d="1.8805987995279415e-06" /> - <width sOffset="972.59591460451838" a="2.495659967061493" b="-0.00010248299631725492" c="-1.5485795836524826e-05" d="2.1908139790234944e-06" /> - <width sOffset="979.24453123946023" a="2.4949379329529711" b="-1.7872334535328415e-05" c="-0.00013214546084138268" d="1.3525267522878084e-05" /> - <width sOffset="982.62267661075055" a="2.4938909431121701" b="-0.00044763986046710154" c="7.2639384559381003e-06" d="1.3334295327111165e-05" /> - <width sOffset="985.74518139963357" a="2.492969965582077" b="-1.2246910552894631e-05" c="-0.00037372712678645571" d="4.5180047566113935e-05" /> - <width sOffset="988.76477396131827" a="2.4907692815885225" b="-0.0010334074293290145" c="0.00050120937550943243" d="-4.3784223848186033e-05" /> - <width sOffset="992.64943861698271" a="2.4917516816400251" b="0.00087846007805372447" c="-8.9987057382864388e-06" d="-4.4445286675154222e-05" /> - <width sOffset="995.64331430517791" a="2.4931083354671326" b="-0.00037055013360874633" c="0.00034124468346117469" d="3.0036832149135249e-05" /> - <width sOffset="996.14337764734637" a="2.4930121257474465" b="-6.7288875198105252e-06" c="-7.852859757252444e-08" d="2.2291564676611485e-08" /> - <width sOffset="1002.6762006232149" a="2.4929710307204633" b="-4.9008511603129505e-06" c="1.6444439527210987e-06" d="1.462570566498234e-07" /> - <width sOffset="1012.702962629447" a="2.4932346512393009" b="7.2188324313492613e-05" c="6.4560712848667869e-06" d="-4.7114981563492022e-08" /> - <width sOffset="1016.644511174979" a="2.4936166001961562" b="0.00012088625359069378" c="-6.2130031961159264e-06" d="-1.446152409284145e-07" /> - <width sOffset="1022.7297246356792" a="2.4940895656607696" b="2.9206121964848449e-05" c="-8.5588233376183641e-06" d="2.3203025201813975e-08" /> - <width sOffset="1032.7564866419114" a="2.4935453288175751" b="-0.00013543023236910903" c="-7.9992001195596979e-06" d="-4.957975492404458e-08" /> - <width sOffset="1038.2464506349065" a="2.4925525244308746" b="-0.00022774383113674372" c="3.4790056620674773e-05" d="-1.4954714575377215e-06" /> - <width sOffset="1042.7832486481434" a="2.4920957189262953" b="-4.4146979146223093e-06" c="1.3906241313335876e-05" d="-1.3642314999177407e-06" /> - <width sOffset="1048.6492342216427" a="2.4922729667079828" b="1.7904178973359363e-05" c="1.0353715716074338e-05" d="-4.5687041126756664e-07" /> - <width sOffset="1052.8100106543757" a="2.492493797034169" b="8.0335067026025093e-05" c="8.6660275786673921e-07" d="-4.2888424476217004e-07" /> - <width sOffset="1060.9015603690646" a="2.4929733573926995" b="1.0118143690033762e-05" c="-1.8947991842708167e-05" d="4.1916319734791221e-06" /> - <width sOffset="1062.8367726606077" a="2.4929523557221147" b="-1.612505836264661e-05" c="-4.5788998771715638e-06" d="-1.1474498775480675e-07" /> - <width sOffset="1072.86353466684" a="2.4922146608242839" b="-0.00014255612823358462" c="-8.2673587910685283e-06" d="-2.3623872135335443e-08" /> - <width sOffset="1078.0072727495419" a="2.4912594362676934" b="-0.00022948150891150768" c="1.7241158989396216e-05" d="-1.1126858603512989e-07" /> - <width sOffset="1082.890296673072" a="2.4905370143798446" b="-6.9062763956147851e-05" c="1.4930278384111752e-05" d="-3.153267619759844e-07" /> - <width sOffset="1092.9170586793043" a="2.4910277031215706" b="0.00013523689941792507" c="5.4027362521763495e-06" d="-2.9243024424772788e-07" /> - <width sOffset="1102.9438206855364" a="2.4926320762433418" b="0.00015538153778771368" c="-3.4217937015637351e-06" d="-1.8623178627827847e-07" /> - <width sOffset="1105.6501205294148" a="2.4930238325376459" b="0.00013276882058279541" c="-5.7540870771550265e-05" d="5.8358255816685941e-06" /> - <width sOffset="1110.65130685547" a="2.4929786272353658" b="-4.881772579644339e-06" c="-6.8212079947763406e-05" d="5.1893075747451444e-06" /> - <width sOffset="1112.9705826917684" a="2.4926651286187829" b="-0.00023754654475788501" c="-2.7483098325061642e-05" d="7.0439394658224791e-06" /> - <width sOffset="1117.8755322013603" a="2.4916699981024273" b="1.2475162934097277e-06" c="6.0426322259469957e-05" d="-4.6670843087564479e-06" /> - <width sOffset="1122.9973446980007" a="2.4926344782016505" b="0.00025293774776475719" c="-1.6533805097092657e-05" d="-3.9254828788249871e-06" /> - <width sOffset="1127.0135448196359" a="2.4931293430350365" b="-6.9820900364361144e-05" c="1.8600330417520111e-05" d="-5.3639897762103551e-07" /> - <width sOffset="1133.0241067042327" a="2.4932651764986913" b="9.5640750810716685e-05" c="8.4989939312029554e-06" d="-7.1750406278717041e-07" /> - <width sOffset="1143.050868710465" a="2.4943553179804807" b="4.9670658323575263e-05" c="-1.3150091619478396e-05" d="-6.5420430734695896e-07" /> - <width sOffset="1144.8561227294983" a="2.4943982819224608" b="-4.2038949975868253e-06" c="-0.00016037455380695241" d="2.1339119624653384e-05" /> - <width sOffset="1149.8574597519364" a="2.4930352787925916" b="-7.0882690819183518e-06" c="-0.00014260336249611433" d="2.448504763969081e-05" /> - <width sOffset="1153.0776307166971" a="2.4923513217268347" b="-0.00016380950279629679" c="9.8311641776530453e-05" d="2.4872130422279633e-05" /> - <width sOffset="1153.8284820225281" a="2.492294279758779" b="2.589240263484692e-05" c="4.615787956241052e-05" d="-4.5700211003054657e-06" /> - <width sOffset="1161.5521406333032" a="2.4931421516751575" b="-7.8964676723475812e-05" c="1.8882216720560917e-05" d="-1.9534095705512935e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659432" type="pole" s="665.03820912395122" t="9.5169042750872741" height="1.7922496142873001" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276659500" type="pole" s="218.94640677833402" t="8.5047661488836912" height="1.9624475062653062" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276659544" type="pole" s="202.52210469493787" t="8.6057846030229559" height="2.0516240102454049" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276661198" type="pole" s="1049.0928957770986" t="-8.2950173499222988" height="2.1208771947994762" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276661322" type="pole" s="665.51912502788866" t="-7.8873862525169836" height="2.2467634026282042" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422429" type="pole" s="662.51616051356609" t="-6.3063400874072384" height="0.35405941865468549" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422450" type="pole" s="642.83124931894963" t="-6.2986861349250667" height="0.32336724449223198" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422462" type="pole" s="622.61757692298534" t="-6.3857825673396231" height="0.32406355793727926" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422474" type="pole" s="602.96867092234424" t="-6.3902540053489716" height="0.30417681898913429" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422486" type="pole" s="583.17666569178925" t="-6.5008523713539415" height="0.33895224741661423" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422498" type="pole" s="570.04451605471672" t="-6.5986535905926225" height="0.29980852210496778" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422510" type="pole" s="559.70918099805408" t="-6.5131822325625581" height="0.30397873350210602" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422522" type="pole" s="546.54295393853613" t="-6.2818697515484718" height="0.3172746119904275" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422534" type="pole" s="534.68791732518321" t="-6.0797063263946667" height="0.32182835240323016" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422546" type="pole" s="522.7498510410627" t="-5.839112693248274" height="0.2833923158491416" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422558" type="pole" s="509.38681593946592" t="-5.6612002944679105" height="0.27064290871595631" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422570" type="pole" s="499.07853210728274" t="-5.5818173802041917" height="0.27738283165052735" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422582" type="pole" s="484.93577094986415" t="-5.5067144854027612" height="0.29292585109723746" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422594" type="pole" s="474.12132414674602" t="-5.3574039769524262" height="0.23982745470982536" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422606" type="pole" s="457.11158713363523" t="-5.1919648359874504" height="0.26410336895537512" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422618" type="pole" s="445.6567928954679" t="-5.2221621823913456" height="0.26423352248741594" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422630" type="pole" s="429.94996331837137" t="-5.1583218217711408" height="0.2605175857061397" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422642" type="pole" s="415.02751889387446" t="-5.2042994140556624" height="0.2800225409320376" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422654" type="pole" s="395.88247188524599" t="-5.3692252386487924" height="0.30814141874017764" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422666" type="pole" s="371.44135461546381" t="-5.3884799196104662" height="0.30148001923799939" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422678" type="pole" s="351.09183507332096" t="-5.3278111758447908" height="0.30090941088874956" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422690" type="pole" s="316.29213009768563" t="-5.4420616386835778" height="0.29393816880826762" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422702" type="pole" s="312.00999121616206" t="-3.4987080814736347" height="0.42054454532788554" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422714" type="pole" s="297.39469319894192" t="-2.3693385067024737" height="0.21407752034136251" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422726" type="pole" s="282.00332984845852" t="-2.4572908073478583" height="0.22378207521208537" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422738" type="pole" s="263.77704867231364" t="-2.3211846807377321" height="0.22645809431654129" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422750" type="pole" s="245.57478509895162" t="-2.3497775259626712" height="0.20745165479536354" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422762" type="pole" s="257.27563100324437" t="-5.7647604739186598" height="0.31234960527277167" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422846" type="pole" s="669.37243316554259" t="7.541559767002842" height="-0.036726334882104084" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422858" type="pole" s="660.6220339763978" t="6.4646579062468454" height="-0.0061286231068891084" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422870" type="pole" s="647.56002390302899" t="6.3916308303453233" height="-0.03614790702866344" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422882" type="pole" s="633.26597923435133" t="6.2823582145610253" height="0.0025307560085536807" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422894" type="pole" s="612.82417868087862" t="6.3097854471093937" height="-0.080844072253938748" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422906" type="pole" s="595.99147426704712" t="5.9446880280806464" height="0.016682864163072963" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422918" type="pole" s="580.76861055649465" t="5.915146789458289" height="0.0033752012935508446" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422930" type="pole" s="568.28489827316093" t="5.9661735057936491" height="0.030203106356083254" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422942" type="pole" s="557.07434990200727" t="5.7769483525141361" height="0.020103485779401353" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422954" type="pole" s="543.38088795734359" t="5.9001001300308245" height="0.035127836904848664" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422966" type="pole" s="533.17121364965078" t="5.9221858075240608" height="-0.13216673386460798" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422978" type="pole" s="523.37019329392228" t="5.7087061909659722" height="0.022816605919985022" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423002" type="pole" s="499.2971791595337" t="5.581617110771921" height="0.017073527742383021" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423014" type="pole" s="485.07491413234141" t="5.6316023036221958" height="0.014051213584167499" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423026" type="pole" s="474.43396737999308" t="5.6229935652137" height="-0.0063410772494023604" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423038" type="pole" s="460.92100078608678" t="5.6278810901524583" height="0.012339549539461814" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423050" type="pole" s="179.42125637571405" t="5.5794929430582876" height="-0.008976956771505229" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423062" type="pole" s="168.5290881779604" t="5.6406590776789445" height="-0.017880394940476663" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423074" type="pole" s="160.70455059685099" t="5.4908693319684421" height="0.0030458494262859404" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423086" type="pole" s="149.98744049935453" t="5.4399326108181567" height="0.037379930147153573" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423098" type="pole" s="138.07080478470056" t="5.8680483332970921" height="-0.0060002796868730002" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423110" type="pole" s="125.9683664104121" t="5.8228178487230391" height="-0.1004642993384266" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423122" type="pole" s="108.89503302742837" t="5.7351608562122243" height="-0.22425853533331974" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423134" type="pole" s="90.102612807862428" t="5.6416682687017197" height="-0.040144783443224696" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423146" type="pole" s="73.128013607574047" t="5.6620299173757012" height="0.013925955187374939" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423158" type="pole" s="55.737490891121297" t="5.125961052063321" height="0.038013814241679711" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423170" type="pole" s="40.617511574030082" t="5.2111477069549963" height="0.031290488749021961" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423182" type="pole" s="18.880778271923734" t="4.7332141652291106" height="0.030333652444568315" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277531820" type="pole" s="510.3878732434963" t="5.803697248760427" height="-0.066127428402950272" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276661254" type="pole" s="864.91635978747172" t="-8.2393836147555728" height="3.0098530559130552" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423423" type="pole" s="395.13730200938812" t="-9.0276095712072788" height="2.1349433004016021" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422417" type="pole" s="765.27519163125692" t="-8.4583272574438979" height="2.861810591858756" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422321" type="pole" s="1148.6096019284557" t="-8.3889569426284822" height="2.5925706615851993" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422345" type="pole" s="949.84713647409671" t="-8.5058881872849614" height="2.7915973074356941" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422393" type="pole" s="767.1748397697429" t="9.248182033450119" height="1.775767853805462" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423411" type="pole" s="394.98480331748527" t="6.9871933659932717" height="1.6215882305197624" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423447" type="pole" s="294.94890517002597" t="6.8417363065098842" height="1.6656593533514297" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5181524" s="0" t="-4.4590777962839354" orientation="none" validLength="19.59178211566714" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="19.59178211566714" s="0" distance="0" tStart="-4.4590777962839354" tEnd="-4.9745909596658135" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616980" s="19.59178211566714" t="-4.9745909596658135" orientation="none" validLength="11.542352039130964" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="11.542352039130964" s="19.59178211566714" distance="0" tStart="-4.9745909596658135" tEnd="-5.0969779710286733" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542052436" s="31.134134154798105" t="-5.0969779710286733" orientation="none" validLength="14.70513149617004" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="14.70513149617004" s="31.134134154798105" distance="0" tStart="-5.0969779710286733" tEnd="-4.797724416026603" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487892" s="45.839265650968144" t="-4.797724416026603" orientation="none" validLength="19.875215518793965" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="19.875215518793965" s="45.839265650968144" distance="0" tStart="-4.797724416026603" tEnd="-4.795768226982843" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078923348" s="65.714481169762109" t="-4.795768226982843" orientation="none" validLength="23.726132431158774" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="23.726132431158774" s="65.714481169762109" distance="0" tStart="-4.795768226982843" tEnd="-5.2733983924944994" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741887" s="89.440613600920884" t="-5.2733983924944994" orientation="none" validLength="9.0018468253458792" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="9.0018468253458792" s="89.440613600920884" distance="0" tStart="-5.2733983924944994" tEnd="-5.2924569055077333" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741888" s="98.442460426266763" t="-5.2924569055077333" orientation="none" validLength="15.706640605569532" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="15.706640605569532" s="98.442460426266763" distance="0" tStart="-5.2924569055077333" tEnd="-5.0518342058442549" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741889" s="114.1491010318363" t="-5.0518342058442549" orientation="none" validLength="14.521457922534864" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="14.521457922534864" s="114.1491010318363" distance="0" tStart="-5.0518342058442549" tEnd="-4.5977268548114214" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741890" s="128.67055895437116" t="-4.5977268548114214" orientation="none" validLength="17.724962533686266" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="17.724962533686266" s="128.67055895437116" distance="0" tStart="-4.5977268548114214" tEnd="-4.7156621929059641" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741891" s="146.39552148805743" t="-4.7156621929059641" orientation="none" validLength="13.214716614507523" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="13.214716614507523" s="146.39552148805743" distance="0" tStart="-4.7156621929059641" tEnd="-4.974961066167455" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741892" s="159.61023810256495" t="-4.974961066167455" orientation="none" validLength="49.558514805013743" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="49.558514805013743" s="159.61023810256495" distance="0" tStart="-4.974961066167455" tEnd="-5.1937970657053265" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741893" s="209.16875290757869" t="-5.1937970657053265" orientation="none" validLength="24.006812303719926" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="24.006812303719926" s="209.16875290757869" distance="0" tStart="-5.1937970657053265" tEnd="-5.4132959652428285" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741894" s="233.17556521129862" t="-5.4132959652428285" orientation="none" validLength="17.444300827870279" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="17.444300827870279" s="233.17556521129862" distance="0" tStart="-5.4132959652428285" tEnd="-5.6908165169504974" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741895" s="250.6198660391689" t="-5.6908165169504974" orientation="none" validLength="5.1103052335274981" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="5.1103052335274981" s="250.6198660391689" distance="0" tStart="-5.6908165169504974" tEnd="-5.6835558352357873" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5181948" s="690.43747588355757" t="9.186956219901889" orientation="none" validLength="4.3001488972909101" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.3001488972909101" s="690.43747588355757" distance="0" tStart="9.186956219901889" tEnd="8.9789019491237294" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273617404" s="694.73762478084848" t="8.9789019491237294" orientation="none" validLength="45.953741993541826" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="45.953741993541826" s="694.73762478084848" distance="0" tStart="8.9789019491237294" tEnd="8.9597519194100474" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542052860" s="740.6913667743903" t="8.9597519194100474" orientation="none" validLength="94.428493553296448" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="94.428493553296448" s="740.6913667743903" distance="0" tStart="8.9597519194100474" tEnd="8.7430542130362809" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810488316" s="835.11986032768675" t="8.7430542130362809" orientation="none" validLength="70.783376885407165" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="70.783376885407165" s="835.11986032768675" distance="0" tStart="8.7430542130362809" tEnd="8.6936111324377681" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5181971" s="218.4285838634236" t="6.4962285639162562" orientation="none" validLength="3.9441332519886316" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.9441332519886316" s="218.4285838634236" distance="0" tStart="6.4962285639162562" tEnd="6.3597269809212076" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273617427" s="222.37271711541223" t="6.3597269809212076" orientation="none" validLength="19.915810423149367" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.915810423149367" s="222.37271711541223" distance="0" tStart="6.3597269809212076" tEnd="6.2742225224221837" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542052883" s="242.2885275385616" t="6.2742225224221837" orientation="none" validLength="90.89682282537467" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="90.89682282537467" s="242.2885275385616" distance="0" tStart="6.2742225224221837" tEnd="6.2337714506766773" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810488339" s="333.18535036393627" t="6.2337714506766773" orientation="none" validLength="93.233549293299518" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="93.233549293299518" s="333.18535036393627" distance="0" tStart="6.2337714506766773" tEnd="6.5813196002885954" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078923795" s="426.41889965723578" t="6.5813196002885954" orientation="none" validLength="56.469415011909064" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="56.469415011909064" s="426.41889965723578" distance="0" tStart="6.5813196002885954" tEnd="7.1797724887524055" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741896" s="482.88831466914485" t="7.1797724887524055" orientation="none" validLength="65.831203665296584" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="65.831203665296584" s="482.88831466914485" distance="0" tStart="7.1797724887524055" tEnd="8.2103781138160894" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741897" s="548.71951833444143" t="8.2103781138160894" orientation="none" validLength="48.892061137099859" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="48.892061137099859" s="548.71951833444143" distance="0" tStart="8.2103781138160894" tEnd="8.7348797027133394" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741898" s="597.61157947154129" t="8.7348797027133394" orientation="none" validLength="15.789043609730243" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.789043609730243" s="597.61157947154129" distance="0" tStart="8.7348797027133394" tEnd="8.7464215045544549" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741899" s="613.40062308127153" t="8.7464215045544549" orientation="none" validLength="6.0042668774290178" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.0042668774290178" s="613.40062308127153" distance="0" tStart="8.7464215045544549" tEnd="8.8546890544728374" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741900" s="619.40488995870055" t="8.8546890544728374" orientation="none" validLength="34.691381816810576" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="34.691381816810576" s="619.40488995870055" distance="0" tStart="8.8546890544728374" tEnd="8.949679226436686" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741901" s="654.09627177551113" t="8.949679226436686" orientation="none" validLength="10.527897263498289" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.527897263498289" s="654.09627177551113" distance="0" tStart="8.949679226436686" tEnd="9.0921391673092096" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741902" s="664.62416903900942" t="9.0921391673092096" orientation="none" validLength="1.4911920667315144" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.4911920667315144" s="664.62416903900942" distance="0" tStart="9.0921391673092096" tEnd="9.2204324953724406" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741903" s="666.11536110574093" t="9.2204324953724406" orientation="none" validLength="2.1422778783111198" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.1422778783111198" s="666.11536110574093" distance="0" tStart="9.2204324953724406" tEnd="9.5347224934871662" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741904" s="668.25763898405205" t="9.5347224934871662" orientation="none" validLength="3.881871754642134" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.881871754642134" s="668.25763898405205" distance="0" tStart="9.5347224934871662" tEnd="10.416463666052" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741905" s="672.13951073869418" t="10.416463666052" orientation="none" validLength="8.1664733791996014" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.1664733791996014" s="672.13951073869418" distance="0" tStart="10.416463666052" tEnd="12.810329987933212" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741906" s="680.30598411789379" t="12.810329987933212" orientation="none" validLength="2.5591366899381001" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.5591366899381001" s="680.30598411789379" distance="0" tStart="12.810329987933212" tEnd="13.389056837190822" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5182036" s="146.20039912859045" t="5.4599353117659826" orientation="none" validLength="9.1849682897105254" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.1849682897105254" s="146.20039912859045" distance="0" tStart="5.4599353117659826" tEnd="5.8457647178148893" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273617492" s="155.38536741830097" t="5.8457647178148893" orientation="none" validLength="15.370792725934308" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.370792725934308" s="155.38536741830097" distance="0" tStart="5.8457647178148893" tEnd="6.2016978504501665" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542052948" s="170.75616014423528" t="6.2016978504501665" orientation="none" validLength="10.105580318096855" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.105580318096855" s="170.75616014423528" distance="0" tStart="6.2016978504501665" tEnd="6.3520000949725146" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810488404" s="180.86174046233214" t="6.3520000949725146" orientation="none" validLength="7.1291870951941121" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.1291870951941121" s="180.86174046233214" distance="0" tStart="6.3520000949725146" tEnd="6.3228531838477471" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078923860" s="187.99092755752625" t="6.3228531838477471" orientation="none" validLength="2.0051634335665653" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.0051634335665653" s="187.99092755752625" distance="0" tStart="6.3228531838477471" tEnd="6.3848347537406189" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741907" s="189.99609099109281" t="6.3848347537406189" orientation="none" validLength="3.8971479433699869" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.8971479433699869" s="189.99609099109281" distance="0" tStart="6.3848347537406189" tEnd="6.7505984499587077" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741908" s="193.8932389344628" t="6.7505984499587077" orientation="none" validLength="3.0194449947094029" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.0194449947094029" s="193.8932389344628" distance="0" tStart="6.7505984499587077" tEnd="7.259754061144605" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741909" s="196.9126839291722" t="7.259754061144605" orientation="none" validLength="2.453600460892801" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.453600460892801" s="196.9126839291722" distance="0" tStart="7.259754061144605" tEnd="7.8458903981484092" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741910" s="199.366284390065" t="7.8458903981484092" orientation="none" validLength="1.3735495033225504" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.3735495033225504" s="199.366284390065" distance="0" tStart="7.8458903981484092" tEnd="8.2604924709294512" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="33782070" s="380.54755195895848" t="-9.5012855607355711" orientation="none" validLength="60.780214922127698" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="60.780214922127698" s="380.54755195895848" distance="0" tStart="-9.5012855607355711" tEnd="-9.1265047025081909" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="302217526" s="441.32776688108618" t="-9.1265047025081909" orientation="none" validLength="28.695084409518699" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="28.695084409518699" s="441.32776688108618" distance="0" tStart="-9.1265047025081909" tEnd="-8.8299733530194935" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="570652982" s="470.02285129060488" t="-8.8299733530194935" orientation="none" validLength="100.25848499464882" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="100.25848499464882" s="470.02285129060488" distance="0" tStart="-8.8299733530194935" tEnd="-7.388377206248494" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="839088438" s="570.2813362852537" t="-7.388377206248494" orientation="none" validLength="28.668536327752918" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="28.668536327752918" s="570.2813362852537" distance="0" tStart="-7.388377206248494" tEnd="-7.116656836281412" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1107523894" s="598.94987261300662" t="-7.116656836281412" orientation="none" validLength="54.989476589338778" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="54.989476589338778" s="598.94987261300662" distance="0" tStart="-7.116656836281412" tEnd="-6.8870645157846626" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741911" s="653.9393492023454" t="-6.8870645157846626" orientation="none" validLength="60.984511980530669" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="60.984511980530669" s="653.9393492023454" distance="0" tStart="-6.8870645157846626" tEnd="-6.8653786426381762" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741912" s="714.92386118287607" t="-6.8653786426381762" orientation="none" validLength="146.29485329871102" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="146.29485329871102" s="714.92386118287607" distance="0" tStart="-6.8653786426381762" tEnd="-7.1347547686094144" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741913" s="861.21871448158709" t="-7.1347547686094144" orientation="none" validLength="193.53399291149594" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="193.53399291149594" s="861.21871448158709" distance="0" tStart="-7.1347547686094144" tEnd="-7.2289935751981202" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741914" s="1054.752707393083" t="-7.2289935751981202" orientation="none" validLength="64.622650126931831" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="64.622650126931831" s="1054.752707393083" distance="0" tStart="-7.2289935751981202" tEnd="-7.0835178954326068" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741915" s="1119.3753575200149" t="-7.0835178954326068" orientation="none" validLength="43.729035202914474" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="43.729035202914474" s="1119.3753575200149" distance="0" tStart="-7.0835178954326068" tEnd="-6.8249754126403817" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412686" s="895.4460110195173" t="8.876860367493796" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848142" s="846.07357658853005" t="8.9587713672654647" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283598" s="791.49087846767077" t="8.8762290602614531" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719054" s="747.26849702716777" t="9.1970736424830246" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154510" s="697.2755296007889" t="9.2231072141785031" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741916" s="647.14337967855749" t="9.2339811203719915" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741917" s="597.218489702645" t="8.9389165658152212" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741918" s="550.96065688829344" t="8.259886867087781" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741919" s="505.28039232182948" t="7.6719114030546862" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741920" s="497.68032269096807" t="7.5707418464249772" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741921" s="447.07246229426482" t="7.0126161782292211" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741922" s="396.46470834877277" t="6.6922638895101132" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741923" s="347.06720140173042" t="6.5072872793200274" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741924" s="297.01300887773323" t="6.5056907549470022" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741925" s="246.97375999970828" t="6.5200456848621045" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741926" s="192.84372308828026" t="6.8311405375694312" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8223976" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="1.7922496142873001" s="665.03820912395122" t="9.5169042750872741" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8223988" type="511" subtype="22" country="DEU" zOffset="1.6215882305197624" s="394.98555142944497" t="6.9947498044037886" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8224000" type="511" subtype="22" country="DEU" zOffset="1.6656593533514297" s="294.95097509745347" t="6.8301449346759373" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8224044" type="250" subtype="-1" country="DEU" zOffset="1.9624475062653062" s="218.94640677833402" t="8.5047661488836912" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8224088" type="250" subtype="-1" country="DEU" zOffset="2.0516240102454049" s="202.52210469493787" t="8.6057846030229559" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8225742" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.1208771947994762" s="1049.0928957770986" t="-8.2950173499222988" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8225798" type="276" subtype="-1" country="DEU" zOffset="3.0098530559130552" s="864.91635978747172" t="-8.2393836147555728" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8225810" type="1049" subtype="13" country="DEU" zOffset="2.2616198115314603" s="864.91246629218494" t="-8.2234508632302408" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8225866" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.2467634026282042" s="665.51912502788866" t="-7.8873862525169836" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8225878" type="511" subtype="22" country="DEU" zOffset="2.1349433004016021" s="395.13827832463619" t="-9.0112124153343647" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986853" type="511" subtype="22" country="DEU" zOffset="2.5925706615851993" s="1148.6116799513641" t="-8.3999574153889718" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986865" type="1004" subtype="34" country="DEU" zOffset="2.2380422229180681" s="1148.6096019284557" t="-8.3889569426284822" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986877" type="511" subtype="22" country="DEU" zOffset="2.7915973074356941" s="949.84640334826759" t="-8.4809305363879997" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986889" type="1004" subtype="33" country="DEU" zOffset="2.4411084477393103" s="949.84713647409671" t="-8.5058881872849614" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986925" type="511" subtype="22" country="DEU" zOffset="1.775767853805462" s="767.17711807488388" t="9.2322536844092014" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986937" type="1004" subtype="32" country="DEU" zOffset="1.4363258952334093" s="767.1748397697429" t="9.248182033450119" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986949" type="511" subtype="22" country="DEU" zOffset="2.861810591858756" s="765.27565670225204" t="-8.4502531383275166" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986961" type="1004" subtype="32" country="DEU" zOffset="2.5070466671064651" s="765.27519163125692" t="-8.4583272574438979" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986973" type="605" subtype="20" country="DEU" zOffset="0.35405941865468549" s="662.51616051356609" t="-6.3063400874072384" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986994" type="605" subtype="20" country="DEU" zOffset="0.32336724449223198" s="642.83124931894963" t="-6.2986861349250667" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987006" type="605" subtype="20" country="DEU" zOffset="0.32406355793727926" s="622.61757692298534" t="-6.3857825673396231" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987018" type="605" subtype="20" country="DEU" zOffset="0.30417681898913429" s="602.96867092234424" t="-6.3902540053489716" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987030" type="605" subtype="20" country="DEU" zOffset="0.33895224741661423" s="583.17666569178925" t="-6.5008523713539415" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987042" type="605" subtype="21" country="DEU" zOffset="0.29980852210496778" s="570.04451605471672" t="-6.5986535905926225" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987054" type="605" subtype="21" country="DEU" zOffset="0.30397873350210602" s="559.70918099805408" t="-6.5131822325625581" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987066" type="605" subtype="21" country="DEU" zOffset="0.3172746119904275" s="546.54295393853613" t="-6.2818697515484718" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987078" type="605" subtype="21" country="DEU" zOffset="0.32182835240323016" s="534.68791732518321" t="-6.0797063263946667" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987090" type="605" subtype="21" country="DEU" zOffset="0.2833923158491416" s="522.7498510410627" t="-5.839112693248274" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987102" type="605" subtype="21" country="DEU" zOffset="0.27064290871595631" s="509.38681593946592" t="-5.6612002944679105" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987114" type="605" subtype="21" country="DEU" zOffset="0.27738283165052735" s="499.07853210728274" t="-5.5818173802041917" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987126" type="605" subtype="21" country="DEU" zOffset="0.29292585109723746" s="484.93577094986415" t="-5.5067144854027612" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987138" type="605" subtype="21" country="DEU" zOffset="0.23982745470982536" s="474.12132414674602" t="-5.3574039769524262" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987150" type="605" subtype="21" country="DEU" zOffset="0.26410336895537512" s="457.11158713363523" t="-5.1919648359874504" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987162" type="605" subtype="21" country="DEU" zOffset="0.26423352248741594" s="445.6567928954679" t="-5.2221621823913456" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987174" type="605" subtype="21" country="DEU" zOffset="0.2605175857061397" s="429.94996331837137" t="-5.1583218217711408" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987186" type="605" subtype="20" country="DEU" zOffset="0.2800225409320376" s="415.02751889387446" t="-5.2042994140556624" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987198" type="605" subtype="20" country="DEU" zOffset="0.30814141874017764" s="395.88247188524599" t="-5.3692252386487924" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987210" type="605" subtype="20" country="DEU" zOffset="0.30148001923799939" s="371.44135461546381" t="-5.3884799196104662" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987222" type="605" subtype="20" country="DEU" zOffset="0.30090941088874956" s="351.09183507332096" t="-5.3278111758447908" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987234" type="605" subtype="20" country="DEU" zOffset="0.29393816880826762" s="316.29213009768563" t="-5.4420616386835778" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987246" type="616" subtype="20" country="DEU" zOffset="0.42054454532788554" s="312.00999121616206" t="-3.4987080814736347" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987258" type="605" subtype="20" country="DEU" zOffset="0.21407752034136251" s="297.39469319894192" t="-2.3693385067024737" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987270" type="605" subtype="20" country="DEU" zOffset="0.22378207521208537" s="282.00332984845852" t="-2.4572908073478583" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987282" type="605" subtype="20" country="DEU" zOffset="0.22645809431654129" s="263.77704867231364" t="-2.3211846807377321" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987294" type="605" subtype="20" country="DEU" zOffset="0.20745165479536354" s="245.57478509895162" t="-2.3497775259626712" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987306" type="605" subtype="10" country="DEU" zOffset="0.31234960527277167" s="257.27563100324437" t="-5.7647604739186598" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987390" type="605" subtype="11" country="DEU" zOffset="-0.036726334882104084" s="669.37243316554259" t="7.541559767002842" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987402" type="605" subtype="11" country="DEU" zOffset="-0.0061286231068891084" s="660.6220339763978" t="6.4646579062468454" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987414" type="605" subtype="10" country="DEU" zOffset="-0.03614790702866344" s="647.56002390302899" t="6.3916308303453233" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987426" type="605" subtype="10" country="DEU" zOffset="0.0025307560085536807" s="633.26597923435133" t="6.2823582145610253" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987438" type="605" subtype="10" country="DEU" zOffset="-0.080844072253938748" s="612.82417868087862" t="6.3097854471093937" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987450" type="605" subtype="10" country="DEU" zOffset="0.016682864163072963" s="595.99147426704712" t="5.9446880280806464" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987462" type="605" subtype="10" country="DEU" zOffset="0.0033752012935508446" s="580.76861055649465" t="5.915146789458289" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987474" type="605" subtype="11" country="DEU" zOffset="0.030203106356083254" s="568.28489827316093" t="5.9661735057936491" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987486" type="605" subtype="11" country="DEU" zOffset="0.020103485779401353" s="557.07434990200727" t="5.7769483525141361" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987498" type="605" subtype="11" country="DEU" zOffset="0.035127836904848664" s="543.38088795734359" t="5.9001001300308245" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987510" type="605" subtype="11" country="DEU" zOffset="-0.13216673386460798" s="533.17121364965078" t="5.9221858075240608" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987522" type="605" subtype="11" country="DEU" zOffset="0.022816605919985022" s="523.37019329392228" t="5.7087061909659722" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987546" type="605" subtype="11" country="DEU" zOffset="0.017073527742383021" s="499.2971791595337" t="5.581617110771921" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987558" type="605" subtype="11" country="DEU" zOffset="0.014051213584167499" s="485.07491413234141" t="5.6316023036221958" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987570" type="605" subtype="11" country="DEU" zOffset="-0.0063410772494023604" s="474.43396737999308" t="5.6229935652137" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987582" type="605" subtype="11" country="DEU" zOffset="0.012339549539461814" s="460.92100078608678" t="5.6278810901524583" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987594" type="605" subtype="11" country="DEU" zOffset="-0.008976956771505229" s="179.42125637571405" t="5.5794929430582876" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987606" type="605" subtype="11" country="DEU" zOffset="-0.017880394940476663" s="168.5290881779604" t="5.6406590776789445" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987618" type="605" subtype="11" country="DEU" zOffset="0.0030458494262859404" s="160.70455059685099" t="5.4908693319684421" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987630" type="605" subtype="11" country="DEU" zOffset="0.037379930147153573" s="149.98744049935453" t="5.4399326108181567" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987642" type="605" subtype="11" country="DEU" zOffset="-0.0060002796868730002" s="138.07080478470056" t="5.8680483332970921" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987654" type="605" subtype="11" country="DEU" zOffset="-0.1004642993384266" s="125.9683664104121" t="5.8228178487230391" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987666" type="605" subtype="11" country="DEU" zOffset="-0.22425853533331974" s="108.89503302742837" t="5.7351608562122243" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987678" type="605" subtype="11" country="DEU" zOffset="-0.040144783443224696" s="90.102612807862428" t="5.6416682687017197" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987690" type="605" subtype="11" country="DEU" zOffset="0.013925955187374939" s="73.128013607574047" t="5.6620299173757012" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987702" type="605" subtype="11" country="DEU" zOffset="0.038013814241679711" s="55.737490891121297" t="5.125961052063321" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987714" type="605" subtype="11" country="DEU" zOffset="0.031290488749021961" s="40.617511574030082" t="5.2111477069549963" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987726" type="605" subtype="11" country="DEU" zOffset="0.030333652444568315" s="18.880778271923734" t="4.7332141652291106" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987955" type="1004" subtype="32" country="DEU" zOffset="1.2281863198257952" s="394.98480331748527" t="6.9871933659932717" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987967" type="1004" subtype="32" country="DEU" zOffset="1.8063140564739513" s="395.13730200938812" t="-9.0276095712072788" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987991" type="1004" subtype="30" country="DEU" zOffset="1.2785287960846858" s="294.94890517002597" t="6.8417363065098842" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="9096364" type="605" subtype="11" country="DEU" zOffset="-0.066127428402950272" s="510.3878732434963" t="5.803697248760427" orientation="-" hOffset="3.1415926535897931" /> - </signals> - </road> - <road name="" length="132.26283118744902" id="4940811" junction="-1"> - <link> - <successor elementType="road" elementId="4940815" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-597.99222871198515" y="-116.54371901601553" hdg="4.4117650749874846" length="132.26283118744902"> - <paramPoly3 aU="0" bU="132.25715796580872" cU="0.01673266118480074" dU="-0.011201162865931091" aV="0" bV="-0" cV="0.62813494936901648" dV="-0.5740518421263" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.65760101920023" b="0.0036711997511893503" c="2.7141193478137506e-05" d="-1.5724936557383587e-07" /> - <elevation s="10.174063937496079" a="156.6975958633754" b="0.0041746408373219846" c="6.2956582254391157e-05" d="-4.1492612424603091e-06" /> - <elevation s="20.348127874992159" a="156.74221593567134" b="0.004167199699777655" c="-1.2236743791109259e-07" d="-1.5724936557383021e-07" /> - <elevation s="30.522191812488238" a="156.78443502085128" b="0.004115878362062903" c="-3.6519523161465708e-05" d="2.4132138168404017e-06" /> - <elevation s="40.696255749984317" a="156.82507147311037" b="0.0041221611383285136" c="3.4624116053700714e-06" d="5.8213889802125266e-07" /> - <elevation s="50.870319687480396" a="156.8679820736964" b="0.0043733890785395378" c="1.0023028170623671e-06" d="-3.2469955313779078e-07" /> - <elevation s="61.044383624976476" a="156.91223901180499" b="0.0042929535760369703" c="1.6586579749604355e-07" d="-8.816851616710065e-07" /> - <elevation s="71.218447562472562" a="156.95500443290413" b="0.004022534769977046" c="-3.6350587625844491e-05" d="7.9360843695299763e-07" /> - <elevation s="81.392511499968634" a="156.99300302774813" b="0.0035293113471339334" c="-2.7101844965502647e-05" d="3.6366717579226067e-07" /> - <elevation s="91.566575437464707" a="157.02648810238736" b="0.003090770828740493" c="-3.6565481722640882e-05" d="1.343008343486466e-06" /> - <elevation s="101.74063937496079" a="157.05556321868471" b="0.002763782465529982" c="0.0001187012723201094" d="-7.1638154945416983e-06" /> - <elevation s="111.91470331245688" a="157.08842462070044" b="0.0029545176160011739" c="2.1377240787999398e-06" d="-3.1851987477817193e-06" /> - <elevation s="122.08876724995295" a="157.11535091182515" b="0.0020089014625534322" c="-6.427497244796791e-05" d="-1.5724936552396223e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.02441770271261191" b="-4.4811698732984909e-06" c="3.5908519544215793e-11" d="1.2868765838367603e-23" /> - <superelevation s="10.174063937496079" a="0.024372114720753676" b="-4.480439202151004e-06" c="-4.402707927676122e-07" d="4.3277367234190931e-08" /> - <superelevation s="20.348127874992159" a="0.024326534162790413" b="0" c="8.8749240042641682e-06" d="-3.5037124123642287e-07" /> - <superelevation s="30.522191812488238" a="0.024876203884768872" b="7.1785649367640177e-05" c="3.5940038994366293e-07" d="1.3624101464641468e-07" /> - <superelevation s="40.696255749984317" a="0.025787237735712506" b="0.00012140634129666947" c="2.1327874872947048e-05" d="-1.7884913056323503e-06" /> - <superelevation s="50.870319687480396" a="0.027346595642308444" b="0" c="-1.4934262061937715e-05" d="6.7337095782874135e-07" /> - <superelevation s="61.044383624976476" a="0.026509876072988273" b="-9.4779204893790853e-05" c="-6.7333015573444705e-06" d="5.4067655623222451e-07" /> - <superelevation s="71.218447562472562" a="0.025418016261239504" b="-6.3890437049031758e-05" c="3.1398680724605195e-06" d="-1.0295012670694105e-22" /> - <superelevation s="81.392511499968634" a="0.025093003565473795" b="0" c="5.7492492677991553e-06" d="-3.7672584610695435e-07" /> - <superelevation s="91.566575437464707" a="0.025291374851573952" b="0" c="-1.5003618997955222e-05" d="9.8312854398722712e-07" /> - <superelevation s="101.74063937496079" a="0.024773692097157487" b="0" c="1.3271570128438096e-05" d="-8.6963414750626703e-07" /> - <superelevation s="111.91470331245688" a="0.025231612481596562" b="0" c="-6.6767347586055339e-07" d="2.2585570761808572e-08" /> - <superelevation s="122.08876724995295" a="0.025186286166174909" b="-6.5723011242621372e-06" c="-2.0809939386952184e-07" d="2.5737531676735262e-23" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="6.0954851653116853" b="-3.567149599867161e-05" c="-0.018726244533232853" d="0.011339308975095323" /> - <laneOffset s="0.77801879112873962" a="6.0894623601909252" b="-0.008582910221155992" c="-0.0021330558100729606" d="0.00026555214932534425" /> - <laneOffset s="4.7327139995617209" a="6.0385837721666968" b="-0.012994681914391217" c="-0.00019513643067109706" d="1.1494911665372753e-05" /> - <laneOffset s="10.174063937496079" a="5.9639494391156873" b="-0.01409725911930858" c="-8.1041253225568117e-06" d="1.1469722146873463e-05" /> - <laneOffset s="18.872312625328611" a="5.8482631053556302" b="-0.011634861145525591" c="0.00028869997138868965" d="-2.6371616469477153e-05" /> - <laneOffset s="20.348127874992159" a="5.8316362290807859" b="-0.01095504007179438" c="0.00017468362563616453" d="-2.6981861566443871e-05" /> - <laneOffset s="24.903843179602827" a="5.7828024808410472" b="-0.011043410870475612" c="4.8276696753156198e-05" d="-1.7374173798549594e-05" /> - <laneOffset s="29.336217537944648" a="5.7332894795893798" b="-0.01163944614070349" c="-0.00023650667158901873" d="8.8693052133407708e-06" /> - <laneOffset s="30.522191812488238" a="5.7191675360048846" b="-0.012163002833137555" c="-0.00017249859792750771" d="2.2998159032003447e-05" /> - <laneOffset s="36.056809023971091" a="5.6504650196473269" b="-0.011958992279000298" c="0.00011520744648205811" d="-1.2823434909494161e-05" /> - <laneOffset s="40.415473016444096" a="5.5994666427739421" b="-0.011685548176645164" c="-5.4561532016992535e-05" d="1.9185440165424297e-06" /> - <laneOffset s="50.870319687480396" a="5.4735246696341564" b="-0.012197300516100981" c="8.5461554344274352e-06" d="2.560186514917363e-06" /> - <laneOffset s="61.044383624976476" a="5.353009398280868" b="-0.011228375421728798" c="7.7630811095787526e-05" d="2.7629646059494014e-06" /> - <laneOffset s="69.521483157963061" a="5.2650871148525944" b="-0.0093165572036334708" c="0.00049406414647843887" d="-3.8632376752142517e-05" /> - <laneOffset s="71.218447562472562" a="5.2505112136623655" b="-0.0079734862606705911" c="0.00027670365631246954" d="-4.5807493317181352e-05" /> - <laneOffset s="79.05168490261083" a="5.1830143174171139" b="-0.012070704829089856" c="-0.00099418338676932668" d="0.00015612142190797083" /> - <laneOffset s="81.392511499968634" a="5.1513137827096367" b="-0.014158739108728606" c="0.00010292866399487743" d="0.00015499760062305526" /> - <laneOffset s="83.092036021894245" a="5.1283088202891616" b="-0.012465801948462744" c="0.00068259395691682432" d="-7.1255339466318101e-05" /> - <laneOffset s="88.933497726521523" a="5.0645791841785437" b="-0.011785377369269733" c="-0.00052471154341655923" d="3.4887452288335039e-05" /> - <laneOffset s="91.566575437464707" a="5.0305463769613707" b="-0.013822955507235536" c="-0.00024994771524617998" d="3.5568600442356719e-05" /> - <laneOffset s="99.605033624305889" a="4.9217553286318738" b="-0.010946355530489222" c="-2.9632186545292858e-05" d="7.733249954460113e-05" /> - <laneOffset s="101.74063937496079" a="4.8989963079651062" b="-0.010014823908773781" c="0.00046555222122413557" d="7.3382645932064099e-05" /> - <laneOffset s="102.93793684602757" a="4.8877989140240157" b="-0.0085844281710322125" c="0.00094744180350871327" d="-0.00013028295588420237" /> - <laneOffset s="106.50622209313279" a="4.8633114348705915" b="-0.0067994885398371284" c="0.00026262181216951571" d="-1.8929687747963446e-05" /> - <laneOffset s="111.91470331245688" a="4.831223844091296" b="-0.0056198931485269459" c="-4.1570279650815915e-05" d="-1.8528169767819255e-05" /> - <laneOffset s="119.44918057317948" a="4.7785961453579908" b="-0.0094017545469179658" c="-0.00094182987234257322" d="0.00017691442966668702" /> - <laneOffset s="122.08876724995295" a="4.7504709286219597" b="-0.010675927460710222" c="0.00045651671068818876" d="0.00017748553288810863" /> - <laneOffset s="123.5264166436165" a="4.7365936109391393" b="-0.008262805167138839" c="0.00082909511000574319" d="-4.7753840489719138e-05" /> - <laneOffset s="130.42357499227379" a="4.7033762550211025" b="-0.0036410688712364466" c="-0.0014710029285326237" d="0.00089196341933172306" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929306358698762" b="-0.0065111115160566774" c="0.016729735867944979" d="-0.011164420511453065" /> - <width sOffset="0.77801879112873962" a="2.4927337705188197" b="-0.00075292840003358778" c="0.0005447466779816897" d="-9.0663685683161016e-05" /> - <width sOffset="3.7790025460166197" a="2.4929298521779941" b="6.7098250406547738e-05" c="-0.00020417106994797437" d="-0.00026488906603346177" /> - <width sOffset="4.7327139995617209" a="2.4925783560966872" b="-0.0010451442218473751" c="0.00025055977964719915" d="-1.0831828372522043e-05" /> - <width sOffset="10.174063937496079" a="2.4925649013421971" b="0.0007194869416830528" c="7.3645931839624537e-05" d="-1.0834381557547076e-05" /> - <width sOffset="18.872312625328611" a="2.4972650291827287" b="-0.00045850445544570739" c="-0.00020657911352838028" d="2.7006957058292241e-05" /> - <width sOffset="20.348127874992159" a="2.4962252360496837" b="-0.00089178372665682341" c="-8.5600926511979965e-05" d="2.6952129284672956e-05" /> - <width sOffset="24.903843179602827" a="2.4929342871743092" b="6.4066639116917151e-06" c="-0.00011276466977090724" d="1.7835541807100329e-05" /> - <width sOffset="29.336217537944648" a="2.4923004020637149" b="5.7964286125150241e-05" c="0.00017815356575865505" d="-8.4079372031857238e-06" /> - <width sOffset="30.522191812488238" a="2.4926057000376334" b="0.0004450572045908447" c="0.00012894515166623168" d="-2.197937904792256e-05" /> - <width sOffset="36.056809023971091" a="2.495292464422751" b="-0.0001474348883847322" c="-0.00014184522103929319" d="1.3842214893543631e-05" /> - <width sOffset="40.415473016444096" a="2.4931012907450238" b="-0.000595025009251203" c="4.1245316391475616e-05" d="-8.9976419593128888e-07" /> - <width sOffset="40.696255749984317" a="2.4929374498158348" b="-0.00057207587324339428" c="5.5568904201509335e-05" d="-1.1739889470828656e-06" /> - <width sOffset="50.870319687480396" a="2.4916327712360662" b="0.00019408295342788172" c="2.1317314767455027e-05" d="-8.4572353740974133e-07" /> - <width sOffset="61.044383624976476" a="2.4949233127757857" b="0.00036522386906622135" c="-7.0051090433446034e-06" d="-9.6720314244223801e-07" /> - <width sOffset="69.521483157963061" a="2.4969267605387682" b="3.7944672634227655e-05" c="-0.00037776989843436452" d="4.0428138215406771e-05" /> - <width sOffset="71.218447562472562" a="2.496100853111793" b="-0.00089491817233458906" c="-0.00016570659051469197" d="4.8590944433326528e-05" /> - <width sOffset="75.020166638120358" a="2.4929735595408813" b="-4.7993322520464843e-05" c="-0.0004933629208567356" d="8.3832844807845837e-05" /> - <width sOffset="79.05168490261083" a="2.4902545100047497" b="6.1644192854107271e-05" c="0.00071498215591512485" d="-0.00011809607041727378" /> - <width sOffset="81.392511499968634" a="2.4928017733141896" b="0.0014676313603435073" c="-0.00011463981934005626" d="-0.00011748710329541245" /> - <width sOffset="83.092036021894245" a="2.4943881950803739" b="5.9921524696743625e-05" c="-0.00050305508214809028" d="0.00010876583679395069" /> - <width sOffset="86.090999013042293" a="2.4929771645557883" b="-2.2717919151517274e-05" c="-0.0005404605219215125" d="9.433394840443854e-05" /> - <width sOffset="88.933497726521523" a="2.4907123271816669" b="-0.00080863658776889405" c="0.00022257134911549137" d="-1.1808843350190921e-05" /> - <width sOffset="91.566575437464707" a="2.4899106582346189" b="0.00011784311627663878" c="0.00012800985580447251" d="-1.1863287410944956e-05" /> - <width sOffset="99.17908051081443" a="2.4929924935036043" b="4.3536434443710442e-06" c="-8.9623333547606519e-05" d="-4.7056286458121077e-05" /> - <width sOffset="99.605033624305889" a="2.4929744503846569" b="-9.7610153406760963e-05" c="0.00048767994482109758" d="-8.8820185578155849e-05" /> - <width sOffset="101.74063937496079" a="2.49412509293703" b="0.00077009755191005322" c="-8.5555136316754397e-05" d="-8.6821832702441208e-05" /> - <width sOffset="102.93793684602757" a="2.4947754669141649" b="0.00019184483289512444" c="-0.00061571683160143906" d="0.00011684376911382519" /> - <width sOffset="106.50622209313279" a="2.4929289631012344" b="0.00026093407687232794" c="-7.4761395919735024e-05" d="5.4905009775850946e-06" /> - <width sOffset="111.91470331245688" a="2.4930219607940627" b="-6.5938181286711965e-05" c="1.346403869665009e-05" d="5.4247417652329236e-06" /> - <width sOffset="113.25294548463354" a="2.4929708333727687" b="-7.5651080155142436e-07" c="-0.00031937561215663571" d="3.9186565656374904e-05" /> - <width sOffset="119.44918057317948" a="2.4900265053488244" b="0.00055489889517098927" c="0.00089051127849857411" d="-0.00015625603377805882" /> - <width sOffset="122.08876724995295" a="2.4948220523816831" b="0.0019899590830008418" c="-0.00034502220040538581" d="-0.00015682032805198473" /> - <width sOffset="123.5264166436165" a="2.4965038380198354" b="2.5551573852497164e-05" c="-0.0006284726421151559" d="6.8419045325843105e-05" /> - <width sOffset="130.42357499227379" a="2.4892316432748922" b="0.0011204456990740676" c="0.0020992189666105285" d="-0.00087129821449537421" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16695258517701195" weight="standard" type="solid"> - <type name="solid"> - <line length="132.26283118744902" space="0" width="0.16695299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8214385494740015" b="8.8206797025985537e-10" c="-0.012402508040517592" d="0.010663200768197493" /> - <width sOffset="0.77801879112873962" a="3.8189529297248743" b="6.4962053264524741e-05" c="0.002612606013233694" d="-0.00041055605757248168" /> - <width sOffset="4.7327139995617209" a="3.8346771308228069" b="0.0014662679840025672" c="-0.0034708802619925262" d="-0.00066461345438435305" /> - <width sOffset="4.74943988504433" a="3.8347006813464062" b="0.0013496031051313234" c="-0.00032952237930351162" d="1.3903661931528587e-05" /> - <width sOffset="10.174063937496079" a="3.8345444783717664" b="-0.00099805669725491937" c="-0.00010366302484102189" d="1.3889504873057603e-05" /> - <width sOffset="18.872312625328611" a="3.8271607955457521" b="0.00035119000483798887" c="0.00025628468763914621" d="-2.3951833743419602e-05" /> - <width sOffset="19.847884904830156" a="3.8277250843983923" b="0.00078285063250131855" c="0.00020229411936662135" d="-3.2729827326212324e-05" /> - <width sOffset="20.348127874992159" a="3.8281632254216102" b="0.00096067182132100054" c="0.00015591807672223317" d="-3.3340072438315223e-05" /> - <width sOffset="24.903843179602827" a="3.8326234176636178" b="0.000305434763319316" c="-5.7387447897535031e-05" d="-2.3732384670424707e-05" /> - <width sOffset="28.168007113820622" a="3.8321835706459169" b="-0.00082779834143273737" c="-0.00049450118514515003" d="5.0562017728877578e-05" /> - <width sOffset="29.336217537944648" a="3.830622284275266" b="-0.001776152897554107" c="-0.00037105679763080367" d="7.6805496742223209e-05" /> - <width sOffset="30.522191812488238" a="3.8281220286133402" b="-0.0023321916768754766" c="-7.6901265539577835e-05" d="9.2966526123011521e-05" /> - <width sOffset="31.961098675617194" a="3.8248839664000993" b="-0.0019760507366251463" c="0.00021839874976474884" d="8.7117375023540596e-06" /> - <width sOffset="36.056809023971091" a="3.8210527787904685" b="0.00025135939564227203" c="0.00023128903406292547" d="-2.7109856439160822e-05" /> - <width sOffset="40.415473016444096" a="3.8242975375323431" b="0.0007224865271386223" c="-0.00012528907774917624" d="-1.2367877485646938e-05" /> - <width sOffset="40.696255749984317" a="3.8244902478329319" b="0.00064920329648754209" c="-0.00014764836498512001" d="-9.0925406379759739e-06" /> - <width sOffset="42.758401220981767" a="3.8251213991494373" b="-7.5738075923160661e-05" c="-5.8543664431027089e-05" d="1.8566064460908386e-06" /> - <width sOffset="50.870319687480396" a="3.8216456949849267" b="-0.00065902888711115437" c="-1.1247876993952144e-05" d="1.840913905825394e-06" /> - <width sOffset="53.500577091658357" a="3.8198679624265095" b="-0.00067999078055458288" c="6.486028551228108e-05" d="-1.5171422723779523e-06" /> - <width sOffset="61.044383624976476" a="3.8177780533441981" b="3.9578884480022392e-05" c="2.5222941419141207e-05" d="-1.380592004864175e-06" /> - <width sOffset="67.556157077051509" a="3.8187241062887223" b="0.00019244651536912995" c="-0.00019022238366332952" d="3.2041570683965809e-05" /> - <width sOffset="69.521483157963061" a="3.8186108215169119" b="-0.00018396917306610742" c="0.00034486157742287386" d="-9.3537706740241534e-06" /> - <width sOffset="71.218447562472562" a="3.8192460168540645" b="0.00090565864084357281" c="0.00028048951409410965" d="-1.6178883180636263e-05" /> - <width sOffset="75.901805197071155" a="3.8279777921573395" b="0.0024683290116393995" c="4.6317547004246786e-05" d="-9.5613175568474236e-05" /> - <width sOffset="79.05168490261083" a="3.8332241512774368" b="-8.5829410810292842e-05" c="-0.0010516165986624961" d="0.00010631573965673391" /> - <width sOffset="80.730261233328775" a="3.8306198552954296" b="-0.0027175952897497205" c="-0.00015820413916242998" d="0.00014582352611887178" /> - <width sOffset="81.392511499968634" a="3.8287930966039769" b="-0.0027352729156944477" c="0.00013226338830856711" d="0.00014469970483540793" /> - <width sOffset="83.092036021894245" a="3.8252367739187045" b="-0.0010318584087405033" c="0.00065942410198449011" d="-8.1553235253965393e-05" /> - <width sOffset="88.933497726521523" a="3.825454822253731" b="-0.0016763007188245055" c="-0.00072834568999423713" d="2.45895565006857e-05" /> - <width sOffset="91.566575437464707" a="3.8164401918345385" b="-0.0050004368911034207" c="-0.00053492734142838181" d="2.5270704655111483e-05" /> - <width sOffset="92.13610481965604" a="3.8134234534555951" b="-0.0055851598685724198" c="-0.00055806233581982975" d="5.3208317372512774e-05" /> - <width sOffset="99.605033624305889" a="3.7627462696549383" b="-0.0050167539876116232" c="-3.2695265684711303e-06" d="9.4972216474761996e-05" /> - <width sOffset="101.74063937496079" a="3.7529425878154461" b="-0.0037312675755585261" c="0.00060492932395083614" d="9.1022362861428713e-05" /> - <width sOffset="102.55869602899112" a="3.7503448591914452" b="-0.0025587936052553053" c="0.00086892241858854604" d="5.1030612890309783e-05" /> - <width sOffset="102.93793684602757" a="3.7495022151644317" b="-0.0018777136903648933" c="0.0011452881056847528" d="-0.00015263498890385918" /> - <width sOffset="106.50622209313279" a="3.7504497790330236" b="0.00046536753959085502" c="0.00022119282534499519" d="-4.1281720767618638e-05" /> - <width sOffset="111.91470331245688" a="3.7529059085173695" b="-0.00076467568424607325" c="-0.00044567091887726682" d="-4.088020278732403e-05" /> - <width sOffset="112.59981762891712" a="3.7521596822592365" b="-0.0014329119863939858" c="-0.00060108743492814497" d="9.5303692124671681e-05" /> - <width sOffset="115.19777477138395" a="3.7460511824714335" b="-0.0026263878996599572" c="-0.00044901343111997832" d="3.9889738735778804e-06" /> - <width sOffset="119.44918057317948" a="3.7270761903676668" b="-0.0062279689700119331" c="-0.00087959656240842188" d="0.00019943157330807077" /> - <width sOffset="122.08876724995295" a="3.7081761763421026" b="-0.0067029424084254071" c="0.00069722119986272591" d="0.00019999838729663054" /> - <width sOffset="123.5264166436165" a="3.7005750092236531" b="-0.0034581316700826046" c="0.0011668963736504207" d="-2.5240986081198167e-05" /> - <width sOffset="128.29833133731591" a="3.7079019573610124" b="0.0059542278895606121" c="0.013996046610144187" d="-0.002579743092788858" /> - <width sOffset="130.42357499227379" a="3.7590085696296716" b="0.030488774493653018" c="-0.0037637019476645609" d="-0.0016400258329674622" /> - <roadMark sOffset="0" color="standard" width="0.29837414416389263" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29837399999999997" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="90.587044525610679" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.2960153027938066" b="-2.0961541553345901e-10" c="-0.0040439851433456738" d="0.00050814387987023349" /> - <width sOffset="4.74943988504433" a="3.2592338736495519" b="-0.004026451172428426" c="2.1504663581981278e-05" d="-0.00017037307729375191" /> - <width sOffset="9.0563706449306647" a="3.2286796735919925" b="-0.013322297151779128" c="-0.070246317446978693" d="0.14961895335145789" /> - <width sOffset="9.3698292590986298" a="3.2222096980639021" b="-0.013257908232833722" c="0.001573192672497122" d="-5.9637425443139429e-05" /> - <width sOffset="10.174063937496079" a="3.2125337373457237" b="-0.010843195309505897" c="0.0014291010725293444" d="-5.9648457903628422e-05" /> - <width sOffset="19.847884904830156" a="3.1873779544089871" b="6.0329244654716216e-05" c="-0.00031809410254244268" d="-5.0870464305680592e-05" /> - <width sOffset="21.247576806356832" a="3.1866997102886039" b="-0.0011291249243090343" c="0.00039870111247989221" d="-1.9093336061042907e-05" /> - <width sOffset="28.168007113820622" a="3.1916522020310958" b="0.0016459670775467207" c="0.00020701336274508192" d="-9.3387738462062257e-05" /> - <width sOffset="30.522191812488238" a="3.1954559585126252" b="0.0010679459228493619" c="-0.00044097832408390887" d="-9.5419914024639805e-05" /> - <width sOffset="31.088621135462564" a="3.1959020488702565" b="0.00047653561663639488" c="-0.00069881850605199678" d="2.6205480334580769e-05" /> - <width sOffset="31.961098675617194" a="3.1958032671586905" b="-0.00068302710977351765" c="-0.00052421692485314392" d="0.00011046026895634707" /> - <width sOffset="34.697232851298502" a="3.1922725545376611" b="-0.0010708235075944633" c="0.00035450528641114802" d="-1.641796895484507e-05" /> - <width sOffset="40.696255749984317" a="3.1950621447551146" b="0.0014099839727151238" c="7.7441560807230006e-05" d="-2.0216987131300601e-05" /> - <width sOffset="42.758401220981767" a="3.1981217667600417" b="0.0014714606870357676" c="-0.00019298466958651302" d="-3.1166134215372363e-05" /> - <width sOffset="45.074596765345959" a="3.2001073753482974" b="7.5883564530988476e-05" c="-0.00026181123108952992" d="1.4588683165576918e-05" /> - <width sOffset="50.870319687480396" a="3.1945929650825917" b="-0.0014887678496631196" c="-5.9482790545038439e-06" d="1.5720891198291208e-05" /> - <width sOffset="53.500577091658357" a="3.1909220404549843" b="-0.0011937755038885691" c="5.6519762156848672e-05" d="1.9078947376502743e-05" /> - <width sOffset="56.953250929758156" a="3.1882593663732743" b="-0.00012116898282446033" c="0.00022101976306354281" d="-4.9687536823927769e-06" /> - <width sOffset="61.044383624976476" a="3.1911227024586211" b="0.0014377818173750122" c="0.00015146034409384133" d="-5.3639918593366346e-06" /> - <width sOffset="67.556157077051509" a="3.2054265088269971" b="0.0027279815587105995" c="0.00023514806271967561" d="-3.878615454823565e-05" /> - <width sOffset="71.218447562472562" a="3.2166658869858233" b="0.0028896996310761053" c="-0.00020343237401583702" d="-3.513955817814102e-05" /> - <width sOffset="72.376432749201797" a="3.2196847639540263" b="0.0022771972490083121" c="-9.3937382352746759e-05" d="-3.7949929250740502e-05" /> - <width sOffset="75.901805197071155" a="3.2248825087433026" b="0.00019991500320229796" c="-0.00048844280839001146" d="4.1484363137043979e-05" /> - <width sOffset="80.730261233328775" a="3.2191301581040412" b="-0.0016154364548520567" c="-0.00024556174457800758" d="1.9765766724314235e-06" /> - <width sOffset="81.392511499968634" a="3.2179532116270204" b="-0.0019380824826917466" c="-0.00024134624473991334" d="1.6879625401578071e-06" /> - <width sOffset="83.274430001458214" a="3.2134623926521857" b="-0.0028285360574444914" c="-0.00036174334456635454" d="3.0144198208976031e-05" /> - <width sOffset="91.566575437464707" a="3.182321578944177" b="-0.0026096770045210228" c="0.00038669553931105203" d="3.0597141932235169e-05" /> - <width sOffset="92.13610481965604" a="3.1809663735674607" b="-0.0021394342532450508" c="0.00050528567415525946" d="2.6595292142748156e-06" /> - <width sOffset="94.4467698214915" a="3.1787534759348026" b="0.00023825665088519476" c="0.00017192676833987591" d="-9.2418414601597735e-06" /> - <width sOffset="101.74063937496079" a="3.1860517012394047" b="0.0012712668164328571" c="-3.0490250604627397e-05" d="-9.4316743553627174e-06" /> - <width sOffset="102.55869602899112" a="3.1870661014953643" b="0.001202445809995757" c="-9.4245928315251861e-05" d="3.0560075594653339e-05" /> - <width sOffset="109.73183817935043" a="3.2021214044893807" b="0.0045676784117277408" c="0.00078487086005956828" d="-7.0798202485843273e-05" /> - <width sOffset="111.91470331245688" a="3.2150954801178582" b="0.0069821737752702355" c="0.00032296217000432837" d="-7.019609952641916e-05" /> - <width sOffset="112.59981762891712" a="3.2200080861732427" b="0.0073258595098262954" c="0.00025007879125101115" d="-0.00020637999443686605" /> - <width sOffset="113.46201970287242" a="3.2263780839303577" b="0.0072968324465193159" c="-3.0770908564695408e-05" d="-0.00010673742220061071" /> - <width sOffset="115.19777477138395" a="3.2383926998551615" b="0.006225260788485355" c="4.129745849492804e-06" d="-1.5422703949562686e-05" /> - <width sOffset="122.08876724995295" a="3.2764403483662807" b="0.0040850996264850002" c="-0.00031525512850223583" d="-1.5381859342970888e-05" /> - <width sOffset="126.47359572474805" a="3.2869947061344078" b="0.00043319215515668242" c="0.00059314707893023456" d="-0.0002303709963717094" /> - <width sOffset="128.29833133731591" a="3.2883604690072321" b="0.0002966940381030226" c="-0.013858445138203248" d="0.0023241311103360269" /> - <roadMark sOffset="0" color="standard" width="0.1548799288915175" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.15487999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="90.587044170280436" max="40" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.5895597626818878" b="-2.1809967534576675e-09" c="0.0013574218396024212" d="-0.0023675325765857929" /> - <width sOffset="0.54446491146807841" a="3.5895800332163779" b="-0.00062737361657248347" c="-0.0005599153405387706" d="8.9631876087471662e-05" /> - <width sOffset="7.8247941322358212" a="3.5899224565573338" b="0.0054722173866400738" c="0.0024178708808221929" d="6.5152533738698762e-05" /> - <width sOffset="9.0563706449306647" a="3.6004509978510986" b="0.011724269680226215" c="0.070725058840509544" d="-0.14972417389501289" /> - <width sOffset="9.3698292590986298" a="3.6064638565444209" b="0.011928996244039121" c="-0.0011933981362614542" d="-4.5583118112235616e-05" /> - <width sOffset="10.174063937496079" a="3.6152619758037918" b="0.0099210033291146325" c="-0.0013049136597222627" d="-4.5477728685367239e-05" /> - <width sOffset="12.199425308973893" a="3.6296248825447268" b="0.0040754988612933529" c="-0.001030754776562094" d="4.0678507172100655e-05" /> - <width sOffset="18.29560412755237" a="3.6253794115853806" b="-0.0039565775756294254" c="-0.00071822619961015033" d="0.00020974002579109952" /> - <width sOffset="20.348127874992159" a="3.6160462785236347" b="-0.0042541180847491221" c="0.00057592450063441024" d="0.00020828779560413157" /> - <width sOffset="21.247576806356832" a="3.6128374073619698" b="-0.0027125690150946093" c="0.00020755306038213091" d="0.00017651066736075105" /> - <width sOffset="21.785529645650222" a="3.6114657167820852" b="-0.0023360185078931395" c="0.00018054869228807555" d="-7.5705071588466269e-06" /> - <width sOffset="28.329679011602742" a="3.6017889183774381" b="-0.00094558442904083342" c="0.00030302539440031878" d="1.7974483487206042e-05" /> - <width sOffset="30.522191812488238" a="3.6013618344004854" b="0.00064240576978840357" c="0.0004371637054833181" d="2.1446820838190653e-05" /> - <width sOffset="31.088621135462564" a="3.6018698700466141" b="0.0011582935873615894" c="0.00056930230017655868" d="-0.00010017857352222575" /> - <width sOffset="34.697232851298502" a="3.6087556471387696" b="0.001353475737918889" c="-0.00048723428251266725" d="2.6699664388971373e-05" /> - <width sOffset="39.482188904805369" a="3.6070014411115494" b="-0.0014753826383418905" c="-0.00046139806281324903" d="0.00013441128429434341" /> - <width sOffset="40.696255749984317" a="3.6047706732903935" b="-0.0020013689331843214" c="8.5963363202912614e-05" d="0.00014750337895404249" /> - <width sOffset="43.02713398340191" a="3.6024406949491992" b="0.00080352595716028097" c="0.0015999724511691134" d="-0.00025916777525106645" /> - <width sOffset="45.074596765345959" a="3.608568652319402" b="0.0040959193687867892" c="-0.00013967069325675614" d="-0.00030492259263287187" /> - <width sOffset="46.078902151642552" a="3.6122324522464107" b="0.0028927137180270006" c="-0.00062427047854959417" d="3.2541003185706933e-05" /> - <width sOffset="50.870319687480396" a="3.6153403534989899" b="-0.00084836930846682833" c="-0.00015254352100278336" d="3.4164411876071809e-05" /> - <width sOffset="55.796067909588722" a="3.6115434423828785" b="0.00013564165649299943" c="0.0012387107370318146" d="-0.0004600418701917333" /> - <width sOffset="56.953250929758156" a="3.6126462693362655" b="0.0011543834102170341" c="-0.00032522703873798329" d="-0.00043599416913257214" /> - <width sOffset="58.868844671191418" a="3.6105994577989695" b="-0.0048912633525322827" c="-0.0037532086831455979" d="0.0011788136123060426" /> - <width sOffset="60.815835845503443" a="3.5955490003035209" b="-0.0061003415002413445" c="0.0018209788185972013" d="-0.00018522613951369658" /> - <width sOffset="61.044383624976476" a="3.5942476867397408" b="-0.0052970055244674968" c="0.0016988000894704518" d="-0.00018476467353169737" /> - <width sOffset="65.844631388656737" a="3.5875284835194239" b="-0.0017599355378571067" c="1.6904927913675936e-06" d="1.0570968188795848e-05" /> - <width sOffset="71.218447562472562" a="3.5797601820474299" b="-0.00082596464751135551" c="0.00017162491663133848" d="5.702005472961923e-06" /> - <width sOffset="72.376432749201797" a="3.5790427181089224" b="-0.00040554845990810849" c="-4.0134824930252497e-05" d="8.5123765455701361e-06" /> - <width sOffset="81.392511499968634" a="3.5783625553124589" b="0.00094663905081307682" c="0.00018973371653965886" d="8.6122793256550927e-06" /> - <width sOffset="83.274430001458214" a="3.5808734182024229" b="0.0017522700248058867" c="0.0003682834635774315" d="-1.9843956343167221e-05" /> - <width sOffset="89.038496600659855" a="3.5994093630895616" b="0.0040199764225573005" c="8.1902617709263313e-05" d="-3.3118330236715703e-05" /> - <width sOffset="91.566575437464707" a="3.6095605284378949" b="0.0037990930832199508" c="-0.00017139050076113424" d="-3.1048552606964553e-05" /> - <width sOffset="93.436129341046495" a="3.6158612006934772" b="0.0028326798586524342" c="-0.00050663742674111716" d="-7.910899271903527e-06" /> - <width sOffset="94.4467698214915" a="3.6181983789842453" b="0.0017843828344644881" c="-0.00017882790281794931" d="3.9904714026542952e-06" /> - <width sOffset="101.74063937496079" a="3.6232481483937025" b="-0.00018742633950442986" c="-9.182262216586294e-05" d="3.7692889579958102e-06" /> - <width sOffset="109.73183817935043" a="3.6178101761993839" b="-0.00093286000455846708" c="-0.00022294069919849389" d="0.0001051275670388874" /> - <width sOffset="110.60038449246944" a="3.6169006440885951" b="-0.0010822125500713781" c="0.00025087873599765465" d="-4.0429714843194609e-05" /> - <width sOffset="111.91470331245688" a="3.6158198566326369" b="-0.00063226224886711764" c="9.4743047428418761e-05" d="-3.8252493196382184e-05" /> - <width sOffset="113.46201970287242" a="3.6149266706610992" b="-0.00061381829046274969" c="-0.00033579715952152417" d="-0.00013789506536253011" /> - <width sOffset="113.66290163870265" a="3.614788697227751" b="-0.00076542312450925305" c="-0.00094733641020813223" d="0.00029532908636899859" /> - <width sOffset="116.73439259312852" a="3.6120581202741033" b="0.0017735604689224655" c="0.0029568219053275986" d="-0.00052408163002158018" /> - <width sOffset="120.819853166402" a="3.632918888617469" b="-0.00030880164197242752" c="-0.0029252934643392995" d="0.0010161852176328186" /> - <width sOffset="122.08876724995295" a="3.6298931068334221" b="-0.0028240833962418135" c="0.0009434500795508894" d="0.0010161486622629571" /> - <width sOffset="122.3541922837054" a="3.6292289921655043" b="-0.0021084884707019951" c="0.00072104061518117612" d="-6.6388423359383319e-05" /> - <width sOffset="126.47359572474805" a="3.6281381386476474" b="0.00045229390654638081" c="-0.0012101441356741959" d="0.00014860071366930354" /> - <width sOffset="131.45494947761256" a="3.6187308467358257" b="-0.00054193500308188621" c="0.0044761884241441363" d="-0.0034169879475896424" /> - <roadMark sOffset="0" color="standard" width="0.30227353281168834" weight="bold" type="solid"> - <type name="solid"> - <line length="132.26283118744902" space="0" width="0.30227399999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="90.587044057988862" max="40" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929306358699277" b="0.0011672031342017531" c="-0.0025199287509894159" d="0.0025059551611876546" /> - <width sOffset="0.54446491146807841" a="2.4932235911009721" b="0.0006517889446083574" c="-0.00037649285003687094" d="4.8790708514364053e-05" /> - <width sOffset="4.5431172848969421" a="2.4929294915297673" b="-1.8762877360115407e-05" c="-0.00017480088709645404" d="6.0392205680478021e-05" /> - <width sOffset="7.8247941322358212" a="2.4931197798747906" b="0.00078512106496080036" c="-0.00060037529925782772" d="8.4871548029359748e-05" /> - <width sOffset="10.174063937496079" a="2.4927511545397829" b="-0.00063053036793431043" c="-1.4072433398398573e-06" d="8.4740852059557206e-05" /> - <width sOffset="12.199425308973893" a="2.4921723750130598" b="0.00040661275065682033" c="-3.7000086283089775e-05" d="-1.4153837979138626e-06" /> - <width sOffset="18.29560412755237" a="2.4929554483214558" b="-0.0002023069404326755" c="0.00036853639994258663" d="-0.00017047690240422906" /> - <width sOffset="18.795488073581925" a="2.4929251148867531" b="3.8345589166150287e-05" c="0.00071636995632055401" d="-0.0001536292480581437" /> - <width sOffset="20.348127874992159" a="2.4941365738137113" b="0.0011518169639400128" c="5.6721211764537141e-07" d="-0.00015255130553521948" /> - <width sOffset="21.785529645650222" a="2.4953403149805657" b="0.00020787791506678144" c="-0.00034539772585077434" d="3.1529868982939963e-05" /> - <width sOffset="28.329679011602742" a="2.4907452641745715" b="-0.00026190651246557443" c="2.506499505607984e-06" d="5.9848783369144316e-06" /> - <width sOffset="30.522191812488238" a="2.4902461583736493" b="-0.00016460549968477962" c="3.3834762742652487e-05" d="2.374220647815343e-06" /> - <width sOffset="39.482188904805369" a="2.4931954308799886" b="0.0010135315778499639" c="0.00045508773557851516" d="-0.00010533739925686216" /> - <width sOffset="40.696255749984317" a="2.4949082067313988" b="0.0016527566374272204" c="3.2580519310879621e-05" d="-0.00012010860156098401" /> - <width sOffset="43.02713398340191" a="2.49741657814545" b="-0.00015300861270369816" c="-0.0012898668976506508" d="0.00028656255264413816" /> - <width sOffset="46.078902151642552" a="2.4930814087214488" b="-1.923852435785009e-05" c="-3.0204642630256556e-07" d="2.9908256271930745e-07" /> - <width sOffset="50.870319687480396" a="2.4930151936667562" b="-1.5342583428758216e-06" c="7.0617912776038433e-06" d="1.0998155321716852e-06" /> - <width sOffset="55.796067909588722" a="2.4933104192082984" b="0.0001480894113988513" c="-0.00086308435037307665" d="0.00049530609759944257" /> - <width sOffset="56.796075210999213" a="2.493090729694055" b="-9.2151901339656075e-05" c="-0.0019291702831862767" d="0.0006390273250506392" /> - <width sOffset="58.868844671191418" a="2.4903020728136935" b="0.00014689729320843843" c="0.0029669172269265352" d="-0.00097578045638804865" /> - <width sOffset="60.815835845503443" a="2.4946331452334523" b="0.00060312920077014182" c="-0.0014213589867548831" d="0.00038825929543684844" /> - <width sOffset="61.044383624976476" a="2.4947013807168688" b="1.4273430263759927e-05" c="-0.001202966318989823" d="0.00039645507739365711" /> - <width sOffset="63.065956367528628" a="2.4930893883477969" b="1.11515080674085e-05" c="-0.00071388870869491122" d="0.00019607133068726235" /> - <width sOffset="65.844631388656737" a="2.4918149778564116" b="0.00058544280815576825" c="-4.3072217978585957e-05" d="7.356889667027322e-07" /> - <width sOffset="71.218447562472562" a="2.4938313722172474" b="0.00018625390275663588" c="-3.2091321532784089e-05" d="1.0771186658853418e-06" /> - <width sOffset="81.392511499968634" a="2.4935388576782218" b="-0.00013226165629028931" c="9.9981582117838582e-07" d="9.3550796254070905e-07" /> - <width sOffset="87.848594541405475" a="2.4929783802713628" b="-2.3731230744984677e-06" c="-0.00010477668753313776" d="2.6258316557784339e-06" /> - <width sOffset="89.038496600659855" a="2.4928316304938241" b="-0.00024056763112792826" c="-0.00015216805204219916" d="1.5900205549566768e-05" /> - <width sOffset="91.566575437464707" a="2.4915078289450632" b="-0.00070508994376224099" c="-2.8421591024813581e-05" d="1.4053148041204854e-05" /> - <width sOffset="93.436129341046495" a="2.4901821158763147" b="-0.00066400430695188681" c="0.00021150386010895301" d="-9.0845052940122997e-06" /> - <width sOffset="101.74063937496079" a="2.494051351043435" b="0.00096933190949657997" c="-1.4636908496614645e-05" d="-9.0515723948504155e-06" /> - <width sOffset="110.60038449246944" a="2.495195575603625" b="-0.0014215384417825307" c="-0.00045511573440908928" d="0.00013650570948654222" /> - <width sOffset="111.91470331245688" a="2.4928509609221363" b="-0.0019104589966595191" c="8.0485571668266245e-05" d="0.00013395718490897735" /> - <width sOffset="113.66290163870265" a="2.490472791188763" b="-0.00040085071747951624" c="0.0013114741186302445" d="-0.00029926696689387184" /> - <width sOffset="116.41436925999731" a="2.4930646877651128" b="1.9238210021105956e-05" c="0.0010058712667497681" d="-0.00066405948788808371" /> - <width sOffset="116.73439259312852" a="2.4931520960187674" b="0.00045901393561082957" c="-0.00081452878887289942" d="0.00015535122846569826" /> - <width sOffset="120.819853166402" a="2.4920255473750208" b="0.0015824599450919713" c="0.00054828602761518601" d="-0.0013849156191805272" /> - <width sOffset="121.57032065749752" a="2.4929365731026198" b="6.5442148064845732e-05" c="0.0015122132718479019" d="-0.0010859858630528278" /> - <width sOffset="122.3541922837054" a="2.4933939889095349" b="0.0004343368622341014" c="-1.0063898384617175e-05" d="-3.4487774319992209e-06" /> - <width sOffset="131.45494947761256" a="2.4939137056516003" b="-0.0006057636944467623" c="-0.0035698577481341502" d="0.0035621398838289564" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423398" type="pole" s="90.586143771300215" t="-9.2473855673687027" height="1.4838142349787518" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5176805" s="0" t="7.0417934610539463" orientation="none" validLength="35.914838621039685" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="35.914838621039685" s="0" distance="0" tStart="7.0417934610539463" tEnd="6.4790087897642277" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273612261" s="35.914838621039685" t="6.4790087897642277" orientation="none" validLength="40.104679552610115" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="40.104679552610115" s="35.914838621039685" distance="0" tStart="6.4790087897642277" tEnd="6.0026509188962871" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542047717" s="76.0195181736498" t="6.0026509188962871" orientation="none" validLength="56.243313013799224" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="56.243313013799224" s="76.0195181736498" distance="0" tStart="6.0026509188962871" tEnd="5.5747264556499116" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="8723316" s="0" t="-7.9832187167919777" orientation="none" validLength="8.4953938936086271" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.4953938936086271" s="0" distance="0" tStart="-7.9832187167919777" tEnd="-7.927201512914781" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="277158772" s="8.4953938936086271" t="-7.927201512914781" orientation="none" validLength="34.892971669341343" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="34.892971669341343" s="8.4953938936086271" distance="0" tStart="-7.927201512914781" tEnd="-8.1288773921909154" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="545594228" s="43.388365562949971" t="-8.1288773921909154" orientation="none" validLength="30.590203330388377" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="30.590203330388377" s="43.388365562949971" distance="0" tStart="-8.1288773921909154" tEnd="-8.5247871240416888" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="814029684" s="73.978568893338348" t="-8.5247871240416888" orientation="none" validLength="16.000078864517619" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.000078864517619" s="73.978568893338348" distance="0" tStart="-8.5247871240416888" tEnd="-8.8468099747782389" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1082465140" s="89.978647757855967" t="-8.8468099747782389" orientation="none" validLength="5.1528209291109164" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.1528209291109164" s="89.978647757855967" distance="0" tStart="-8.8468099747782389" tEnd="-9.0989785155593346" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412790" s="10.633204757893251" t="-8.2271394739041579" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848246" s="60.791863436823064" t="-8.8903845792335741" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283702" s="107.87689121149968" t="-9.6168771651650555" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412818" s="8.9041930641470977" t="7.1693493041500904" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848274" s="59.570294218489202" t="6.4146519901674885" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283730" s="108.32078858261445" t="5.9450408098113767" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8227235" type="274" subtype="54" value="40" unit="km/h" country="DEU" zOffset="1.4838142349787518" s="90.587044993232453" t="-9.2273019276632429" orientation="+" /> - <signal dynamic="no" id="8987942" type="1000" subtype="21" country="DEU" zOffset="1.0831239534381609" s="90.586143771300215" t="-9.2473855673687027" orientation="+" /> - </signals> - </road> - <road name="" length="355.57614811633607" id="4940815" junction="-1"> - <link> - <predecessor elementType="road" elementId="4940811" contactPoint="end" /> - <successor elementType="road" elementId="33782160" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-634.52360555621135" y="-243.70117648784071" hdg="4.4082425118647688" length="264.00055642571562"> - <paramPoly3 aU="0" bU="263.88022080852039" cU="5.1142760581327966" dU="-4.9988443133772318" aV="0" bV="-1.4210854715202004e-14" cV="-4.5750494488964719" dV="3.1242583271574134" /> - </geometry> - <geometry s="264.00055642571562" x="-714.96894449150307" y="-495.14571670594717" hdg="4.4091018924516314" length="91.575591690620456"> - <paramPoly3 aU="0" bU="137.68220451036359" cU="-117.63115266237281" dU="71.391036761783425" aV="0" bV="-2.1316282072803006e-14" cV="6.7973721932883464" dV="-2.4304936769889665" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="157.19690745860089" b="0.00092183810512682816" c="6.0454047723704343e-05" d="-1.0626750477385856e-07" /> - <elevation s="10.159318517609602" a="157.21240084578989" b="0.0021172777918528293" c="9.6047120537388458e-05" d="-3.9285602140322193e-06" /> - <elevation s="20.318637035219204" a="157.23970480161907" b="0.0028524036159988256" c="5.0355824139866324e-05" d="-3.572178926926706e-06" /> - <elevation s="30.477955552828806" a="157.27013494360409" b="0.002769492784835043" c="1.3604939074585411e-05" d="9.8963340142155215e-07" /> - <elevation s="40.637274070438409" a="157.30071298360448" b="0.0033523519975767807" c="0.00011095055221555939" d="-1.0626750477384734e-07" /> - <elevation s="50.796592588048014" a="157.34611056832429" b="0.0055738118306201071" c="0.0014656318321886138" d="-9.3158833376172438e-05" /> - <elevation s="60.955911105657613" a="157.45632440225799" b="0.0065081936275912348" c="-8.7073252887095214e-05" d="-1.0626750477383932e-07" /> - <elevation s="71.115229623267211" a="157.5133448032789" b="0.0047060796404207374" c="-0.00020658754026217622" d="1.1190373721551591e-05" /> - <elevation s="81.274548140876817" a="157.55156689344292" b="0.0039734366507611545" c="6.4523223693037975e-05" d="-4.517707836124391e-06" /> - <elevation s="91.433866658486423" a="157.59385676443097" b="0.0038856189808909218" c="-4.6352483844324462e-05" d="1.6657446950318114e-06" /> - <elevation s="101.59318517609603" a="157.6302945192356" b="0.0034595729747632234" c="-3.3376982110178244e-05" d="1.8417523997279669e-06" /> - <elevation s="111.75250369370562" a="157.66392771606485" b="0.0033516696698149872" c="2.2919631105487495e-06" d="-3.9988662560872203e-08" /> - <elevation s="121.91182221131523" a="157.69817302278133" b="0.0033858573364981635" c="-1.9201378033880602e-05" d="1.8231159042892207e-06" /> - <elevation s="132.07114072892483" a="157.73250086640101" b="0.0035602124694535751" c="1.7648254832779323e-05" d="-1.9347886268218322e-07" /> - <elevation s="142.23045924653442" a="157.77028883177925" b="0.0038588930760978628" c="4.3495468730323892e-05" d="-3.1436805023047242e-06" /> - <elevation s="152.38977776414404" a="157.81068545823479" b="0.003769267393792566" c="-1.9844669844465386e-05" d="-2.6521221474724798e-07" /> - <elevation s="162.54909628175363" a="157.84665235190522" b="0.0032839316975409654" c="-0.00016805817211270848" d="1.3845962250079221e-05" /> - <elevation s="172.70841479936323" a="157.87718761850837" b="0.0041564167942813581" c="8.4485793168306508e-05" d="-6.1019157926198745e-06" /> - <elevation s="182.86773331697285" a="157.92173567605028" b="0.0039836846881751223" c="-0.00012854473291763822" d="8.5526113653677687e-06" /> - <elevation s="193.02705183458244" a="157.95790780581297" b="0.0040200209458609894" c="-1.2744487060200396e-05" d="-1.0626750477352948e-07" /> - <elevation s="203.18637035219206" a="157.99732167023353" b="0.0037281661728030659" c="6.6527060118531635e-06" d="-1.0626750477358535e-07" /> - <elevation s="213.34568886980165" a="158.03577250734898" b="0.0038304359252782343" c="0.00015969556481362212" d="-9.5302290056906316e-06" /> - <elevation s="223.50500738741124" a="158.08117655799296" b="0.0041243372237236096" c="-0.00010358056053150813" d="6.6417496745304221e-06" /> - <elevation s="233.66432590502086" a="158.11935056247148" b="0.0040762412859299104" c="6.9101321721556976e-05" d="-3.9264240142170025e-06" /> - <elevation s="243.82364442263045" a="158.16377736921257" b="0.0042645266470944" c="0.00034279819561645609" d="-3.5005858761860682e-05" /> - <elevation s="253.98296294024004" a="158.20577707560363" b="0.00039067064297587716" c="-6.5517493700944292e-05" d="-1.0626750710826174e-07" /> - <elevation s="256.00060302278098" a="158.20629772222026" b="0.00012499139610681225" c="-0.00029759522435122201" d="4.4453903985383749e-06" /> - <elevation s="264.14228145784966" a="158.18998780758386" b="-0.0038368440284798824" c="-0.00051703623908084596" d="2.668809857542959e-05" /> - <elevation s="274.30159997545928" a="158.12562797175107" b="-0.0060787394104346703" c="5.7967658715335867e-05" d="-3.5092600476176997e-07" /> - <elevation s="284.46091849306885" a="158.06948709820597" b="-0.0050095746573191931" c="6.5777809425470013e-05" d="7.4201616119429987e-06" /> - <elevation s="286.00115193588107" a="158.06195434245049" b="-0.0047541393212039923" c="0.0001562292191213295" d="1.5059651007015534e-06" /> - <elevation s="294.62023701067847" a="158.03354833490675" b="-0.0017254052183499782" c="0.0001647819675009998" d="-1.4524932519071552e-06" /> - <elevation s="304.77955552828809" a="158.03150380152803" b="0.0011729966461252559" c="0.00026521816568335051" d="-6.9758374308392511e-06" /> - <elevation s="314.93887404589765" a="158.06347968824869" b="0.0044019030655462286" c="0.00017251714798868052" d="-7.7645591076878129e-06" /> - <elevation s="325.09819256350727" a="158.11786420638441" b="0.0055030351135537531" c="9.8516525926751175e-06" d="-2.4552730434622688e-06" /> - <elevation s="335.25751108111689" a="158.17221359551638" b="0.0049429681639518129" c="-6.4062022866076665e-05" d="-5.7270223079542109e-07" /> - <elevation s="345.41682959872645" a="158.21521831658774" b="0.0034639863704747265" c="-9.0620620644206896e-05" d="-1.4688061011998742e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025097878457887121" b="5.2856386824371488e-05" c="1.2735809976448002e-06" d="-2.0679809743207834e-22" /> - <superelevation s="10.159318517609602" a="0.025766311854352034" b="7.8733816850468891e-05" c="9.108234633686649e-06" d="-7.7117905324669915e-07" /> - <superelevation s="20.318637035219204" a="0.026697642304869224" b="2.5016505112869109e-05" c="-1.2312098035664955e-06" d="0" /> - <superelevation s="30.477955552828806" a="0.026824717626688747" b="0" c="-7.531854332091262e-05" d="4.9424931531486557e-06" /> - <superelevation s="40.637274070438409" a="0.024233464669974034" b="0" c="6.9482131942336829e-06" d="-2.0320127760571156e-07" /> - <superelevation s="50.796592588048014" a="0.024737532982929449" b="7.8259941873508627e-05" c="-4.8838266918520153e-06" d="7.5824641859295052e-07" /> - <superelevation s="60.955911105657613" a="0.025823600023299208" b="0.00021380706559937676" c="5.884012085771606e-05" d="-3.8495030116017053e-06" /> - <superelevation s="71.115229623267211" a="0.030032287109169709" b="0.00021741626537384744" c="-1.070033708447035e-05" d="0" /> - <superelevation s="81.274548140876817" a="0.031136687654590735" b="0" c="-4.5987867355863482e-06" d="0" /> - <superelevation s="91.433866658486423" a="0.030662038815123076" b="-9.3441078482760318e-05" c="-4.8179423171468753e-05" d="2.7440668329195331e-06" /> - <superelevation s="101.59318517609603" a="0.027617380081412977" b="-0.00022272144806760179" c="8.0595157462332157e-07" d="6.6641509670635846e-07" /> - <superelevation s="111.75250369370562" a="0.026136642551879051" b="0" c="1.9063355915628286e-05" d="-7.9538399845044642e-07" /> - <superelevation s="121.91182221131523" a="0.027270196231912826" b="0.00014106247977322873" c="5.0096738902001713e-06" d="-2.0743879021562199e-07" /> - <superelevation s="132.07114072892483" a="0.029002839877679237" b="0.00017862186183836617" c="1.9966472445680557e-05" d="-1.8871021720271342e-06" /> - <superelevation s="142.23045924653442" a="0.030899549009161659" b="0" c="-1.6666392638725071e-06" d="-5.1699524358019315e-23" /> - <superelevation s="152.38977776414404" a="0.030727532249548332" b="-3.3863838271270456e-05" c="-4.338705194275056e-05" d="2.7353237717778403e-06" /> - <superelevation s="162.54909628175363" a="0.028773599076301004" b="-6.847691631606068e-05" c="3.3701530372025088e-06" d="0" /> - <superelevation s="172.70841479936323" a="0.028425759674321725" b="0" c="5.1737651045410585e-05" d="-3.3950867180530643e-06" /> - <superelevation s="182.86773331697285" a="0.030205737556709557" b="0" c="-8.6602744751285702e-05" d="5.6829759857857426e-06" /> - <superelevation s="193.02705183458244" a="0.027226263864019738" b="0" c="9.6031390465747788e-06" d="-6.3016950267081455e-07" /> - <superelevation s="203.18637035219206" a="0.027556649468294562" b="0" c="-6.2284366688807211e-07" d="4.0871748487753384e-08" /> - <superelevation s="213.34568886980165" a="0.027535221206113254" b="0" c="4.3268493465700973e-05" d="-2.8393304393860561e-06" /> - <superelevation s="223.50500738741124" a="0.029023826889150381" b="0" c="-6.3997143579164417e-05" d="3.5903782583057472e-06" /> - <superelevation s="233.66432590502086" a="0.026183300401202387" b="-0.00018862703253368988" c="1.5581956777167471e-05" d="-6.5235750756184956e-07" /> - <superelevation s="243.82364442263045" a="0.025191182680067845" b="-7.4015793790013608e-05" c="-3.0468365807863566e-07" d="2.5903558563844923e-07" /> - <superelevation s="253.98296294024004" a="0.02467940035230947" b="0" c="3.7888801977113733e-05" d="-1.9609732665258081e-06" /> - <superelevation s="264.14228145784966" a="0.026533769785376984" b="0.00016266235131582379" c="4.9384252792492555e-06" d="-6.7858167144697225e-07" /> - <superelevation s="274.30159997545928" a="0.027984477627991011" b="5.2891611024027191e-05" c="-2.603108216970886e-06" d="0" /> - <superelevation s="284.46091849306885" a="0.028253148989642311" b="0" c="-4.8330043118254233e-05" d="3.1714753986356872e-06" /> - <superelevation s="294.62023701067847" a="0.026590406169527864" b="0" c="3.7385922154115853e-05" d="-2.4533090541006329e-06" /> - <superelevation s="304.77955552828809" a="0.027876628353998349" b="0" c="-2.1852693670001627e-05" d="9.7374241139958218e-07" /> - <superelevation s="314.93887404589765" a="0.026642201923826068" b="-0.00014251196792255892" c="-1.984629081409438e-05" d="1.7499909798382032e-06" /> - <superelevation s="325.09819256350727" a="0.024980979404605072" b="-3.9026385328865023e-06" c="5.7621559843623279e-07" d="-3.7811958708158906e-08" /> - <superelevation s="335.25751108111689" a="0.024961155330647727" b="-3.9026385328865023e-06" c="-3.8961445253745747e-05" d="2.5693007558873034e-06" /> - <superelevation s="345.41682959872645" a="0.023594296880701231" b="0" c="1.254245420675019e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.9900999887487456" b="6.5543300667248496e-05" c="-0.0086638141795987687" d="0.0053702157359992522" /> - <laneOffset s="1.0624523452258705" a="1.9868303765515425" b="-0.0001584571926890967" c="0.0002894100396536374" d="-0.00025465800722923089" /> - <laneOffset s="1.6572910738591329" a="1.9867849241342723" b="-8.4471899013532413e-05" c="-1.4016889400109546e-06" d="-5.5018489322887972e-07" /> - <laneOffset s="10.159318517609602" a="1.9856272972544649" b="-0.00022761576599192415" c="-1.103865707535403e-05" d="-8.6942257398381228e-07" /> - <laneOffset s="15.28168857674876" a="1.9840548712856607" b="-0.0004091414281120635" c="-0.00070513848799400318" d="5.8324795210946848e-05" /> - <laneOffset s="20.318637035219204" a="1.9715575069058331" b="-0.003073385016267108" c="0.00017971583881677903" d="5.8416797368988854e-05" /> - <laneOffset s="23.423890917393891" a="1.9654959525743407" b="-0.00026738867983646286" c="1.0375811293607112e-05" d="-1.8379326133475591e-08" /> - <laneOffset s="30.477955552828806" a="1.9641196228184239" b="-0.00012374904913112637" c="3.2471024848926147e-06" d="7.6068275600179423e-07" /> - <laneOffset s="36.555185901817445" a="1.9636582299521261" b="-0" c="0.0032482683976738694" d="-0.0003250828062230939" /> - <laneOffset s="40.637274070438409" a="1.9956729000549718" b="0.010268438757775928" c="-0.00073985777407119301" d="-0.00032666223325798749" /> - <laneOffset s="42.981582069657016" a="2.0114705364112346" b="0.0014137384615182948" c="-7.0035593721908446e-05" d="-9.7044245759767637e-08" /> - <laneOffset s="50.796592588048014" a="2.0181952173083029" b="0.00030129990415699422" c="-6.6110326055945321e-05" d="-1.5949550123780381e-06" /> - <laneOffset s="52.913228644678327" a="2.0185216507829571" b="-0" c="-0.002652974142043811" d="0.00019466401359753227" /> - <laneOffset s="60.476769509286726" a="1.9509814633871243" b="-0.0067232361559793801" c="0.00010455950584816831" d="2.2121584395432894e-05" /> - <laneOffset s="69.088960930933027" a="1.9149653195324665" b="-0" c="0.0007321508143426623" d="-3.7415333166349218e-05" /> - <laneOffset s="71.115229623267211" a="1.9176600861087447" b="0.0025062128711355251" c="0.00053359937971312818" d="-2.8666885145922757e-05" /> - <laneOffset s="81.274548140876817" a="1.9681362483948155" b="0.0044719466050305865" c="-0.00033906540317837582" d="-2.8338908337277839e-05" /> - <laneOffset s="84.051829393915526" a="1.9773337161916704" b="0.0019328278760710913" c="-0.0001433837280918984" d="1.5031395658157754e-07" /> - <laneOffset s="90.864874122550887" a="1.9838941695564021" b="-0" c="-0.00081685005975712149" d="9.9489017104494398e-05" /> - <laneOffset s="96.197524390491267" a="1.9757523287006984" b="-0.00022439642136645155" c="-1.267467100723179e-06" d="1.2932889636339212e-06" /> - <laneOffset s="101.59318517609603" a="1.9747078176853485" b="-0.00012511889904167053" c="4.816964770057337e-06" d="4.295229824340873e-07" /> - <laneOffset s="108.39409645637248" a="1.974214801381968" b="-0" c="0.00037984609422656582" d="-3.6587268963351605e-05" /> - <laneOffset s="111.75250369370562" a="1.9771131530203778" b="0.0013133633910220176" c="1.0823367717973609e-05" d="-3.7652169534445806e-05" /> - <laneOffset s="115.25953075977729" a="1.9802281933885264" b="-0" c="-4.3011966830904079e-05" d="1.6637946467935209e-06" /> - <laneOffset s="121.91182221131523" a="1.9788145796892556" b="-0.00035137265707259373" c="-3.2561603168587177e-06" d="1.7586566092462304e-06" /> - <laneOffset s="130.71309578769367" a="1.9766688184188614" b="-0" c="0.00069277795685844296" d="-7.78717649973249e-05" /> - <laneOffset s="132.07114072892483" a="1.9777514597075549" b="0.0014507937668983314" c="0.00040862259598469891" d="-6.8531049510342303e-05" /> - <laneOffset s="135.90441976404918" a="1.9854569678255469" b="0.0015625311135820702" c="-0.00011820453563951561" d="5.9294376061153081e-06" /> - <laneOffset s="142.23045924653442" a="1.9921122990876159" b="0.0007788644924584051" c="-1.3382158696618862e-06" d="6.4414037978325825e-06" /> - <laneOffset s="151.50629157905746" a="2.0043626744649492" b="0.002416714097886811" c="0.0011128449006684784" d="-9.127241799595556e-05" /> - <laneOffset s="160.60472648800828" a="2.0497292150553559" b="-0" c="-7.6468802681100908e-05" d="1.0772871128443841e-05" /> - <laneOffset s="162.54909628175363" a="2.0495193086801362" b="-0.00017518435411274048" c="-2.8075928351529559e-05" d="6.8053161764269564e-06" /> - <laneOffset s="167.16032734556558" a="2.0487817679388436" b="-0" c="0.00027604008122778651" d="-1.8448810619400801e-05" /> - <laneOffset s="172.70841479936323" a="2.0541279971601063" b="0.0013593553169998947" c="-2.508168113946561e-05" d="-1.9507647477366381e-05" /> - <laneOffset s="177.11837039552458" a="2.0579618678116955" b="-0" c="-0.0017144334203263881" d="0.00024079452691525442" /> - <laneOffset s="181.86497169162953" a="2.0450863448916308" b="-0" c="0.00066361144789083752" d="-6.5526427215005447e-05" /> - <laneOffset s="182.86773331697285" a="2.0456875558868406" b="0.0011332216506418325" c="0.00046631264662292949" d="-5.8611928566223728e-05" /> - <laneOffset s="189.19091829970881" a="2.0566794105978392" b="-0" c="-0.00023246778542610218" d="7.5123582913927953e-06" /> - <laneOffset s="193.02705183458244" a="2.0536825225733644" b="-0.0014519011328096027" c="-0.00015655546711234556" d="5.5516588714426587e-06" /> - <laneOffset s="203.18637035219206" a="2.0285950857183672" b="-0.0029139055166987732" c="1.3111149916796063e-05" d="5.5991233109958892e-06" /> - <laneOffset s="207.34635074365951" a="2.0171032725269993" b="-0.0025141354388257264" c="0.00015026050827691029" d="-1.4383495314140598e-05" /> - <laneOffset s="213.34568886980165" a="2.0043225019214943" b="-0.0022642830371944734" c="-0.00010415730274015952" d="-1.4917168781636467e-05" /> - <laneOffset s="219.07948463371338" a="1.9851032614397019" b="-0.0049299854832127576" c="-0.00033136662629951121" d="3.0969590990293224e-05" /> - <laneOffset s="223.77811414549166" a="1.957836009555852" b="-0.0059927654384429622" c="-0.00017588481897474819" d="1.9511772799986357e-05" /> - <laneOffset s="230.69075954673266" a="1.914450648340448" b="-0.0056273335436161703" c="0.00023812523846712669" d="-2.4102313016349549e-05" /> - <laneOffset s="233.66432590502086" a="1.8991892135026067" b="-0.0048505161079705561" c="6.0629465718334951e-07" d="-2.5722191660069656e-05" /> - <laneOffset s="236.57133199592258" a="1.8844619609627387" b="-0.0054991014758011729" c="-0.00049391094192344502" d="2.187862895959064e-05" /> - <laneOffset s="243.82364442263045" a="1.8269484488285423" b="-0.0092109069607784269" c="-2.0074511817377862e-05" d="2.1782359509637472e-05" /> - <laneOffset s="253.98296294024004" a="1.7541401198412947" b="-0.0028742071685007443" c="0.00064755149986482391" d="2.0287966634272403e-05" /> - <laneOffset s="256.00928848200829" a="1.7511436813597125" b="-0" c="0.00039847294442322748" d="-2.353464867629214e-05" /> - <laneOffset s="261.66717583023768" a="1.7596369124198188" b="0.002248878481962546" c="-0.00032346274279464594" d="9.4631736918426856e-05" /> - <laneOffset s="264.14228145784966" a="1.7646564316825777" b="0.002386853611993001" c="0.00040112004049251644" d="9.4741788746456515e-05" /> - <laneOffset s="266.46421885885593" a="1.7735471752243035" b="0.0057819755941991369" c="0.0037158514584321881" d="-0.00040852579927535903" /> - <laneOffset s="271.20475464007245" a="1.8409406847262324" b="0.013470221131762989" c="-0.00099699237048357018" d="0.00017303530792297636" /> - <laneOffset s="274.30159997545928" a="1.8782334431799494" b="0.012273618729833737" c="0.00061971957057673258" d="0.00017241928407258099" /> - <laneOffset s="276.06512574218544" a="1.9027512800864919" b="0.016068085476070026" c="0.0014040830269149386" d="-6.6651889571000097e-05" /> - <laneOffset s="284.46091849306885" a="2.0971829640417856" b="0.025550123373915198" c="-0.00028167015185018724" d="-6.4494960419034987e-05" /> - <laneOffset s="286.77399384478855" a="2.1539771303954631" b="0.023211869240613893" c="-8.0647404391467201e-05" d="1.1488291121050236e-05" /> - <laneOffset s="291.5205878095187" a="2.2635660253999927" b="0.023222767188333035" c="0.00083378613537491613" d="-0.00010356149480847961" /> - <laneOffset s="294.62023701067847" a="2.3404751753440762" b="0.025406654035770245" c="-0.00013124097586917041" d="-0.00010581167585479915" /> - <laneOffset s="299.27903920513108" a="2.4452919136406068" b="0.017294053704066652" c="-0.00096011784877366878" d="2.944410973423671e-05" /> - <laneOffset s="305.11438886859798" a="2.5193660798829964" b="0.0090966381170324712" c="0.00098798549150988686" d="-0.00050059050258799247" /> - <laneOffset s="308.3198320294207" a="2.5421890569735401" b="-0" c="-0.0007922619795784863" d="1.7224109078818253e-05" /> - <laneOffset s="314.93887404589765" a="2.5124735460631533" b="-0.0082241772730040647" c="-0.00046796529419855471" d="1.9834673147727914e-05" /> - <laneOffset s="317.74639226957447" a="2.486134369346126" b="-0.010382799338849094" c="-0.00091206605252434382" d="4.1427885786179643e-05" /> - <laneOffset s="325.09819256350727" a="2.3769675429722863" b="-0.01707605091987598" c="-2.4785054543413028e-06" d="4.1094344044508001e-05" /> - <laneOffset s="328.37121374209948" a="2.3224915975349445" b="-0.015771585173218316" c="-0.00043355394658587158" d="2.5529663196414061e-05" /> - <laneOffset s="335.25751108111689" a="2.2016610292317957" b="-0.018110814502531051" c="9.1209158760275109e-05" d="2.5726691288408685e-05" /> - <laneOffset s="343.9662708432345" a="2.0678481543064606" b="-0.01066864770976521" c="0.00020433006740494701" d="2.6453981555116414e-05" /> - <laneOffset s="345.41682959872645" a="2.0528833306254484" b="-0.0099088750623848084" c="0.0003144193148512265" d="2.4038204495971137e-05" /> - <laneOffset s="350.32857838259133" a="2.0146473405996228" b="-0.005080392725316245" c="0.001271440806749499" d="-0.00056919757750010385" /> - <laneOffset s="351.65540281589131" a="2.0088153298226046" b="-0.0047125892253183574" c="-0.0018094895075531116" d="0.00040074743736924235" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929726248807302" b="-0.003024329063173251" c="0.0090602465986045974" d="-0.0053850697265365299" /> - <width sOffset="1.0624523452258705" a="2.4935283486834754" b="-0.0020082492389601895" c="5.9677408105304655e-05" d="0.00023980401669195374" /> - <width sOffset="1.6572910738591329" a="2.492405352526557" b="-0.0016827005665627224" c="0.00032398195015994648" d="-1.4303805644046239e-05" /> - <width sOffset="10.159318517609602" a="2.4927272379733347" b="0.00072447723855174982" c="-3.8079817069514274e-05" d="-1.4288331468425808e-05" /> - <width sOffset="15.28168857674876" a="2.4935187027357042" b="-0.00079036124913003838" c="0.00042308913743728445" d="-7.3482549253332796e-05" /> - <width sOffset="17.531190507157156" a="2.4930452677361647" b="-2.4037655880688492e-06" c="0.00046639328078907727" d="-6.2816225327225387e-05" /> - <width sOffset="20.318637035219204" a="2.4953018991648865" b="0.0011334694165750587" c="-5.4396905988768991e-05" d="-6.1125483777844331e-05" /> - <width sOffset="23.423890917393891" a="2.4964668181449445" b="-0.00097258906679829654" c="8.9709644574357069e-05" d="-2.6903070827229506e-06" /> - <width sOffset="30.477955552828806" a="2.4931257263651929" b="-0.00010856145644879526" c="2.3974733446267467e-05" d="-1.647662514020309e-06" /> - <width sOffset="36.421344093145429" a="2.4929814677699347" b="1.8154193890877038e-06" c="0.0025305831971575549" d="-0.00022370237195555123" /> - <width sOffset="36.555185901817445" a="2.4930265063322388" b="0.00066718911921071855" c="-0.00079039175519243299" d="0.00010214111703642508" /> - <width sOffset="40.637274070438409" a="2.4895271895284692" b="-0.00067964025044117519" c="0.00045159575730135975" d="0.00010042650396857708" /> - <width sOffset="42.981582069657016" a="2.49170964947439" b="0.0030934847565627301" c="-0.0018093251126928812" d="-0.00022613868504355074" /> - <width sOffset="43.731458775655369" a="2.4929166156333218" b="-1.5403289904260091e-06" c="0.000322883296745521" d="-3.7158930484150476e-05" /> - <width sOffset="50.796592588048014" a="2.4959181945778028" b="-0.0010036013641092152" c="-0.00046383647529876228" d="-3.5816777596459008e-05" /> - <width sOffset="52.913228644678327" a="2.4913762347096151" b="-0.0034485407947344557" c="0.0018854662741463841" d="-0.00023207574620636963" /> - <width sOffset="57.162446712539158" a="2.4929607287350977" b="3.9964197725735062e-06" c="0.00074890303789763488" d="-0.00020016888187683319" /> - <width sOffset="60.476769509286726" a="2.4939129356229519" b="-0.0016281974870307582" c="0.00041814418993741591" d="-2.762645267888846e-05" /> - <width sOffset="60.955911105657613" a="2.4932257557278641" b="-0.0012465241046492985" c="0.00040751337535194427" d="-2.6153720826266164e-05" /> - <width sOffset="69.088960930933027" a="2.4959733065467011" b="0.00019219782619089203" c="-0.00028666051884111368" d="3.3383196735598402e-05" /> - <width sOffset="71.115229623267211" a="2.4954635179023432" b="-0.00055831397956028288" c="-8.1085776354456905e-05" d="2.3027576687784774e-05" /> - <width sOffset="75.338266039939143" a="2.4933939449142812" b="-1.1146417639595722e-05" c="-0.00022252758506767552" d="2.2101732206697516e-05" /> - <width sOffset="81.274548140876817" a="2.4901095178195911" b="-0.00031656111647318432" c="0.0001725370204598337" d="2.2395305217867844e-05" /> - <width sOffset="84.051829393915526" a="2.4910409185963829" b="0.0011600310774688041" c="-7.266582718379078e-05" d="-6.09391707599037e-06" /> - <width sOffset="90.864874122550887" a="2.4936441194387333" b="-0.00067871460649749163" c="0.00047931840276568068" d="-0.00010543262021300461" /> - <width sOffset="91.433866658486423" a="2.4933936943937529" b="-0.00023565964448423815" c="0.00024648590371578668" d="-7.6789330617913227e-05" /> - <width sOffset="92.614748579811163" a="2.4933326779357143" b="2.5237806789896611e-05" c="0.00042864092729466281" d="-0.00010141734168829607" /> - <width sOffset="96.197524390491267" a="2.4942611202624549" b="-0.00080877844950126836" c="0.00011461194004347449" d="-3.2216135474393525e-06" /> - <width sOffset="101.59318517609603" a="2.4927278750781419" b="0.00014666184470959909" c="5.8261225439485192e-05" d="-3.0485298836417797e-06" /> - <width sOffset="108.39409645637248" a="2.4954610896670557" b="0.00051611527718589613" c="-0.00037020280474953429" d="3.396826206212507e-05" /> - <width sOffset="111.75250369370562" a="2.4943056232803515" b="-0.00082109447180096524" c="-2.7943373164439131e-05" d="3.4237921833677369e-05" /> - <width sOffset="115.25953075977729" a="2.4925591509468368" b="0.00024621033046282184" c="-1.0029615906316848e-05" d="-5.0780423475486316e-06" /> - <width sOffset="118.75948262751832" a="2.4930803037537324" b="-1.0608938922227189e-05" c="6.258450257418936e-05" d="-4.9884376136046116e-06" /> - <width sOffset="121.91182221131523" a="2.4935125126484721" b="0.00023525229269335553" c="3.2401664911073293e-05" d="-1.8606592642181111e-06" /> - <width sOffset="130.71309578769367" a="2.4968244059041629" b="0.00037321063808042846" c="-0.00066632571207936829" d="7.7769762342073129e-05" /> - <width sOffset="132.07114072892483" a="2.4962971314626605" b="-0.0010063008206313612" c="-0.00036885042981788782" d="6.8359800380522168e-05" /> - <width sOffset="135.90441976404918" a="2.490870256334949" b="-0.00082067156442609704" c="0.00015600736470898119" d="-6.1006867359387231e-06" /> - <width sOffset="142.23045924653442" a="2.4903774273120387" b="0.00042071989372327318" c="4.25909246893778e-05" d="-6.067317855170066e-06" /> - <width sOffset="149.90479178279276" a="2.4933722574818709" b="2.4227621634406206e-06" c="0.0006422530909732673" d="-5.6393119317389126e-05" /> - <width sOffset="151.50629157905746" a="2.4947917529023771" b="0.0016256476633236781" c="-0.00056362258800963995" d="4.1320702475570685e-05" /> - <width sOffset="152.38977776414404" a="2.4958165506515302" b="0.00072650047820075909" c="-0.00046827308055849792" d="4.0673110430293201e-05" /> - <width sOffset="160.60472648800828" a="2.4927318501302853" b="0.0012673430360102683" c="-0.00076788528969313412" d="-6.1372178691066116e-05" /> - <width sOffset="161.35477866492147" a="2.4932245311649797" b="1.1855007710434505e-05" c="0.00010447976192869412" d="6.6995845646775303e-06" /> - <width sOffset="162.54909628175363" a="2.4933991323735829" b="0.00029008780138474563" c="0.00010463862672370993" d="-9.8869948867491217e-06" /> - <width sOffset="167.16032734556558" a="2.4959923459922586" b="0.00062441865209293581" c="-0.00024210838064865438" d="1.5367131909063012e-05" /> - <width sOffset="172.70841479936323" a="2.49462862657832" b="-0.00064299857430878183" c="2.2069319842640632e-05" d="1.3315745036660477e-05" /> - <width sOffset="176.16110482227393" a="2.4932197144761199" b="-1.4387811533392173e-05" c="-0.00056293343260139551" d="9.1754436162927894e-05" /> - <width sOffset="177.11837039552458" a="2.4927705800654629" b="-0.00083990183810301374" c="0.0011318348178984278" d="-0.00016854773822982841" /> - <width sOffset="181.86497169162953" a="2.4962595622348611" b="-0.001487419433236597" c="-0.00021742994787705755" d="0.00013777321589901229" /> - <width sOffset="182.86773331697285" a="2.4946883203852206" b="-0.0015078745811573011" c="0.00017685530357260327" d="0.00014628655299721296" /> - <width sOffset="184.36525612182695" a="2.4933181301025322" b="5.9906220995745336e-06" c="-0.00046289631424218893" d="6.3872125331226328e-05" /> - <width sOffset="189.19091829970881" a="2.4897452125086845" b="6.0165946434936977e-07" c="4.8717816545239452e-05" d="-2.2521615264133824e-06" /> - <width sOffset="193.02705183458244" a="2.4903373085155547" b="0.00027494986914337839" c="1.9931551939625537e-05" d="-1.4944522275982258e-06" /> - <width sOffset="203.18637035219206" a="2.4936207577949872" b="0.00021719673715360011" c="-2.4989138248856869e-05" d="-1.4553181563332707e-06" /> - <width sOffset="207.34635074365951" a="2.493987075249906" b="-6.6266662462280933e-05" c="-0.00011042405204048127" d="1.8527300468774421e-05" /> - <width sOffset="211.59706114820574" a="2.4931331667022918" b="-7.4424619963403549e-07" c="-0.00018891016247356816" d="1.8655712769374027e-05" /> - <width sOffset="213.34568886980165" a="2.492653982832485" b="-0.00049028068245454302" c="-9.0233144939054345e-05" d="1.8751345504350672e-05" /> - <width sOffset="219.07948463371338" a="2.4904110244992466" b="0.00032439345493867622" c="0.00020292933737277495" d="-2.7135414267591816e-05" /> - <width sOffset="223.50500738741124" a="2.4934690958518226" b="0.00052616850416667589" c="-0.00016190302306971966" d="-2.6113767651117957e-05" /> - <width sOffset="223.77811414549166" a="2.4936001881714565" b="0.00043189161828878931" c="9.7763532914122315e-05" d="-1.4655949458556057e-05" /> - <width sOffset="230.69075954673266" a="2.4964161690131896" b="-0.00031748807815655013" c="-0.00021554676985711076" d="2.8958136357889874e-05" /> - <width sOffset="233.66432590502086" a="2.4943275953130115" b="-0.00083122138308303582" c="3.4429467669530589e-05" d="3.5392554396817011e-05" /> - <width sOffset="236.1918156315987" a="2.4930180867389611" b="2.1103475030277014e-05" c="-0.00029315792705444189" d="4.641297478685478e-05" /> - <width sOffset="236.57133199592258" a="2.4929864085949767" b="-0.00018135803211425782" c="2.9879056391899359e-05" d="-1.1878458298005317e-06" /> - <width sOffset="243.82364442263045" a="2.4927895680599077" b="6.4598527403264203e-05" c="-2.2801998162049286e-06" d="-6.4829166025139517e-07" /> - <width sOffset="248.32366809174209" a="2.4929750119204765" b="4.6924884542047518e-06" c="0.00026564341748522302" d="-2.9375809144012334e-05" /> - <width sOffset="253.98296294024004" a="2.4961850189301442" b="0.00018888973950103661" c="-0.000232919775539203" d="-2.8493942442521304e-05" /> - <width sOffset="256.00928848200829" a="2.4953743315885291" b="-0.0011060408140129278" c="-3.3725155223772712e-05" d="1.532867286804458e-05" /> - <width sOffset="261.66717583023768" a="2.4908131847924007" b="-1.5576934946084746e-05" c="0.00054892507187816165" d="-0.00010283771272670614" /> - <width sOffset="264.14228145784966" a="2.4925781122359267" b="0.0008117210304770966" c="-0.00017543793233245643" d="-0.00013843055881248076" /> - <width sOffset="265.16995561773484" a="2.4930767700801795" b="1.2539543172901835e-05" c="0.0015264338542542771" d="-0.00023718543291712272" /> - <width sOffset="266.46421885885593" a="2.4951357271947616" b="0.002771813705786442" c="-0.0020492852169618106" d="0.00026608215510460717" /> - <width sOffset="271.20475464007245" a="2.4905690875363322" b="0.0012811308833480771" c="0.00063778103595853706" d="-0.00031547895209366379" /> - <width sOffset="273.20819876209305" a="2.4931587871072001" b="3.7850990796282555e-05" c="0.00098448135298804737" d="-0.00020364662218577372" /> - <width sOffset="274.30159997545928" a="2.4941109419007184" b="0.0014603225773080885" c="0.00033204608153858839" d="-0.00018901023330597668" /> - <width sOffset="276.06512574218544" a="2.4966822827418937" b="0.00086798762626346532" c="-0.00054009307420235168" d="5.0060940337614088e-05" /> - <width sOffset="282.32904934786978" a="2.4932315743994842" b="-5.531746231340201e-06" c="-0.00051197769861986405" d="8.5679696877852507e-05" /> - <width sOffset="284.46091849306885" a="2.4917230670770372" b="-0.0010202624265441794" c="3.7261661744408803e-05" d="8.4288849428015871e-05" /> - <width sOffset="286.77399384478855" a="2.490605617409082" b="0.00050503197551397816" c="-2.640681537030623e-05" d="8.3055978879342428e-06" /> - <width sOffset="291.5205878095187" a="2.4932960625609728" b="0.00081572631964483763" c="-0.00065897969281140988" d="0.00012335538381757621" /> - <width sOffset="294.28124865889492" a="2.4931211164282789" b="-2.3465203104165722e-06" c="-0.0005769306487153279" d="9.2249185937969669e-05" /> - <width sOffset="294.62023701067847" a="2.4930576175879113" b="-0.00036169013919690532" c="-0.00048110225295009172" d="9.4499366987122553e-05" /> - <width sOffset="299.27903920513108" a="2.4904859833291084" b="0.0013087563206115489" c="0.0001896691918233125" d="-4.0756418601924486e-05" /> - <width sOffset="304.77955552828809" a="2.4966406301532085" b="-0.00030402616379009324" c="-0.00048486434112879665" d="-3.9723122195571098e-05" /> - <width sOffset="305.11438886859798" a="2.4964829811061011" b="-0.00064208413644799983" c="-0.0019574195309983123" d="0.000490311490127979" /> - <width sOffset="308.3198320294207" a="2.4904612471378567" b="0.0019227761345752721" c="-0.00027601843048012165" d="-2.7503121538852568e-05" /> - <width sOffset="310.82818894173334" a="2.4931135279518339" b="1.8933749769998749e-05" c="-4.5416575575587788e-05" d="-3.3101279922618973e-06" /> - <width sOffset="314.93887404589765" a="2.4921939958657302" b="-0.0005222536989830627" c="-9.0307275961685443e-05" d="-8.0528195429152345e-06" /> - <width sOffset="317.74639226957447" a="2.4898377395282596" b="-0.001219753146838717" c="0.00045302678847669386" d="-2.9646032181364717e-05" /> - <width sOffset="325.09819256350727" a="2.4935759233784243" b="0.0006343595113997326" c="-0.00020297746635903959" d="-2.9713734672606738e-05" /> - <width sOffset="328.37121374209948" a="2.4924359189784679" b="-0.0016492796722124593" c="0.00033984490127095647" d="-1.4149053824505709e-05" /> - <width sOffset="335.25751108111689" a="2.4925738501198835" b="0.0010183756977066791" c="4.5701643854511985e-05" d="-1.4059302829432795e-05" /> - <width sOffset="343.9662708432345" a="2.4956226798628744" b="-0.0013844929090453748" c="0.00023740618463129374" d="-1.4786593095975791e-05" /> - <width sOffset="345.41682959872645" a="2.4940687919092817" b="-0.00078908799958244194" c="0.00017401823960402625" d="-1.2721514222229402e-05" /> - <width sOffset="349.95497732427197" a="2.4928826817935241" b="4.3624145379542525e-06" c="-0.0014568868596542763" d="0.00012847154846528587" /> - <width sOffset="350.32857838259133" a="2.49268766193337" b="-0.0010304312213765768" c="-0.0019157081670452612" d="0.00072170733045293393" /> - <width sOffset="351.65540281589131" a="2.4896337094493215" b="-0.0023024307050337912" c="0.0017722831468602754" d="-0.00024823768441639791" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.13592330881090436" weight="standard" type="solid"> - <type name="solid"> - <line length="355.57614811633607" space="0" width="0.13592299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.7921489849864813" b="4.5095947019213687e-10" c="-0.047630307339098454" d="0.014104011672886503" /> - <width sOffset="1.0624523452258705" a="3.7552986194818603" b="-0.053447826929929047" c="-0.010839357192236009" d="0.0084791379296579698" /> - <width sOffset="1.6572910738591329" a="3.721455093580289" b="-0.05734256652308288" c="0.0044554312928917839" d="0.0087332457519940562" /> - <width sOffset="2.9752048620204157" a="3.6736122584098525" b="-9.2579286828711291e-05" c="0.00025091582417977206" d="-8.8631355410059343e-06" /> - <width sOffset="10.159318517609602" a="3.68261099935531" b="0.0021403174430809175" c="6.8167490385403657e-05" d="-9.3929050590310168e-06" /> - <width sOffset="15.28168857674876" a="3.6941006760487465" b="0.0020993035165041136" c="-0.00075691363496274049" d="4.9801312701843958e-05" /> - <width sOffset="15.511896662577652" a="3.6945444470560695" b="0.001758726014078857" c="-0.00050087785852763456" d="4.6287539723421865e-05" /> - <width sOffset="20.318637035219204" a="3.6965661541856751" b="0.00015193288363304479" c="0.00017282169794823632" d="4.6607749295334976e-05" /> - <width sOffset="23.423890917393891" a="3.7000999582357439" b="0.0025735032645448986" c="-0.00010652860670129331" d="-1.1827427399832545e-05" /> - <width sOffset="25.23284157239295" a="3.7043366931563724" b="0.0020719845190464254" c="2.1939464284977873e-05" d="-7.1628796882148809e-06" /> - <width sOffset="30.477955552828806" a="3.7147744696951053" b="0.0017109558095782446" c="-0.00010382354378827114" d="-5.6014428633435206e-06" /> - <width sOffset="36.164010122385108" a="3.7201165635180824" b="-1.3041248515596176e-05" c="-1.719671457609309e-05" d="2.7258318588199732e-06" /> - <width sOffset="36.555185901817445" a="3.7201089938426888" b="-2.5243816947284702e-05" c="0.0032171548858141363" d="-0.00032311765713196434" /> - <width sOffset="40.637274070438409" a="3.7516358308797253" b="0.01008741719794784" c="-0.00075322126103934584" d="-0.00032577346245075614" /> - <width sOffset="42.981582069657016" a="3.7669471049071257" b="0.0011847141093645173" c="-7.7148423151482049e-05" d="7.9172656147189018e-07" /> - <width sOffset="50.796592588048014" a="3.7718717540048656" b="0.0001239452814996862" c="-4.9604922068325401e-05" d="-9.9500039942062753e-07" /> - <width sOffset="52.913228644678327" a="3.771902428221825" b="-9.9419099507237334e-05" c="-0.0026326590813578465" d="0.00019526396821049137" /> - <width sOffset="55.140420687256523" a="3.760779225107481" b="-0.0089205407909777757" c="-0.00037672347032452545" d="2.8134665682078361e-05" /> - <width sOffset="59.045991518059935" a="3.7218691581571814" b="-0.010575726207439008" c="-0.0025784199026746622" d="0.00079630958208337546" /> - <width sOffset="60.476769509286726" a="3.703791669015839" b="-0.013063581768427233" c="-0.00081990724717479206" d="0.00062376715287729481" /> - <width sOffset="60.955911105657613" a="3.6974127462375472" b="-0.013419677946739013" c="0.00011146949763656993" d="0.00062082559264350326" /> - <width sOffset="62.917268480105911" a="3.6762050237232708" b="-0.005817610615375602" c="-0.00037006773381606143" d="0.00062575814488091848" /> - <width sOffset="66.942682767618621" a="3.6876069030487959" b="0.021622317695879221" c="-0.0057810354487143672" d="0.00057086409263835177" /> - <width sOffset="69.088960930933027" a="3.7130280626574237" b="0.0046959707819418548" c="-0.0020492906895612614" d="0.00051132717507659765" /> - <width sOffset="70.824730105742532" a="3.7176789694975447" b="0.0022035042607656012" c="0.00032041992464395923" d="-3.2309951701449186e-05" /> - <width sOffset="71.115229623267211" a="3.7183453345634891" b="0.0023814880202580207" c="0.00032115096849832762" d="-2.3561503669872099e-05" /> - <width sOffset="81.274548140876817" a="3.7509805087413723" b="0.0016113657096534519" c="-0.00039489139301437535" d="-2.3071497097397692e-05" /> - <width sOffset="84.051829393915526" a="3.7519155751034958" b="-0.0011159547396798037" c="-0.00015532247046219205" d="5.4177251964612909e-06" /> - <width sOffset="90.864874122550887" a="3.7388161612978852" b="-0.0024779595635438852" c="-0.00072112747698178784" d="0.00010475642834306379" /> - <width sOffset="91.534807028844995" a="3.7368639427448396" b="-0.0033031263875636062" c="-0.0012219309179636734" d="0.00025808501031216358" /> - <width sOffset="95.31249977280504" a="3.7208613172389633" b="-0.0014859210254123934" c="0.00053175100837575908" d="9.7295083780448016e-05" /> - <width sOffset="96.197524390491267" a="3.7200301905222561" b="-0.00031607101506358646" c="1.4038832851267295e-05" d="-9.0064436057815471e-07" /> - <width sOffset="101.59318517609603" a="3.7185920158034103" b="-0.00024323525273600504" c="-1.5389895335940585e-05" d="-1.7644101346237626e-06" /> - <width sOffset="101.7334668677946" a="3.7185575866228238" b="-0.00024765725907318053" c="-0.0017279574078099306" d="0.00020414859183821502" /> - <width sOffset="106.84197808918782" a="3.6994144402745781" b="-0.0019193087394089199" c="6.0668534365238184e-05" d="5.7989418633353492e-08" /> - <width sOffset="108.39409645637248" a="3.6965818175923717" b="-0.0017305601444582114" c="0.0004272042400576878" d="-3.6958802527196506e-05" /> - <width sOffset="111.75250369370562" a="3.6941883178981634" b="-0.00011167234284136635" c="5.3512203598108152e-05" d="-3.8452063912608093e-05" /> - <width sOffset="115.25953075977729" a="3.6927962571109756" b="-0.0011551282041784923" c="-8.7388846534287016e-06" d="8.6390026863193477e-07" /> - <width sOffset="121.91182221131523" a="3.6849796041157141" b="-0.0011567049315678612" c="1.8971986851090878e-05" d="8.9915767159888086e-07" /> - <width sOffset="130.71309578769367" a="3.6768817603699833" b="-0.0006137968600918994" c="0.000692312048159871" d="-7.8731263934936991e-05" /> - <width sOffset="132.07114072892483" a="3.6771278259478519" b="0.00083097597117011218" c="0.00040986940617245991" d="-6.9416130122673406e-05" /> - <width sOffset="135.90441976404918" a="3.6824258668428662" b="0.00091325586223352478" c="-0.00012713600831869171" d="5.0443569937848206e-06" /> - <width sOffset="142.23045924653442" a="3.6843923633083713" b="-8.9671983563529168e-05" c="-2.4524338932649685e-05" d="5.7807053933685643e-06" /> - <width sOffset="146.5259173812756" a="3.6840128351523873" b="1.9620176240980501e-05" c="6.7856047122313263e-05" d="8.0575411386639174e-06" /> - <width sOffset="151.50629157905746" a="3.6867890399489767" b="0.0012950980135015557" c="0.0011231797287708303" d="-8.9656280655783888e-05" /> - <width sOffset="152.38252880115618" a="3.6887259032293453" b="0.0030569297482245924" c="0.00081232359628243889" d="-8.4029233470548915e-05" /> - <width sOffset="160.60472648800828" a="3.7220690337430558" b="-0.00062717157867143232" c="4.160344808212967e-05" d="1.8016055652708345e-05" /> - <width sOffset="161.26746301348754" a="3.7216769015227036" b="-0.0005482883096161981" c="-5.1872868973016327e-05" d="1.7540315471497082e-05" /> - <width sOffset="162.54909628175363" a="3.7209259171467521" b="-0.00059481798288334056" c="-1.2372179557526013e-05" d="6.8369987442826901e-06" /> - <width sOffset="167.16032734556558" a="3.7185903711861981" b="-0.00027278535798090832" c="0.00029218211694503801" d="-1.8417128051547552e-05" /> - <width sOffset="172.70841479936323" a="3.7229254464762729" b="0.001268610500146214" c="-2.8505887203407351e-06" d="-2.0945265434615955e-05" /> - <width sOffset="175.51154208669058" a="3.7259977918289957" b="0.00075889568523915556" c="-0.00014820006894057501" d="-1.9865718250918374e-05" /> - <width sOffset="177.11837039552458" a="3.7267521533337495" b="0.00012875782512674865" c="-0.0016752306260279445" d="0.00024043645614164354" /> - <width sOffset="181.86497169162953" a="3.7153327474039433" b="0.00047671564951657942" c="0.00069771538459423342" d="-6.5884497988244562e-05" /> - <width sOffset="182.86773331697285" a="3.7164459220745343" b="0.0016772533845009301" c="0.0004991221793523425" d="-5.8338759007272278e-05" /> - <width sOffset="189.19091829970881" a="3.7322586648693372" b="0.00099171936676637666" c="-0.00019447634773805326" d="7.7855278503536103e-06" /> - <width sOffset="193.02705183458244" a="3.7336406447739394" b="-0.00015664148520088132" c="-0.00011913615990102617" d="5.5225396913596952e-06" /> - <width sOffset="203.18637035219206" a="3.7255437422870368" b="-0.00086735287259817519" c="5.0027439172117083e-05" d="5.6068683049169266e-06" /> - <width sOffset="207.34635074365951" a="3.7232049580422157" b="-0.00016003862435959174" c="0.00018727345460039922" d="-1.4375750320481057e-05" /> - <width sOffset="208.23257888408071" a="3.7232002057875651" b="0.00013802322991248502" c="0.00022242713430686888" d="-1.8059057266889064e-05" /> - <width sOffset="213.34568886980165" a="3.7273069716555476" b="0.00099620981101574855" c="-4.5637864298823412e-05" d="-1.9330310486825276e-05" /> - <width sOffset="217.49626114805721" a="3.7292734234005733" b="-0.00038166098552673512" c="-0.00032502279152076528" d="-1.2225507043167951e-05" /> - <width sOffset="219.07948463371338" a="3.7278059507821126" b="-0.0015027616627112414" c="-0.00035370324719563096" d="3.3661252728701846e-05" /> - <width sOffset="223.50500738741124" a="3.7171456660457718" b="-0.0026556128837723889" c="9.3058845684501569e-05" d="3.4361919460684882e-05" /> - <width sOffset="223.77811414549166" a="3.7164280411910031" b="-0.0025970939959384901" c="-0.00015984983229675877" d="2.2904101268123505e-05" /> - <width sOffset="230.69075954673266" a="3.6984025277441464" b="-0.0015236698943264515" c="0.00032451011649941626" d="-2.0709984548198151e-05" /> - <width sOffset="233.66432590502086" a="3.6961966255467393" b="-0.00014312423335272051" c="0.00011180422305386297" d="-2.2499946907208923e-05" /> - <width sOffset="236.57133199592258" a="3.696172646739095" b="-6.3512970374572306e-05" c="-0.00035461175815793683" d="2.5100873712451655e-05" /> - <width sOffset="243.48912088137283" a="3.6870728504018464" b="-0.0013661041215177611" c="0.00038117872848909834" d="-4.0411955841505206e-05" /> - <width sOffset="243.82364442263045" a="3.6866569997707512" b="-0.0011246446262522317" c="0.00033844694882156456" d="-4.0508225285079585e-05" /> - <width sOffset="248.27694518566548" a="3.6847830813368949" b="-0.00052029623802904868" c="0.00044592329056697519" d="-3.8164441518226184e-05" /> - <width sOffset="253.98296294024004" a="3.6892427205994771" b="0.00084084941021263281" c="-0.00020363342540078778" d="-3.9658834429503648e-05" /> - <width sOffset="254.13858574249758" a="3.6893684947817698" b="0.00077458797434468846" c="0.013737791878698141" d="-0.0052997486160693769" /> - <width sOffset="256.00928848200829" a="3.7041980984291936" b="-0.0034666300050129259" c="-0.016377379516087563" d="-0.0053435712313790592" /> - <width sOffset="256.69628757305736" a="3.6923543246849686" b="-0.033535099578432516" c="-0.0041324657919506865" d="0.0029590638168727175" /> - <width sOffset="259.06885540374134" a="3.6290474445633141" b="-0.0031738062936258775" c="0.0011863055068621561" d="-0.00011368422710259665" /> - <width sOffset="261.66717583023768" a="3.6268157022871419" b="0.00068845895956849094" c="-2.2325155737242181e-05" d="4.4821584921373581e-06" /> - <width sOffset="264.14228145784966" a="3.6284509060825769" b="0.00066031981943422027" c="4.9996964538425381e-05" d="2.4123823581449321e-06" /> - <width sOffset="266.46421885885593" a="3.6302838800221222" b="0.00093151776943607972" c="0.0027215790762857937" d="-0.00050085520256094526" /> - <width sOffset="266.5146241651064" a="3.6303376840208692" b="0.0012020642623359447" c="0.0033510845967694653" d="-0.00042942260257881789" /> - <width sOffset="271.20475464007245" a="3.6653867485288703" b="0.0042976680444169208" c="-0.0015940098300840063" d="0.00015213850461951684" /> - <width sOffset="274.30159997545928" a="3.6679272239716667" b="-0.0011979051337067739" c="-0.00016607067357780989" d="0.00015101182015722059" /> - <width sOffset="276.06512574218544" a="3.66612644408979" b="-0.00037469419687590627" c="0.00050503494011427648" d="-8.8059353485821809e-05" /> - <width sOffset="276.80778454381607" a="3.6660906523960852" b="0.00022973776885160807" c="-0.00042634223568919247" d="0.00021350719791379461" /> - <width sOffset="280.20291823329939" a="3.6703119307475434" b="0.0047180093420225791" c="0.0011499800202835067" d="-0.00011249365523189234" /> - <width sOffset="284.46091849306885" a="3.7025664994580945" b="0.0083925187983151343" c="-0.00029854965505934884" d="-0.00010931483184516499" /> - <width sOffset="286.77399384478855" a="3.7190288461379692" b="0.0052567759009278618" c="-0.00040854212719052099" d="-3.3331580304783694e-05" /> - <width sOffset="287.89174995851209" a="3.7243476681200995" b="0.0042185436777793309" c="-0.00051057008625480117" d="6.3831672746239947e-05" /> - <width sOffset="291.5205878095187" a="3.7359829296475935" b="0.0030346868509627256" c="0.00093517706407485429" d="-5.121811318328237e-05" /> - <width sOffset="294.3138343784957" a="3.7506397973490047" b="0.0070602011584310828" c="-0.0017154686062045917" d="0.00015837095652379308" /> - <width sOffset="294.62023701067847" a="3.7526465646389715" b="0.0060535577843605463" c="-0.0015719069696555066" d="0.00015612077549934756" /> - <width sOffset="299.27903920513108" a="3.7625179506855417" b="0.0015726915290527506" c="0.0012600905949413459" d="0.0002913765610883613" /> - <width sOffset="301.50925121359114" a="3.7755250438600925" b="0.011541015963503083" c="0.0036997592166852443" d="-0.0068399459763374155" /> - <width sOffset="301.85242555352738" a="3.7796449023743977" b="0.011663747666439378" c="-0.0016024705186235434" d="0.00011256137120583081" /> - <width sOffset="304.77955552828809" a="3.8028791257064549" b="0.0051757765285829231" c="-0.00061259833327524877" d="0.00011356305630379489" /> - <width sOffset="305.11438886859798" a="3.8045477308660174" b="0.0048037356455950721" c="0.00093412907195192924" d="-0.00041647155601914464" /> - <width sOffset="308.3198320294207" a="3.8158271850406469" b="-0.0020452371787662228" c="-3.7202893212559974e-05" d="0.00010134305564767289" /> - <width sOffset="309.45778860693719" a="3.8136009564863835" b="-0.0017362066308581211" c="0.00034471723248162827" d="-7.1647467751039548e-06" /> - <width sOffset="314.93887404589765" a="3.8132609785573575" b="0.0013969062118628084" c="0.00019891460069699357" d="-3.0443030998474837e-06" /> - <width sOffset="317.54104356604921" a="3.8181892322914353" b="0.0023702836911444012" c="0.001045965376305226" d="-6.8767541514352267e-05" /> - <width sOffset="317.74639226957447" a="3.8187194778672389" b="0.0027911595714033965" c="0.00039244202247743333" d="-4.7174328985693321e-05" /> - <width sOffset="325.09819256350727" a="3.8417055517535568" b="0.00091229899250355392" c="-0.00065212779634801538" d="-4.7507870498629259e-05" /> - <width sOffset="325.20234417715858" a="3.8417934414973045" b="0.00077491263468973393" c="0.00042094512809318844" d="-2.1122337527778214e-05" /> - <width sOffset="328.37121374209948" a="3.8478039249328515" b="0.0028064383395496051" c="-0.00061444008576887232" d="-3.6687018375856063e-05" /> - <width sOffset="331.78911689237088" a="3.8487532872267129" b="-0.002679495133748034" c="-0.0005995265039471444" d="2.9384769986570345e-05" /> - <width sOffset="335.25751108111689" a="3.8334736314556324" b="-0.0057778085809461303" c="-0.00030120349182794989" d="3.1828069122907282e-05" /> - <width sOffset="336.63985837024944" a="3.8249952025000402" b="-0.0064280849949904222" c="0.00019958207302440536" d="-1.881140894186207e-05" /> - <width sOffset="343.9662708432345" a="3.7812155536197745" b="-0.0065328254190942271" c="-0.0007729001633639751" d="-1.8084118675177743e-05" /> - <width sOffset="345.41682959872645" a="3.770057835819189" b="-0.0088892531227788979" c="-0.00085662630951530649" d="-2.0499893750772245e-05" /> - <width sOffset="345.45908701794593" a="3.7696806677079486" b="-0.0089617605762852132" c="0.00023587321172673949" d="2.4019832743746848e-05" /> - <width sOffset="350.32857838259133" a="3.7344079176629967" b="-0.0049559244992949288" c="0.0011895789429047135" d="-0.00056921594925257778" /> - <width sOffset="351.08861719891371" a="3.73107848322962" b="-0.0041341103079639415" c="-0.011352752009950035" d="0.0069639817711762194" /> - <width sOffset="351.65540281589131" a="3.7263562884457877" b="-0.010291810893656219" c="-0.00032675245025404155" d="0.007933926786042848" /> - <width sOffset="352.0909700819206" a="3.7224671439773234" b="-0.0060608100000028326" c="0.00028857364463483301" d="0.00040005159678302145" /> - <width sOffset="353.56156023775992" a="3.7154505602677683" b="-0.0026165656351014839" c="0.10820490917799701" d="-0.035592226931837403" /> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.9752048620204157" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="63.967477905598201" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="66.942682767618621" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="189.75360480543873" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="256.69628757305736" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="96.865272664702559" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="353.56156023775992" type="none" width="0" /> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929726248807373" b="-6.3305249313406892e-05" c="4.5622133424412514e-05" d="-7.7806463578498214e-06" /> - <width sOffset="2.9752048620204157" a="2.492983207316442" b="1.5459343898326861e-06" c="6.5709896783302949e-06" d="-1.3232464158710156e-06" /> - <width sOffset="6.7259731700271042" a="2.4930116246965897" b="-5.0088813159077615e-06" c="-3.9452010952388059e-05" d="3.8740746481605901e-06" /> - <width sOffset="10.159318517609602" a="2.4926861634404114" b="-0.00013891248587642908" c="6.5358650810946536e-06" d="5.2429990042840201e-06" /> - <width sOffset="15.511896662577652" a="2.492933900297766" b="0.00038169219534426365" c="-0.00013091523109110958" d="8.7567720067611515e-06" /> - <width sOffset="20.318637035219204" a="2.4927163458972545" b="-0.00026988969487114298" c="-3.9461144647122304e-06" d="8.6968992215215251e-06" /> - <width sOffset="25.23284157239295" a="2.4923268619862946" b="0.00032140113472411795" c="-6.8384858235341519e-05" d="4.0323515099531991e-06" /> - <width sOffset="30.477955552828806" a="2.492713162905019" b="-6.3166880635573061e-05" c="-1.2153739072914702e-05" d="4.668400032482e-06" /> - <width sOffset="36.164010122385108" a="2.4928192723494993" b="0.00025142462960779611" c="-0.00011469656564215599" d="-3.6588746777894662e-06" /> - <width sOffset="37.164156844427659" a="2.4929523431580725" b="1.1017995998438204e-05" c="-5.6610586043535425e-05" d="4.9112283041767688e-06" /> - <width sOffset="40.637274070438409" a="2.492513496383288" b="-0.00020448669540722668" c="-1.5828395556860993e-05" d="2.388717824689871e-06" /> - <width sOffset="50.796592588048014" a="2.4913070909837711" b="0.00021353314090144138" c="5.9393746776566914e-05" d="2.4322369486913212e-06" /> - <width sOffset="55.140420687256523" a="2.4935546869557172" b="0.00086720608135956354" c="-0.00086017513804974852" d="0.00016956153947710089" /> - <width sOffset="57.890766648357079" a="2.4929607735813142" b="-1.6456946420620238e-05" c="-0.0015844888752514395" d="0.00038166242262682162" /> - <width sOffset="59.045991518059935" a="2.4914155997680556" b="-0.0021493023948968709" c="0.0022695711133150806" d="-0.00038651249377442493" /> - <width sOffset="60.955911105657613" a="2.4928967012035383" b="0.0022903417428831313" c="6.1557534166897679e-05" d="-0.000382279834644662" /> - <width sOffset="62.917268480105911" a="2.4947413128473386" b="-0.0018799885885651684" c="0.0019467152104026592" d="-0.00038721238688207277" /> - <width sOffset="66.942682767618621" a="2.4934611205358488" b="-0.005030440447037661" c="0.010238419432732709" d="-0.00033231833468327639" /> - <width sOffset="67.19270179939862" a="2.4928382196718477" b="2.6839804996393185e-05" c="0.00021668285151843231" d="-4.917144177163206e-05" /> - <width sOffset="70.824730105742532" a="2.4934381821063787" b="-0.00034511803749101566" c="-2.6166121598674319e-05" d="0.00049446568500206302" /> - <width sOffset="71.3247712416197" a="2.49332088975118" b="-3.7602471930330288e-07" c="4.207039714830614e-05" d="-2.0933597092972184e-06" /> - <width sOffset="81.274548140876817" a="2.495420058759108" b="0.0002150904541838145" c="-1.9031905888447719e-05" d="-1.8533929125963455e-06" /> - <width sOffset="91.433866658486423" a="2.4936975191713131" b="-0.00074548772673928764" c="-0.00011368801977853375" d="1.1121039781990252e-05" /> - <width sOffset="91.534807028844995" a="2.4936211224393139" b="-0.00076809921295317675" c="0.00060102244235499573" d="-0.00014220754171856699" /> - <width sOffset="93.284913156983023" a="2.4933554395729693" b="2.8916643403615033e-05" c="0.00051498873556330544" d="-0.00021126337873738477" /> - <width sOffset="95.31249977280504" a="2.4937702319965607" b="-0.00048829419422688058" c="0.00040114002414225647" d="-5.0473452205511632e-05" /> - <width sOffset="101.59318517609603" a="2.4940221714530404" b="-0.0014225057963090206" c="-0.0006197312144132956" d="-2.5106706110403139e-05" /> - <width sOffset="101.7334668677946" a="2.4938103549625334" b="-0.0015978619036897393" c="0.0010815277211055528" d="-0.00023101970824182785" /> - <width sOffset="102.9835135470114" a="2.493051705356029" b="2.3072606269472409e-05" c="0.0010575975271388098" d="-0.00020429935331974118" /> - <width sOffset="106.84197808918782" a="2.4971502348747432" b="-0.00094019452535298409" c="3.2812269353879448e-05" d="-2.0875090012708702e-07" /> - <width sOffset="111.75250369370562" a="2.4932998784817908" b="-0.00063304454300566922" c="2.9184566183164924e-05" d="-4.1582397012684406e-07" /> - <width sOffset="121.91182221131523" a="2.4894447507349389" b="-0.00016880769806668766" c="2.2231329622993662e-05" d="-5.03503496596765e-07" /> - <width sOffset="132.07114072892483" a="2.4894963598926561" b="0.00012700018416628817" c="1.4527424287181925e-05" d="-5.4195840252025499e-07" /> - <width sOffset="142.23045924653442" a="2.491717719655993" b="0.00025436821540154658" c="1.738514460643573e-06" d="-2.5911674885558074e-07" /> - <width sOffset="146.5259173812756" a="2.4928218885547389" b="0.00025496078880472232" c="-1.9488613014911629e-05" d="-2.5359524941516221e-06" /> - <width sOffset="150.27579300248016" a="2.4933702007964667" b="1.8226400889083741e-06" c="9.7470404629360244e-06" d="2.5221879729610958e-07" /> - <width sOffset="152.38252880115618" a="2.4934196596023277" b="4.6249813334233239e-05" c="8.6516765422719167e-05" d="-5.3754212648820428e-06" /> - <width sOffset="152.38977776414404" a="2.4934199994097019" b="4.7503279285222508e-05" c="7.3821764813959136e-05" d="-6.6571331426114497e-06" /> - <width sOffset="161.26746301348754" a="2.4950019946742921" b="-0.00021577573796186894" c="2.5817978136612095e-05" d="-6.1813929594116896e-06" /> - <width sOffset="162.54909628175363" a="2.4947548444963701" b="-0.00018005774700645253" c="7.2907716986169002e-06" d="1.7095666534668975e-07" /> - <width sOffset="172.70841479936323" a="2.4938573323229143" b="2.1015008064631863e-05" c="1.2051386269040066e-05" d="1.1468470204327858e-06" /> - <width sOffset="175.51154208669058" a="2.4940361941402975" b="0.00011561227657422648" c="-9.0915942191586652e-06" d="6.7299836793208306e-08" /> - <width sOffset="182.86773331697285" a="2.4944214717425961" b="-7.221235621680225e-06" c="-1.1446418494726034e-05" d="5.3077915896910803e-07" /> - <width sOffset="193.02705183458244" a="2.4937232583576865" b="-7.5448916420477793e-05" c="-8.1809870451999205e-07" d="8.0571822268328104e-08" /> - <width sOffset="203.18637035219206" a="2.4929567958589933" b="-6.7123690062493354e-05" c="2.2801619604384267e-06" d="1.2060563167523878e-07" /> - <width sOffset="208.23257888408071" a="2.4926916358229061" b="-3.4897959372439443e-05" c="-6.9268297663217508e-05" d="3.8039125783312435e-06" /> - <width sOffset="213.34568886980165" a="2.4912107498213389" b="-0.00044490354975024269" c="-1.0299962246530236e-05" d="4.1971432245589123e-06" /> - <width sOffset="217.49626114805721" a="2.4894868135648416" b="-0.00031348931545517426" c="8.0651051412477978e-05" d="-2.907660219036322e-06" /> - <width sOffset="223.50500738741124" a="2.4898842393898102" b="0.0003407905980374144" c="2.3908157494133788e-05" d="-2.6420162736915972e-06" /> - <width sOffset="233.66432590502086" a="2.4930437270496908" b="8.510381197849963e-06" c="-5.1166206330313855e-05" d="-2.4719309271924324e-06" /> - <width sOffset="233.74304185879242" a="2.4930440787106907" b="4.0923800959363071e-07" c="0.00011939458165604656" d="-8.9576140060651171e-06" /> - <width sOffset="243.48912088137283" a="2.4960964516138384" b="-0.0002248779918827765" c="-0.00035737311129732695" d="5.6555215522542761e-05" /> - <width sOffset="243.82364442263045" a="2.4959833495916861" b="-0.00044499082558315233" c="-0.00030730478085423533" d="5.6718972080770196e-05" /> - <width sOffset="248.27694518566548" a="2.4929165076174034" b="0.00019250079621392375" c="-0.00019820712937621243" d="5.4375188313918807e-05" /> - <width sOffset="250.02647890841604" a="2.4929377924912437" b="-1.7334556401101334e-06" c="-0.00068929324556347819" d="0.00020069870583872031" /> - <width sOffset="253.98296294024004" a="2.4945709475227651" b="0.0039689827750588481" c="0.0017023012124838879" d="0.00019485454053961871" /> - <width sOffset="254.13858574249758" a="2.4952305732482021" b="0.0045129737736831774" c="-0.01216666811960684" d="0.0054549443221692424" /> - <width sOffset="255.38826096394351" a="2.4925156688925911" b="-0.00033902771019329002" c="-0.011346421557700968" d="0.007563623852898143" /> - <width sOffset="256.69628757305736" a="2.4895862245831095" b="0.0088007044517790962" c="-0.0049241572358201631" d="-0.00073901119535267189" /> - <width sOffset="257.44580139850473" a="2.493105061192515" b="0.00017379147970892489" c="0.0071415092682799511" d="-0.0038321660800988053" /> - <width sOffset="259.06885540374134" a="2.4958151639000499" b="-0.0069293728720176825" c="0.0042250393169179943" d="-0.00075941803612347562" /> - <width sOffset="261.56724686975463" a="2.4930323864268433" b="-3.853935230996113e-05" c="-0.00038054494318305447" d="6.2503707947149709e-05" /> - <width sOffset="264.14228145784966" a="2.4914770501857335" b="-0.00075502278749669106" c="0.00011763910194996437" d="7.1470004605535576e-05" /> - <width sOffset="266.5146241651064" a="2.4913021880621353" b="0.0010098394285543563" c="-7.8949665503792136e-05" d="3.7401520686070706e-08" /> - <width sOffset="274.30159997545928" a="2.4943961732125324" b="-0.00021291509531043938" c="-7.3979069111800326e-05" d="2.3096574012631274e-08" /> - <width sOffset="276.80778454381607" a="2.4933982726005741" b="-0.00058329029204080493" c="0.00066137759772950488" d="-0.0003015434548268301" /> - <width sOffset="277.80566861089346" a="2.4931751648442444" b="-0.00016414009817444092" c="0.0011181353993454531" d="-0.00029113301484846285" /> - <width sOffset="280.20291823329939" a="2.4951965848931907" b="0.00017750457649086046" c="-0.00037728594462002097" d="3.486783829723062e-05" /> - <width sOffset="284.46091849306885" a="2.4918037871959839" b="-0.0011389417711371794" c="6.9040683999939834e-05" d="3.422076680797124e-05" /> - <width sOffset="287.89174995851209" a="2.4900908563912472" b="0.00054318947088443856" c="0.0004115159606759999" d="-6.2942486243363819e-05" /> - <width sOffset="294.3138343784957" a="2.4938800927160929" b="-0.0019590727094262843" c="0.0014203012934320572" d="-0.00027253155597174196" /> - <width sOffset="295.31123637208964" a="2.4930686277128769" b="6.0798019708534212e-05" c="2.4396183334532331e-05" d="-5.2423142766808801e-06" /> - <width sOffset="301.50925121359114" a="2.4931344530431572" b="-0.00024094277800891864" c="-0.0049909881215629065" d="0.0069234446116614185" /> - <width sOffset="301.85242555352738" a="2.4927437980411105" b="-0.0012204071761577808" c="0.00039720538093419589" d="-2.9062735881777647e-05" /> - <width sOffset="304.77955552828809" a="2.4918459081427322" b="0.00035789997680076187" c="0.00014520441402401254" d="-2.7751595992381206e-05" /> - <width sOffset="309.45778860693719" a="2.4938567642642608" b="-0.00010560286596580926" c="-0.00028022902446076718" d="8.0756206430336377e-05" /> - <width sOffset="311.95355735166373" a="2.493103115800432" b="4.6811589718680907e-06" c="8.5876233859268568e-05" d="3.9938054575549154e-06" /> - <width sOffset="314.93887404589765" a="2.493988686623136" b="0.00062419643786872266" c="0.00011102163960813977" d="-7.8435209976678721e-07" /> - <width sOffset="317.54104356604921" a="2.4963508905546838" b="0.0011860574735254818" c="-0.00076591756560911539" d="6.4938886424532782e-05" /> - <width sOffset="325.09819256350727" a="2.4895993082979988" b="0.00073582815574303045" c="0.00070150828521037679" d="6.4628040083808673e-05" /> - <width sOffset="325.20234417715858" a="2.4896836286562021" b="0.00088405776490451185" c="-0.00036621535931904135" d="3.8242506739070495e-05" /> - <width sOffset="331.78911689237088" a="2.4905468487023033" b="0.0010372225018121517" c="-1.622868333239194e-06" d="-2.782928162332935e-05" /> - <width sOffset="335.25751108111689" a="2.4929636751093938" b="2.1626417143498847e-05" c="-0.00028641219127596734" d="-3.0075517116482572e-05" /> - <width sOffset="335.29282448003318" a="2.4929640803208994" b="1.2855254068692284e-06" c="5.8572562195439569e-05" d="-1.2173611341747289e-05" /> - <width sOffset="336.63985837024944" a="2.4930423372384514" b="9.2816913686141408e-05" c="-0.00035941546857750631" d="3.8465866722923499e-05" /> - <width sOffset="345.41682959872645" a="2.4921774926222557" b="0.002673338431913285" c="0.00064975362932015055" d="3.8159067676655077e-05" /> - <width sOffset="345.45908701794593" a="2.49229162414274" b="0.0027284566756393108" c="-0.00044050719901928155" d="-6.3606583993933353e-06" /> - <width sOffset="351.08861719891371" a="2.4925563730552147" b="-0.0028359789851113066" c="0.01069652254964051" d="-0.0075395583788270167" /> - <width sOffset="351.8397468564927" a="2.4932659723382553" b="0.0004716109896347573" c="-0.0033030459716276955" d="-0.0071406116512895083" /> - <width sOffset="352.0909700819206" a="2.4930627686550828" b="-0.0025399913401221857" c="0.0010672418590215148" d="0.00039326353798683133" /> - <width sOffset="353.56156023775992" a="2.4928862532524576" b="0.0031504163573817332" c="-0.0032851825546414692" d="0.00085479223432446266" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5176801" s="0" t="2.8684260736475999" orientation="none" validLength="9.9962153464897376" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.9962153464897376" s="0" distance="0" tStart="2.8684260736475999" tEnd="2.8020652988151347" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273612257" s="9.9962153464897376" t="2.8020652988151347" orientation="none" validLength="57.332604482426632" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="57.332604482426632" s="9.9962153464897376" distance="0" tStart="2.8020652988151347" tEnd="2.7705470732235109" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542047713" s="67.328819828916366" t="2.7705470732235109" orientation="none" validLength="29.40636482324463" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="29.40636482324463" s="67.328819828916366" distance="0" tStart="2.7705470732235109" tEnd="2.9013943701208866" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810483169" s="96.735184652160996" t="2.9013943701208866" orientation="none" validLength="126.6466729626211" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="126.6466729626211" s="96.735184652160996" distance="0" tStart="2.9013943701208866" tEnd="2.9807085740633297" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078918625" s="223.38185761478209" t="2.9807085740633297" orientation="none" validLength="13.774937393872733" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.774937393872733" s="223.38185761478209" distance="0" tStart="2.9807085740633297" tEnd="2.8817527006066181" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741927" s="237.15679500865483" t="2.8817527006066181" orientation="none" validLength="16.504114708822755" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.504114708822755" s="237.15679500865483" distance="0" tStart="2.8817527006066181" tEnd="2.6259976832545946" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741928" s="253.66090971747758" t="2.6259976832545946" orientation="none" validLength="11.896007790593217" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.896007790593217" s="253.66090971747758" distance="0" tStart="2.6259976832545946" tEnd="2.6175784234290762" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741929" s="265.5569175080708" t="2.6175784234290762" orientation="none" validLength="14.617126905448629" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.617126905448629" s="265.5569175080708" distance="0" tStart="2.6175784234290762" tEnd="2.8878755014539412" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741930" s="280.17404441351943" t="2.8878755014539412" orientation="none" validLength="21.014397227877623" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="21.014397227877623" s="280.17404441351943" distance="0" tStart="2.8878755014539412" tEnd="3.5521897260114592" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741931" s="301.18844164139705" t="3.5521897260114592" orientation="none" validLength="7.043964492720761" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.043964492720761" s="301.18844164139705" distance="0" tStart="3.5521897260114592" tEnd="3.6306939472543331" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741932" s="308.23240613411781" t="3.6306939472543331" orientation="none" validLength="6.1268272531378329" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.1268272531378329" s="308.23240613411781" distance="0" tStart="3.6306939472543331" tEnd="3.5997755073944919" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741933" s="314.35923338725564" t="3.5997755073944919" orientation="none" validLength="22.798378600356273" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="22.798378600356273" s="314.35923338725564" distance="0" tStart="3.5997755073944919" tEnd="3.1780788742891275" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741934" s="337.15761198761192" t="3.1780788742891275" orientation="none" validLength="18.418536128724156" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.418536128724156" s="337.15761198761192" distance="0" tStart="3.1780788742891275" tEnd="2.9874971623436082" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5182997" s="73.008753889173121" t="-5.2246373892166096" orientation="none" validLength="42.586199639032614" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="42.586199639032614" s="73.008753889173121" distance="0" tStart="-5.2246373892166096" tEnd="-5.1348075291330932" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273618453" s="115.59495352820574" t="-5.1348075291330932" orientation="none" validLength="3.8578162394592965" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.8578162394592965" s="115.59495352820574" distance="0" tStart="-5.1348075291330932" tEnd="-5.2778421020722988" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5183005" s="136.12890367506142" t="-5.2826236371668109" orientation="none" validLength="7.9973715217469987" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.9973715217469987" s="136.12890367506142" distance="0" tStart="-5.2826236371668109" tEnd="-5.0888455197387792" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273618461" s="144.12627519680842" t="-5.0888455197387792" orientation="none" validLength="15.703519632823287" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.703519632823287" s="144.12627519680842" distance="0" tStart="-5.0888455197387792" tEnd="-5.0183450763359803" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542053917" s="159.82979482963171" t="-5.0183450763359803" orientation="none" validLength="46.70071507063011" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="46.70071507063011" s="159.82979482963171" distance="0" tStart="-5.0183450763359803" tEnd="-5.0149624030511077" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810489373" s="206.53050990026182" t="-5.0149624030511077" orientation="none" validLength="26.714994260910885" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="26.714994260910885" s="206.53050990026182" distance="0" tStart="-5.0149624030511077" tEnd="-5.1080583141890594" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078924829" s="233.2455041611727" t="-5.1080583141890594" orientation="none" validLength="11.698639084183213" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.698639084183213" s="233.2455041611727" distance="0" tStart="-5.1080583141890594" tEnd="-5.2693183561645469" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412774" s="74.016190018967237" t="-5.3526554365225447" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848230" s="114.80496829069862" t="-5.0587493921531621" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283686" s="151.15621843786175" t="-5.3861161706766723" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719142" s="182.8569559252507" t="-5.0926994408973476" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154598" s="230.57333054761898" t="-5.0465019375884204" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412819" s="26.062793249345123" t="3.0024175892050633" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848275" s="76.106935043033729" t="3.0105105520070712" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283731" s="114.96421935254506" t="3.0221556436154766" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719187" s="146.91731508066491" t="3.0140627993919065" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154643" s="182.96171400522542" t="3.0324166315935317" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741935" s="230.78080097913528" t="3.0003505867691764" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741936" s="278.86805566674411" t="2.9251273981583195" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="817.87974439579614" id="4940858" junction="-1"> - <link> - <successor elementType="junction" elementId="33555390" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-538.1102371028054" y="-4.6692597828805447" hdg="4.4034858438812607" length="185.49947398680288"> - <paramPoly3 aU="0" bU="185.37867808904514" cU="1.4018037868676987" dU="-1.2814378153947787" aV="0" bV="-0" cV="-1.2912101195245935" dV="0.96860788998138769" /> - </geometry> - <geometry s="185.49947398680288" x="-594.81185265841623" y="-181.29011419409738" hdg="4.4052402469225971" length="123.49692731269141"> - <paramPoly3 aU="0" bU="128.11966500779909" cU="-15.18034048509546" dU="10.554818476976754" aV="0" bV="-7.1054273576010019e-15" cV="2.2072828402180642" dV="-1.4496246601435745" /> - </geometry> - <geometry s="308.99640129949432" x="-631.42712478457906" y="-299.23374161105613" hdg="4.40574781877074" length="508.88334309630181"> - <paramPoly3 aU="0" bU="508.71444328492061" cU="0.37823102476613235" dU="-0.21357057028806342" aV="0" bV="-8.5265128291212022e-14" cV="-3.7016934036859919" dV="1.7570446186068351" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.59940432855757" b="0.0056567843369680383" c="-6.5060089023135398e-05" d="1.5979236407934841e-07" /> - <elevation s="10.097280795009828" a="156.65005376315494" b="0.0043917992916653777" c="-7.6792234320067533e-05" d="1.801080819892847e-06" /> - <elevation s="20.194561590019656" a="156.68842379243566" b="0.0033919018003353797" c="-3.0696927229634577e-05" d="-6.4337448253450185e-07" /> - <elevation s="30.291842385029483" a="156.71888073556062" b="0.0025752049233171304" c="-8.0215250348583014e-05" d="3.9369603610139594e-06" /> - <elevation s="40.389123180039313" a="156.740757929458" b="0.0021594724289285341" c="-9.9413224355512079e-05" d="1.0094806839806965e-05" /> - <elevation s="50.486403975049143" a="156.76281933712008" b="0.0032395164470726354" c="2.1025898365980096e-05" d="-4.0011642293495026e-07" /> - <elevation s="60.583684770058966" a="156.7972614339846" b="0.0035417435415372334" c="4.0507640428972573e-05" d="-2.4100529206954135e-06" /> - <elevation s="70.680965565068803" a="156.8346722977972" b="0.0036226261699981964" c="-3.9843126905657598e-06" d="-9.4190931592600225e-08" /> - <elevation s="80.778246360078626" a="156.8707477838837" b="0.0035133549902317649" c="8.9517367592630099e-06" d="-1.1499390298007081e-06" /> - <elevation s="90.875527155088449" a="156.90595196412653" b="0.0033424050141050948" c="-2.821661207886203e-05" d="1.7007322429312817e-06" /> - <elevation s="100.97280795009829" a="156.93857519039136" b="0.0032927777764872332" c="-4.9741400408603067e-06" d="1.419194634569205e-06" /> - <elevation s="111.07008874510811" a="156.97277717032759" b="0.0036264095042561882" c="3.5326043123933901e-05" d="-8.3321768917845123e-07" /> - <elevation s="121.16736954011793" a="157.01213794306719" b="0.0040849511307479739" c="2.1966274395992079e-05" d="-2.374505381408171e-08" /> - <elevation s="127.99965864248398" a="157.0410653266126" b="0.0043817857353435153" c="1.0819530465715242e-06" d="-1.8966832692792625e-07" /> - <elevation s="131.26465033512775" a="157.05537675296557" b="0.0043827851805068041" c="1.1595401211927998e-05" d="-1.0477990644508862e-06" /> - <elevation s="141.36193113013761" a="157.09973449892527" b="0.0042964639138406016" c="1.9366821581171883e-05" d="-2.8775147215232443e-06" /> - <elevation s="151.45921192514743" a="157.14212933493005" b="0.0038074366588818969" c="-4.2171108172907785e-05" d="2.8244153779868512e-06" /> - <elevation s="161.55649272015725" a="157.17918218155995" b="0.0038197001003798278" c="1.1838027454683663e-06" d="-6.1309092638616558e-09" /> - <elevation s="171.65377351516707" a="157.21786514914774" b="0.0038417312458102672" c="6.3659269684066035e-05" d="-4.0935036100854402e-06" /> - <elevation s="181.7510543101769" a="157.25893243883726" b="0.0038752418307952301" c="-6.111854503522337e-07" d="-6.1309092638623134e-09" /> - <elevation s="191.84833510518675" a="157.29799321870877" b="0.0038610239765518198" c="-0.00012918260700169989" d="6.8253639961596151e-06" /> - <elevation s="201.94561590019657" a="157.33083474009172" b="0.0033398794486745997" c="-2.6323711738897113e-05" d="3.4516745661306097e-06" /> - <elevation s="212.04289669520639" a="157.36542799677537" b="0.0038640308945955921" c="-1.589884766429262e-08" d="-6.1309092638632952e-09" /> - <elevation s="222.14017749021622" a="157.40443626916897" b="0.0038618345923138739" c="3.9860318758565219e-05" d="-2.6553929088586722e-06" /> - <elevation s="232.23745828522604" a="157.44476061454048" b="0.003854603869474494" c="-1.0366675306964174e-05" d="-6.1309092638644814e-09" /> - <elevation s="242.33473908023586" a="157.48261838537806" b="0.0036433781744809159" c="-2.895690999247614e-05" d="1.7863680093527296e-06" /> - <elevation s="252.43201987524571" a="157.5182933043948" b="0.0036049939491602382" c="1.3011298422592152e-05" d="-5.9591297643817897e-07" /> - <elevation s="262.52930067025551" a="157.55540703455316" b="0.0036854823519414299" c="3.3723216777363169e-06" d="-2.4947662999462821e-07" /> - <elevation s="272.62658146526536" a="157.59270738157713" b="0.0036772786808653211" c="-2.3911515542309853e-06" d="5.9579509548257627e-08" /> - <elevation s="282.72386226027521" a="157.62965544219466" b="0.0036472137244216757" c="-1.2377818725699611e-05" d="1.0959424073144103e-06" /> - <elevation s="292.82114305528501" a="157.66634864060407" b="0.0037324597874572913" c="4.2375875155212391e-05" d="-2.9073136806515756e-06" /> - <elevation s="302.91842385029486" a="157.70536378135387" b="0.0036989758162909439" c="-2.2312121672601999e-05" d="8.4983059819147024e-07" /> - <elevation s="313.01570464530465" a="157.74131341899894" b="0.0035083259394508726" c="-1.4321146992026107e-05" d="8.9600069906207489e-07" /> - <elevation s="323.1129854403145" a="157.77620026245307" b="0.0034931721218698663" c="2.743069861754597e-06" d="8.9758167748112098e-08" /> - <elevation s="333.21026623532435" a="157.81184387539568" b="0.0035760211185118193" c="1.4059276559861687e-05" d="-3.7898576151839206e-07" /> - <elevation s="343.30754703033415" a="157.84899522529906" b="0.0037440234746292616" c="1.8913015571480757e-05" d="-1.2509309779041674e-06" /> - <elevation s="353.404827825344" a="157.88744016488567" b="0.0037433472307121848" c="-2.672186559172463e-05" d="2.0053980741362528e-06" /> - <elevation s="363.50210862035379" a="157.9245778583396" b="0.0038170924301718884" c="2.2911281231830207e-05" d="-9.1696201339774181e-07" /> - <elevation s="373.59938941536365" a="157.96451204989864" b="0.0039993089053195433" c="1.9351073164429476e-05" d="-1.4935950696794473e-06" /> - <elevation s="383.6966702103735" a="158.00532952518267" b="0.0039332565321710316" c="-1.5846133085613578e-05" d="4.8635842657238789e-07" /> - <elevation s="393.79395100538329" a="158.04392981802403" b="0.0037620109576818306" c="-8.6359326566979768e-06" d="2.4638155530182896e-07" /> - <elevation s="403.89123180039314" a="158.081289064007" b="0.003662971636898737" c="5.3973058230706057e-06" d="-9.0930243475559305e-07" /> - <elevation s="413.98851259540294" a="158.11788930118499" b="0.0034938438558152268" c="9.1814571069457065e-06" d="-2.205636030468727e-06" /> - <elevation s="424.08579339041279" a="158.1518330857763" b="0.0030046319666532308" c="-2.723611464298726e-05" d="9.6336237701773831e-07" /> - <elevation s="434.18307418542264" a="158.18038658996304" b="0.0027492696350960031" c="-3.2344974497598543e-05" d="2.4204268636509959e-06" /> - <elevation s="444.28035498043243" a="158.20734075758693" b="0.0028364014950597607" c="1.8397558442149279e-06" d="-6.1309092639445616e-09" /> - <elevation s="454.37763577544229" a="158.23616196080178" b="0.0028716793257429784" c="6.2763203666746237e-05" d="-4.8583014809631366e-06" /> - <elevation s="464.47491657045208" a="158.26655566963703" b="0.0026531691672793665" c="-8.2201964894310455e-05" d="3.9238292784008754e-06" /> - <elevation s="474.57219736546193" a="158.28900401671496" b="0.0021932995019219191" c="2.2431968591529132e-05" d="-2.5271885567243916e-06" /> - <elevation s="484.66947816047173" a="158.31083576835107" b="0.0018733241429462213" c="-5.880936288786628e-05" d="2.9792234272781798e-06" /> - <elevation s="494.76675895548158" a="158.32682235333488" b="0.001596935725748997" c="6.7350334828411088e-06" d="-5.4510679801594896e-07" /> - <elevation s="504.86403975049143" a="158.3430725620571" b="0.0015662175535223692" c="-1.4277442573529747e-05" d="9.7852802418421701e-07" /> - <elevation s="514.96132054550128" a="158.35843880701998" b="0.0015771885674821233" c="5.4565402763649109e-05" d="-4.8731646577841028e-06" /> - <elevation s="525.05860134051102" a="158.37491057055934" b="0.0011885812846570832" c="-0.00011054067871759175" d="6.5929479419369973e-06" /> - <elevation s="535.15588213552087" a="158.3824290618148" b="0.00097281433384656803" c="3.8202706734180643e-05" d="-1.5573998111494577e-06" /> - <elevation s="545.25316293053072" a="158.39454350637695" b="0.0012679467834366708" c="-1.7257909723194251e-05" d="2.365567474160308e-06" /> - <elevation s="555.35044372554057" a="158.40802206806291" b="0.0016429757219569093" c="-3.1943456070662113e-06" d="-6.1309092639079117e-09" /> - <elevation s="565.44772452055042" a="158.42427966392529" b="0.001576592080831834" c="-3.6730978677150979e-06" d="4.7570440226333581e-07" /> - <elevation s="575.54500531556016" a="158.44031418884623" b="0.0016479169201031811" c="9.4822958228191691e-06" d="-3.6371849324646972e-07" /> - <elevation s="575.99646828679329" a="158.44106006151733" b="0.0016562563328320653" c="3.1455441164246694e-06" d="-3.3101818901350504e-07" /> - <elevation s="585.64228611057001" a="158.45703159846815" b="0.0016245434379446116" c="-2.4837274132837544e-05" d="2.2068243253735062e-06" /> - <elevation s="595.73956690557986" a="158.47317464084358" b="0.0017979564240394369" c="0.0001355597615810699" d="-1.1418384991775782e-05" /> - <elevation s="605.83684770058971" a="158.49339524384746" b="0.0010430393312229995" c="-2.7767646728792248e-05" d="2.6568859488201223e-08" /> - <elevation s="615.93412849559957" a="158.50112340404553" b="0.00049041036968880262" c="-0.0002722933857101942" d="1.7381668219603469e-05" /> - <elevation s="626.0314092906093" a="158.49620741122098" b="0.0003080129144896378" c="2.264109568792643e-05" d="-2.5298691823141981e-07" /> - <elevation s="636.12869008561916" a="158.50136543661048" b="0.00068786001177822552" c="3.3938240416602709e-05" d="-1.571666519257402e-06" /> - <elevation s="646.22597088062901" a="158.51015314623203" b="0.00089250974359338521" c="2.1996492797943044e-05" d="-1.9075256621233514e-06" /> - <elevation s="656.32325167563886" a="158.51944398323505" b="0.00075327348084303167" c="-1.7594815380961717e-06" d="-1.4092035223949995e-06" /> - <elevation s="666.42053247064871" a="158.52541987757292" b="0.00028671515128059102" c="-7.4556151970824619e-05" d="4.4442628156226923e-06" /> - <elevation s="676.51781326565845" a="158.52528877365427" b="0.00014043185382502695" c="1.3436211076064301e-05" d="2.2720201817869728e-07" /> - <elevation s="686.6150940606683" a="158.5283105409321" b="0.00048126344538317159" c="6.8975566440081617e-05" d="-4.9928851904497609e-06" /> - <elevation s="696.71237485567815" a="158.53506238158096" b="0.0003470447511837411" c="-5.3232594616516135e-05" d="2.1704437541549097e-06" /> - <elevation s="706.809655650688" a="158.53537366117223" b="-6.4100863184859947e-05" c="-2.5789724973990068e-05" d="1.6761776998523748e-06" /> - <elevation s="716.90693644569785" a="158.53382259638931" b="-7.2228560863003746e-05" c="1.330348936119934e-05" d="-4.6616452151398587e-07" /> - <elevation s="727.00421724070759" a="158.53396974068926" b="5.3846051916140412e-05" c="1.8369842751845017e-05" d="-1.3809455580380378e-06" /> - <elevation s="737.10149803571744" a="158.53496469743902" b="2.433730496006494e-06" c="-1.8102043468012017e-05" d="9.0329691231487615e-07" /> - <elevation s="747.19877883072729" a="158.53407359244756" b="-8.6841975829093031e-05" c="3.6267756110228394e-05" d="-3.5248666152470406e-06" /> - <elevation s="757.29605962573714" a="158.5332656654474" b="-0.00043256470878839541" c="-5.6723304476852716e-06" d="2.6568859487962442e-08" /> - <elevation s="767.39334042074699" a="158.52834696703823" b="-0.00053898844483288538" c="-0.00011060616312560011" d="5.6065515263635317e-06" /> - <elevation s="777.49062121575673" a="158.51739956057776" b="-0.0010577821993207786" c="-1.2467524971302329e-05" d="1.5469272112804235e-06" /> - <elevation s="787.58790201076658" a="158.50704022290313" b="-0.00083640714002526726" c="3.2604685792518885e-05" d="-1.3168047636675069e-06" /> - <elevation s="797.68518280577644" a="158.50056338871204" b="-0.00058073460757751745" c="4.7074582060854881e-06" d="1.8237376887982262e-07" /> - <elevation s="807.78246360078629" a="158.49536724574082" b="-0.00042988775661327334" c="8.6586897485182947e-06" d="2.6568859470978035e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025306463718310992" b="8.7522930405027947e-06" c="-4.3339851679808558e-07" d="-1.3164579303435933e-23" /> - <superelevation s="10.097280795009828" a="0.025350650898526075" b="0" c="-1.0606016440306288e-05" d="5.9309932714221617e-07" /> - <superelevation s="20.194561590019656" a="0.02487989105986254" b="-3.2775385161121845e-05" c="4.1645506318547529e-06" d="-2.7662756319193963e-07" /> - <superelevation s="30.291842385029483" a="0.024688766364253184" b="-3.3284866483975352e-05" c="-1.7681884956187054e-06" d="3.4302974447135992e-08" /> - <superelevation s="40.389123180039313" a="0.024207717773636318" b="-5.8500570505787339e-05" c="-6.3317271273280225e-06" d="5.2056313661204435e-07" /> - <superelevation s="50.486403975049143" a="0.023507372990122774" b="-2.7144856088631245e-05" c="4.0324999333554027e-06" d="-2.662432929697404e-07" /> - <superelevation s="60.583684770058966" a="0.023370328373089253" b="-2.7144856088631245e-05" c="-9.9759578246120713e-06" d="6.2878632789717282e-07" /> - <superelevation s="70.680965565068803" a="0.022726455639907463" b="-3.6281070737529922e-05" c="1.7965762998024377e-06" d="5.2658317213743813e-23" /> - <superelevation s="80.778246360078626" a="0.022543285560517237" b="0" c="4.2460402991359321e-06" d="-2.8034216243210739e-07" /> - <superelevation s="90.875527155088449" a="0.022687587352537304" b="0" c="-6.4558864769222808e-06" d="3.6256359388117557e-07" /> - <superelevation s="100.97280795009829" a="0.022402624938097315" b="-1.9478197013322132e-05" c="6.687253365839272e-07" d="1.953011087139462e-08" /> - <superelevation s="111.07008874510811" a="0.022294233703289233" b="0" c="5.7571298587099415e-06" d="-1.3423363579095297e-07" /> - <superelevation s="121.16736954011793" a="0.022743012959831277" b="7.5205310506352871e-05" c="7.0937654904557399e-06" d="-4.0084307244171805e-07" /> - <superelevation s="131.26465033512775" a="0.023812971978206327" b="9.5856832711247353e-05" c="5.3661739393143254e-07" d="-1.5228872495976263e-07" /> - <superelevation s="141.36193113013761" a="0.024678799671842774" b="6.0113758563941348e-05" c="-1.6628998021904114e-06" d="-8.6744823415866833e-08" /> - <superelevation s="151.45921192514743" a="0.025026942977933415" b="0" c="-4.2100665006475285e-06" d="2.7796701482430469e-07" /> - <superelevation s="161.55649272015725" a="0.02488386375640772" b="0" c="1.0814119148862605e-06" d="0" /> - <superelevation s="171.65377351516707" a="0.024994119194111666" b="2.183863951935167e-05" c="2.0093632398022316e-06" d="-9.0972555230360963e-08" /> - <superelevation s="181.7510543101769" a="0.025325841426845176" b="3.4591506932523216e-05" c="1.5460222935330335e-07" d="1.7440478486706098e-09" /> - <superelevation s="191.84833510518675" a="0.025692679511352099" b="3.8247074786097462e-05" c="2.1546468774591213e-06" d="-1.945894549531467e-07" /> - <superelevation s="201.94561590019657" a="0.026098224334251109" b="2.2241073836135823e-05" c="-1.1013397709573247e-06" d="0" /> - <superelevation s="212.04289669520639" a="0.026210511518104114" b="0" c="-4.2708815375807388e-06" d="2.8198228970657226e-07" /> - <superelevation s="222.14017749021622" a="0.026065365495937597" b="0" c="8.3083736890405476e-07" d="-5.4855519076290637e-08" /> - <superelevation s="232.23745828522604" a="0.026093601525924048" b="0" c="-1.5565700947377931e-05" d="1.0277156964919782e-06" /> - <superelevation s="242.33473908023586" a="0.025564600766978775" b="0" c="2.813711177798778e-06" d="-1.8577352556075194e-07" /> - <superelevation s="252.43201987524571" a="0.025660224815875789" b="0" c="-2.2070269689565312e-06" d="1.1423689361788591e-07" /> - <superelevation s="262.52930067025551" a="0.025552810554043549" b="-9.6288473595074765e-06" c="-6.5379691669783278e-07" d="7.4647219094131797e-08" /> - <superelevation s="272.62658146526536" a="0.025465774464833318" b="0" c="2.0108740563715062e-05" d="-1.3276670535994103e-06" /> - <superelevation s="282.72386226027521" a="0.0261491705454596" b="0" c="-9.067189833808698e-06" d="5.9865555343637454e-07" /> - <superelevation s="292.82114305528501" a="0.02584102185881831" b="0" c="1.8885559513568289e-06" d="-4.0302901644070709e-08" /> - <superelevation s="302.91842385029486" a="0.025992079140389639" b="2.5811302857918242e-05" c="1.3537217366911864e-06" d="-2.7637660129248244e-08" /> - <superelevation s="313.01570464530465" a="0.026362269804101189" b="4.4695720342137527e-05" c="9.5756267713024315e-07" d="-1.6041088032644686e-08" /> - <superelevation s="323.1129854403145" a="0.02689468961764923" b="5.9126867587091554e-05" c="7.7565816418517901e-06" d="-7.054336558103695e-07" /> - <superelevation s="333.21026623532435" a="0.027556310973213649" b="0" c="-1.3032380876345156e-06" d="0" /> - <superelevation s="343.30754703033415" a="0.02742343923044234" b="-2.6318321827194574e-05" c="-9.3581387418916505e-06" d="6.6371036343505031e-07" /> - <superelevation s="353.404827825344" a="0.026886855253687725" b="-1.2295902504328393e-05" c="1.8266159108507147e-06" d="-1.2060117622647381e-07" /> - <superelevation s="363.50210862035379" a="0.026824777663580591" b="-1.2295902504328393e-05" c="-8.8636279752454664e-06" d="5.1058475071255692e-07" /> - <superelevation s="373.59938941536365" a="0.026322561795191435" b="-3.5122857081856957e-05" c="8.6377456155860037e-07" d="5.7800973374328507e-08" /> - <superelevation s="383.6966702103735" a="0.026115486963023571" b="0" c="4.577599332172581e-06" d="-3.0223314079006441e-07" /> - <superelevation s="393.79395100538329" a="0.026271056797562538" b="0" c="-1.0848811403610942e-05" d="7.1628600635875719e-07" /> - <superelevation s="403.89123180039314" a="0.025902359654686291" b="0" c="7.5062898784963185e-06" d="-3.7640731078775346e-07" /> - <superelevation s="413.98851259540294" a="0.026280164353081881" b="3.645632142935935e-05" c="3.3252365996152731e-06" d="-3.3873746914578994e-07" /> - <superelevation s="424.08579339041279" a="0.026638579083137041" b="0" c="-1.3979396600713767e-05" d="6.7940416469035766e-07" /> - <superelevation s="434.18307418542264" a="0.025912734162670616" b="-7.4501668868754271e-05" c="-8.1557713859702065e-06" d="7.820564955977494e-07" /> - <superelevation s="444.28035498043243" a="0.025134050542607735" b="0" c="2.2996256181922975e-07" d="0" /> - <superelevation s="454.37763577544229" a="0.025157496393869296" b="4.643993118057836e-06" c="1.7502484938890364e-05" d="-9.372300076229722e-07" /> - <superelevation s="464.47491657045208" a="0.026024006038656927" b="7.1432923515291695e-05" c="2.8010788097852057e-06" d="-4.1848325996241068e-07" /> - <superelevation s="474.57219736546193" a="0.026600052967354015" b="0" c="-1.7987333517304641e-05" d="1.168514210949313e-06" /> - <superelevation s="484.66947816047173" a="0.025969102182468" b="-5.8384368965812856e-06" c="2.8910936593285872e-07" d="0" /> - <superelevation s="494.76675895548158" a="0.025939626014093636" b="0" c="2.0467502775680927e-05" d="-1.3513541048791461e-06" /> - <superelevation s="504.86403975049143" a="0.026635214637995192" b="0" c="-1.863562906307247e-05" d="1.2304057855709936e-06" /> - <superelevation s="514.96132054550128" a="0.026001882290732754" b="0" c="2.8363985067010014e-06" d="-1.8727144230110639e-07" /> - <superelevation s="525.05860134051102" a="0.026098277369103372" b="0" c="-7.2883187163751313e-06" d="3.3534773421604198e-07" /> - <superelevation s="535.15588213552087" a="0.025700426373928342" b="-4.4613186546114589e-05" c="-4.6825372811936102e-06" d="4.1262782744211225e-07" /> - <superelevation s="545.25316293053072" a="0.025197333625670823" b="-1.2966465274264242e-05" c="6.4207708676734404e-07" d="0" /> - <superelevation s="555.35044372554057" a="0.025131870605274328" b="0" c="1.49387521354196e-05" d="-8.8869727903100092e-07" /> - <superelevation s="565.44772452055042" a="0.025740065908624293" b="2.9859944996223695e-05" c="-3.1721932378766082e-06" d="1.677263501971623e-07" /> - <superelevation s="575.54500531556016" a="0.025890818033199502" b="1.7100553360759089e-05" c="1.1678623654007241e-06" d="-9.4371495979628412e-08" /> - <superelevation s="585.64228611057001" a="0.02608540408669156" b="1.1820061715326207e-05" c="-1.7559274554145243e-06" d="1.1593401504574621e-07" /> - <superelevation s="595.73956690557986" a="0.026145079327768557" b="1.1820061715326207e-05" c="1.9221943625848261e-05" d="-1.3077615105670881e-06" /> - <superelevation s="605.83684770058971" a="0.026877904579077797" b="0" c="-3.514116515711139e-05" d="1.9581495364685287e-06" /> - <superelevation s="615.93412849559957" a="0.02531093866724678" b="-0.00011073054939421551" c="2.2420455895126408e-06" d="2.13994313313143e-07" /> - <superelevation s="626.0314092906093" a="0.024641749679439596" b="0" c="8.7481618618880488e-06" d="-4.135648757304187e-07" /> - <superelevation s="636.12869008561916" a="0.025107916970906839" b="5.0170174226825034e-05" c="6.1578832146100368e-06" d="-5.7059745332387116e-07" /> - <superelevation s="646.22597088062901" a="0.025654914352845233" b="0" c="-7.3636521004013223e-06" d="4.8618053710991123e-07" /> - <superelevation s="656.32325167563886" a="0.025404660441191006" b="0" c="1.7713493279587459e-05" d="-9.7314730416267449e-07" /> - <superelevation s="666.42053247064871" a="0.02620881600988478" b="6.0064298862091961e-05" c="-5.7382787067908215e-06" d="3.7628831894833732e-07" /> - <superelevation s="676.51781326565845" a="0.02661763262392287" b="5.9275792464254778e-05" c="1.1452567616840367e-05" d="-9.4994572160105579e-07" /> - <superelevation s="686.6150940606683" a="0.027405864651601396" b="0" c="-2.1080712911891113e-05" d="1.2647314537928538e-06" /> - <superelevation s="696.71237485567815" a="0.02655858079985721" b="-3.8878367685191738e-05" c="5.7755699491498617e-06" d="-3.8132840358394697e-07" /> - <superelevation s="706.809655650688" a="0.026362297902172701" b="-3.8878367685191738e-05" c="-5.6271198979107785e-06" d="3.4999680591656767e-07" /> - <superelevation s="716.90693644569785" a="0.025756329535310041" b="-4.5463730571127698e-05" c="2.2101927466142393e-06" d="-7.6186906826722099e-08" /> - <superelevation s="727.00421724070759" a="0.025444177795042003" b="-2.4132783440265473e-05" c="-3.7513326895592474e-07" d="1.0366799285428958e-07" /> - <superelevation s="737.10149803571744" a="0.025268978553786996" b="0" c="9.6790608202900478e-06" d="-3.8611507913762703e-07" /> - <superelevation s="747.19877883072729" a="0.025858314438973594" b="7.7365209154141979e-05" c="1.3306892742289816e-05" d="-1.1315181681513982e-06" /> - <superelevation s="757.29605962573714" a="0.026831335034975073" b="0" c="-3.6225598282404338e-05" d="2.2038797216156157e-06" /> - <superelevation s="767.39334042074699" a="0.025406777281814955" b="-5.7469879280982952e-05" c="2.8458097010328575e-06" d="0" /> - <superelevation s="777.49062121575673" a="0.025116632527637257" b="0" c="1.7327862630579038e-05" d="-1.1440613225389417e-06" /> - <superelevation s="787.58790201076658" a="0.025705520398055962" b="0" c="-2.7037099964493009e-06" d="1.5029159301554908e-07" /> - <superelevation s="797.68518280577644" a="0.025584583976396239" b="-8.6312641236680501e-06" c="1.1861735806417906e-06" d="-8.4657519467911289e-08" /> - <superelevation s="807.78246360078629" a="0.02553121580311082" b="-1.0570801063944613e-05" c="-1.5728861095656432e-06" d="3.4644251277807331e-08" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="7.2823514354812344" b="3.7429997470147675e-05" c="-0.058143958962243572" d="0.090730133388138873" /> - <laneOffset s="0.42690793237417513" a="7.2788298353318011" b="-0" c="0.0091716202663326262" d="-0.007195728827293294" /> - <laneOffset s="1.2766361055226285" a="7.2810372546859981" b="-0" c="-0.00017741470567141711" d="8.547111515441207e-06" /> - <laneOffset s="10.097280795009828" a="7.2730994281057333" b="-0.0011348315970890214" c="4.4733045865270566e-05" d="9.1537790170425108e-06" /> - <laneOffset s="14.928761472652784" a="7.2696931076176403" b="-6.1542268442771973e-05" c="-3.9615622588097792e-06" d="7.2295580847166616e-07" /> - <laneOffset s="20.194561590019656" a="7.2693647508882773" b="-4.3124090822056163e-05" c="7.3541574461228001e-07" d="6.6908612529568588e-08" /> - <laneOffset s="30.291842385029483" a="7.2690731745517176" b="-7.8076735539691437e-06" c="-7.1765300185480643e-06" d="2.6655140932895306e-06" /> - <laneOffset s="32.524139271816345" a="7.2690496346144116" b="-0" c="0.00022759905272314157" d="-1.3419433406937621e-05" /> - <laneOffset s="38.206723489549717" a="7.273936734418851" b="0.0012866900646721141" c="0.00025881955189035701" d="-2.4404650447334647e-05" /> - <laneOffset s="40.389123180039313" a="7.2777238561720754" b="0.0020676770685976406" c="7.6806120779447461e-05" d="-2.7431957984897216e-05" /> - <laneOffset s="45.16247035852156" a="7.2863601132423614" b="0.00092582303725548666" c="-0.00024674575618036402" d="3.20283142232299e-05" /> - <laneOffset s="49.039770684440263" a="7.288107271092235" b="0.00045689716804885613" c="-1.5173913008203248e-05" d="6.4893339358867857e-06" /> - <laneOffset s="50.486403975049143" a="7.2887561246326849" b="0.000453736612094772" c="-1.8280579621511853e-06" d="2.404838192698534e-08" /> - <laneOffset s="60.583684770058966" a="7.2931760078824794" b="0.00042417534705808192" c="-4.9752401490107405e-06" d="1.889069839759871e-07" /> - <laneOffset s="70.680965565068803" a="7.2971462483596552" b="0.00038148263312536522" c="-1.1128187210078038e-05" d="3.0572044050717008e-06" /> - <laneOffset s="72.562577791224101" a="7.2978450182211718" b="0.00037207653853844262" c="2.6514317473162838e-05" d="-2.5856525714799624e-06" /> - <laneOffset s="80.778246360078626" a="7.3012576841084087" b="0.0002841692238451627" c="-3.6402594940016673e-05" d="-3.0532092455748692e-06" /> - <laneOffset s="83.646422810697175" a="7.301701227884613" b="-0" c="-0.001415585123366953" d="0.0003791732152318965" /> - <laneOffset s="86.135320701337477" a="7.2987782273521651" b="-0" c="0.00019887061632382355" d="-7.7269038542769479e-06" /> - <laneOffset s="90.875527155088449" a="7.3024237668879026" b="0.0013645152329599724" c="8.7947893522342734e-05" d="-7.1067144379648144e-06" /> - <laneOffset s="94.857102721586642" a="7.3088023467858774" b="0.0017268705630586532" c="0.0001273727331356992" d="-7.999468682569267e-06" /> - <laneOffset s="100.97280795009829" a="7.3222975660268936" b="0.0023872339492307182" c="-2.7801409357126525e-05" d="-5.9039733803100642e-06" /> - <laneOffset s="102.56006413495017" a="7.3259930660732193" b="0.0022543549350667381" c="0.00015699077181276352" d="-1.3352445213949935e-05" /> - <laneOffset s="111.07008874510811" a="7.3483179179051357" b="0.0020253725669025827" c="-0.00018180473297164804" d="-1.3964115939254154e-05" /> - <laneOffset s="114.14970158845476" a="7.352423191148147" b="0.00050828851943444616" c="-9.0870877060339532e-06" d="-3.8201851427791361e-07" /> - <laneOffset s="121.16736954011793" a="7.3554106463328335" b="0.00032430763339439251" c="-7.7158798760129862e-06" d="-3.5605480611529233e-07" /> - <laneOffset s="131.26465033512775" a="7.3575320510167739" b="5.958403387515968e-05" c="9.267736477811219e-06" d="-6.5641453774157341e-06" /> - <laneOffset s="133.53727869777697" a="7.357638281384685" b="-0" c="-6.5543731226682902e-05" d="1.6664210362434154e-06" /> - <laneOffset s="141.36193113013761" a="7.3544236795934106" b="-0.00071963301980631426" c="6.9404475688821556e-07" d="-7.6191170600011249e-06" /> - <laneOffset s="142.82487134458427" a="7.3533485296271168" b="-0.00076652149530753353" c="2.6234275074048179e-06" d="-1.4825779924306525e-06" /> - <laneOffset s="151.45921192514743" a="7.345971359034178" b="-0.0010528051017888495" c="-3.4606113416611701e-05" d="-1.2815047792632532e-06" /> - <laneOffset s="161.55649272015725" a="7.3304933517282205" b="-0.0021436281553397522" c="-7.3605237108230047e-05" d="-1.4075385403629016e-06" /> - <laneOffset s="166.80986895426599" a="7.3169966435720371" b="-0.00303351574684927" c="-0.00011405552342806924" d="4.7215117019707578e-06" /> - <laneOffset s="171.65377351516707" a="7.3001630723142252" b="-0.0038061155726965461" c="-4.0548514292640388e-05" d="4.6113263586232379e-06" /> - <laneOffset s="177.12051984683339" a="7.2788975762949537" b="-0.0038360196275459587" c="7.6251287417248339e-05" d="-3.8770743790400545e-06" /> - <laneOffset s="181.7510543101769" a="7.2623847798829173" b="-0.0033792461340580674" c="2.8680951017972943e-05" d="-3.3908431093044196e-06" /> - <laneOffset s="191.84833510518675" a="7.2276969833439857" b="-0.0038371879381333008" c="-6.9811714617864232e-05" d="-3.4062296661915865e-06" /> - <laneOffset s="201.94561590019657" a="7.1783275522867216" b="-0.006288852157446843" c="-0.00016190211247307386" d="-7.7399100762064845e-06" /> - <laneOffset s="203.26420273981043" a="7.1697359156138267" b="-0.0067561876245332657" c="0.00017675943132157006" d="-5.985203631925729e-05" /> - <laneOffset s="207.8526457398587" a="7.1366750348524599" b="-0.0089144265262032923" c="-0.00087232597731137394" d="0.00010071062902865046" /> - <laneOffset s="212.82273524618435" a="7.0831857788565022" b="-0.010122304561334018" c="0.00042291084619569335" d="-3.6827517428553574e-05" /> - <laneOffset s="220.81722009233712" a="7.0104754379667931" b="-0.010421533313412831" c="-0.00041919351393105841" d="6.4363735863493695e-05" /> - <laneOffset s="222.14017749021622" a="6.9961035458184027" b="-0.011192732259812294" c="-0.0001655038223441783" d="6.3193012674585248e-05" /> - <laneOffset s="224.77916087098703" a="6.9665748966952528" b="-0.010745983286503608" c="0.00034946669830320665" d="-2.7598261432107474e-05" /> - <laneOffset s="232.23745828522604" a="6.8944177850024415" b="-0.010138689398523987" c="-0.00027500151627187831" d="-2.5341155360788379e-05" /> - <laneOffset s="234.38156385778655" a="6.8711653465317886" b="-0.011667448185212832" c="-0.00024730645773088079" d="1.4936436246422255e-05" /> - <laneOffset s="238.662873033149" a="6.8178524957265036" b="-0.012963701923062175" c="-0.00029715352336589742" d="4.3961312280208726e-05" /> - <laneOffset s="242.59742318850638" a="6.7649236831668231" b="-0.013260379133210164" c="-3.2834772439156859e-05" d="1.0777174589553916e-05" /> - <laneOffset s="250.02759919299757" a="6.6690048199064211" b="-0.011963372311560814" c="0.00031180603880215276" d="-4.0681780016638769e-05" /> - <laneOffset s="252.43201987524571" a="6.6414769669550964" b="-0.011169519791824135" c="1.856957959377413e-05" d="-4.0032207182820168e-05" /> - <laneOffset s="254.56390581027586" a="6.6173613387812171" b="-0.01163617499642457" c="-0.00024452250153060611" d="1.9891086617599432e-05" /> - <laneOffset s="262.52930067025551" a="6.5192129122282765" b="-0.01174549148406377" c="0.00022660952315924085" d="2.1307016701009609e-05" /> - <laneOffset s="264.06153974510028" a="6.5018246834732967" b="-0.010900980485696224" c="0.00027334328539475454" d="-4.1911199899231004e-05" /> - <laneOffset s="267.42693778468424" a="6.4666369102872014" b="-0.010485209247419854" c="-0.00021406014443306739" d="2.1372459423118396e-05" /> - <laneOffset s="272.62658146526536" a="6.4093346862528495" b="-0.010977785886584065" c="0.00012572553313840021" d="2.0230759357710315e-05" /> - <laneOffset s="277.01350726344447" a="6.3653035772432673" b="-0.0087066586662540007" c="0.00049017698691638254" d="-3.8779788048281811e-05" /> - <laneOffset s="282.72386226027521" a="6.3243482752562583" b="-0.0069021013774963093" c="-0.00017190140817669486" d="-3.6668810595891959e-05" /> - <laneOffset s="284.61133953250203" a="6.3104617338870641" b="-0.0079429270430373053" c="-0.00092898882659328932" d="0.0004822700404681639" /> - <laneOffset s="285.36189242778124" a="6.3041807280169344" b="-0.0085224065126999135" c="-0.00058123825343892" d="7.9964399396994409e-05" /> - <laneOffset s="289.9602859223661" a="6.2604761998028193" b="-0.008795335812124782" c="0.00022799937156777608" d="-3.95497380458956e-06" /> - <laneOffset s="292.82114305528501" a="6.2370874577642308" b="-0.0075878970464761594" c="0.00019119948391991754" d="-4.8334028962115512e-06" /> - <laneOffset s="302.91842385029486" a="6.1749882504530138" b="-0.0052050772214149339" c="4.9631643848844255e-05" d="-5.5669281771325607e-06" /> - <laneOffset s="306.44622660229112" a="6.1569990346190284" b="-0.0050627437363936576" c="0.00017897101299847279" d="-5.5940215205846749e-06" /> - <laneOffset s="313.01570464530465" a="6.1298774397878333" b="-0.0034355324990696999" c="7.4224273672083028e-05" d="-5.4630508266629146e-06" /> - <laneOffset s="323.1129854403145" a="6.0971314033534512" b="-0.0036075631761937716" c="-7.4792247813940807e-05" d="-8.7980198876001009e-06" /> - <laneOffset s="325.76197410882287" a="6.0868866411629394" b="-0.0041890216474137765" c="-0.00012066068334675971" d="1.8466646924011318e-05" /> - <laneOffset s="330.88798932920508" a="6.0647304658808165" b="-0.0039703480273715983" c="0.00014478624710907714" d="-4.2439528634784543e-06" /> - <laneOffset s="333.21026623532435" a="6.0562378951015257" b="-0.0033665430431897309" c="0.00012056510090324585" d="-2.4805494517322961e-06" /> - <laneOffset s="343.30754703033415" a="6.0319835402012929" b="-0.0016904975367099022" c="4.2192242308611861e-05" d="-2.3528272471272112e-06" /> - <laneOffset s="353.404827825344" a="6.0167936624388512" b="-0.001558091767549971" c="-3.2422064463985225e-05" d="-2.4051097345843723e-06" /> - <laneOffset s="357.68114192138853" a="6.009349794360249" b="-0.0019673313613532807" c="1.6941717491695559e-05" d="-2.6274656002403827e-07" /> - <laneOffset s="363.50210862035379" a="5.9984202483219278" b="-0.0017968054547128963" c="9.5241281639244507e-06" d="-1.6212089130048068e-07" /> - <laneOffset s="373.59938941536365" a="5.9810815339128638" b="-0.0016540570069756642" c="1.3055189359816549e-06" d="-2.5442958551453722e-07" /> - <laneOffset s="383.6966702103735" a="5.9642512327616304" b="-0.0017055137902356062" c="-6.642574731005928e-06" d="-3.6460268433800364e-07" /> - <laneOffset s="393.79395100538329" a="5.9459775897025811" b="-0.0019511769617091882" c="-1.9519096103452128e-05" d="-9.1062243590564242e-08" /> - <laneOffset s="401.29705629301071" a="5.9302003803719661" b="-0.0022594641091668458" c="7.4470998651272107e-05" d="-9.4992548976296267e-06" /> - <laneOffset s="403.89123180039314" a="5.924674265510288" b="-0.0020648651617419024" c="-1.1515924522267273e-06" d="-1.0846081666743141e-05" /> - <laneOffset s="409.71068449314157" a="5.9104813156847253" b="-0.003180209607049074" c="-0.00023212083916792191" d="2.1631146663344152e-05" /> - <laneOffset s="413.98851259540294" a="5.8943225185500507" b="-0.0039786178704480923" c="6.0775950893817733e-05" d="1.8762885752088352e-05" /> - <laneOffset s="415.86663163482854" a="5.8871888768653848" b="-0.003551780196625959" c="-0.00035868464175033463" d="8.663130422327868e-05" /> - <laneOffset s="420.47235402516202" a="5.8716855544640048" b="-0.0013427378926608418" c="6.7690507192210862e-05" d="-1.8928125188125295e-06" /> - <laneOffset s="424.08579339041279" a="5.8676281798754557" b="-0.00092768984742137557" c="4.655711311590537e-05" d="-1.1817990892537758e-06" /> - <laneOffset s="434.18307418542264" a="5.8617911435579302" b="-0.00034896061927667935" c="4.0389181502676747e-06" d="-1.1727431268800649e-06" /> - <laneOffset s="444.28035498043243" a="5.8574720756484533" b="-0.00062609779397206967" c="-3.4812116476409672e-05" d="-1.4084973617013092e-06" /> - <laneOffset s="451.45156218827918" a="5.8506725063604366" b="-0.0013426886503929785" c="-0.00034419343164314832" d="1.965873878015483e-05" /> - <laneOffset s="454.37763577544229" a="5.8442892543766645" b="-0.0028520104106630694" c="-0.00016591705629581766" d="1.931685635618401e-05" /> - <laneOffset s="461.50027385515159" a="5.8225381755808385" b="-0.0022755979794037958" c="0.00010561738067933825" d="-5.1782460365025128e-06" /> - <laneOffset s="464.47491657045208" a="5.8165673426900426" b="-0.0017847091543446735" c="7.6513840756215994e-05" d="-2.0966255506009154e-06" /> - <laneOffset s="474.57219736546193" a="5.8041891967880375" b="-0.00088083055849046696" c="1.0930531821006277e-05" d="-1.4610964368361774e-06" /> - <laneOffset s="481.26869050341389" a="5.7983421249802412" b="-0.00093099802755837165" c="-4.1063453643129771e-05" d="5.5255891044596021e-06" /> - <laneOffset s="484.66947816047173" a="5.7949184136169629" b="-0.0010185779734506622" c="8.2582053020751733e-06" d="4.1940368670047832e-06" /> - <laneOffset s="493.03451050489582" a="5.7894307410636108" b="-0" c="2.7704829381524672e-05" d="5.0140219393083134e-08" /> - <laneOffset s="494.76675895548158" a="5.7895141351465238" b="9.6434660507845269e-05" c="3.0951694861545285e-05" d="-2.0573103693239336e-07" /> - <laneOffset s="504.86403975049143" a="5.793431751762486" b="0.00065856459605558536" c="2.146968177650068e-05" d="1.079545822415303e-06" /> - <laneOffset s="508.79489543688123" a="5.7964177852288783" b="0.00087739525372628076" c="0.0010454979421309712" d="-0.00017549253951350827" /> - <laneOffset s="513.14929192422846" a="5.8055726180125156" b="-0" c="-0.00050079420754862449" d="3.2056769928014653e-05" /> - <laneOffset s="514.96132054550128" a="5.804119014615595" b="-0.0014991366900861619" c="-0.00033343416660622623" d="2.9279306096357454e-05" /> - <laneOffset s="523.78096779058387" a="5.7850475583139422" b="-0.00054810424223940583" c="4.8372268860553826e-05" d="-2.4200499332022328e-06" /> - <laneOffset s="525.05860134051102" a="5.7844211951811877" b="-0.00043635126235700182" c="3.8519212385959048e-05" d="-1.6903896658310781e-06" /> - <laneOffset s="535.15588213552087" a="5.7822022594492184" b="-0.0001755040934901945" c="-1.8676380115391039e-05" d="-1.3388800651352134e-06" /> - <laneOffset s="541.20106912878964" a="5.7801630079912707" b="-0.00054809376099086715" c="-0.0036030196561070782" d="0.0011252303240633387" /> - <laneOffset s="543.40928257303813" a="5.7734997798893248" b="-0" c="0.00034962853540546334" d="-1.7279090974819249e-05" /> - <laneOffset s="545.25316293053072" a="5.7745801575119451" b="0.0011131051044567467" c="0.00024762517553995628" d="-1.948749504561708e-05" /> - <laneOffset s="555.56992029009712" a="5.7910212827031913" b="-0" c="-0.00010405598862368925" d="5.8392648424174283e-06" /> - <laneOffset s="565.44772452055042" a="5.7864962440019792" b="-0.0003464603518857092" c="7.7343104558724127e-05" d="4.0977397562963527e-06" /> - <laneOffset s="567.38823020807013" a="5.7861451185732546" b="-0" c="4.3986432785330511e-05" d="-5.7055366674823428e-08" /> - <laneOffset s="575.54500531556016" a="5.7890407033959086" b="0.0007061866892852835" c="4.4767641061247394e-05" d="-1.5608397463162196e-07" /> - <laneOffset s="581.86191714046777" a="5.7952486589343604" b="0.0012530883395549951" c="0.00030346416780016632" d="-2.8407195946552618e-05" /> - <laneOffset s="585.64228611057001" a="5.8027879328513201" b="0.0023295835209552296" c="-1.6153490139179233e-05" d="-2.8120357661277207e-05" /> - <laneOffset s="590.70923720661472" a="5.8105189485014153" b="-0" c="-0.00024399279372690108" d="1.203063746996447e-05" /> - <laneOffset s="595.73956690557986" a="5.8058762643751489" b="-0.0015414508139901478" c="-5.7487463123662643e-05" d="1.1752997824216805e-05" /> - <laneOffset s="604.18001286239269" a="5.7958374189428019" b="-0" c="0.0033512643993505974" d="-0.00061410572178420303" /> - <laneOffset s="605.83684770058971" a="5.8022439170562903" b="0.0060476352700453402" c="0.00029275419991776051" d="-0.00060579326709720306" /> - <laneOffset s="607.82922161640363" a="5.8106640520834594" b="-0" c="-0.00027848297114732795" d="2.5691483067545473e-05" /> - <laneOffset s="615.05555859392007" a="5.8058165968345934" b="-0" c="0.0061824573464735787" d="-0.0012987839380362125" /> - <laneOffset s="618.04975559399986" a="5.8263795954125168" b="0.0020913561195881345" c="-0.0011389647026088527" d="0.00030599666349125266" /> - <laneOffset s="619.85716531249182" a="5.8282455447714838" b="0.00097302971561967543" c="-0.00013464993332376528" d="1.0787688546416091e-05" /> - <laneOffset s="626.0314092906093" a="5.8316593383850934" b="0.00054402840415674583" c="6.527662689402297e-05" d="9.5785598290202898e-06" /> - <laneOffset s="628.59641850028629" a="5.8336458957111184" b="0.0010679585609854507" c="0.00040162716816105523" d="-7.9433295283539153e-05" /> - <laneOffset s="632.98774156119021" a="5.8393540181298862" b="-0" c="-2.1477677014253613e-05" d="-3.8662802469597711e-07" /> - <laneOffset s="636.12869008561916" a="5.8391301483461904" b="-0.00014636345903249904" c="-1.4646645935284064e-05" d="1.1727453720513559e-06" /> - <laneOffset s="646.22597088062901" a="5.8373662805346429" b="-8.3444009702229074e-05" c="2.0300756883254373e-05" d="2.5808689915950076e-06" /> - <laneOffset s="647.80543254744157" a="5.8372952975519024" b="-0" c="0.0022203278087925718" d="-0.00024464267390411908" /> - <laneOffset s="652.78152416207217" a="5.8621301647547837" b="0.0039239594578316895" c="-0.00077314325705597005" d="7.9039986700548374e-05" /> - <laneOffset s="656.32325167563886" a="5.8698410763634028" b="0.00142182733246313" c="7.0561604006488357e-05" d="7.7351304122117584e-05" /> - <laneOffset s="659.84875874484214" a="5.8791202377730736" b="0.0048036027095675927" c="0.002750919401057175" d="-0.00042523698121431575" /> - <laneOffset s="664.82874017116592" a="5.9187467550924611" b="0.00056475206619684333" c="-4.9806406973154111e-07" d="-9.3267633637679239e-06" /> - <laneOffset s="666.42053247064871" a="5.9196068435668181" b="0.00049226990182370516" c="-2.0932566510420455e-05" d="-1.1318982870255995e-07" /> - <laneOffset s="677.23108215150978" a="5.9223392001013755" b="-0" c="2.238135005155215e-06" d="-2.7382946591884554e-07" /> - <laneOffset s="682.68005747777784" a="5.9223613511712871" b="-0" c="0.0009219818396094321" d="-6.1940541115225632e-05" /> - <laneOffset s="686.6150940606683" a="5.9328636220891156" b="0.004378707209838106" c="0.00019058885845961009" d="-6.0024288324702018e-05" /> - <laneOffset s="692.25818465037037" a="5.9528558261363838" b="0.00079540239795956294" c="-5.8068958971671576e-05" d="2.8702613328133877e-06" /> - <laneOffset s="696.71237485567815" a="5.9555002683951477" b="0.0004489383431866769" c="-3.0343268836666837e-05" d="1.4757700731497682e-06" /> - <laneOffset s="706.809655650688" a="5.9584589341592533" b="0.00028755609701008102" c="8.6217063819212848e-06" d="1.9711174378316975e-06" /> - <laneOffset s="712.60381812449032" a="5.960797960183668" b="0.00058599218105315817" c="4.0718271639844345e-05" d="-2.5333301442780641e-07" /> - <laneOffset s="716.90693644569785" a="5.9640533414777899" b="0.00092235049143393744" c="2.9544652144088792e-05" d="-1.167557597193149e-06" /> - <laneOffset s="727.00421724070759" a="5.975176836309231" b="0.001161876506049352" c="-8.008442901174764e-06" d="-1.2086042867368829e-06" /> - <laneOffset s="737.10149803571744" a="5.9848479074817593" b="0.00063047947439558464" c="-4.1977374408272467e-05" d="-1.6659512100574382e-06" /> - <laneOffset s="742.72720282156297" a="5.9867696606744492" b="-0" c="-0.00011523875974676414" d="1.0854929998271174e-05" /> - <laneOffset s="747.19877883072729" a="5.9854359924045388" b="-0.00037946503120336286" c="5.8858837321192923e-05" d="6.274242552898487e-06" /> - <laneOffset s="749.54334402016889" a="5.9849507208028481" b="-0" c="0.0017809985365150147" d="-0.00020041121618869233" /> - <laneOffset s="755.46782459693804" a="6.0057880890990445" b="-0" c="-0.00027114551699793977" d="4.0315885458101551e-05" /> - <laneOffset s="757.29605962573714" a="6.0051281617592771" b="-0.00058717477797439301" c="-5.5743365980390306e-05" d="4.7679714623534863e-05" /> - <laneOffset s="759.74898390834892" a="6.004056165319648" b="-0" c="0.00061947489992737758" d="-2.5710664062265608e-05" /> - <laneOffset s="767.39334042074699" a="6.0287707813865978" b="0.0049636744913867147" c="1.6602600749347185e-05" d="-2.6192678609680035e-05" /> - <laneOffset s="773.11302136584663" a="6.0528034458501825" b="0.0025829368431012929" c="1.680222324359317e-06" d="-7.7909388587998349e-06" /> - <laneOffset s="777.49062121575673" a="6.0634891296934823" b="0.0021497453489452466" c="-9.7180453552909573e-05" d="-8.506442405700381e-06" /> - <laneOffset s="783.61939049240164" a="6.0710559005220714" b="-0" c="-5.402444866988786e-05" d="5.35268321196166e-07" /> - <laneOffset s="787.58790201076658" a="6.0702385194545307" b="-0.00040350333690817116" c="-4.2222917065867517e-05" d="1.571798712080882e-06" /> - <laneOffset s="797.94147973724534" a="6.0632791534866399" b="-0.0007723455440750782" c="-5.8068916398273834e-05" d="6.314522005849948e-06" /> - <laneOffset s="804.59490949757151" a="6.057429651424262" b="-0.00070646425990094199" c="6.038791917819088e-05" d="-2.4620961370427692e-06" /> - <laneOffset s="807.78246360078629" a="6.0557115896268261" b="-0.0003965331327562568" c="3.4770740189532524e-05" d="-2.607231014834268e-06" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4929857327525395" b="-0.015243352918711081" c="0.070791485834800813" d="-0.093477218097569675" /> - <width sOffset="0.42690793237417513" a="2.4921070858538448" b="-0.0059092355466274626" c="-4.2350153855539446e-05" d="0.0044486441178622632" /> - <width sOffset="1.2766361055226285" a="2.4897846668430113" b="0.0036550620965199454" c="0.0023038590032579305" d="-0.0027556318209432003" /> - <width sOffset="2.2761447847939813" a="2.4929879567046793" b="1.742171446054454e-06" c="0.00010897690252252128" d="-7.2706792526831052e-06" /> - <width sOffset="10.097280795009828" a="2.4961892780764083" b="0.00037214249987056714" c="-6.0668093184838104e-05" d="-7.6255597715172713e-06" /> - <width sOffset="14.928761472652784" a="2.4957110618430702" b="-0.00074810596735104236" c="1.0177200207114804e-05" d="8.0526343704513921e-07" /> - <width sOffset="20.194561590019656" a="2.4921714647433024" b="-0.00057393715713232717" c="2.4863208245348668e-05" d="1.326771165666407e-06" /> - <width sOffset="30.291842385029483" a="2.490277060353506" b="0.00033397761193962371" c="7.0134127326579201e-05" d="-1.1204647189410553e-06" /> - <width sOffset="32.524139271816345" a="2.491359622468142" b="0.00063034767087168065" c="-0.00015429442869014368" d="1.4964482781275077e-05" /> - <width sOffset="38.206723489549717" a="2.4927051795523356" b="0.00032645411190663533" c="-0.00015917530828652853" d="2.5949699821460386e-05" /> - <width sOffset="39.956250962718457" a="2.4929280703702181" b="7.7750963474541163e-06" c="-0.00019943408249206717" d="2.5415955576901014e-05" /> - <width sOffset="40.389123180039313" a="2.4928961278734469" b="-0.00015059665068495537" c="-0.00014419717299555366" d="2.8443263101812545e-05" /> - <width sOffset="45.16247035852156" a="2.4919852561548446" b="0.00041702288856651905" c="0.0001938366352433005" d="-3.1017009106288509e-05" /> - <width sOffset="49.039770684440263" a="2.4947082564105241" b="0.00052126989251453698" c="-2.5971806947783285e-05" d="-5.4780288201479409e-06" /> - <width sOffset="50.486403975049143" a="2.4953914059498503" b="0.00041173413186336834" c="-4.043582188069893e-05" d="7.5817439617631359e-07" /> - <width sOffset="60.583684770058966" a="2.496206680746841" b="-0.00017295037114479974" c="-1.879478527070198e-05" d="8.1453002265529407e-07" /> - <width sOffset="70.680965565068803" a="2.4933826619216299" b="-0.00030336640033465758" c="1.2283616839057747e-05" d="-2.2572147982164638e-06" /> - <width sOffset="72.562577791224101" a="2.4928402966323562" b="-0.00028111516013763576" c="-2.0843077169003586e-05" d="3.3856421783325101e-06" /> - <width sOffset="80.778246360078626" a="2.4910013541827905" b="6.1969415537031693e-05" c="6.1537323088373686e-05" d="3.7122196888097267e-06" /> - <width sOffset="83.646422810697175" a="2.4917729156030477" b="0.0005065842321219146" c="0.0014463903262172334" d="-0.00037851420478865369" /> - <width sOffset="86.135320701337477" a="2.4961577393272334" b="0.00067217318431480406" c="-0.00016314478436718906" d="8.3859142975108161e-06" /> - <width sOffset="90.875527155088449" a="2.4965713745098368" b="-0.00030922339163603238" c="-4.3764281857267557e-05" d="7.9502156517907178e-06" /> - <width sOffset="94.857102721586642" a="2.4951482006827694" b="-0.00027962201194486869" c="-7.3113730000850868e-05" d="8.8429698963926251e-06" /> - <width sOffset="100.97280795009829" a="2.4927262554577503" b="-0.00018167574104331922" c="9.2590660938305584e-05" d="7.1995974260698576e-06" /> - <width sOffset="102.56006413495017" a="2.4926999512828099" b="0.00016667007015111566" c="-8.6032058391895952e-05" d="1.4648069259713713e-05" /> - <width sOffset="104.56040140268607" a="2.4928063471767814" b="-1.680075121184444e-06" c="-0.00015475946689228484" d="1.3980073880537488e-05" /> - <width sOffset="111.07008874510811" a="2.4900937878178544" b="-0.00023929149964812451" c="0.00011834791857339303" d="1.432196499000874e-05" /> - <width sOffset="114.14970158845476" a="2.4908975791037014" b="0.00089712924416221582" c="-5.1063617094146685e-05" d="7.398675650301769e-07" /> - <width sOffset="121.16736954011793" a="2.494934271422995" b="0.00028974447239333656" c="-3.475097228225251e-05" d="4.3041639787232685e-07" /> - <width sOffset="131.26465033512775" a="2.4947599649464269" b="-0.00028038676354387448" c="-3.6174671107330592e-05" d="6.7135399613943199e-06" /> - <width sOffset="133.53727869777697" a="2.4940147155869612" b="-0.00034078685802714135" c="3.9655351703480032e-05" d="-1.5170264522672322e-06" /> - <width sOffset="141.36193113013761" a="2.4930493276528152" b="1.1511516013507387e-06" c="-1.1801175953266127e-05" d="7.6353838724738122e-06" /> - <width sOffset="142.82487134458427" a="2.4930496611154291" b="1.5645931720764021e-05" c="-1.3659166581647194e-05" d="1.4988448049276216e-06" /> - <width sOffset="147.8272897139457" a="2.4929737466272908" b="-8.4896704386588874e-06" c="-3.7341986326407274e-05" d="1.3207297387128362e-06" /> - <width sOffset="151.45921192514743" a="2.4925136136797805" b="-0.00022747137046078524" c="-2.2223089781462498e-05" d="1.7265883198337491e-06" /> - <width sOffset="161.55649272015725" a="2.4897284837595386" b="-0.00014815357777881811" c="3.0018334274636958e-05" d="1.7319987644399191e-06" /> - <width sOffset="166.80986895426599" a="2.4900297315902735" b="0.00031064053746655959" c="7.5582155484644754e-05" d="-4.3970514778933028e-06" /> - <width sOffset="171.65377351516707" a="2.4928081151155848" b="0.00073335654956268193" c="9.9843284305754855e-06" d="-4.3930252237886298e-06" /> - <width sOffset="177.12051984683339" a="2.4963978617245957" b="0.00044865929736448385" c="-0.00010323528249513896" d="4.0953755138842027e-06" /> - <width sOffset="181.7510543101769" a="2.4966684571422428" b="-0.00024397249427544248" c="-4.7725487947770616e-05" d="3.6143285427968499e-06" /> - <width sOffset="191.84833510518675" a="2.4930599818737704" b="-0.00010227033879730164" c="5.753696321865873e-05" d="3.629715095456671e-06" /> - <width sOffset="192.64209775702469" a="2.4930168704721751" b="-4.0681481937076061e-06" c="9.2639880399023627e-05" d="-5.4194737982996984e-06" /> - <width sOffset="201.94561590019657" a="2.4966333681642299" b="0.00031243049042352453" c="-6.515740605340104e-05" d="-9.6156320874038364e-07" /> - <width sOffset="203.26420273981043" a="2.4969298431190579" b="0.00013558356724021822" c="-0.0004382398943243851" d="5.115056303430704e-05" /> - <width sOffset="207.8526457398587" a="2.493266700875183" b="-0.00065535140529807481" c="0.00049106687175446469" d="-0.00010941210231341583" /> - <width sOffset="209.85514272766551" a="2.4930449576393787" b="-4.8572248175018928e-06" c="0.00042715577296996172" d="-0.00010546541846405649" /> - <width sOffset="212.04289669520639" a="2.4939744660765282" b="0.00034980915954796118" c="-0.00026527266002911718" d="-0.00010514184135375415" /> - <width sOffset="212.82273524618435" a="2.4940360713683924" b="-0.00025575598791826269" c="-0.00030486794563248947" d="3.2396305102959078e-05" /> - <width sOffset="220.81722009233712" a="2.4890594056033066" b="0.0010812370160416494" c="0.00043096063513187215" d="-6.8794948188884877e-05" /> - <width sOffset="222.14017749021622" a="2.4910848183719105" b="0.0018603040227208652" c="0.00015882196905443196" d="-6.7708007422243561e-05" /> - <width sOffset="224.77916087098703" a="2.495855831677618" b="0.0012839580197474276" c="-0.00039189353990287087" d="2.3083266684442198e-05" /> - <width sOffset="232.23745828522604" a="2.4932091344710399" b="-0.00070965588104852928" c="0.00012446401436124705" d="2.1741963081355405e-05" /> - <width sOffset="234.38156385778655" a="2.492474049344108" b="0.0001239278138921978" c="7.3617811151081982e-05" d="-1.8535628525868444e-05" /> - <width sOffset="237.63262505615307" a="2.4930181253956052" b="1.4868476455411062e-05" c="8.5588681040780324e-05" d="-1.3029008414244455e-05" /> - <width sOffset="238.662873033149" a="2.4931100409371432" b="0.00014973621303642631" c="0.00028700892264080729" d="-4.2053884446859262e-05" /> - <width sOffset="242.33473908023586" a="2.495447546521067" b="0.00055646570844013026" c="-0.00018327434696808825" d="-4.3187645814459824e-05" /> - <width sOffset="242.59742318850638" a="2.4955802919323427" b="0.00045123896795891405" c="3.7276741622889212e-05" d="-1.0003508154626937e-05" /> - <width sOffset="250.02759919299757" a="2.4968875785570184" b="-0.00065162202301107842" c="-0.00029011863627829857" d="4.1455446451711716e-05" /> - <width sOffset="252.43201987524571" a="2.4942198126508028" b="-0.0013277650131233425" c="8.6303242314685919e-06" d="4.0898142091945212e-05" /> - <width sOffset="254.56390581027586" a="2.4918246672829163" b="-0.00073332876323772833" c="0.00027726062871616202" d="-1.9025151708478697e-05" /> - <width sOffset="262.52930067025551" a="2.4939598950843482" b="6.2356199540687315e-05" c="-0.00017449892153856793" d="-2.0450943097111818e-05" /> - <width sOffset="264.06153974510028" a="2.4935721900220962" b="-0.00061643344147721199" c="-0.00021729755549354231" d="4.2767273503129601e-05" /> - <width sOffset="267.42693778468424" a="2.4906666797624037" b="-0.00062588487840663926" c="0.00027874895961928312" d="-2.0516385819228303e-05" /> - <width sOffset="272.62658146526536" a="2.4920644653476423" b="0.0006088445128924775" c="-3.6886842520531205e-05" d="-2.2397755182361367e-05" /> - <width sOffset="275.17040708546938" a="2.4930058686920917" b="-1.3633776662825073e-05" c="0.00025143782161019223" d="-5.046275892297771e-05" /> - <width sOffset="277.01350726344447" a="2.4935189295457221" b="0.00039894766940749143" c="-0.00012578487159418527" d="8.5477884830735288e-06" /> - <width sOffset="282.72386226027521" a="2.493287083446547" b="-0.00020142205614594438" c="1.9827552419922291e-05" d="8.9841625350702966e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1547079165304224" weight="standard" type="solid"> - <type name="solid"> - <line length="284.61133953250203" space="0" width="0.15470800000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.7957149528092446" b="-4.3901501679729496e-10" c="-0.058971595925539903" d="0.090865665004272581" /> - <width sOffset="0.42690793237417513" a="3.7920370810762773" b="-0.00066997793926500636" c="0.0085175618690813987" d="-0.0070601972111595948" /> - <width sOffset="1.2766361055226285" a="3.7932860998299676" b="-0.0014879447150851117" c="-0.00048597800517933334" d="0.00014407872764912201" /> - <width sOffset="4.0935532883400931" a="3.7884589275168952" b="-0.00079606050140883168" c="0.0013514523625947105" d="-0.00024763338107682036" /> - <width sOffset="7.8360737176554949" a="3.791427909150145" b="-0.0010857848678646482" c="-2.2342568858166895e-05" d="9.1239820902127512e-06" /> - <width sOffset="10.097280795009828" a="3.7889639744609935" b="-0.0010468728838142773" c="3.6623124933856756e-05" d="9.6167430136017973e-06" /> - <width sOffset="14.928761472652784" a="3.7858455273649021" b="-1.9528216536964513e-05" c="-5.3610783788056058e-06" d="1.1859198050365057e-06" /> - <width sOffset="20.194561590019656" a="3.7857672005499174" b="2.2662917872790178e-05" c="9.3976658599656334e-06" d="3.2619642622734878e-07" /> - <width sOffset="23.803656118465689" a="3.7859867377080856" b="0.00010324372335154954" c="0.00014419114140278439" d="-5.3062897394130908e-06" /> - <width sOffset="30.291842385029483" a="3.7912772447369907" b="0.0013041920406032497" c="3.2868878904492159e-05" d="-2.7149408797020317e-06" /> - <width sOffset="32.524139271816345" a="3.7943221784565524" b="0.0014103513647332417" c="0.00023161214298907169" d="-1.8799888379930476e-05" /> - <width sOffset="38.206723489549717" a="3.8063659913634083" b="0.0022214177394427321" c="0.00017110797661516405" d="-2.9785105420415514e-05" /> - <width sOffset="40.389123180039313" a="3.8117193767684747" b="0.0025426821168503836" c="-3.5178272139895425e-05" d="-3.644649590993872e-05" /> - <width sOffset="42.139872001865911" a="3.8158675675218272" b="0.0020843666720793733" c="-0.00011075055898531295" d="-2.7382470086635589e-05" /> - <width sOffset="45.16247035852156" a="3.8203997820949818" b="0.00066435073420537116" c="-0.00028977428545774996" d="3.207780212146619e-05" /> - <width sOffset="49.039770684440263" a="3.8204891503307121" b="-0.00013601227349146442" c="-5.7626803954296121e-05" d="6.5388218340652742e-06" /> - <width sOffset="50.486403975049143" a="3.8201915879588744" b="-0.00026168966301224863" c="-4.1672733854717991e-05" d="2.1679931161001746e-07" /> - <width sOffset="60.583684770058966" a="3.8135236752438648" b="-0.0010369408803443539" c="-3.2316491011447633e-05" d="-2.2451260097312826e-06" /> - <width sOffset="62.178516048129218" a="3.8117786257242026" b="-0.0011571509268180806" c="-0.00010196545673393155" d="3.6181529273118186e-06" /> - <width sOffset="70.680965565068803" a="3.7967926772168714" b="-0.0021063765123274384" c="-1.9099662927613677e-05" d="6.5986436242759325e-06" /> - <width sOffset="72.562577791224101" a="3.7928056304599984" b="-0.0021081660390124563" c="3.8533687754773141e-05" d="9.5578664772521497e-07" /> - <width sOffset="79.739639092916221" a="3.7800134184786138" b="-0.0014073504508752654" c="-9.3819972314306222e-06" d="-2.9297314078144927e-06" /> - <width sOffset="80.778246360078626" a="3.7785383313377969" b="-0.0014363198201287476" c="-1.7610254430451838e-05" d="-3.1001679263015135e-06" /> - <width sOffset="83.646422810697175" a="3.7742006949598861" b="-0.0016138484547371557" c="-0.0013971968402039731" d="0.0003791262565511663" /> - <width sOffset="86.135320701337477" a="3.7673741747076277" b="-0.0015231880089049744" c="0.00021690827340249805" d="-7.7738625349999208e-06" /> - <width sOffset="90.875527155088449" a="3.7641997851961384" b="9.166238753459616e-06" c="0.00010564947222881512" d="-7.2203199157918086e-06" /> - <width sOffset="94.857102721586642" a="3.7654553920474529" b="0.00050707897155297349" c="0.0001437173254579339" d="-8.1130741603931738e-06" /> - <width sOffset="100.97280795009829" a="3.7720760575037402" b="0.0013546126098981548" c="-1.2617759803954477e-05" d="-5.9900594969380145e-06" /> - <width sOffset="102.56006413495017" a="3.7741704321087601" b="0.0012692836275692101" c="0.00017176449920278664" d="-1.3438531330577762e-05" /> - <width sOffset="111.07008874510811" a="3.7891291689663489" b="0.0012730476230506577" c="-0.00017003538137304151" d="-1.3963502834028825e-05" /> - <width sOffset="114.14970158845476" a="3.7910292112671455" b="-0.00017152888763766866" c="2.687928272746193e-06" d="-3.8140540905315105e-07" /> - <width sOffset="121.16736954011793" a="3.789826037537098" b="-0.0001901528871487444" c="3.968604731021501e-07" d="-2.5272123739261469e-07" /> - <width sOffset="131.26465033512775" a="3.7876863036864941" b="-0.00025943710539627049" c="1.3652763355836366e-05" d="-6.1384467863709433e-06" /> - <width sOffset="133.53727869777697" a="3.7870951622741829" b="-0.0002924940714459734" c="-5.825634027270369e-05" d="2.0921196272799562e-06" /> - <width sOffset="136.97818552573938" a="3.7854842041955932" b="-0.00061909226579909271" c="-4.4371599707866645e-05" d="2.3505624759724458e-06" /> - <width sOffset="141.36193113013761" a="3.7821155815987413" b="-0.0008726060085321477" c="8.0414314896165349e-06" d="-7.5363233966461827e-06" /> - <width sOffset="142.82487134458427" a="3.7808326253540101" b="-0.00089746532546626967" c="1.0334180778988501e-05" d="-1.3997843290754924e-06" /> - <width sOffset="150.39328533664684" a="3.7740253451134596" b="-0.00098158128668169881" c="0.0001429100391052724" d="-4.3489617164222017e-06" /> - <width sOffset="151.45921192514743" a="3.7731361587846974" b="-0.00069174193006372162" c="0.00012942500528703433" d="-4.8771000041846539e-06" /> - <width sOffset="161.55649272015725" a="3.7743261593917286" b="0.00043020395521009168" c="-1.8402274458826764e-05" d="-4.9572706054591934e-06" /> - <width sOffset="166.80986895426599" a="3.7753595999860554" b="-0.00017357588263623193" c="-0.00011479679498333044" d="1.1717796368651711e-06" /> - <width sOffset="170.61772181288046" a="3.773098821834997" b="-0.00099686297836764715" c="-9.7570342029528021e-05" d="1.1058376318865484e-05" /> - <width sOffset="171.65377351516707" a="3.7719735859717116" b="-0.0011634285290183948" c="-6.4458212949661646e-05" d="7.6004961526509871e-06" /> - <width sOffset="177.12051984683339" a="3.7649287976936638" b="-0.0011867522519895227" c="0.00010136468777894781" d="-8.879045850145694e-07" /> - <width sOffset="181.7510543101769" a="3.7615187892826043" b="-0.00030512184095958083" c="9.3512721073145063e-05" d="-3.9748295150818599e-07" /> - <width sOffset="191.84833510518675" a="3.7675627888819223" b="0.0014617503464955011" c="8.5694449556520329e-05" d="-4.1286957498582507e-07" /> - <width sOffset="192.03547196581039" a="3.7678393345841688" b="0.0014937801506907443" c="0.00036625675840666302" d="-2.8385232015716996e-05" /> - <width sOffset="201.94561590019657" a="3.7909864246889051" b="0.00038987249103466896" c="-0.00046886459050866935" d="-3.2581922168204339e-05" /> - <width sOffset="203.26420273981043" a="3.7906106070819172" b="-0.0010165526205557756" c="-0.00022847209735592342" d="-8.469404841128831e-05" /> - <width sOffset="205.83162612208247" a="3.7850613477959203" b="-0.0038645456613918719" c="-0.0012563775558065433" d="0.00010362858572602625" /> - <width sOffset="207.8526457398587" a="3.772974768736173" b="-0.0076730538518756733" c="-0.0008532737790330001" d="0.00026419125107409683" /> - <width sOffset="210.2345140275313" a="3.7534277182133686" b="-0.0072413194301298904" c="0.0010839008310653455" d="4.9409500357543708e-05" /> - <width sOffset="212.04289669520639" a="3.7441694668985228" b="-0.0028363605370638478" c="0.0013520280446806211" d="4.9278202537188374e-05" /> - <width sOffset="212.82273524618435" a="3.742803167533884" b="-0.00063772800914282078" c="0.0012609294728438735" d="-8.8259943916551837e-05" /> - <width sOffset="220.81722009233712" a="3.7731974213196202" b="0.0026006826546508977" c="-0.0008147021497603435" d="1.293130937551181e-05" /> - <width sOffset="222.14017749021622" a="3.7752420506639552" b="0.00051294794690679574" c="-0.00076493809180145853" d="1.182303795779765e-05" /> - <width sOffset="224.77916087098703" a="3.7714857941065167" b="-0.0032773546928693154" c="-0.00065666109978454457" d="-7.8968236169349505e-05" /> - <width sOffset="225.07792494020924" a="3.7704459188337576" b="-0.0036908742843658688" c="-0.00057413757282496602" d="0.00013853790495078243" /> - <width sOffset="228.74666575112093" a="3.7560183635448445" b="-0.0023095792385230659" c="0.00064029659683355019" d="-4.5269480404847484e-05" /> - <width sOffset="232.23745828522604" a="3.7538328694101999" b="0.0005057941639233423" c="0.00016032726056096932" d="-4.312429224139729e-05" /> - <width sOffset="234.38156385778655" a="3.755229330145534" b="0.00059855978175144681" c="7.3635550451999312e-05" d="-2.8467006341856999e-06" /> - <width sOffset="238.662873033149" a="3.7589182663893785" b="0.001072536174985296" c="-0.00020461683646409221" d="2.6178175399601797e-05" /> - <width sOffset="242.33473908023586" a="3.7613936932015415" b="0.00062873456999169679" c="8.4498395338595617e-05" d="2.6360885581797884e-05" /> - <width sOffset="242.59742318850638" a="3.7615651602359388" b="0.00067858427711074872" c="-0.00014931306077269535" d="-6.8232520780472098e-06" /> - <width sOffset="245.66137167357354" a="3.7620463274832945" b="-0.0004285563503122411" c="0.00066917828051646551" d="-2.3251456908047907e-05" /> - <width sOffset="250.02759919299757" a="3.7709969359720934" b="0.0040852195671278544" c="0.0004690267266075957" d="-7.471041151427236e-05" /> - <width sOffset="252.43201987524571" a="3.7824925635789026" b="0.0050449384978044787" c="-6.9800992313009502e-05" d="-7.410926257439863e-05" /> - <width sOffset="254.56390581027586" a="3.7922124898129312" b="0.0037368570594402233" c="-0.00055083825872705161" d="-1.4185968773980447e-05" /> - <width sOffset="262.52930067025551" a="3.7798593440849846" b="-0.0077386248214984165" c="-0.00089401783956695078" d="-1.2770038818458747e-05" /> - <width sOffset="262.76645549504099" a="3.7779736398238519" b="-0.0081648207630062395" c="-0.0014521991713294098" d="0.0005036981947634557" /> - <width sOffset="264.06153974510028" a="3.7660579365904354" b="-0.0093917881741319501" c="0.00045358705670034351" d="0.00044047997816280176" /> - <width sOffset="265.11370262367222" a="3.7571914559757698" b="-0.006974397498438689" c="0.0013990719328678286" d="-9.3670883917038064e-05" /> - <width sOffset="267.42693778468424" a="3.7473850660904575" b="-0.0020053474146348692" c="0.00068476376625286359" d="-3.0387224594632564e-05" /> - <width sOffset="272.62658146526536" a="3.7511996402564098" b="0.0026510339142652422" c="0.0002148719968015585" d="-3.1219362154177944e-05" /> - <width sOffset="277.01350726344447" a="3.7643290121452586" b="0.0027338280046542464" c="-9.780014556012601e-05" d="-9.0229909560112306e-05" /> - <width sOffset="278.38891010769362" a="3.7676693464534332" b="0.0019527261197447203" c="0.00024754369031220152" d="-4.4151137184614544e-05" /> - <width sOffset="282.72386226027521" a="3.7771894926002334" b="0.0016098668604509429" c="-0.00032567843953115424" d="-4.3040517573956913e-05" /> - <roadMark sOffset="0" color="standard" width="0.15821327330226068" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15821299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6894447051852337" b="1.71873671240099e-10" c="0.0008492529162683471" d="-0.00013559045015076824" /> - <width sOffset="4.0935532883400931" a="3.6943747714234636" b="0.00013658416974563636" c="-0.0014357441199720426" d="0.00025612165857520392" /> - <width sOffset="7.8360737176554949" a="3.6882020080078464" b="0.0001520534246437604" c="3.3353467323403598e-05" d="-6.3570459189318146e-07" /> - <width sOffset="10.097280795009828" a="3.6887090206681208" b="0.00029314043508408974" c="2.7878047105819713e-05" d="-5.1661252682819808e-07" /> - <width sOffset="20.194561590019656" a="3.6939794138458799" b="0.00069811156071395537" c="9.3511650937897852e-06" d="-3.1016636560862502e-07" /> - <width sOffset="23.803656118465689" a="3.6966061875802909" b="0.00075348976336372248" c="-0.00012526874843691416" d="5.3223198000275697e-06" /> - <width sOffset="25.318032085115608" a="3.6974784554789268" b="0.00041069937929728525" c="0.0049514222976389565" d="-0.0016599443312293064" /> - <width sOffset="27.436797440544279" a="3.7047878457273828" b="-0.00096279667706706108" c="-0.00015840106772828394" d="7.5871731996263917e-06" /> - <width sOffset="30.291842385029483" a="3.700924417011997" b="-0.0016817454556123479" c="-9.5529292776222468e-05" d="7.5675609367221768e-06" /> - <width sOffset="40.389123180039313" a="3.6819942341731182" b="-0.0012962638125198003" c="0.00012240708282528219" d="1.1237443381191245e-05" /> - <width sOffset="42.139872001865911" a="3.6801602974217711" b="-0.00076432331462182796" c="6.5575212628128722e-05" d="2.1734175579117944e-06" /> - <width sOffset="44.772778844692851" a="3.6786421545771417" b="-0.00037381677709197585" c="5.6886428823553595e-05" d="-8.3235689930928413e-07" /> - <width sOffset="50.486403975049143" a="3.6782081375274469" b="0.00019472052975332704" c="4.0037414852103533e-05" d="-9.9390518701834758e-07" /> - <width sOffset="60.235694587990785" a="3.6829910182105894" b="0.00069198522451156407" c="1.5573292431724789e-05" d="2.4937322949663053e-07" /> - <width sOffset="60.583684770058966" a="3.6832337186651918" b="0.00070291452541941101" c="9.1689864627935047e-06" d="2.8761571136289671e-06" /> - <width sOffset="62.178516048129218" a="3.6843897368688805" b="0.0007541069012260964" c="8.1837116611030872e-05" d="-2.9871218234125447e-06" /> - <width sOffset="70.680965565068803" a="3.694881580129139" b="0.0014979069301455212" c="3.0667460667191291e-06" d="-3.1006828075064857e-06" /> - <width sOffset="77.866046281948442" a="3.7046523400706088" b="0.0010617547359544747" c="-9.4532264124876574e-05" d="-3.1491982783570932e-06" /> - <width sOffset="79.739639092916221" a="3.7062890826037416" b="0.00067436043028659123" c="-4.3738306813847258e-05" d="7.3631977668103397e-07" /> - <width sOffset="80.778246360078626" a="3.7069431224511797" b="0.00058588939926076077" c="-4.1538417542561854e-05" d="4.3289621052048759e-07" /> - <width sOffset="90.875527155088449" a="3.7090696128268177" b="-0.00012055282953843871" c="-2.8769922919330934e-05" d="5.0271208551212615e-07" /> - <width sOffset="100.97280795009829" a="3.7054366438202266" b="-0.00054778665801149423" c="-1.4506908891011793e-05" d="4.7384510679134361e-07" /> - <width sOffset="111.07008874510811" a="3.698914243949305" b="-0.0006958145765571705" c="6.814199182016112e-07" d="3.8385660798662982e-07" /> - <width sOffset="121.16736954011793" a="3.6923530515140395" b="-0.00056464520715282138" c="1.6112632963409829e-05" d="2.778744838271454e-07" /> - <width sOffset="131.26465033512775" a="3.6885804982671004" b="-0.00015426550316568598" c="3.1610041303322779e-05" d="-5.3247129366408763e-08" /> - <width sOffset="136.97818552573938" a="3.6887210589752866" b="0.00020172998831302465" c="3.840897882760705e-05" d="-3.1168997803267232e-07" /> - <width sOffset="137.27777556997574" a="3.688784934257193" b="0.00022465995719618477" c="0.0001316258248277657" d="-4.4982652388491125e-06" /> - <width sOffset="141.36193113013761" a="3.6915915976839897" b="0.0010747230453732391" c="8.2327386741920742e-05" d="-3.8741556945825686e-06" /> - <width sOffset="150.39328533664684" a="3.7051589850939681" b="0.0016137879286311036" c="-0.00018699753046107459" d="-9.2497833813207575e-07" /> - <width sOffset="150.45363055573739" a="3.7052556883168135" b="0.0015912090096871347" c="-0.00010484436738588682" d="1.1558275608715154e-06" /> - <width sOffset="151.45921192514743" a="3.7067509357571184" b="0.0013838562219285417" c="-0.00010057943872581439" d="1.9138735971136111e-06" /> - <width sOffset="161.55649272015725" a="3.7124398096071172" b="-6.1914044137928274e-05" c="-4.2694662755200033e-05" d="1.8659102429370447e-06" /> - <width sOffset="169.66257688277818" a="3.7101263800151854" b="-0.00038626805142017752" c="-6.7991796024963658e-05" d="8.8552052249596788e-06" /> - <width sOffset="170.61772181288046" a="3.7097031252566981" b="-0.0004919162299480786" c="-4.6458342532086829e-05" d="-1.0313914584047565e-06" /> - <width sOffset="171.65377351516707" a="3.7091424590673814" b="-0.00059150401613866426" c="-4.3330438142686805e-05" d="2.3576287022789743e-06" /> - <width sOffset="181.7510543101769" a="3.7011792244789135" b="-0.00074542655294726349" c="3.0019636501226778e-05" d="2.3492205441703763e-06" /> - <width sOffset="188.94203393194806" a="3.6982447487664958" b="5.0750543138139946e-05" c="2.5507053284219212e-05" d="-5.3493107856911706e-06" /> - <width sOffset="191.84833510518675" a="3.6984763760458743" b="6.3462651956001578e-05" c="-2.0819222668625039e-05" d="-5.3020397489339741e-06" /> - <width sOffset="192.03547196581039" a="3.6984874884065948" b="5.5113528459179925e-05" c="-0.00030458994205985002" d="2.2670322831691221e-05" /> - <width sOffset="201.94561590019657" a="3.6911842808448498" b="0.0006974752116694731" c="0.00037184278897646261" d="2.2534682994280772e-05" /> - <width sOffset="205.83162612208247" a="3.7008323039612536" b="0.0046083388135142386" c="0.0010101218321252705" d="-0.00016578795114308498" /> - <width sOffset="209.62644149291043" a="3.7238065517482939" b="0.0051124408288737086" c="-0.00098417367947725601" d="-0.0001526569554776539" /> - <width sOffset="210.2345140275313" a="3.7265170634068352" b="0.0037462071225317977" c="-0.0013120215066666503" d="6.2124795238922311e-05" /> - <width sOffset="212.04289669520639" a="3.7293684012105559" b="-0.00038957634358720815" c="-0.00097507502680734296" d="6.226806563690171e-05" /> - <width sOffset="222.14017749021622" a="3.6901239350024575" b="-0.0010351522891021772" c="0.00091091844179332429" d="6.2192091714105755e-05" /> - <width sOffset="223.89925124439702" a="3.6914602399022325" b="0.0027469236766223242" c="0.0025004406916553585" d="-0.00029411623395938125" /> - <width sOffset="225.07792494020924" a="3.6976901432866622" b="0.0074155089545452279" c="0.0013071373445306435" d="-0.00051162237505903688" /> - <width sOffset="227.99750877200802" a="3.717749880797065" b="0.0019649421219474416" c="-0.0024255050703807313" d="4.7742166295079762e-05" /> - <width sOffset="228.74666575112093" a="3.7178807230873931" b="-0.001588842087734502" c="-0.002007861111552372" d="0.00023154955165060156" /> - <width sOffset="231.11791234070444" a="3.7059106307594121" b="-0.007205232040488058" c="0.00038841118737756699" d="2.4229086671662619e-07" /> - <width sOffset="232.23745828522604" a="3.6983312104631496" b="-0.0063346326513677546" c="0.00038794132646075854" d="3.8975450325708878e-07" /> - <width sOffset="242.33473908023586" a="3.6743224748158934" b="0.0016188847131983" c="0.0003988270166533956" d="1.8806442376612876e-07" /> - <width sOffset="245.66137167357354" a="3.684128445857898" b="0.0042786302546455757" c="-0.00048050573951365392" d="1.6616269253765793e-05" /> - <width sOffset="252.43201987524571" a="3.696227679387774" b="5.7112560140903934e-05" c="-0.0001429032106865183" d="1.6675876428885668e-05" /> - <width sOffset="260.35362667253338" a="3.6960021645678451" b="0.00093239297139476388" c="0.00058834735531076271" d="7.6042420015808878e-05" /> - <width sOffset="262.52930067025551" a="3.7015988600261505" b="0.0045723505237987554" c="0.0010838799829040917" d="7.6056385992149259e-05" /> - <width sOffset="262.76645549504099" a="3.702745189489042" b="0.0050992780422075539" c="0.0016870873024121473" d="-0.00044041184751409654" /> - <width sOffset="264.50049069435545" a="3.7143640612711977" b="0.0069774213941789136" c="-0.00071882988287174602" d="-0.00048532602012740854" /> - <width sOffset="265.11370262367222" a="3.7182604894280704" b="0.0055483414903642605" c="-0.0011667678291620862" d="4.882484194909982e-05" /> - <width sOffset="272.62658146526536" a="3.7147924973936539" b="-0.0037157164760818033" c="-6.3534036968535131e-05" d="4.8470918736999782e-05" /> - <width sOffset="278.38891010769362" a="3.7005458821181447" b="0.00038042340780402098" c="5.6730794511613097e-05" d="2.3921463614589066e-06" /> - <width sOffset="282.72386226027521" a="3.7034559417747577" b="0.0010071322483112283" c="8.8982562136866199e-05" d="3.6866296944696869e-06" /> - <roadMark sOffset="0" color="standard" width="0.14027440931680168" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14027400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9002398129034215" b="-1.1076333724521705e-09" c="0.0086210945985148828" d="-0.00091734294350131844" /> - <width sOffset="6.0442111014728308" a="4.0126312815398917" b="0.0036769704673246936" c="-0.0004795450989677112" d="2.4093889565009163e-05" /> - <width sOffset="10.097280795009828" a="4.0212608347264904" b="0.00097710905341254076" c="-0.00018812131881102545" d="2.4245502680623234e-05" /> - <width sOffset="18.767244285578478" a="4.031392523758476" b="0.0031825763735208261" c="0.0035045641972671691" d="-0.0013265624181782005" /> - <width sOffset="20.194561590019656" a="4.0392173377400633" b="0.0050792696995223176" c="-0.002175582689253414" d="-0.0013265651881546078" /> - <width sOffset="20.979874191201151" a="4.0412219607521145" b="-0.00079209676048392589" c="-5.1745992588137029e-05" d="9.4673670395623611e-08" /> - <width sOffset="25.318032085115608" a="4.03681960972688" b="-0.0012357161671595993" c="-0.0051030249310962351" d="0.001665361324699731" /> - <width sOffset="27.436797440544279" a="4.0271331566905069" b="-0.0004316875669280666" c="4.1230448557860462e-05" d="-2.170179729207972e-06" /> - <width sOffset="30.291842385029483" a="4.0261862452627115" b="-0.0002493272380131626" c="1.7548507884694393e-05" d="-9.3982655204269984e-07" /> - <width sOffset="32.801316585780967" a="4.0256562236559015" b="-0.00017900774492713714" c="-0.00046480502466430716" d="3.514587264536158e-05" /> - <width sOffset="40.389123180039313" a="4.0128909419217313" b="-0.0011621583025187543" c="0.00033558012336509037" d="3.5110073165088938e-05" /> - <width sOffset="40.785666406888822" a="4.0124850540187822" b="-0.00087945144095141379" c="3.1718339513827097e-05" d="-2.72322324528127e-06" /> - <width sOffset="44.772778844692851" a="4.0093102036484138" b="-0.00075639604464050321" c="2.5000949383593372e-05" d="2.8255121193567378e-07" /> - <width sOffset="50.486403975049143" a="4.0058573116396143" b="-0.00044303185222909196" c="2.7463436037772781e-05" d="1.780214699537089e-07" /> - <width sOffset="60.235694587990785" a="4.0043133932163597" b="0.0001432282965880328" c="2.8064696051293566e-05" d="-1.0652568927039533e-06" /> - <width sOffset="60.583684770058966" a="4.004366588921954" b="0.00016237377518551501" c="2.4718228390025008e-05" d="-9.7027570043850196e-07" /> - <width sOffset="70.680965565068803" a="4.0075274026443779" b="0.00036477395241452559" c="-7.1026757780719476e-06" d="-1.0332502883823045e-06" /> - <width sOffset="77.866046281948442" a="4.0093983883928548" b="0.00010268152333965219" c="1.3884055001885429e-06" d="-9.8473481930045981e-07" /> - <width sOffset="79.091800010747917" a="4.0095245231460215" b="0.00010164659969638353" c="2.2922767119601435e-05" d="-3.0176453792497757e-07" /> - <width sOffset="80.778246360078626" a="4.0097596919637741" b="0.00017638788681312095" c="2.129412982046754e-05" d="-5.2356191293002001e-07" /> - <width sOffset="90.875527155088449" a="4.0131727838901492" b="0.00044627411368398451" c="4.1970493685914316e-06" d="1.1603304343952332e-07" /> - <width sOffset="92.663979302238488" a="4.0139850120696989" b="0.00046239997392279056" c="-5.7724528417283615e-05" d="2.7770651505487355e-06" /> - <width sOffset="100.97280795009829" a="4.0154348693298054" b="7.8311230135202957e-05" c="1.015255664318899e-05" d="2.7105387914925712e-06" /> - <width sOffset="111.07008874510811" a="4.0200511203663618" b="0.0011123972541057657" c="9.3480736883143852e-05" d="2.0105873995940026e-06" /> - <width sOffset="112.57771747718556" a="4.0219475687379465" b="0.0014079756038208762" c="0.00014929087284164196" d="-9.3009709348171693e-06" /> - <width sOffset="121.16736954011793" a="4.0391619777431105" b="0.00191395277920194" c="-8.139556117632755e-05" d="-1.0517040330705344e-05" /> - <width sOffset="124.85412000172296" a="4.0445848878948754" b="0.00088493562817137667" c="-0.0032142591805337157" d="0.00053988842588200889" /> - <width sOffset="128.51354695178358" a="4.0312369592108999" b="-0.00095016303750030025" c="1.331755416800682e-05" d="-3.1508087417506785e-06" /> - <width sOffset="131.26465033512775" a="4.0286581514209079" b="-0.00094842844874937953" c="1.0791850867697574e-06" d="-5.413394784201157e-07" /> - <width sOffset="137.27777556997574" a="4.0228764548363749" b="-0.00099417062951497655" c="-0.0001021832247913922" d="3.6452357823806564e-06" /> - <width sOffset="141.36193113013761" a="4.0173599896310108" b="-0.0016464238303038315" c="-5.4185082972097499e-05" d="3.7296356215435467e-06" /> - <width sOffset="150.45363055573739" a="4.0007151756824566" b="-0.0017068289706410327" c="-3.4779522006510968e-05" d="1.648829753061185e-06" /> - <width sOffset="151.45921192514743" a="3.9989653280209581" b="-0.001771774389656152" c="-2.9831796140931975e-05" d="1.6199952150368985e-06" /> - <width sOffset="151.85904376140172" a="3.9982522506873726" b="-0.0017948528492986212" c="4.4349618166199535e-05" d="1.1343734412133373e-06" /> - <width sOffset="161.55649272015725" a="3.9860519131673726" b="-0.00061466533999268388" c="7.7219939258934254e-05" d="1.0820672118560794e-06" /> - <width sOffset="169.66257688277818" a="3.9867197500048821" b="0.00085054067959466212" c="0.00017420673260070541" d="-5.9072277689550863e-06" /> - <width sOffset="171.65377351516707" a="3.9890574132264844" b="0.0014740363335074367" c="0.00014010658419540649" d="-5.9942917886164746e-06" /> - <width sOffset="181.7510543101769" a="4.0120548119442603" b="0.0024699818904850867" c="-3.6519333122410049e-05" d="-6.8937312373878762e-06" /> - <width sOffset="184.5299882278087" a="4.0184887676499912" b="0.0021073022886501712" c="-2.6440879253666061e-05" d="-7.2561838615262809e-06" /> - <width sOffset="188.94203393194806" a="4.0266483784018021" b="0.0014502357216473454" c="-6.7292549360057504e-05" d="4.4234746831293104e-07" /> - <width sOffset="191.84833510518675" a="4.0303056667305777" b="0.0010702998698114714" c="-6.0780576442322475e-05" d="4.5649178487606357e-07" /> - <width sOffset="201.94561590019657" a="4.0353858407218182" b="-1.7512256039372773e-05" c="-4.5028043200602353e-05" d="4.7303975566404277e-07" /> - <width sOffset="208.85911961202237" a="4.0332688972683313" b="-0.00057228636195729311" c="-2.1866377225854198e-05" d="4.6457676330002485e-06" /> - <width sOffset="209.62644149291043" a="4.0328189937650274" b="-0.00059763741617391893" c="9.5719535961820413e-05" d="-8.4852280325939985e-06" /> - <width sOffset="212.04289669520639" a="4.0318140314594295" b="-0.00028367572450316118" c="3.404751410103943e-05" d="-8.3784311834537152e-06" /> - <width sOffset="221.54628504254407" a="4.0250019848456171" b="-0.0019066209334661771" c="-0.00064683482497451003" d="3.0358514064326642e-05" /> - <width sOffset="222.14017749021622" a="4.0236478723213587" b="-0.0026427984742149625" c="-0.00059272788071802361" d="3.0372036215604415e-05" /> - <width sOffset="223.89925124439702" a="4.0173302132680897" b="-0.0044461583282034752" c="-0.0016937687465210564" d="0.000386680361889086" /> - <width sOffset="227.99750877200802" a="3.9972770876325741" b="0.0011545598286597514" c="0.0023118475374373998" d="-0.00017268417946495114" /> - <width sOffset="231.11791234070444" a="4.0181433678532263" b="0.010538119131263565" c="-5.3774497061719723e-05" d="5.8623081323731967e-05" /> - <width sOffset="231.51879121791364" a="4.0223630121108327" b="0.010523267880111714" c="-0.00085636531956884588" d="1.7506238898523439e-05" /> - <width sOffset="232.23745828522604" a="4.0294899385467184" b="0.0093195097649953693" c="-0.00081840806460858624" d="1.7470693168647237e-05" /> - <width sOffset="242.33473908023586" a="4.0581363244371023" b="-0.0018642045711720571" c="-0.00028979769339590206" d="1.7188899578638328e-05" /> - <width sOffset="245.1169655555552" a="4.0510766144352761" b="-0.0030776035165188762" c="-4.9925681449131275e-05" d="9.4400587834690722e-06" /> - <width sOffset="252.43201987524571" a="4.0295873632842376" b="-0.0022926084655964952" c="0.00015718099405908465" d="9.568814145912903e-06" /> - <width sOffset="257.07072585598621" a="4.0232898829565631" b="-0.0002166820812964064" c="0.00067134014001554525" d="7.061459154120409e-06" /> - <width sOffset="260.35362667253338" a="4.0300637070744116" b="0.0044195174162033769" c="0.0004059349922967394" d="-5.2305084432696581e-05" /> - <width sOffset="262.52930067025551" a="4.0410619795604177" b="0.0054431144815216184" c="6.4093012902934442e-05" d="-5.2408573832928417e-05" /> - <width sOffset="264.50049069435545" a="4.051639022043787" b="0.0050848787881510038" c="-0.00013098051291992696" d="-7.4944012161276105e-06" /> - <width sOffset="272.62658146526536" a="4.080288683147181" b="0.0014715184307371332" c="-0.00031181665940408876" d="-7.6501373757093016e-06" /> - <width sOffset="282.72386226027521" a="4.055480145876186" b="-0.0071653933942998861" c="-0.00054395123411341028" d="-6.6199014587379774e-06" /> - <roadMark sOffset="0" color="standard" width="0.27304744292909966" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.27304699999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="231.51879121791364" color="standard" width="0.25" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.25" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-4" type="driving" level="false"> - <link /> - <width sOffset="0" a="4.3082622251029692" b="7.3475735059077988e-10" c="-0.0093380824387675251" d="0.00091063191402395273" /> - <width sOffset="2.4521109695347594" a="4.2655402673573359" b="-0.029369553616096718" c="-0.089650102302988477" d="0.12302853584876211" /> - <width sOffset="2.9401019566981996" a="4.2441562240907542" b="-0.028974161178964616" c="9.5651605807461687e-05" d="0.00081566698468160301" /> - <width sOffset="6.0442111014728308" a="4.1795352084594386" b="-0.0048022731408709817" c="0.00015820613309814897" d="-0.000125769848368176" /> - <width sOffset="6.7109589894613872" a="4.1763663551939709" b="-0.0047590399250783356" c="-0.00014490786611308717" d="3.4694109757426133e-05" /> - <width sOffset="10.097280795009828" a="4.15993625652807" b="-0.0045469189359453209" c="0.00020420612436362155" d="3.5456791472645541e-05" /> - <width sOffset="14.122980777251287" a="4.1472543984140113" b="-0.0011789077724695645" c="0.00052140597971258391" d="-8.5362214298491347e-05" /> - <width sOffset="18.767244285578478" a="4.1444745546368464" b="-0.001859394044682328" c="-0.0037299905177804681" d="0.0012654457065602292" /> - <width sOffset="20.979874191201151" a="4.1358072391951834" b="0.00022027452074022493" c="-0.0005792432471686148" d="-6.12141558461427e-05" /> - <width sOffset="21.154929213102559" a="4.1358277204960023" b="1.1848054473588882e-05" c="-0.00047719466125412281" d="3.823139306734274e-05" /> - <width sOffset="28.651807466690279" a="4.1252054220193894" b="-0.00069691449718756529" c="-7.3201777784609429e-05" d="4.1181119719405841e-05" /> - <width sOffset="30.291842385029483" a="4.1240472252392566" b="-0.00060472507186083843" c="0.00011558092601436727" d="3.8053329858331279e-05" /> - <width sOffset="32.801316585780967" a="4.1238589183901979" b="0.00069428768719805749" c="0.00087734059579968487" d="1.9676299358897364e-06" /> - <width sOffset="32.921671262020517" a="4.1239551910865027" b="0.00090555727874818456" c="0.00068976019321204248" d="-6.373444204290583e-05" /> - <width sOffset="37.957158248716333" a="4.1378671187630314" b="0.0030039379929814982" c="-0.00049310081598933101" d="9.443408920509444e-06" /> - <width sOffset="40.389123180039313" a="4.1423920003767636" b="0.00077308801556123146" c="-0.00045012546429688599" d="7.5820549347667402e-06" /> - <width sOffset="40.785666406888822" a="4.1426282553048166" b="0.00041967636286261291" c="-9.5475857740357273e-05" d="4.5415351347914431e-05" /> - <width sOffset="44.256935312629061" a="4.1448342317705293" b="0.0013985567527193647" c="0.0025071864195072612" d="-0.0013269469777576854" /> - <width sOffset="45.535962449412104" a="4.1479480870779231" b="0.0012997765380857412" c="-0.0019807477558957897" d="0.00034245599527626632" /> - <width sOffset="48.61463908329889" a="4.1431686822904839" b="-0.0011587367066301308" c="-7.2199352988144253e-05" d="4.6172593486164453e-05" /> - <width sOffset="50.486403975049143" a="4.1410496365481428" b="-0.00094371956330393072" c="0.00017194068612304459" d="4.2518183720117863e-05" /> - <width sOffset="53.10528492642684" a="4.1405211075581594" b="0.00083170247645829234" c="0.0050770885917760696" d="-0.0014677444936124281" /> - <width sOffset="55.420712817608816" a="4.151446347445674" b="0.00073632437660148091" c="-0.00018906687369104149" d="7.5016823468605531e-06" /> - <width sOffset="60.583684770058966" a="4.1512405738480984" b="-0.00061606873399136812" c="-7.7379682387151402e-05" d="7.6795754781419741e-06" /> - <width sOffset="67.979259753925646" a="4.1455585150497267" b="-0.00050051092166568205" c="-1.551342992414913e-05" d="4.347011702088185e-06" /> - <width sOffset="70.680965565068803" a="4.144178770438554" b="-0.00048914705941447063" c="7.8454985034598862e-06" d="1.7742027004017364e-06" /> - <width sOffset="76.449199902767987" a="4.1419588067467128" b="-0.00022154108793612638" c="2.4418473032750552e-05" d="7.9394283700104735e-07" /> - <width sOffset="79.091800010747917" a="4.1415585361795486" b="-7.5851461797399951e-05" c="5.5572045681336529e-06" d="1.1097255687241911e-07" /> - <width sOffset="80.778246360078626" a="4.1414469542828485" b="-5.6160755507089267e-05" c="6.0121820622175064e-06" d="1.301000252400797e-07" /> - <width sOffset="90.875527155088449" a="4.1416267898161054" b="0.00010504570066891493" c="1.0430838826646161e-05" d="-3.5596744361977996e-07" /> - <width sOffset="92.663979302238488" a="4.1418459863978434" b="0.00013894006202778226" c="7.1065083032956024e-05" d="-3.0169995507274043e-06" /> - <width sOffset="100.97280795009829" a="4.1461759178102167" b="0.00069502478080672844" c="-4.9171308219732991e-06" d="-3.0138719751587905e-06" /> - <width sOffset="111.07008874510811" a="4.1495897637514139" b="-0.00032611319049250962" c="-9.5584553770487418e-05" d="-2.5128599840576595e-06" /> - <width sOffset="112.57771747718556" a="4.1488722368011768" b="-0.00063146000274542447" c="-0.00015366641146807768" d="8.7986983503563547e-06" /> - <width sOffset="121.16736954011793" a="4.1376866684434432" b="-0.0013237820990626896" c="7.2503781770217891e-05" d="9.7793869595483773e-06" /> - <width sOffset="124.85412000172296" a="4.134281747715173" b="-0.00039040733095128727" c="0.0031972087694077372" d="-0.00054062607925316533" /> - <width sOffset="128.51354695178358" a="4.1491748889985063" b="0.0012902672202899982" c="-3.8466131172096067e-05" d="2.413155370404527e-06" /> - <width sOffset="131.26465033512775" a="4.1524836604373343" b="0.001133411017831236" c="-2.1325662181816433e-05" d="-1.2432035941545706e-07" /> - <width sOffset="141.36193113013761" a="4.1616257861941364" b="0.00066472334308700508" c="-9.623267747914056e-06" d="-3.6451709552957043e-06" /> - <width sOffset="143.82667420815497" a="4.1631511175845448" b="0.00055085279176270185" c="4.9067501605189049e-06" d="-1.3494058920690377e-07" /> - <width sOffset="151.45921192514743" a="4.1675813683705281" b="0.0006021715551779535" c="3.1957350610181017e-06" d="1.1933689592478784e-07" /> - <width sOffset="151.85904376140172" a="4.1678226542448824" b="0.00060478430197236717" c="-6.8899358195962941e-05" d="6.049586653725197e-07" /> - <width sOffset="161.55649272015725" a="4.1677598818607624" b="-0.00056083984111088346" c="-5.1366630691322873e-05" d="5.5731766996592565e-07" /> - <width sOffset="171.65377351516707" a="4.1574335768916661" b="-0.0014277023263118702" c="-3.3128762486108214e-05" d="5.1226776593200974e-07" /> - <width sOffset="181.7510543101769" a="4.1401673838181372" b="-0.0019400382584079711" c="-1.8337340011103031e-05" d="1.3990070627742125e-06" /> - <width sOffset="184.5299882278087" a="4.134664559107164" b="-0.0020095433848190212" c="-7.4224220010440028e-05" d="1.7614596869130014e-06" /> - <width sOffset="191.84833510518675" a="4.1166731251794335" b="-0.002812918726309024" c="-2.6291223204748802e-05" d="-5.1678599815538173e-07" /> - <width sOffset="194.64109933344062" a="4.1086009903820893" b="-0.0029718611685174479" c="0.0031480937835078183" d="-0.00049715310986454852" /> - <width sOffset="197.88725277036789" a="4.1151211406757771" b="0.0017502589556363038" c="-0.00021030686096038277" d="8.6951969328622775e-06" /> - <width sOffset="201.94561590019657" a="4.1193417163583481" b="0.00047289353542205939" c="-0.00010020342484269828" d="9.5420399626770048e-06" /> - <width sOffset="208.85911961202237" a="4.1209747773265493" b="0.0004556093365522115" c="8.4352781603344948e-05" d="5.3693120853540124e-06" /> - <width sOffset="212.04289669520639" a="4.1234536517747804" b="0.0011560073157505131" c="0.00013454222818454475" d="5.5902354656755643e-06" /> - <width sOffset="216.62633844966905" a="4.1321168750962585" b="0.0027416582140648866" c="0.0013267706497712612" d="-0.0002414099108115844" /> - <width sOffset="221.54628504254407" a="4.1489714360268737" b="-0.0017336743058387147" c="-0.001794389071478034" d="-0.00028014685617819068" /> - <width sOffset="221.91345522904325" a="4.1480791066629541" b="-0.0031646697551880321" c="-0.0012131954601164558" d="0.0001650126122285935" /> - <width sOffset="226.83556411124866" a="4.1227875213904568" b="-0.0031142712351851171" c="0.0086952859035982315" d="-0.0019603691178445436" /> - <width sOffset="231.10837839446879" a="4.1153046506311677" b="-0.036178622878631266" c="-3.8030511254424307e-05" d="-0.00025027543037124217" /> - <width sOffset="231.51879121791364" a="4.1004327726683991" b="-0.036336307491262376" c="0.00052691383823546113" d="-0.00020915858795565625" /> - <width sOffset="232.23745828522604" a="4.0745135715801242" b="-0.035903036404940088" c="6.9832710094852051e-05" d="-0.00020803245603824637" /> - <width sOffset="237.68758608514702" a="3.8472333610652756" b="-0.053679963481874531" c="-0.0021214814526286292" d="1.1691113278736896e-05" /> - <width sOffset="242.33473908023586" a="3.5531320996923084" b="-0.072640216322125986" c="-0.0019640714118688528" d="1.0939758676350628e-05" /> - <width sOffset="245.1169655555552" a="3.3360627191606769" b="-0.083315152353138869" c="-0.0019691625306789058" d="1.868859947151737e-05" /> - <width sOffset="251.60410540800979" a="2.7178193937985711" b="-0.10650420174294462" c="-0.0047108234544190964" d="0.00027670455559701838" /> - <width sOffset="252.43201987524571" a="2.6265710528023387" b="-0.1137355244489294" c="-0.0040234633519685842" d="0.00027656461695482097" /> - <width sOffset="257.07072585598621" a="2.0400151098412467" b="-0.13320983673373421" c="-0.00055575592351459879" d="0.000279071971946616" /> - <width sOffset="262.52930067025551" a="1.3417092810096412" b="-0.11433138922541443" c="0.0040154932515846682" d="0.00027916149711806583" /> - <width sOffset="262.60426804836823" a="1.3331608416459382" b="-0.11372462047047684" c="-0.0013228234047813338" d="0.00025243739229652718" /> - <width sOffset="272.62658146526536" a="0.3146347066783326" b="-0.064170562793805438" c="0.0062648254584590475" d="0.00025263748933792793" /> - <width sOffset="272.70605349629875" a="0.30957463593473999" b="-0.063170019160925767" c="0.0051245187730786911" d="-0.00029198538862762263" /> - <width sOffset="276.81114997390011" a="0.11641400280406433" b="-0.035858184318070536" c="5.9233406846178986e-05" d="0.00077802176859162421" /> - <width sOffset="280.35219049559504" a="0.024726384539955681" b="-0.0061719184066401462" c="0.001914732101589598" d="-0.00074172939421981066" /> - <width sOffset="281.57693809539251" a="0.018676800220076117" b="-0.0048195884606746387" c="-0.0029025380029571069" d="0.00080985614703525492" /> - <width sOffset="282.72386226027521" a="0.010552830954271286" b="-0.0082816309513502571" c="-0.00011107498720944241" d="0.00081410637753985061" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="284.61133953250203" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <successor id="-4" /> - </link> - <width sOffset="0" a="2.4929857327525635" b="-0.00033172698434079211" c="-0.00073011597268227276" d="0.00018666707846234801" /> - <width sOffset="2.4521109695347594" a="2.4905344761917547" b="-0.00054517533156861041" c="0.087654000580544192" d="-0.12193123685627574" /> - <width sOffset="2.9401019566981996" a="2.4969725739965885" b="-0.0021048105119272852" c="-0.00048533727258224493" d="0.00028163200780505009" /> - <width sOffset="5.1914363572158715" a="2.4929876821108543" b="-7.7624505744798783e-06" c="-0.00033830220719399142" d="0.00011705961429866264" /> - <width sOffset="6.7109589894613872" a="2.4926054680311829" b="-0.0002250241226893256" c="0.00024686564942500854" d="-4.3404343842428467e-05" /> - <width sOffset="9.962736408744318" a="2.4929916752701793" b="3.600228726887561e-06" c="0.00053608415294603164" d="-8.2448890858688895e-05" /> - <width sOffset="10.097280795009828" a="2.4930016631506842" b="0.00014337693845898865" c="0.00050775181403506535" d="-8.3368370720579958e-05" /> - <width sOffset="14.122980777251287" a="2.4963685327201102" b="0.00017822131413319439" c="-0.00038808097249660203" d="3.7450635050551319e-05" /> - <width sOffset="20.194561590019656" a="2.4915266901421784" b="-0.00039255751486147634" c="0.00028651195768843684" d="3.7824672324400982e-05" /> - <width sOffset="21.154929213102559" a="2.4914474456133604" b="0.00026241386417683287" c="0.00026129260777208412" d="-6.1620876010489879e-05" /> - <width sOffset="24.40634686538715" a="2.4929448756555672" b="7.241317682898929e-06" c="0.00027630252211150022" d="-4.1869311888625991e-05" /> - <width sOffset="28.651807466690279" a="2.4947518413472682" b="8.9354902997445087e-05" c="0.0001988943944292426" d="-4.4819038539747239e-05" /> - <width sOffset="30.291842385029483" a="2.4952356487544947" b="0.00038009114886118221" c="-8.7185397720106238e-06" d="-4.2926919672005673e-05" /> - <width sOffset="32.921671262020517" a="2.4953941756494213" b="-0.00055641310579683501" c="-0.00015909905548855131" d="2.2775153031829103e-05" /> - <width sOffset="37.957158248716333" a="2.4914661704739274" b="-0.00042622638480381135" c="0.00040501205331407533" d="-5.0402697931658535e-05" /> - <width sOffset="40.389123180039313" a="2.4921000483102294" b="0.00064941060747788592" c="5.2830968141580224e-05" d="-4.8284435172823782e-05" /> - <width sOffset="44.256935312629061" a="2.492608345087497" b="-0.0011089100787535543" c="-0.0026371499907047063" d="0.0013240778939327907" /> - <width sOffset="45.535962449412104" a="2.4896463437804073" b="-0.0013566644251754333" c="0.0018397752764898652" d="-0.00034532507910124905" /> - <width sOffset="48.61463908329889" a="2.4928307155784246" b="0.00015224978309518735" c="-9.5272070425374169e-05" d="-4.9041677302549217e-05" /> - <width sOffset="49.114757357628221" a="2.4928768946290543" b="2.0156515039578167e-05" c="0.00054729313929569306" d="-7.1273008566466066e-05" /> - <width sOffset="50.486403975049143" a="2.4937502977872015" b="0.0011192598783972712" c="0.00024876812306401689" d="-7.8028058249920924e-05" /> - <width sOffset="53.10528492642684" a="2.4969861756161471" b="0.00081677299995905838" c="-0.0049353681845647713" d="0.0014322346190826216" /> - <width sOffset="55.420712817608816" a="2.4901968528142344" b="0.0009973105758529369" c="8.412561920651485e-05" d="-4.3011556876661949e-05" /> - <width sOffset="58.921261376928825" a="2.4928738610787438" b="5.1119698417610715e-06" c="7.9498753668093256e-05" d="-2.8554297753978327e-06" /> - <width sOffset="60.583684770058966" a="2.4930889473204445" b="0.00024575890681844087" c="5.7559002542361628e-05" d="-6.7062700927645573e-06" /> - <width sOffset="67.979259753925646" a="2.4953419688576144" b="-3.2661136762212467e-06" c="1.7287208958020438e-05" d="-3.3737063164909911e-06" /> - <width sOffset="70.680965565068803" a="2.4953927972212178" b="1.6267576054611495e-05" c="-1.6884604928058496e-06" d="-9.620522394819369e-07" /> - <width sOffset="76.449199902767987" a="2.4952458124050683" b="-9.9241023950812166e-05" c="-4.2074124939183379e-06" d="1.8207623918742898e-08" /> - <width sOffset="80.778246360078626" a="2.4947388209538683" b="-0.00013464552450128016" c="-4.0397920980211722e-06" d="7.1246308603188712e-08" /> - <width sOffset="90.875527155088449" a="2.4930407358316113" b="-0.00019443558567272285" c="-2.113155683700336e-06" d="1.1817003111549849e-07" /> - <width sOffset="100.97280795009829" a="2.4909836705624269" b="-0.00020096573354322085" c="8.1770795250079538e-07" d="9.8780637117231487e-08" /> - <width sOffset="111.07008874510811" a="2.4891395242101488" b="-0.00015423891681418675" c="4.3724577009082391e-06" d="3.8198608018115855e-08" /> - <width sOffset="121.16736954011793" a="2.488067249115165" b="-5.4255424127589076e-05" c="8.0933792189756677e-06" d="-3.3336504713829582e-08" /> - <width sOffset="131.26465033512775" a="2.488310259084054" b="9.8990343021722652e-05" c="1.0445156173591114e-05" d="-1.4458132378308405e-08" /> - <width sOffset="141.36193113013761" a="2.4903598449010858" b="0.00030550345258020334" c="4.2036629743723953e-07" d="3.6578566823205557e-06" /> - <width sOffset="143.82667420815497" a="2.4911701559916395" b="0.00037423962440242479" c="-1.401585043757579e-05" d="1.4762631624302072e-07" /> - <width sOffset="151.45921192514743" a="2.4932756921303536" b="0.00018608680326095766" c="-1.0401764265808914e-05" d="1.496732104752427e-07" /> - <width sOffset="161.55649272015725" a="2.4942482340731047" b="2.1807566348973568e-05" c="-5.9281182928644716e-06" d="1.1904080390475489e-07" /> - <width sOffset="171.65377351516707" a="2.4939865782476041" b="-6.1497739768859219e-05" c="-1.5078087114625199e-06" d="9.19270694087108e-08" /> - <width sOffset="181.7510543101769" a="2.4933065256181841" b="-6.3829980661277933e-05" c="2.9960558126145226e-06" d="2.5611569169760811e-08" /> - <width sOffset="190.53452220651656" a="2.492994376050353" b="-5.2707160355489231e-06" c="-0.00035104126988553885" d="8.7654821942005423e-05" /> - <width sOffset="191.84833510518675" a="2.4925802991475106" b="-0.00047377170890929498" c="1.4190705835552818e-05" d="0.00010107860185031563" /> - <width sOffset="194.64109933344062" a="2.4935695671171434" b="0.0019705882617887878" c="-0.0023176579747576295" d="0.00059771492571686563" /> - <width sOffset="196.63704652438875" a="2.4930223685346444" b="-0.00013771811886199858" c="-0.00051840401221693035" d="0.00050857943318772744" /> - <width sOffset="197.88725277036789" a="2.4930337298642566" b="0.00095081086455504546" c="-9.402164469973106e-05" d="2.7311263907059217e-06" /> - <width sOffset="201.94561590019657" a="2.4955264551908201" b="0.00032261041755821465" c="-6.0231711378532131e-05" d="2.5424501461412097e-06" /> - <width sOffset="212.04289669520639" a="2.4952603880216753" b="-0.00011609546758063055" c="1.708769459126422e-05" d="2.4395063420426299e-06" /> - <width sOffset="216.62633844966905" a="2.4953221452427794" b="0.00019429243444131668" c="-0.0010647291653589175" d="0.00024943965261922272" /> - <width sOffset="219.37276025470342" a="2.4929920222497124" b="-9.6536292664567425e-06" c="-0.0014360145769106544" d="0.00037244225139617239" /> - <width sOffset="221.91345522904325" a="2.4898060793132935" b="-9.4113151365524117e-05" c="0.00051299356052286488" d="-7.2717216760317759e-05" /> - <width sOffset="222.14017749021622" a="2.4898102637054134" b="0.0001272873229315628" c="0.00046101635099441947" d="-7.3530438010207134e-05" /> - <width sOffset="226.40877454374808" a="2.4930347110065725" b="4.3696534585069974e-05" c="0.007058654652827929" d="-0.0017866692693409068" /> - <width sOffset="226.83556411124866" a="2.4942001948210706" b="0.0050924950099716241" c="-0.0027007919921127575" d="0.00033871246072072255" /> - <width sOffset="230.83204973570795" a="2.4930360157269735" b="-0.00026521577444784186" c="0.010793048340825843" d="0.0022515145499222545" /> - <width sOffset="231.10837839446879" a="2.4938343659412503" b="0.0062154016229877228" c="-0.0037360407584825935" d="0.00054142086223411042" /> - <width sOffset="232.23745828522604" a="2.4968685739831376" b="-0.00015053065563439341" c="-0.0019067417958648798" d="0.00054382560246377999" /> - <width sOffset="234.60499355786709" a="2.4930413462190408" b="-3.4295810010260414e-05" c="-0.00090602780696373455" d="0.00022157458947656133" /> - <width sOffset="237.68758608514702" a="2.4908165616855662" b="0.0006963307373918301" c="-6.7051538792950623e-05" d="1.8510201595329054e-06" /> - <width sOffset="242.33473908023586" a="2.4927902385439396" b="0.00019305728475900452" c="-4.0415461250235298e-05" d="2.2666893637012563e-06" /> - <width sOffset="250.90592792539735" a="2.4929031356622744" b="-1.9092229865125265e-07" c="-0.0024527394501174912" d="0.00017871552362488192" /> - <width sOffset="251.60410540800979" a="2.49176823198479" b="-0.0031637402223170796" c="0.0010269536120451153" d="-7.9300432505203042e-05" /> - <width sOffset="252.43201987524571" a="2.4898078411806797" b="-0.001626348345147216" c="0.00083082861483118687" d="-7.8314938082855328e-05" /> - <width sOffset="258.31415095752965" a="2.4930491273470627" b="1.8772164829511384e-05" c="0.0013634196467948321" d="-0.00031992102663784246" /> - <width sOffset="262.52930067025551" a="2.4933930725338946" b="-0.0055397701122316401" c="-0.0026858541087554271" d="-0.00032002364280889076" /> - <width sOffset="262.60426804836823" a="2.4929625408697804" b="-0.005947868695396194" c="0.0026432725634035481" d="-0.00029329954269749806" /> - <width sOffset="267.08955128417466" a="2.4929958483113399" b="6.2189092731340656e-05" c="0.00036431333234920827" d="-6.1245969717375274e-05" /> - <width sOffset="272.70605349629875" a="2.4939862941465014" b="-0.0016415078181113915" c="0.00053288848762970097" d="0.0004833769080666878" /> - <width sOffset="273.45607950950529" a="2.4932588370026547" b="-2.6392245222155164e-05" c="-0.0015022565640440931" d="0.00031609464781648215" /> - <width sOffset="276.81114997390011" a="2.4881978804278644" b="0.00056761064202232731" c="0.0031487036816166577" d="-0.00075391250940276078" /> - <width sOffset="280.35219049559504" a="2.4962148427588593" b="-0.0054928691401148122" c="0.0015493205780804729" d="0.00076583865340951152" /> - <width sOffset="281.35303659437375" a="2.4930370537766624" b="-9.0200771579109548e-05" c="-0.0023883247870091239" d="0.0014373934530884798" /> - <width sOffset="281.57693809539251" a="2.4929132606435553" b="-0.00094352206341789466" c="0.00066915508683724773" d="-0.00011419208818540076" /> - <width sOffset="282.72386226027521" a="2.4925390603503246" b="0.00014078139261662192" c="0.00027814665254983036" d="-0.00011268823266205174" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="284.61133953250203"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="2.4930379528873088" b="-0.00038229435811248068" c="0.00046216295469864155" d="-0.0004306724746656623" /> - <width sOffset="0.75055289527921332" a="2.4928292787762434" b="-0.00041637059209513952" c="0.00023059248875170068" d="-2.8366833594502554e-05" /> - <width sOffset="4.9953307860832865" a="2.4930471451661331" b="7.9045227676152047e-06" c="-0.00022969553609208137" d="-8.1590131399905628e-05" /> - <width sOffset="5.3489463898640679" a="2.4930176105689243" b="-0.00018515039660724902" c="-2.2364469862823458e-05" d="2.3292418408923888e-06" /> - <width sOffset="8.2098035227829769" a="2.4923594181415023" b="-0.00025592243862774221" c="-3.3685440783932452e-06" d="2.1359462702683638e-06" /> - <width sOffset="18.307084317792828" a="2.491630747849058" b="0.00032936300559239812" c="5.9954601403050158e-05" d="2.7728178971175885e-06" /> - <width sOffset="21.83488706978909" a="2.4936605743607991" b="0.00085590544040001909" c="-9.8955977552096078e-05" d="2.7999112405634512e-06" /> - <width sOffset="28.404365112802623" a="2.4958065272430243" b="-8.1756744394468478e-05" c="-4.3219905356419162e-05" d="2.594488967904185e-06" /> - <width sOffset="38.501645907812474" a="2.4932454636872112" b="-0.00016099979843986825" c="4.9472932282929217e-05" d="-3.6805619724130663e-06" /> - <width sOffset="40.328217565241687" a="2.4930940159877419" b="-1.7107170216892377e-05" c="0.00018551357124024336" d="7.9426366715358175e-06" /> - <width sOffset="41.15063457632084" a="2.4932098406809438" b="0.00030414834063516739" c="0.00018106092034446674" d="-1.9322030139760969e-05" /> - <width sOffset="46.276649796703055" a="2.4969239621141286" b="0.00063727155857337117" c="-9.7540132261239739e-05" d="3.3885696478197413e-06" /> - <width sOffset="48.598926702822325" a="2.4979202904714262" b="0.00023906452908605989" c="-7.4735714951949296e-05" d="2.1256055868187219e-06" /> - <width sOffset="58.69620749783212" a="2.4949027515913604" b="-0.00062004161001333368" c="-1.1683825056036932e-05" d="2.1783897721778904e-06" /> - <width sOffset="68.793488292841971" a="2.4896933769220917" b="-0.00018969762780663476" c="5.3576178674078798e-05" d="2.0170972074843096e-06" /> - <width sOffset="73.069802388886501" a="2.4900196482230079" b="0.00037917864466782756" c="-7.6539359878693191e-07" d="-1.2526596707759578e-07" /> - <width sOffset="78.890769087851766" a="2.4921761932448572" b="0.00035753457756720636" c="-3.8720118078060794e-06" d="-3.3414421655846126e-08" /> - <width sOffset="88.988049882861617" a="2.4953571498835228" b="0.00026912068659210421" c="-6.2625509523764985e-06" d="-7.175034471728552e-08" /> - <width sOffset="99.085330677871468" a="2.4973621733835172" b="0.00012070527938411787" c="-8.5353134998462056e-06" d="-1.1787118012583032e-07" /> - <width sOffset="109.18261147288126" a="2.4975894051831862" b="-8.771433138319738e-05" c="-1.1645633766489424e-05" d="-1.6685406910789355e-07" /> - <width sOffset="116.68571676050868" a="2.4962051868312578" b="-0.00029065110879885996" c="-0.00011144124826934529" d="9.2413385848014365e-06" /> - <width sOffset="119.27989226789111" a="2.4948625521031262" b="-0.00068227182260610425" c="-3.7979830978448931e-05" d="1.0295868656382156e-05" /> - <width sOffset="125.09934496063954" a="2.491635005314869" b="-7.8274902565155565e-05" c="0.00018338359998303983" d="-2.2181359673694904e-05" /> - <width sOffset="129.37717306290091" a="2.4929196108913301" b="0.00027294791196186621" c="-0.00011657434011097123" d="-1.9313098762412771e-05" /> - <width sOffset="130.34868010222584" a="2.4930570469966202" b="-8.2422821413609404e-06" c="7.0113953071318559e-05" d="-2.2181600172744958e-05" /> - <width sOffset="131.25529210232651" a="2.4930906748736463" b="6.4193833044424824e-05" c="0.0005349610299180326" d="-9.0050018644253737e-05" /> - <width sOffset="135.86101449265999" a="2.4959364296576361" b="-0.00073864852729375115" c="6.134893231088783e-05" d="-1.5259019021715367e-06" /> - <width sOffset="139.47445385791076" a="2.4939964047910417" b="-0.00035505808050702054" c="4.1817550840425779e-05" d="-1.4535505361318596e-06" /> - <width sOffset="146.35987920287653" a="2.4930597256222109" b="1.4070677868836779e-05" c="1.7154123224084804e-05" d="1.8266761887585343e-06" /> - <width sOffset="149.57173465292061" a="2.4933424050730526" b="0.00018079586546177219" c="1.8547650549828197e-05" d="-1.6039992373491791e-06" /> - <width sOffset="159.66901544793041" a="2.495407711282394" b="6.4749927780220935e-05" c="-3.1445630966932261e-05" d="-1.7008139866466597e-06" /> - <width sOffset="166.84022265577715" a="2.4936276768847181" b="-0.00064865560923314889" c="0.0002110431363415174" d="-2.2768050128477127e-05" /> - <width sOffset="169.76629624294026" a="2.4929661917717754" b="1.5861262130986015e-06" c="5.4725395566710615e-06" d="-2.2426167683641439e-05" /> - <width sOffset="170.0898911392506" a="2.4929665181774343" b="-1.917080134787412e-06" c="0.00019763501274018408" d="-1.9823810481947011e-05" /> - <width sOffset="176.88893432264956" a="2.4958589457293243" b="-6.3644268051833621e-05" c="-6.5487324825588903e-05" d="4.6712919108713446e-06" /> - <width sOffset="179.86357703795005" a="2.4952131158775064" b="-0.00032924528614547205" c="-3.14273528269526e-05" d="1.7390892826461041e-06" /> - <width sOffset="189.9608578329599" a="2.4904747941373913" b="-0.00043197994045457455" c="2.2985291030794175e-05" d="1.6151484468521736e-06" /> - <width sOffset="196.65735097091186" a="2.4890977878105431" b="9.3146150862245445e-05" c="7.8074101178516355e-05" d="-5.3715370943726016e-06" /> - <width sOffset="200.0581386279697" a="2.4901062432623808" b="0.00043780180272555902" c="2.6091216514443247e-05" d="-4.2947648056440653e-06" /> - <width sOffset="208.42317097239379" a="2.4930803034033433" b="-2.7253061371486745e-05" c="4.1168150398075148e-06" d="-1.5086815775769229e-07" /> - <width sOffset="210.15541942297955" a="2.4930446633915526" b="-1.434849173909197e-05" c="1.1185122337991343e-05" d="-2.8269576893719685e-06" /> - <width sOffset="212.67284559707247" a="2.4930343257538796" b="-1.1780030199073194e-05" c="9.3395315127096126e-05" d="-5.7943018636539486e-06" /> - <width sOffset="220.2527002179894" a="2.4957876012611395" b="0.00040534492551485776" c="-3.2489821606457056e-05" d="-6.2220037377397158e-06" /> - <width sOffset="224.1835559043792" a="2.4965010203105171" b="-0.00013850090666255456" c="-0.001117160861776456" d="0.00017035008159818681" /> - <width sOffset="228.53795239172644" a="2.4887802671920909" b="-0.00017771805040147775" c="0.00036195438585384654" d="-3.7199227843131841e-05" /> - <width sOffset="230.34998101299925" a="2.4894253710102836" b="0.00076760020310393472" c="0.00016383915982292983" d="-3.4870788175948447e-05" /> - <width sOffset="235.0374948485877" a="2.4930318980620214" b="4.9717656478136946e-06" c="0.00014278091365497171" d="-3.5257423379607148e-05" /> - <width sOffset="239.16962825808184" a="2.4930027984996341" b="-0.00062106009816265389" c="9.8608800996443708e-05" d="-3.5580673480120546e-06" /> - <width sOffset="240.44726180800899" a="2.4923628546116978" b="-0.0003865122801140918" c="8.4219901456838932e-05" d="-3.9765052008347994e-06" /> - <width sOffset="250.54454260301884" a="2.492953089239319" b="9.7996995868402487e-05" c="-6.0738705165202855e-05" d="1.2099887657600397e-05" /> - <width sOffset="251.66885401176012" a="2.49300368657621" b="7.3040955185914053e-06" c="-0.00018267285334336173" d="1.8691054767439361e-05" /> - <width sOffset="256.58972959628761" a="2.4908434119172833" b="-0.00043270407260796782" c="0.0036533181467447834" d="-0.0011078781493610377" /> - <width sOffset="258.7979430405361" a="2.495772937988165" b="-0.00050481985987294465" c="-0.00018437812837184128" d="3.4631265676866833e-05" /> - <width sOffset="260.64182339802869" a="2.4944323477060522" b="-0.00083153430094404397" c="7.4527183848822572e-06" d="3.724403356629243e-05" /> - <width sOffset="263.29769607732169" a="2.4929741830621959" b="-3.8271440299443051e-06" c="-0.0002102141528069339" d="2.1654161135114915e-05" /> - <width sOffset="270.73910419303854" a="2.4902281031779774" b="0.00046486284417556335" c="0.00027656843359368639" d="2.1369216823382157e-05" /> - <width sOffset="270.95858075759509" a="2.4903436778882089" b="0.00058935148662902115" c="3.9176450847651047e-05" d="-3.9575430862095928e-06" /> - <width sOffset="280.83638498804839" a="2.4961734324684386" b="0.0002048816061782689" c="-8.1740828210808921e-05" d="-2.029603899232446e-06" /> - <width sOffset="282.7768906755681" a="2.4962483756987917" b="-0.00013528327783700729" c="-3.6344468257851015e-05" d="2.125191223742269e-06" /> - <width sOffset="290.93366578305813" a="2.4938801243486814" b="-0.00030400466925938085" c="1.7166515411403421e-05" d="1.91029527639514e-06" /> - <width sOffset="295.77633589778259" a="2.4930274575201326" b="-3.3435224589550578e-06" c="0.0002084354605253009" d="-1.9268660889355472e-05" /> - <width sOffset="297.25057760796574" a="2.4934138008984252" b="0.00048559011221809174" c="-0.00013843896307591568" d="8.9824510823650265e-06" /> - <width sOffset="301.03094657806798" a="2.4937563388568087" b="-0.00017600087518310562" c="-3.589103128574625e-05" d="8.8209946578298927e-06" /> - <width sOffset="305.25026868634211" a="2.4930373690692837" b="-7.760508295517974e-06" c="8.6282760292488822e-06" d="4.6629699932939282e-05" /> - <width sOffset="306.09789767411269" a="2.4930653877316518" b="0.00010737345257592345" c="-7.2411795535173065e-05" d="6.478704804490374e-06" /> - <width sOffset="311.12822737307783" a="2.4925978527844013" b="-0.00012932130426947588" c="2.5754914103941803e-05" d="6.512887819986568e-06" /> - <width sOffset="319.56867332989066" a="2.4972573767579869" b="0.0016974010404842343" c="-0.0029204802864718476" d="0.00063237160742885847" /> - <width sOffset="321.22550816808769" a="2.4949288145527957" b="-0.0027723328374742958" c="0.00021148794992726999" d="0.00063783421075493433" /> - <width sOffset="322.31857362267203" a="2.4929841599508418" b="-2.3754687819199129e-05" c="-0.0001033424383908182" d="0.00075177926385214516" /> - <width sOffset="323.2178820839016" a="2.4934260031065731" b="0.0016143891670610084" c="-0.0011247610196742175" d="0.00012029451368568302" /> - <width sOffset="330.44421906141804" a="2.4917513720791318" b="0.004203903939310815" c="-0.0044208693176819459" d="0.0014447699347897925" /> - <width sOffset="331.44417176556851" a="2.4929791909908232" b="-0.00030351669417939646" c="-0.0032047662683241983" d="0.0013319039353445223" /> - <width sOffset="333.43841606149783" a="2.4901920194894291" b="0.002805296660795314" c="0.00041863634505793254" d="-0.00027287666618300261" /> - <width sOffset="335.24582577998979" a="2.4950187608182599" b="0.00164434837241835" c="-0.00040609420919307017" d="2.2332308761836457e-05" /> - <width sOffset="341.42006975810727" a="2.4949468928433296" b="-0.00081629190986711277" c="7.7627994944036075e-06" d="2.2493169598477951e-05" /> - <width sOffset="343.98507896778426" a="2.493283762491691" b="-0.00033250254609965241" c="-8.1794897715873423e-05" d="0.00011150502470878558" /> - <width sOffset="345.23505647994273" a="2.4929581133547449" b="-1.4325114415272974e-05" c="-0.00038876428336194528" d="9.0610318650428297e-05" /> - <width sOffset="348.37640202868818" a="2.4918855928257431" b="0.00022563095304801485" c="-0.00015819625884461538" d="1.1563651391581043e-05" /> - <width sOffset="351.51735055311713" a="2.4913919190047027" b="-0.00042589605077021121" c="-5.059341672232123e-05" d="1.0386169055720588e-05" /> - <width sOffset="361.61463134812698" a="2.4926255109230295" b="0.001729160153055184" c="0.00026502579475086327" d="9.5582306253396152e-06" /> - <width sOffset="363.19409301493954" a="2.4960554748484007" b="0.0026378910497535431" c="-0.0018774815296154707" d="0.00025678177352114783" /> - <width sOffset="367.19401376746112" a="2.4930013725589042" b="-5.6626865353780545e-05" c="-0.00036489111860894743" d="0.00033185781833669893" /> - <width sOffset="368.17018462957014" a="2.4929070818157433" b="0.00017967243402479578" c="-5.1663329472528656e-05" d="8.1751577320456547e-06" /> - <width sOffset="371.71191214313683" a="2.4932585728358765" b="0.00012136102231425847" c="3.5938643981580729e-05" d="8.4211028357506363e-06" /> - <width sOffset="375.23741921234011" a="2.4945021268407546" b="0.00068876762564542247" c="-0.0017372454718517373" d="0.00051100938817229551" /> - <width sOffset="377.23735209001063" a="2.4930187639144892" b="-0.00012827998254504383" c="-0.0016388832499156876" d="0.00047775271790026106" /> - <width sOffset="380.21740063866389" a="2.4907257412475952" b="0.0028321371415194023" c="-0.00096930370870499229" d="6.1842500048935427e-05" /> - <width sOffset="381.80919293814668" a="2.4930273195550292" b="0.00021636686814377882" c="-0.00069808677048662708" d="5.2628926594331135e-05" /> - <width sOffset="381.96740476372645" a="2.4930442859759516" b="-5.7223550593051963e-07" c="-8.2118273223236613e-05" d="5.7955248586951227e-06" /> - <width sOffset="391.90647373315642" a="2.4906167681635649" b="8.4603770762007078e-05" c="9.8659333210676558e-05" d="5.6284785142031466e-06" /> - <width sOffset="392.61974261900775" a="2.4907293490309064" b="0.0002339355437225947" c="8.3861554687411429e-05" d="5.7891181477922181e-06" /> - <width sOffset="398.06871794527581" a="2.4954306253109797" b="0.0016635145169373545" c="-0.00074572413408260311" d="6.7455829797087295e-05" /> - <width sOffset="402.00375452816627" a="2.4945396678480272" b="-0.0010718269780030424" c="4.3260633853893488e-05" d="7.001579559214399e-05" /> - <width sOffset="404.06874738365298" a="2.4931273510106156" b="2.5219417198463212e-06" c="-0.00029850735480623251" d="7.8129549269609935e-05" /> - <width sOffset="407.64684511786834" a="2.4928937339607788" b="0.00086717205024533603" c="-0.00022735153752048828" d="1.5234999612134835e-05" /> - <width sOffset="412.10103532317612" a="2.4935919931381898" b="-0.00025138342236033832" c="-2.7463157535021047e-05" d="1.7428287429001085e-05" /> - <width sOffset="414.89696887754724" a="2.4930553768721131" b="3.7697993530101453e-06" c="4.7142613455344333e-05" d="-1.8502506197901238e-06" /> - <width sOffset="422.19831611818597" a="2.4948758811924119" b="0.00039627022233384833" c="6.8587984408348947e-06" d="-2.2288622669122546e-06" /> - <width sOffset="427.99247859198829" a="2.496968634990389" b="0.00025126798383801583" c="-2.9718013066351036e-05" d="-4.4118146718147989e-09" /> - <width sOffset="432.29559691319582" a="2.4974992360060977" b="-4.7373475860412132e-06" c="-2.7793017723141297e-05" d="7.8178558619065133e-07" /> - <width sOffset="442.39287770820556" a="2.4954225864240946" b="-0.00032688412110224991" c="-5.0246278025061598e-06" d="7.6452834507311404e-07" /> - <width sOffset="452.49015850321541" a="2.4923967176201867" b="-0.00019451163222779808" c="1.8038738479881527e-05" d="9.1943942159201716e-07" /> - <width sOffset="458.11586328906094" a="2.4920370545761088" b="9.574638804739775e-05" c="7.8701158995230777e-05" d="-1.1601441786734531e-05" /> - <width sOffset="462.58743929822526" a="2.4930015460958694" b="0.00010367060961726584" c="-0.00010541069067288716" d="-7.020754354135023e-06" /> - <width sOffset="463.11605438002005" a="2.4930258555662377" b="-1.3658262537363699e-05" c="0.00089941442206698831" d="-8.2383743533373909e-05" /> - <width sOffset="464.93200448766686" a="2.4954736812392326" b="0.0024379007872875375" c="-0.0012274084689005648" d="0.00012430171520820532" /> - <width sOffset="470.85648506443601" a="2.4926836507332277" b="0.00098315853043332707" c="-0.00052799219618480334" d="-0.00011642538643960923" /> - <width sOffset="471.60651689368149" a="2.49307490689137" b="-5.3478907988954239e-06" c="0.00048123021759017854" d="-5.5504568972558767e-05" /> - <width sOffset="472.68472009323511" a="2.4935590101861322" b="0.00083880415903187259" c="0.00031160224346648148" d="-5.3901850626275537e-05" /> - <width sOffset="475.13764437584689" a="2.4966958641901744" b="0.0013945215437019391" c="-0.00040940330791393585" d="1.948852805953338e-05" /> - <width sOffset="482.78200088824497" a="2.4921377787210375" b="-0.001448222362168369" c="3.9625135040428032e-05" d="1.9477647751803777e-05" /> - <width sOffset="488.50168183334461" a="2.4887953524470312" b="0.00091668303451845901" c="-6.0675988665073052e-05" d="1.0759080009150712e-06" /> - <width sOffset="492.8792816832547" a="2.4917357244106872" b="0.00044730673980876651" c="-4.5133322653897947e-05" d="9.3993247071150634e-07" /> - <width sOffset="499.00805095989961" a="2.492998254473922" b="0" c="2.9955979961442987e-05" d="-1.4596468429674783e-06" /> - <width sOffset="502.97656247826455" a="2.493378805168124" b="0.00016879700226009905" c="1.4781907337054512e-05" d="-1.0310951681597428e-06" /> - <width sOffset="513.07384327327441" a="2.4955288058548897" b="0.00015193497101534837" c="-1.7576868438901238e-05" d="-1.0600212660667984e-06" /> - <width sOffset="513.33014020474332" a="2.4955665738841883" b="0.00014271628369647515" c="4.6275310638799033e-05" d="-5.8027446180954109e-06" /> - <width sOffset="519.98356996506948" a="2.4968555373334373" b="-1.2134575486682413e-05" c="-6.1966300231641342e-05" d="2.9738735249711391e-06" /> - <width sOffset="523.17112406828426" a="2.4962835643316197" b="-0.00031652830840534272" c="-3.3278326601819993e-05" d="3.1940346553786939e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1547079165304224" weight="standard" type="solid"> - <type name="solid"> - <line length="533.26840486329411" space="0" width="0.15470800000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.778778411230872" b="-7.9559073481788242e-05" c="-0.0010471851491169807" d="0.00048342918596525476" /> - <width sOffset="0.75055289527921332" a="3.7783331855609026" b="-0.00083450478423072183" c="-0.00069682457593591774" d="8.1123544894084581e-05" /> - <width sOffset="5.3489463898640679" a="3.7676492645247364" b="-0.0020969257013809901" c="0.00012840367040990432" d="-2.7958283074921489e-06" /> - <width sOffset="8.2098035227829769" a="3.7626357165011348" b="-0.0014308839886070703" c="0.00010208413591222957" d="-3.5899630346068634e-06" /> - <width sOffset="18.307084317792828" a="3.7548999193797359" b="-0.00046738451784733223" c="-2.7819739762928187e-06" d="-4.2969424786140553e-06" /> - <width sOffset="21.83488706978909" a="3.7530277994512606" b="-0.00064744443270075419" c="0.00013999817229999915" d="-4.3240358220646084e-06" /> - <width sOffset="28.404365112802623" a="3.7535904986836797" b="0.00063213464956342813" c="5.6839517888416331e-05" d="-3.6718805355446707e-06" /> - <width sOffset="31.65136078561477" a="3.7561165955714424" b="0.0008851122877683291" c="-0.0001292998595474884" d="-2.3303281842077214e-06" /> - <width sOffset="38.501645907812474" a="3.7553631837901875" b="-0.0012144313017947951" c="-0.00016347384947692074" d="-5.7311932972040003e-06" /> - <width sOffset="41.15063457632084" a="3.7508925166924749" b="-0.0022011618253274046" c="-0.00018497031835099656" d="2.1533473514404975e-05" /> - <width sOffset="46.276649796703055" a="3.7376494140680454" b="-0.0024000404397359603" c="0.00012763841144630944" d="-1.1771262729417449e-06" /> - <width sOffset="48.598926702822325" a="3.732749463414696" b="-0.0018262615893956081" c="0.00012379473928653687" d="4.882819889053151e-07" /> - <width sOffset="58.69620749783212" a="3.727433361024207" b="0.00082306738456975259" c="0.00013679581260546593" d="5.4285557034709452e-07" /> - <width sOffset="67.604784610768718" a="3.746006015494916" b="0.0033896270017361968" c="0.00047203827285806994" d="-0.0001016669820862851" /> - <width sOffset="68.793488292841971" a="3.7505315096898699" b="0.0040808829153529012" c="0.00011030475150892004" d="-9.972677019816905e-05" /> - <width sOffset="71.956891527524874" a="3.7613878147210849" b="0.0017848264535046498" c="-0.00030067504830439437" d="5.8300634334124247e-06" /> - <width sOffset="73.069802388886501" a="3.7630097964644684" b="0.0011372402347442929" c="-0.00020099122961690858" d="7.9724266071250675e-06" /> - <width sOffset="78.890769087851766" a="3.7643917633421626" b="-0.00039228145642612841" c="-6.3129952407420587e-05" d="7.9502151155703763e-06" /> - <width sOffset="85.383457586552368" a="3.7613595270347644" b="-0.00020662363967442624" c="-8.1500467268529902e-05" d="2.3263462534649072e-06" /> - <width sOffset="88.988049882861617" a="3.7596647444119333" b="-0.00070349630441793451" c="-5.6739945094809379e-05" d="2.6834244402332362e-06" /> - <width sOffset="99.085330677871468" a="3.7495389215290658" b="-0.0010285683642172723" c="2.4321440132948835e-05" d="2.6225479687914437e-06" /> - <width sOffset="107.79222190655076" a="3.7441581586361092" b="-8.594367232223803e-06" c="0.00060079252906767439" d="-2.6653495969937941e-05" /> - <width sOffset="109.18261147288126" a="3.7452360097723005" b="0.0015074986930715931" c="0.00048767368693134855" d="-2.6766662037747232e-05" /> - <width sOffset="116.68571676050868" a="3.7726950787368194" b="0.0043050174196866712" c="-1.8785719912500263e-05" d="-3.6174854691760647e-05" /> - <width sOffset="119.27989226789111" a="3.7831050805400963" b="0.0034772076986176437" c="-0.00030241586908532909" d="-3.7287817901408802e-05" /> - <width sOffset="122.81717474227554" a="3.78997065743317" b="-6.192962936026232e-05" c="-0.00023894230584732291" d="-7.7168182373839274e-06" /> - <width sOffset="125.09934496063954" a="3.7884931161791031" b="-0.0012731181922261919" c="-0.00033339005336507254" d="2.4760410092625565e-05" /> - <width sOffset="129.37717306290091" a="3.7788842901366393" b="-0.0027661562270895053" c="-2.0844552014155448e-06" d="2.1813128462602226e-05" /> - <width sOffset="131.25529210232651" a="3.7738262733704326" b="-0.0025431595561280721" c="-0.00040435889111708551" d="8.9681546933790898e-05" /> - <width sOffset="135.86101449265999" a="3.7622975122844524" b="-0.00056073162204093273" c="6.4161971268782657e-05" d="1.1574301916889913e-06" /> - <width sOffset="139.47445385791076" a="3.7611637099437139" b="-5.1703332820006421e-05" c="7.7727284512421526e-05" d="5.2569437914764837e-07" /> - <width sOffset="140.61086146436247" a="3.7612061041271589" b="0.00012699310212965244" c="1.7168544604794535e-05" d="-7.1039874246032757e-07" /> - <width sOffset="149.57173465292061" a="3.7632115044355423" b="0.00026355421155229569" c="-5.9599859155066591e-06" d="-6.7352263997436927e-07" /> - <width sOffset="159.66901544793041" a="3.764571663753824" b="-6.2812253910458611e-05" c="-2.8498684650096694e-05" d="-8.1828749863203347e-07" /> - <width sOffset="162.07306131324572" a="3.7642445845641639" b="-0.00021402426587722914" c="-7.9666451654946454e-05" d="3.694625071690526e-07" /> - <width sOffset="166.84022265577715" a="3.7614538370511283" b="-0.00094840089977198268" c="-0.00035346202537933695" d="2.1436698649039316e-05" /> - <width sOffset="169.76629624294026" a="3.7561894860236111" b="-0.0024662956554774955" c="-0.00016090343274533341" d="2.1168218026107654e-05" /> - <width sOffset="176.88893432264956" a="3.7381090460258362" b="-0.0015366930802353149" c="0.00015019074161846862" d="-3.3268843665954003e-06" /> - <width sOffset="179.86357703795005" a="3.7347793284829565" b="-0.00073147929111803131" c="0.00013760862020882787" d="-2.4526388130900626e-07" /> - <width sOffset="180.52902717668366" a="3.7343534295976291" b="-0.00054866176641421593" c="0.00048871051255698606" d="-2.2114138352148719e-05" /> - <width sOffset="189.9608578329599" a="3.7540990792741988" b="0.0027684244253676025" c="-0.00013823038224902538" d="-2.1763176203798637e-05" /> - <width sOffset="195.63055612989763" a="3.7613852774069212" b="-0.00089778785670019596" c="-0.00018030216535930049" d="3.8964860689148741e-06" /> - <width sOffset="196.65735097091186" a="3.7602775576867056" b="-0.0012557302379702915" c="-0.00019094080865595298" d="1.0883171608848213e-05" /> - <width sOffset="200.0581386279697" a="3.7542268367642704" b="-0.0021768252439100695" c="-8.4749522354790943e-05" d="9.874323160577207e-06" /> - <width sOffset="208.42317097239379" a="3.7358671453248813" b="-0.0015218594968627417" c="7.7244437438211679e-05" d="5.7304265129765009e-06" /> - <width sOffset="210.15541942297955" a="3.7334924791345747" b="-0.0012026607733304309" c="0.00010789609322385275" d="5.7521386384244441e-06" /> - <width sOffset="215.40113783800842" a="3.7309830144169185" b="0.0004041787624301064" c="0.00026890198289194513" d="-8.9353506798703996e-06" /> - <width sOffset="220.2527002179894" a="3.7382528685443925" b="0.002382416578075764" c="0.00013432517112544476" d="-8.0289857725914206e-06" /> - <width sOffset="224.1835559043792" a="3.7492056812116883" b="0.0030662596373218546" c="0.0010509404618352807" d="-0.00018460107110851724" /> - <width sOffset="228.53795239172644" a="3.767242866729787" b="0.0017181478767662145" c="-0.00061433816179123435" d="2.2948238333046039e-05" /> - <width sOffset="230.34998101299925" a="3.7684755877811358" b="-0.00028220076505161215" c="-0.00049585379655031907" d="2.0323515886500631e-05" /> - <width sOffset="233.174439324638" a="3.7641807532523899" b="-0.0025968410270474957" c="-8.8887784950495802e-05" d="2.9358140951005888e-05" /> - <width sOffset="239.16962825808184" a="3.7517434864150583" b="-0.00049704267796749665" c="4.6242001671041894e-05" d="-2.3412150781550108e-06" /> - <width sOffset="240.44726180800899" a="3.7511790483270291" b="-0.00039034704211475334" c="3.7073195539226388e-05" d="-1.673751127576162e-06" /> - <width sOffset="250.54454260301884" a="3.7492943302225337" b="-0.00015361239905026914" c="-1.8235864197465556e-05" d="-1.3321090520874946e-06" /> - <width sOffset="256.58972959628761" a="3.7474050123228397" b="-0.0005201337388486191" c="-0.003602456344069169" d="0.0011252370950763932" /> - <width sOffset="258.7979430405361" a="3.7408063456518468" b="3.0546899149030522e-05" c="0.00035023670296958085" d="-1.7272319961756458e-05" /> - <width sOffset="260.64182339802869" a="3.7419451582549872" b="0.001145963842252307" c="0.000249102717791358" d="-1.9434126852050119e-05" /> - <width sOffset="270.95858075759509" a="3.7589411439549552" b="8.0386435871935888e-05" c="-0.00010092668625989246" d="5.8926330349387669e-06" /> - <width sOffset="271.69818131745922" a="3.7589477739750699" b="-5.9234461752340935e-05" c="0.00028979402730506198" d="-1.1113877109735486e-05" /> - <width sOffset="280.83638498804839" a="3.7741252194639778" b="0.0024529074100078361" c="-8.0760681200961747e-06" d="-1.288613205186755e-05" /> - <width sOffset="282.7768906755681" a="3.7787605291137862" b="0.0022759934977270393" c="-0.0001403046394130401" d="-1.7040927174836804e-05" /> - <width sOffset="286.75939956373156" a="3.7845230342645468" b="0.00034763796016877661" c="-0.00030747108544142566" d="1.2169246358329419e-05" /> - <width sOffset="290.93366578305813" a="3.7815017621931291" b="-0.0015831653269378857" c="-0.00015365163263456001" d="1.2018433481231732e-05" /> - <width sOffset="297.25057760796574" a="3.768399267374388" b="-0.002085644782675753" c="0.00033576095394283287" d="-1.6232678490686557e-05" /> - <width sOffset="301.03094657806798" a="3.764436197798243" b="-0.00024299705501125597" c="0.00015372231311187482" d="-1.5939578891793718e-05" /> - <width sOffset="305.9744321271495" a="3.765065971965543" b="0.00010825436399408347" c="-0.00024808627881108599" d="-3.3926641095903849e-05" /> - <width sOffset="306.09789767411269" a="3.7650754920342071" b="4.5442640982601574e-05" c="-6.1038464910621686e-05" d="6.224354431325616e-06" /> - <width sOffset="311.12822737307783" a="3.764551842019773" b="-9.6137321244528636e-05" c="3.6502434146729835e-05" d="5.999845890848411e-06" /> - <width sOffset="319.56867332989066" a="3.7699486234121924" b="0.0018023636905393368" c="0.003299576792695943" d="-0.00061985887371747937" /> - <width sOffset="321.22550816808769" a="3.7791732863722167" b="0.0076313443446374366" c="0.00021626505412945059" d="-0.00061302554287095913" /> - <width sOffset="323.2178820839016" a="3.7903879353896492" b="0.0011927923929850243" c="-0.00039820030974837379" d="1.8459207291424996e-05" /> - <width sOffset="323.5835149365015" a="3.7907717274128436" b="0.00090900545200876435" c="-0.00025321787503111384" d="2.4722769822909972e-05" /> - <width sOffset="330.44421906141804" a="3.7930730479749615" b="0.0009255471355132691" c="0.0061596033270048317" d="-0.0012997526512797148" /> - <width sOffset="331.32278896309754" a="3.7977592779404632" b="0.0087390523073137844" c="0.0027384919626506636" d="-0.0012995017357403261" /> - <width sOffset="333.43841606149783" a="3.8161996525312065" b="0.0028770741513367078" c="-0.0011642684330235233" d="0.00030527886578707059" /> - <width sOffset="335.24582577998979" a="3.8193988177373877" b="0.0016602447771903472" c="-0.00016384572737775129" d="1.0069890842230554e-05" /> - <width sOffset="341.42006975810727" a="3.8257737153684572" b="0.00078862943394781594" c="2.2644524859409558e-05" d="9.1980333215194522e-06" /> - <width sOffset="343.98507896778426" a="3.8281007666579319" b="0.0010863453596144841" c="0.00035606690412664751" d="-7.9813821698146458e-05" /> - <width sOffset="344.1863568844052" a="3.8283331984274249" b="0.0012199817247685097" c="1.2508960296984451e-05" d="-6.7149458501932836e-05" /> - <width sOffset="348.37640202868818" a="3.8287249124291849" b="-0.0022119160939058032" c="-0.00020822188834340534" d="1.1897208756922505e-05" /> - <width sOffset="351.51735055311713" a="3.8200918340885286" b="-0.0031678267638034852" c="-8.8012860537714963e-05" d="1.3456627778242798e-05" /> - <width sOffset="359.4494323672842" a="3.7961425873655115" b="-0.0020240880177370777" c="3.475768828306755e-05" d="2.0648827575238305e-06" /> - <width sOffset="361.61463134812698" a="3.7919439409882942" b="-0.0018445323475191754" c="4.6425710372802496e-05" d="2.9688396237604616e-06" /> - <width sOffset="363.19409301493954" a="3.7891580890971239" b="-0.0016756580026220109" c="0.0022482911165061861" d="-0.00024425470327195327" /> - <width sOffset="368.17018462957014" a="3.8063949456346586" b="0.0025554176074473588" c="-0.00073938821711401915" d="7.942795733271104e-05" /> - <width sOffset="371.71191214313683" a="3.8096995088382606" b="0.00030698770681120841" c="0.00010737961756502581" d="7.7872940745258931e-05" /> - <width sOffset="375.23741921234011" a="3.8155287714409134" b="0.0039678179959626789" c="0.0027932545154230304" d="-0.00042471534459117617" /> - <width sOffset="380.21740063866389" a="3.8521074408764973" b="0.00018943362026586192" c="4.9630272391701864e-05" d="-8.8051267580622506e-06" /> - <width sOffset="380.61618111890959" a="3.8521903174143186" b="0.00022481605911566936" c="1.4439715191410611e-05" d="-5.5170304470241251e-06" /> - <width sOffset="381.80919293814668" a="3.8524697095040676" b="0.00023571276993364522" c="8.2499645849359715e-06" d="-1.7875676339876322e-06" /> - <width sOffset="391.90647373315642" a="3.853850647741734" b="-0.00014443761259419344" c="-5.1709233125580339e-05" d="-5.4752262838794434e-07" /> - <width sOffset="392.61974261900775" a="3.8537211190013663" b="-0.00021903844731348238" c="-2.6039191374095274e-05" d="-7.0816226646395232e-07" /> - <width sOffset="394.58305702330301" a="3.8531853476764306" b="-0.00032947374046245648" c="-0.002924233212938204" d="0.00045736347405377347" /> - <width sOffset="398.06871794527581" a="3.8358774037188241" b="-0.0040445764101435244" c="0.0027826287276179968" d="0.0003956967624059253" /> - <width sOffset="398.49562994988798" a="3.834688658046411" b="-0.0014523494071107604" c="0.0010550191127551404" d="-7.0778721236538109e-05" /> - <width sOffset="402.00375452816627" a="3.8395218705104175" b="0.0033367195389331834" c="0.00030895227425779625" d="-6.9411391387416065e-05" /> - <width sOffset="407.64684511786834" a="3.8557163901156462" b="0.00019250367763683457" c="-9.8622362046830862e-05" d="-6.5168417298990536e-06" /> - <width sOffset="412.10103532317612" a="3.8540412939606856" b="-0.0010739405531619193" c="-0.00019215658819892795" d="-8.8419300503157895e-06" /> - <width sOffset="413.90093153851683" a="3.8514342396532313" b="-0.0018515980345487999" c="-0.00039450019708202317" d="2.0170193324312418e-05" /> - <width sOffset="422.19831611818597" a="3.8204329802024395" b="-0.0042322905961644248" c="0.00010358097657968761" d="2.0568950104755765e-05" /> - <width sOffset="427.99247859198829" a="3.8033889979566982" b="-0.00096031853194967977" c="0.00045895413423555954" d="1.8344499652494508e-05" /> - <width sOffset="429.65641536132478" a="3.803146299931575" b="0.00071939324139775587" c="0.0021418837753165265" d="-0.00031174237454881568" /> - <width sOffset="432.29559691319582" a="3.8142330811840131" b="0.0055109154423178212" c="-0.00032481383373086697" d="-0.00031499969154954657" /> - <width sOffset="433.50476582422436" a="3.8198649098411162" b="0.0033437326806743423" c="-3.9939495801885602e-05" d="-1.208043588900608e-06" /> - <width sOffset="442.39287770820556" a="3.8455809932987348" b="0.0023474582526510973" c="-7.3453603111999622e-05" d="-1.233948236091203e-06" /> - <width sOffset="451.40354069221996" a="3.8598665507127388" b="0.00072316657637953169" c="-0.00025002160574860835" d="2.5750486858359692e-06" /> - <width sOffset="452.49015850321541" a="3.8603604501338045" b="0.00018893209206721881" c="-0.0002395044255889765" d="2.4421563234968693e-06" /> - <width sOffset="458.11586328906094" a="3.8542781722381485" b="-0.00227395814315107" c="-0.00024343281029064054" d="1.4963037531832496e-05" /> - <width sOffset="462.58743929822526" a="3.840580390580048" b="-0.0035534573243369222" c="-1.680494928508449e-05" d="1.0427832984890273e-05" /> - <width sOffset="464.93200448766686" a="3.8322910960134471" b="-0.0034602929690301029" c="0.0017345498405228852" d="-0.00019625762575670072" /> - <width sOffset="470.85648506443601" a="3.8318614242596478" b="-0.0035732952938910888" c="-0.00024377061547577189" d="4.4469475890149069e-05" /> - <width sOffset="472.68472009323511" a="3.8247855539960351" b="-0.004018725142332355" c="-4.8024012648522501e-06" d="5.1566621408104417e-05" /> - <width sOffset="475.13764437584689" a="3.8156600941114358" b="-0.0031114810457735015" c="0.0006990187287512948" d="-2.1823757277697636e-05" /> - <width sOffset="482.78200088824497" a="3.8229739864332548" b="0.003749724246576415" c="0.00019295308990035069" d="-2.423707999850081e-05" /> - <width sOffset="484.46199276365621" a="3.8297031565893445" b="0.0041928252744618403" c="-7.2101276823221524e-05" d="-2.7578318447442324e-05" /> - <width sOffset="488.50168183334461" a="3.8436461657730749" b="0.0022601327959880201" c="2.8194144208916531e-05" d="-9.1765786965735186e-06" /> - <width sOffset="492.8792816832547" a="3.8533105982528877" b="0.0019794153526398591" c="-8.9361951460662035e-05" d="-9.7901194031163779e-06" /> - <width sOffset="499.00805095989961" a="3.8598316206362746" b="-0.00021914611087698547" c="-6.9808027006387638e-05" d="-7.4840867622022267e-07" /> - <width sOffset="502.97656247826455" a="3.8578157484562361" b="-0.00080857428196156797" c="-7.3870040944014451e-05" d="1.2566460753232374e-07" /> - <width sOffset="505.64503892708888" a="3.855134463538846" b="-0.0012001307260230375" c="-0.00011047743214513496" d="5.0852609563473882e-06" /> - <width sOffset="513.07384327327441" a="3.8422068212483635" b="-0.0019996382484925115" c="3.2681603373080099e-06" d="5.1087232823975594e-06" /> - <width sOffset="513.33014020474332" a="3.8416946207892742" b="-0.0019969562622910442" c="-5.7471009061492685e-05" d="9.8514465240914813e-06" /> - <width sOffset="519.98356996506948" a="3.8287654731972802" b="-0.0014533996317837076" c="0.00013158386306411736" d="1.0748283811912149e-06" /> - <width sOffset="523.17112406828426" a="3.8255044518557568" b="-0.00058177588148653121" c="0.00013978909885804005" d="9.2969350274947519e-07" /> - <width sOffset="524.01693715269369" a="3.8251129458451136" b="-0.0003433096761768854" c="0.00073165506116649429" d="-3.5527241105268048e-05" /> - <roadMark sOffset="0" color="standard" width="0.15821327330226068" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15821299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.7056986775465477" b="0.001382439009689311" c="5.7375509164642623e-05" d="-2.9587134966174256e-06" /> - <width sOffset="8.2098035227829769" a="3.7192781916612256" b="0.0017262626984900272" c="-1.6247269037977669e-05" d="-3.1012072102823095e-06" /> - <width sOffset="12.463997893248575" a="3.7260892312266218" b="0.0014196460940488955" c="-0.00010239379679016643" d="1.9587899685114696e-06" /> - <width sOffset="18.307084317792828" a="3.7312792161853574" b="0.00042368350334986982" c="-6.6357908204865305e-05" d="1.9475425408895211e-06" /> - <width sOffset="28.404365112802623" a="3.7307966764835281" b="-0.00032069979739317517" c="-2.5834013362636359e-06" d="1.338031357895726e-06" /> - <width sOffset="31.65136078561477" a="3.7297739337235267" b="-0.00029515586616633881" c="0.00016082198155732171" d="-3.5209934548806974e-09" /> - <width sOffset="34.025614786950314" a="3.729979678310313" b="0.00046844905587662246" c="9.2861020426259741e-05" d="-3.3176073331318979e-06" /> - <width sOffset="38.501645907812474" a="3.7336394160505799" b="0.0011003433489956611" c="5.3109043092004414e-05" d="-3.0807887155103205e-06" /> - <width sOffset="48.598926702822325" a="3.7469930518438144" b="0.0012305510158982958" c="-3.9225135448055798e-05" d="-2.9827935659379661e-06" /> - <width sOffset="49.439210584888485" a="3.7479975983557678" b="0.0011583122719018351" c="-0.00011595906964148418" d="2.5758427828660399e-07" /> - <width sOffset="58.69620749783212" a="3.7489876566893408" b="-0.00092233449787221234" c="-0.0001110542347739555" d="3.5865467746044274e-07" /> - <width sOffset="67.604784610768718" a="3.7322109717814413" b="-0.0028156134658788019" c="-0.00042220317434309639" d="0.00010256849233474425" /> - <width sOffset="68.793488292841971" a="3.7284397416325601" b="-0.0033845695028835963" c="-6.1693397305159685e-05" d="0.00010067796111466393" /> - <width sOffset="71.000661692236122" a="3.7217514029640197" b="-0.0021855129338685737" c="0.0005917868298686436" d="9.4275187876839413e-05" /> - <width sOffset="71.956891527524874" a="3.720285095474221" b="-0.00079513572260220917" c="0.00032678490952039432" d="-1.1281645753351322e-05" /> - <width sOffset="78.890769087851766" a="3.726722122158308" b="0.0021094182154626378" c="9.0003381483595024e-05" d="-1.1131137830655101e-05" /> - <width sOffset="85.383457586552368" a="3.7411654257105171" b="0.001870446577705227" c="4.6415675361840917e-05" d="-5.507268968514785e-06" /> - <width sOffset="88.988049882861617" a="3.7482527741689902" b="0.0019903964976151472" c="-1.6050304093918948e-05" d="-5.9566558490750203e-06" /> - <width sOffset="89.562455410329108" a="3.7493896443468397" b="0.0019660616831856845" c="2.0202455393474348e-05" d="-2.6345253696771168e-06" /> - <width sOffset="99.085330677871468" a="3.7676691349028699" b="0.0016340955972569014" c="-5.514037987054289e-05" d="-2.7137359108741291e-06" /> - <width sOffset="107.79222190655076" a="3.7759255847827391" b="5.6708426793548785e-05" c="-0.00063399335928259327" d="2.6562308026945924e-05" /> - <width sOffset="109.18261147288126" a="3.7748502025455082" b="-0.0015522376583427813" c="-0.0005233488015275598" d="2.6991000451131695e-05" /> - <width sOffset="119.27989226789111" a="3.7336051544243145" b="-0.0038654284772985407" c="0.00029500563554874984" d="2.6553078737337445e-05" /> - <width sOffset="122.29991726650371" a="3.7253534634887258" b="-0.0013570435632461683" c="0.00052573131075901833" d="2.6474763232496993e-05" /> - <width sOffset="122.81717474227554" a="3.7247958487315356" b="-0.00079191627241214724" c="0.00010764792081594495" d="-3.0962364273120696e-06" /> - <width sOffset="129.37717306290091" a="3.7233592863476397" b="0.00022069769203775041" c="4.9716840291131777e-05" d="-2.9714411465368669e-06" /> - <width sOffset="139.47445385791076" a="3.7275976105760442" b="0.00031584693080040447" c="-4.3110594585759601e-05" d="-1.0587308737360797e-06" /> - <width sOffset="140.61086146436247" a="3.7278993136752634" b="0.0002137627097720991" c="1.563090513994101e-05" d="1.7736224865401478e-07" /> - <width sOffset="141.49057416245938" a="3.7280995808649346" b="0.00024167590021064952" c="2.7580753843929076e-06" d="-1.3419407230957314e-07" /> - <width sOffset="149.57173465292061" a="3.7301618993687327" b="0.00025996210583723207" c="-5.4644162589670457e-06" d="-2.081246251828735e-07" /> - <width sOffset="159.66901544793041" a="3.7320154268901438" b="8.5952527051716323e-05" c="-1.3886484443076764e-05" d="-3.6417635148796559e-07" /> - <width sOffset="162.07306131324572" a="3.7321367447747305" b="1.2870833714319916e-05" c="2.8753190572420052e-05" d="-1.5519263572832374e-06" /> - <width sOffset="169.76629624294026" a="3.7332309057417632" b="0.00017972462833127452" c="-4.3931264970384733e-06" d="-1.7314297037747924e-06" /> - <width sOffset="177.89997364556393" a="3.7334704154164688" b="-0.00023537698757312043" c="-6.8030142142057047e-05" d="2.4508008078361811e-06" /> - <width sOffset="179.86357703795005" a="3.732764477299674" b="-0.00047419648386826194" c="-4.0129325518579493e-05" d="3.892302832510708e-07" /> - <width sOffset="180.52902717668366" a="3.7324312676570783" b="-0.00052708753293711586" c="-0.00039094381048270269" d="2.225810475508146e-05" /> - <width sOffset="181.12165638124833" a="3.7319862297943462" b="-0.00096700520668768861" c="-0.00030970682367635453" d="1.8304132790584152e-05" /> - <width sOffset="189.9608578329599" a="3.7118820213276096" b="-0.0021517401359279031" c="0.00017480411799498287" d="1.8703488403952783e-05" /> - <width sOffset="195.63055612989763" a="3.7087102733980002" b="0.0016341308529684148" c="0.00016483338098013494" d="-6.9561738674012833e-06" /> - <width sOffset="200.0581386279697" a="3.7185730631173737" b="0.0026846618511303733" c="6.9375087253675712e-05" d="-7.3301675364198367e-06" /> - <width sOffset="210.15541942297955" a="3.7452078094756462" b="0.0018436178827433642" c="-0.0001484842126383962" d="-8.0330777553376918e-06" /> - <width sOffset="213.4801728738118" a="3.7494008121805198" b="0.00058987851071917589" c="-0.00013632237871756257" d="-6.1068667661776523e-06" /> - <width sOffset="215.40113783800842" a="3.7499876151288314" b="-1.4674802832272944e-06" c="-0.0002419992009380283" d="8.5806225522019701e-06" /> - <width sOffset="220.2527002179894" a="3.7452642604053787" b="-0.0017437126537930962" c="-0.00011515077509863082" d="9.1632697127504079e-06" /> - <width sOffset="230.34998101299925" a="3.7253506004000307" b="-0.001266406398815217" c="0.00016107823689965768" d="8.9475464247424703e-06" /> - <width sOffset="233.174439324638" a="3.723260309178384" b="-0.00014234997576178629" c="2.1369110064613849e-06" d="-8.7078639771271987e-08" /> - <width sOffset="240.44726180800899" a="3.7223045545987219" b="-0.00012508502577418025" c="-5.3228003894017521e-07" d="1.7172924155144831e-08" /> - <width sOffset="250.54454260301884" a="3.7210049463107522" b="-0.00013058158726372978" c="-3.7330672477476385e-06" d="2.9546438741868654e-07" /> - <width sOffset="254.57320674921891" a="3.7204376079314958" b="-0.00014627385510445647" c="-6.4587497542331252e-05" d="1.0411698992943205e-06" /> - <width sOffset="260.64182339802869" a="3.7174039896059767" b="-0.00081515442829818349" c="-4.7500934977876862e-05" d="8.9498753184215371e-07" /> - <width sOffset="270.73910419303854" a="3.7052515468306142" b="-0.0015006694105364165" c="-1.971450241305267e-05" d="8.3954060339838054e-07" /> - <width sOffset="271.69818131745922" a="3.7037948957896911" b="-0.0015361681658963391" c="-0.00039494507933711035" d="1.7846050749639749e-05" /> - <width sOffset="280.83638498804839" a="3.6703948459039117" b="-0.0042835473439236365" c="9.6849152805952699e-05" d="1.7906617482936301e-05" /> - <width sOffset="286.75939956373156" a="3.652141852644748" b="-0.0012516641315280751" c="0.00037860213608278829" d="-1.130355605016589e-05" /> - <width sOffset="288.8410869978037" a="3.6510749547208095" b="0.00017764923203004339" c="0.00021710829151879894" d="-9.1655022221159075e-06" /> - <width sOffset="290.93366578305813" a="3.6523134071882306" b="0.0009658775745672117" c="0.0001614095613271736" d="-8.8604483920988904e-06" /> - <width sOffset="301.03094657806798" a="3.6694011113938179" b="0.0015153697425824013" c="-0.00010612831849787344" d="-8.8650166605227037e-06" /> - <width sOffset="305.9744321271495" a="3.6732277756566969" b="-0.00018384901965535401" c="-7.2183205585963479e-05" d="9.1220451471787659e-06" /> - <width sOffset="306.76122153719291" a="3.6730428839906288" b="-0.0002804943169906978" c="-0.00012679985181712807" d="4.2059612021308604e-06" /> - <width sOffset="311.12822737307783" a="3.6697500776676417" b="-0.0011473333255028551" c="-6.9236878073558307e-05" d="4.1196529566180653e-06" /> - <width sOffset="321.22550816808769" a="3.6553471347898094" b="-0.0012854830905242504" c="4.9224570169359495e-05" d="6.1890697048469821e-06" /> - <width sOffset="323.5835149365015" a="3.6526707999826074" b="-0.00095010203089939467" c="-3.1728381924738199e-05" d="-7.4492824228041281e-08" /> - <width sOffset="325.59755469955064" a="3.6506279465144873" b="-0.0010788129848077971" c="-0.00024761839094263846" d="1.0233678073928488e-05" /> - <width sOffset="331.32278896309754" a="3.6382554654477408" b="-0.002907831640650838" c="-8.130398816781311e-05" d="9.5507120710831991e-06" /> - <width sOffset="341.42006975810727" a="3.6104370809267103" b="-0.0016284992130921004" c="0.00020814541007574207" d="9.2134408758188317e-06" /> - <width sOffset="341.98482741158125" a="3.6095854213805998" b="-0.0013845798720720109" c="7.791908380178166e-05" d="-1.4814117108702423e-07" /> - <width sOffset="344.1863568844052" a="3.6069133002037752" b="-0.0010436515547736201" c="0.00037230433687679513" d="-1.2812504460124422e-05" /> - <width sOffset="351.51735055311713" a="3.614223186153426" b="0.002349304641263096" c="9.4149252760921239e-05" d="-1.2812949896010567e-05" /> - <width sOffset="359.4494323672842" a="3.6323871778681545" b="0.0014244112496952267" c="-1.330417918900809e-05" d="-1.4212048751648581e-06" /> - <width sOffset="361.61463134812698" a="3.6353945143701587" b="0.0013468106645464425" c="-2.1015936071933431e-05" d="-8.5437810830284988e-07" /> - <width sOffset="371.71191214313683" a="3.6459714025628749" b="0.00066107848542433197" c="-4.4807758087877263e-05" d="-1.1340827501723756e-06" /> - <width sOffset="378.72515742341" a="3.6480126085580351" b="-0.000134758763834451" c="-4.8624408563515438e-05" d="-1.1167321483041754e-06" /> - <width sOffset="380.61618111890959" a="3.6475763454695818" b="-0.00033063878542935444" c="-3.0303090244289995e-05" d="-4.4048284427057252e-06" /> - <width sOffset="381.80919293814668" a="3.647131280453876" b="-0.00042175055075962918" c="-3.1525013411806219e-05" d="1.8013396488461921e-06" /> - <width sOffset="391.90647373315642" a="3.6415130349155764" b="-0.00050741719466935271" c="3.2666829620645492e-05" d="-7.46770178933817e-08" /> - <width sOffset="394.58305702330301" a="3.6403874869488924" b="-0.00033415119450756254" c="0.002926090177877413" d="-0.00045814631333932371" /> - <width sOffset="395.20948179024879" a="3.6412137687102217" b="0.0027924587010043078" c="0.0020791391541096116" d="-0.00045798784853268154" /> - <width sOffset="398.49562994988798" a="3.6565900262711271" b="0.0016200613684826826" c="-0.00020151591363712891" d="8.4876351082779993e-06" /> - <width sOffset="402.00375452816627" a="3.6601598069754298" b="0.00051954590797071776" c="-0.00011086405428350625" d="9.242360262934284e-06" /> - <width sOffset="412.10103532317612" a="3.6636173784160255" b="0.0011076116604527082" c="0.00016363672736988819" d="1.0119215140352372e-05" /> - <width sOffset="413.90093153851683" a="3.6662000913666031" b="0.0017950173421434964" c="0.00037287727805147461" d="-1.8892908234278805e-05" /> - <width sOffset="422.19831611818597" a="3.6959728596107384" b="0.0040806927259217285" c="-0.00010010952833899675" d="-1.8764321714777958e-05" /> - <width sOffset="429.65641536132478" a="3.7130543939831018" b="-0.00054375822289933428" c="-0.002111305427696753" d="0.00031132255248657835" /> - <width sOffset="432.29559691319582" a="3.7026364147255668" b="-0.0051826493356804488" c="0.00034307742120385799" d="0.00031364197502166998" /> - <width sOffset="433.50476582422436" a="3.6974258179129595" b="-0.0029772543587410715" c="5.3277957428353753e-05" d="-1.4967293897608928e-07" /> - <width sOffset="442.39287770820556" a="3.6750674360114974" b="-0.0020656452933594679" c="4.7774252298657769e-05" d="-1.6849058669203124e-07" /> - <width sOffset="451.06210344243561" a="3.6606406089735257" b="-0.0012753027085793027" c="-9.1516104250554664e-05" d="9.6424281413144547e-06" /> - <width sOffset="451.40354069221996" a="3.6601948880444453" b="-0.001334424397138978" c="6.1572675749714485e-05" d="5.833431244451257e-06" /> - <width sOffset="452.49015850321541" a="3.6588250642993607" b="-0.001179949198359914" c="8.147676032571484e-05" d="5.3221797384546022e-06" /> - <width sOffset="462.58743929822526" a="3.6606967748952037" b="0.002093308030489207" c="0.00025068206118025944" d="4.1114727649712836e-06" /> - <width sOffset="465.19364592605609" a="3.6679278611725668" b="0.0034837457587126152" c="7.687556587312349e-05" d="-8.8708983242332088e-06" /> - <width sOffset="469.95442965777454" a="3.6852984101551636" b="0.0036125432708344193" c="-7.1155632436266923e-05" d="-3.8484880403455339e-06" /> - <width sOffset="472.68472009323511" a="3.6945529459029141" b="0.0031379266864354147" c="-0.00010294213965672818" d="-2.941401336248946e-06" /> - <width sOffset="482.78200088824497" a="3.7127139170566883" b="0.00015938288610558259" c="-0.00020169099170984535" d="-1.0980848389921834e-06" /> - <width sOffset="484.46199276365621" a="3.7124072252226239" b="-0.00052759318274808807" c="-6.4325238253760042e-05" d="2.2431536099503554e-06" /> - <width sOffset="492.8792816832547" a="3.704746581755967" b="-0.0011336940477190086" c="-6.8532588202897736e-06" d="2.0765488419927014e-06" /> - <width sOffset="502.97656247826455" a="3.6947383728692627" b="-0.00063694849853587298" c="5.7011005804540774e-05" d="2.3760577236850066e-06" /> - <width sOffset="504.93332084361998" a="3.6937281101860409" b="-0.00038654188770475574" c="-7.3915878483158667e-06" d="4.135442237065568e-06" /> - <width sOffset="505.64503892708888" a="3.693450748071426" b="-0.00039077900781359337" c="3.9051609559909014e-05" d="-8.2415411145364392e-07" /> - <width sOffset="513.07384327327441" a="3.6923649915853516" b="5.2986415643819802e-05" c="2.0020364842083528e-05" d="-8.594019923634214e-07" /> - <width sOffset="523.12465049698596" a="3.694047411774827" b="0.00019498098801623239" c="0.0039878956044998547" d="-0.0054644732934068302" /> - <width sOffset="523.62424990218926" a="3.6944587824742978" b="8.7891049950974512e-05" c="-0.00019673343204690312" d="4.2588138971547535e-07" /> - <width sOffset="524.01693715269369" a="3.6944629850178647" b="-6.6421354157748409e-05" c="-0.00078573863898691331" d="3.6882816006238603e-05" /> - <roadMark sOffset="0" color="standard" width="0.14027440931680168" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14027400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="4.0399732500934444" b="-0.0092895361734968065" c="0.0072310987602909483" d="-0.0058082873918424826" /> - <width sOffset="0.47908885601270867" a="4.036543763864044" b="-0.0063603197229409568" c="0.0034877028623103599" d="-0.00041999526327998331" /> - <width sOffset="4.8202928150619755" a="4.0403000220957761" b="0.00017558174444810143" c="-0.00041808041377949221" d="2.7246802682043032e-05" /> - <width sOffset="8.2098035227829769" a="4.0371529505623354" b="-0.0017194965368283934" c="-0.00014302059349962366" d="2.6677052631825803e-05" /> - <width sOffset="12.463997893248575" a="4.0293034169277515" b="-0.0014879538640647574" c="0.00024401462086652106" d="2.1617055453032448e-05" /> - <width sOffset="15.383341982524485" a="4.0275770384048846" b="0.00048947001732593375" c="0.00032229566059914646" d="-2.2789292744398751e-05" /> - <width sOffset="18.307084317792828" a="4.0311936213485255" b="0.0017896619213465552" c="0.00012771879583304622" d="-2.2409469448210535e-05" /> - <width sOffset="23.232941189556641" a="4.0404298078273388" b="0.0014166764057194298" c="-0.00014234901837430658" d="3.1219169212905035e-06" /> - <width sOffset="28.404365112802623" a="4.0443808825633933" b="0.00019485629753862024" c="-8.9244521634985167e-05" d="3.4422211221965731e-06" /> - <width sOffset="34.025614786950314" a="4.04326764692859" b="-0.00048216864442074446" c="3.6740113382110731e-05" d="6.756307461907123e-06" /> - <width sOffset="36.924491726706378" a="4.0423432326663216" b="-9.8828873379706254e-05" c="0.00025253368123007017" d="-3.4811200430959152e-05" /> - <width sOffset="38.501645907812474" a="4.0426789547974415" b="0.00043797049022642519" c="0.00010729958436887549" d="-2.8676017992973784e-05" /> - <width sOffset="45.129781840614214" a="4.0419456613605957" b="-0.0019190375120887409" c="-0.00021269423737685502" d="2.5002620840290949e-05" /> - <width sOffset="48.598926702822325" a="4.0337723597449333" b="-0.0024920546729252919" c="5.1956390668440118e-05" d="2.6097260628726481e-05" /> - <width sOffset="49.439210584888485" a="4.0317304952210993" b="-0.0023494584109536804" c="0.00018695846720981983" d="2.2856882783967938e-05" /> - <width sOffset="51.642996550857788" a="4.0277054265545562" b="-0.0011924003305372496" c="0.00033821329767174941" d="-5.5837680119060617e-06" /> - <width sOffset="58.69620749783212" a="4.0341612962304074" b="0.0027452388705785221" c="0.00020992044212946877" d="-2.2769872782472821e-06" /> - <width sOffset="60.6065098105571" a="4.0401557123129042" b="0.003522333961627302" c="0.0011544267376456952" d="-0.00023217267346292483" /> - <width sOffset="64.746652120301746" a="4.0580502544821719" b="0.0011424549209446192" c="-0.00029648602983445846" d="8.2731003676311477e-06" /> - <width sOffset="68.793488292841971" a="4.0583663614656018" b="-0.00085074306894303894" c="-0.000200219692065723" d="7.3815441900289084e-06" /> - <width sOffset="71.000661692236122" a="4.055592600893366" b="-0.0016267021144250678" c="-0.00013818172225870597" d="1.37843174273122e-05" /> - <width sOffset="76.457101252356495" a="4.0448418569696649" b="-0.0019034721525208881" c="-8.1117545595449627e-05" d="9.2902976625148207e-06" /> - <width sOffset="78.890769087851766" a="4.0398629101167653" b="-0.0021332264471596151" c="-1.8269242282951244e-05" d="9.4118647563541962e-06" /> - <width sOffset="83.554772225514284" a="4.0304710132491008" b="-0.0016894352817831864" c="8.1170060230574797e-05" d="2.5998884709812896e-06" /> - <width sOffset="88.988049882861617" a="4.0241050277251027" b="-0.00057714626197689824" c="0.00011812558518500393" d="2.1022869357418102e-06" /> - <width sOffset="89.562455410329108" a="4.023812884705773" b="-0.00043936138740630765" c="7.5230913269419599e-05" d="-1.2198435448599927e-06" /> - <width sOffset="99.085330677871468" a="4.0253977912825585" b="0.00066160272242347115" c="4.122579984034171e-05" d="-1.6910691008967421e-06" /> - <width sOffset="101.60226612014281" a="4.0272972030002041" b="0.00083698949020116894" c="0.00014565875250799616" d="-1.0536490929133184e-05" /> - <width sOffset="109.18261147288126" a="4.0374221879265297" b="0.0012289447765919915" c="-9.6866986258736616e-05" d="-9.0571460919986735e-06" /> - <width sOffset="111.12843629887806" a="4.0393800109285554" b="0.0007490949729133205" c="-0.00011657578212109345" d="4.0419732599564401e-06" /> - <width sOffset="119.27989226789111" a="4.0399294722134922" b="-0.00034570802892481623" c="-1.7903995507300382e-05" d="3.7821547034810843e-06" /> - <width sOffset="122.29991726650371" a="4.038826307793463" b="-0.00035036305243780911" c="2.6209819275375073e-05" d="3.8604702042829069e-06" /> - <width sOffset="124.86437548044046" a="4.0381652907553374" b="-0.00013977055908728905" c="-7.9402704288245314e-06" d="-2.6669523949856779e-07" /> - <width sOffset="129.37717306290091" a="4.0373483176541995" b="-0.00022773024478073799" c="-6.6722737343928271e-06" d="2.561494343291149e-07" /> - <width sOffset="139.47445385791076" a="4.0346322871472502" b="-0.00028412667986877662" c="6.6973704893003482e-07" d="9.9643984753393624e-11" /> - <width sOffset="141.49057416245938" a="4.0340621767031823" b="-0.00028142492386196486" c="1.4011252953074048e-05" d="3.1165596416770368e-07" /> - <width sOffset="149.57173465292061" a="4.0328674175379966" b="6.0876667316783284e-06" c="1.3518744510427377e-05" d="9.6722544587415611e-07" /> - <width sOffset="155.39143667996194" a="4.033551358372061" b="0.0002617144740404508" c="2.3210908683690972e-05" d="-5.5193327417546559e-07" /> - <width sOffset="159.66901544793041" a="4.0350523687424831" b="0.00042999015889265651" c="1.1917860103298276e-05" d="-1.3095763550255436e-06" /> - <width sOffset="169.76629624294026" a="4.0392610181429625" b="0.00027011223478933997" c="-2.194236005884555e-05" d="-2.8235786148741228e-06" /> - <width sOffset="172.6585826853613" a="4.0397903890012721" b="7.2324630459659651e-05" c="-5.6189718822514648e-05" d="4.4410330677349681e-06" /> - <width sOffset="177.89997364556393" a="4.0392652917917031" b="-0.00015068536934657574" c="3.503019658070354e-05" d="2.5880255604889701e-07" /> - <width sOffset="179.86357703795005" a="4.0391064321898575" b="-1.0120918894794963e-05" c="2.3091139029408343e-05" d="2.3203730820439151e-06" /> - <width sOffset="180.80624579395311" a="4.0391193545915289" b="3.9599492012826936e-05" c="-7.3674353938662178e-05" d="6.5312443503817412e-06" /> - <width sOffset="181.12165638124833" a="4.0391247202220812" b="-4.9265907043197004e-06" c="-0.00010915886115050828" d="1.0485216318887782e-05" /> - <width sOffset="188.68520781880017" a="4.037379625656806" b="0.00014330915901865967" c="0.00028372179802052549" d="-2.3921139741286542e-05" /> - <width sOffset="189.9608578329599" a="4.0379744770913035" b="0.0007503892011882494" c="0.00019256494061917873" d="-2.149629247627136e-05" /> - <width sOffset="198.02306751447122" a="4.0452759832631395" b="-0.00033633999233318758" c="-1.742771645530565e-05" d="4.216587668736796e-06" /> - <width sOffset="200.0581386279697" a="4.0445548688874471" b="-0.00035488410088461552" c="1.0468961815920876e-06" d="1.6583970359889256e-06" /> - <width sOffset="210.15541942297955" a="4.0427855093017335" b="0.00017350351324125644" c="5.2170041044023083e-05" d="1.8714101427554453e-06" /> - <width sOffset="213.4801728738118" a="4.0440078302310534" b="0.00058246818302159597" c="-2.1449869849838986e-05" d="-5.4800846479995558e-08" /> - <width sOffset="220.2527002179894" a="4.0469517448951482" b="0.00028438785075315839" c="-2.5345987411573287e-05" d="5.3207472412985455e-07" /> - <width sOffset="226.14230336247169" a="4.0478561897281837" b="4.12011430162129e-05" c="-0.0019197754396523973" d="0.00031052705031292039" /> - <width sOffset="230.09299155844496" a="4.0372029760182535" b="-0.00058760707282658696" c="8.7183081457892306e-05" d="-5.2576945883002536e-06" /> - <width sOffset="230.34998101299925" a="4.0370576358436683" b="-0.00054383851864727405" c="8.383379098083203e-05" d="-5.1947126923656822e-06" /> - <width sOffset="240.44726180800899" a="4.0347658304119856" b="-0.00043973389922123554" c="-7.313644272829379e-05" d="-5.2367679367836428e-06" /> - <width sOffset="241.17691811457848" a="4.0344040037638518" b="-0.00055482697202659465" c="-0.00034065589905758791" d="3.8710296929959882e-05" /> - <width sOffset="245.66071600322232" a="4.0285570856036728" b="-0.0012749444407130766" c="-1.0526008450084467e-05" d="1.420690051586737e-06" /> - <width sOffset="250.54454260301884" a="4.0222449073392008" b="-0.0012761009567746802" c="5.2905607573399817e-06" d="7.3815110029532634e-07" /> - <width sOffset="254.57320674921891" a="4.0172380562542722" b="-0.0011975322963140628" c="7.8637260020970127e-05" d="-7.5544115851361284e-09" /> - <width sOffset="259.16387727669655" a="4.0133970709249072" b="-0.00047601440324378512" c="0.00012718869379263302" d="-2.2815483273452707e-06" /> - <width sOffset="260.64182339802869" a="4.0129640031390954" b="-0.00011500925725965489" c="0.0001109434516846226" d="-5.2715288053664735e-06" /> - <width sOffset="270.73910419303854" a="4.0176870949716825" b="0.00051306769622069565" c="-4.4952276908937457e-05" d="-5.9483068308687685e-06" /> - <width sOffset="275.16615534542723" a="4.0185613583240496" b="-0.00023468306722638404" c="-0.000128839741872625" d="1.6468524229374739e-05" /> - <width sOffset="279.85609822675644" a="4.0163256643581837" b="-0.00035648168029557689" c="2.4053240129870295e-05" d="-9.2024802961766071e-07" /> - <width sOffset="280.83638498804839" a="4.0159984574486902" b="-0.00031197650509761721" c="2.0344452424205037e-05" d="-9.5008490705123841e-07" /> - <width sOffset="288.8410869978037" a="4.0143174527534313" b="-0.00016890474266073813" c="8.8431445523491398e-05" d="-3.0881387353361274e-06" /> - <width sOffset="290.93366578305813" a="4.0143229403671983" b="0.00016062696887666453" c="6.9479151190060935e-05" d="-3.3559464348134989e-06" /> - <width sOffset="301.03094657806798" a="4.0195737453142826" b="0.00053726061059983731" c="-3.1419845551716974e-05" d="-3.3256322429496898e-06" /> - <width sOffset="306.76122153719291" a="4.0209949430461229" b="-0.00015042998864898483" c="-1.2442175257354128e-05" d="1.5904517027678514e-06" /> - <width sOffset="309.10266837866595" a="4.0205949227033564" b="-0.00018253702265963182" c="0.00011784259471692984" d="-1.0028011715816451e-05" /> - <width sOffset="311.12822737307783" a="4.0206253390717244" b="0.00017142576855183194" c="6.2953367047278115e-05" d="-9.8646603296382954e-06" /> - <width sOffset="318.15114632802636" a="4.0215172736396525" b="-0.0004039577391969346" c="-4.1726673795566616e-05" d="1.9582373346799111e-08" /> - <width sOffset="321.22550816808769" a="4.0198815423719507" b="-0.00065996826625755835" c="-3.8143812190516506e-05" d="1.4668313702085858e-06" /> - <width sOffset="325.59755469955064" a="4.0163896036147193" b="-0.0009093867851627344" c="0.0001965352673100728" d="-8.8413395279918869e-06" /> - <width sOffset="331.32278896309754" a="4.0159660480163417" b="0.00047162167373594743" c="4.9475944812534954e-05" d="-8.409289120756262e-06" /> - <width sOffset="331.57973727110527" a="4.0160903542715314" b="0.00049538158917475155" c="-0.0005415895961868194" d="5.5743215875011461e-05" /> - <width sOffset="336.83810289722157" a="4.0118249163314204" b="-0.00057640247948144907" c="2.0797564722718327e-05" d="-9.7682723990740701e-06" /> - <width sOffset="341.42006975810727" a="4.0086808259133875" b="-0.0010010526242602226" c="-0.00011479439927344241" d="-1.0364126432352327e-05" /> - <width sOffset="341.98482741158125" a="4.0080769930785873" b="-0.0011406316073015188" c="1.348235157436921e-05" d="-1.0025443882510424e-06" /> - <width sOffset="351.51735055311713" a="3.9975606088591507" b="-0.0011568905608914238" c="-9.3313829372710171e-06" d="-1.5136416358754807e-06" /> - <width sOffset="356.95835954224924" a="3.9907458897089612" b="-0.0013928670071187198" c="-0.00063986061061005407" d="0.00033510101584313483" /> - <width sOffset="358.8820598194003" a="3.9880840952677712" b="-0.00013441974038020505" c="6.4075859553799975e-05" d="-4.0864759937947365e-06" /> - <width sOffset="361.61463134812698" a="3.9881118544476006" b="0.00012422349766517119" c="3.3259048497459169e-05" d="-3.0770100686507407e-06" /> - <width sOffset="371.62069112558049" a="3.9896021718527765" b="-0.00013441456686143547" c="-0.0051664681725564782" d="0.00026980552316272226" /> - <width sOffset="371.71191214313683" a="3.9895471236243596" b="-0.0010702601575155964" c="-0.0050936619492734283" d="0.00026995156172416864" /> - <width sOffset="373.4553355971135" a="3.973629414250138" b="-0.016369505738297416" c="-0.020001210200017258" d="0.007018149754396151" /> - <width sOffset="375.71142014881923" a="3.9154853238752239" b="0.00054706141750642846" c="0.00091642903703308847" d="-0.00025439224927958248" /> - <width sOffset="378.0671698249904" a="3.9185340753992604" b="0.00062952372226807705" c="-0.00025851738069521905" d="1.1337855272838786e-05" /> - <width sOffset="378.72515742341" a="3.9188395995637921" b="0.00030404735571854788" c="-0.00025618102721895253" d="1.1320504671644198e-05" /> - <width sOffset="381.80919293814668" a="3.9176727498024553" b="-0.00095307811544905331" c="-0.00014330408900029392" d="1.2334624874832168e-05" /> - <width sOffset="391.90647373315642" a="3.9061367874170498" b="-7.4308389447631188e-05" c="0.00025051049941057069" d="2.9108406100938952e-06" /> - <width sOffset="393.364046788868" a="3.906569705710937" b="0.00067451872917950316" c="0.00058769525170627025" d="-6.1775298493265001e-05" /> - <width sOffset="395.20948179024879" a="3.9094277092796781" b="0.0022124740112326648" c="0.00023165678861108345" d="-6.1933763298766266e-05" /> - <width sOffset="399.68761262420333" a="3.9184191916692512" b="0.00056125771872035234" c="-0.0043944793850984017" d="0.00078444176438699151" /> - <width sOffset="402.00375452816627" a="3.9058915695979004" b="-0.0071707731013445292" c="0.0010538401004987386" d="0.00079108364570847566" /> - <width sOffset="403.20322015782961" a="3.9001718193844548" b="-0.0012282447825496126" c="4.2428958784111838e-05" d="4.8717485259809718e-07" /> - <width sOffset="412.10103532317612" a="3.8929454625929423" b="-0.00035748418828459916" c="5.1118183365963554e-05" d="2.9479052604912654e-07" /> - <width sOffset="419.25936609360713" a="3.8931139857637156" b="0.00041967424413134723" c="5.9718544466922502e-05" d="-6.1009738820234514e-06" /> - <width sOffset="422.19831611818597" a="3.8947083289561633" b="0.00061260372546322018" c="-4.8904346946050234e-06" d="-5.0191241537829996e-06" /> - <width sOffset="424.95377676148939" a="3.8962541983322003" b="0.00047132887040693324" c="-8.3595213661383902e-05" d="2.4609867055056954e-06" /> - <width sOffset="432.29559691319582" a="3.8961825476504268" b="-0.00035819447615372695" c="-3.5354423681860084e-05" d="2.6483947235708425e-06" /> - <width sOffset="436.8623138727354" a="3.8940616907464243" b="-0.0005154057171371354" c="-7.1572823717201353e-05" d="2.8626320434016818e-05" /> - <width sOffset="438.37884623673347" a="3.8932152967557063" b="-0.00053498024220188876" c="9.2838186423505696e-05" d="-4.6662493773031033e-06" /> - <width sOffset="442.39287770820556" a="3.8922619259727504" b="-1.52235485812583e-05" c="3.3977383209817194e-05" d="-5.0455254472802069e-06" /> - <width sOffset="451.06210344243561" a="3.8913961754401623" b="-0.00056370492105995589" c="3.7663293828499721e-05" d="-1.4856444199141233e-05" /> - <width sOffset="452.49015850321541" a="3.8906247157861409" b="-0.00054702648508961013" c="-2.3319721807251568e-05" d="-1.6386889067596005e-05" /> - <width sOffset="453.98462365583612" a="3.8897004251023914" b="-0.00072652422516017489" c="-0.00082698794458020307" d="0.00014026758306745084" /> - <width sOffset="459.13406734366151" a="3.8831832438746234" b="0.0019147499123088781" c="0.0053737782947919878" d="-0.00083714187747508718" /> - <width sOffset="462.58743929822526" a="3.9194050997530958" b="0.0090793562232720643" c="-0.0033045163399398926" d="-0.00083597665339953629" /> - <width sOffset="463.5202085836105" a="3.9243204732494918" b="0.00073260765438841826" c="-0.00041605878224517653" d="-3.0313585242158759e-06" /> - <width sOffset="465.19364592605609" a="3.924367112546868" b="-0.00068535593271816357" c="-0.00022532460988591507" d="9.9510125649177309e-06" /> - <width sOffset="469.95442965777454" a="3.9170710336358026" b="-0.0021541784644357404" c="-6.1866840660008531e-05" d="4.9286022809707552e-06" /> - <width sOffset="472.68472009323511" a="3.9108286266948484" b="-0.0023817867630205616" c="-2.337183378670666e-05" d="5.0113111982106198e-06" /> - <width sOffset="482.78200088824497" a="3.8895551696413415" b="-0.0013209848057617348" c="0.00011470950923700856" d="7.7299002740559722e-06" /> - <width sOffset="484.93768023173254" a="3.8873180327811068" b="-0.00071866950681412117" c="0.00017040039657566236" d="-2.3825464531977368e-05" /> - <width sOffset="490.8297532475766" a="3.8841257356108221" b="-0.001192058313725778" c="-0.00031822060913971846" d="2.0179982115808002e-05" /> - <width sOffset="492.8792816832547" a="3.8805196043923127" b="-0.0022421605990020719" c="-0.00019214501893600802" d="1.9566799939639304e-05" /> - <width sOffset="500.5574841282413" a="3.8608332130051624" b="-0.0017321473995838301" c="0.00029409922723282742" d="-2.2233782453911239e-05" /> - <width sOffset="502.97656247826455" a="3.8580493156540836" b="-0.00069958153978748197" c="0.00013780220270321193" d="-2.0679439050720374e-05" /> - <width sOffset="504.93332084361998" a="3.8570530996418677" b="-0.00039782903127410878" c="9.4758912778435413e-05" d="-2.2438823564391567e-05" /> - <width sOffset="512.03038541548028" a="3.8509813843364009" b="-0.0024434266956652436" c="-0.00064121852717789957" d="7.2689832090683473e-05" /> - <width sOffset="513.07384327327441" a="3.8478161945346527" b="-0.0035441607116993988" c="-0.00041783372367504876" d="7.0141199202479929e-05" /> - <width sOffset="518.63480044977621" a="3.8272481461103567" b="-0.0016840807731682067" c="0.00070976100832553356" d="-0.00012202550688522674" /> - <width sOffset="522.49319893438349" a="3.8243074181520584" b="-0.0016568677814978951" c="-0.00051042009871857187" d="2.2170282313255397e-05" /> - <width sOffset="523.12465049698596" a="3.8230632480667888" b="-0.0022749589777777183" c="-0.0044622100114064872" d="0.0054857841737278121" /> - <width sOffset="523.62424990218926" a="3.8214969903932352" b="-0.0026258458714351843" c="-0.00024564026545572466" d="2.0884998923124155e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="373.4553355971135" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="373.4553355971135" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="159.81306926618061" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link> - <predecessor id="-5" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="2.4930379528872555" b="0.00053160628447185049" c="-0.0036069258266492881" d="0.0054361670541618543" /> - <width sOffset="0.47908885601270867" a="2.4930625352780806" b="0.0008187575382677119" c="-0.00039836604930393402" d="4.7874925599356705e-05" /> - <width sOffset="4.4828232650786504" a="2.4930274442794333" b="-6.8856918658131289e-05" c="0.0009802678346180916" d="0.00045249896452875023" /> - <width sOffset="4.8202928150619755" a="2.4931332365241641" b="0.00074736365149179716" c="-0.0001256903227358486" d="5.2568985139285146e-06" /> - <width sOffset="8.2098035227829769" a="2.4944271155385485" b="7.6492358231762883e-05" c="-7.3179148973145653e-05" d="5.0641367362626706e-06" /> - <width sOffset="15.383341982524485" a="2.4930794776958116" b="-0.00019161834771107451" c="0.00014684601940989761" d="4.9470484934965148e-05" /> - <width sOffset="15.883981836865132" a="2.4930265590206009" b="-7.3865219934006118e-06" c="-0.00020189998914832766" d="1.7423907160321033e-05" /> - <width sOffset="18.307084317792828" a="2.4920711110266947" b="-0.00067892572581206793" c="-7.3016427617609772e-05" d="1.853930502751734e-05" /> - <width sOffset="23.232941189556641" a="2.4891709867936571" b="-4.8745911321037075e-05" c="0.00013985975857019" d="-6.9920813419984463e-06" /> - <width sOffset="28.404365112802623" a="2.4916922348146642" b="0.00083682147901555613" c="3.0919220921107546e-05" d="-7.2939925477343955e-06" /> - <width sOffset="36.924491726706378" a="2.4965552468848227" b="-0.00022477588753076413" c="-0.00031255445531345213" d="3.4273515345115474e-05" /> - <width sOffset="38.501645907812474" a="2.4955577442008439" b="-0.00095491161907591045" c="-0.0001643961037064264" d="2.7907343453582735e-05" /> - <width sOffset="45.129781840614214" a="2.4901324774758304" b="0.00054390074193685347" c="0.00014031308003389562" d="-2.5771295379721772e-05" /> - <width sOffset="48.598926702822325" a="2.4926320326953961" b="0.00058696354652593217" c="-0.00012898467752160751" d="-2.6214903564217676e-05" /> - <width sOffset="50.13050805251919" a="2.493134268292013" b="7.382337370523016e-06" c="0.00025456931324952577" d="-3.8818298582238747e-05" /> - <width sOffset="51.642996550857788" a="2.4935934808583466" b="0.00051104393565660328" c="7.8292824910571751e-05" d="-1.037764778641099e-05" /> - <width sOffset="58.69620749783212" a="2.4974515502734347" b="6.66805929687821e-05" c="-0.0001345518496342335" d="-1.3614782124932096e-05" /> - <width sOffset="60.6065098105571" a="2.4969930052657663" b="-0.00059644025831138894" c="-0.0011701323966830069" d="0.00021628090405974586" /> - <width sOffset="64.746652120301746" a="2.489815108617349" b="0.00083619956485943628" c="8.339781014881243e-05" d="-2.4164869770826333e-05" /> - <width sOffset="68.793488292841971" a="2.4929633512706815" b="0.0003239583791260017" c="-0.00020470689410502925" d="-2.3375276749246718e-05" /> - <width sOffset="69.497299654539859" a="2.4930818058110313" b="1.071442988012216e-06" c="0.00010748616721049307" d="-1.0328283915402037e-05" /> - <width sOffset="76.457101252356495" a="2.4948138482541298" b="-3.6339833169481139e-06" c="6.0413454616000158e-05" d="-5.8342641508784079e-06" /> - <width sOffset="78.890769087851766" a="2.4950787225124715" b="0.0001867541055403832" c="1.9878620270342784e-05" d="-5.8033363135940224e-06" /> - <width sOffset="83.554772225514284" a="2.4957933807719037" b="-6.5366232404812704e-06" c="-2.9070118305358549e-05" d="1.0086399718045932e-06" /> - <width sOffset="88.988049882861617" a="2.4950614797762434" b="-0.00023310198448096234" c="-1.1650590904991535e-05" d="1.3828511018688319e-06" /> - <width sOffset="99.085330677871468" a="2.4929435490955312" b="-4.5414478183645589e-05" c="2.9920190865870677e-05" d="1.6050750663507962e-06" /> - <width sOffset="101.60226612014281" a="2.493044379551562" b="0.00013570417786210997" c="-7.5162086102164281e-05" d="1.0450496894624578e-05" /> - <width sOffset="105.10267812634368" a="2.4930466710531549" b="-6.3461740846108318e-06" c="-8.4027488333832708e-05" d="1.0497070036925684e-05" /> - <width sOffset="109.18261147288126" a="2.4923349674462001" b="-0.00016780112514076751" c="4.7464544772384665e-05" d="9.4759658087954504e-06" /> - <width sOffset="111.12843629887806" a="2.4922579804798142" b="0.00012454893299319652" c="6.9618190042365576e-05" d="-3.6231535431529695e-06" /> - <width sOffset="119.27989226789111" a="2.495936680667409" b="0.00053729342559011989" c="-1.9090491366426539e-05" d="-3.4668796819834291e-06" /> - <width sOffset="124.86437548044046" a="2.4977380295413036" b="-2.8666970728502029e-07" c="-1.3322552239409345e-05" d="6.6028576168089037e-07" /> - <width sOffset="129.37717306290091" a="2.4975261008685488" b="-8.0189796681265487e-05" c="-5.8797631094631584e-06" d="9.7379210587434589e-08" /> - <width sOffset="139.47445385791076" a="2.4962171791445176" b="-0.00016914411947196821" c="-3.6334281355522815e-06" d="2.3587332684667005e-07" /> - <width sOffset="149.57173465292061" a="2.494381661314554" b="-0.00017037415639939294" c="5.2915949354952494e-06" d="-4.3670254650916359e-07" /> - <width sOffset="155.39143667996194" a="2.4934832779902649" b="-0.00015315509099716876" c="4.8618863405941368e-06" d="1.0824561735749299e-06" /> - <width sOffset="159.66901544793041" a="2.4930018298593692" b="-5.2141577020251581e-05" c="2.3890557649841916e-05" d="1.9051616027167104e-06" /> - <width sOffset="160.6419534824002" a="2.4929754689762333" b="-2.4318658149551087e-07" c="-6.0072645616198242e-05" d="2.8234981699908496e-06" /> - <width sOffset="169.76629624294026" a="2.4901168112809868" b="-0.0003912905821239483" c="1.5567890052962995e-05" d="4.1038791306963256e-06" /> - <width sOffset="172.6585826853613" a="2.4892146101928532" b="-0.00019824619029005391" c="6.0924236289074341e-05" d="-3.1607325519142273e-06" /> - <width sOffset="179.86357703795005" a="2.489766749214291" b="0.00018743205640012423" c="1.592883812598249e-06" d="-3.0494079393322479e-06" /> - <width sOffset="180.80624579395311" a="2.4899422966098328" b="0.00018230584524471212" c="9.6296661633683091e-05" d="-7.2602792159121997e-06" /> - <width sOffset="188.68520781880017" a="2.493805506614672" b="0.00034762955838845951" c="-0.00023027797134977885" d="2.7146076845843867e-05" /> - <width sOffset="189.9608578329599" a="2.4939305838551951" b="-0.00010735559170644508" c="-0.00013201257387306597" d="2.6438614119795483e-05" /> - <width sOffset="193.68562193512145" a="2.4930654498238694" b="9.6305127024907608e-06" c="-6.1329381781561994e-05" d="2.4642863592942267e-05" /> - <width sOffset="198.02306751447122" a="2.4939643183996125" b="0.00086845547561763704" c="-5.0598337402847529e-05" d="-1.070016551672178e-06" /> - <width sOffset="200.0581386279697" a="2.495513114911315" b="0.00064921857894833677" c="-5.621462215466607e-05" d="8.171720319735142e-07" /> - <width sOffset="210.15541942297955" a="2.4971783442603597" b="-0.00023606655207422222" c="-3.0174747180935239e-05" d="7.2478449147081299e-07" /> - <width sOffset="220.2527002179894" a="2.4924643884647244" b="-0.00062374596123929507" c="-5.7275636417195618e-06" d="4.9313817041611686e-07" /> - <width sOffset="226.14230336247169" a="2.4886928436002895" b="-0.00063989503471039322" c="0.0019068161798612964" d="-0.00030950183741837282" /> - <width sOffset="230.09299155844496" a="2.4968417538792469" b="-6.5478432746857228e-05" c="-8.7991451867462452e-05" d="6.2829076511821124e-06" /> - <width sOffset="230.34998101299925" a="2.4968192219787371" b="-0.00010945934604528684" c="-8.6594892311229129e-05" d="5.9780649425030822e-06" /> - <width sOffset="240.59369346458664" a="2.4930371165301484" b="-1.6652696299806471e-06" c="-9.6036907551871762e-06" d="7.764405024515612e-06" /> - <width sOffset="241.17691811457848" a="2.4930344189360802" b="-4.9442777544997374e-06" c="0.00026003782053686113" d="-3.6182659838968925e-05" /> - <width sOffset="245.66071600322232" a="2.4949785063216856" b="0.00014467306171652978" c="-3.6091828515323436e-05" d="1.1069470394187276e-06" /> - <width sOffset="250.54454260301884" a="2.4949531566594985" b="-0.00012865148971458922" c="-1.8188259796048348e-05" d="1.553208875635904e-06" /> - <width sOffset="259.16387727669655" a="2.4934876133447785" b="-9.6015570512912596e-05" c="-2.6680851661491109e-05" d="3.8272027919551991e-06" /> - <width sOffset="260.64182339802869" a="2.4932997832738453" b="-0.00014980173176576894" c="-7.8927620482909707e-06" d="7.2107725795064963e-06" /> - <width sOffset="263.66411093128556" a="2.4929740074822702" b="8.4266715691437913e-08" c="-6.8859720583048931e-05" d="5.1043346871757014e-06" /> - <width sOffset="270.73910419303854" a="2.4913354559087901" b="-0.00020777932265661893" c="3.8340342872775625e-05" d="5.5534011370249174e-06" /> - <width sOffset="275.16615534542723" a="2.491648870031768" b="0.00045820968870075333" c="0.00011698300471552623" d="-1.6863429923220499e-05" /> - <width sOffset="279.85609822675644" a="2.494631357803283" b="0.00044273494105700616" c="-4.1466232738703133e-05" d="5.253423409185611e-07" /> - <width sOffset="280.83638498804839" a="2.4950260124074255" b="0.00036295184536188404" c="-3.5263062387835306e-05" d="7.0941862751596848e-07" /> - <width sOffset="290.93366578305813" a="2.4958259153092675" b="-0.00013218374227941211" c="-1.3148994884174735e-05" d="7.0561236226992295e-07" /> - <width sOffset="301.03094657806798" a="2.4938770182281331" b="-0.00018189963593974315" c="8.6850390483250345e-06" d="7.2902342205707083e-07" /> - <width sOffset="309.10266837866595" a="2.4933580179956865" b="0.0001008003193529449" c="-9.2774433832540506e-05" d="1.2347486840636564e-05" /> - <width sOffset="311.12822737307783" a="2.4932841673328161" b="-0.00012305874575932582" c="-1.1239513739894991e-05" d="8.6599938366482616e-06" /> - <width sOffset="313.60280602782484" a="2.4930420496277206" b="-1.9595423873606317e-05" c="-9.3120911557577024e-05" d="1.2014945482728838e-05" /> - <width sOffset="318.15114632802636" a="2.4921570197374479" b="-0.00012101268250506544" c="-3.2332818522772478e-05" d="2.1307027797063673e-06" /> - <width sOffset="321.22550816808769" a="2.4915412966905981" b="-0.0002594019543872522" c="-1.6568853988109471e-05" d="1.3321351300576775e-06" /> - <width sOffset="331.32278896309754" a="2.488604155401319" b="-0.00018654886764327052" c="9.9932026467622762e-06" d="9.4910367040194119e-07" /> - <width sOffset="331.57973727110527" a="2.4885568978619013" b="-0.00018122540820989311" c="0.00059530809762913298" d="-6.3203401234970471e-05" /> - <width sOffset="336.83810289722157" a="2.4948749415878853" b="0.00083667017283543723" c="-8.4764210064325123e-05" d="2.3080870391199548e-06" /> - <width sOffset="341.42006975810727" a="2.4971509892760411" b="0.00020526741809251403" c="-5.2953091483125768e-05" d="2.4576697057631139e-06" /> - <width sOffset="351.51735055311713" a="2.4963548903209629" b="-0.00011238131888244057" c="2.0444001286720983e-05" d="2.9337165112422296e-06" /> - <width sOffset="356.95835954224924" a="2.4968212180771641" b="0.00037064499574266676" c="0.00067415314944547816" d="-0.00033368094096773639" /> - <width sOffset="358.8820598194003" a="2.4976535768567878" b="-0.00074009965387331577" c="-2.158792542520425e-05" d="5.5065508693380605e-06" /> - <width sOffset="361.61463134812698" a="2.4955823611991725" b="-0.00073472938151151351" c="2.0996085350526174e-05" d="4.9788698155357883e-06" /> - <width sOffset="367.38212151009986" a="2.4929984227998361" b="4.3105716723431623e-06" c="0.0049949011786502876" d="-0.0029992495056488308" /> - <width sOffset="369.88214021203441" a="2.4773634734952426" b="-0.031257766317026522" c="0.0026690890447801296" d="-0.00069403453476297387" /> - <width sOffset="371.62069112558049" a="2.4274406716944705" b="-0.028270353491716735" c="0.0041566069026816605" d="-0.0009669170686480951" /> - <width sOffset="371.71191214313683" a="2.4248956755847537" b="-0.027536151614971981" c="0.0038977653224028606" d="-0.00097208845135711268" /> - <width sOffset="373.4553355971135" a="2.3835845880406046" b="-0.022809303094132045" c="0.016835000091394034" d="-0.0057020979170152239" /> - <width sOffset="375.71142014881923" a="2.3523348221378191" b="-0.033916559825444829" c="0.0041845584112016046" d="-0.00069258739799931009" /> - <width sOffset="378.0671698249904" a="2.2866038922455951" b="-0.025731674346806541" c="-0.0013330361633195767" d="-0.00095831750255309352" /> - <width sOffset="379.06716774468839" a="2.2585809292895567" b="-0.031272681673345584" c="0.0038338598304114959" d="-0.0007293394314732487" /> - <width sOffset="381.80919293814668" a="2.1866196934131326" b="-0.026698659066782114" c="-0.0021778745826342033" d="-0.00073107560904604209" /> - <width sOffset="382.56715623232014" a="2.1648135312524017" b="-0.031260184189970015" c="0.0029326948039970482" d="-0.00048892019534096086" /> - <width sOffset="386.56714636987783" a="2.055405327221334" b="-0.031266737254834621" c="0.041716856223323329" d="-0.037083052923187185" /> - <width sOffset="387.31714398045972" a="2.0397766676685842" b="-0.031268905355256123" c="0.0023311233793517944" d="-0.0002824293275251414" /> - <width sOffset="391.90647373315642" a="1.9180716667152664" b="-0.027717852664433055" c="-0.0015813521096345667" d="-0.00027236957159636969" /> - <width sOffset="392.81712666764372" a="1.8913132333732339" b="-0.031275597621287843" c="0.002760163493237309" d="-0.00041324723856159945" /> - <width sOffset="393.364046788868" a="1.874965998860425" b="-0.028627253265791099" c="0.0017576673400324125" d="-0.00034856109945680363" /> - <width sOffset="397.36401925299526" a="1.7662726146567129" b="-0.03129671376764033" c="0.0076783452643969536" d="-0.0029224840933368026" /> - <width sOffset="399.11400730067987" a="1.7193559835294367" b="-0.031272644729303085" c="0.0011080969276155495" d="2.2470978059381857e-05" /> - <width sOffset="399.68761262420333" a="1.7017866584157222" b="-0.029979243725604027" c="0.0049408590339838892" d="-0.000823904549619995" /> - <width sOffset="402.00375452816627" a="1.6486187871860034" b="-0.020351323216024959" c="-0.00077985239836771201" d="-0.00082821574086363833" /> - <width sOffset="403.20322015782961" a="1.6216568412137251" b="-0.025796841689897002" c="9.7942727658908014e-05" d="-3.7619270007760277e-05" /> - <width sOffset="409.70313321493597" a="1.447786805158648" b="-0.029291718177116042" c="0.035062440875720434" d="-0.046753490394924387" /> - <width sOffset="410.20312774694855" a="1.4360625301699894" b="-0.029294011601267916" c="0.00027781999570263807" d="-6.4435134786527153e-06" /> - <width sOffset="412.10103532317612" a="1.3814218758059091" b="-0.028309087886338999" c="0.00022630825760309024" d="-1.2923350643602182e-05" /> - <width sOffset="419.25936609360713" a="1.1856321305503288" b="-0.027055752505826529" c="-5.3490334925614008e-05" d="-6.5275862354113761e-06" /> - <width sOffset="421.25933155837663" a="1.1312553879800173" b="-0.027348038480592956" c="0.0026365284711753726" d="-0.00034642899684631949" /> - <width sOffset="422.19831611818597" a="1.1076138012799053" b="-0.023313050457695449" c="0.0016724328313112099" d="-0.00034754284251012661" /> - <width sOffset="424.95377676148939" a="1.0488027133863023" b="-0.022012627920080321" c="-0.0011632742601261478" d="-0.00035502295337768098" /> - <width sOffset="425.4537654479501" a="1.037461468205743" b="-0.02344213102417558" c="-0.00037205591391257728" d="0.00018432681144726887" /> - <width sOffset="429.45367982464848" a="0.9495384699102889" b="-0.017571206452724607" c="0.00026656808763329766" d="-7.2698916027168155e-05" /> - <width sOffset="432.29559691319582" a="0.90008685518768594" b="-0.017817534447814937" c="-0.00036117926188859782" d="-7.4247471417880449e-05" /> - <width sOffset="435.95353860258717" a="0.82644452126772805" b="-0.023440293011778326" c="0.0012372171118734095" d="-6.9830072429454646e-05" /> - <width sOffset="436.8623138727354" a="0.80611193649386248" b="-0.021364600589360089" c="0.0011193393903926388" d="-9.5807998141084867e-05" /> - <width sOffset="438.37884623673347" a="0.77595200199004477" b="-0.018630609705908723" c="0.00064927881472034272" d="-6.2515428329758632e-05" /> - <width sOffset="442.39287770820556" a="0.70758637977264716" b="-0.016439988400943982" c="-0.0001079655850454876" d="-6.0402131548873644e-05" /> - <width sOffset="444.3786727766477" a="0.67404118842109284" b="-0.017583349498327572" c="0.00050457805905991309" d="-1.6769811146279527e-05" /> - <width sOffset="452.49015850321541" a="0.55566328808077614" b="-0.01270776362957857" c="9.578382751637308e-05" d="-1.5448310401702075e-05" /> - <width sOffset="453.98462365583612" a="0.53683434124588914" b="-0.012524980423366035" c="0.00075672226158886486" d="-0.00017210278253676969" /> - <width sOffset="459.13406734366151" a="0.46890343779315558" b="-0.018422412931121061" c="0.00098639963993711003" d="-0.00046361685756254455" /> - <width sOffset="461.8838862335341" a="0.41606392648112944" b="-0.023514494272781961" c="0.0079273488315965875" d="-0.0032527676041946485" /> - <width sOffset="463.13380403708186" a="0.39270578651978472" b="-0.01894276835959963" c="0.0051364371788609458" d="0.00077802204438191184" /> - <width sOffset="463.5202085836105" a="0.38619801509043583" b="-0.014624787150281236" c="0.00081055335016141396" d="-5.4923250476675855e-05" /> - <width sOffset="471.0198907059397" a="0.29893872129834698" b="-0.011734515096698959" c="0.00044881251943804047" d="-1.3684849631560389e-05" /> - <width sOffset="472.68472009323511" a="0.28058356353886715" b="-0.010353911676463559" c="0.00038443498483011038" d="-1.0486031971056967e-05" /> - <width sOffset="482.78200088824497" a="0.20443726390152683" b="-0.0057977283662304074" c="7.4817968220427416e-05" d="-1.341539847948107e-05" /> - <width sOffset="484.93768023173254" a="0.19215250960924823" b="-0.0056621834650153668" c="-1.7641252234837769e-05" d="1.8139966326553891e-05" /> - <width sOffset="490.8297532475766" a="0.16188864001549064" b="-0.0039808008054499303" c="0.00037048164180742809" d="-2.5865480321242297e-05" /> - <width sOffset="491.82969798218767" a="0.15825263871170225" b="-0.0033174663358651233" c="0.00044994557960411025" d="-2.2553119799389104e-05" /> - <width sOffset="492.8792816832547" a="0.15524027482728542" b="-0.0024474905481945918" c="0.00037783762518576964" d="-2.2789132181415036e-05" /> - <width sOffset="500.5574841282413" a="0.14840740149892984" b="-0.00067584868977364852" c="-0.00018263177887513428" d="1.9011450212164917e-05" /> - <width sOffset="502.97656247826455" a="0.14597285216333944" b="-0.0012256882528921217" c="-4.8445258747950801e-05" d="1.7568169917175096e-05" /> - <width sOffset="508.80703138491128" a="0.14066171478186806" b="1.051079931915647e-06" c="0.000124134616774636" d="2.5401786071824745e-05" /> - <width sOffset="512.03038541548028" a="0.14280558604705451" b="0.0015930852404057029" c="0.00062799956602944496" d="-6.9726869585805601e-05" /> - <width sOffset="513.07384327327441" a="0.14507245379887213" b="0.0026759106576354943" c="0.0004125630565093738" d="-6.7364576267667036e-05" /> - <width sOffset="518.63480044977621" a="0.16112670085792136" b="0.0010148057116891604" c="-0.00066870963178377847" d="0.0001248021298200268" /> - <width sOffset="522.49319893438349" a="0.16225573230158385" b="0.0014283866047120615" c="0.00058361142843119682" d="-1.9393659376819573e-05" /> - <width sOffset="523.49313300739016" a="0.16424816939260456" b="0.0025373592030909476" c="0.002920979047681729" d="-0.0013854286320028415" /> - <width sOffset="525.24301589287268" a="0.17020901093076635" b="3.3179743305022068e-05" c="0.0010585713616441386" d="-0.00010120637756026992" /> - <width sOffset="532.24255105361078" a="0.18759748935070863" b="-2.3167014393393314e-05" c="0.01880977771043953" d="-0.012896734286452233" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423306" type="pole" s="1.3971272871971663" t="7.8259871454600649" height="0.28489629757257262" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423342" type="pole" s="9.8514072426048926" t="7.8579908285171811" height="0.32138166660118372" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423354" type="pole" s="26.683014923268047" t="7.90001926609989" height="0.294092772594297" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5180892" s="0" t="10.628339832145727" orientation="none" validLength="5.3684672596448424" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="5.3684672596448424" s="0" distance="0" tStart="10.628339832145727" tEnd="10.672698858314739" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616348" s="5.3684672596448424" t="10.672698858314739" orientation="none" validLength="1.4912596416090027" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="1.4912596416090027" s="5.3684672596448424" distance="0" tStart="10.672698858314739" tEnd="10.609434535686148" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542051804" s="6.8597269012538451" t="10.609434535686148" orientation="none" validLength="2.9825205940608992" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="2.9825205940608992" s="6.8597269012538451" distance="0" tStart="10.609434535686148" tEnd="10.317567378745345" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487260" s="9.8422474953147443" t="10.317567378745345" orientation="none" validLength="5.9650387042679327" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="5.9650387042679327" s="9.8422474953147443" distance="0" tStart="10.317567378745345" tEnd="9.5579138497452032" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078922716" s="15.807286199582677" t="9.5579138497452032" orientation="none" validLength="13.360088382634665" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="13.360088382634665" s="15.807286199582677" distance="0" tStart="9.5579138497452032" tEnd="8.410862475782821" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741937" s="29.167374582217342" t="8.410862475782821" orientation="none" validLength="5.9803897968702771" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="5.9803897968702771" s="29.167374582217342" distance="0" tStart="8.410862475782821" tEnd="8.0719888029022862" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741938" s="35.147764379087619" t="8.0719888029022862" orientation="none" validLength="11.609027567148637" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="11.609027567148637" s="35.147764379087619" distance="0" tStart="8.0719888029022862" tEnd="7.8047107582952204" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741939" s="46.756791946236255" t="7.8047107582952204" orientation="none" validLength="11.350715020135908" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="11.350715020135908" s="46.756791946236255" distance="0" tStart="7.8047107582952204" tEnd="7.8597662507893808" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5181065" s="0" t="-11.930913126297236" orientation="none" validLength="20.245568435581642" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="20.245568435581642" s="0" distance="0" tStart="-11.930913126297236" tEnd="-11.811379120742529" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273616521" s="20.245568435581642" t="-11.811379120742529" orientation="none" validLength="52.508738059525172" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="52.508738059525172" s="20.245568435581642" distance="0" tStart="-11.811379120742529" tEnd="-11.768616040815987" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542051977" s="72.754306495106817" t="-11.768616040815987" orientation="none" validLength="24.493981594250016" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="24.493981594250016" s="72.754306495106817" distance="0" tStart="-11.768616040815987" tEnd="-11.668587201088243" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810487433" s="97.248288089356834" t="-11.668587201088243" orientation="none" validLength="45.164472886107148" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="45.164472886107148" s="97.248288089356834" distance="0" tStart="-11.668587201088243" tEnd="-11.930090869267882" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078922889" s="142.41276097546398" t="-11.930090869267882" orientation="none" validLength="43.209255191747673" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="43.209255191747673" s="142.41276097546398" distance="0" tStart="-11.930090869267882" tEnd="-11.822494614658478" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741940" s="185.62201616721165" t="-11.822494614658478" orientation="none" validLength="50.108052128501441" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="50.108052128501441" s="185.62201616721165" distance="0" tStart="-11.822494614658478" tEnd="-12.127449727753048" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741941" s="235.7300682957131" t="-12.127449727753048" orientation="none" validLength="3.9908003546717907" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.9908003546717907" s="235.7300682957131" distance="0" tStart="-12.127449727753048" tEnd="-12.003620972161576" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741942" s="239.72086865038489" t="-12.003620972161576" orientation="none" validLength="3.9908001537200164" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.9908001537200164" s="239.72086865038489" distance="0" tStart="-12.003620972161576" tEnd="-11.735408508477891" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741943" s="243.7116688041049" t="-11.735408508477891" orientation="none" validLength="11.593316033117759" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.593316033117759" s="243.7116688041049" distance="0" tStart="-11.735408508477891" tEnd="-10.683517513890965" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741944" s="255.30498483722266" t="-10.683517513890965" orientation="none" validLength="7.4415043614413889" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.4415043614413889" s="255.30498483722266" distance="0" tStart="-10.683517513890965" tEnd="-9.6779187122414285" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741945" s="262.74648919866405" t="-9.6779187122414285" orientation="none" validLength="5.1679408346163314" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.1679408346163314" s="262.74648919866405" distance="0" tStart="-9.6779187122414285" tEnd="-9.1510621179664557" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741946" s="267.91443003328038" t="-9.1510621179664557" orientation="none" validLength="7.9957712496724866" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.9957712496724866" s="267.91443003328038" distance="0" tStart="-9.1510621179664557" tEnd="-8.6398922999930097" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741947" s="275.91020128295287" t="-8.6398922999930097" orientation="none" validLength="4.4976208221618208" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.4976208221618208" s="275.91020128295287" distance="0" tStart="-8.6398922999930097" tEnd="-8.5442170109653794" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741948" s="280.40782210511469" t="-8.5442170109653794" orientation="none" validLength="38.700054089416938" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="38.700054089416938" s="280.40782210511469" distance="0" tStart="-8.5442170109653794" tEnd="-8.7874622795866291" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741949" s="319.10787619453163" t="-8.7874622795866291" orientation="none" validLength="88.08637732771183" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="88.08637732771183" s="319.10787619453163" distance="0" tStart="-8.7874622795866291" tEnd="-9.1272898202279809" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741950" s="407.19425352224346" t="-9.1272898202279809" orientation="none" validLength="55.388858883427304" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="55.388858883427304" s="407.19425352224346" distance="0" tStart="-9.1272898202279809" tEnd="-9.2017895049681009" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741951" s="462.58311240567076" t="-9.2017895049681009" orientation="none" validLength="74.031011293820086" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="74.031011293820086" s="462.58311240567076" distance="0" tStart="-9.2017895049681009" tEnd="-9.1664965528218918" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741952" s="536.61412369949085" t="-9.1664965528218918" orientation="none" validLength="40.002939470080037" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="40.002939470080037" s="536.61412369949085" distance="0" tStart="-9.1664965528218918" tEnd="-9.0281245700391235" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741953" s="576.61706316957088" t="-9.0281245700391235" orientation="none" validLength="46.918447033432358" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="46.918447033432358" s="576.61706316957088" distance="0" tStart="-9.0281245700391235" tEnd="-9.1268183488376273" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741954" s="623.53551020300324" t="-9.1268183488376273" orientation="none" validLength="14.998270704126753" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.998270704126753" s="623.53551020300324" distance="0" tStart="-9.1268183488376273" tEnd="-9.3919695683152167" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741955" s="638.53378090712999" t="-9.3919695683152167" orientation="none" validLength="10.538303710711261" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.538303710711261" s="638.53378090712999" distance="0" tStart="-9.3919695683152167" tEnd="-9.2514751911598552" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741956" s="649.07208461784126" t="-9.2514751911598552" orientation="none" validLength="9.8830107093413062" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.8830107093413062" s="649.07208461784126" distance="0" tStart="-9.2514751911598552" tEnd="-8.8372144087718425" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741957" s="658.95509532718256" t="-8.8372144087718425" orientation="none" validLength="3.7752466549277415" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.7752466549277415" s="658.95509532718256" distance="0" tStart="-8.8372144087718425" tEnd="-8.7483970115185077" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5181116" s="40.248085031103869" t="8.3868736420152885" orientation="none" validLength="17.718866775382239" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="17.718866775382239" s="40.248085031103869" distance="0" tStart="8.3868736420152885" tEnd="8.4700800477725693" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616572" s="57.966951806486108" t="8.4700800477725693" orientation="none" validLength="69.823274582233068" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="69.823274582233068" s="57.966951806486108" distance="0" tStart="8.4700800477725693" tEnd="8.5406566750291457" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542052028" s="127.79022638871918" t="8.5406566750291457" orientation="none" validLength="52.951289952278941" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="52.951289952278941" s="127.79022638871918" distance="0" tStart="8.5406566750291457" tEnd="8.4566487326096063" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487484" s="180.74151634099812" t="8.4566487326096063" orientation="none" validLength="47.571891790686976" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="47.571891790686976" s="180.74151634099812" distance="0" tStart="8.4566487326096063" tEnd="8.1058199422582433" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078922940" s="228.31340813168509" t="8.1058199422582433" orientation="none" validLength="73.16130155255081" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="73.16130155255081" s="228.31340813168509" distance="0" tStart="8.1058199422582433" tEnd="7.3004285449956292" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741958" s="301.4747096842359" t="7.3004285449956292" orientation="none" validLength="29.069437344483219" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="29.069437344483219" s="301.4747096842359" distance="0" tStart="7.3004285449956292" tEnd="7.1869422942124688" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741959" s="330.54414702871912" t="7.1869422942124688" orientation="none" validLength="133.31311837813996" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="133.31311837813996" s="330.54414702871912" distance="0" tStart="7.1869422942124688" tEnd="6.9614126036483936" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741960" s="463.85726540685909" t="6.9614126036483936" orientation="none" validLength="354.02247898893705" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="354.02247898893705" s="463.85726540685909" distance="0" tStart="6.9614126036483936" tEnd="7.1235331815107754" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412773" s="23.497398447037938" t="-11.962563693516161" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848229" s="73.277169493950083" t="-11.825534291742372" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283685" s="123.51899309136097" t="-11.889739405113934" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719141" s="170.93637697454051" t="-11.611382803446675" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154597" s="223.42892367021707" t="-12.418644847302794" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741961" s="247.20894184191832" t="-11.377918774228473" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741962" s="271.81540508739147" t="-9.1842830294584701" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741963" s="319.28376263480368" t="-8.793634456240186" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741964" s="371.7719806436312" t="-9.4137793136726096" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741965" s="421.51156686294524" t="-9.3968751459531461" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741966" s="471.62751351739706" t="-9.392028510111043" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741967" s="521.69940260428984" t="-9.4245875264926191" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741968" s="571.47076069065361" t="-9.2711529048508101" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741969" s="631.80116185692282" t="-9.2735434128804162" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741970" s="660.21759726699133" t="-9.3851885753497317" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8987850" type="605" subtype="21" country="DEU" zOffset="0.28489629757257262" s="1.3971272871971663" t="7.8259871454600649" orientation="+" /> - <signal dynamic="no" id="8987886" type="605" subtype="21" country="DEU" zOffset="0.32138166660118372" s="9.8514072426048926" t="7.8579908285171811" orientation="+" /> - <signal dynamic="no" id="8987898" type="605" subtype="21" country="DEU" zOffset="0.294092772594297" s="26.683014923268047" t="7.90001926609989" orientation="+" /> - </signals> - </road> - <road name="" length="888.42146965675818" id="4940867" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33555390" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-791.50526727818374" y="-787.55743657425046" hdg="4.4016189175402811" length="888.42146965675818"> - <paramPoly3 aU="0" bU="888.40789968550109" cU="0.041100312933338712" dU="-0.029140633617841472" aV="0" bV="-0" cV="4.9076444732990216" dV="-4.7785589950239897" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.40946575926253" b="-0.00014056496724559989" c="-1.3940016395158238e-07" d="1.5529722625393824e-07" /> - <elevation s="10.095698518826797" a="158.40819224817409" b="-9.5894513822849381e-05" c="4.589010196824621e-06" d="-4.541726633808453e-07" /> - <elevation s="20.191397037653594" a="158.40722451541029" b="-0.00014210808323493449" c="-6.2297872935187029e-05" d="1.9398423106666793e-06" /> - <elevation s="30.287095556480391" a="158.4014363099171" b="-0.00080684477848787239" c="-2.8231399515743975e-05" d="5.1242248309178469e-07" /> - <elevation s="40.382794075307189" a="158.39094049085918" b="-0.0012201930671398662" c="-6.3132674053508394e-05" d="4.4889821440560771e-06" /> - <elevation s="50.478492594133982" a="158.37680620595498" b="-0.0011223366421762087" c="4.2362694944495781e-05" d="-1.4644789726003802e-06" /> - <elevation s="60.574191112960783" a="158.36828624482618" b="-0.00071476748486141734" c="-3.085517339498394e-06" d="1.5798754195242064e-06" /> - <elevation s="70.669889631787584" a="158.36238135059764" b="-0.0002939908539417418" c="3.9864081675641934e-05" d="-2.7409935355358369e-06" /> - <elevation s="80.765588150614377" a="158.36065593776959" b="-0.00032719126299051864" c="-6.6875175620492337e-05" d="2.143151997912838e-06" /> - <elevation s="90.861286669441171" a="158.3527418579373" b="-0.0010221842159378737" c="-0.00010092287749834649" d="7.6658930210053242e-06" /> - <elevation s="100.95698518826796" a="158.34002390913903" b="-0.00071596270543816177" c="4.6309164208312122e-05" d="-3.1063843448846124e-06" /> - <elevation s="111.05268370709477" a="158.3343193169635" b="-0.00073075321746229579" c="-4.5065400084202065e-05" d="2.84516565324615e-06" /> - <elevation s="121.14838222592157" a="158.32527627950782" b="-0.00077072204907556018" c="6.6499854209980436e-06" d="5.7490760688425767e-07" /> - <elevation s="131.24408074474837" a="158.31876466078404" b="-0.00046066040732607413" c="-7.2098848387535064e-07" d="3.5465618234190816e-09" /> - <elevation s="141.33977926357517" a="158.3140441361497" b="-0.00047413374203330905" c="9.1911956738023334e-06" d="-6.8782354776433127e-07" /> - <elevation s="151.43547778240196" a="158.30948646001511" b="-0.00049886604463648813" c="-8.9211734568413526e-05" d="5.839237372145286e-06" /> - <elevation s="161.53117630122875" a="158.30136580844197" b="-0.00051471557320089745" c="9.5802252237332152e-05" d="-5.8686184303043798e-06" /> - <elevation s="171.62687482005555" a="158.29989513908359" b="-0.00037477811380564599" c="-8.2319398733250498e-06" d="3.5465618233801098e-09" /> - <elevation s="181.72257333888234" a="158.29527611652847" b="-0.00053990805014779311" c="-5.9649761297785748e-05" d="3.9083999931989528e-06" /> - <elevation s="191.81827185770914" a="158.28776736299935" b="-0.00054925099853031327" c="1.6106527761848136e-06" d="3.5465618233724497e-09" /> - <elevation s="201.91397037653593" a="158.28239010263655" b="-0.00051564523880631556" c="2.7626887359775078e-05" d="-1.974071166164416e-06" /> - <elevation s="212.00966889536275" a="158.27796883258478" b="-0.00056143031511372301" c="-9.1928210029983444e-06" d="5.3921543494435919e-07" /> - <elevation s="222.10536741418954" a="158.27191868499736" b="-0.00058217064155195416" c="7.9994564203230809e-07" d="3.5465618233451892e-09" /> - <elevation s="232.20106593301634" a="158.26612644803583" b="-0.00056493419145489361" c="4.7789575266055778e-05" d="-3.1508613400826697e-06" /> - <elevation s="242.29676445184313" a="158.26205171616294" b="-0.00056343283953487326" c="-1.3830979505375433e-05" d="9.2532811909913387e-07" /> - <elevation s="252.39246297066992" a="158.25590592029644" b="-0.00055976262755423438" c="3.6390110166082774e-05" d="-1.8007767647502126e-06" /> - <elevation s="262.48816148949675" a="158.25211074684384" b="-0.0003756178701758685" c="-1.7595833563339345e-05" d="1.7529599463643952e-06" /> - <elevation s="272.58386000832354" a="158.24832896946435" b="-0.00019490084581905826" c="4.9583375986367199e-05" d="-2.2207193135445226e-06" /> - <elevation s="282.67955852715033" a="158.2491299148314" b="0.00012722880476520745" c="1.9058326547682069e-05" d="-1.4107756749880893e-06" /> - <elevation s="292.77525704597713" a="158.25090519549508" b="8.0671031391799249e-05" c="3.0329341925101894e-05" d="-3.9308758131225353e-06" /> - <elevation s="302.87095556480392" a="158.25076607437475" b="-0.00050887866674228371" c="-6.7220776299853988e-06" d="3.5465618265912589e-09" /> - <elevation s="312.96665408363071" a="158.24494710294957" b="-0.00064352237505601304" c="-4.097419314948623e-05" d="3.2622805347298896e-06" /> - <elevation s="319.99998931215771" a="158.23952911554122" b="-0.00073575928081442423" c="2.777014087738412e-05" d="3.2572007650373072e-06" /> - <elevation s="323.06235260245751" a="158.23762992734893" b="-0.00047403600103598656" c="8.4544565615602703e-05" d="-4.1006874057110591e-06" /> - <elevation s="333.1580511212843" a="158.23724170286644" b="-2.082777850883011e-05" c="2.8350091598033809e-06" d="-1.1093919731685278e-07" /> - <elevation s="343.2537496401111" a="158.23720623010723" b="2.4932068230696346e-06" c="1.0465992025458161e-05" d="-9.8080958311763332e-07" /> - <elevation s="353.34944815893789" a="158.23728888889889" b="-8.608533656472478e-05" c="1.4417459784676984e-06" d="-1.0708151846776564e-06" /> - <elevation s="363.44514667776468" a="158.23546489160108" b="-0.00038439697235576265" c="-7.421438849199735e-07" d="-1.5332079180045539e-09" /> - <elevation s="373.54084519659148" a="158.23150691638182" b="-0.00039985070223856248" c="-3.9356669017850715e-05" d="1.565295448426586e-06" /> - <elevation s="383.63654371541827" a="158.2250694552186" b="-0.0007158974046762058" c="-1.42007412538962e-05" d="6.357773555416416e-07" /> - <elevation s="393.73224223424506" a="158.21704879234932" b="-0.00080822895808544141" c="-1.6178443721008602e-05" d="1.4643838505101537e-06" /> - <elevation s="403.82794075307186" a="158.20874702813214" b="-0.00068713058823623228" c="3.2423636981486049e-05" d="-1.8884362023664784e-06" /> - <elevation s="413.92363927189871" a="158.2031715105291" b="-0.00060987803816230785" c="-1.3128417494043572e-05" d="7.3208720621684087e-07" /> - <elevation s="424.0193377907255" a="158.19642958322262" b="-0.00065110927290089977" c="-2.0639683816779853e-05" d="2.2051145959161639e-06" /> - <elevation s="434.11503630955229" a="158.1900215493886" b="-0.00039359678807742609" c="8.0404869128824663e-06" d="-5.1002538488990812e-07" /> - <elevation s="444.21073482837909" a="158.18634261789811" b="-0.00038719827309760389" c="-4.2751328015900525e-05" d="2.2622070991893946e-06" /> - <elevation s="454.30643334720588" a="158.18040400933867" b="-0.00055869363579716435" c="1.9095917105306295e-05" d="-1.6047508728273013e-06" /> - <elevation s="464.40213186603268" a="158.17505865757886" b="-0.0006638040803905712" c="-1.2087092601534161e-05" d="-1.2382599583560263e-07" /> - <elevation s="474.49783038485947" a="158.16699772229984" b="-0.00094572156482546272" c="-5.2819732331135143e-05" d="3.783934534400747e-06" /> - <elevation s="484.59352890368626" a="158.15596006267995" b="-0.00085521441344738427" c="4.0520911716303716e-05" d="-1.6807828677762657e-06" /> - <elevation s="494.68922742251306" a="158.14972659322916" b="-0.00055097254171337776" c="2.612691428954604e-05" d="-1.9388766774195593e-06" /> - <elevation s="504.78492594133985" a="158.14483200203694" b="-0.0006162827726222869" c="-3.9870100478815192e-05" d="2.6563222255213978e-06" /> - <elevation s="514.8806244601667" a="158.13727982778326" b="-0.00060909378607175912" c="4.0801756250402671e-05" d="-2.6811376719607963e-06" /> - <elevation s="524.97632297899349" a="158.13253039227274" b="-0.00060505914485061178" c="-2.5396190314014411e-05" d="1.1917029500232797e-06" /> - <elevation s="535.07202149782029" a="158.12505968306183" b="-0.00075345742770063459" c="-4.4117634094800916e-05" d="4.2347375474921391e-06" /> - <elevation s="545.16772001664708" a="158.11731387890262" b="-0.00034940099536525727" c="3.7586229642186774e-06" d="-2.6100425444144646e-07" /> - <elevation s="555.26341853547387" a="158.11390095289363" b="-0.00035331625733835576" c="-1.2095610064322268e-05" d="8.6934958301579352e-07" /> - <elevation s="565.35911705430067" a="158.10999570389353" b="-0.00033172303455971758" c="9.7488822430154673e-07" d="-1.5332079180047036e-09" /> - <elevation s="575.45481557312746" a="158.10674451415446" b="-0.00031250748739883143" c="2.4676098904972695e-05" d="-1.7332639779241393e-06" /> - <elevation s="585.55051409195426" a="158.10432109503512" b="-0.00034424163893906709" c="-3.3051286048323949e-06" d="-1.5332079180066246e-09" /> - <elevation s="595.64621261078105" a="158.10050728853477" b="-0.00041144561090305311" c="-0.00010357773183604102" d="7.0063064219155533e-06" /> - <elevation s="605.74191112960784" a="158.09300587667249" b="-0.0003605107076649153" c="6.2064992536563633e-05" d="-4.1296477796297428e-06" /> - <elevation s="615.83760964843464" a="158.09144278111322" b="-0.00037005166615776923" c="-8.0856538100202173e-06" d="-1.5332079180065059e-09" /> - <elevation s="625.93330816726143" a="158.08688115827408" b="-0.00053378112058821291" c="-3.5707585534774945e-05" d="2.0333769427414599e-06" /> - <elevation s="636.02900668608822" a="158.07994515090965" b="-0.00063302273859835469" c="8.4802698156162286e-06" d="-3.1321178779312301e-07" /> - <elevation s="646.12470520491502" a="158.07409638952873" b="-0.00055756481972770366" c="-7.4892474605248665e-06" d="9.5232401048763108e-07" /> - <elevation s="656.22040372374181" a="158.06868398296385" b="-0.00041759166099544884" c="7.913768005140371e-05" d="-5.2723700691388595e-06" /> - <elevation s="666.3161022425686" a="158.06710887273459" b="-0.00043182069992141669" c="-4.0603187080004948e-05" d="1.8275954620517666e-06" /> - <elevation s="676.4118007613954" a="158.06049150591872" b="-0.00069283302941846431" c="-1.0585504656652439e-05" d="6.7881044115525133e-07" /> - <elevation s="686.50749928022219" a="158.05311645066038" b="-0.00069900970515273113" c="-1.2411136839318968e-05" d="1.5353871428129688e-06" /> - <elevation s="696.60319779904898" a="158.04637436813232" b="-0.00048013351321905557" c="3.7434119934666685e-05" d="-2.1492981945313212e-06" /> - <elevation s="706.69889631787578" a="158.04313089156773" b="-0.00038147592359659931" c="-1.1015380097140908e-05" d="4.9736124890543749e-07" /> - <elevation s="716.79459483670257" a="158.03866868100224" b="-0.0004518139930853999" c="-3.1761338269392482e-06" d="2.1516238462602055e-07" /> - <elevation s="726.89029335552937" a="158.03400498054972" b="-0.00045015450204642621" c="1.4062362904464219e-05" d="-1.2802507108905276e-06" /> - <elevation s="736.98599187435616" a="158.02957627742668" b="-0.00055767722282869974" c="-4.2384963040886533e-06" d="-1.5332079180170565e-09" /> - <elevation s="747.08169039318295" a="158.02351255786218" b="-0.00064372719259049333" c="-4.8771368151663029e-05" d="2.9669440186536212e-06" /> - <elevation s="757.17738891200975" a="158.01509569319006" b="-0.00072128860087454342" c="4.75833518567982e-06" d="-1.5332079180160865e-09" /> - <elevation s="767.27308743083654" a="158.00829718769131" b="-0.00062567997394555699" c="3.8283061373441808e-06" d="-3.3306691194805515e-07" /> - <elevation s="777.36878594966333" a="158.00202798332802" b="-0.00065022278982448023" c="-2.9806710498282176e-05" d="1.5655246155871579e-06" /> - <elevation s="787.46448446849013" a="157.99403643851076" b="-0.00077337241579847891" c="-1.7401917192338739e-06" d="3.4793557772444894e-07" /> - <elevation s="797.56018298731692" a="157.98640935852623" b="-0.00070212126984208444" c="5.6136315957351454e-05" d="-3.0240096484801546e-06" /> - <elevation s="807.65588150614371" a="157.98193088170453" b="-0.0004933001988312335" c="-7.9020288394881553e-06" d="2.9204593653224522e-07" /> - <elevation s="817.75158002497062" a="157.97644578305642" b="-0.00056355449390833325" c="1.6024340556330387e-05" d="-1.7889313467719841e-06" /> - <elevation s="827.84727854379742" a="157.97054877386924" b="-0.00078700111051871057" c="-1.7151468140181004e-05" d="1.0339281999197586e-06" /> - <elevation s="837.94297706262421" a="157.96191921342393" b="-0.00081716962291760863" c="0.00013484279621091399" d="-6.0459353225318063e-06" /> - <elevation s="848.038675581451" a="157.96119173709326" b="5.6832883194876324e-05" c="5.2750810337458188e-05" d="-3.9635545993106686e-06" /> - <elevation s="858.1343741002778" a="157.96306359343689" b="-8.9988216437873855e-05" c="-3.0339372606770669e-05" d="3.0008034943465768e-07" /> - <elevation s="868.23007261910459" a="157.95937159399003" b="-0.00061082715049247361" c="-3.1538958086999732e-05" d="1.4745387800261344e-06" /> - <elevation s="878.32577113793138" a="157.95150759650048" b="-0.00079677395834914621" c="-1.7814389367995978e-06" d="-1.533207944913955e-09" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025107132473626264" b="-3.2090803757880605e-07" c="1.5893305301280835e-08" d="0" /> - <superelevation s="10.095698518826797" a="0.025105512578226432" b="0" c="8.3827498565300663e-06" d="-4.4571509440717116e-07" /> - <superelevation s="20.191397037653594" a="0.025501274443856824" b="3.2973399984538388e-05" c="1.4155023168234841e-06" d="-2.0130978489043405e-07" /> - <superelevation s="30.287095556480391" a="0.025771291588995607" b="0" c="-5.1402370785291529e-06" d="3.3943413748230812e-07" /> - <superelevation s="40.382794075307189" a="0.025596655240761528" b="0" c="1.3816738782407044e-05" d="-8.273819331140134e-07" /> - <superelevation s="50.478492594133982" a="0.026153536738336387" b="2.5991193052930574e-05" c="-1.2872409474421863e-06" d="0" /> - <superelevation s="60.574191112960783" a="0.026284736362939893" b="0" c="-6.564373957350933e-07" d="0" /> - <superelevation s="70.669889631787584" a="0.026217830209847668" b="-1.3254388087650609e-05" c="-3.6495632213510034e-05" d="2.4533266677858002e-06" /> - <superelevation s="80.765588150614377" a="0.024888705667452379" b="0" c="2.3232081338756887e-06" d="-7.5946632962857636e-08" /> - <superelevation s="90.861286669441171" a="0.025047346349148264" b="2.3686662521422766e-05" c="9.0135907659232215e-07" d="-1.1056150531295832e-08" /> - <superelevation s="100.95698518826796" a="0.025366972474919335" b="3.8505729153688401e-05" c="5.8484326580897985e-06" d="-5.1213025992614731e-07" /> - <superelevation s="111.05268370709477" a="0.02582483081471474" b="0" c="-1.7101252682454954e-05" d="9.5580826499518699e-07" /> - <superelevation s="121.14838222592157" a="0.025065330176577829" b="-5.3041276671169254e-05" c="1.3397053544746987e-06" d="8.5001164789025557e-08" /> - <superelevation s="131.24408074474837" a="0.024753853338063129" b="0" c="2.0074259894570794e-05" d="-1.3255982144035995e-06" /> - <superelevation s="141.33977926357517" a="0.025435863795544373" b="0" c="-2.191508886489119e-05" d="1.4471568476431228e-06" /> - <superelevation s="151.43547778240196" a="0.024691312322116014" b="0" c="1.3842957683276515e-05" d="-9.1411589186302843e-07" /> - <superelevation s="161.53117630122875" a="0.025161618174090076" b="0" c="-2.7965586447979943e-06" d="7.6573363387103639e-08" /> - <superelevation s="171.62687482005555" a="0.024955377023721931" b="-3.305263564857854e-05" c="-7.0252389020308726e-06" d="5.7200632815266347e-07" /> - <superelevation s="181.72257333888234" a="0.024494239284568724" b="0" c="3.1769492789600071e-06" d="-1.7542908996677123e-07" /> - <superelevation s="191.81827185770914" a="0.024637529961016747" b="1.050619917829815e-05" c="-8.3407202643006896e-07" d="4.6441848183382995e-08" /> - <superelevation s="201.91397037653593" a="0.024706374123534412" b="7.8656151267361569e-06" c="2.368933680735724e-07" d="-1.3197660213604776e-08" /> - <superelevation s="212.00966889536275" a="0.024796347718986051" b="8.6133827202566692e-06" c="7.6441603993292705e-07" d="-7.8647541596014052e-08" /> - <superelevation s="222.10536741418954" a="0.024880290353876379" b="0" c="-2.8951322853245256e-06" d="1.8139257012120747e-07" /> - <superelevation s="232.20106593301634" a="0.024771859679797354" b="-2.9924707041009674e-06" c="1.4820523307616835e-07" d="0" /> - <superelevation s="242.29676445184313" a="0.024756754138769842" b="0" c="1.1293128591866095e-05" d="-5.5608876272842764e-07" /> - <superelevation s="252.39246297066992" a="0.025335578041693358" b="5.7989123794180835e-05" c="5.938702475407196e-06" d="-5.8181044818392651e-07" /> - <superelevation s="262.48816148949675" a="0.025927635561163793" b="0" c="-3.3969829147733341e-05" d="2.2431882967704941e-06" /> - <superelevation s="272.58386000832354" a="0.024773531806441006" b="0" c="1.2656581994481188e-08" d="0" /> - <superelevation s="282.67955852715033" a="0.024774821804875048" b="2.5555407218949989e-07" c="7.1576687327223867e-06" d="-3.7520877201028963e-07" /> - <superelevation s="292.77525704597713" a="0.025120849527187728" b="3.005152957331542e-05" c="1.7217050330846001e-06" d="-2.1197399902956125e-07" /> - <superelevation s="302.87095556480392" a="0.025381604170078648" b="0" c="-3.9459716973437735e-06" d="1.4404814569558567e-07" /> - <superelevation s="312.96665408363071" a="0.02512764179626327" b="-3.5629168212772691e-05" c="-6.6414586264708524e-06" d="5.5508989506312097e-07" /> - <superelevation s="323.06235260245751" a="0.024662201488573208" b="0" c="6.544082328617158e-08" d="0" /> - <superelevation s="333.1580511212843" a="0.024668871422019591" b="1.3213416454433914e-06" c="5.7776870825275458e-06" d="-2.2002449119349252e-07" /> - <superelevation s="343.2537496401111" a="0.025044689292042878" b="5.070416196607954e-05" c="4.8751433078475884e-06" d="-3.506501386124152e-07" /> - <superelevation s="353.34944815893789" a="0.025692659287738197" b="4.1922038613928545e-05" c="-2.0762326913660773e-06" d="0" /> - <superelevation s="363.44514667776468" a="0.025904275419308617" b="0" c="-2.932456152071781e-06" d="1.9086816431031714e-07" /> - <superelevation s="373.54084519659148" a="0.025801790825935794" b="-8.4874510176255554e-07" c="4.2034986493494605e-08" d="0" /> - <superelevation s="383.63654371541827" a="0.025797506488602431" b="0" c="2.2183990536568711e-07" d="0" /> - <superelevation s="393.73224223424506" a="0.025820117105801867" b="4.4792576080340871e-06" c="8.2260980087723563e-06" d="-5.578572496913048e-07" /> - <superelevation s="403.82794075307186" a="0.026129741143762715" b="0" c="-8.5485288735333279e-06" d="3.9926440588781481e-07" /> - <superelevation s="413.92363927189871" a="0.025669285492059074" b="-5.052390843355e-05" c="-1.1183901373107807e-06" d="6.2558069150288271e-08" /> - <superelevation s="424.0193377907255" a="0.02510959284868685" b="-5.3977425361252462e-05" c="-4.9123425656435431e-06" d="5.009150412945434e-07" /> - <superelevation s="434.11503630955229" a="0.024579405865519714" b="0" c="1.9365058832813016e-05" d="-1.2787663179323669e-06" /> - <superelevation s="444.21073482837909" a="0.025237321659331371" b="0" c="-5.4003372228418105e-06" d="2.6931742032096121e-07" /> - <superelevation s="454.30643334720588" a="0.024964026027936063" b="-2.6691330820539104e-05" c="-1.510332635498494e-06" d="1.5332177091336541e-07" /> - <superelevation s="464.40213186603268" a="0.024698386401270506" b="-1.0305953008669266e-05" c="1.4516048705101329e-06" d="-9.3227011070942191e-08" /> - <superelevation s="474.49783038485947" a="0.024646363504008145" b="-9.501988636796275e-06" c="-2.2335279715545222e-06" d="1.785660738121001e-07" /> - <superelevation s="484.59352890368626" a="0.024506527976057679" b="0" c="8.7293724963010863e-06" d="-4.14855547203766e-07" /> - <superelevation s="494.68922742251306" a="0.024969372722251668" b="4.9408100119274984e-05" c="1.1491603320246944e-06" d="-7.8875265649328951e-08" /> - <superelevation s="504.78492594133985" a="0.0255041465424421" b="4.849361111471438e-05" c="3.4730689291373897e-06" d="-3.8793852599550243e-07" /> - <superelevation s="514.8806244601667" a="0.02594852647805844" b="0" c="-1.3941141132160353e-05" d="8.9356782397969797e-07" /> - <superelevation s="524.97632297899349" a="0.025447069804505028" b="-8.265431093957689e-06" c="4.0935409662560935e-07" d="1.3170770038548244e-23" /> - <superelevation s="535.07202149782029" a="0.025405347154278661" b="0" c="6.8811121602198475e-06" d="-3.7688480235980093e-07" /> - <superelevation s="545.16772001664708" a="0.025718882758235615" b="2.369943317188687e-05" c="-1.7550020397387906e-06" d="1.0165552350244323e-07" /> - <superelevation s="555.26341853547387" a="0.025883871819019567" b="1.9346637164977478e-05" c="2.8090197613768303e-06" d="-2.4876483388680704e-07" /> - <superelevation s="565.35911705430067" a="0.0261095183905771" b="0" c="-1.4020122175956768e-06" d="0" /> - <superelevation s="575.45481557312746" a="0.025966620919048108" b="-2.830858533711411e-05" c="-7.1821292358504622e-06" d="4.0588938196790478e-07" /> - <superelevation s="585.55051409195426" a="0.025366455052446658" b="-4.9217261307493032e-05" c="-1.8350391233756815e-06" d="2.821383331619059e-07" /> - <superelevation s="595.64621261078105" a="0.02497285565488257" b="0" c="3.4683848762463323e-06" d="-2.2903383850579792e-07" /> - <superelevation s="605.74191112960784" a="0.025090691867454946" b="0" c="-1.279942390208719e-05" d="8.4520642649397669e-07" /> - <superelevation s="615.83760964843464" a="0.024655839424734517" b="0" c="3.1594308227912406e-06" d="-1.2304399043904155e-07" /> - <superelevation s="625.93330816726143" a="0.024851248056298136" b="2.6170236779314012e-05" c="4.604217308239942e-06" d="-3.8919709638447373e-07" /> - <superelevation s="636.02900668608822" a="0.025184253066115051" b="1.3125940079794645e-07" c="-6.5007587417171525e-09" d="0" /> - <superelevation s="646.12470520491502" a="0.02518491564378416" b="0" c="-4.472307270776049e-07" d="0" /> - <superelevation s="656.22040372374181" a="0.025139332488881928" b="-9.0302131778651614e-06" c="-1.6347763234361502e-05" d="1.109052793135566e-06" /> - <superelevation s="666.3161022425686" a="0.024523149890951973" b="0" c="9.3369209479454203e-06" d="-6.1656099909175213e-07" /> - <superelevation s="676.4118007613954" a="0.024840365955734352" b="0" c="-3.8026133808704179e-06" d="2.5110452560755976e-07" /> - <superelevation s="686.50749928022219" a="0.024711174538211002" b="0" c="1.9565012388735528e-05" d="-1.0843678098095364e-06" /> - <superelevation s="696.60319779904898" a="0.025589503407549764" b="6.3478454055983057e-05" c="-2.7750357324775044e-06" d="4.4092752736973645e-08" /> - <superelevation s="706.69889631787578" a="0.025992893207391808" b="2.0928819708228442e-05" c="-1.0365216269681091e-06" d="0" /> - <superelevation s="716.79459483670257" a="0.026098538734456386" b="0" c="-3.8086123062359387e-06" d="1.5975798580928039e-07" /> - <superelevation s="726.89029335552937" a="0.025874741652152956" b="-2.8052102048284033e-05" c="-1.6825789703655444e-07" d="-4.1068727143095302e-08" /> - <superelevation s="736.98599187435616" a="0.025532127604258707" b="-4.4007023524108606e-05" c="-3.7353877835588364e-06" d="2.7119420274284046e-07" /> - <superelevation s="747.08169039318295" a="0.024986178367732318" b="-3.6506836560146777e-05" c="3.6714689734282369e-06" d="-1.9127620852538935e-07" /> - <superelevation s="757.17738891200975" a="0.024795003572684056" b="-2.0861157595460911e-05" c="-1.7322210839930674e-06" d="1.5269435634922663e-07" /> - <superelevation s="767.27308743083654" a="0.024564962452057304" b="-9.1478617110979753e-06" c="4.5305739340561981e-07" d="0" /> - <superelevation s="777.36878594966333" a="0.024518785425093722" b="0" c="2.6808612176362555e-05" d="-1.5215085741682992e-06" /> - <superelevation s="787.46448446849013" a="0.025685593279648099" b="7.6072590345942228e-05" c="-3.7675743884427043e-06" d="-1.0536616030838595e-22" /> - <superelevation s="797.56018298731692" a="0.026069596248487523" b="0" c="-1.0945206664695058e-05" d="5.6725854779272801e-07" /> - <superelevation s="807.65588150614371" a="0.025537727180159536" b="-4.7548715706505948e-05" c="4.1666603128947598e-07" d="9.0999018373942139e-09" /> - <superelevation s="817.75158002497062" a="0.025109521251026942" b="-3.6353175041438378e-05" c="1.4107879102296813e-06" d="-8.027004237760076e-08" /> - <superelevation s="827.84727854379742" a="0.024803705789318529" b="-3.2411517761923557e-05" c="-3.8403576083692454e-06" d="3.5959683383507683e-07" /> - <superelevation s="837.94297706262421" a="0.024455087427302982" b="0" c="1.0049556887557315e-05" d="-5.4069207329902964e-07" /> - <superelevation s="848.038675581451" a="0.024923005576723285" b="3.7587510037089011e-05" c="1.1198069658683522e-06" d="-1.9687378755393124e-07" /> - <superelevation s="858.1343741002778" a="0.025214031766118635" b="0" c="-3.3918957568004732e-06" d="1.8760444955838556e-07" /> - <superelevation s="868.23007261910459" a="0.025061361336731064" b="-1.1123416630621707e-05" c="6.5663633802952173e-07" d="-2.5806650949450237e-08" /> - <superelevation s="878.32577113793138" a="0.024989434444514513" b="-5.7558954291718465e-06" c="1.355640024970997e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="9.2871710484136596" b="-6.2128992798212585e-06" c="-0.010589650997950374" d="0.01165578443754905" /> - <laneOffset s="0.60598108285555219" a="9.2858723190531673" b="-0" c="0.004206709148257241" d="-0.0032315079307754873" /> - <laneOffset s="1.4738337465583145" a="9.2869284389698947" b="-0" c="-0.0014152208189397433" d="0.00026198386644038545" /> - <laneOffset s="5.0751262947558473" a="9.2808102940652635" b="-0" c="0.0011860266915044383" d="-0.00011526530027530821" /> - <laneOffset s="10.095698518826797" a="9.2961187153280207" b="0.0031928835540569207" c="-0.00054477675187759747" d="-0.00011718835847726407" /> - <laneOffset s="11.934794777105072" a="9.2994192005215517" b="-0" c="-3.444668257085421e-05" d="1.3476536362233386e-06" /> - <laneOffset s="20.191397037653594" a="9.2978294659577365" b="-0.00029321048204621476" c="6.053825080094472e-06" d="1.3509139259374315e-06" /> - <laneOffset s="27.333607434779793" a="9.2965362895542665" b="-0" c="0.0025440815547117957" d="-0.00054311338040523131" /> - <laneOffset s="29.78420645568028" a="9.3038216542068852" b="0.0026841503087218829" c="0.00028704233724760413" d="-9.615103153059623e-05" /> - <laneOffset s="33.987986622544355" a="9.3130348879291489" b="-0" c="-7.8584654081511201e-06" d="2.2197376416209716e-07" /> - <laneOffset s="40.382794075307189" a="9.3127715748566295" b="-7.3274852419306761e-05" c="-1.7788539475016139e-06" d="-2.6087196831966666e-07" /> - <laneOffset s="50.478492594133982" a="9.3115820742891433" b="-0.00018895906025771154" c="-1.6426424663942445e-06" d="-7.2028647083474055e-07" /> - <laneOffset s="54.261015924485903" a="9.3108048494143176" b="-0.00023230218591761525" c="-2.3046316946716081e-05" d="4.8034137313413034e-07" /> - <laneOffset s="60.574191112960783" a="9.3085406098805592" b="-0.00046585934051370165" c="-1.3485896751675533e-05" d="6.1749695426013311e-07" /> - <laneOffset s="69.14660299633762" a="9.3039450387157014" b="-0.00056094006533201845" c="-6.5677221801091384e-05" d="6.3261894540137573e-06" /> - <laneOffset s="70.669889631787584" a="9.302960529429896" b="-0.00071699262249699737" c="-5.1953299147562613e-05" d="4.3622132587101642e-06" /> - <laneOffset s="80.765588150614377" a="9.2949153980712769" b="-0.00043217104437930852" c="7.2345223237858618e-05" d="3.3596824128313683e-06" /> - <laneOffset s="83.303705957729804" a="9.2943394810445685" b="-0" c="0.00034698393702768996" d="-5.2834307180409902e-05" /> - <laneOffset s="87.681971464180108" a="9.2965566168961473" b="-0" c="-2.045965586317585e-05" d="1.8951946796338374e-07" /> - <laneOffset s="90.861286669441171" a="9.2963559002934577" b="-0.00012434837593140057" c="-1.1495418004611804e-05" d="1.104812289324212e-06" /> - <laneOffset s="101.36848042595275" a="9.2950618296306811" b="-0" c="0.0027153769985122319" d="-0.00044413448555563097" /> - <laneOffset s="105.44438849257538" a="9.3100987063697556" b="-0" c="-0.0046119735608643663" d="0.00056540583183773698" /> - <laneOffset s="110.84428893988682" a="9.2646446558902547" b="-0.0003485177231546294" c="1.1739824945078481e-05" d="3.1885462480718557e-07" /> - <laneOffset s="121.26427764052661" a="9.2626485104536549" b="-0" c="0.00039846956043757258" d="-2.1147418286544279e-05" /> - <laneOffset s="131.24408074474837" a="9.2813151288337021" b="0.0016346708795876366" c="-0.00022527043536076623" d="-2.4284670020568351e-05" /> - <laneOffset s="133.80872966688554" a="9.2836161337102308" b="-0" c="-0.00079212727912035606" d="7.3445547253944444e-05" /> - <laneOffset s="139.75605336801445" a="9.2710481307984516" b="-0.0016286224164916204" c="0.0002680442614365966" d="-2.3172860761151999e-05" /> - <laneOffset s="141.33977926357517" a="9.2690490954924716" b="-0.00095397079436334469" c="0.00016340994347882089" d="-1.7218693805121502e-05" /> - <laneOffset s="149.3148801939976" a="9.2631004086185822" b="-0.0016329914314400251" c="-0.00016570249100009751" d="2.2599792760829696e-06" /> - <laneOffset s="151.43547778240196" a="9.2589138893261769" b="-0.0023052791032234605" c="-0.00015867816534234121" d="-2.409560291770414e-06" /> - <laneOffset s="157.69219850309233" a="9.2376885270685971" b="-0.0045738669807722891" c="-0.0012964502855393046" d="0.0002332278998437778" /> - <laneOffset s="162.47228357676374" a="9.2116756119078858" b="-0.00098093019690541567" c="0.00013887159464169696" d="-9.1992369552741662e-06" /> - <laneOffset s="172.07720851871449" a="9.2069139634108499" b="-0.00085924302225921041" c="-8.6744926239314192e-05" d="3.2062040720135244e-06" /> - <laneOffset s="181.72257333888234" a="9.1934331530453939" b="-0.0016377669904185297" c="4.2637828266006869e-06" d="2.798406102854431e-06" /> - <laneOffset s="187.20396975304703" a="9.185044887602432" b="-0.001338783756071892" c="8.0426667427464294e-05" d="-5.2718779598702396e-06" /> - <laneOffset s="191.81827185770914" a="9.180061817387509" b="-0.00093330093352068152" c="1.035860843642728e-05" d="-4.950563574427544e-06" /> - <laneOffset s="201.69713041625721" a="9.1670799664225839" b="-0.0021780423984492248" c="-0.00018923052665533225" d="8.2727697215410605e-06" /> - <laneOffset s="212.00966889536275" a="9.1335673797379222" b="-0.0034415478651826279" c="6.8791807813901559e-05" d="8.1008009627828578e-06" /> - <laneOffset s="216.76413592067979" a="9.1196303194383805" b="-0.0022380563365859969" c="6.1655027601789349e-05" d="-1.1796686992463686e-07" /> - <laneOffset s="222.10536741418954" a="9.1094173079205305" b="-0.0015895251296550426" c="5.9643869540714272e-05" d="5.8270085798053064e-08" /> - <laneOffset s="230.46325900325695" a="9.1003326331765937" b="-0.00058031988128716449" c="9.2579568205597691e-06" d="1.0396076032596956e-06" /> - <laneOffset s="232.20106593301634" a="9.0993575640400799" b="-0.00053872403780565832" c="1.1867688314678905e-05" d="6.6153521970185249e-09" /> - <laneOffset s="242.29676445184313" a="9.0951351675909891" b="-0.0002970760589470796" c="1.5849033906141221e-05" d="-2.562949934078438e-07" /> - <laneOffset s="252.39246297066992" a="9.093487636633947" b="-5.5429085390290237e-05" c="3.2517891184630853e-05" d="-5.9160605816553604e-06" /> - <laneOffset s="254.70817730196902" a="9.0934601907690578" b="-0" c="0.0007965754462447381" d="-8.7733775530452745e-05" /> - <laneOffset s="260.76115170419524" a="9.1031886336962167" b="-0" c="-0.0010652096132647126" d="0.00014960657950186388" /> - <laneOffset s="262.48816148949675" a="9.1007821899262122" b="-0.0023406217956969113" c="-0.00030329542710627686" d="0.00015931863603184225" /> - <laneOffset s="264.52516254476893" a="9.0961024602801146" b="-0.0015930305226121099" c="0.00015983901027105416" d="-8.7742107582134761e-06" /> - <laneOffset s="272.58386000832354" a="9.0890530631163724" b="-0.00072630237466190335" c="-6.3243284343863143e-05" d="-9.6842495597634006e-06" /> - <laneOffset s="274.37570661527781" a="9.0874928700272743" b="-0.0010462269781484591" c="-3.2086906204081424e-05" d="5.9088486428230356e-07" /> - <laneOffset s="282.67955852715033" a="9.0769309678881989" b="-0.0014568852651897452" c="-1.5050579757327574e-05" d="4.3966201760635443e-07" /> - <laneOffset s="292.77525704597713" a="9.0611410969980319" b="-0.0016263423116561098" c="1.0936606003989465e-05" d="-2.6035465186209735e-06" /> - <laneOffset s="294.9379661344953" a="9.057648609005815" b="-0.0016155697044490263" c="-2.7715195392177246e-06" d="-3.7127815353104598e-07" /> - <laneOffset s="302.87095556480392" a="9.0444725360184588" b="-0.0017296387630203784" c="-1.1565531104693749e-05" d="2.7037521770297125e-10" /> - <laneOffset s="309.72821614544756" a="9.0320682048246432" b="-0.0018882163433273148" c="-3.7972090381441563e-05" d="2.3453339885741997e-06" /> - <laneOffset s="312.96665408363071" a="9.0256347565388033" b="-0.0020603669276312189" c="-2.5734238574551785e-05" d="1.0099835118126814e-06" /> - <laneOffset s="323.06235260245751" a="9.003250257156008" b="-0.0022711551181281301" c="1.8222782576210042e-06" d="8.0403119372867843e-07" /> - <laneOffset s="333.1580511212843" a="8.9813344282762735" b="-0.0019885126500861876" c="3.0663606091710126e-05" d="-1.79611911585427e-06" /> - <laneOffset s="334.29676935318548" a="8.9791071814640908" b="-0.0019256652064104875" c="3.7088799597594924e-05" d="-1.9967736872839589e-06" /> - <laneOffset s="343.2537496401111" a="8.9633997039051874" b="-0.0017418463708793906" c="-4.6848092637895066e-06" d="-2.9200830749422628e-06" /> - <laneOffset s="348.36118606440226" a="8.9539920779756006" b="-0.0020182201468987647" c="-5.3756955025574531e-05" d="1.7969280886577498e-06" /> - <laneOffset s="353.34944815893789" a="8.9428100833857158" b="-0.0024203901248191356" c="-1.7134526504536921e-05" d="2.8581952292173016e-06" /> - <laneOffset s="364.22349151778155" a="8.918139652630396" b="-0.0017791329607270479" c="9.5137085738750403e-05" d="-3.6765054911116995e-06" /> - <laneOffset s="373.54084519659148" a="8.9068481767333534" b="-0.00096378750041239264" c="-8.4745814237441085e-06" d="-3.73039801653725e-06" /> - <laneOffset s="381.66806220649562" a="8.8964529685444553" b="-0.0018407339282537347" c="-0.00010011698562690197" d="4.4884371062415533e-06" /> - <laneOffset s="383.63654371541827" a="8.8924758090732894" b="-0.0021827138013825187" c="-7.3487235560667716e-05" d="4.468561887951413e-06" /> - <laneOffset s="393.73224223424506" a="8.8675478235732719" b="-0.0023001743281265375" c="6.7833306440496038e-05" d="2.9941021878624712e-06" /> - <laneOffset s="396.34974954371216" a="8.8620455443733359" b="-0.0018835251004515486" c="3.2341912740761967e-05" d="-2.0162376344485889e-07" /> - <laneOffset s="403.82794075307186" a="8.8496845312704266" b="-0.0014336335104505186" c="2.7823267718837429e-05" d="2.8044688859823792e-07" /> - <laneOffset s="413.92363927189871" a="8.8383354097473958" b="-0.00078609079219299439" c="2.9516028196238055e-05" d="3.1949534937853329e-07" /> - <laneOffset s="424.0193377907255" a="8.833736396017132" b="-9.2429051179036844e-05" c="4.9982325469272994e-06" d="1.5756453622744022e-05" /> - <laneOffset s="425.31593574949653" a="8.8336593014243885" b="-0" c="0.00013191661765478717" d="-8.1294340080174397e-06" /> - <laneOffset s="434.11503630955229" a="8.8383345530267992" b="0.00043325111040981167" c="-7.5512359237634951e-05" d="-1.2188070964643178e-05" /> - <laneOffset s="436.06407404866161" a="8.838801884059329" b="-0" c="-0.0010172457013427683" d="0.00011890617257243147" /> - <laneOffset s="440.52020172209973" a="8.8291238517658535" b="-0.001982567493764853" c="1.0858700764372528e-05" d="2.1693462488899243e-06" /> - <laneOffset s="444.21073482837909" a="8.822064059273302" b="-0.0018137789914778604" c="4.2460151570826626e-05" d="4.1124656194909572e-06" /> - <laneOffset s="452.15411157017218" a="8.8123968362879292" b="-0.00036076941330177934" c="2.8649576328595131e-05" d="1.1788937532344265e-06" /> - <laneOffset s="454.30643334720588" a="8.8117648175576377" b="-0.00022105956209004504" c="2.4914690587414096e-05" d="-1.6927273854802148e-06" /> - <laneOffset s="464.40213186603268" a="8.810330658685908" b="-0.0002355813652685927" c="-3.0796724787157328e-05" d="-8.4016099183289827e-07" /> - <laneOffset s="466.28889600311697" a="8.8097708965346353" b="-0.00036076629118719707" c="-0.0026453201038281414" d="0.0004224790447384185" /> - <laneOffset s="469.89795351684353" a="8.7938731280457496" b="-0.0029462470763788003" c="0.00012114290040571383" d="-2.4136510842749383e-06" /> - <laneOffset s="474.49783038485947" a="8.7826490845373382" b="-0.0019849725940607869" c="8.6217847756235496e-05" d="-2.4608091962255481e-06" /> - <laneOffset s="484.59352890368626" a="8.76886485625311" b="-0.00099655391465878714" c="1.4056141963762293e-05" d="-2.7618656988563707e-06" /> - <laneOffset s="493.55151756896407" a="8.7590803442832179" b="-0.0014096067805118178" c="-6.0055428300208891e-05" d="-1.1424593140018276e-05" /> - <laneOffset s="494.68922742251306" a="8.7573820617572249" b="-0.0015906215073724305" c="-6.4906543681091987e-05" d="6.316072617789658e-06" /> - <laneOffset s="504.78492594133985" a="8.7412072936723213" b="-0.00096991365649145905" c="0.00014212149926612545" d="3.8554173916698341e-06" /> - <laneOffset s="507.82189169043806" a="8.7396805004573483" b="-0" c="1.1845302940081394e-05" d="-8.6274755332493956e-07" /> - <laneOffset s="514.8806244601667" a="8.7399672672649107" b="3.8264632237889692e-05" c="-9.9838756676617989e-06" d="8.6290255192962212e-07" /> - <laneOffset s="518.43271177872975" a="8.7400158902091079" b="-0" c="-0.00013464774735805646" d="3.1789987881626539e-06" /> - <laneOffset s="524.97632297899349" a="8.7351411521652178" b="-0.0013538018220819621" c="-7.825297390897355e-05" d="2.6122866151252594e-06" /> - <laneOffset s="535.07202149782029" a="8.7161857934018645" b="-0.0021350814139482256" c="3.1251200595084357e-06" d="2.38794152747361e-06" /> - <laneOffset s="543.25520580835712" a="8.7002318518932533" b="-0.0016042125767033826" c="-6.0884506000381258e-07" d="-3.3966213561351667e-06" /> - <laneOffset s="545.16772001664708" a="8.6971377847633509" b="-0.0016438130001462077" c="-8.1421206005681411e-06" d="3.1908226837110487e-07" /> - <laneOffset s="555.26341853547387" a="8.6800408048124389" b="-0.001710648200717463" c="4.1083229919886359e-06" d="2.9210178470826739e-07" /> - <laneOffset s="565.35911705430067" a="8.6634899178458049" b="-0.0015383796367410506" c="1.3503665014005788e-05" d="4.8213057897229151e-07" /> - <laneOffset s="572.30677134994539" a="8.6536152970716387" b="-0.0012809248594499621" c="-5.5932020819153265e-05" d="5.1805209825907952e-06" /> - <laneOffset s="575.45481557312746" a="8.6491902127383344" b="-0.0014790580854360926" c="-1.6048803818180738e-05" d="4.3540922484006629e-06" /> - <laneOffset s="585.55051409195426" a="8.6371026403092017" b="-0.00047175774301928678" c="9.4128916269250323e-05" d="1.0305887617499826e-05" /> - <laneOffset s="587.4585374721546" a="8.6366167842166064" b="-0" c="2.3819834667071753e-05" d="-7.2140041088668824e-08" /> - <laneOffset s="595.64621261078105" a="8.6381740222417456" b="0.00037554975876369519" c="1.9933825380361992e-05" d="-3.5491701111781086e-07" /> - <laneOffset s="605.74191112960784" a="8.6436319728884836" b="0.00066951878501707199" c="6.7063288144650755e-06" d="-7.2149557964823098e-08" /> - <laneOffset s="614.96880631719705" a="8.6503238236740501" b="0.00077484848454917332" c="2.0289112245569659e-05" d="-6.9884162232410094e-07" /> - <laneOffset s="625.93330816726143" a="8.6603376324185621" b="0.00096772365187039716" c="4.8147199086974855e-06" d="-1.7879060596626692e-06" /> - <laneOffset s="629.71205764350782" a="8.6639666975236089" b="0.00092752264169629849" c="-3.1055610513730573e-06" d="2.0480994708027626e-07" /> - <laneOffset s="636.02900668608822" a="8.6697535135169623" b="0.00091280541315075345" c="3.8814185097103107e-06" d="5.3058244765071095e-07" /> - <laneOffset s="642.26829303254328" a="8.6757287381441337" b="0.0010232046215941787" c="5.5774556787888302e-05" d="-2.5252027757480169e-06" /> - <laneOffset s="646.12470520491502" a="8.6803592853415985" b="0.0013407201790776439" c="2.6270707078578279e-05" d="-2.5050924450690734e-06" /> - <laneOffset s="656.22040372374181" a="8.6939946817270393" b="0.0011051818779876277" c="-5.781893544701421e-05" d="-1.5293244026389645e-06" /> - <laneOffset s="661.52895449547202" a="8.6980034321124116" b="0.00036202002080496691" c="-5.821664624054024e-05" d="4.2049680531670294e-06" /> - <laneOffset s="666.3161022425686" a="8.6988636475045116" b="9.3729675175173254e-05" c="-1.8678291020251834e-06" d="2.7280476117827245e-06" /> - <laneOffset s="672.27440054047406" a="8.699932863417029" b="0.00036201937157872671" c="2.6619829723954952e-05" d="2.3575239178222113e-07" /> - <laneOffset s="676.4118007613954" a="8.7019030598454385" b="0.00059440003566507845" c="3.3251640588917005e-05" d="9.8575451142308174e-07" /> - <laneOffset s="687.13786904147162" a="8.7133206272480201" b="0.0016479476246549221" c="0.00016835535093056078" d="-9.5764005172934533e-06" /> - <laneOffset s="696.60319779904898" a="8.7358813632769863" b="0.0022611056037976545" c="-8.3557747757948144e-05" d="-1.2400077764202309e-05" /> - <laneOffset s="699.37646586314975" a="8.741244886944564" b="0.001511541956709346" c="-0.00017878551179101901" d="1.0924988774038848e-05" /> - <laneOffset s="706.69889631787578" a="8.7470162318136566" b="0.00065058074713946043" c="6.7807722096512545e-05" d="1.0536727359532695e-05" /> - <laneOffset s="710.12565530399308" a="8.7504658502146651" b="0.0014864903519534263" c="0.00012296828125753914" d="-3.1691867750750455e-06" /> - <laneOffset s="716.79459483670257" a="8.7649081695574331" b="0.0027037800049764626" c="5.8768706392155677e-05" d="-2.9989315297115641e-06" /> - <laneOffset s="726.89029335552937" a="8.7951087516724549" b="0.0029734208373862737" c="-3.9056551940228114e-05" d="-2.0879608545764045e-06" /> - <laneOffset s="730.51528516858241" a="8.8052746938280517" b="0.002607950515309993" c="5.5626312657727481e-07" d="-2.3128012752595346e-07" /> - <laneOffset s="736.98599187435616" a="8.8221106070346682" b="0.0025860982181656546" c="-1.3175190687558408e-05" d="-1.1616580326603049e-07" /> - <laneOffset s="744.04735944324136" a="8.8396741417293807" b="0.0023826513940375942" c="-4.8392630661454266e-05" d="4.4882860222962508e-06" /> - <laneOffset s="747.08169039318295" a="8.8465837275612955" b="0.0022129460407904599" c="-1.9448145653026499e-05" d="2.3124963605872926e-06" /> - <laneOffset s="755.6101214696838" a="8.865476601420065" b="0.0023858139799750469" c="1.3103233371217844e-05" d="2.8006840449401535e-06" /> - <laneOffset s="757.17738891200975" a="8.8692587776774907" b="0.0024475247115785408" c="1.7203039187795185e-05" d="-3.2715667076316468e-07" /> - <laneOffset s="767.27308743083654" a="8.8953849974929344" b="0.0026948436118104427" c="5.2254049348294006e-06" d="-3.6783889153315757e-07" /> - <laneOffset s="774.07398288249158" a="8.9138383275032993" b="0.0027148784264182427" c="-2.3386263990852042e-05" d="2.7474930156038846e-06" /> - <laneOffset s="777.36878594966333" a="8.9226277132772935" b="0.0026502502621718461" c="1.4117540122675478e-05" d="1.6956634569098158e-06" /> - <laneOffset s="784.52118302939084" a="8.9429259959250338" b="0.0031124328352008339" c="0.00014885255402863072" d="-1.9283146048460179e-05" /> - <laneOffset s="787.46448446849013" a="8.9528846576009791" b="0.0034875176740749377" c="1.75704295490738e-05" d="-1.4918239543188238e-05" /> - <laneOffset s="791.29783595587526" a="8.9656713917765263" b="0.0029645729830130815" c="-6.8636275938049887e-05" d="1.6290210038498816e-06" /> - <laneOffset s="797.56018298731692" a="8.9819449403505178" b="0.0022965805281990373" c="-4.2157624864255075e-05" d="3.8549176282556177e-06" /> - <laneOffset s="799.877776691284" a="8.9870890295547827" b="0.0021632891062318424" c="-0.00014634390208031816" d="6.6435071231573496e-06" /> - <laneOffset s="807.65588150614371" a="8.9981878862872016" b="0.0010925075959304145" c="-2.0112763858365952e-07" d="6.4243952037063301e-06" /> - <laneOffset s="816.46037115205093" a="9.0121760166162161" b="0.0025830047498292112" c="-0.00023055503140369531" d="4.2147013621552408e-05" /> - <laneOffset s="817.75158002497062" a="9.0152175603555929" b="0.0021984204221912025" c="-8.9711327823046441e-05" d="3.228391179675598e-05" /> - <laneOffset s="825.03977019603735" a="9.0389729414780575" b="0.0060352969584701677" c="0.00096499411168658635" d="-0.00011275799750677231" /> - <laneOffset s="827.84727854379742" a="9.0610280415159181" b="0.0087874445138808131" c="-1.8986414666179173e-06" d="-0.00011205180407882825" /> - <laneOffset s="830.5749617343165" a="9.0827092265488876" b="0.0062760045447799286" c="-0.0004743707369754563" d="3.1576610510862178e-05" /> - <laneOffset s="836.20356326788237" a="9.1086365024994258" b="0.0039370673266376039" c="-0.00018032102031099081" d="1.2765135867130183e-05" /> - <laneOffset s="837.94297706262421" a="9.115006298687506" b="0.0034256266530133697" c="-0.00011244937466049251" d="9.9811315639981837e-06" /> - <laneOffset s="841.2017231933753" a="9.1253208056204453" b="0.0030107203982961865" c="-0.00023122527308950611" d="1.1919594934512696e-05" /> - <laneOffset s="848.038675581451" a="9.1389059174120408" b="0.0015204737353211833" c="2.2305251865784221e-05" d="1.2117816927781675e-05" /> - <laneOffset s="854.99745317662814" a="9.1546500910795299" b="0.0035913090992073923" c="0.00019566150733356483" d="-9.4084718446549214e-06" /> - <laneOffset s="858.1343741002778" a="9.1675506841661853" b="0.00454111266078193" c="0.00010855459160643832" d="-8.6366313336756423e-06" /> - <laneOffset s="864.75859211597015" a="9.1998849779567919" b="0.0048423582263401339" c="0.00018383684706696089" d="-7.2668812659034682e-06" /> - <laneOffset s="868.23007261910459" a="9.2186065674199771" b="0.0058560068724572475" c="0.00010430902873356904" d="-7.879290049987404e-06" /> - <laneOffset s="878.32577113793138" a="9.280250877199741" b="0.0055529062075051865" c="-0.00013526813428292185" d="-7.8714883114082898e-06" /> - <laneOffset s="885.7397262725442" a="9.3107768317654749" b="0.0022491525145087433" c="-0.0012380136806127455" d="0.00053060674605237351" /> - <laneOffset s="887.79930570587635" a="9.3147932762761272" b="0.0039018679270475753" c="0.033627486086945095" d="-0.039392842459194617" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929732041174404" b="-0.0023776363791647541" c="0.010806480259745604" d="-0.011643535316631804" /> - <width sOffset="0.60598108285555219" a="2.4929097141758412" b="-0.0021075663047371079" c="-0.0039676116797897508" d="0.0032437570516927333" /> - <width sOffset="1.4738337465583145" a="2.4902126243525267" b="-0.0016648866082038813" c="0.0016862095840554181" d="-0.00024973474552314798" /> - <width sOffset="5.0751262947558473" a="2.4944216730627957" b="0.00076352089907400812" c="-0.00078269992274589985" d="0.00012751442119258617" /> - <width sOffset="8.5755068452161396" a="2.4929730919240765" b="-2.8800200439633473e-05" c="-0.00039161483994703042" d="0.00012730284869636707" /> - <width sOffset="10.095698518826797" a="2.4924715272786049" b="-0.00033687538598307053" c="0.00018713294540875552" d="0.00012899005413936001" /> - <width sOffset="11.934794777105072" a="2.4932872767324863" b="0.0016602751377854891" c="-0.00025808376089745078" d="1.0454042025871398e-05" /> - <width sOffset="20.191397037653594" a="2.4952857683221676" b="-0.0004635122109528321" c="-2.5559701729781786e-07" d="1.0509638316802966e-05" /> - <width sOffset="27.333607434779793" a="2.4957912311328361" b="0.0011411635538704223" c="-0.0022841516480178849" d="0.00055497393264796271" /> - <width sOffset="29.78420645568028" a="2.4930379438064634" b="-5.5335458514479095e-05" c="6.008394258089913e-05" d="0.0001080115837245685" /> - <width sOffset="30.034231254758723" a="2.4930295527443196" b="-5.0343171274910489e-06" c="-0.00051845882158160978" d="0.00010672639237099513" /> - <width sOffset="33.987986622544355" a="2.4915013182438237" b="0.00090034599707011678" c="-0.00017024127687741681" d="1.0353387076282701e-05" /> - <width sOffset="40.382794075307189" a="2.4930045628398272" b="-6.8137351579349525e-06" c="2.6561300630625387e-05" d="1.0836231077058183e-05" /> - <width sOffset="40.488629557911928" a="2.4930041520681119" b="-8.2734422938623086e-07" c="-4.2974417940387741e-06" d="4.6540016157691433e-08" /> - <width sOffset="50.478492594133982" a="2.492613412279054" b="-7.275534135964921e-05" c="-4.6312195936909545e-06" d="7.6826030022683415e-07" /> - <width sOffset="54.261015924485903" a="2.4923135294169843" b="-7.4815120718442154e-05" c="1.7316841273346184e-05" d="-4.3236754373748584e-07" /> - <width sOffset="60.574191112960783" a="2.4924225997008058" b="9.2135827427890444e-05" c="9.2503192364799137e-06" d="-4.5030125709027217e-07" /> - <width sOffset="69.14660299633762" a="2.4936085279509825" b="0.00015145807434318556" c="6.5741455428910194e-05" d="-6.1589937570424253e-06" /> - <width sOffset="70.669889631787584" a="2.4939700188165101" b="0.00030887020774139195" c="4.0378669699579062e-05" d="-3.4565332081692046e-06" /> - <width sOffset="80.765588150614377" a="2.4976470782197122" b="6.7269923614396508e-05" c="-6.6908706941697731e-05" d="-3.3235721152949695e-06" /> - <width sOffset="83.303705957729804" a="2.497332445907551" b="-0.00033660621096460482" c="-0.00034127246416394333" d="5.2870417477939995e-05" /> - <width sOffset="87.681971464180108" a="2.4937540737703152" b="-0.00028451690419944151" c="2.6645430137022446e-05" d="-1.5340917045170986e-07" /> - <width sOffset="90.861286669441171" a="2.4931139080035543" b="-0.00011974046229870199" c="2.2508454398365145e-05" d="-1.2127768944144351e-06" /> - <width sOffset="99.682928601957045" a="2.4929766530278101" b="-5.7572771196527655e-06" c="0.001447182910149881" d="-0.00019738368543564458" /> - <width sOffset="100.95698518826796" a="2.494910210301807" b="0.0027206370121897407" c="0.00072666938172914644" d="-0.00018420743897229331" /> - <width sOffset="101.36848042595275" a="2.4961399500197281" b="0.0032251043776986058" c="-0.0021927790560705793" d="0.00026103185888036397" /> - <width sOffset="105.44438849257538" a="2.4905317766273587" b="-0.0016404396885431327" c="0.0028956430840500575" d="-0.0007485084585131536" /> - <width sOffset="107.69447800164889" a="2.4929740032311969" b="2.1595853649839306e-05" c="0.0023114471971080386" d="-0.00062646044660511358" /> - <width sOffset="110.84428893988682" a="2.4963975638747105" b="-0.0040630837179938739" c="0.00092744352258010518" d="-6.1373469114160722e-05" /> - <width sOffset="111.05268370709477" a="2.4955905604129054" b="-0.0036845310148037659" c="0.00088695379981233073" d="-5.9052869048565271e-05" /> - <width sOffset="118.0948071093801" a="2.493006006909841" b="2.1983783115371062e-05" c="0.00022298824653214019" d="-6.7239409761012413e-06" /> - <width sOffset="121.14838222592157" a="2.4949609025237702" b="0.0011957179529146489" c="0.00013533683822511508" d="-1.1647848895870277e-05" /> - <width sOffset="121.26427764052661" a="2.495101280429914" b="0.0012266184379725713" c="-0.00024547530933029444" d="9.8184244099344643e-06" /> - <width sOffset="131.24408074474837" a="2.4926532706167208" b="-0.00073933083361008738" c="4.6727313495133351e-05" d="1.1687142951106249e-05" /> - <width sOffset="133.80872966688554" a="2.4912616398343221" b="-0.00026903863832551477" c="0.00051665945459343932" d="-8.6043074323309567e-05" /> - <width sOffset="137.55895891387445" a="2.4929808352396492" b="-2.4241870311788281e-05" c="0.00023073075921099779" d="-8.6043221251197054e-05" /> - <width sOffset="139.75605336801445" a="2.4931287996532507" b="-0.00025641704580269356" c="-8.6162702251839422e-05" d="1.0575186763914033e-05" /> - <width sOffset="141.33977926357517" a="2.4925486007289539" b="-0.00044975959088307835" c="-3.4372187554318473e-05" d="7.4222336365988518e-06" /> - <width sOffset="149.3148801939976" a="2.4905403857071615" b="0.00041820901983621937" c="6.0356971111701757e-05" d="-1.2056439444786418e-05" /> - <width sOffset="151.43547778240196" a="2.4915836876003201" b="0.0005115436724511869" c="-6.6583911496016302e-06" d="-9.2327869678410001e-06" /> - <width sOffset="155.56520828167126" a="2.4929323920823077" b="-1.5837565014661676e-05" c="-0.00027597010333125523" d="5.0440424081466719e-05" /> - <width sOffset="157.69219850309233" a="2.4921355654160777" b="-0.00050521832597701967" c="0.0011384330458061795" d="-0.00018519703605454909" /> - <width sOffset="161.53117630122875" a="2.4964959268603337" b="4.7456897699065664e-05" c="-0.00098935301113696169" d="-0.00018385704359917513" /> - <width sOffset="162.47228357676374" a="2.4955110868384125" b="-0.0023032348569324472" c="0.00040078511292695746" d="5.8570093196560397e-05" /> - <width sOffset="164.47238655980601" a="2.4929763186126763" b="2.9016438587112789e-06" c="-0.00011538141426067113" d="9.8502387400529384e-06" /> - <width sOffset="171.62687482005555" a="2.4906983861262795" b="-0.00013548459078900719" c="8.8953118416093324e-05" d="9.8148515167774684e-06" /> - <width sOffset="172.07720851871449" a="2.4906563089504736" b="-4.9396048525763973e-05" c="6.2755572964540482e-05" d="-2.590589576900112e-06" /> - <width sOffset="181.72257333888234" a="2.4936935751595648" b="0.0004381732967877756" c="-1.3154915610737948e-05" d="-2.5219143430342282e-06" /> - <width sOffset="187.20396975304703" a="2.4952847877638309" b="6.6640586638924909e-05" c="-8.4771117389033761e-05" d="5.5483697197040293e-06" /> - <width sOffset="191.81827185770914" a="2.4943324683942336" b="-0.00036127443670343987" c="-8.4848785771303274e-06" d="5.160921321201021e-06" /> - <width sOffset="197.20437444953268" a="2.4929468611118253" b="-3.5187413411829835e-06" c="-6.057031003930556e-05" d="7.9153408135928502e-06" /> - <width sOffset="201.69713041625721" a="2.4924262569612452" b="-6.8463937280307131e-05" c="9.898615711154295e-05" d="-5.3079925483010655e-06" /> - <width sOffset="201.91397037653593" a="2.4924160114113754" b="-2.6284367100214492e-05" c="9.7434098241079635e-05" d="-5.1973767344274095e-06" /> - <width sOffset="212.00966889536275" a="2.4967334168631599" b="0.00035184750389826791" c="-6.0585396573000096e-05" d="-5.0220538735569864e-06" /> - <width sOffset="216.76413592067979" a="2.4964969911169419" b="-0.00056482496753742194" c="-9.5352118161027259e-06" d="3.1967139591794318e-06" /> - <width sOffset="222.10536741418954" a="2.4936952135500778" b="-0.00039308971766123849" c="4.0551620424543126e-05" d="3.4529245785558171e-06" /> - <width sOffset="225.51439202992884" a="2.4929632269012494" b="3.7771857283358697e-06" c="-5.4167020949075338e-05" d="8.2209032899804092e-07" /> - <width sOffset="230.46325900325695" a="2.4917549405052455" b="-0.00047195143235688962" c="9.8851839855845896e-06" d="-1.5924718831803204e-07" /> - <width sOffset="232.20106593301634" a="2.4909637972736487" b="-0.00043903711648704048" c="1.0154855866566018e-05" d="7.2439068820410815e-07" /> - <width sOffset="242.29676445184313" a="2.4883118128686892" b="-1.2499894050584234e-05" c="3.3129584264356948e-05" d="6.5246247978111118e-07" /> - <width sOffset="252.39246297066992" a="2.4922336628047947" b="0.00085593574719179904" c="4.2727183932918713e-05" d="5.7267870473831266e-06" /> - <width sOffset="254.70817730196902" a="2.4945160071903256" b="0.0011459539027767157" c="-0.00072264528143481442" d="8.7544501996197961e-05" /> - <width sOffset="259.20824899690689" a="2.4930167227167814" b="-3.9459287097110777e-05" c="-0.00023488714891719707" d="0.00012097119889310288" /> - <width sOffset="260.76115170419524" a="2.4928420315579487" b="0.00010619554682624464" c="0.0005973165248944161" d="-0.0001163691561394028" /> - <width sOffset="262.48816148949675" a="2.4942075587045718" b="0.001128103565661967" c="-1.229396284839685e-06" d="-0.00012242199359209694" /> - <width sOffset="264.52516254476893" a="2.4954656609368229" b="-0.00040082865172478329" c="-0.00023888833490498079" d="4.5670853197980489e-05" /> - <width sOffset="268.77521555258198" a="2.4929531725098197" b="4.3446266992485457e-05" c="-9.4990524541681287e-05" d="1.2773915888233589e-05" /> - <width sOffset="272.58386000832354" a="2.4924464576974614" b="-0.00012423744540789082" c="3.9873395375190875e-05" d="9.8225019699807746e-06" /> - <width sOffset="274.37570661527781" a="2.4924083752410269" b="0.00011326831252791471" c="9.4601985719368418e-06" d="-4.5263245406776698e-07" /> - <width sOffset="282.67955852715033" a="2.4937420868065967" b="0.00017674809277715533" c="-1.1828596101462173e-06" d="-4.9476548615896348e-07" /> - <width sOffset="292.77525704597713" a="2.4948968151609368" b="1.5803659565935286e-06" c="-2.36615441103352e-05" d="2.5947014929420588e-06" /> - <width sOffset="294.9379661344953" a="2.4948158077653115" b="-6.4357032634477281e-05" c="-1.0010806219349835e-05" d="3.6243312785376841e-07" /> - <width sOffset="302.87095556480392" a="2.4938562024687112" b="-0.00015476199833362259" c="-1.3644777250428817e-06" d="2.8245220534373301e-07" /> - <width sOffset="309.72821614544756" a="2.4928218731437628" b="-0.00013363073495957804" c="3.0858188773043402e-05" d="-2.0626114080965366e-06" /> - <width sOffset="312.96665408363071" a="2.4926426903655177" b="1.3391340916721686e-06" c="1.5265255522567701e-05" d="-6.1178634326592252e-07" /> - <width sOffset="323.06235260245751" a="2.4935825733815769" b="0.00012250043483941599" c="-4.1021935071301404e-06" d="-6.6873343998112749e-07" /> - <width sOffset="333.1580511212843" a="2.4937130756458856" b="-0.00016480679616152254" c="-2.5638211910673861e-05" d="1.726893252359603e-06" /> - <width sOffset="334.29676935318548" a="2.4934947124540781" b="-0.00021647851509865924" c="-3.2299891675164759e-05" d="1.9275478237873736e-06" /> - <width sOffset="343.2537496401111" a="2.4903495075827404" b="-0.00033117049594556282" c="1.6303770575910145e-05" d="2.693361306520287e-06" /> - <width sOffset="348.36118606440226" a="2.4894422161810166" b="4.6146763728796298e-05" c="6.1902015283031979e-05" d="-2.0236498570700639e-06" /> - <width sOffset="353.34944815893789" a="2.4909615223388197" b="0.00051265174314523375" c="2.9262085071817543e-05" d="-2.8404703741871249e-06" /> - <width sOffset="363.44514667776468" a="2.4961967811277948" b="0.00023496523942634589" c="-5.5820468470787239e-05" d="-2.66046100334888e-06" /> - <width sOffset="364.22349151778155" a="2.4963445934078798" b="0.00014323480526888836" c="-8.1063932437988291e-05" d="3.874239718258337e-06" /> - <width sOffset="373.54084519659148" a="2.4937755023071304" b="-0.0003583638100983043" c="2.7018487252601596e-05" d="3.8994814411150682e-06" /> - <width sOffset="377.22315560943599" a="2.493016951202133" b="-7.5889353403474878e-07" c="-1.68208398494657e-05" d="5.1258582524980987e-06" /> - <width sOffset="381.66806220649562" a="2.4931313925397927" b="0.00015352472026588116" c="5.2220185200624325e-05" d="-3.0929768704376323e-06" /> - <width sOffset="383.63654371541827" a="2.4936123598019471" b="0.00032315854947284161" c="3.3989549297587893e-05" d="-3.0898609715037608e-06" /> - <width sOffset="393.73224223424506" a="2.4971597711521483" b="6.4670143163780489e-05" c="-6.2691296817009434e-05" d="-1.7799988647563265e-06" /> - <width sOffset="396.34974954371216" a="2.4968676045414071" b="-0.00030010586853092183" c="-1.7666130149136558e-05" d="1.4157270865467329e-06" /> - <width sOffset="403.82794075307186" a="2.4942274711984336" b="-0.00032681068928980912" c="1.1430835260994027e-05" d="1.6798162223535653e-06" /> - <width sOffset="410.09921374631273" a="2.4930418272395425" b="1.4756883712325423e-05" c="3.7992065704320218e-05" d="-5.9117062982492494e-08" /> - <width sOffset="413.92363927189871" a="2.4936506377292886" b="0.00030275855602443546" c="2.6023588003661744e-05" d="-2.112355282026912e-06" /> - <width sOffset="424.0193377907255" a="2.4971860200647544" b="0.00018231757668229302" c="-1.2893394839684988e-05" d="-1.7572104956287422e-05" /> - <width sOffset="425.31593574949653" a="2.4973624331047901" b="6.0257587555277621e-05" c="-0.00014687428938626139" d="6.3137826744739175e-06" /> - <width sOffset="434.11503630955229" a="2.4908223725561989" b="-0.0010579475344285032" c="1.6588869362524004e-05" d="9.3297642816769881e-06" /> - <width sOffset="436.06407404866161" a="2.4888924864954216" b="-0.00088695859630798018" c="0.00094160936868272469" d="-0.0001217644792554192" /> - <width sOffset="440.52020172209973" a="2.4928632826572894" b="0.00025124576668794467" c="-0.00012470597196275441" d="-5.0276529297472829e-06" /> - <width sOffset="441.52014979285741" a="2.4929847954867377" b="-1.3234617786667298e-05" c="8.0524904326549385e-05" d="-6.8631995853046958e-06" /> - <width sOffset="444.21073482837909" a="2.4933984462508718" b="0.00027103037916715797" c="2.8877841910396902e-05" d="-5.2815490364792993e-06" /> - <width sOffset="452.15411157017218" a="2.4947263152902881" b="-0.00026994787255840398" c="1.4829007081267532e-05" d="-2.3479771702069515e-06" /> - <width sOffset="454.30643334720588" a="2.4941905850605117" b="-0.00023874521827329056" c="6.0593777940917706e-06" d="5.7416626790318877e-07" /> - <width sOffset="463.153497658741" a="2.4929502513678408" b="3.2911152474141979e-06" c="-0.00035848847247684298" d="2.2071172581595993e-05" /> - <width sOffset="464.40213186603268" a="2.4924384125225618" b="-0.00078871816392194741" c="-0.00028117678461687728" d="1.6237608767440982e-05" /> - <width sOffset="466.28889600311697" a="2.4900583944364421" b="-0.0016763349477652012" c="0.0024205006512211442" d="-0.00040708159696281734" /> - <width sOffset="469.89795351684353" a="2.4963996267279427" b="-0.00011195788078852001" c="-0.00017925152925236471" d="1.7811098859911495e-05" /> - <width sOffset="474.49783038485947" a="2.4938253968622401" b="-0.00063043978028578867" c="6.2923094654508509e-05" d="1.9164369480823569e-05" /> - <width sOffset="476.89749942652338" a="2.492939705769885" b="2.6184015856692538e-06" c="-1.6652416457598444e-06" d="9.5877390655164464e-08" /> - <width sOffset="484.59352890368626" a="2.4929049302007442" b="-5.9769675593835097e-06" c="4.7836730040152232e-07" d="1.6861067503456174e-08" /> - <width sOffset="493.55151756896407" a="2.4929018958354003" b="6.6525276087507461e-06" c="8.2077644570314475e-07" d="8.6795885084193831e-06" /> - <width sOffset="494.68922742251306" a="2.4929233087306226" b="4.2224292447822246e-05" c="3.1590687466783913e-05" d="-2.4224759578780567e-05" /> - <width sOffset="496.05134064256703" a="2.4929782140421715" b="-6.5519207356147437e-06" c="0.00012048952563656844" d="-8.1879176280726212e-06" /> - <width sOffset="504.78492594133985" a="2.4966569400674228" b="0.00022444634669089962" c="-0.00010078797662197244" d="-5.5798442208801793e-06" /> - <width sOffset="507.82189169043806" a="2.4962526984013635" b="-0.00054212432331565707" c="1.3777144052659187e-05" d="-8.6167927589317479e-07" /> - <width sOffset="514.8806244601667" a="2.492809385554434" b="-0.00047642730770119284" c="-1.3892083792826432e-06" d="-2.0562783154081542e-06" /> - <width sOffset="518.43271177872975" a="2.4910073881160422" b="-0.00056413067782115124" c="0.00011055773856399121" d="-4.3723745516313872e-06" /> - <width sOffset="524.97632297899349" a="2.4908247961000178" b="0.00032110291691738423" c="2.5907252897596081e-05" d="-4.0378673286842967e-06" /> - <width sOffset="532.68154071871413" a="2.4929899177653265" b="1.1558080188745455e-06" c="1.8756565462416767e-05" d="-2.3367081869294288e-06" /> - <width sOffset="535.07202149782029" a="2.493067943382627" b="5.0771582194697636e-05" c="2.0311466389324333e-06" d="-2.3844302118968431e-06" /> - <width sOffset="543.25520580835712" a="2.4923128043680762" b="-0.00039500249302155672" c="5.8513129882223507e-06" d="3.4001326713862058e-06" /> - <width sOffset="545.16772001664708" a="2.4916025442653353" b="-0.00033531095065870162" c="1.7448568151284594e-05" d="-2.3359494415743114e-07" /> - <width sOffset="555.26341853547387" a="2.4897553929174343" b="-5.4426165967886566e-05" c="1.1115761194439767e-05" d="-2.4138057088411865e-07" /> - <width sOffset="565.35911705430067" a="2.4900904988820489" b="9.620979279474336e-05" c="3.963837428118211e-06" d="-2.2350110778874221e-07" /> - <width sOffset="572.30677134994539" a="2.49087531139131" b="0.0001189234085536442" c="7.8790127730389372e-05" d="-4.9218915113800015e-06" /> - <width sOffset="575.45481557312746" a="2.491876960422033" b="0.00046866249309414592" c="3.5078409543311311e-05" d="-3.8426054480695301e-06" /> - <width sOffset="585.55051409195426" a="2.4962297528537629" b="1.9934801003575198e-06" c="-6.7905279025583503e-05" d="-9.9135146552907944e-06" /> - <width sOffset="587.4585374721546" a="2.4959174818213885" b="-0.00036540827301699503" c="4.6497729335610906e-06" d="4.6451300329124726e-07" /> - <width sOffset="595.64621261078105" a="2.4934923136610365" b="-0.00019584651068560856" c="1.6855706506576028e-05" d="2.7886245592017568e-07" /> - <width sOffset="600.70714412884433" a="2.4929690213255675" b="-3.8078225190285673e-06" c="-6.956807747494726e-06" d="1.3674447784736316e-07" /> - <width sOffset="605.74191112960784" a="2.4927909546597693" b="-6.3460677111261583e-05" c="-4.0222182144586535e-06" d="3.449121490537192e-07" /> - <width sOffset="614.96880631719705" a="2.492133917030678" b="-4.9592945990167164e-05" c="-1.0054746133568037e-05" d="9.7160421785337118e-07" /> - <width sOffset="615.83760964843464" a="2.492083878166083" b="-6.4863983224362136e-05" c="-9.4815793427369235e-06" d="6.3255159034126993e-07" /> - <width sOffset="625.93330816726143" a="2.4911135249271457" b="-6.2895405045470892e-05" c="6.4874336160440634e-06" d="1.6457515126146694e-06" /> - <width sOffset="629.71205764350782" a="2.491057291772707" b="5.6632166565769352e-05" c="1.2796215315483553e-05" d="-3.4696449412488069e-07" /> - <width sOffset="636.02900668608822" a="2.4918381929450479" b="0.00017676259434201507" c="5.8566088217155206e-06" d="-4.9241448019886158e-07" /> - <width sOffset="642.26829303254328" a="2.4930494543112136" b="0.00019233755522888338" c="-4.5322106822133107e-05" d="2.5633707432475375e-06" /> - <width sOffset="646.12470520491502" a="2.4932641757244483" b="-4.2857199411082793e-05" c="-1.5748903748323762e-05" d="2.5925829236921673e-06" /> - <width sOffset="651.26717656346887" a="2.4929798762514359" b="8.4888472574092683e-07" c="-5.8445870243403178e-05" d="4.0627082159929021e-06" /> - <width sOffset="656.22040372374181" a="2.4920438627464776" b="-0.00027911341093091852" c="3.9404692582987628e-06" d="3.2634374137047268e-06" /> - <width sOffset="661.52895449547202" a="2.4911614263744131" b="3.8620914078890494e-05" c="3.195506094128502e-05" d="-2.4708550420787314e-06" /> - <width sOffset="666.3161022425686" a="2.4918075499169348" b="0.00017469595949718263" c="-1.9495358406072304e-06" d="-1.4971303143450627e-06" /> - <width sOffset="672.27440054047406" a="2.4924625453099782" b="-7.9861735217600315e-06" c="-8.4346773524075354e-06" d="9.9516490568544646e-07" /> - <width sOffset="676.4118007613954" a="2.4923555997352249" b="-2.6675506242126871e-05" c="1.7362240841159665e-06" d="4.8518658814435694e-07" /> - <width sOffset="686.50749928022219" a="2.4927625030648368" b="0.0001567364886172159" c="2.7981896345429644e-05" d="-1.6190812182429576e-06" /> - <width sOffset="687.13786904147162" a="2.4928720185033129" b="0.00019008426759787081" c="-7.8463862916608947e-05" d="8.9430738236089764e-06" /> - <width sOffset="690.63737490637754" a="2.4929595804866338" b="-3.0520060569714635e-05" c="-0.00014552722257685804" d="1.0342485419508328e-05" /> - <width sOffset="696.60319779904898" a="2.48979405606398" b="-0.00066259980922124084" c="3.7848211080677711e-05" d="1.4598580023529235e-05" /> - <width sOffset="699.37646586314975" a="2.488558957100766" b="-0.00011583961217272371" c="0.00015136708342775945" d="-8.7264865147169721e-06" /> - <width sOffset="706.69889631787578" a="2.4924005873649655" b="0.00069722032938202667" c="-4.2579667459335496e-05" d="-8.1711624443912279e-06" /> - <width sOffset="710.12565530399308" a="2.4939609920492316" b="0.00011754584564853789" c="-7.3421564129711221e-05" d="5.5347516902181523e-06" /> - <width sOffset="716.79459483670257" a="2.4931210964456998" b="-0.00012327192973591574" c="3.5845458825383096e-05" d="7.014157234571185e-06" /> - <width sOffset="718.12443291336581" a="2.4930370520730545" b="9.2783477338817706e-06" c="-5.7528067729618601e-05" d="3.2708191845179507e-06" /> - <width sOffset="726.89029335552937" a="2.4909010406046157" b="-0.00024529540539192313" c="3.0065691853088475e-05" d="2.3641308866164752e-06" /> - <width sOffset="730.51528516858241" a="2.4905195410234207" b="6.5878419573350139e-05" c="-6.543780898451676e-06" d="5.07450159575081e-07" /> - <width sOffset="736.98599187435616" a="2.4908093154062758" b="4.4933529157774495e-05" c="5.0203020176321399e-06" d="5.0252385389869823e-07" /> - <width sOffset="744.04735944324136" a="2.4915538732737428" b="0.00019100583289384737" c="4.8422390617428287e-05" d="-4.1019279717446745e-06" /> - <width sOffset="747.08169039318295" a="2.4924646831352106" b="0.00037156357542214103" c="1.6807556714858698e-05" d="-2.124768303054725e-06" /> - <width sOffset="755.6101214696838" a="2.4955380096775261" b="0.00019461818927215928" c="-1.0940744912864906e-05" d="-2.6129559871955396e-06" /> - <width sOffset="757.17738891200975" a="2.4958060952261718" b="0.00014106921780961254" c="-1.7650082009956059e-05" d="5.3545174523440363e-07" /> - <width sOffset="767.27308743083654" a="2.495982307850797" b="-5.1585844560033713e-05" c="-1.6454832799464269e-06" d="4.7567751286649936e-07" /> - <width sOffset="774.07398288249158" a="2.4957049980548085" b="-7.9639997348211235e-06" c="2.9166383213603331e-05" d="-2.639654394329563e-06" /> - <width sOffset="777.36878594966333" a="2.4959009667502841" b="9.8264873579910917e-05" c="2.2104585834014035e-06" d="-2.2639275565220095e-06" /> - <width sOffset="784.52118302939084" a="2.495888519420248" b="-0.00021756073029553964" c="-0.0001447179067809927" d="1.8714881948700398e-05" /> - <width sOffset="787.46448446849013" a="2.4944716679873551" b="-0.0005830751983011361" c="5.6601425493023521e-06" d="1.252146512584846e-05" /> - <width sOffset="791.29783595587526" a="2.4930250371666034" b="1.2312582650818651e-05" c="-3.6505259595632537e-05" d="4.6038607747643154e-07" /> - <width sOffset="797.56018298731692" a="2.4917835828213502" b="-0.00039073975640553605" c="-2.5000929475037231e-05" d="-1.1003654519201605e-06" /> - <width sOffset="799.877776691284" a="2.4907300230772123" b="-0.00052435473258664552" c="9.8337146084442629e-05" d="-3.888954946829198e-06" /> - <width sOffset="807.65588150614371" a="2.4907708141344287" b="0.00029956586769584997" c="8.1606282040087825e-06" d="-3.7339094475266224e-06" /> - <width sOffset="816.46037115205093" a="2.4914924914392138" b="-0.00042508100346419931" c="0.0003095795939171026" d="-3.9456527866523471e-05" /> - <width sOffset="817.75158002497062" a="2.4913748212359081" b="0.00017703465460657073" c="0.00016894210422383973" d="-2.8798755672575165e-05" /> - <width sOffset="821.95929424084773" a="2.4929654080753405" b="6.9121122832113517e-05" c="0.00045636944062906772" d="-7.6619285711487868e-05" /> - <width sOffset="825.03977019603735" a="2.4952692663562583" b="0.00069959375535644502" c="-0.00060053373497140502" d="6.8422623592015349e-05" /> - <width sOffset="827.84727854379742" a="2.4940140418853396" b="-0.0010544706674867413" c="-1.9451861154046012e-05" d="6.8443181108635489e-05" /> - <width sOffset="830.5749617343165" a="2.4923820842488613" b="0.00036711658520310192" c="9.61687108430507e-05" d="-7.5185233481061165e-05" /> - <width sOffset="832.32459817549409" a="2.492916104344328" b="1.3159794441030756e-05" c="0.00012368852127097216" d="-2.6979218878513438e-05" /> - <width sOffset="836.20356326788237" a="2.493253589575561" b="-0.00024509123676486749" c="4.888093489753472e-05" d="-8.1677442351246775e-06" /> - <width sOffset="837.94297706262421" a="2.4929321823167445" b="-0.00014917890114214249" c="4.6599042210766599e-06" d="-6.1544628658101095e-06" /> - <width sOffset="841.2017231933753" a="2.4922825502282606" b="-0.00031487860672750828" c="0.00016084622809161886" d="-8.0929262363122544e-06" /> - <width sOffset="848.038675581451" a="2.4950619376248788" b="0.00074963215973947433" c="-7.7422103166273117e-06" d="-8.1952164102999572e-06" /> - <width sOffset="854.99745317662814" a="2.497141957174895" b="-0.0005486703558215001" c="-9.9208951996636704e-05" d="1.3331072362096921e-05" /> - <width sOffset="858.1343741002778" a="2.4948560841422136" b="-0.00077754746095729096" c="2.4959182616102689e-05" d="1.3130668218985195e-05" /> - <width sOffset="861.99591724421521" a="2.4929818133627712" b="2.6089462026460467e-06" c="0.00010850974952487375" d="4.5251390660285579e-06" /> - <width sOffset="864.75859211597015" a="2.4939126238678639" b="0.00070577590308524858" c="-0.00010090082859519361" d="3.155388998242794e-06" /> - <width sOffset="868.23007261910459" a="2.4952787444635423" b="0.00011930383751090467" c="-6.7374084873335718e-05" d="3.5351012412691532e-06" /> - <width sOffset="878.32577113793138" a="2.4932537893044344" b="-0.00016014732511078229" c="3.9624023635224066e-05" d="3.5115783366664224e-06" /> - <width sOffset="885.7397262725442" a="2.4956755087375111" b="0.0010064540845503623" c="0.0010453970391347601" d="-0.00053496665602726496" /> - <width sOffset="887.79930570587635" a="2.4975091001690597" b="-0.0014951623551199178" c="-0.033847041471185668" d="0.039388482549235049" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15156858239945137" weight="standard" type="solid"> - <type name="solid"> - <line length="888.42146965675818" space="0" width="0.15156900000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.8624581663626669" b="1.6107005194746895e-09" c="0.024846259186445091" d="-0.055472827257672101" /> - <width sOffset="0.35200824716851514" a="3.8631172886008533" b="-0.0031287039031955835" c="-0.078758025444693777" d="0.15472861693685538" /> - <width sOffset="0.60598108285555219" a="3.8597773511243556" b="-0.013192492839549524" c="0.032739376892654867" d="0.13984132456851697" /> - <width sOffset="0.72700220322387277" a="3.8589081526133651" b="0.00087621423124063108" c="0.0031978304178540192" d="-0.0032376157354170282" /> - <width sOffset="1.4738337465583145" a="3.8599975190947502" b="0.00023528352508228213" c="-0.001264541922051161" d="0.00025587606180431995" /> - <width sOffset="5.0751262947558473" a="3.8563956272346216" b="0.0010829191032419689" c="0.0012707176144278638" d="-0.00012137310491137483" /> - <width sOffset="10.095698518826797" a="3.8785027155491854" b="0.0046643338115782643" c="-0.00055394479612640049" d="-0.00012315015743087884" /> - <width sOffset="11.934794777105072" a="3.8844412462050606" b="0.0013772350942619987" c="-7.6507693264224013e-05" d="-4.6141453173900701e-06" /> - <width sOffset="18.667910663572322" a="3.8888374210902823" b="-0.00028057998681475284" c="-0.00018763759009458685" d="1.2332849717600865e-05" /> - <width sOffset="20.191397037653594" a="3.8880180617478803" b="-0.00076643258070828793" c="-0.00013603848140740523" d="7.6904460879957178e-06" /> - <width sOffset="27.333607434779793" a="3.8784064364684019" b="-0.0015327675498701576" c="0.0025378240657865894" d="-0.00053677384824318505" /> - <width sOffset="29.78420645568028" a="3.8819913218703652" b="0.0012349285220476149" c="0.00032739180225293879" d="-8.9811499360766683e-05" /> - <width sOffset="30.287095556480391" a="3.8826837283456443" b="0.0014960727632397667" c="0.00019234727237071777" d="-9.0129842083224864e-05" /> - <width sOffset="33.987986622544355" a="3.8862863872126656" b="-0.00078363038049543724" c="0.00010935768576773299" d="6.2431632162584969e-06" /> - <width sOffset="34.506433035875439" a="3.8859103807362967" b="-0.00066520394317333984" c="2.9633082294947148e-06" d="7.2849788218097133e-08" /> - <width sOffset="40.382794075307189" a="3.8821185127303419" b="-0.00062283014171129331" c="5.0778194579717082e-06" d="-1.0866323873691987e-07" /> - <width sOffset="50.478492594133982" a="3.8762363417746428" b="-0.00055352776471135289" c="6.968724917028077e-06" d="-6.8392459099914977e-07" /> - <width sOffset="54.261015924485903" a="3.8742053021062466" b="-0.00053016475339827071" c="-1.402233058674968e-05" d="5.1670325296571127e-07" /> - <width sOffset="60.574191112960783" a="3.8704294149769938" b="-0.00064543415743013161" c="-4.0425549288960914e-06" d="5.9836311579941783e-07" /> - <width sOffset="69.14660299633762" a="3.8649763568081177" b="-0.00058282867277902506" c="-5.6725949410557668e-05" d="6.3070556158959243e-06" /> - <width sOffset="70.374087447137356" a="3.8641871383905331" b="-0.00069358025037133245" c="3.2012090668131495e-05" d="4.8407772231856522e-06" /> - <width sOffset="70.669889631787584" a="3.8639849021518158" b="-0.00067337106914111035" c="2.1121951259994952e-05" d="2.8768011280007564e-06" /> - <width sOffset="80.765588150614377" a="3.8622997519222064" b="0.000632748348790392" c="0.0001049475531715462" d="2.2463550290876789e-06" /> - <width sOffset="83.303705957729804" a="3.8646185477100525" b="0.0012089001961791692" c="0.00037110899878785671" d="-5.3947634564149128e-05" /> - <width sOffset="87.681971464180108" a="3.8724975887249817" b="0.0013561272322750392" c="-1.095792274785509e-05" d="-9.2380791576079501e-07" /> - <width sOffset="90.861286669441171" a="3.8766686933741834" b="0.0012584361750168306" c="-1.4528962029520557e-05" d="3.4464294258208377e-08" /> - <width sOffset="100.95698518826796" a="3.8879281115851958" b="0.00097561426021914471" c="-1.6905449186815092e-05" d="1.0146558752542788e-07" /> - <width sOffset="101.36848042595275" a="3.8883267167055058" b="0.00096175277954508144" c="0.002675266794756779" d="-0.00044513783228499073" /> - <width sOffset="105.44438849257538" a="3.9065493176895574" b="0.00058477589584964365" c="-0.0046643524117032428" d="0.00056440248510838628" /> - <width sOffset="110.3383700223352" a="3.8638520519918611" b="-0.0045156279558591569" c="0.0035963864486558716" d="0.00056964881411495478" /> - <width sOffset="110.84428893988682" a="3.8625617846391362" b="-0.00043925648325209845" c="-7.471744402721457e-05" d="4.5618368970801518e-06" /> - <width sOffset="121.14838222592157" a="3.8550933574032129" b="-0.00052599746599725245" c="7.4193517692304104e-05" d="3.7694803471585485e-06" /> - <width sOffset="121.26427764052661" a="3.8550333991252455" b="-0.00050864819687295132" c="0.00045226646489305271" d="-1.7696792920764419e-05" /> - <width sOffset="124.79343830928592" a="3.858093392147568" b="0.002022354500923551" c="0.00040038657865271968" d="-2.9798637783864399e-05" /> - <width sOffset="131.24408074474837" a="3.8798008383764229" b="0.0034680214272591828" c="-0.00016823171488003583" d="-3.2616478912849184e-05" /> - <width sOffset="133.80872966688554" a="3.8870383641320014" b="0.0019615136120139645" c="-0.00079919305272479872" d="6.511373836166498e-05" /> - <width sOffset="139.75605336801445" a="3.8841335108955919" b="-0.00063525840882193516" c="0.00011232259433733311" d="-3.1504669653385453e-05" /> - <width sOffset="141.33977926357517" a="3.8832840164272433" b="-0.00051654088211770376" c="-2.6227578730073011e-05" d="-3.1131307282200353e-05" /> - <width sOffset="142.37514350598525" a="3.8826865407608926" b="-0.00067096741011108568" c="7.179455276827039e-05" d="-1.5807888442624133e-05" /> - <width sOffset="149.3148801939976" a="3.8762045549275754" b="-0.0019584179544862692" c="-0.00017446316890894372" d="3.6707846386493978e-06" /> - <width sOffset="151.43547778240196" a="3.8713019944484008" b="-0.0026488284747965339" c="-0.0001576917029959123" d="-4.9011947713337805e-07" /> - <width sOffset="157.69219850309233" a="3.848435883148853" b="-0.0046796538320216302" c="-0.0012594356078406001" d="0.00023514734065849209" /> - <width sOffset="158.99014346971427" a="3.8407544003634211" b="-0.0067605792895964458" c="-0.00015029504326187487" d="0.00022751180280581893" /> - <width sOffset="161.53117630122875" a="3.8263379145415772" b="-0.0031173612833220151" c="0.0015801868875281128" d="0.00022622975607594663" /> - <width sOffset="162.47228357676374" a="3.824992255288981" b="0.00045799295184167964" c="0.0003096805674518056" d="-1.6197380721269582e-05" /> - <width sOffset="171.62687482005555" a="3.8427113833030679" b="0.0020556516275111476" c="-0.00013164660418723341" d="-1.6373210234814326e-05" /> - <width sOffset="172.07720851871449" a="3.8436089191839127" b="0.0019271203404270161" c="-0.0001143094086334617" d="-3.9677692536483204e-06" /> - <width sOffset="179.44346301620857" a="3.8500160152961191" b="-0.00040283782855629179" c="-9.2485591206480059e-05" d="4.6909142393467625e-06" /> - <width sOffset="181.72257333888234" a="3.8486730347867582" b="-0.00075130889501440635" c="-5.9194048986406121e-05" d="5.3544892727265181e-06" /> - <width sOffset="187.20396975304703" a="3.8436581297151777" b="-0.00091760274888979545" c="5.900155097935387e-05" d="-2.7157947899890037e-06" /> - <width sOffset="191.81827185770914" a="3.8404134637543912" b="-0.00054657313462640265" c="2.3373672448227697e-05" d="-2.3940407849937691e-06" /> - <width sOffset="198.8473917795815" a="3.8368949476892" b="-0.00057283852672295539" c="-2.7670197069403708e-05" d="-7.6051484483958632e-06" /> - <width sOffset="201.69713041625721" a="3.8348617935506137" b="-0.00091582865265869362" c="-0.00014555963621240003" d="5.6181846761279017e-06" /> - <width sOffset="201.91397037653593" a="3.8346564184321279" b="-0.0009781624502695999" c="-0.00014309772350418559" d="5.4577866617624841e-06" /> - <width sOffset="212.00966889536275" a="3.8158121991402236" b="-0.0021986813256102212" c="2.2974906555735564e-05" d="5.4117391209395076e-06" /> - <width sOffset="216.31119219352354" a="3.8072103558299588" b="-0.0017006252399939959" c="0.00013967271770213877" d="8.8540076778690779e-06" /> - <width sOffset="216.76413592067979" a="3.8064695460324671" b="-0.0015686480652792826" c="2.9022066049920268e-05" d="6.3523988710122925e-07" /> - <width sOffset="222.10536741418954" a="3.799015793977631" b="-0.0012042531117359963" c="3.9040335988439089e-05" d="7.3072564373534541e-07" /> - <width sOffset="230.46325900325695" a="3.7921045376679494" b="-0.00039853022155986412" c="5.515355224157665e-06" d="1.7120631609605746e-06" /> - <width sOffset="232.20106593301634" a="3.7914376104404814" b="-0.00036384982332492567" c="1.2110067532824018e-05" d="7.0299157941594414e-07" /> - <width sOffset="242.29676445184313" a="3.7897219562040281" b="9.5622661807646784e-05" c="3.4006021542952947e-05" d="8.2780742582607807e-07" /> - <width sOffset="247.9158206678226" a="3.7914798297782797" b="0.00055619721559210344" c="0.00016893871902010646" d="-3.8322962141077923e-06" /> - <width sOffset="252.39246297066992" a="3.7970115045996504" b="0.0018383522479854747" c="0.00013313046682790497" d="-1.0291093281235533e-05" /> - <width sOffset="254.70817730196902" a="3.8018547239840279" b="0.0022893775301277178" c="0.00086679404412106189" d="-9.2108808230032034e-05" /> - <width sOffset="260.76115170419524" a="3.8270431552317428" b="0.0026585563860770799" c="-0.0010744368982065083" d="0.00014523154680204381" /> - <width sOffset="262.48816148949675" a="3.8291780079763047" b="0.00024691693829011121" c="-0.00032823880238254713" d="0.00015351850877779391" /> - <width sOffset="264.52516254476893" a="3.8296165737997701" b="0.00082068816837590434" c="9.9451038983024783e-05" d="-1.4574338012233871e-05" /> - <width sOffset="267.38255445557337" a="3.8324335731392196" b="0.0010320445657113831" c="0.00015776297511503945" d="-1.397916690964093e-05" /> - <width sOffset="272.58386000832354" a="3.8401025418952131" b="0.0015386319346454547" c="-6.25065912296626e-05" d="-1.3758590445250495e-05" /> - <width sOffset="274.37570661527781" a="3.8425796888533768" b="0.0011821027800947108" c="-5.3251994763590127e-05" d="-3.4834560212050428e-06" /> - <width sOffset="282.67955852715033" a="3.8467291903033738" b="-0.00042288480260643303" c="-0.0001400103187406808" d="-3.2079244171709026e-06" /> - <width sOffset="286.25663976157364" a="3.8432781649971952" b="-0.0015476824585873379" c="-6.1180576910367494e-05" d="2.4187987294068934e-06" /> - <width sOffset="292.77525704597713" a="3.8312596942842294" b="-0.002036966509689164" c="-4.7193430857947543e-06" d="-8.1280910565178123e-07" /> - <width sOffset="294.9379661344953" a="3.8268240323649714" b="-0.0020687849239949207" c="-6.8089363944818515e-06" d="1.4194592594385774e-06" /> - <width sOffset="302.87095556480392" a="3.8106925341407312" b="-0.0019088257663249107" c="2.7453450563295796e-05" d="1.2596526313824523e-06" /> - <width sOffset="304.95652484537567" a="3.8068423840687329" b="-0.0017778766677197595" c="0.0006778199618835128" d="-3.0301172079396783e-05" /> - <width sOffset="309.72821614544756" a="3.8105000878321809" b="0.0026210329594271056" c="0.00021764432292715625" d="-2.795610846609044e-05" /> - <width sOffset="312.96665408363071" a="3.8203212061280274" b="0.0031511208155361593" c="-6.008471425436815e-05" d="-2.9442642233028488e-05" /> - <width sOffset="320.15280620869748" a="3.8289366971240826" b="-0.0022737582178941357" c="-0.002305771473580894" d="0.00031076654239031373" /> - <width sOffset="323.06235260245751" a="3.8104560571241901" b="-0.0077989109649245882" c="0.00040702440419075766" d="0.00031132151372249421" /> - <width sOffset="325.10187165648523" a="3.7988842499313353" b="-0.0022536885396201162" c="0.00040411403273071279" d="-1.4137916514888467e-05" /> - <width sOffset="333.1580511212843" a="3.7995637659901114" b="0.0015048034619699999" c="6.5337662357330687e-05" d="-1.6624741650544518e-05" /> - <width sOffset="334.29676935318548" a="3.8013374878163599" b="0.0015889349659979166" c="2.1105987360532508e-05" d="-1.6825396221976509e-05" /> - <width sOffset="341.94759771698034" a="3.8071944704176151" b="-0.001042740979853849" c="-8.4890820992951352e-05" d="8.2655213770141868e-06" /> - <width sOffset="343.2537496401111" a="3.8057060841285484" b="-0.0012221978451675559" c="-5.8375779403027275e-05" d="-2.81271089696083e-07" /> - <width sOffset="348.36118606440226" a="3.7979035268529664" b="-0.0018405106435236557" c="-6.7015231813883649e-05" d="4.4357400738983425e-06" /> - <width sOffset="353.34944815893789" a="3.7876056252282249" b="-0.0021779693746895512" c="4.0908956720015455e-06" d="5.6666155686539414e-06" /> - <width sOffset="358.35541973930378" a="3.7775161571415374" b="-0.0017109996263766935" c="0.00011548361029449381" d="2.1469388162761496e-06" /> - <width sOffset="363.44514667776468" a="3.7720823522105666" b="-0.00036858812869088368" c="0.00014783552923282973" d="2.0116845790719857e-06" /> - <width sOffset="364.22349151778155" a="3.7718859739493604" b="-0.00013479792557691381" c="0.0001715640778642177" d="-4.5230161354551094e-06" /> - <width sOffset="373.54084519659148" a="3.7818654961777227" b="0.0018842775794306473" c="4.4756526260318583e-05" d="-4.5608778788562548e-06" /> - <width sOffset="377.67324559853716" a="3.7900945292890427" b="0.0020205266711754606" c="0.00021471753403832998" d="-1.8367982703884445e-05" /> - <width sOffset="381.66806220649562" a="3.800421758577504" b="0.0028566613658034092" c="-6.1017746045105266e-06" d="-1.0149147581053471e-05" /> - <width sOffset="383.63654371541827" a="3.8059439850412744" b="0.002714657516725864" c="-6.5983754100150619e-05" d="-1.0160286387720221e-05" /> - <width sOffset="392.06135524683918" a="3.8180555413783193" b="-0.00056059750522483541" c="1.108877405141611e-05" d="4.8525162306533897e-06" /> - <width sOffset="393.73224223424506" a="3.8171724410884762" b="-0.00048289864239568227" c="3.9238025919663964e-05" d="3.0729234636584296e-06" /> - <width sOffset="396.34974954371216" a="3.8162323916978664" b="-0.00021432603113297698" c="4.3655780165143244e-06" d="-1.2280248764821148e-07" /> - <width sOffset="403.82794075307186" a="3.8148224017054977" b="-0.00016963535403471128" c="2.1859429741323014e-06" d="1.6386483619117651e-07" /> - <width sOffset="413.92363927189871" a="3.8135012269475324" b="-7.53932612351676e-05" c="4.2145202506434151e-06" d="1.8077971923958927e-07" /> - <width sOffset="424.0193377907255" a="3.8133556560528019" b="6.4980694176484529e-05" c="-1.4012256763823054e-05" d="1.3808824889317487e-05" /> - <width sOffset="425.31593574949653" a="3.8134464533864518" b="9.8288958904392621e-05" c="0.00010533025402384376" d="-1.0077062741462936e-05" /> - <width sOffset="426.89160496895852" a="3.8138234100884301" b="0.00035516425376950551" c="-0.0027313700283021335" d="0.00050947520004673949" /> - <width sOffset="430.52997882071935" a="3.8034967284508925" b="0.00071261149494086914" c="0.00010967115662134172" d="-1.0513309085370217e-05" /> - <width sOffset="434.11503630955229" a="3.8069766188119898" b="0.0010935950553677648" c="4.4891344434564123e-06" d="-1.3826359155052105e-05" /> - <width sOffset="436.06407404866161" a="3.8090227609092873" b="0.00095352547320373237" c="-0.00094682346419363325" d="0.00011726788438202414" /> - <width sOffset="440.52020172209973" a="3.8048471744217984" b="-0.00049901588970384619" c="5.9379673886423567e-05" d="5.3105805850333259e-07" /> - <width sOffset="444.21073482837909" a="3.803840986707149" b="-3.9031497660946008e-05" c="7.1928077393528225e-05" d="2.1212158713686764e-06" /> - <width sOffset="449.44054902617404" a="3.8059075805565303" b="0.0008873613124363263" c="0.00021027695227419051" d="-1.0591083237112141e-06" /> - <width sOffset="452.15411157017218" a="3.8098426866912627" b="0.0020051646519733349" c="8.9843915740471611e-05" d="-3.9926801900676816e-06" /> - <width sOffset="454.30643334720588" a="3.8145348377473374" b="0.0023364225431696871" c="5.6466336543608165e-05" d="-6.5915087185649447e-06" /> - <width sOffset="463.3444566604685" a="3.8353976098727189" b="0.0017418113932383139" c="-6.8470405327654619e-06" d="-7.0597481397268184e-06" /> - <width sOffset="464.40213186603268" a="3.8372238678993416" b="0.0017036347730061158" c="-2.8815091213993879e-05" d="-3.2642849860949539e-06" /> - <width sOffset="466.28889600311697" a="3.8403137215904541" b="0.0015600388337650537" c="-0.0026570597209036842" d="0.00042005492074416028" /> - <width sOffset="469.89795351684353" a="3.8310813815324085" b="-0.0012049046565529395" c="8.3156874583212412e-05" d="-4.8377750785453131e-06" /> - <width sOffset="474.49783038485947" a="3.826827621878734" b="-0.00074696741023247567" c="1.5889838236077443e-05" d="-4.9667782639070732e-06" /> - <width sOffset="481.02343792420163" a="3.8212496654726182" b="-0.001174094921456302" c="-0.0011107815991810554" d="0.00018550670546315241" /> - <width sOffset="484.59352890368626" a="3.8113415870757894" b="-0.0020121229084451384" c="0.00087841490572552615" d="0.00018520564895464718" /> - <width sOffset="485.09798816013966" a="3.8105738669768909" b="-0.00098448092444680061" c="0.00034680128962472572" d="-1.3723580521143679e-05" /> - <width sOffset="493.55151756896407" a="3.8187441801296131" b="0.0019367587783421718" c="-1.1260703549822117e-06" d="-2.2386307961243663e-05" /> - <width sOffset="494.68922742251306" a="3.8209132252904201" b="0.001847267078554871" c="-4.8047908034711159e-05" d="-4.5084059652481724e-06" /> - <width sOffset="501.76273345506257" a="3.8299802159987895" b="0.00049080539689438625" c="-2.145956482212543e-05" d="1.0538518829689199e-05" /> - <width sOffset="504.78492594133985" a="3.8315584217689622" b="0.00064986087185538795" c="8.1781761819567291e-05" d="6.7775436203293325e-06" /> - <width sOffset="507.82189169043806" a="3.8344761552014779" b="0.0013341288181448695" c="-2.1871242693526281e-05" d="2.0593786753318048e-06" /> - <width sOffset="514.8806244601667" a="3.8435279604281076" b="0.0013331923066719671" c="1.9829634148437581e-05" d="3.2994248616591208e-06" /> - <width sOffset="518.43271177872975" a="3.8486616459269918" b="0.0015989552312881102" c="-7.8870017548121304e-05" d="5.6155210977878665e-06" /> - <width sOffset="520.72558002917265" a="3.8519808910643389" b="0.001325844620498058" c="1.0117189862396663e-06" d="-3.1963002748278673e-06" /> - <width sOffset="524.97632297899349" a="3.8573895016119728" b="0.0011611856541454207" c="-4.1365031338225947e-05" d="-3.1138287671257293e-06" /> - <width sOffset="534.35509413510033" a="3.8620726588824086" b="-0.000436410402543781" c="-0.00012951735807463594" d="-2.8050779884231635e-06" /> - <width sOffset="535.07202149782029" a="3.861692180721815" b="-0.00062644478115205285" c="-0.00013329094992767338" d="-3.0294230789577065e-06" /> - <width sOffset="535.9662324298173" a="3.8610232596416827" b="-0.00087209233024101106" c="-9.6261900418143087e-05" d="6.5441952932732991e-06" /> - <width sOffset="543.25520580835712" a="3.8520865749208451" b="-0.0012323309246358969" c="-1.5517366633682429e-05" d="7.596324094046552e-07" /> - <width sOffset="545.16772001664708" a="3.8496782804321876" b="-0.0012833497464211662" c="-1.4310895726733544e-06" d="4.4599098499482287e-06" /> - <width sOffset="552.20512011768733" a="3.8421303601620895" b="-0.00064086093783539597" c="8.0124110991474794e-05" d="-6.4004486171403057e-07" /> - <width sOffset="555.26341853547387" a="3.8409015237571804" b="-0.00016873343617756446" c="7.4008439337653511e-05" d="-1.0470259078481237e-06" /> - <width sOffset="565.35911705430067" a="3.845663839393886" b="0.0010054518779196639" c="4.2536436496668265e-05" d="-9.4684704188395178e-07" /> - <width sOffset="572.30677134994539" a="3.8543850639312298" b="0.0014593961527318976" c="-5.6683376854875254e-05" d="3.7515433618165411e-06" /> - <width sOffset="575.45481557312746" a="3.8585346044501296" b="0.0012140480359560961" c="-2.7604236454469684e-05" d="2.8168351601980511e-06" /> - <width sOffset="585.55051409195426" a="3.8708762388964075" b="0.0015179818944735849" c="4.0690454399268807e-05" d="8.6707123613528961e-06" /> - <width sOffset="587.4585374721546" a="3.8739809486347072" b="0.0017679571405640293" c="-3.8978485061366174e-05" d="-1.7073152972272075e-06" /> - <width sOffset="592.48945137417456" a="3.8816714422232304" b="0.001246125400301923" c="6.8223870529602086e-06" d="-1.2421391516361941e-06" /> - <width sOffset="595.64621261078105" a="3.8856340739529189" b="0.0012520644170373038" c="-5.3915943840972488e-06" d="-1.0593745584911658e-06" /> - <width sOffset="605.74191112960784" a="3.8966349299468819" b="0.00081927628613498709" c="-3.6259313670835494e-05" d="-2.5872749788959587e-06" /> - <width sOffset="607.27759283447995" a="3.8977981964047848" b="0.00068960590308316319" c="-0.0042193877510083282" d="0.00095470304732888224" /> - <width sOffset="610.15201640582495" a="3.8875921291173423" b="9.7150776351469931e-05" c="3.5252985637414616e-05" d="-7.7782151021452474e-07" /> - <width sOffset="614.96880631719705" a="3.8887910782369417" b="0.00038262343172579461" c="3.9593109886981728e-05" d="-1.4045135738555023e-06" /> - <width sOffset="615.83760964843464" a="3.8891524673244877" b="0.00044824022169435442" c="3.8043969268988586e-05" d="-1.0203812481039862e-06" /> - <width sOffset="625.00368349349628" a="3.8956716061248589" b="0.00088848004740658645" c="4.4656112152124458e-06" d="-8.4693804887518806e-07" /> - <width sOffset="625.93330816726143" a="3.8965007378732919" b="0.00089458695539463521" c="9.616566137469013e-06" d="-1.9360024884559425e-06" /> - <width sOffset="629.71205764350782" a="3.8999140122608384" b="0.00088433190962316946" c="1.7427269180852292e-08" d="5.6713518288548536e-08" /> - <width sOffset="636.02900668608822" a="3.9055152830938402" b="0.00089134134633063889" c="3.1428264005487315e-06" d="3.1911257785344777e-07" /> - <width sOffset="642.26829303254328" a="3.9112764714963779" b="0.00096782724182308238" c="5.1077701465045987e-05" d="-2.7366726456221433e-06" /> - <width sOffset="644.73820570631642" a="3.9139372830252581" b="0.0011700572094536855" c="-7.2316593512508105e-05" d="6.6576835138767312e-07" /> - <width sOffset="646.12470520491502" a="3.915422321250011" b="0.00097336294916944884" c="-6.9677762271037744e-05" d="6.7412059155890101e-07" /> - <width sOffset="656.22040372374181" a="3.9188409847079733" b="-0.00022740297433846324" c="-5.2089210494329109e-05" d="7.3585677443066133e-07" /> - <width sOffset="659.98921379749891" a="3.9172834664407459" b="-0.00058867548387303266" c="-9.8240764378772945e-05" d="-1.7045079146215185e-06" /> - <width sOffset="661.52895449547202" a="3.9161379273281174" b="-0.00090332923943924255" c="-8.2156487077314494e-05" d="4.0297845411305571e-06" /> - <width sOffset="666.3161022425686" a="3.9103728860215998" b="-0.001412870623207044" c="-2.5801324975789493e-05" d="3.0083031688362846e-06" /> - <width sOffset="672.27440054047406" a="3.9016749390205288" b="-0.0013999384167917715" c="7.6958724756357546e-06" d="5.1600794887512336e-07" /> - <width sOffset="676.4118007613954" a="3.8960511179986383" b="-0.0013097574108702403" c="1.7155483729883861e-05" d="1.1630436545765972e-06" /> - <width sOffset="686.50749928022219" a="3.8857734973020399" b="-0.00060774108364777769" c="4.9685491449286942e-05" d="1.4007625142383766e-06" /> - <width sOffset="687.13786904147162" a="3.8854104899005648" b="-0.00054343077454030637" c="0.00015571838618293183" d="-9.1613925276106072e-06" /> - <width sOffset="696.60319779904898" a="3.8864488682324581" b="-5.7954101251257197e-05" c="-8.904403047156754e-05" d="-1.2094494593222331e-05" /> - <width sOffset="699.37646586314975" a="3.8853453404538447" b="-0.00083089687867244212" c="-0.00018172940235762085" d="1.1230571945021332e-05" /> - <width sOffset="706.69889631787578" a="3.8739264705949985" b="-0.001685816691955274" c="6.9692873347040787e-05" d="1.0770119695134557e-05" /> - <width sOffset="710.12565530399308" a="3.8694013463488739" b="-0.0008287652166274063" c="0.00012725277035797333" d="-2.9357944394704986e-06" /> - <width sOffset="716.79459483670257" a="3.8686631419408783" b="0.00047681063435281749" c="6.8168073318416471e-05" d="-2.8471574161304119e-06" /> - <width sOffset="726.89029335552937" a="3.8774950988765662" b="0.00098264569375554204" c="-2.1373931501734969e-05" d="-2.3633301785934036e-06" /> - <width sOffset="730.51528516858241" a="3.8806637400051782" b="0.00073451855428863797" c="1.5244248917843252e-05" d="-5.066494339696811e-07" /> - <width sOffset="730.82173327929434" a="3.880890248841915" b="0.00074371895783039571" c="4.5093574213905134e-05" d="-2.3392806045239658e-06" /> - <width sOffset="736.98599187435616" a="3.886640264508519" b="0.0010329913197718939" c="-3.1318822335640992e-06" d="-2.1112536445483412e-06" /> - <width sOffset="744.04735944324136" a="3.8930350579991915" b="0.00067294081280187238" c="-8.061346794604603e-05" d="2.4931981809891823e-06" /> - <width sOffset="747.08169039318295" a="3.8944044156223816" b="0.00025259078721837904" c="-6.6191938234177948e-05" d="2.3875996979225755e-07" /> - <width sOffset="752.23300167056243" a="3.8939817569493682" b="-0.00041035255925992147" c="0.00013196503150388585" d="-8.5693926826327472e-06" /> - <width sOffset="755.6101214696838" a="3.8937709428395468" b="0.00018777070184194987" c="1.8530915965302257e-05" d="-8.0812049980828156e-06" /> - <width sOffset="757.17738891200975" a="3.8940796373504831" b="0.00018630625258109993" c="-2.6448889640389116e-05" d="-1.112636623069245e-05" /> - <width sOffset="766.38301802524552" a="3.8848734482844307" b="-0.0031293163183326268" c="-0.00051928917396043908" d="0.00010930689340629279" /> - <width sOffset="767.27308743083654" a="3.8817538224584345" b="-0.0037939366467900867" c="-0.00022948601794048378" d="0.00010926621118778633" /> - <width sOffset="769.47252300497871" a="3.8734617321132205" b="-0.0032176846584764419" c="0.00029027291115351467" d="-7.3818335281954663e-06" /> - <width sOffset="774.07398288249158" a="3.8640825568337744" b="-0.001015222623047336" c="0.00016726451135351861" d="-4.2665016210512518e-06" /> - <width sOffset="777.36878594966333" a="3.8624007741094966" b="-5.1963306723123385e-05" c="0.00013123178379402373" d="-5.0153989839028385e-06" /> - <width sOffset="784.52118302939084" a="3.8669074053697949" b="0.0010555653003592215" c="0.00012196624748911326" d="-2.5994208489257389e-05" /> - <width sOffset="787.46448446849013" a="3.8704080512427161" b="0.0010979668576615461" c="-9.0427829498957213e-05" d="-1.4522437467943353e-05" /> - <width sOffset="789.04017516510692" a="3.8718567794690459" b="0.00070482530407824789" c="0.00014693391384611746" d="-2.9597801153159866e-05" /> - <width sOffset="791.29783595587526" a="3.8738563699746722" b="0.00091569633564438958" c="3.1822390115669404e-05" d="-1.3050540606092341e-05" /> - <width sOffset="797.56018298731692" a="3.8776336690422362" b="-0.00022114673853664132" c="-0.0002155603847741411" d="-1.1485484291023322e-05" /> - <width sOffset="799.877776691284" a="3.8758203387011605" b="-0.001405383417492842" c="-0.00042640511870469021" d="-8.6968947956725014e-06" /> - <width sOffset="801.74658902758085" a="3.8716479757340112" b="-0.0030902463694944694" c="-0.00098209856063570609" d="0.00022407106910536412" /> - <width sOffset="804.97141051846882" a="3.8589837220631908" b="-0.0024337679231269515" c="0.00026673196309869946" d="-7.6457199475578067e-06" /> - <width sOffset="807.65588150614371" a="3.8542246067869765" b="-0.0011669934830654831" c="0.00020678343957246663" d="-5.7724422238867651e-06" /> - <width sOffset="816.46037115205093" a="3.8560396963668557" b="0.0011318293192380466" c="-0.00034573125072293081" d="2.9950176193484041e-05" /> - <width sOffset="817.75158002497062" a="3.8569891888826557" b="0.00038880743210333068" c="-0.00024499105804476334" d="1.8645298959810651e-05" /> - <width sOffset="820.11507175653742" a="3.8567857571677715" b="-0.00045679811664216773" c="-1.2566480375785036e-07" d="3.5909321510399065e-05" /> - <width sOffset="825.03977019603735" a="3.8588220185134512" b="0.002154653288295537" c="0.00087923364760085249" d="-0.00010913258779323417" /> - <width sOffset="827.84727854379742" a="3.8693864331773105" b="0.0045109819657236658" c="-5.4337942770868932e-05" d="-0.00010838696202650307" /> - <width sOffset="830.5749617343165" a="3.8790869981220082" b="0.0017952684799175337" c="-0.00049682045409356237" d="3.5241452563183343e-05" /> - <width sOffset="836.20356326788237" a="3.8797362800431712" b="-0.00044807047283362302" c="-0.00014088693063987612" d="1.6429977919169303e-05" /> - <width sOffset="837.94297706262421" a="3.8786171042385549" b="-0.00078906214494808445" c="-5.5866129245000034e-05" d="1.4518660358785726e-05" /> - <width sOffset="840.73443582134382" a="3.8762949532707198" b="-0.0007615593913782347" c="-8.6119039268712881e-05" d="1.2285739336004867e-05" /> - <width sOffset="841.2017231933753" a="3.8759215350309644" b="-0.00083399602091168042" c="-0.00028524994671316165" d="1.4224202745996559e-05" /> - <width sOffset="848.038675581451" a="3.8614316990645037" b="-0.0027397917311909972" c="1.1476570513551166e-05" d="1.4229594653078313e-05" /> - <width sOffset="854.99745317662814" a="3.8477168766917424" b="-0.00051287925386159748" c="0.0002289190005438056" d="-7.2966941193551663e-06" /> - <width sOffset="858.1343741002778" a="3.8481354049558538" b="0.00070791796759502208" c="0.00016115265571419119" d="-6.6398499609916193e-06" /> - <width sOffset="864.75859211597015" a="3.8579662076665624" b="0.0019688635041238871" c="0.00027611625660205576" d="-5.2700998932045484e-06" /> - <width sOffset="868.23007261910459" a="3.8679081279112744" b="0.0036953951888827326" c="0.00021852875419235923" d="-5.9027894540543597e-06" /> - <width sOffset="874.2457061716251" a="3.896761361407032" b="0.0056837452751185551" c="0.00036706123186406507" d="-0.00018908393227791672" /> - <width sOffset="876.02453548123333" a="3.9069689578056277" b="0.0051947065712972468" c="-0.0014661256854035837" d="6.8280839086211554e-05" /> - <width sOffset="878.32577113793138" a="3.9119911738574897" b="-0.00046831327941162463" c="-0.00099451482318199344" d="6.8560660029929726e-05" /> - <width sOffset="885.7397262725442" a="3.8817937919204422" b="-0.0039092238217052627" c="-0.00039726681357757701" d="0.00060703889439372646" /> - <width sOffset="887.79930570587635" a="3.8773606545803503" b="0.0021793066275625586" c="0.03494048719628861" d="-0.039316410310850487" /> - <roadMark sOffset="0" color="standard" width="0.15840576626352634" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15840599999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.6406462781125404" b="-1.3503242137270652e-09" c="-0.036698317806943902" d="0.068183653222913143" /> - <width sOffset="0.35200824716851514" a="3.639072981255115" b="-0.00049035265590371339" c="0.080328913528534926" d="-0.14201779097183795" /> - <width sOffset="0.44755684145289315" a="3.6396356101594636" b="0.010970608181832963" c="0.038806269025513297" d="-0.14284746218509159" /> - <width sOffset="0.72700220322387277" a="3.6426144762382253" b="-0.00080567882561494489" c="-0.00063510542555770351" d="0.00023147811886596603" /> - <width sOffset="1.9636941740897371" a="3.6410845839632309" b="-0.0013144655990834863" c="-0.00011966321605478017" d="6.1956343148889638e-06" /> - <width sOffset="10.095698518826797" a="3.6258138733739815" b="-0.0020315266857305419" c="3.286840048086124e-05" d="6.0793473462424623e-06" /> - <width sOffset="18.667910663572322" a="3.614643902136657" b="-0.00012783410265258376" c="0.00020713593735650204" d="-1.0867647689566389e-05" /> - <width sOffset="20.191397037653594" a="3.6148914850477487" b="0.00042763167287811145" c="0.00016935286211828291" d="-6.2219837690825177e-06" /> - <width sOffset="21.023120339277177" a="3.6153607285733429" b="0.00069642868950428875" c="0.00013175308302020594" d="-6.3115289700517066e-06" /> - <width sOffset="30.287095556480391" a="3.6281016845647578" b="0.0015125536138842072" c="-4.4259900264837271e-05" d="-6.0368320826654931e-06" /> - <width sOffset="34.506433035875439" a="3.6332422451466138" b="0.00081664100049977048" c="-4.5695815833607929e-06" d="1.3348134066034661e-07" /> - <width sOffset="40.382794075307189" a="3.6379104135231008" b="0.00077676395855847194" c="-1.7483698681931265e-06" d="-1.0202005422600214e-07" /> - <width sOffset="50.478492594133982" a="3.6454692118184227" b="0.0007102673190656284" c="-3.4696770155385979e-06" d="8.3914430685782111e-08" /> - <width sOffset="54.505845414207286" a="3.6482789136899774" b="0.00068640326017216412" c="2.9014623679355269e-05" d="-6.4935713658525681e-07" /> - <width sOffset="60.574191112960783" a="3.6533675951719848" b="0.00096680741570903217" c="1.7373013042671413e-05" d="-6.1985700509148155e-07" /> - <width sOffset="70.374087447137356" a="3.663927290553969" b="0.0011287254474124655" c="-6.6363192082386782e-05" d="8.4642129217258466e-07" /> - <width sOffset="70.669889631787584" a="3.6642553852061166" b="0.0010896868758954047" c="-5.9963856241236125e-05" d="-1.2892984277977036e-06" /> - <width sOffset="72.399620824423835" a="3.6659541680155785" b="0.00087067154410612252" c="-1.641663094400421e-05" d="4.0229574039626949e-07" /> - <width sOffset="80.765588150614377" a="3.6723247432702957" b="0.00068045887164476775" c="-8.6999643151830328e-06" d="2.2996203621967858e-07" /> - <width sOffset="90.861286669441171" a="3.6785443508381546" b="0.0005751097885042444" c="-4.3313698996168898e-07" d="2.006054842327524e-07" /> - <width sOffset="100.95698518826796" a="3.6845127592709535" b="0.00062770316326018582" c="7.4486857614027691e-06" d="2.3956114829234494e-07" /> - <width sOffset="106.98687069543175" a="3.6886210903927155" b="0.00074366359243423132" c="1.1218038067709636e-05" d="2.7424914408037308e-06" /> - <width sOffset="110.3383700223352" a="3.6913427290635341" b="0.00091127358459022062" c="6.4579564765090887e-05" d="-2.5038375620973946e-06" /> - <width sOffset="111.05268370709477" a="3.6920257030091665" b="0.00099970101374717633" c="5.918053287462172e-05" d="-2.7324250511214791e-06" /> - <width sOffset="121.14838222592157" a="3.7053386232363774" b="0.0013591467204314344" c="-2.9216354212446036e-05" d="-2.0664289391703763e-06" /> - <width sOffset="124.79343830928592" a="3.7098045313671886" b="0.0010637898068968205" c="-0.00018729769271654337" d="1.0035415924303304e-05" /> - <width sOffset="125.64276766941683" a="3.7105790785754889" b="0.00076735240166996878" c="-0.00017723286238334937" d="7.8905326506748292e-06" /> - <width sOffset="131.24408074474837" a="3.7107033090419304" b="-0.00047543161961179406" c="-4.3695520152405869e-05" d="7.6787596324477189e-06" /> - <width sOffset="141.33977926357517" a="3.7093512404743043" b="0.00099022440035324627" c="0.00018488490555641719" d="1.2032854053414039e-05" /> - <width sOffset="142.37514350598525" a="3.7105880312981965" b="0.0014117677453920311" c="2.7541207377711221e-05" d="-3.2905647796981454e-06" /> - <width sOffset="142.78242004456391" a="3.7111673572544048" b="0.0014325640614178804" c="4.2734102768372047e-05" d="-1.5950018469116856e-06" /> - <width sOffset="151.43547778240196" a="3.7257297465213206" b="0.0018138461355062577" c="1.1660972364230655e-06" d="-1.9752127858979429e-06" /> - <width sOffset="158.99014346971427" a="3.7386476532833552" b="0.0014932712832360644" c="-0.0002371157624532643" d="5.6603250666265324e-06" /> - <width sOffset="161.53117630122875" a="3.741003953545663" b="0.00039787698193386204" c="-0.00019042641497426176" d="6.8881958101706096e-06" /> - <width sOffset="171.62687482005555" a="3.732699795017508" b="-0.0013408989674724202" c="1.5868611168040216e-05" d="6.991218909718837e-06" /> - <width sOffset="178.62198278533771" a="3.7264895014891684" b="-9.2620443039534818e-05" c="0.00016758356724176136" d="6.9634116045367769e-06" /> - <width sOffset="179.44346301620857" a="3.7265303662384106" b="0.00019681008431960052" c="7.5237870404778727e-05" d="-1.6952718848256208e-06" /> - <width sOffset="181.72257333888234" a="3.7273496600566713" b="0.00051334342317406944" c="6.151257246159106e-05" d="-2.537054557527608e-06" /> - <width sOffset="191.81827185770914" a="3.736191182789979" b="0.00097961458288656818" c="-1.4630849187935062e-05" d="-2.5432421988456782e-06" /> - <width sOffset="198.8473917795815" a="3.7414708583644503" b="0.00039695704428250591" c="-6.7701242214558924e-05" d="2.6678654644533075e-06" /> - <width sOffset="201.91397037653593" a="3.74212843773988" b="5.699973802661927e-05" c="-4.2148350395714841e-05" d="2.8298454407391155e-06" /> - <width sOffset="212.00966889536275" a="3.7413198671890204" b="7.1245762884629979e-05" c="4.4483079791981576e-05" d="2.7406901629622518e-06" /> - <width sOffset="216.31119219352354" a="3.7426675432069709" b="0.00060606958561925316" c="3.2988861472642194e-05" d="-7.0155679690298028e-07" /> - <width sOffset="216.33562358028416" a="3.7426823700080005" b="0.00060768025662035461" c="3.577164009081454e-05" d="-8.3494330253656382e-07" /> - <width sOffset="222.10536741418954" a="3.7472189940393257" b="0.00093708100917939941" c="2.1346161035409151e-05" d="-7.7805673459384991e-07" /> - <width sOffset="232.20106593301634" a="3.7580545400639345" b="0.0011301838920601665" c="-2.5576030771653463e-06" d="-7.9495412563875511e-07" /> - <width sOffset="242.29676445184313" a="3.7683858609890244" b="0.00083546967816933095" c="-2.406855959999098e-05" d="-1.141731846779341e-06" /> - <width sOffset="247.9158206678226" a="3.7721179161043832" b="0.00045683808516131593" c="-0.0001642931339840015" d="3.5183717931642428e-06" /> - <width sOffset="252.39246297066992" a="3.7711861737861394" b="-0.0008025971457386559" c="-0.00010826957558533451" d="4.3174032751497339e-06" /> - <width sOffset="252.81767291351628" a="3.7708256579015105" b="-0.00089232994102300613" c="-8.9811281788975927e-05" d="4.078518233253442e-06" /> - <width sOffset="262.48816148949675" a="3.7574858704813812" b="-0.0014851190118222743" c="2.2150316198298213e-05" d="5.3689996945570043e-06" /> - <width sOffset="267.38255445557337" a="3.751377218610719" b="-0.00088244981624802793" c="-8.2261423538519622e-05" d="4.773828591956556e-06" /> - <width sOffset="272.58386000832354" a="3.745233605720613" b="-0.0013507359609807063" c="-1.528780768558851e-05" d="3.7291091903718387e-06" /> - <width sOffset="282.67955852715033" a="3.7338759995765645" b="-0.00051917072926457722" c="9.9182382198542712e-05" d="3.7237362170019054e-06" /> - <width sOffset="283.8956256053886" a="3.7333980225057095" b="-0.00026142567264054171" c="4.4816410221586801e-05" d="2.5288738554456771e-05" /> - <width sOffset="286.25663976157364" a="3.7333634472079869" b="0.00037310639577781758" c="0.00011068285884626859" d="1.9662015407903061e-05" /> - <width sOffset="287.48061663313365" a="3.7340219904626455" b="0.0007324210535121483" c="0.00017855122250051676" d="-5.8264626281211685e-06" /> - <width sOffset="292.77525704597713" a="3.7420404643548251" b="0.0021331466149795771" c="8.8345211999437694e-05" d="-5.7305217551910574e-06" /> - <width sOffset="302.87095556480392" a="3.7666838679285837" b="0.0021647417497290497" c="-8.5557240087975265e-05" d="-5.2930496583986191e-06" /> - <width sOffset="304.95652484537567" a="3.7707784317965727" b="0.0017388027123517813" c="-0.00076115953821601404" d="2.626777505243113e-05" /> - <width sOffset="306.29212295167133" a="3.7718055822249412" b="-0.00015383263445855797" c="-0.00061910600908891779" d="3.2822638832129156e-05" /> - <width sOffset="312.96665408363071" a="3.7529577260350253" b="-0.0040316340630898485" c="3.4911265293601979e-05" d="3.2971807129291273e-05" /> - <width sOffset="320.15280620869748" a="3.7380244241572971" b="0.0015781910118612015" c="0.0023566813720760577" d="-0.00030723737749385543" /> - <width sOffset="321.27991778443135" a="3.7423571824980484" b="0.0057197515978820654" c="0.0014381988790610882" d="-0.00031989437525308174" /> - <width sOffset="323.06235260245751" a="3.7553099924621605" b="0.0077977589200331106" c="-0.00027466143771769915" d="-0.00032028881628851032" /> - <width sOffset="325.10187165648523" a="3.7673539565047323" b="0.0026805478822944056" c="-0.00032661801959752866" d="5.1706139488695736e-06" /> - <width sOffset="333.1580511212843" a="3.770454279120306" b="-0.0015752888951599978" c="-0.00020062422888578077" d="5.141925844367193e-06" /> - <width sOffset="337.37786755409508" a="3.7606207362056283" b="-0.0029937992130300685" c="-0.00065696138414332171" d="0.00016598509663330973" /> - <width sOffset="340.95036652842617" a="3.7491088335068157" b="-0.0013325086159104123" c="0.00053030108374719576" d="8.2143244680126874e-06" /> - <width sOffset="341.94759771698034" a="3.7483155291792598" b="-0.00025033635700926111" c="0.00027468797781322874" d="-1.6876593132742641e-05" /> - <width sOffset="343.2537496401111" a="3.7484195718225637" b="0.00038085603729910602" c="0.00022326844849957506" d="-9.8936150665735919e-06" /> - <width sOffset="353.34944815893789" a="3.764840415076157" b="0.0018637933251907119" c="-7.3350706027548946e-05" d="-9.8160582821492608e-06" /> - <width sOffset="356.30788011805754" a="3.7694581633955608" b="0.0011720473397551826" c="-6.4900796866021769e-05" d="-2.3525529081257886e-06" /> - <width sOffset="358.35541973930378" a="3.7715656908096502" b="0.00087668477468213406" c="-0.00010564359787906477" d="1.1671238441799493e-06" /> - <width sOffset="363.44514667776468" a="3.773444932136039" b="-0.00010800520625166418" c="-8.7508441579222626e-05" d="1.2745906450773079e-06" /> - <width sOffset="373.54084519659148" a="3.7647469448742257" b="-0.0014851920956969493" c="-4.9259420904560212e-05" d="1.2653097985854505e-06" /> - <width sOffset="377.67324559853716" a="3.757857636732072" b="-0.0018274893240983684" c="-0.00026007624926148757" d="1.5072414623624485e-05" /> - <width sOffset="383.63654371541827" a="3.7409074834198073" b="-0.0033213467467706937" c="9.6193744119164373e-06" d="1.5066105670740757e-05" /> - <width sOffset="390.81827219787817" a="3.7231313042371017" b="-0.00085197555560415365" c="0.00034934722432235069" d="1.3294914934504426e-05" /> - <width sOffset="392.06135524683918" a="3.7226375965217895" b="7.8191789852300343e-05" c="6.505925258483025e-05" d="-1.7178876831445428e-06" /> - <width sOffset="393.73224223424506" a="3.722941868953388" b="0.00028121678410484717" c="5.8157238587554802e-05" d="-1.4231901723390428e-06" /> - <width sOffset="403.82794075307186" a="3.7302440749375418" b="0.0010203246942393697" c="1.4659627064722987e-05" d="-1.2839977733264425e-06" /> - <width sOffset="413.0173081946345" a="3.7398617668577407" b="0.00096447054388251502" c="1.1775382188779019e-06" d="3.5167414973114443e-07" /> - <width sOffset="413.92363927189871" a="3.7407371255760204" b="0.00096747165629092571" c="-1.7330107103629641e-06" d="3.7380772640448491e-07" /> - <width sOffset="424.0193377907255" a="3.7507124364799687" b="0.0010467787078585363" c="7.5797306067686772e-08" d="2.1799836941651818e-06" /> - <width sOffset="426.89160496895852" a="3.7537713467570604" b="0.0011011681931010434" c="0.0028079262137202313" d="-0.00051737227909401254" /> - <width sOffset="430.52997882071935" a="3.7700297886205734" b="0.00098718198545357113" c="-0.0001193125489362149" d="2.6162300381164555e-06" /> - <width sOffset="434.11503630955229" a="3.7721559610767734" b="0.00023257365782468732" c="-9.2012834821429351e-05" d="1.9429779299866864e-06" /> - <width sOffset="444.21073482837909" a="3.7671250141064596" b="-0.0010311908544387328" c="-3.2453603104091423e-05" d="2.1916778233987325e-06" /> - <width sOffset="448.39727931079926" a="3.7623998898039508" b="-0.0011876861316473268" c="-3.4894021029127612e-05" d="3.0446556372410674e-06" /> - <width sOffset="449.44054902617404" a="3.7611262909983942" b="-0.0012505523659777124" c="-0.00013043301020535569" d="6.224979834119275e-06" /> - <width sOffset="454.30643334720588" a="3.7526701795495319" b="-0.0020777328725125497" c="-4.253907894867848e-05" d="5.9963144488595059e-06" /> - <width sOffset="463.3444566604685" a="3.7348436915029071" b="-0.001377228841941411" c="4.6361590718925475e-06" d="6.4645538680523329e-06" /> - <width sOffset="464.40213186603268" a="3.7333998659073542" b="-0.0013457265008536192" c="2.0692010334917022e-05" d="3.501896967468236e-06" /> - <width sOffset="467.73993673985137" a="3.7292688444587236" b="-0.0010905514285086174" c="4.6828452224747551e-05" d="2.1833295025261557e-06" /> - <width sOffset="474.49783038485947" a="3.7247114630521225" b="-0.0001584957752787529" c="9.0167025634142371e-05" d="2.2629729902007835e-06" /> - <width sOffset="481.02343792420163" a="3.7281456571987173" b="0.0013073897652178493" c="0.0011639065468143958" d="-0.00018821051073686701" /> - <width sOffset="484.59352890368626" a="3.7390836863360333" b="0.0024213550921790318" c="-0.00085216258674560474" d="-0.00018817536110283883" /> - <width sOffset="485.09798816013966" a="3.7400641468307567" b="0.0014179323694130485" c="-0.00032504326699125599" d="1.0753868372948586e-05" /> - <width sOffset="494.68922742251306" a="3.7332508478593658" b="-0.0018493977162031708" c="-1.1840394379647329e-05" d="1.0621024191029893e-05" /> - <width sOffset="501.76273345506257" a="3.7233356788055607" b="-0.00042265140902995662" c="9.1284188091909712e-05" d="-4.4259006039751238e-06" /> - <width sOffset="504.78492594133985" a="3.7227699315126239" b="7.8315187524388187e-06" c="5.8324186958320765e-05" d="-3.1307457813641271e-06" /> - <width sOffset="514.8806244601667" a="3.7255720887657935" b="0.00022819212002203777" c="-3.7733220701654454e-05" d="-2.7692615815666762e-06" /> - <width sOffset="520.41454923231368" a="3.7252100181962837" b="-0.00044385377615026029" c="-5.2935860104448371e-05" d="-3.5583342621329878e-06" /> - <width sOffset="520.72558002917265" a="3.7250667379118845" b="-0.00047781584308424405" c="-9.7510901146869128e-05" d="5.2534871017370003e-06" /> - <width sOffset="524.97632297899349" a="3.7216772578470581" b="-0.0010220305247492585" c="-3.3909745140529774e-05" d="4.7430551996377059e-06" /> - <width sOffset="534.35509413510033" a="3.7130219957337367" b="-0.00040647741135145564" c="0.00010008300720584502" d="4.4343044230320099e-06" /> - <width sOffset="535.07202149782029" a="3.7127836560999419" b="-0.00025613542274006106" c="0.00010913307504772437" d="4.5887173042697324e-06" /> - <width sOffset="535.9662324298173" a="3.7126451622889838" b="-4.9951848580860646e-05" c="7.6287039365666187e-05" d="-4.984901067987621e-06" /> - <width sOffset="537.36652791036443" a="3.7127111134294752" b="0.00013437335202305819" c="7.7293552164437403e-05" d="-4.4775114166273598e-06" /> - <width sOffset="545.16772001664708" a="3.7163375766251923" b="0.00052285184426230358" c="-2.5818014388571517e-05" d="-4.4866434631558102e-06" /> - <width sOffset="552.20512011768733" a="3.7171747396106936" b="-0.0005071346048606311" c="-0.00010793762035022814" d="6.1331124859219044e-07" /> - <width sOffset="554.9343185466812" a="3.7149991603789649" b="-0.0010825961818562947" c="-8.0178669860832456e-05" d="9.7107331052822231e-07" /> - <width sOffset="555.26341853547387" a="3.7146342287049903" b="-0.0011350542590156608" c="-7.6390233670178725e-05" d="1.351073870073825e-06" /> - <width sOffset="565.35911705430067" a="3.6967793664816577" b="-0.0022643627694951809" c="-3.5225378663971485e-05" d="1.4208786765271795e-06" /> - <width sOffset="575.45481557312746" a="3.671790824922891" b="-0.002541151175755374" c="5.7472710496734e-06" d="1.5037735549577411e-06" /> - <width sOffset="585.55051409195426" a="3.6482692693074261" b="-0.0019652978279031934" c="4.9392692276776178e-05" d="8.5339503918177937e-07" /> - <width sOffset="587.48570037356149" a="3.6446572095714602" b="-0.0017645419520186485" c="5.4033033880859194e-05" d="1.6048332651111088e-06" /> - <width sOffset="592.48945137417456" a="3.6373817903768355" b="-0.0011032631027835325" c="6.5546511430762647e-06" d="1.1396571194758123e-06" /> - <width sOffset="595.64621261078105" a="3.6340002210527165" b="-0.0010278096320994687" c="1.5958228690199389e-05" d="7.1087600204276016e-07" /> - <width sOffset="605.74191112960784" a="3.6259817583367306" b="-0.00048822658210999543" c="3.4053459383570498e-05" d="2.4915176071245611e-06" /> - <width sOffset="607.27759283447995" a="3.6253213299487599" b="-0.00036600865828955028" c="0.0042167407381891323" d="-0.0009547988047006506" /> - <width sOffset="610.15201640582495" a="3.6364334081631604" b="0.00020885566483963222" c="-3.8725740196217314e-05" d="6.8206413844913015e-07" /> - <width sOffset="615.83760964843464" a="3.6364943875339786" b="-0.00016535679301188562" c="-2.9006999409236714e-05" d="3.3214700107716448e-07" /> - <width sOffset="625.00368349349628" a="3.632797424639763" b="-0.0006133994964070429" c="-1.4353859152051982e-05" d="1.5870380324425499e-07" /> - <width sOffset="625.93330816726143" a="3.632214916198774" b="-0.00063967544322127113" c="-1.4350565582844061e-05" d="1.6648264763198257e-07" /> - <width sOffset="636.02900668608822" a="3.6244655994098265" b="-0.00087852811371549823" c="-8.5325068451672418e-06" d="2.1157819945340779e-07" /> - <width sOffset="642.83065295889548" a="3.6181620030494557" b="-0.00096523395965942725" c="-2.574733988036348e-05" d="6.2488559253832785e-07" /> - <width sOffset="644.73820570631642" a="3.6162314174391459" b="-0.0010566413561363501" c="8.0944934429883042e-05" d="-2.7775554044772238e-06" /> - <width sOffset="646.12470520491502" a="3.6149145884803988" b="-0.00084819969217272658" c="6.9271522503575245e-05" d="-2.7684899195797642e-06" /> - <width sOffset="656.22040372374181" a="3.6105630553062991" b="-0.00029603034006281045" c="-1.9398351169493136e-05" d="-1.8867717352783691e-06" /> - <width sOffset="659.98921379749891" a="3.6090708378698935" b="-0.00052264646007349046" c="1.3740463019277566e-05" d="5.5359295383891958e-07" /> - <width sOffset="666.3161022425686" a="3.6064543403440767" b="-0.00028229753033135233" c="2.19775990220034e-05" d="1.5117163752734631e-07" /> - <width sOffset="676.4118007613954" a="3.6059999286106978" b="0.00020768455620557061" c="2.7152862615928364e-05" d="2.0886661745695106e-07" /> - <width sOffset="681.80362331265576" a="3.607941847913378" b="0.00051870774469717456" c="7.0709091122609644e-06" d="-5.8514983776726654e-08" /> - <width sOffset="686.50749928022219" a="3.6105321486748037" b="0.00058134491714800654" c="8.3781540378774361e-06" d="-2.1022838652118977e-07" /> - <width sOffset="696.60319779904898" a="3.617038837471291" b="0.00068623014715569813" c="5.4696722487789582e-06" d="-1.2827588530712097e-07" /> - <width sOffset="706.69889631787578" a="3.6243923022747144" b="0.00075744763253994367" c="2.987195500159654e-06" d="-7.4455623290121276e-08" /> - <width sOffset="716.79459483670257" a="3.6322671157948974" b="0.00079499703271367073" c="4.0313496454049404e-07" d="-1.3933424093036192e-08" /> - <width sOffset="726.89029335552937" a="3.6403199176504897" b="0.00079887647631626531" c="-2.9983893354856793e-06" d="3.7508871438171286e-07" /> - <width sOffset="730.82173327929434" a="3.6434371010995026" b="0.00079269286216064323" c="-2.8889583681447461e-05" d="2.2077198673636645e-06" /> - <width sOffset="733.10433089997707" a="3.6451222341429617" b="0.00069531460210067665" c="1.5955985117428304e-05" d="-1.3147453328650739e-07" /> - <width sOffset="736.98599187435616" a="3.6480539337492832" b="0.00081324315605789583" c="1.166927170237697e-05" d="-1.0781669650003198e-07" /> - <width sOffset="747.08169039318295" a="3.6573426183728657" b="0.0010158950090785159" c="6.0234085677528785e-06" d="-1.3625142995135412e-07" /> - <width sOffset="750.53410921712452" a="3.6609161008571385" b="0.0010526136449369615" c="2.5192743172259408e-05" d="2.4824504522364778e-06" /> - <width sOffset="752.23300167056243" a="3.6627892628833605" b="0.0011597079778242838" c="-0.00015662219677376415" d="1.1290603104549593e-05" /> - <width sOffset="757.17738891200975" a="3.6660591254370463" b="0.0004389693382402624" c="9.2114469381365826e-06" d="1.1215686180989502e-05" /> - <width sOffset="766.38301802524552" a="3.6796302867298913" b="0.0034599367847937762" c="0.00050451847026932177" d="-0.00010921757345823024" /> - <width sOffset="767.27308743083654" a="3.6830325490012026" b="0.0040984754944337204" c="0.00021314959662094456" d="-0.00010920598150144205" /> - <width sOffset="769.47252300497871" a="3.6919160660405321" b="0.0034512357800780802" c="-0.00030621191852881087" d="7.4420632145391128e-06" /> - <width sOffset="777.36878594966333" a="3.7037393442994668" b="7.4356760854802154e-06" c="-0.00012685204036466313" d="7.2201168250497328e-06" /> - <width sOffset="787.46448446849013" a="3.6983146490207526" b="-0.00034619354932187213" c="0.00010598710331179955" d="3.7230149562591876e-06" /> - <width sOffset="788.64154600275504" a="3.6980600717191368" b="-8.1212444793110107e-05" c="9.593092754063906e-05" d="-3.6924092776887628e-07" /> - <width sOffset="789.04017516510692" a="3.6980429186051031" b="-4.9067371375049497e-06" c="-0.00021052099524967142" d="1.4706122743774928e-05" /> - <width sOffset="797.56018298731692" a="3.6918146056956997" b="-0.00038961191185144742" c="0.00016361358774538725" d="1.5298229745828117e-05" /> - <width sOffset="801.74658902758085" a="3.6941734684410328" b="0.0017846440307715148" c="0.00086268224106988956" d="-0.00021746973415564649" /> - <width sOffset="804.97141051846882" a="3.7016069060767327" b="0.00056392418356228683" c="-0.00032228390222247168" d="1.4247054897435208e-05" /> - <width sOffset="807.65588150614371" a="3.7010738564539931" b="-0.00085839012100639989" c="-0.00021700890767773964" d="1.2161994289910189e-05" /> - <width sOffset="817.75158002497062" a="3.6828040936423925" b="-0.001521337613124763" c="0.00014525758526280405" d="1.3566584136033055e-05" /> - <width sOffset="820.11507175653742" a="3.680198962514055" b="-0.00060735480094221582" c="0.00012878975008731" d="-3.6974384145240031e-06" /> - <width sOffset="823.56284552783927" a="3.679484346370244" b="0.0001488650954344509" c="0.0001304914426533033" d="-5.8419737800610782e-06" /> - <width sOffset="827.84727854379742" a="3.6820580461144421" b="0.00094531655453330586" c="5.377502005299251e-05" d="-5.7866966591190334e-06" /> - <width sOffset="837.94297706262421" a="3.6911281702439052" b="0.00026171465215567378" c="-0.00012003348468317139" d="-6.4815604120993882e-06" /> - <width sOffset="840.73443582134382" a="3.6907824208395894" b="-0.00055994005399690036" c="-2.2474875516848583e-05" d="-4.2486394289488376e-06" /> - <width sOffset="841.89815766346283" a="3.6900936740791508" b="-0.0006295102021227272" c="-4.448951079790886e-05" d="1.0606274981902788e-06" /> - <width sOffset="848.038675581451" a="3.6847962071350784" b="-0.0010559115435331652" c="-2.2531720222080534e-05" d="1.191100951505171e-06" /> - <width sOffset="855.33065062923106" a="3.6763602816747856" b="-0.0011945101511180289" c="-4.2643029137196628e-05" d="-1.9144622767483274e-06" /> - <width sOffset="858.1343741002778" a="3.6726338002595931" b="-0.0014787766647056978" c="-5.8553950842881969e-05" d="-1.9384144510447711e-06" /> - <width sOffset="868.23007261910459" a="3.6497419152757744" b="-0.0032537705303207899" c="-0.00011807371044175316" d="-1.9196381377766343e-06" /> - <width sOffset="874.2457061716251" a="3.6254776992759545" b="-0.0048827495926264623" c="-0.00040777676176350909" d="0.00018126150468515044" /> - <width sOffset="875.16416700058369" a="3.6207895356000095" b="-0.0051730830953294286" c="-0.0015861886774578909" d="0.0017341260661361078" /> - <width sOffset="876.02453548123333" a="3.616269046982385" b="-0.0040515197601174481" c="0.0037139163440182352" d="0.0014767612947793765" /> - <width sOffset="876.24395396853765" a="3.6155744733811663" b="-0.0022084222668131803" c="0.0014865651198706681" d="-7.6273239243977134e-05" /> - <width sOffset="878.32577113793138" a="3.6167314831340711" b="0.0029893951853215304" c="0.0010094584713033772" d="-7.6435946682515849e-05" /> - <roadMark sOffset="0" color="standard" width="0.15373417684455012" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15373400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.9304170969279228" b="-4.2418794427380636e-10" c="-0.0077473246050788818" d="0.00040790430408382252" /> - <width sOffset="0.44755684145289315" a="3.9289018205511597" b="-0.0066896182672023284" c="-0.0063857998884103585" d="0.0012375755175459745" /> - <width sOffset="1.9636941740897371" a="3.9083936567481183" b="-0.017518775388659501" c="-0.00041343737248867706" d="0.0014628580020968514" /> - <width sOffset="3.5619779547451951" a="3.8853101576103342" b="-0.0076296951178771418" c="0.002005410031087322" d="-0.00048827533483785328" /> - <width sOffset="4.8230781500196018" a="3.877898403919926" b="-0.0049012699106058873" c="0.00056884721012875807" d="6.4448545024954032e-05" /> - <width sOffset="7.9982495723952249" a="3.8701340596521776" b="0.00066036021117756244" c="3.5322092942384391e-05" d="-1.8570706769751309e-06" /> - <width sOffset="10.095698518826797" a="3.8716573879545115" b="0.00078402339545275421" c="2.4730478540584223e-05" d="-1.9281118155840148e-06" /> - <width sOffset="20.191397037653594" a="3.8801092610506389" b="0.00069380874109021488" c="-3.2620093061627763e-05" d="-1.9164274845433282e-06" /> - <width sOffset="21.023120339277177" a="3.8806626499248691" b="0.00063556981347145328" c="-1.5327032796877729e-05" d="-1.8268822840048367e-06" /> - <width sOffset="30.202885498910394" a="3.8837922464358283" b="-0.00010767094320523781" c="-2.7897271656944983e-05" d="1.6468670981969252e-07" /> - <width sOffset="30.287095556480391" a="3.8837829817289817" b="-0.0001123659013568343" c="-2.7703369905091796e-05" d="2.0833309137277161e-07" /> - <width sOffset="40.382794075307189" a="3.8800393269952318" b="-0.00060803376101137101" c="-2.0257828507840339e-05" d="6.6318828376630207e-08" /> - <width sOffset="50.478492594133982" a="3.8719043012864152" b="-0.0009967893521175223" c="-1.4796762902138363e-05" d="-1.6434498009317605e-07" /> - <width sOffset="53.769437747758133" a="3.8684578109396295" b="-0.0010995197486181685" c="-0.0001171601371594959" d="9.6556146460222078e-06" /> - <width sOffset="54.505845414207286" a="3.8675884366446551" b="-0.001256366384155711" c="-0.00012729917285063624" d="1.0388886212326979e-05" /> - <width sOffset="60.574191112960783" a="3.8575981621308033" b="-0.0016536505808661865" c="6.2023770226451492e-05" d="1.0457933054956498e-05" /> - <width sOffset="63.763814668412408" a="3.8532940131509483" b="-0.00093879805267613377" c="-1.4471898311340855e-05" d="6.5887803032799793e-07" /> - <width sOffset="70.669889631787584" a="3.846337402132991" b="-0.0010444127497377591" c="-8.7475300991679706e-06" d="2.911522433007276e-06" /> - <width sOffset="72.399620824423835" a="3.8445197444873735" b="-0.001048540937768374" c="-4.3876721006653088e-05" d="1.2199282648143339e-06" /> - <width sOffset="80.765588150614377" a="3.833391082989305" b="-0.001526537190473563" c="-1.7232359566779488e-05" d="8.6893592030256877e-07" /> - <width sOffset="90.861286669441171" a="3.8171173699194494" b="-0.0016087886017758495" c="9.6996616279589661e-06" d="8.5531308007898583e-07" /> - <width sOffset="91.581560122481676" a="3.8159639539305861" b="-0.0015934845907355269" c="0.00082921293984093334" d="-4.6878357338871527e-05" /> - <width sOffset="100.95698518826796" a="3.8352791806184596" b="0.001593337710309675" c="-0.0004876863942592235" d="-4.6984314223886903e-05" /> - <width sOffset="101.20680382311535" a="3.8356460573457554" b="0.0013408746302429994" c="-6.8107271420547554e-05" d="1.1246088406955306e-06" /> - <width sOffset="106.98687069543175" a="3.8413381648846716" b="0.00066626221775112067" c="-4.8042101924949626e-05" d="-1.3783214518592497e-06" /> - <width sOffset="111.05268370709477" a="3.8431602476402986" b="0.00020724739618669687" c="-6.6246115814809392e-05" d="-7.4060845299965781e-07" /> - <width sOffset="115.11006396871133" a="3.8428610952461746" b="-0.00036690040169872162" c="-2.4409787950359036e-05" d="-3.150731368632851e-07" /> - <width sOffset="121.14838222592157" a="3.839686253526593" b="-0.00069615245473153521" c="-3.5274190204813699e-05" d="-4.2303485491887831e-07" /> - <width sOffset="125.64276766941683" a="3.8358065501038383" b="-0.001038859347015745" c="-2.5472745463690454e-05" d="1.7218484183645336e-06" /> - <width sOffset="131.24408074474837" a="3.8294909705935702" b="-0.0011621535165701276" c="5.717898136179609e-06" d="1.2053667472729586e-06" /> - <width sOffset="135.37186228458145" a="3.8248760549257215" b="-0.0010533358329727933" c="0.0041621154943856861" d="-0.00078720650664566068" /> - <width sOffset="138.9433624142905" a="3.8383418908199665" b="-0.0014472488432632354" c="-8.1552459369845732e-05" d="2.6732071681468576e-06" /> - <width sOffset="141.33977926357517" a="3.8344421278709886" b="-0.0017920610263629322" c="-6.2421789169959352e-05" d="4.7510369642340256e-06" /> - <width sOffset="142.78242004456391" a="3.8317411792617753" b="-0.0019425017122641267" c="-6.1073075033982069e-05" d="3.0554740249758506e-06" /> - <width sOffset="151.43547778240196" a="3.8123393737459366" b="-0.0023130998065315073" c="1.7490453204691674e-05" d="2.7627446253907031e-06" /> - <width sOffset="159.48721113063596" a="3.7962909690321309" b="-0.0014941132762126259" c="7.5094131672506987e-05" d="-1.3519532354175561e-06" /> - <width sOffset="161.53117630122875" a="3.7935392366322627" b="-0.0012040782417008628" c="6.8738210057524114e-05" d="-6.4390155613359512e-07" /> - <width sOffset="171.62687482005555" a="3.7877266739757065" b="-1.304313407361128e-05" c="4.6996493262178182e-05" d="-5.4472130651371028e-07" /> - <width sOffset="178.62198278533771" a="3.789748598463663" b="0.00056448580489020005" c="3.0563377393136624e-05" d="-5.1691400502825676e-07" /> - <width sOffset="181.72257333888234" a="3.7917772556034479" b="0.00073910653410723891" c="2.440642576128895e-05" d="-8.0940811922695808e-07" /> - <width sOffset="191.81827185770914" a="3.8008937626583528" b="0.00098441414348682818" c="4.753986433617487e-07" d="-7.9600306584280941e-07" /> - <width sOffset="201.91397037653593" a="3.8100614898291116" b="0.00075061973774906876" c="-2.3133139152288847e-05" d="-8.0955315232270361e-07" /> - <width sOffset="209.04438345775799" a="3.8139440778885918" b="0.00029724223723315898" c="-8.3468179482593563e-05" d="3.7761136278989043e-05" /> - <width sOffset="211.21199117436876" a="3.8145807856527112" b="0.00046765442343879972" c="0.00020208732810653957" d="-1.1595780341309482e-05" /> - <width sOffset="212.00966889536275" a="3.8150765237757058" b="0.0007679207136841032" c="0.00017472505259805089" d="-1.1632546281534631e-05" /> - <width sOffset="216.33562358028416" a="3.8207265807409749" b="0.0016265556704251622" c="2.092524884409506e-05" d="-1.1499181414905272e-05" /> - <width sOffset="221.71264039222655" a="3.8282899097401906" b="0.0008541828136812645" c="-4.1378658789653108e-05" d="2.5117141968067948e-08" /> - <width sOffset="222.10536741418954" a="3.8286189899168983" b="0.00082169340059334091" c="-4.1336087153360143e-05" d="4.8981770777584168e-08" /> - <width sOffset="232.20106593301634" a="3.8327518569542822" b="2.0371788604749141e-06" c="-4.0184755967468929e-05" d="3.3025190458682589e-08" /> - <width sOffset="242.29676445184313" a="3.8287106500798274" b="-0.00079925109153910394" c="-3.7121220210123613e-05" d="-2.1626986701920849e-07" /> - <width sOffset="247.0634467354603" a="3.8240340100520882" b="-0.0011678829886141153" c="-0.00052529675739885844" d="3.634007920815192e-05" /> - <width sOffset="252.39246297066992" a="3.8083922958713492" b="-0.0036705110393093622" c="6.0879520118144874e-05" d="3.6196884877707956e-05" /> - <width sOffset="252.81767291351628" a="3.8068453481085349" b="-0.0035991043148342226" c="9.41024607701243e-05" d="3.6435769922330215e-05" /> - <width sOffset="256.80376577579847" a="3.7963018234059485" b="-0.0011121251376876922" c="0.00035735807327226413" d="-9.1789834438705194e-06" /> - <width sOffset="262.48816148949675" a="3.7998411839415454" b="0.0020608205576999449" c="0.00019972058399740067" d="-8.7401679654956798e-06" /> - <width sOffset="272.58386000832354" a="3.8320092504648455" b="0.0034209823756295981" c="-6.8268973311973882e-05" d="-8.957128198247244e-06" /> - <width sOffset="282.4282820657869" a="3.8505251789235788" b="-0.00052733177102928526" c="-0.00013536212124767787" d="1.281103078390153e-05" /> - <width sOffset="282.67955852715033" a="3.850384329370987" b="-0.00059293174061164622" c="-0.00012493461292708603" d="1.2389649281189527e-05" /> - <width sOffset="283.8956256053886" a="3.8495008097472869" b="-0.00084182332860048364" c="-1.1783768080070566e-05" d="-9.1753530562587476e-06" /> - <width sOffset="287.48061663313365" a="3.8459086804893405" b="-0.0012800820693031722" c="-0.00010613525056109287" d="1.6313124979730054e-05" /> - <width sOffset="290.99085953756048" a="3.8408130875195874" b="-0.0014221816427235758" c="0.0031560231880703982" d="-0.00058032487082545158" /> - <width sOffset="292.77525704597713" a="3.8450271575521948" b="0.0042976253707742969" c="5.7718296434245388e-05" d="-0.00058031046049352862" /> - <width sOffset="294.41702633896182" a="3.8496704307467269" b="-0.00020537198319478772" c="-0.00012822755250869165" d="5.54812257492e-06" /> - <width sOffset="302.87095556480392" a="3.842122083781724" b="-0.0011838703159725336" c="1.2458783325735617e-05" d="5.7128963222118886e-06" /> - <width sOffset="306.29212295167133" a="3.8384464472708149" b="-0.00089802531343174518" c="3.4289149794623045e-05" d="-8.4196745750623787e-07" /> - <width sOffset="312.96665408363071" a="3.8337297534729178" b="-0.00055282466669441901" c="1.3859218654487781e-05" d="-6.2264425852499611e-07" /> - <width sOffset="318.12210969856085" a="3.8311627326750424" b="-0.00045957076050498404" c="-7.4301011919926179e-05" d="8.5058024514975137e-07" /> - <width sOffset="321.27991778443135" a="3.8289973689724244" b="-0.00090338210741764638" c="-0.00018663302539216985" d="1.35075780042483e-05" /> - <width sOffset="323.06235260245751" a="3.8268706947695583" b="-0.0014399607929230398" c="-0.0001166812653752125" d="1.2962128208532382e-05" /> - <width sOffset="329.46300400217962" a="3.8162727519301347" b="-0.0013405224398233028" c="0.00023835732685833751" d="3.2158482265197267e-06" /> - <width sOffset="333.1580511212843" a="3.8147360789765803" b="0.00055268219612092493" c="0.00027526942567000648" d="3.0966339319345489e-06" /> - <width sOffset="337.37786755409508" a="3.8222026641185907" b="0.003041278982448754" c="0.00083590221070779596" d="-0.00015774653685700346" /> - <width sOffset="340.95036652842617" a="3.8365436014565928" b="0.0029739602337658737" c="-0.00026306351813216967" d="2.4235310320719805e-08" /> - <width sOffset="343.2537496401111" a="3.8419983645091982" b="0.0017624738505145903" c="-0.00025761546678169516" d="5.765749315961379e-07" /> - <width sOffset="351.19754594626926" a="3.8400315852729703" b="-0.002221263356292412" c="-0.0002650289575023812" d="8.3038468848259695e-05" /> - <width sOffset="353.34944815893789" a="3.8348518384661414" b="-0.0022083216452049538" c="0.00027301888508360806" d="8.2791303713833136e-05" /> - <width sOffset="353.55815589376141" a="3.8344035897278266" b="-0.0020835404400894888" c="0.00037875017967595268" d="-3.1749951663754377e-06" /> - <width sOffset="356.30788011805754" a="3.8314721417797575" b="-7.2641608450234882e-05" c="0.00025698876554739033" d="-1.0638500540334592e-05" /> - <width sOffset="363.44514667776468" a="3.8401769261587608" b="0.0019699590663787856" c="2.9538517715808077e-05" d="-1.0573776286334747e-05" /> - <width sOffset="373.54084519659148" a="3.8521954380496686" b="-0.00066675407463897803" c="-0.00029082165982887321" d="-1.058052622386973e-05" /> - <width sOffset="374.28028880544446" a="3.8515391186398205" b="-0.0011142020704122723" c="-2.087134892922075e-05" d="7.4240670048062559e-09" /> - <width sOffset="383.63654371541827" a="3.8392933730964343" b="-0.0015028076947327803" c="-2.0609662876324979e-05" d="1.5892536086103711e-09" /> - <width sOffset="390.81827219787817" a="3.8274382157540421" b="-0.0017985877926503611" c="-3.5701231375847561e-05" d="1.7727799890105586e-06" /> - <width sOffset="393.73224223424506" a="3.8219379019467485" b="-0.0019614932276357843" c="-1.8426960225522087e-05" d="1.5989766359916152e-06" /> - <width sOffset="398.32046898042501" a="3.8127046511460669" b="-0.0020296032437526388" c="9.5804070753938928e-05" d="-1.6143015260723453e-06" /> - <width sOffset="403.82794075307186" a="3.8041629456459938" b="-0.0011212229827477365" c="6.91073505876131e-05" d="-1.3590722178526496e-06" /> - <width sOffset="413.0173081946345" a="3.7986407213250293" b="-0.00019541572341893348" c="9.7250155028814417e-06" d="-2.9947443262374152e-06" /> - <width sOffset="413.1840832112635" a="3.7986083874635597" b="-0.00019242183078519251" c="8.7369135253690812e-05" d="-3.163605738819683e-06" /> - <width sOffset="424.0193377907255" a="3.8027564371861891" b="0.00058666385178555709" c="-2.2760092573278049e-05" d="-1.6267211221978103e-06" /> - <width sOffset="426.24930963381428" a="3.8039334613013063" b="0.00046088716905743612" c="-2.6258268017178873e-05" d="6.05118052146528e-07" /> - <width sOffset="434.11503630955229" a="3.806228564370377" b="0.00016012178808118597" c="-1.1826963311021368e-05" d="3.5023197391727982e-07" /> - <width sOffset="444.21073482837909" a="3.8070000480769606" b="2.840909165291092e-05" c="-3.0362300489913898e-07" d="5.6994093587035058e-07" /> - <width sOffset="448.39727931079926" a="3.8071554836027763" b="5.5835158085127084e-05" c="3.6821714260581967e-05" d="-2.830368797177893e-07" /> - <width sOffset="454.30643334720588" a="3.8087127656836333" b="0.00046135618956609248" c="2.9562644933107959e-05" d="-2.5719958474324105e-07" /> - <width sOffset="460.39371925578007" a="3.8125586028508769" b="0.00079267710319719188" c="4.7766168876975029e-05" d="-2.294990988695367e-06" /> - <width sOffset="464.40213186603268" a="3.8163556484318244" b="0.0010649867110633694" c="1.8678574961663546e-05" d="-2.4304844720524541e-06" /> - <width sOffset="467.73993673985137" a="3.8200280824786077" b="0.0011084439330962302" c="3.270630619065916e-06" d="-1.111917007117085e-06" /> - <width sOffset="474.49783038485947" a="3.8273250278122637" b="0.0010003082454237311" c="-1.9818162712312796e-05" d="-1.0987454616302565e-06" /> - <width sOffset="484.59352890368626" a="3.8342733163428431" b="0.00026418912864541416" c="-5.2191079841849402e-05" d="-1.2097404225557594e-06" /> - <width sOffset="494.68922742251306" a="3.8303762070316258" b="-0.0011595232721861111" c="-8.2916791146218569e-05" d="-2.2780931365515886e-06" /> - <width sOffset="497.15262951565694" a="3.826982612150613" b="-0.0016095108645034692" c="-1.8708733525949472e-05" d="3.7633354874359666e-07" /> - <width sOffset="504.78492594133985" a="3.8137758443893701" b="-0.0018293255767821738" c="-6.9418100859537365e-06" d="4.4496796336030263e-07" /> - <width sOffset="514.8806244601667" a="3.7950578593105115" b="-0.0018334328395529266" c="5.2061084850787243e-06" d="8.3810943907054525e-07" /> - <width sOffset="520.41454923231368" a="3.7852132501225069" b="-0.001698812810649309" c="-1.165180421616744e-05" d="1.6271823696575226e-06" /> - <width sOffset="520.57273577343335" a="3.7849442356779708" b="-0.0017023769770020518" c="-5.0269623972850239e-05" d="3.6898530677229038e-06" /> - <width sOffset="524.97632297899349" a="3.7767879485869482" b="-0.0019304540769936374" c="-4.8666086993844153e-06" d="3.223596824181757e-06" /> - <width sOffset="533.32988199194131" a="3.7622013087285082" b="-0.0013369144832781057" c="0.00046027280833626453" d="-1.9669249228430202e-05" /> - <width sOffset="535.07202149782029" a="3.7611651674309452" b="8.7712934460397723e-05" c="0.00035853014608921584" d="-1.989960005549389e-05" /> - <width sOffset="537.36652791036443" a="3.7630136127147478" b="0.0014187125371503031" c="0.00019960335017789197" d="-2.0406989706822336e-05" /> - <width sOffset="544.78531029606586" a="3.7761920386135355" b="0.0010108401449005465" c="-2.1236339388640846e-05" d="5.0987301644438602e-07" /> - <width sOffset="545.16772001664708" a="3.7765755166815937" b="0.00099482186687301901" c="-2.0102481261130087e-05" d="5.3443125180930175e-07" /> - <width sOffset="554.9343185466812" a="3.7848719149628636" b="0.000755088633585224" c="-2.7181161050403885e-05" d="1.7666920131873066e-07" /> - <width sOffset="555.26341853547387" a="3.7851174770162253" b="0.00073725539742166126" c="-2.6219547957147048e-05" d="1.6706580470922855e-07" /> - <width sOffset="565.35911705430067" a="3.7900601151189868" b="0.00025892970295638432" c="-2.0928356810982799e-05" d="3.7353705029376277e-07" /> - <width sOffset="566.61194674322394" a="3.7903523956916887" b="0.00020824926079975964" c="-3.6348435997879276e-06" d="3.641390302146002e-08" /> - <width sOffset="575.45481557312746" a="3.7919348646437046" b="0.00015250667109799137" c="-4.8870786210417956e-06" d="1.1357965361363781e-07" /> - <width sOffset="585.55051409195426" a="3.7930932914546531" b="8.8558907225348964e-05" c="-7.1396049565632913e-06" d="9.7234968629586058e-07" /> - <width sOffset="587.48570037356149" a="3.7932449787839504" b="7.1850167132283949e-05" c="-1.1804781214070058e-06" d="2.2091146037050967e-07" /> - <width sOffset="591.50916738225851" a="3.7935293442771094" b="7.3079471795115585e-05" c="-0.00015608653718453703" d="4.387670887392036e-06" /> - <width sOffset="595.64621261078105" a="3.7914709078765489" b="-0.00099310780903969615" c="-0.00010278697295466669" d="4.1562146009048071e-06" /> - <width sOffset="605.74191112960784" a="3.7752451042007111" b="-0.0017976772047058331" c="2.2223107457049139e-05" d="4.2570744766498458e-06" /> - <width sOffset="615.83760964843464" a="3.7637418122859589" b="-4.7278570816384818e-05" c="0.00015068969339580678" d="3.9644675623719345e-06" /> - <width sOffset="617.71648911534476" a="3.764211240016988" b="0.00056096291882953462" c="0.00010704991162828348" d="-5.3491103929706618e-07" /> - <width sOffset="625.93330816726143" a="3.775751413627157" b="0.0022118370793114818" c="9.7740693930651611e-05" d="-1.3109596199947457e-06" /> - <width sOffset="628.3140927588795" a="3.7815536378518568" b="0.0026549440660939153" c="0.00034436036814455595" d="-2.4843039162121614e-05" /> - <width sOffset="636.02900668608822" a="3.811124899359398" b="0.0035323998772955646" c="-0.00022949829871107252" d="-2.4755375367288531e-05" /> - <width sOffset="638.29907063237033" a="3.8176714344008746" b="0.0021077407678726798" c="-1.4071414025002587e-05" d="-2.2050514532637795e-10" /> - <width sOffset="642.83065295889548" a="3.8269338548525118" b="0.0019801956412855959" c="7.4576615139226393e-06" d="-4.1352789815633583e-07" /> - <width sOffset="646.12470520491502" a="3.8335228634552179" b="0.002015866193617437" c="3.2430854148690653e-06" d="-4.0473046632570243e-07" /> - <width sOffset="656.22040372374181" a="3.8537885245609775" b="0.0019575944327738836" c="-1.1646847096841787e-05" d="-1.9180380779171196e-07" /> - <width sOffset="663.26701964046515" a="3.8669375070127576" b="0.0017648807797359515" c="-5.1963633009687863e-05" d="1.3348139415982771e-06" /> - <width sOffset="666.3161022425686" a="3.8718735113597349" b="0.001485226875112007" c="-4.2137513816593148e-05" d="6.3936492008705919e-07" /> - <width sOffset="676.4118007613954" a="3.8832310239103021" b="0.00082990982234608856" c="-2.235312418975556e-05" d="7.423892498528933e-07" /> - <width sOffset="681.80362331265576" a="3.8871722752649989" b="0.00065360932911945422" c="1.3115837825995922e-05" d="1.0097708510973881e-06" /> - <width sOffset="686.47380038601818" a="3.8906136646559322" b="0.00084218688405820899" c="-1.2354010604631331e-06" d="-6.3745810751743017e-08" /> - <width sOffset="686.50749928022219" a="3.8906420440172576" b="0.00084210340359772162" c="-6.7962519519956207e-07" d="-1.4974685123999139e-07" /> - <width sOffset="696.60319779904898" a="3.898920309285081" b="0.00078259281872317316" c="-1.4986325859603692e-06" d="-6.2559750481982849e-08" /> - <width sOffset="706.69889631787578" a="3.9066040120681498" b="0.00073320447668908967" c="-1.348409636484418e-06" d="-1.0097950169235895e-07" /> - <width sOffset="711.20676212833916" a="3.9098725485307808" b="0.00071489160810879774" c="1.7248466013395341e-05" d="-8.4695970822984436e-07" /> - <width sOffset="716.79459483670257" a="3.9142580349101697" b="0.00082831860263047957" c="2.6960716684884954e-06" d="-7.7026270126546454e-07" /> - <width sOffset="726.89029335552937" a="3.9221026929562237" b="0.00064723330309960703" c="-2.2477996430433026e-05" d="-7.1683326868737628e-07" /> - <width sOffset="733.10433089997707" a="3.9250846492595688" b="0.00028483511137326434" c="-6.5568843414500532e-05" d="1.6223611319827074e-06" /> - <width sOffset="736.98599187435616" a="3.9252972232972185" b="-0.0001508631635353233" c="-5.0084459682133399e-05" d="1.527756792681918e-06" /> - <width sOffset="746.18638228044301" a="3.9208595121766132" b="-0.00068449539895183015" c="2.7669798973432647e-05" d="1.7189592223935856e-06" /> - <width sOffset="747.08169039318295" a="3.9202700909815658" b="-0.00063081577540036941" c="3.1028886874071606e-05" d="1.8260425059524891e-06" /> - <width sOffset="750.53410921712452" a="3.9185372318511296" b="-0.00035127147498868142" c="2.9361151828065036e-05" d="-7.9265937616135667e-07" /> - <width sOffset="757.17738891200975" a="3.9172670387774096" b="-6.6110488832006641e-05" c="1.2318171939740281e-05" d="-7.9406797011608291e-07" /> - <width sOffset="767.27308743083654" a="3.9170380296639635" b="-6.0191063883995553e-05" c="-1.2517201323144447e-05" d="-8.2866982074015815e-07" /> - <width sOffset="777.36878594966333" a="3.9143018775462828" b="-0.00056631270767650791" c="-3.378880789381418e-05" d="-1.1452355126710112e-06" /> - <width sOffset="785.42262729455354" a="3.906950916079047" b="-0.0013334270108361513" c="-6.8761472101120513e-05" d="-1.3160750468580174e-06" /> - <width sOffset="787.46448446849013" a="3.9039303659895355" b="-0.001630690085166584" c="-5.8049856582100063e-05" d="-1.5952710094282814e-06" /> - <width sOffset="788.64154600275504" a="3.9019279153085811" b="-0.0017739772104989017" c="-4.0480224154294998e-05" d="2.4969848882333968e-06" /> - <width sOffset="797.56018298731692" a="3.8846579536181336" b="-0.0019001879014377008" c="2.5001363937241783e-05" d="3.2434356897202058e-06" /> - <width sOffset="799.56373807199896" a="3.8809772698858334" b="-0.0017609449622408412" c="-1.9836535488110232e-05" d="2.9969922053902e-06" /> - <width sOffset="807.65588150614371" a="3.8670165935322798" b="-0.0014932309511309001" c="5.1877632560364154e-05" d="2.9896631690426249e-06" /> - <width sOffset="808.24138701396305" a="3.8661606831931046" b="-0.001429406952557367" c="9.6103982380645271e-06" d="1.9195765672762272e-06" /> - <width sOffset="817.75158002497062" a="3.855087048053182" b="-0.00072577223722715281" c="5.9080083255870416e-05" d="3.1877550140705683e-06" /> - <width sOffset="819.5283742059413" a="3.8540018970295828" b="-0.00048563473652864708" c="0.00017037595643941156" d="-7.9813385705238645e-06" /> - <width sOffset="823.56284552783927" a="3.8542916941302314" b="0.00049938332548800802" c="3.3829025594064619e-05" d="-5.8368032049780706e-06" /> - <width sOffset="827.84727854379742" a="3.8565932016683178" b="0.00046783222139544847" c="-4.4125250097461921e-05" d="-5.8611160257870127e-06" /> - <width sOffset="834.21292227768402" a="3.8562713919894072" b="-0.00080644125721256394" c="-0.00021162992647165944" d="1.9871768563140823e-05" /> - <width sOffset="837.94297706262421" a="3.851350142617366" b="-0.0015557775457352993" c="1.1424756575845712e-05" d="1.939513377358583e-05" /> - <width sOffset="841.89815766346283" a="3.8465755130845025" b="-0.00055518296967793385" c="0.00024874045890519337" d="1.4085866846540325e-05" /> - <width sOffset="844.02437757865971" a="3.8466549773461036" b="0.00069360949595424597" c="0.00029237138668261229" d="-4.0234917089042146e-05" /> - <width sOffset="847.39139653009374" a="3.8507691163180469" b="0.0012940418653932294" c="0.00010709516398359815" d="-8.1118397467920249e-06" /> - <width sOffset="848.038675581451" a="3.8516493923333854" b="0.0014224869210491585" c="9.2997397439872778e-05" d="-8.0494831145211719e-06" /> - <width sOffset="855.33065062923106" a="3.863846002746826" b="0.0014947132398756653" c="-3.692474844753494e-05" d="-4.9439198862503911e-06" /> - <width sOffset="858.1343741002778" a="3.867637542391805" b="0.0011710692072355042" c="-7.7968301141756777e-05" d="-4.7574850286968702e-06" /> - <width sOffset="867.65184817331328" a="3.8676191158569289" b="-0.0016058853520810835" c="-0.00065087867156746128" d="3.7796751877329333e-05" /> - <width sOffset="868.23007261910459" a="3.8664802437091494" b="-0.0023206819743365028" c="-0.0005856477910679786" d="3.7798256339702042e-05" /> - <width sOffset="875.16416700058369" a="3.834831539623798" b="-0.0049903468050781635" c="0.001878498930933921" d="-0.0015150663051140562" /> - <width sOffset="876.24395396853765" a="3.829725826992127" b="-0.0062330182265983129" c="0.00017008978775238993" d="3.7968228905475141e-05" /> - <width sOffset="878.32577113793138" a="3.8178295544605154" b="-0.0050311678790015274" c="0.00040645609824506391" d="3.7899240334059665e-05" /> - <width sOffset="881.71539654322885" a="3.8069217793894188" b="-0.00096936321404357453" c="0.00014329471987644396" d="0.00016738840421175779" /> - <width sOffset="882.40651859724039" a="3.8063755330682696" b="-0.00053143587186133337" c="4.4044718517987025e-05" d="1.4575743338578553e-08" /> - <roadMark sOffset="0" color="standard" width="0.30573146230992826" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30573099999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-4" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.2149050568966837" b="7.9431058796957462e-10" c="0.008435083877455932" d="-0.0014498999136154443" /> - <width sOffset="3.5619779547451951" a="3.2564010578322895" b="0.0049035377914109848" c="-0.0024631114583150296" d="0.00050123342331939832" /> - <width sOffset="4.8230781500196018" a="3.2596729266814974" b="0.0010825224750992306" c="-0.00097752429361317198" d="-5.149045654340359e-05" /> - <width sOffset="7.9982495723952249" a="3.2516067314854933" b="-0.0066824280304777165" c="-0.00032056671972120548" d="1.4815159158587961e-05" /> - <width sOffset="10.095698518826797" a="3.2363171169992757" b="-0.0078316440503778204" c="-0.00022496540876195911" d="1.3853194562393094e-05" /> - <width sOffset="12.089163215852894" a="3.2199207633750171" b="-0.0085634115593324449" c="-0.023268755335461071" d="0.074391977798743722" /> - <width sOffset="12.39813940592224" a="3.2172478174303816" b="-0.001636616809168469" c="-5.0173641227544934e-06" d="1.6084609249735848e-06" /> - <width sOffset="20.191397037653594" a="3.2049498327218227" b="-0.0014217510625851727" c="3.4982249161537822e-05" d="1.727739665029409e-06" /> - <width sOffset="30.202885498910394" a="3.1959559569712996" b="-0.00020178876709925811" c="4.9133174535394457e-05" d="-2.6383148582978936e-07" /> - <width sOffset="30.287095556480391" a="3.195939312589795" b="-0.00019351936496343351" c="4.8523892739766317e-05" d="1.2008028465713925e-07" /> - <width sOffset="33.740527318637959" a="3.1958546575390216" b="0.00014592484106616587" c="4.2622727280067346e-05" d="-3.8502119421189581e-07" /> - <width sOffset="40.382794075307189" a="3.1985915991922926" b="0.00066118682244618756" c="3.5406839466208114e-05" d="-5.7481336797056294e-07" /> - <width sOffset="50.478492594133982" a="3.2082840434320494" b="0.0012003400455118671" c="1.8810601992633075e-05" d="-3.0152113254074408e-07" /> - <width sOffset="53.769437747758133" a="3.2124272747136504" b="0.0013143526533803333" c="0.00011657455677314227" d="-1.0121480757681507e-05" /> - <width sOffset="60.574191112960783" a="3.2235798704705685" b="0.0014948594389511852" c="-8.9889695435243063e-05" d="-1.0108183183868314e-05" /> - <width sOffset="63.763814668412408" a="3.2271053854414538" b="0.0006129180370187205" c="-1.0047315615485446e-05" d="-3.0912815922643828e-07" /> - <width sOffset="69.296530086578827" a="3.23013657429492" b="0.00047335205047500261" c="-3.6339992440842084e-05" d="3.2597057429431824e-06" /> - <width sOffset="70.669889631787584" a="3.2307265590624925" b="0.00039198085326878261" c="-2.9688759039825538e-05" d="1.6711619656271362e-06" /> - <width sOffset="80.765588150614377" a="3.2333775092702766" b="0.0003035134996571756" c="1.8146325025242694e-05" d="1.4138859175509411e-06" /> - <width sOffset="88.616295425089646" a="3.237562861620523" b="0.0008498651286588712" c="0.0021008261194627644" d="-0.00013944902490498697" /> - <width sOffset="90.861286669441171" a="3.2484811077741251" b="0.0081740743480048089" c="0.0011672853079724016" d="-0.00013834534016305376" /> - <width sOffset="91.581560122481676" a="3.2549225609872505" b="0.0096402854531423519" c="5.0680780069313285e-05" d="-9.0611669740087787e-05" /> - <width sOffset="99.029568751511846" a="3.2920975856904184" b="-0.0046842307167633485" c="0.00023488587769472628" d="4.5634364263727977e-05" /> - <width sOffset="100.95698518826796" a="3.2842684602946539" b="-0.0032701989432651333" c="0.00050857112268758121" d="4.826266040058914e-05" /> - <width sOffset="101.20680382311535" a="3.2834839957163666" b="-0.003007061732233582" c="8.9950063958231212e-05" d="1.5373732357635777e-07" /> - <width sOffset="111.05268370709477" a="3.2627434459000781" b="-0.0011910761702589249" c="9.2575395049703345e-05" d="5.9040404687026638e-07" /> - <width sOffset="115.11006396871133" a="3.2594742395038745" b="-0.00041069072220359875" c="4.8910758002719529e-05" d="1.6486873612837461e-07" /> - <width sOffset="115.85152848827482" a="3.2591966837605684" b="-0.00033788761936521671" c="0.00016490198511936516" d="-4.096407117106742e-06" /> - <width sOffset="121.14838222592157" a="3.2614247659674396" b="0.0010642412738882637" c="9.4593509946850921e-05" d="-4.64656713045683e-06" /> - <width sOffset="131.24408074474837" a="3.2770290427902631" b="0.0015534384130881029" c="-4.5840480565759937e-05" d="-4.5717842969817643e-06" /> - <width sOffset="135.37186228458145" a="3.2823386998593893" b="0.00094130929067231368" c="-0.0042439255854663065" d="0.00078384008909593869" /> - <width sOffset="138.9433624142905" a="3.267275860491782" b="0.0006220306389862441" c="-3.632711385669128e-05" d="-6.0396247176150098e-06" /> - <width sOffset="140.15253838411346" a="3.2679642131639568" b="0.00050768716858439139" c="5.9081776167530691e-05" d="-5.4710881956029889e-06" /> - <width sOffset="141.33977926357517" a="3.2686410826324441" b="0.00062484060054786121" c="4.2676327407547345e-05" d="-1.8248763247506156e-06" /> - <width sOffset="151.43547778240196" a="3.2774212190733665" b="0.00092854395845568091" c="-1.2773395477010231e-05" d="-2.0795310865611115e-06" /> - <width sOffset="159.41241987377006" a="3.2829598287068933" b="0.00032778698353347536" c="0.00016960480589454287" d="-1.8882881591872085e-05" /> - <width sOffset="159.48721113063596" a="3.2829852851313395" b="0.00035284001940871578" c="0.00017449895344252196" d="-1.4768182095617038e-05" /> - <width sOffset="161.53117630122875" a="3.2843093890406867" b="0.00088108433494035862" c="8.6369429579230721e-05" d="-1.3831152360325941e-05" /> - <width sOffset="171.35734490017907" a="3.2881840193435576" b="-0.0014278967264637135" c="-0.00012285513156628724" d="4.3773208764785138e-06" /> - <width sOffset="171.62687482005555" a="3.2877903191825641" b="-0.0014931690044774537" c="-0.00011826147486433287" d="4.3509470649559569e-06" /> - <width sOffset="181.72257333888234" a="3.2651392156079613" b="-0.0025506469862433476" c="1.3253457704160526e-05" d="4.1224042279118546e-06" /> - <width sOffset="185.49514418429325" a="3.2559266876833712" b="-0.002274634002874898" c="0.00041228565981205327" d="-2.0486112926823091e-05" /> - <width sOffset="191.81827185770914" a="3.2528487551199841" b="0.00048201189365317063" c="2.4815892061657926e-05" d="-2.0417580187456585e-05" /> - <width sOffset="198.8747071572765" a="3.2503117222005957" b="-0.0022177394416062167" c="1.0302017438402736e-05" d="8.2298576431759323e-07" /> - <width sOffset="201.91397037653593" a="3.2436896938033692" b="-0.0021323122991848604" c="1.8720766828957995e-05" d="1.0028453554202832e-06" /> - <width sOffset="209.04438345775799" a="3.2298008039487449" b="-0.0017123763282527159" c="8.3190566919408168e-05" d="-3.7567844075862978e-05" /> - <width sOffset="211.21199117436876" a="3.2260973048349277" b="-0.0018812674610168307" c="-0.00020110799564983589" d="1.178907254544417e-05" /> - <width sOffset="212.00966889536275" a="3.2244746803312068" b="-0.0021796023983674086" c="-0.00017224203049144603" d="1.1794246021458843e-05" /> - <width sOffset="221.71264039222655" a="3.1978840624963421" b="-0.0021909195762221823" c="4.7885700685043542e-05" d="2.6994746655273577e-07" /> - <width sOffset="222.69119209587595" a="3.1957862409562092" b="-0.0020964268327756347" c="0.00045071947803135048" d="-1.2008691487093707e-05" /> - <width sOffset="232.20106593301634" a="3.2062834308114803" b="0.003218028582607199" c="0.00010776336659587455" d="-1.2029643958256698e-05" /> - <width sOffset="242.29676445184313" a="3.2373769313436291" b="0.0017156246597614614" c="-0.00025413329694177952" d="-1.2701245957826242e-05" /> - <width sOffset="245.31030422780455" a="3.2398915449141938" b="-0.00016209306039212786" c="-0.00041894545801604002" d="3.1794664138118037e-05" /> - <width sOffset="247.0634467354603" a="3.2384910593361869" b="-0.0013378717161045576" c="0.00023335914159331312" d="-4.761684937073954e-06" /> - <width sOffset="252.39246297066992" a="3.2372679362703356" b="0.0007436046912216224" c="0.00016696223674314163" d="-6.9059585022094967e-06" /> - <width sOffset="255.10054497621945" a="3.2403689767792834" b="0.001495960696655163" c="0.00051080761046585544" d="-7.8603586128957957e-05" /> - <width sOffset="256.80376577579847" a="3.2440103826242277" b="0.0025519191549293217" c="0.00028162329677153155" d="-3.2988832763013241e-05" /> - <width sOffset="262.48816148949675" a="3.2615571489880981" b="0.0025557950878241547" c="-0.00028747546755670129" d="-3.1512999147894025e-05" /> - <width sOffset="267.03020001505843" a="3.2642821616941498" b="-0.0020060045014231782" c="-0.00022658336329291835" d="1.4685364769616833e-05" /> - <width sOffset="272.58386000832354" a="3.2486684425450836" b="-0.0031639101664427544" c="1.1040687018219959e-05" d="1.3731729803946503e-05" /> - <width sOffset="282.20714786596795" a="3.2314812603816629" b="0.00086357572551707534" c="0.00029077384724745934" d="1.1746998519520127e-05" /> - <width sOffset="282.4282820657869" a="3.2316865724736474" b="0.00099389910605647623" c="0.00010112673324991839" d="-1.0021160553012831e-05" /> - <width sOffset="290.99085953756048" a="3.2413201213491543" b="0.00052152376176731543" c="-0.0032466635025299312" d="0.00058661683525195515" /> - <width sOffset="292.77525704597713" a="3.2352460628950843" b="-0.005461657704446515" c="-0.0001109983009391746" d="0.00058669202009390385" /> - <width sOffset="294.41702633896182" a="3.2285763457972974" b="-0.0010820046111454798" c="0.00010637869378345001" d="8.3343702545617032e-07" /> - <width sOffset="302.30355026138426" a="3.22706837145431" b="0.00075142411261903161" c="0.00045404610873731217" d="-2.0051171943184044e-05" /> - <width sOffset="302.87095556480392" a="3.2276372502142068" b="0.0012473141018735821" c="0.00041984155224228164" d="-2.0122062628687468e-05" /> - <width sOffset="312.96665408363071" a="3.2623160176575583" b="0.00357179084612326" c="-0.00019390240707899134" d="-1.9432349246785066e-05" /> - <width sOffset="316.91385199675307" a="3.2721984451792219" b="0.001132758839680868" c="-0.00017304533754982119" d="2.8846268528240778e-06" /> - <width sOffset="318.12210969856085" a="3.2733195714383028" b="0.00072722580087268768" c="-8.4059033657076572e-05" d="1.4114023487889445e-06" /> - <width sOffset="323.06235260245751" a="3.2750308737637708" b="2.1768768687386447e-08" c="-6.4653603982894371e-05" d="1.2791721580218623e-06" /> - <width sOffset="329.46300400217962" a="3.2727176920818186" b="-0.00067041191959348815" c="-0.0001462313988417527" d="1.1025452139121543e-05" /> - <width sOffset="330.15381266527237" a="3.2721884163773711" b="-0.00085666316721553538" c="-0.00021659257262976179" d="9.0769341487242598e-06" /> - <width sOffset="333.1580511212843" a="3.2679060682326719" b="-0.0019122844286240661" c="-0.00013381006583082619" d="9.0476236231167053e-06" /> - <width sOffset="343.2537496401111" a="3.2442717512204093" b="-0.0018476102777190589" c="0.00013797955636318899" d="9.1357890259107274e-06" /> - <width sOffset="343.52415542005383" a="3.2437824163205575" b="-0.0017709853314926498" c="0.0001229886045485946" d="6.2695830125324287e-06" /> - <width sOffset="351.19754594626926" a="3.2402673365718426" b="0.0012239703426149113" c="0.00028846955337968237" d="-7.6192310904069408e-05" /> - <width sOffset="353.34944815893789" a="3.2434777727469486" b="0.0014070195361479156" c="-0.00019964991478110204" d="-7.6060004317520598e-05" /> - <width sOffset="353.55815589376141" a="3.2437620406049783" b="0.0013137432985957181" c="-0.00030116658662518279" d="9.9062945626866556e-06" /> - <width sOffset="363.44514667776468" a="3.2368854205156672" b="-0.0017364214780144825" c="-7.0903488415707538e-06" d="9.9592166369151455e-06" /> - <width sOffset="373.54084519659148" a="3.2288802485419064" b="0.0011656380270020556" c="0.00029403036528679059" d="9.9407161907188532e-06" /> - <width sOffset="374.28028880544446" a="3.2299069602657444" b="0.0016167818363175806" c="2.2660744067528104e-05" d="-6.4723410017911587e-07" /> - <width sOffset="377.79825034785802" a="3.2358470075784682" b="0.0017521904772382841" c="5.079881281887425e-06" d="1.165692688307945e-06" /> - <width sOffset="383.63654371541827" a="3.2464819361116799" b="0.0019307063985764511" c="2.5542173396639783e-05" d="1.15480769788633e-06" /> - <width sOffset="389.04572710066196" a="3.2578555962492608" b="0.0023083974715044009" c="0.00011029580360317736" d="-4.3838741815698515e-06" /> - <width sOffset="393.73224223424506" a="3.2706451688604892" b="0.003053348713501955" c="4.9027897412032046e-05" d="-4.2435014961049563e-06" /> - <width sOffset="398.32046898042501" a="3.2852768696713315" b="0.0032352505854271593" c="-0.00010160417264982822" d="-1.0302233340423868e-06" /> - <width sOffset="403.82794075307186" a="3.2998409353436733" b="0.0020223393989955447" c="-0.00012007916712418548" d="-8.7246807603616443e-07" /> - <width sOffset="410.50267165420212" a="3.307730287354381" b="0.00030273646571853823" c="-3.7002171325398959e-05" d="2.2920975868537097e-06" /> - <width sOffset="413.1840832112635" a="3.3083201939393101" b="0.00015374069054537509" c="-9.7706465753277596e-05" d="2.4609591872302846e-06" /> - <width sOffset="413.92363927189871" a="3.3083814493609851" b="1.3259887159660245e-05" c="-0.00010221804671733055" d="1.1237855915654448e-06" /> - <width sOffset="424.0193377907255" a="3.2992532927823408" b="-0.0017070460484764583" c="-6.1867607878778098e-05" d="-4.1036187306137219e-07" /> - <width sOffset="424.4197637519805" a="3.2985598009692718" b="-0.0017567902346249165" c="-8.5904686781166682e-05" d="7.4989677724356952e-06" /> - <width sOffset="426.24930963381428" a="3.2951040523085964" b="-0.0019958208738112678" c="-5.2130021416405816e-05" d="5.2671285979481316e-06" /> - <width sOffset="434.11503630955229" a="3.2787434514255045" b="-0.00183827556837626" c="7.5629033104313985e-05" d="4.4288451489334105e-06" /> - <width sOffset="438.65760817138732" a="3.2723686958359015" b="-0.00087700781714880724" c="9.6774081655690787e-05" d="-2.8108130752368405e-06" /> - <width sOffset="444.21073482837909" a="3.2700014716119941" b="-6.224329906764491e-05" c="5.3424584608696368e-05" d="-2.2040506212475972e-06" /> - <width sOffset="454.30643334720588" a="3.2725503474149353" b="0.0003425424957190545" c="-1.4174180929984989e-05" d="-2.2768189308397237e-06" /> - <width sOffset="460.39371925578007" a="3.2735967066046441" b="-8.3125004106146712e-05" c="-7.8653590479674427e-05" d="-2.3902752690109278e-07" /> - <width sOffset="464.40213186603268" a="3.2719843563343565" b="-0.00072519872427763735" c="-8.1938765002124379e-05" d="-1.2110774261169556e-07" /> - <width sOffset="470.54340670656302" a="3.2644123191556313" b="-0.0017453185050134369" c="-2.8897895925074104e-05" d="1.4548885537794134e-06" /> - <width sOffset="474.49783038485947" a="3.2571486666384621" b="-0.0019056152391930276" c="-1.2839729299135975e-05" d="1.4286421519053398e-06" /> - <width sOffset="481.8408925135397" a="3.2430289496087719" b="-0.0018630815383904522" c="-0.00060791815431085374" d="3.7616510288997974e-05" /> - <width sOffset="484.59352890368626" a="3.2340789213794312" b="-0.0043547751097621854" c="-0.00029691001096355857" d="3.7253691507755155e-05" /> - <width sOffset="493.62587736719809" a="3.1979740051753502" b="-0.00060052510392099461" c="0.0032368247133399692" d="-0.00047181936207618252" /> - <width sOffset="494.68922742251306" a="3.2004280684330864" b="0.0046827530315193735" c="0.0017574734317463833" d="-0.00045954433538817144" /> - <width sOffset="497.15262951565694" a="3.2157589059029297" b="0.0049754530651468197" c="-0.0017196976373488281" d="-0.00046219877033444774" /> - <width sOffset="497.19314306600955" a="3.2159576258145943" b="0.0048338350648092637" c="7.6255965671718487e-05" d="-2.2874901252145902e-05" /> - <width sOffset="504.78492594133985" a="3.2470410802942173" b="0.0020364762566178131" c="-0.00042629171404716414" d="-3.1396387578754927e-05" /> - <width sOffset="506.1277187287742" a="3.2489309862517883" b="0.00072180160860409724" c="-2.1998390185209031e-05" d="5.2260703379741606e-07" /> - <width sOffset="514.8806244601667" a="3.2539139319227099" b="0.00045681797802167275" c="-7.3737392750335108e-06" d="5.6975990722680172e-07" /> - <width sOffset="520.57273577343335" a="3.2563803586418194" b="0.00042825457576880236" c="4.1745685905739989e-05" d="-1.4929110319690394e-06" /> - <width sOffset="524.97632297899349" a="3.2589482464044588" b="0.00070906640008387679" c="2.1454996862976888e-05" d="-1.2075661317157502e-06" /> - <width sOffset="529.27878587848431" a="3.2622999607140946" b="0.00082662460866490871" c="0.00011772993166367619" d="-7.1110372658874146e-06" /> - <width sOffset="533.32988199194131" a="3.2671080363202374" b="0.0014303893475348158" c="-0.00035304645274994765" d="1.578180878707259e-05" /> - <width sOffset="535.07202149782029" a="3.2686119064624126" b="0.00034397274106162733" c="-0.00026995679700716926" d="1.5748439827817717e-05" /> - <width sOffset="544.78531029606586" a="3.2609154643893334" b="-0.00044286350008533484" c="-4.4394722289399686e-05" d="-5.1684228966853254e-06" /> - <width sOffset="545.35678445952294" a="3.2606469161906588" b="-0.00049866812645066425" c="0.00011083952045733248" d="-6.8368879951356094e-06" /> - <width sOffset="555.26341853547387" a="3.2599375684313148" b="-0.00031552023789848586" c="-8.8138631067526471e-05" d="-7.8172796779679879e-06" /> - <width sOffset="557.98791580924774" a="3.2582655976662718" b="-0.00096986747145911157" c="-2.7900940224126712e-05" d="1.1342527838774129e-06" /> - <width sOffset="565.35911705430067" a="3.2500548037983981" b="-0.0011963068216376889" c="-2.2957249981812686e-06" d="1.1115829869361747e-06" /> - <width sOffset="566.61194674322394" a="3.2485546176041709" b="-0.0011968249638009735" c="-1.4007430786601901e-05" d="1.4487061342082623e-06" /> - <width sOffset="575.45481557312746" a="3.237877672914832" b="-0.0011047062048751676" c="2.1307872864184981e-05" d="1.7690803094853234e-06" /> - <width sOffset="581.97377104655197" a="3.2320717548399114" b="-0.00060135540339608881" c="-2.0094763186735022e-05" d="4.6111222196737266e-06" /> - <width sOffset="585.55051409195426" a="3.2298747808322839" b="-0.00056813149643465048" c="2.0413411260306855e-05" d="3.5112488434540632e-06" /> - <width sOffset="591.17503867608332" a="3.2279498635962973" b="-5.2620422735698593e-06" c="0.00018749620904358588" d="-6.9272184382578492e-06" /> - <width sOffset="591.50916738225851" a="3.227968779442639" b="0.00011771358380332116" c="0.0003381250104278528" d="-1.1093977850566428e-05" /> - <width sOffset="595.64621261078105" a="3.2334573022987652" b="0.0023457654464020782" c="0.00019962376990152254" d="-1.1319084209687813e-05" /> - <width sOffset="603.70290454622682" a="3.2593945948069445" b="0.0033582049365579953" c="0.0001139498014097807" d="-1.1663544901661502e-05" /> - <width sOffset="605.74191112960784" a="3.2666168735431329" b="0.0036774184890735443" c="4.2660486829683304e-05" d="-1.1172424474437002e-05" /> - <width sOffset="615.83760964843464" a="3.2965948130313998" b="0.0011226079475943028" c="-0.0002960338183338066" d="-1.1584657100280756e-05" /> - <width sOffset="617.42707346060911" a="3.297584739810179" b="9.373559811923312e-05" c="-0.00028064033808365018" d="-1.4488962908870151e-06" /> - <width sOffset="617.71648911534476" a="3.2975883264021637" b="-6.9071901105853783e-05" c="-0.00021591228603312998" d="3.0504823035582732e-06" /> - <width sOffset="625.93330816726143" a="3.2841355253436966" b="-0.0029994261268707391" c="-0.00014155753918831189" d="3.8126318857546903e-06" /> - <width sOffset="628.3140927588795" a="3.2762436205333101" b="-0.0036086306033154165" c="-0.00037030938505144595" d="2.7344711427886946e-05" /> - <width sOffset="636.02900668608822" a="3.2389190117596232" b="-0.0044397774523427542" c="0.00026319505172741665" d="2.7368800881719327e-05" /> - <width sOffset="638.29907063237033" a="3.2305168894195027" b="-0.002821728337470855" c="6.5566096150302349e-05" d="2.6136460194629107e-06" /> - <width sOffset="639.6686491486189" a="3.2267820106129164" b="-0.0026274249012969353" c="-0.00093002702144222163" d="0.00058278859070490599" /> - <width sOffset="641.29560122884254" a="3.2225553378239336" b="-0.0010257665780460125" c="0.00077099218165340116" d="-5.7588174851946125e-05" /> - <width sOffset="646.12470520491502" a="3.2290961875962094" b="0.0023917251653119238" c="-6.3413384999188519e-05" d="-5.7559018919894476e-05" /> - <width sOffset="649.95073735293931" a="3.2340949925307649" b="-0.00062125502780877419" c="-0.00011911624780649809" d="6.0617211668460638e-06" /> - <width sOffset="656.22040372374181" a="3.2270115505333963" b="-0.0014000578592342446" c="-6.4816238709184212e-06" d="6.0453323302624325e-06" /> - <width sOffset="663.26701964046515" a="3.2189392881819199" b="-0.00059086565848604465" c="0.00015757786380823111" d="4.5187145808049231e-06" /> - <width sOffset="665.67889184007868" a="3.2184942445778457" b="0.000248107496158925" c="0.0010330145032208644" d="-8.6802109673244783e-05" /> - <width sOffset="666.3161022425686" a="3.2190493250634002" b="0.0014588680410216562" c="0.00086921282975886097" d="-8.6159678404070861e-05" /> - <width sOffset="673.41807716032122" a="3.2423883306437968" b="0.00076794555543793449" c="-0.00030517149325181035" d="1.2885023897239652e-05" /> - <width sOffset="676.4118007613954" a="3.2422980008631308" b="-0.00071281116793711478" c="-0.00018690511566483276" d="1.3587202617264159e-05" /> - <width sOffset="686.47380038601818" a="3.2300441973488772" b="-0.00034722801663749389" c="0.00025173683221626846" d="1.4660714875615957e-05" /> - <width sOffset="687.50217151341917" a="3.2299692859327198" b="0.00021704295610396182" c="3.0076039838271226e-05" d="-3.9389889815757023e-07" /> - <width sOffset="696.60319779904898" a="3.2341388270178433" b="0.00066661023765913693" c="2.6496141273835466e-05" d="-8.4982127041553337e-07" /> - <width sOffset="701.21887699422552" a="3.2376966059877201" b="0.00085689057614652504" c="0.0005565465039430855" d="-3.9741568052130763e-05" /> - <width sOffset="706.69889631787578" a="3.2525656113038548" b="0.0033762709623727902" c="-9.3856424524796112e-05" d="-3.9716945108737525e-05" /> - <width sOffset="710.61356865094308" a="3.2619616280170929" b="0.00081549068806618062" c="-0.00039519443833936825" d="2.1335725716256862e-05" /> - <width sOffset="711.20676212833916" a="3.2623107647967005" b="0.00036915991140230056" c="-0.00037718828012539346" d="2.208170592542979e-05" /> - <width sOffset="716.79459483670257" a="3.2564489679949791" b="-0.001777740870876903" c="-7.7221169023321359e-06" d="2.2283467832271607e-05" /> - <width sOffset="721.39417828187231" a="3.250277124552758" b="-0.00043447955451307422" c="0.00010428523065372683" d="-4.7053823275451875e-06" /> - <width sOffset="726.89029335552937" a="3.2502581479399213" b="0.00028543728462718731" c="2.352249558696707e-05" d="-4.846044917267892e-06" /> - <width sOffset="734.47409366516217" a="3.2516619976152539" b="-0.00019392957337026752" c="-0.0083587557014010976" d="0.0016239154659783395" /> - <width sOffset="736.98599187435616" a="3.2241718763899252" b="-0.011447686571858771" c="0.0038804628784146226" d="0.0016238734998444886" /> - <width sOffset="737.59080855717184" a="3.2190268824768329" b="-0.0049716947355996693" c="0.0003568118430855133" d="7.8030434903123949e-07" /> - <width sOffset="746.18638228044301" a="3.203150511286454" b="0.0013352660260844956" c="0.00034134695192459294" d="5.8910188703456833e-07" /> - <width sOffset="746.52229903782211" a="3.2036375894632307" b="0.0015647937714464682" c="0.00012005204767268044" d="-4.4797501112280965e-06" /> - <width sOffset="757.17738891200975" a="3.228521154842205" b="0.0025973537601824597" c="-2.5614580770192658e-05" d="-4.1745114952149612e-06" /> - <width sOffset="761.69030036237609" a="3.2393374202160485" b="0.0021111021564536184" c="-0.0011445553434757385" d="5.6239942181934584e-05" /> - <width sOffset="767.27308743083654" a="3.2252361510528558" b="-0.0054099382589273297" c="-0.00020397995370580863" d="5.6096862790445377e-05" /> - <width sOffset="775.40356369839401" a="3.1979166997802997" b="0.0023979428853522647" c="9.5273950685010553e-05" d="-1.2599275006683179e-06" /> - <width sOffset="777.36878594966333" a="3.2029875851766638" b="0.0027578139687378851" c="8.9934135567389329e-05" d="-1.4174293892863433e-06" /> - <width sOffset="785.42262729455354" a="3.2302916261077126" b="0.0039306225351556463" c="6.2988910153424267e-05" d="-1.2465898551992833e-06" /> - <width sOffset="787.46448446849013" a="3.2385693960195376" b="0.0041722594761415752" c="5.1867531851927404e-05" d="-4.4718983531068081e-06" /> - <width sOffset="795.34385985028757" a="3.2724767704403348" b="0.0041567195066663717" c="-0.00046132801213426093" d="1.7340211761370937e-05" /> - <width sOffset="797.56018298731692" a="3.2796120991313749" b="0.0023673455637779352" c="-0.00034543594805875244" d="1.7318231817040938e-05" /> - <width sOffset="799.56373807199896" a="3.2831078319805749" b="0.0011917039152569871" c="-0.00017700874818523215" d="1.756467530137065e-05" /> - <width sOffset="807.88524734352768" a="3.2908887270779066" b="0.001894674468130689" c="0.00015928250204786526" d="-1.6864304330427232e-05" /> - <width sOffset="808.24138701396305" a="3.2915829367088989" b="0.002001711128068026" c="0.00018878298575729336" d="-1.5794217754601055e-05" /> - <width sOffset="817.75158002497062" a="3.3141086385952327" b="0.0013069705453445024" c="-0.00027042736833770865" d="-1.1733041889274548e-05" /> - <width sOffset="819.10211270502691" a="3.315351600266577" b="0.00051232750712641457" c="-0.00040268911926613388" d="1.6256931897389318e-05" /> - <width sOffset="819.5283742059413" a="3.3154980767213367" b="0.00017788736869654449" c="-0.00047620392619654353" d="2.7426025481770683e-05" /> - <width sOffset="827.84727854379742" a="3.2998118489973023" b="-0.0020511165072045309" c="0.00020320241909432105" d="2.8376129042076159e-05" /> - <width sOffset="831.02856939441472" a="3.2962567986770308" b="0.00010332681787624367" c="0.0004027362818691457" d="-5.3599774104448104e-06" /> - <width sOffset="834.21292227768402" a="3.3004965433358771" b="0.0025051835249664872" c="0.00040710745017040305" d="-3.1092861999331404e-05" /> - <width sOffset="837.94297706262421" a="3.3138915879471531" b="0.0042444359479891147" c="6.0079040841753745e-05" d="-3.1346579307904443e-05" /> - <width sOffset="843.2827026450401" a="3.3334962136246045" b="0.0022047231826319326" c="-0.00050928419952056059" d="-2.9632922193353504e-06" /> - <width sOffset="844.02437757865971" a="3.3348500446534959" b="0.0014443863743567186" c="-0.00046965957413979537" d="5.135749171873742e-05" /> - <width sOffset="847.39139653009374" a="3.3363492574955429" b="2.8372397584818833e-05" c="-0.00017203359274019215" d="1.9234414379407204e-05" /> - <width sOffset="848.038675581451" a="3.3363007616031313" b="-0.00017015914623635942" c="-0.00012862499439637669" d="1.9836913654912179e-05" /> - <width sOffset="858.1343741002778" a="3.3418849144531779" b="0.0032982434263611003" c="0.00047182997143297562" d="2.0747463109586459e-05" /> - <width sOffset="859.15579366029203" a="3.3457681734574489" b="0.0043270535051752861" c="0.0001570681870213234" d="3.7531449041600121e-06" /> - <width sOffset="867.65184817331328" a="3.3961703917705139" b="0.0078087123896135374" c="0.00068980160730737624" d="-3.8801092004512112e-05" /> - <width sOffset="868.23007261910459" a="3.4009087096107065" b="0.0085675140139586017" c="0.00062143822056608448" d="-3.8837493604082183e-05" /> - <width sOffset="878.32577113793138" a="3.5107794705328725" b="0.0092399032964255289" c="-0.00055640471643410207" d="-3.8140624563418491e-05" /> - <width sOffset="879.75727139063792" a="3.5227543313205563" b="0.0074124438124879228" c="-0.0010163273961279811" d="5.0674130278566645e-05" /> - <width sOffset="881.71539654322885" a="3.5337524253000456" b="0.0040151438145992644" c="-7.0094466874767481e-05" d="-7.8815033598579577e-05" /> - <width sOffset="882.40651859724039" a="3.5364678811750179" b="0.00380531822082226" c="0.0002128005639727049" d="8.8558794870310511e-05" /> - <width sOffset="883.31324863781151" a="3.5401592520055485" b="0.0044096518768845464" c="0.0012784397124981598" d="-0.0002231778736238707" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="99.029568751511846" color="standard" width="0.28672274031832062" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.28672300000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.9266637445723571" b="1.2765339162404017e-09" c="-0.0023364275387535568" d="0.000716944083624651" /> - <width sOffset="1.9656502614314224" a="3.9230813799287194" b="-0.00087485285006023419" c="0.00040757133974868911" d="-1.0001232763310702e-05" /> - <width sOffset="10.095698518826797" a="3.9375338698142608" b="0.003769121482485933" c="0.00016403553793306201" d="-9.2852103901369646e-06" /> - <width sOffset="12.089163215852894" a="3.9456257856183514" b="0.0043124240558958978" c="0.023235143810184093" d="-0.074387409814571481" /> - <width sOffset="12.39813940592224" a="3.9469822036136151" b="-0.0026338327508623766" c="-2.435996611660935e-05" d="2.959523247276948e-06" /> - <width sOffset="18.009737353096174" a="3.9319580726209962" b="-0.002627642981540685" c="-6.4156956659195926e-05" d="1.9559926497923027e-06" /> - <width sOffset="20.191397037653594" a="3.9259403967675341" b="-0.0028796508166159611" c="-3.8248598909657623e-05" d="5.7080749313949929e-06" /> - <width sOffset="27.800157033208247" a="3.9043298723115365" b="-0.00247032297335138" c="9.5652686544036463e-05" d="-1.1338894528068647e-05" /> - <width sOffset="30.287095556480391" a="3.8986035219426629" b="-0.0022049468064289997" c="1.1578396321735131e-05" d="-1.0197753469576881e-05" /> - <width sOffset="33.019665536704295" a="3.8924567313932394" b="-0.0023701072500241999" c="-2.4054842869650757e-05" d="-1.4402642107586497e-08" /> - <width sOffset="33.740527318637959" a="3.8907357063628769" b="-0.0024048101364600423" c="-1.6940757147858283e-05" d="4.9069883779460704e-07" /> - <width sOffset="40.382794075307189" a="3.8741586963672638" b="-0.0025649117247053817" c="-6.2179550191571178e-06" d="3.3153907410614349e-07" /> - <width sOffset="50.478492594133982" a="3.8479715162315644" b="-0.0025890864242184416" c="1.152716759912939e-05" d="-1.2998614064682724e-06" /> - <width sOffset="52.957673161684689" a="3.8416037462005761" b="-0.002555898720386618" c="-0.00011016065241632844" d="1.0034240421716687e-05" /> - <width sOffset="60.574191112960783" a="3.8201797035246923" b="-0.0024876805238070649" c="0.00011930925771369346" d="1.0131066235110331e-05" /> - <width sOffset="64.929879730314298" a="3.8124448728842886" b="-0.000871712097317444" c="8.2047468692020533e-05" d="-9.7289487992002486e-06" /> - <width sOffset="69.296530086578827" a="3.8093928133736803" b="-0.00071169102418259904" c="-2.4239562104105936e-05" d="-1.3297782703535789e-05" /> - <width sOffset="70.068421867766105" a="3.8088229068475767" b="-0.00077288079358432855" c="-0.00039513879995642284" d="1.0224399918078531e-05" /> - <width sOffset="70.669889631787584" a="3.8082173218985744" b="-0.0012371108513453695" c="-0.00036763264953862575" d="1.1696019010128927e-05" /> - <width sOffset="80.765588150614377" a="3.7702925841049604" b="-0.0050838430937472333" c="-1.5614393683144708e-05" d="1.14135798115563e-05" /> - <width sOffset="85.610046223652262" a="3.7465953184529628" b="-0.0044315414686973698" c="-3.7027092372801224e-05" d="-2.8760992685759974e-06" /> - <width sOffset="88.616295425089646" a="3.7328602258640808" b="-0.0047321453394863454" c="-0.0021123456868231802" d="0.00013798681155349432" /> - <width sOffset="90.861286669441171" a="3.7131516916343168" b="-0.012130185817643026" c="-0.0011814221655384385" d="0.00013652064179928576" /> - <width sOffset="95.019067323134422" a="3.6521062056140643" b="-0.014874219936715234" c="0.00048766323126401759" d="0.00014191223749942833" /> - <width sOffset="99.029568751511846" a="3.6094508647383456" b="-0.0041150706666444855" c="-1.3753667119077525e-05" d="5.6662034956014304e-06" /> - <width sOffset="100.95698518826796" a="3.6015088872221872" b="-0.0041049400366851814" c="1.8311381585008628e-05" d="3.0167205309799997e-06" /> - <width sOffset="108.2191730720737" a="3.573819185926201" b="-0.0033616788030306874" c="8.2767224622767451e-05" d="-1.1758759399149773e-05" /> - <width sOffset="111.05268370709477" a="3.5646908457816169" b="-0.0031758607463444324" c="-1.9165549387491988e-05" d="-5.5218567285693859e-06" /> - <width sOffset="112.33179899967806" a="3.5605856401122402" b="-0.0032519941655825028" c="4.3742709058678806e-05" d="-7.478042271050716e-06" /> - <width sOffset="115.85152848827482" a="3.5493553330094363" b="-0.0032219942425602264" c="-0.00015084384280551747" d="-3.2167664231638616e-06" /> - <width sOffset="121.14838222592157" a="3.5275786762631594" b="-0.00509074494854152" c="-0.00019384344735136604" d="-2.4322839080514683e-06" /> - <width sOffset="121.55103707792357" a="3.5254972763046464" b="-0.0052480320031095696" c="-0.00032226290057505921" d="1.9001741269927615e-05" /> - <width sOffset="131.24408074474837" a="3.4616547231482979" b="-0.0061395174894680483" c="0.00023756957270260458" d="1.5413762873337793e-05" /> - <width sOffset="133.26810856091851" a="3.4503292255511591" b="-0.0049883864826465504" c="0.00087429159964089751" d="-0.00020634514260216695" /> - <width sOffset="136.61217861637792" a="3.4357082439270332" b="-0.0060635539563568099" c="-0.00064539070880700834" d="5.5867560836394692e-05" /> - <width sOffset="139.79272159146225" a="3.4116916497668548" b="-0.0084734955245486208" c="-0.00034249478087868571" d="5.6782199968610008e-06" /> - <width sOffset="140.15253838411346" a="3.4085986661465775" b="-0.0087177608261902358" c="-0.00045368322142606414" d="5.1096834572664063e-06" /> - <width sOffset="141.33977926357517" a="3.3976176499317532" b="-0.0097734164362533373" c="-0.00043240900830991252" d="6.1218601970470867e-06" /> - <width sOffset="151.43547778240196" a="3.261175008544158" b="-0.016632480973603869" c="-0.00024667088563850009" d="6.5408198347247848e-06" /> - <width sOffset="151.87982889517863" a="3.2537362163307906" b="-0.016847823525007962" c="-0.0029313809483075414" d="0.0002612633719766709" /> - <width sOffset="158.03229744668411" a="3.099964589840531" b="-0.023249576919784538" c="-0.0023047255193347645" d="0.00056673201360666855" /> - <width sOffset="159.41241987377006" a="3.0649772382084048" b="-0.026372755815057072" c="-0.0001903899313850025" d="0.00058353536247656541" /> - <width sOffset="161.53117630122875" a="3.0137953284216934" b="-0.019320839394141885" c="0.0035197656600123028" d="0.00058432736274806199" /> - <width sOffset="162.5922291571969" a="2.9979555845666273" b="-0.0098779592129784217" c="0.00054379594149034339" d="1.477786150353057e-05" /> - <width sOffset="169.02791855356386" a="2.9608461991065447" b="-0.0010423429158656593" c="0.0011842121554132997" d="-5.6601001491697928e-05" /> - <width sOffset="171.35734490017907" a="2.9641285056971327" b="0.0035533374084591902" c="0.00059017141912866798" d="-7.4809474722764078e-05" /> - <width sOffset="171.62687482005555" a="2.9651276454625863" b="0.0038551712070262994" c="0.00051411551924869297" d="-7.5464435242215486e-05" /> - <width sOffset="175.7421087593342" a="2.9844399250948763" b="0.004252577797697504" c="0.00048028512434500993" d="-5.2801345490167919e-05" /> - <width sOffset="181.72257333888234" a="3.015756121567791" b="0.0043317622545100435" c="-0.00046886106805446066" d="-5.3450850364319628e-05" /> - <width sOffset="184.18150625435533" a="3.0227780513808966" b="0.0010564186075349008" c="-0.00019837664373019859" d="6.3608498153248313e-06" /> - <width sOffset="185.49514418429325" a="3.0238378945811597" b="0.00056815813891461552" c="-0.00052568509907630035" d="3.0969366970066999e-05" /> - <width sOffset="191.81827185770914" a="3.0142419136475773" b="-0.0023651434078399737" c="6.4774281807379488e-05" d="2.9883613939275891e-05" /> - <width sOffset="193.65624553315033" a="3.010299205121866" b="-0.0018241828151255722" c="0.0011401812500471443" d="-7.5470271797205084e-05" /> - <width sOffset="198.8747071572765" a="3.0211044320040008" b="0.0039101046863052758" c="-0.00045904702742477938" d="-9.6710837767340662e-05" /> - <width sOffset="199.40645781767259" a="3.0230392920157847" b="0.0033398700552361737" c="-6.4035768935458674e-05" d="-2.1127280828293138e-08" /> - <width sOffset="201.91397037653593" a="3.0310110924931939" b="0.0030183305446970137" c="-6.318136759871906e-05" d="2.2264089966500977e-07" /> - <width sOffset="212.00966889536275" a="3.0552726992346377" b="0.0018106872372627611" c="-5.5344862191713577e-05" d="1.117829196078182e-07" /> - <width sOffset="217.57554556401783" a="3.0636555077249437" b="0.0012049906463872419" c="-0.00015392860293690603" d="1.1962439633124721e-05" /> - <width sOffset="222.10536741418954" a="3.0670672889907475" b="0.00054683450855116261" c="7.9535350566408934e-06" d="1.2398407830356714e-05" /> - <width sOffset="222.69119209587595" a="3.067392860414464" b="0.0005689183123257516" c="-0.00037229788966719972" d="2.4677046785676696e-05" /> - <width sOffset="225.21723074723559" a="3.0668521378741511" b="-0.00083957622945792258" c="-0.00025232370502109342" d="1.0742141143646663e-05" /> - <width sOffset="232.20106593301634" a="3.0523409386438853" b="-0.0027921404772716664" c="-2.7928141315176901e-05" d="1.0671448236321247e-05" /> - <width sOffset="242.29676445184313" a="3.0322865686906368" b="-9.3046494816299754e-05" c="0.00029722585116257882" d="1.0433757404968636e-05" /> - <width sOffset="245.31030422780455" a="3.0349909457563706" b="0.0019826174165627829" c="0.0004415385113951491" d="-3.4062152681692884e-05" /> - <width sOffset="245.85919777113511" a="3.0362065872406347" b="0.002436545535352096" c="0.00047616622394834021" d="-3.5868877083609038e-05" /> - <width sOffset="252.39246297066992" a="3.0624471502882784" b="0.0040653525018114001" c="-0.00022782238083798572" d="-3.356165884732726e-05" /> - <width sOffset="255.10054497621945" a="3.0711191313487589" b="0.0020930348888668969" c="-0.00090043663361643841" d="3.8135968779643393e-05" /> - <width sOffset="259.13713192095315" a="3.0674043932161483" b="-0.0033121802964288325" c="-0.00046738901131857658" d="5.5331175869924333e-05" /> - <width sOffset="262.48816148949675" a="3.0531387961710719" b="-0.0045806415092674978" c="8.4331305933575703e-05" d="5.8802440144773164e-05" /> - <width sOffset="265.53224705602713" a="3.0416350765168056" b="-0.0024325472488058268" c="0.00061572766378097978" d="2.6098934285597549e-05" /> - <width sOffset="267.03020001505843" a="3.039460567504265" b="-0.00041219779273716324" c="0.00024272071848261857" d="-2.0099429631730801e-05" /> - <width sOffset="272.58386000832354" a="3.0412147523401831" b="0.00042399036960891461" c="-8.3131249257145957e-05" d="-1.9014730301714072e-05" /> - <width sOffset="272.84720580767527" a="3.0413202959152086" b="0.00037624976678529536" c="-3.3991635137944049e-05" d="-1.2926810038369602e-06" /> - <width sOffset="282.20714786596795" a="3.0408040030826253" b="-0.00059981929457137784" c="4.6410112773637669e-05" d="6.920503865773884e-07" /> - <width sOffset="282.67955852715033" a="3.0405310724450283" b="-0.00055550669197999651" c="4.9592476428826162e-05" d="5.4784780944268374e-07" /> - <width sOffset="292.77525704597713" a="3.0405411919852732" b="0.00061334977785134303" c="8.1103180221765638e-05" d="-6.7230133618358965e-06" /> - <width sOffset="294.14411678092938" a="3.0415155069597732" b="0.00079759525051292389" c="3.0133960438118319e-05" d="-4.3944843395151587e-06" /> - <width sOffset="302.30355026138426" a="3.0476424463505039" b="0.00041164109728439877" c="-0.00040538419935792221" d="1.6490124639299136e-05" /> - <width sOffset="302.87095556480392" a="3.0477485130853106" b="-3.2466265540688922e-05" c="-0.00037749203633549358" d="1.6866253531578528e-05" /> - <width sOffset="308.70396791172726" a="3.0380626560504487" b="-0.0027147237809372025" c="2.2063429064310836e-05" d="1.597604864588482e-05" /> - <width sOffset="312.96665408363071" a="3.0281289705415722" b="-0.0016557467735412099" c="0.00022471850544458839" d="1.4428214521330588e-05" /> - <width sOffset="316.91385199675307" a="3.0259819261138343" b="0.00079266087906511209" c="0.0001446045054789795" d="-7.8887615779198122e-06" /> - <width sOffset="323.06235260245751" a="3.0344885891629705" b="0.0016761810172015805" c="-1.0086850906919549e-06" d="-7.7759809875080219e-06" /> - <width sOffset="330.15381266527237" a="3.0435513557683365" b="0.00048874052324732512" c="-7.3227253610640771e-05" d="-5.827462996089443e-06" /> - <width sOffset="333.1580511212843" a="3.0442007306937855" b="-0.00010903014437947656" c="-0.00012326873711090381" d="-7.708173182724649e-06" /> - <width sOffset="334.57215896214956" a="3.0437782525796715" b="-0.00050390284427763703" c="-0.00048737651067522414" d="4.130821929553209e-05" /> - <width sOffset="342.21041809756525" a="3.029902855449782" b="-0.00071918237465057582" c="0.00045870719906599723" d="-4.3019930654081789e-05" /> - <width sOffset="343.2537496401111" a="3.0296029731363348" b="9.7498167226633807e-05" c="0.00036046938153659754" d="-2.2729186883686161e-05" /> - <width sOffset="343.52415542005383" a="3.0296552450693213" b="0.00028745834999995966" c="0.00036443313331421432" d="-1.9862980854999307e-05" /> - <width sOffset="353.34944815893789" a="3.0488206610536759" b="0.0016962821385167175" c="-0.00021555504045835637" d="-2.0478493192036164e-05" /> - <width sOffset="357.75365343392826" a="3.0503608630187378" b="-0.0013940806321540635" c="-4.7979768466569373e-05" d="5.7745180704185292e-06" /> - <width sOffset="361.4381765095244" a="3.0448618228205691" b="-0.0015124662070616819" c="0.00033151048780315836" d="-1.3038381468189052e-05" /> - <width sOffset="363.44514667776468" a="3.0430562476416991" b="-0.00033935592260718158" c="0.00025326582295512849" d="-1.2614406577526715e-05" /> - <width sOffset="373.54084519659148" a="3.05246382019428" b="0.00091733551394833964" c="-0.00012915706164284968" d="-1.258735820700055e-05" /> - <width sOffset="376.0466728375942" a="3.0537534493751952" b="3.293027585317995e-05" c="-0.00012427538405754537" d="4.2195566010151854e-06" /> - <width sOffset="377.79825034785802" a="3.0534525248698321" b="-0.00036358855983144897" c="-9.1352713956489647e-05" d="2.4066298123166168e-06" /> - <width sOffset="383.63654371541827" a="3.0486948942592358" b="-0.001184181683049216" c="-4.9158452947426967e-05" d="2.408437573173194e-06" /> - <width sOffset="389.04572710066196" a="3.0412322785324157" b="-0.001504588518094483" c="-7.6089341800373022e-05" d="7.9471194525848343e-06" /> - <width sOffset="393.73224223424506" a="3.033327831448398" b="-0.0016941383571310253" c="3.883204771173907e-05" d="7.2546624472557625e-06" /> - <width sOffset="397.96137753073504" a="3.0274063717615105" b="-0.00097642473661808428" c="0.00089184211422115023" d="-0.00011065469492361795" /> - <width sOffset="403.82794075307186" a="3.0300303037239198" b="-0.0019373916248291321" c="-0.001054345773551733" d="-0.00011101146853422081" /> - <width sOffset="404.34566295916164" a="3.0287292652593312" b="-0.0031183733686448987" c="-8.4415165267565879e-05" d="2.7846094953394865e-05" /> - <width sOffset="408.53073840287749" a="3.0162412644331118" b="-0.0023617799700789205" c="0.0016339543208501982" d="-0.00015397744693233215" /> - <width sOffset="410.50267165420212" a="3.0167569730723693" b="0.0022860842515670526" c="0.00062250711348764052" d="-0.00015714201259535681" /> - <width sOffset="413.83755994444709" a="3.0254757857196335" b="0.0011951124107567673" c="-7.0164124511755047e-05" d="2.4762590120868928e-06" /> - <width sOffset="413.92363927189871" a="3.0255781418799348" b="0.0011830880940223577" c="-5.9553028075482874e-05" d="3.8134323107824123e-06" /> - <width sOffset="424.0193377907255" a="3.0353763769864823" b="0.0011466601146196934" c="4.8918350640573937e-05" d="3.791589252777546e-06" /> - <width sOffset="424.4197637519805" a="3.0358436165177194" b="0.0011876603108490825" c="7.7017223213495686e-05" d="-4.117740392572881e-06" /> - <width sOffset="434.11503630955229" a="3.0508451373779533" b="0.0015198843388774484" c="-4.6258514835078273e-05" d="-3.0969059547562977e-06" /> - <width sOffset="434.24214330920688" a="3.0510375715950717" b="0.0015079746742227276" c="-0.00011889965175165525" d="-2.4560243760793481e-06" /> - <width sOffset="438.65760817138732" a="3.0551664461985961" b="0.00031432982055397743" c="-0.00011222312624068808" d="4.7836338480668904e-06" /> - <width sOffset="444.21073482837909" a="3.054270474397855" b="-0.0004895068012046378" c="-3.4884938018956902e-05" d="4.6436543859438125e-06" /> - <width sOffset="450.11609773019188" a="3.0511195179283703" b="-0.00041570442806179546" c="0.00013725132150441008" d="-5.2718735122691353e-06" /> - <width sOffset="454.30643334720588" a="3.0513996682918449" b="0.00045684867544709142" c="6.4410691605997069e-05" d="-5.7027031189459284e-06" /> - <width sOffset="459.98962674074761" a="3.0550296220526167" b="0.0006363960376467939" c="0.00012125367994885467" d="-5.492819027103503e-06" /> - <width sOffset="464.40213186603268" a="3.059726655342641" b="0.0013856221266494106" c="4.6426976032101778e-05" d="-5.8945803493312933e-06" /> - <width sOffset="470.54340670656302" a="3.0686218456974652" b="0.0012889169338500739" c="-0.00011744587482658927" d="-7.4705766453722396e-06" /> - <width sOffset="471.62445492514576" a="3.069868533936754" b="0.0010087958163349487" c="-5.2703532426379433e-05" d="1.6635429645178652e-06" /> - <width sOffset="474.49783038485947" a="3.0723715125279281" b="0.00074712580502444615" c="-3.9158149936294141e-05" d="1.4010384465992016e-06" /> - <width sOffset="481.8408925135397" a="3.0763010043134535" b="0.00039867868823108954" c="0.00061825583639218897" d="-3.4786829690392055e-05" /> - <width sOffset="484.59352890368626" a="3.0813574105860875" b="0.0030116055493059316" c="0.00033210111216642221" d="-3.4606653822708865e-05" /> - <width sOffset="493.62587736719809" a="3.1101519309588728" b="0.00054093447895934568" c="-0.003129906711837621" d="0.00047446639976226604" /> - <width sOffset="494.68922742251306" a="3.1077585782675117" b="-0.0045059820083854221" c="-0.0016385935324347951" d="0.00046288813392158005" /> - <width sOffset="497.19314306600955" a="3.0934693288016133" b="-0.0040054205907109177" c="-1.3624554561059336e-05" d="2.356427310020971e-05" /> - <width sOffset="501.21038154982421" a="3.0786864190270045" b="-0.0029740315480902982" c="0.0021202917703397953" d="-0.00024053204005327971" /> - <width sOffset="504.78492594133985" a="3.0841614743601182" b="0.0029640236729937004" c="-0.00047980007171816695" d="-0.00023207402299471984" /> - <width sOffset="505.14674893584368" a="3.0851601198634961" b="0.0025256717512007493" c="0.00045753069154035649" d="1.3847254578318283e-05" /> - <width sOffset="506.1277187287742" a="3.0880910817914859" b="0.0034632950379852052" c="-3.2487945326245915e-05" d="-1.8071740033515472e-05" /> - <width sOffset="513.73948659321547" a="3.1046005923071016" b="-0.0001724625392038343" c="-0.00058481192547113622" d="3.3548501885375529e-05" /> - <width sOffset="514.8806244601667" a="3.1036921018004762" b="-0.0013761044678255454" c="-0.00046819111973379906" d="3.6691600979496391e-05" /> - <width sOffset="524.45661316441931" a="3.0798010280197312" b="-0.00024907925627210123" c="4.5422903632802428e-05" d="-2.3920222123014555e-06" /> - <width sOffset="524.97632297899349" a="3.0796835119596047" b="-0.00020380404195842093" c="4.460207141555092e-05" d="-2.3498626345104639e-06" /> - <width sOffset="529.27878587848431" a="3.0794451381712804" b="4.9497233087210141e-05" c="-9.7589979237863082e-05" d="3.5536084996532883e-06" /> - <width sOffset="535.07202149782029" a="3.0771475420917742" b="-0.00072343211797380215" c="-3.4732588189166242e-05" d="3.4379381375047489e-06" /> - <width sOffset="543.39461533965607" a="3.0707028033634609" b="-0.00058717035095134191" c="0.00030782316252604599" d="-3.6591729538482165e-05" /> - <width sOffset="545.16772001664708" a="3.0704254748847042" b="0.00015931279041462958" c="0.00012820799087346488" d="-3.2616908423291452e-05" /> - <width sOffset="545.35678445952294" a="3.0704599576790637" b="0.0002042942254077394" c="-5.4387205187012624e-05" d="-3.0948443480123307e-05" /> - <width sOffset="549.24344525320828" a="3.0686153419797391" b="-0.0016210088395872495" c="-8.6441119808749857e-06" d="6.9945342044173616e-06" /> - <width sOffset="555.26341853547387" a="3.0600696064610373" b="-0.00096463608381193563" c="0.00011596881561901816" d="8.0750490423366401e-06" /> - <width sOffset="557.98791580924774" a="3.0584655881205309" b="-0.00015290214902298694" c="5.7838000567125615e-05" d="-8.7648341951439621e-07" /> - <width sOffset="565.35911705430067" a="3.0601300791468766" b="0.00055689878604602461" c="3.8331051550232754e-05" d="-7.6820880038899603e-07" /> - <width sOffset="569.23392756294254" a="3.0628187727291802" b="0.00081934788734540473" c="0.00019906428061503993" d="-1.2340174145985933e-05" /> - <width sOffset="575.45481557312746" a="3.0726486875230163" b="0.0018633873108960996" c="-4.0377291013923459e-05" d="-1.0052773783851793e-05" /> - <width sOffset="578.13375922571583" a="3.07715754441955" b="0.0014306119321113525" c="-6.264982710827334e-05" d="4.9597313880080714e-07" /> - <width sOffset="581.97377104655197" a="3.0817553799696382" b="0.00097140017839885914" c="1.9064104389427426e-05" d="-2.3460687713900322e-06" /> - <width sOffset="585.55051409195426" a="3.0853663671476319" b="0.0010177345714447649" c="-7.0740082536108824e-06" d="-1.0108372230693916e-06" /> - <width sOffset="590.66673238676549" a="3.0902527804677637" b="0.00086597214627481042" c="2.7141383670695071e-05" d="-8.8999025118750897e-06" /> - <width sOffset="591.17503867608332" a="3.0906988033609437" b="0.00088666587380167459" c="-9.4265727046054945e-05" d="1.5385647571913565e-06" /> - <width sOffset="595.64621261078105" a="3.0929162618193304" b="0.00013598312402760904" c="-7.4658184657828947e-05" d="1.4184919547426153e-06" /> - <width sOffset="603.70290454622682" a="3.0899075695482718" b="-0.00079078871355531266" c="-0.00022828228149306433" d="1.7629526456799963e-06" /> - <width sOffset="605.23601962911175" a="3.0881649880105195" b="-0.0014783235783074557" c="-0.0015000251438444102" d="0.00014563137335633187" /> - <width sOffset="605.74191112960784" a="3.0870520759510693" b="-0.0028842108634723252" c="-0.0012784519650812019" d="0.00014506941933206414" /> - <width sOffset="612.14792796784479" a="3.0542483088376624" b="-0.0014041166963607138" c="0.0001655720995493754" d="3.6687469722493299e-06" /> - <width sOffset="615.83760964843464" a="3.0515059051603686" b="-3.2463789083270449e-05" c="0.00020203562766669058" d="2.9273892464037936e-06" /> - <width sOffset="617.42707346060911" a="3.0519764822489925" b="0.00063198007532260859" c="0.00014536090552295233" d="-7.2083715556313145e-06" /> - <width sOffset="620.50082616248301" a="3.0550830600984744" b="0.0013212739027396046" c="0.0002090897511351663" d="-9.2980012504363099e-06" /> - <width sOffset="625.93330816726143" a="3.0669408041924591" b="0.0027698225696181208" c="6.1123200225917746e-05" d="-9.1440664712395869e-06" /> - <width sOffset="634.32570139505322" a="3.0890862754350197" b="0.0018636505192182466" c="-0.00014838753432696648" d="1.7872010953822269e-06" /> - <width sOffset="636.02900668608822" a="3.0918389638863744" b="0.0013737073202434809" c="-0.00013622996640890727" d="3.4494972824334033e-06" /> - <width sOffset="639.6686491486189" a="3.0952004446022547" b="0.00051913702251524924" c="0.00090776674184753822" d="-0.00057672544740289386" /> - <width sOffset="641.29560122884254" a="3.0959642225970878" b="-0.0011068071859771547" c="-0.00076365913042411538" d="6.365131815392957e-05" /> - <width sOffset="646.12470520491502" a="3.0799787672068417" b="-0.0040292928299720358" c="0.00015837513419764485" d="6.3668271130593699e-05" /> - <width sOffset="649.95073735293931" a="3.0704468390702493" b="-2.1367957691771861e-05" c="0.00028420058218266923" d="4.7533425835091886e-08" /> - <width sOffset="650.02576137266351" a="3.070446835632648" b="2.1276585210128818e-05" c="0.00030396753037517882" d="-2.9367466606408166e-05" /> - <width sOffset="654.68537814141155" a="3.0741746293085219" b="0.00094113917882534366" c="-0.00018205617783038965" d="8.3747015936165263e-06" /> - <width sOffset="656.22040372374181" a="3.0752206135887281" b="0.00044141741503982287" c="-0.00015002571433966414" d="7.1766891332100215e-06" /> - <width sOffset="663.60744058076955" a="3.0731876401500271" b="-0.00060021407949730713" c="-0.00012203369649190358" d="-3.8740370550489915e-06" /> - <width sOffset="665.67889184007868" a="3.0713862562557246" b="-0.0011556572247881627" c="-0.00098884928648287191" d="8.744678719720132e-05" /> - <width sOffset="666.3161022425686" a="3.0702709751568058" b="-0.0023093474096155114" c="-0.0008290451629873216" d="8.49894510408898e-05" /> - <width sOffset="673.41807716032122" a="3.0424986782754244" b="-0.0012249573510051712" c="0.00032040638387903172" d="-1.4055251260385136e-05" /> - <width sOffset="676.4118007613954" a="3.0413259837085844" b="0.00031555340517645651" c="0.00019209566247146593" d="-1.4572130800774412e-05" /> - <width sOffset="684.16085389890804" a="3.0485255371355544" b="0.00066759813715946081" c="-0.00016033060663357912" d="-1.2949980518492772e-05" /> - <width sOffset="686.50749928022219" a="3.0490419090011907" b="-0.00029881672168026886" c="-0.0002447959091016894" d="-1.4559524883006176e-05" /> - <width sOffset="687.50217151341917" a="3.0484881618254533" b="-0.00082901450479352077" c="-2.1351014454882095e-05" d="4.9508889012634499e-07" /> - <width sOffset="692.38082804812234" a="3.0439929920050002" b="-0.0010019917750491237" c="-5.0261271137267747e-05" d="1.5588735461821206e-07" /> - <width sOffset="696.60319779904898" a="3.0388778687872264" b="-0.0014180974475425465" c="-3.9104149830830872e-05" d="2.9232895311002631e-06" /> - <width sOffset="701.21887699422552" a="3.0317867525928071" b="-0.0015922442525592513" c="-0.00054044311956177285" d="4.1815036312797894e-05" /> - <width sOffset="706.69889631787578" a="3.0137128166200036" b="-0.0037483283624450041" c="0.00014644927197972831" d="4.1918269161083796e-05" /> - <width sOffset="710.61356865094308" a="3.0037983442507388" b="-0.00067457693394942331" c="0.0004736396728877532" d="-1.9134401666507025e-05" /> - <width sOffset="714.1745543919551" a="3.00653820628406" b="0.0019707631114380592" c="0.00063315444855395041" d="-9.7784412876497664e-05" /> - <width sOffset="716.79459483670257" a="3.0142893374126345" b="0.0032747874951854321" c="-0.00013627476755854556" d="-9.6742721884267806e-05" /> - <width sOffset="718.28608719093017" a="3.0185495254347821" b="0.0022226550432452759" c="-0.00030717563845377967" d="-1.7241923334936087e-05" /> - <width sOffset="721.39417828187231" a="3.021972665782803" b="-0.00018648753427146132" c="-0.00027246738170751681" d="9.7469268248210846e-06" /> - <width sOffset="726.89029335552937" a="3.014335421127786" b="-0.0022982272320244985" c="-0.00011177251057486947" d="9.8674123000543972e-06" /> - <width sOffset="734.47409366516217" a="2.9947815550693635" b="-0.0022910041762617024" c="0.0083847488289505532" d="-0.0016188940985955411" /> - <width sOffset="736.98599187435616" a="3.0162733671736026" b="0.0091883859535172811" c="-0.0038259169317776901" d="-0.0016176347532115263" /> - <width sOffset="737.59080855717184" a="3.0200732317487073" b="0.0027852211750879503" c="-0.00029094600231813547" d="5.4584422838954319e-06" /> - <width sOffset="741.17417019726736" a="3.0265689542701564" b="0.00091035875446940405" c="-0.00033521796757900472" d="1.5015947321480836e-07" /> - <width sOffset="746.52229903782211" a="3.0218725741230203" b="-0.0026623342051606351" c="-0.00011092017907611311" d="5.2190114995491711e-06" /> - <width sOffset="747.08169039318295" a="3.0203494919433087" b="-0.0027815304050856954" c="-0.00010945325819142513" d="4.6177417965067233e-06" /> - <width sOffset="757.17738891200975" a="2.9858637689098222" b="-0.003579580525627085" c="3.0967284885505543e-05" d="4.3216194062489622e-06" /> - <width sOffset="761.69030036237609" a="2.9707373371974706" b="-0.0030360282001816964" c="0.0011518997025195983" d="-5.6092834270910924e-05" /> - <width sOffset="767.27308743083654" a="2.9799294436079906" b="0.0045807711630954234" c="0.0002104928115382843" d="-5.5328621786612747e-05" /> - <width sOffset="769.51969141046118" a="2.990655649648378" b="0.0046887903927896497" c="-0.00016795152001847268" d="-5.43804602070844e-05" /> - <width sOffset="775.40356369839401" a="3.0013521535853265" b="-0.0029355671418076169" c="-5.882583805694227e-05" d="2.9763300844128664e-06" /> - <width sOffset="777.36878594966333" a="2.9953785105312578" b="-0.0031322941937682678" c="-3.0625671724400569e-05" d="-3.2237530958697111e-06" /> - <width sOffset="778.96441232731672" a="2.9902894691076511" b="-0.0032546517068210734" c="-5.3466831265106804e-05" d="4.0026672493817289e-06" /> - <width sOffset="786.56400925730998" a="2.9642243066901628" b="-0.0033737958263694735" c="-9.4273589061110189e-05" d="1.7599219506644336e-05" /> - <width sOffset="787.46448446849013" a="2.9611226950774361" b="-0.0035007666090172834" c="-5.4327492893860618e-05" d="1.7493961322131369e-05" /> - <width sOffset="794.45618380939038" a="2.9399697579041728" b="-0.0016949325503175139" c="-0.0001567042641772986" d="0.0001469004481699911" /> - <width sOffset="795.34385985028757" a="2.9384444799565497" b="-0.0016258789028210411" c="0.00064198400713625823" d="0.00012508833805473997" /> - <width sOffset="796.86750963154816" a="2.9379000395872996" b="0.0012016196599199998" c="0.00039253568449462202" d="-1.9674469113717193e-05" /> - <width sOffset="797.56018298731692" a="2.9389141680533681" b="0.0017170984625480058" c="0.00035221189178796097" d="-2.0330206665259335e-05" /> - <width sOffset="807.65588150614371" a="2.9712285330638535" b="0.0026123938068321534" c="-0.00027331744541461017" d="-1.9520448859109663e-05" /> - <width sOffset="807.88524734352768" a="2.9718131125387561" b="0.0024839336017898461" c="-0.00018454684283269703" d="1.490853078591559e-05" /> - <width sOffset="812.14200775235088" a="2.9801925650796335" b="0.0017232183575225427" c="0.00023057694289334754" d="2.0768311069420075e-06" /> - <width sOffset="817.75158002497062" a="2.9974813153624709" b="0.0045061512178570795" c="0.00027029222720354498" d="-3.3918556199391983e-06" /> - <width sOffset="819.10211270502691" a="3.0040516611290853" b="0.0052176685815091672" c="0.0003412739730232251" d="-3.138182940638195e-05" /> - <width sOffset="823.69327353030576" a="3.0321634412367153" b="0.006366886035833433" c="-6.9673758913161232e-05" d="-6.4779513214053684e-06" /> - <width sOffset="827.84727854379742" a="3.0569449014370838" b="0.0054526898739141695" c="-0.00015347171093903526" d="-7.5645204710081573e-06" /> - <width sOffset="831.02856939441472" a="3.072494714379661" b="0.0042465408561605869" c="-0.00015438223391185508" d="2.6171585981412882e-05" /> - <width sOffset="833.05821023644648" a="3.0806965187948068" b="0.00394329686908086" c="0.001143964518310205" d="-7.7865082067000399e-05" /> - <width sOffset="837.94297706262421" a="3.1181791039453364" b="0.0095454929513424137" c="4.0459858333418122e-06" d="-7.9290354691971101e-05" /> - <width sOffset="840.40866854325986" a="3.1405513404140164" b="0.00811927613454589" c="-4.1320564534331355e-06" d="2.555640524318622e-05" /> - <width sOffset="843.2827026450401" a="3.1644589879486809" b="0.0087288180357400352" c="0.0002834347301209259" d="-2.8268818477235566e-06" /> - <width sOffset="848.038675581451" a="3.2120799928563812" b="0.011233007763118011" c="0.00026416470135991779" d="-1.6257128885667377e-05" /> - <width sOffset="849.1712062055559" a="3.2251169272480329" b="0.011768801561543748" c="4.2793323202762847e-05" d="-8.2081717874402435e-06" /> - <width sOffset="858.1343741002778" a="3.3281300250872627" b="0.010557635402118667" c="-0.00017761660161517631" d="-8.6083050759177442e-06" /> - <width sOffset="859.15579366029203" a="3.3387193199674909" b="0.010167850179696779" c="0.00017434270316956545" d="8.3860131293938131e-06" /> - <width sOffset="861.24485176165672" a="3.3607978650758437" b="0.011006068056180469" c="0.00030321702747403443" d="-3.3551438058509718e-05" /> - <width sOffset="866.00042238977096" a="3.4163869528482174" b="0.011613665225052229" c="8.6299690935410348e-05" d="-9.9162957554270742e-06" /> - <width sOffset="868.23007261910459" a="3.4426004736088869" b="0.011850609638877166" c="1.550122837209062e-05" d="-1.1173480575996286e-05" /> - <width sOffset="874.42842434608212" a="3.5139894407663075" b="0.010754933009500166" c="-0.00046897339301791386" d="4.4103206272424489e-05" /> - <width sOffset="878.32577113793138" a="3.5513925835643789" b="0.0091091211949431757" c="4.6898617487581186e-05" d="4.3292966684951716e-05" /> - <width sOffset="879.75727139063792" a="3.564655393639856" b="0.0095095388899033694" c="0.00052894803432876466" d="-4.5521788157057787e-05" /> - <width sOffset="883.23096019052923" a="3.6021630711214589" b="0.011536472749333167" c="0.002948455347193965" d="-0.0007191142128786731" /> - <width sOffset="883.31324863781151" a="3.6031319539924009" b="0.012007112168815431" c="0.0019461885810692153" d="-0.00040737754595079781" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="151.87982889517863" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="151.87982889517863" color="standard" width="0.1863690919014501" weight="standard" type="solid"> - <type name="solid"> - <line length="736.54164076157952" space="0" width="0.18636900000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929732041174617" b="-6.1182153672244212e-05" c="0.0022607777211279285" d="-0.0006981729157477715" /> - <width sOffset="1.9656502614314224" a="2.4962855782845619" b="0.00073385284790655671" c="-0.00037252850424076097" d="2.8772400640188273e-05" /> - <width sOffset="9.4647670436132749" a="2.492973101894961" b="7.8245392612580691e-07" c="4.5827075683801803e-05" d="-3.2357965275956541e-06" /> - <width sOffset="10.095698518826797" a="2.4929910254658534" b="5.4745678342797439e-05" c="3.631585861620743e-05" d="-2.948531895575594e-06" /> - <width sOffset="18.009737353096174" a="2.4942373149472132" b="7.5538465683857355e-05" c="5.5931425119152117e-05" d="-1.9450012982848007e-06" /> - <width sOffset="20.191397037653594" a="2.4946481308403445" b="0.00029181262426655405" c="3.2101372812168184e-05" d="-5.7950497085469841e-06" /> - <width sOffset="27.800157033208247" a="2.4961742208034732" b="-0.00022616650701297661" c="-0.00010378522325630343" d="1.12519197511445e-05" /> - <width sOffset="30.287095556480391" a="2.4951429311872104" b="-0.00053360669292123542" c="-1.8972639602126901e-05" d="9.9859480049735962e-06" /> - <width sOffset="33.019665536704295" a="2.4937468986293805" b="-0.00041360143901451006" c="1.4924279830829645e-05" d="-1.9740282350909518e-07" /> - <width sOffset="40.382794075307189" a="2.4914318251865524" b="-0.00022592963173065448" c="1.1944852492041344e-05" d="-2.0002126342543274e-07" /> - <width sOffset="50.478492594133982" a="2.4901625455591745" b="-4.5906751362755072e-05" c="1.3340660518345861e-06" d="1.58452469206018e-06" /> - <width sOffset="52.957673161684689" a="2.4900810788449821" b="-1.0074905265158515e-05" c="0.00012513908112510495" d="-9.7495771361258071e-06" /> - <width sOffset="60.574191112960783" a="2.492956033039027" b="0.00019941494124702495" c="-9.8088211480724209e-05" d="-9.9027517864413741e-06" /> - <width sOffset="61.456881008828368" a="2.4930488194798404" b="3.1050616685103505e-06" c="5.087817120270354e-05" d="-2.137358226200399e-05" /> - <width sOffset="64.929879730314298" a="2.4927779350192125" b="-0.00041690179283890419" c="-2.1680017381749491e-06" d="-1.5135672276937522e-06" /> - <width sOffset="70.068421867766105" a="2.4903730596770508" b="-0.00055907801053601907" c="0.0003146053016555595" d="-2.5035749833676392e-05" /> - <width sOffset="70.669889631787584" a="2.49014515747667" b="-0.00020779917516486389" c="0.00024886258695690883" d="-2.3095754782326932e-05" /> - <width sOffset="77.317769401060204" a="2.4929765462505191" b="3.8915416426894313e-05" c="9.7858533631460157e-05" d="-8.3375345758300507e-06" /> - <width sOffset="80.765588150614377" a="2.4939322879645029" b="0.00041637621106905935" c="-5.7578826663875048e-06" d="-1.2676897485327799e-05" /> - <width sOffset="85.610046223652262" a="2.4943729938745527" b="-0.00053194515839121489" c="-2.7054524872524996e-06" d="1.6127815948108371e-06" /> - <width sOffset="90.861286669441171" a="2.4917385576656397" b="-0.00042693921798232217" c="1.9547175511165186e-05" d="1.8839381876956857e-06" /> - <width sOffset="95.019067323134422" a="2.4904367630013677" b="-0.00016668977222645577" c="7.6829433865691277e-05" d="-3.5076575124199457e-06" /> - <width sOffset="100.95698518826796" a="2.4914215135970625" b="0.00037469585792211657" c="1.1914420743536714e-05" d="-3.5675438371859104e-06" /> - <width sOffset="108.2191730720737" a="2.4934046035654269" b="-1.6704692012449278e-05" c="-6.4541969315426838e-05" d="1.1207936092805351e-05" /> - <width sOffset="111.05268370709477" a="2.4930940537265585" b="-0.00011250716081625829" c="2.5926943018883199e-05" d="1.1726811124575773e-05" /> - <width sOffset="112.33179899967806" a="2.4930171060461515" b="1.1379908931025227e-05" c="-0.00012569169571887681" d="8.4225203973790841e-06" /> - <width sOffset="121.14838222592157" a="2.4891193752352248" b="-0.00024086108475499229" c="8.6243061880705727e-05" d="7.9717457466333375e-06" /> - <width sOffset="121.55103707792357" a="2.4890368944365289" b="-0.00016753131047526123" c="0.00022135398865855656" d="-1.3462279418357231e-05" /> - <width sOffset="131.24408074474837" a="2.495950097431491" b="0.00032910719902247421" c="-0.00017046801875521234" d="-1.1342634391452826e-05" /> - <width sOffset="133.26810856091851" a="2.4958238141792535" b="-0.00050035854747317856" c="-0.0007824698138221344" d="0.00021041627108414436" /> - <width sOffset="136.01792745030667" a="2.4929064065813122" b="-3.0468717617591293e-05" c="0.0002930097355104157" d="0.00021816472517393893" /> - <width sOffset="136.61217861637792" a="2.4930375543309164" b="0.00054889847602880223" c="0.00013152813356238848" d="-4.4047978266046444e-05" /> - <width sOffset="139.79272159146225" a="2.494696673305274" b="4.881153777887802e-05" c="-5.8589723427971124e-05" d="6.1413625902597776e-06" /> - <width sOffset="141.33977926357517" a="2.4946546993359373" b="-8.8375844211422902e-05" c="-3.2687758622616813e-05" d="2.429911388828591e-06" /> - <width sOffset="151.54107839586911" a="2.4929310769737008" b="3.3260981381101618e-06" c="-0.0022939449028313917" d="0.00019650525643615728" /> - <width sOffset="151.87982889517863" a="2.4926766077573621" b="-0.0014831758092377495" c="0.0005991831827316667" d="-5.8217295751621654e-05" /> - <width sOffset="157.37784463430827" a="2.4929588760814649" b="-0.00017394684382735989" c="-0.0020431166100521639" d="-7.508284255824157e-06" /> - <width sOffset="158.03229744668411" a="2.491967847273358" b="-0.0028578412522907368" c="0.0021377305469648137" d="-0.00031297692588860279" /> - <width sOffset="161.53117630122875" a="2.4947330373626677" b="0.00060694470189544616" c="-0.0011464516326964401" d="-0.0003130840683953503" /> - <width sOffset="162.5922291571969" a="2.4937123241401817" b="-0.0028833881374828625" c="0.0026929285022371649" d="0.00025646543284806934" /> - <width sOffset="163.09220137399214" a="2.492975920325982" b="1.718427321844955e-06" c="0.00018964405159398374" d="-1.8389471024306825e-05" /> - <width sOffset="169.02791855356386" a="2.4958219807284721" b="0.00030933106970062736" c="-0.00049291907983852975" d="5.2989391971253941e-05" /> - <width sOffset="171.62687482005555" a="2.4942266807913462" b="-0.0011790569369254811" c="-7.1906886912200419e-05" d="5.393146984229686e-05" /> - <width sOffset="175.7421087593342" a="2.4919154294161849" b="0.00096912839526827957" c="-0.00030391606208946025" d="3.1268380090253487e-05" /> - <width sOffset="179.49191611657253" a="2.4929247580452873" b="8.8742809838723152e-06" c="-0.00040456281832314175" d="6.9124306034956516e-05" /> - <width sOffset="181.72257333888234" a="2.4916987536310327" b="-0.00076415493625891368" c="5.4464864864466772e-05" d="6.781926967137366e-05" /> - <width sOffset="184.18150625435533" a="2.4911573694545996" b="0.00073387330548025439" c="-0.00011002662192731541" d="8.0075694917125713e-06" /> - <width sOffset="191.81827185770914" a="2.4939114066799597" b="0.00045438715759774269" c="7.1102476719745938e-05" d="8.9776294351131064e-06" /> - <width sOffset="193.65624553315033" a="2.4950424945625045" b="0.00080673938060451666" c="-0.00079002666456912314" d="0.0001143315151715939" /> - <width sOffset="197.65606718618236" a="2.4929462470000683" b="-2.5768775379730706e-05" c="-5.2008870818632787e-05" d="9.8950622710299239e-05" /> - <width sOffset="199.40645781767259" a="2.4932724619945876" b="0.00070167429450137576" c="-8.1691555928517062e-05" d="2.2609122416339682e-06" /> - <width sOffset="201.91397037653593" a="2.4945539198869984" b="0.0003346363554970447" c="-6.5008963358798358e-05" d="1.989221379605325e-06" /> - <width sOffset="212.00966889536275" a="2.4933532700299796" b="-0.00036974243532548069" c="-5.1113290761290841e-06" d="2.0978988441008066e-06" /> - <width sOffset="217.57554556401783" a="2.4914987160848661" b="-0.00023166817137569681" c="0.00013036886019028414" d="-9.7527578694040512e-06" /> - <width sOffset="222.10536741418954" a="2.4922178702038149" b="0.00034906836770317185" c="-2.1278107432100886e-06" d="-1.0020426380473469e-05" /> - <width sOffset="225.21723074723559" a="2.492981559351529" b="4.4721244717497739e-05" c="-2.8643065747152734e-05" d="3.9144792615226426e-06" /> - <width sOffset="229.21712937348036" a="2.4929526815994425" b="3.4680069162247151e-06" c="-2.9771476606937944e-05" d="1.5183115217801717e-06" /> - <width sOffset="232.20106593301634" a="2.4927382877540971" b="-0.00013364780914799338" c="-1.7599344079745282e-05" d="1.0659474457158342e-06" /> - <width sOffset="242.29676445184313" a="2.490692083678077" b="-0.00016306905734693629" c="1.3440434082262961e-05" d="1.8637919563418338e-06" /> - <width sOffset="245.85919777113511" a="2.4903659958036179" b="3.6520092636599735e-06" c="-5.7357861821539927e-05" d="3.6705163490037987e-06" /> - <width sOffset="252.39246297066992" a="2.4889651890703384" b="-0.00027580418563731514" c="1.0287604980917095e-05" d="3.6355833332831843e-06" /> - <width sOffset="259.13713192095315" a="2.4886884352262939" b="0.00035912295121771085" c="0.0001126198618575686" d="-1.3559623756909181e-05" /> - <width sOffset="262.48816148949675" a="2.4906462709360611" b="0.00065710864214390966" c="-1.6729175488125877e-05" d="-1.7852629454948435e-05" /> - <width sOffset="265.53224705602713" a="2.4919879607161839" b="5.8966692721530017e-05" c="-0.00017416135031617818" d="1.4850876404055485e-05" /> - <width sOffset="272.58386000832354" a="2.4889509137337527" b="-0.00018187976146530165" c="0.00013045876696802684" d="1.4218838436444991e-05" /> - <width sOffset="272.84720580767527" a="2.4889123235927162" b="-0.00011020995249082103" c="7.7530218945686923e-05" d="-3.5032108915537723e-06" /> - <width sOffset="282.67955852715033" a="2.4919939897403136" b="0.0003983785453280773" c="-2.3310808059174957e-05" d="-4.1076576785044823e-06" /> - <width sOffset="286.84709970162714" a="2.4929520505844103" b="-9.9492774459003291e-06" c="5.1549179479284385e-05" d="-4.6124600120536626e-06" /> - <width sOffset="292.77525704597713" a="2.4937437350059195" b="0.0001149462848527951" c="-3.9865275275181791e-05" d="3.180308067497329e-06" /> - <width sOffset="294.14411678092938" a="2.4938345390046166" b="2.368390864323079e-05" c="-3.4444553822905407e-06" d="8.5177904518096239e-07" /> - <width sOffset="302.87095556480392" a="2.4943450088743013" b="0.00015817413270970875" c="1.9083544027354748e-05" d="7.5726550921939992e-07" /> - <width sOffset="308.70396791172726" a="2.496067228561353" b="0.0004580989086968195" c="-7.2077308889041604e-05" d="1.6474703949011768e-06" /> - <width sOffset="312.96665408363071" a="2.4968378851815842" b="-6.6580937307895906e-05" c="-4.8618498694609738e-05" d="2.4010622886162895e-06" /> - <width sOffset="323.06235260245751" a="2.4936810121245472" b="-0.00031408500668975332" c="2.3263079991637904e-05" d="2.3388845352270058e-06" /> - <width sOffset="327.20404235600603" a="2.4929453806353425" b="-1.0272593220679582e-06" c="-0.0001705174903096355" d="1.2648708383388716e-05" /> - <width sOffset="333.1580511212843" a="2.4895641562661375" b="-0.00068635402416903854" c="5.4451226233385755e-05" d="1.440445535265297e-05" /> - <width sOffset="334.57215896214956" a="2.4887431966454763" b="-0.00044594040154721906" c="0.00044696679516109916" d="-3.4611937125598446e-05" /> - <width sOffset="342.21041809756525" a="2.4959899450950669" b="0.00032406299600438917" c="-0.00034567309920969613" d="4.9716212825193175e-05" /> - <width sOffset="343.2537496401111" a="2.4960082341437104" b="-0.00023488593514252244" c="-0.00021299923963126198" d="2.8359282072336013e-05" /> - <width sOffset="348.71050579303579" a="2.4929920692567933" b="-2.6161838865966514e-05" c="-0.00024313561650511926" d="2.3459458422275014e-05" /> - <width sOffset="353.34944815893789" a="2.489980414898092" b="-0.00076741846893159469" c="8.7221275152150546e-05" d="2.5450012779402728e-05" /> - <width sOffset="357.75365343392826" a="2.4904665354084798" b="0.0014818258653099957" c="-1.4667218465462274e-05" d="-8.0299848307131708e-07" /> - <width sOffset="361.4381765095244" a="2.4956870730960574" b="0.0013410386312076054" c="-0.00033920443881416308" d="1.8009901055386557e-05" /> - <width sOffset="363.44514667776468" a="2.4971577969893186" b="0.00019712007402615441" c="-0.00023087680285977893" d="1.7711272103592954e-05" /> - <width sOffset="371.6883829319392" a="2.4930151231663373" b="1.2689844288800087e-06" c="-0.00010101288814615432" d="1.7271212597429208e-05" /> - <width sOffset="373.54084519659148" a="2.4927806284859084" b="-0.00019517161126929349" c="-6.7580827989458328e-06" d="1.633814272351411e-05" /> - <width sOffset="376.0466728375942" a="2.492506199787595" b="7.8729240494525374e-05" c="1.6556698166744099e-05" d="-4.6877208427681505e-07" /> - <width sOffset="383.63654371541827" a="2.4938525540149854" b="0.00024904319213031351" c="5.9177103175057229e-06" d="-4.715153417454861e-07" /> - <width sOffset="393.73224223424506" a="2.4964847882525234" b="0.00022435507428784571" c="-9.5105085644667931e-06" d="-9.6808880318240964e-10" /> - <width sOffset="397.96137753073504" a="2.4972634419766546" b="0.00014386067486888299" c="-0.00077049001055003966" d="0.00011790838928205796" /> - <width sOffset="402.21149919565664" a="2.493009183272008" b="-1.5965243031611058e-05" c="-0.00053046278299574527" d="0.00020218445608020415" /> - <width sOffset="403.82794075307186" a="2.4924512798812088" b="-0.0001460362456075458" c="0.00045161309246693679" d="0.0002055718965260693" /> - <width sOffset="404.34566295916164" a="2.4925252492384029" b="0.00048688618835559687" c="-0.00037144941569417959" d="6.6714332993580598e-05" /> - <width sOffset="408.53073840287749" a="2.4929472485042048" b="0.00088327443248779414" c="-0.00090259132696708015" d="0.00024853787487879924" /> - <width sOffset="410.28079465735351" a="2.4930608009268127" b="7.6917706701815254e-06" c="-0.00081709342625107856" d="0.0001612511581882527" /> - <width sOffset="413.83755994444709" a="2.4900069722136315" b="0.00031503439631048969" c="2.4022204298851282e-05" d="1.632886485536321e-06" /> - <width sOffset="413.92363927189871" a="2.4900342692002155" b="0.00031920632415419854" c="5.7078290734684386e-06" d="-6.1338502055255517e-07" /> - <width sOffset="424.0193377907255" a="2.4932074757160496" b="0.00024690100623891206" c="-1.4999880367422859e-05" d="-6.1410840885935239e-07" /> - <width sOffset="434.11503630955229" a="2.4935393706530444" b="-0.00024374308473794869" c="-2.9586009423177263e-05" d="-1.6661727546088946e-06" /> - <width sOffset="434.24214330920688" a="2.4935079077820923" b="-0.00025134501952037684" c="4.1238865595076153e-05" d="-2.3070542456393928e-06" /> - <width sOffset="441.49250615716642" a="2.492974100124087" b="-1.7181573067491854e-05" c="7.1104541376772027e-05" d="-6.0938031034474883e-06" /> - <width sOffset="444.21073482837909" a="2.4933303814494181" b="0.00023429815716554937" c="3.0929993773509049e-05" d="-3.1759302561951386e-06" /> - <width sOffset="450.11609773019188" a="2.4951385787166629" b="0.00026733822209716184" c="-0.00011520393487184732" d="6.7395976419791252e-06" /> - <width sOffset="454.30643334720588" a="2.4947318441102393" b="-0.0003431280634063243" c="-2.5914751460157876e-05" d="7.1473511182201679e-06" /> - <width sOffset="459.98962674074761" a="2.4932567340400738" b="5.486502112834156e-05" c="-5.8127097906777745e-05" d="6.9374670263922725e-06" /> - <width sOffset="464.40213186603268" a="2.4929630941104577" b="-5.288557142655876e-05" c="3.7303762703930528e-05" d="7.3765621844150782e-06" /> - <width sOffset="464.98990980851443" a="2.492946394888655" b="-1.3874851606163717e-06" c="-8.3368846036289493e-05" d="8.7804326395614924e-06" /> - <width sOffset="471.62445492514576" a="2.4918317124020977" b="5.1853660621913218e-05" c="2.4231803111561024e-06" d="-3.5368697061568671e-07" /> - <width sOffset="474.49783038485947" a="2.4919923232475902" b="5.7018651388750599e-05" c="1.4251679191988576e-07" d="-3.0033347212436793e-08" /> - <width sOffset="484.59352890368626" a="2.4925515882501337" b="5.071298638977521e-05" c="-1.7894834286618385e-07" d="-1.021730004161917e-07" /> - <width sOffset="494.68922742251306" a="2.4929401977937076" b="1.5858393772461466e-05" c="7.2676530587345686e-06" d="-2.9395587995668975e-06" /> - <width sOffset="497.62618116715964" a="2.4929749930895895" b="-1.7519317681737273e-05" c="0.00030183842338541166" d="-1.604962100362214e-05" /> - <width sOffset="501.21038154982421" a="2.4960507701352661" b="0.0015276354655968597" c="-0.0017206631605204876" d="0.0002480466921499331" /> - <width sOffset="504.78492594133985" a="2.490854928168492" b="-0.0012653869268145651" c="0.00094962895862668183" d="0.00024839412156510589" /> - <width sOffset="505.14674893584368" a="2.4905331696176205" b="-0.00048063553532399226" c="3.0013156173069938e-05" d="2.4728439913553001e-06" /> - <width sOffset="513.73948659321547" a="2.4901881061136919" b="0.0005829031694316064" c="0.00023340896525134006" d="-4.9147397927007428e-05" /> - <width sOffset="514.8806244601667" a="2.4910841908443953" b="0.00092360820627662645" c="5.710523892392855e-05" d="-4.9984458617308919e-05" /> - <width sOffset="517.73979432704402" a="2.493023469173119" b="2.430865939666467e-05" c="0.00034090241799387375" d="-4.0175242377191154e-05" /> - <width sOffset="524.45661316441931" a="2.4963923303369668" b="-0.00083372893416850411" c="7.1813989831188421e-05" d="-1.0916192334050059e-06" /> - <width sOffset="524.97632297899349" a="2.495978276829554" b="-0.00075996859695370595" c="6.2874946332407708e-05" d="-1.7015547305873892e-06" /> - <width sOffset="535.07202149782029" a="2.4929633996328384" b="-1.0718936624301285e-05" c="1.3448195083330052e-05" d="-2.3133682646039555e-06" /> - <width sOffset="538.95783040242554" a="2.4929890749223809" b="-1.0996891799881217e-05" c="-3.7732259297820043e-05" d="1.4088339178538491e-06" /> - <width sOffset="543.39461533965607" a="2.4923205675408724" b="-0.00026261778814235296" c="-0.00027569824238124561" d="4.1438501594522894e-05" /> - <width sOffset="545.16772001664708" a="2.4912191483954995" b="-0.00084946593435047035" c="-6.3570748767422457e-05" d="3.7937046534141659e-05" /> - <width sOffset="549.24344525320828" a="2.4892694428278759" b="0.0005229181214508222" c="-6.3092137932599714e-06" d="-5.9311503255446098e-09" /> - <width sOffset="555.26341853547387" a="2.4921874555805452" b="0.00044631068845896041" c="-6.2900359646162956e-06" d="-1.3236852275934434e-07" /> - <width sOffset="565.35911705430067" a="2.4959159683445513" b="0.00027883183301899639" c="-1.0139688854673587e-05" d="-1.9053210101634096e-07" /> - <width sOffset="569.23392756294254" a="2.4968330653979773" b="0.00019167105082465587" c="-0.00018201773587895475" d="1.1381433244583897e-05" /> - <width sOffset="575.45481557312746" a="2.4937214660490454" b="-0.00075158731112829854" c="3.7773325073804523e-05" d="8.9826154216723478e-06" /> - <width sOffset="578.13375922571583" a="2.4921517957707771" b="-0.00035580443046027646" c="5.1445179313151871e-05" d="-1.5661315009588934e-06" /> - <width sOffset="585.55051409195426" a="2.4917038363565389" b="0.00014885766525562312" c="1.9803938388136825e-05" d="-1.9122948147346341e-06" /> - <width sOffset="590.66673238676549" a="2.4927277108532664" b="0.00020133330232112836" c="-5.9277598359650282e-05" d="5.9767704719303389e-06" /> - <width sOffset="594.16710791615515" a="2.4929624831327981" b="6.0390437214541924e-06" c="0.00016951046103340562" d="-1.3325147366170772e-05" /> - <width sOffset="595.64621261078105" a="2.493299143131475" b="0.00042003017978380682" c="0.00010868662831916399" d="-1.5294275426859189e-05" /> - <width sOffset="605.23601962911175" a="2.4938341117476757" b="-0.0017149887653108414" c="0.00094853046906848767" d="-0.00015916269615953723" /> - <width sOffset="605.74191112960784" a="2.4931886603794826" b="-0.0008774834777108111" c="0.00069836001192264145" d="-0.00015588335234876567" /> - <width sOffset="607.73628594360866" a="2.4929798040454365" b="4.8007208377495031e-05" c="0.00072488913858441406" d="-0.00014383888785531875" /> - <width sOffset="612.14792796784479" a="2.4949495226388247" b="-0.0019545199128433301" c="0.00016511945567095903" d="-2.4382154954299579e-06" /> - <width sOffset="615.83760964843464" a="2.4898633889035313" b="-0.00083562322665885549" c="0.0001394006388909379" d="-1.5533220869769482e-06" /> - <width sOffset="620.50082616248301" a="2.4888405320966118" b="0.00036315378842892692" c="-1.2528892980284917e-05" d="5.3630760765968071e-07" /> - <width sOffset="625.93330816726143" a="2.4905295898305972" b="0.00027451012340055599" c="-5.7797910167045643e-06" d="3.3740620063351625e-07" /> - <width sOffset="634.32570139505322" a="2.4926257421685083" b="0.00024879041331336469" c="-1.7995924505261171e-05" d="-1.0593861366289481e-05" /> - <width sOffset="636.02900668608822" a="2.4929449457209483" b="9.5279020093576576e-05" c="-7.6620752048327145e-05" d="-1.2349632929862675e-05" /> - <width sOffset="636.57598168590721" a="2.4929721164856495" b="3.7539771663040386e-07" c="0.00011257353358037824" d="-6.6966461467837281e-06" /> - <width sOffset="646.12470520491502" a="2.4974096120157157" b="0.00031847965831990194" c="-7.9342540154461009e-05" d="-6.7228505744158374e-06" /> - <width sOffset="650.02576137266351" a="2.4970454484395344" b="-0.00060748959787381373" c="-0.00017777744263369595" d="2.2692147075851744e-05" /> - <width sOffset="654.68537814141155" a="2.4926506292662811" b="-0.00078616147602135445" c="0.00021493297311096576" d="-1.505002112491589e-05" /> - <width sOffset="656.22040372374181" a="2.4918958628949088" b="-0.00023269350569544631" c="0.00014614264125302557" d="-1.310607464392504e-05" /> - <width sOffset="662.68641811746693" a="2.4929582973233479" b="1.3358261367228848e-05" c="-8.9809514978441069e-05" d="-1.1382553331238166e-05" /> - <width sOffset="663.60744058076955" a="2.4928855237108465" b="-0.00018104175827721126" c="9.7911066712664447e-06" d="-3.3182714090027249e-07" /> - <width sOffset="666.3161022425686" a="2.4924603842887105" b="-0.00013530386363202638" c="5.8994499546833882e-06" d="-1.0584751207875109e-07" /> - <width sOffset="676.4118007613954" a="2.4915867721482652" b="-4.8550656044357146e-05" c="3.4264329999575304e-06" d="-1.0312885669471202e-07" /> - <width sOffset="684.16085389890804" a="2.4913683131037985" b="-1.4025423738991353e-05" c="1.4694601427122766e-05" d="-1.7252791389119834e-06" /> - <width sOffset="686.50749928022219" a="2.491394025117355" b="2.6438598937183425e-05" c="2.2049881704601482e-06" d="-6.7821921354650656e-07" /> - <width sOffset="692.38082804812234" a="2.4914879594705397" b="-1.7847691438163758e-05" c="2.6411137546405396e-05" d="-3.3901767804748961e-07" /> - <width sOffset="696.60319779904898" a="2.4918579477948253" b="0.00018705505035574842" c="1.6191368402427777e-05" d="-2.7257776450054976e-06" /> - <width sOffset="703.88249494103934" a="2.4930261503016364" b="-1.0523268375516601e-05" c="9.0604173577295686e-05" d="-7.9170270128030481e-06" /> - <width sOffset="706.69889631787578" a="2.4935383288568751" b="0.0003114358231332845" c="2.8671530178936551e-05" d="-6.1554618503822212e-06" /> - <width sOffset="714.1745543919551" a="2.4948972056871899" b="-0.00029188958300184595" c="-0.00047330362422421285" d="7.2494549359614251e-05" /> - <width sOffset="716.79459483670257" a="2.4921872526003597" b="-0.0012790980135848438" c="9.7253811643240273e-05" d="7.138559110815691e-05" /> - <width sOffset="718.28608719093017" a="2.4907326837499006" b="-0.00051258904986022937" c="0.00015469478250519289" d="-8.1152074411198281e-06" /> - <width sOffset="726.89029335552937" a="2.4926053785733622" b="0.00034709858576246859" c="-6.4175096462805952e-05" d="-4.5838259013746366e-06" /> - <width sOffset="729.03771918170173" a="2.4930094152366546" b="8.0619842515584732e-06" c="6.558586051827639e-05" d="-4.1805930820340587e-06" /> - <width sOffset="736.98599187435616" a="2.4951176719816317" b="0.00025832320216121613" c="-3.1439967398708444e-05" d="-5.4628428311962267e-06" /> - <width sOffset="741.17417019726736" a="2.4952467691145639" b="-0.0002924976955682476" c="2.8726361652502729e-06" d="-1.5456002046226963e-07" /> - <width sOffset="747.08169039318295" a="2.4935872196925288" b="-0.00027473925858676005" c="1.225072211703834e-06" d="2.4699262298705877e-07" /> - <width sOffset="757.17738891200975" a="2.4911925499073018" b="-0.00017448055654550095" c="7.9403333121540937e-06" d="2.514227335199314e-07" /> - <width sOffset="767.27308743083654" a="2.490499060690464" b="6.2723240763998354e-05" c="1.7106126446560588e-05" d="-4.4658207407518018e-07" /> - <width sOffset="769.51969141046118" a="2.4907212496675069" b="0.00013282261768525266" c="1.9636073129830757e-05" d="-1.3947436536063873e-06" /> - <width sOffset="777.36878594966333" a="2.4922990765938646" b="0.00018329011253869192" c="-2.032824353687486e-05" d="4.6445581626859883e-06" /> - <width sOffset="778.96441232731672" a="2.4925586514739653" b="0.00015389301254536362" c="9.31413813012915e-06" d="-2.5818621825645653e-06" /> - <width sOffset="786.56400925730998" a="2.4931329086794616" b="-0.00015187722202088293" c="8.2513533403982321e-05" d="-1.6178414442665804e-05" /> - <width sOffset="788.31430307312951" a="2.4930331116036264" b="-1.1720465901345935e-05" c="0.00016272890649480468" d="-1.7037388019420203e-05" /> - <width sOffset="794.45618380939038" a="2.4951523356783607" b="5.9113827257857229e-05" c="0.00031811841549957414" d="-0.00014644387486614476" /> - <width sOffset="796.86750963154816" a="2.4950913392768364" b="-0.00096120218663844892" c="7.9967503996376522e-05" d="-1.6810676985593194e-06" /> - <width sOffset="797.56018298731692" a="2.4944633495617232" b="-0.00085283917851776436" c="7.523765692264009e-05" d="-1.1464654743420063e-06" /> - <width sOffset="807.65588150614371" a="2.4923421037306781" b="0.00031576018071729399" c="4.2214415414692641e-05" d="-2.0187709700210585e-06" /> - <width sOffset="812.14200775235088" a="2.4944259584876818" b="0.00057263328663036692" c="-0.00020969262380253679" d="1.0812928708951225e-05" /> - <width sOffset="817.75158002497062" a="2.4929484029941964" b="-0.00075917752010165877" c="-2.5741455250062938e-05" d="1.0919817894614203e-05" /> - <width sOffset="823.69327353030576" a="2.4898194172044281" b="9.1457441212279686e-05" c="0.00014761583248914462" d="-1.3984060190357842e-05" /> - <width sOffset="827.84727854379742" a="2.4917441704251928" b="0.00059393459675879945" c="-2.9505506277203791e-05" d="-1.2044990251638711e-05" /> - <width sOffset="831.1946685532489" a="2.4929499130422634" b="-8.491342617170973e-06" c="0.00052028396460258018" d="-3.4889853755507423e-05" /> - <width sOffset="833.05821023644648" a="2.4945151286503879" b="0.0015671552126654057" c="-0.00081376211857659569" d="6.9146814292829066e-05" /> - <width sOffset="837.94297706262421" a="2.4908125998540296" b="-0.0014331957877766928" c="0.00019873366881776575" d="7.0247744422415875e-05" /> - <width sOffset="840.40866854325986" a="2.4895400582939242" b="0.00082807786736976974" c="0.00014002284979107121" d="-3.4599015512770551e-05" /> - <width sOffset="844.90944120667677" a="2.4929490254081017" b="-1.4112159437220523e-05" c="9.3878276293229626e-05" d="-1.4865876532622453e-05" /> - <width sOffset="848.038675581451" a="2.4933686141334839" b="0.0001367173035944115" c="-5.6357964153358161e-05" d="7.8535020764577213e-07" /> - <width sOffset="849.1712062055559" a="2.4934523053079936" b="1.2084993827610364e-05" c="0.00011244662451717886" d="-7.2636068905822509e-06" /> - <width sOffset="858.1343741002778" a="2.4973639802736489" b="0.00027720173980600935" c="-8.1769580855359236e-05" d="-7.588578048665289e-06" /> - <width sOffset="861.24485176165672" a="2.4972067121952843" b="-0.00045174327010475204" c="-0.00022889960666676917" d="3.4348873139346581e-05" /> - <width sOffset="866.00042238977096" a="2.4935759470860575" b="-0.00029839388750112564" c="-6.0549358311712568e-07" d="1.0713730836507967e-05" /> - <width sOffset="868.23007261910459" a="2.4930263777109296" b="-0.00014130916467686681" c="7.6583139897740129e-05" d="1.2007317254141725e-05" /> - <width sOffset="869.00081518179275" a="2.4929684560965661" b="-1.8587658122577733e-06" c="-0.0002846086787957234" d="2.5574305746887158e-05" /> - <width sOffset="874.42842434608212" a="2.4886632142591694" b="-0.00083117220157268717" c="0.0004085164634468371" d="-2.9702381101501612e-05" /> - <width sOffset="878.32577113793138" a="2.4898706099276247" b="0.00099961225239357868" c="6.1197526354530413e-05" d="-2.9495273941511918e-05" /> - <width sOffset="882.42963812008895" a="2.4929649563744452" b="1.1651460567049451e-05" c="0.0026983954050084249" d="-0.00052612248027739323" /> - <width sOffset="883.23096019052923" a="2.4944362662582638" b="0.0033227223845725112" c="-0.0014602781502596261" d="0.00014746994600920501" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423378" type="pole" s="82.803348537437344" t="-13.417389421176125" height="1.3860701743068944" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5181134" s="0" t="10.362577997595887" orientation="none" validLength="194.65359258788456" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="194.65359258788456" s="0" distance="0" tStart="10.362577997595887" tEnd="10.252241520189076" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616590" s="194.65359258788456" t="10.252241520189076" orientation="none" validLength="74.426729021067302" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="74.426729021067302" s="194.65359258788456" distance="0" tStart="10.252241520189076" tEnd="10.065408848281511" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542052046" s="269.08032160895186" t="10.065408848281511" orientation="none" validLength="293.09594328698006" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="293.09594328698006" s="269.08032160895186" distance="0" tStart="10.065408848281511" tEnd="9.6779006638162652" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487502" s="562.17626489593192" t="9.6779006638162652" orientation="none" validLength="91.1287480147015" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="91.1287480147015" s="562.17626489593192" distance="0" tStart="9.6779006638162652" tEnd="9.677514111520038" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078922958" s="653.30501291063342" t="9.677514111520038" orientation="none" validLength="84.335928480201005" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="84.335928480201005" s="653.30501291063342" distance="0" tStart="9.677514111520038" tEnd="9.8420039455733637" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741971" s="737.64094139083443" t="9.8420039455733637" orientation="none" validLength="30.494031236047363" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="30.494031236047363" s="737.64094139083443" distance="0" tStart="9.8420039455733637" tEnd="10.015733869319146" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741972" s="768.13497262688179" t="10.015733869319146" orientation="none" validLength="29.144782570626262" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="29.144782570626262" s="768.13497262688179" distance="0" tStart="10.015733869319146" tEnd="10.014531278878076" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741973" s="797.27975519750805" t="10.014531278878076" orientation="none" validLength="91.141714459250124" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="91.141714459250124" s="797.27975519750805" distance="0" tStart="10.014531278878076" tEnd="10.317158734456672" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5183046" s="0" t="-13.01803156948052" orientation="none" validLength="86.559832002206818" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="86.559832002206818" s="0" distance="0" tStart="-13.01803156948052" tEnd="-13.139307782058104" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273618502" s="86.559832002206818" t="-13.139307782058104" orientation="none" validLength="17.497917265475138" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.497917265475138" s="86.559832002206818" distance="0" tStart="-13.139307782058104" tEnd="-13.067956146226065" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542053958" s="104.05774926768196" t="-13.067956146226065" orientation="none" validLength="13.966834305486046" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.966834305486046" s="104.05774926768196" distance="0" tStart="-13.067956146226065" tEnd="-13.125286425832455" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412677" s="18.96418512399266" t="-13.129504062478855" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848133" s="66.886097120418142" t="-13.14980177432391" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8226426" type="101" subtype="-1" country="DEU" zOffset="1.3860701743068944" s="82.804382056563909" t="-13.443199903134992" orientation="+" /> - <signal dynamic="no" id="8987922" type="2113" subtype="-1" country="DEU" zOffset="0.98895116165707009" s="82.803348537437344" t="-13.417389421176125" orientation="+" /> - </signals> - </road> - <road name="" length="4.9999999928706611" id="4941542" junction="33556302"> - <link> - <predecessor elementType="road" elementId="4941552" contactPoint="end" /> - <successor elementType="road" elementId="33782205" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-479.11980560131803" y="-197.52114844967119" hdg="-0.093881892273964374" length="4.9999999928706611"> - <paramPoly3 aU="0" bU="5.0845819832549255" cU="-0.087034756179742198" dU="0.0024524156981576384" aV="-0" bV="7.7715611723760958e-16" cV="0.0014050435654568792" dV="0.00018432088835987676" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="166.01759377825309" b="0.0025659002958557625" c="4.6996301640619372e-05" d="-1.8298274169144671e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024121049484448639" b="-2.2958630251227261e-05" c="-0" d="-2.1684043542465828e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.4583684310975684" b="-5.6150124243507568e-05" c="0.0066597554116608173" d="-0.00060557152923177381" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15523179294825901" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999928706611" space="0" width="0.15523200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.5833114819454663" b="-4.104466925109471e-09" c="0.0045724155066724451" d="-0.000538732535123011" /> - <roadMark sOffset="0" color="standard" width="0.15745140277557482" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15745100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.693878610709151" b="1.5786741853948119e-09" c="-0.037468324758323283" d="0.0090451528812118161" /> - <width sOffset="2.5111635067115547" a="3.6008377996465173" b="-0.017063545380394184" c="0.012374503384966122" d="-0.0022443101202251543" /> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.5111635067115547" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.4888364861591064" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="1.6431300764452317e-14" b="-0.011425237894950603" c="0.060677806320672621" d="-0.014561733177243692" /> - <width sOffset="2.4966695751842254" a="0.12308252681099452" b="0.019254097709819746" c="-0.030839451370981392" d="-0.0087006993427746464" /> - <width sOffset="2.5111635067115547" a="0.12335508932445505" b="0.01835464454323588" c="-0.012919028057954599" d="0.0025887635195611762" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="157.67465444997839" id="4941552" junction="-1"> - <link> - <successor elementType="junction" elementId="33556302" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-636.55536700044547" y="-187.96230910904956" hdg="-0.051692224543759879" length="72.000609545767645"> - <paramPoly3 aU="0" bU="67.026822550906672" cU="10.269450875529934" dU="-5.3053925073218995" aV="-0" bV="9.7699626167013776e-15" cV="-1.6733186648264402" dV="0.58299777183613422" /> - </geometry> - <geometry s="72.000609545767645" x="-564.71698359664072" y="-192.77088531077436" hdg="-0.073986563877316947" length="85.674044904210746"> - <paramPoly3 aU="0" bU="85.915930908999385" cU="-3.5385302963553507" dU="3.2929117942472756" aV="-0" bV="3.5527136788005009e-15" cV="-0.072558060917240985" dV="-0.54006090006431118" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.7213474559243" b="0.0027729824226864009" c="-2.6108247825788321e-05" d="1.0523446834551095e-07" /> - <elevation s="10.511643629998559" a="165.7477334649638" b="0.0022589847666025309" c="-1.1053659523006633e-05" d="-1.0112442698387457e-06" /> - <elevation s="21.023287259997119" a="165.76908319713397" b="0.0016913892567220297" c="-0.00012957632864243153" d="7.1452374872310019e-06" /> - <elevation s="31.534930889995678" a="165.78084404023949" b="0.0013358004622037432" c="0.00014908279819236849" d="-8.4662950139358301e-06" /> - <elevation s="42.046574519994238" a="165.80152491479234" b="0.0016635699952194717" c="-5.2462958031221466e-05" d="2.4514509321716297e-06" /> - <elevation s="52.558218149992797" a="165.8160622056715" b="0.0013732428095152717" c="1.8646829465733038e-05" d="-1.6514882447978996e-06" /> - <elevation s="63.069861779991356" a="165.83063944839992" b="0.0012178186061590789" c="-2.4820324351348453e-05" d="1.0426358506478138e-06" /> - <elevation s="73.581505409989916" a="165.84190921160479" b="0.001041630853261752" c="-1.0022517189603303e-05" d="8.8798675261622412e-07" /> - <elevation s="84.093149039988475" a="165.8527824085923" b="0.0011252779564273818" c="3.0619967096495984e-05" d="-1.8799828019950356e-06" /> - <elevation s="94.604792669987035" a="165.86581070887547" b="0.0011458261852763268" c="-4.8632024435955353e-05" d="3.9899514268382193e-06" /> - <elevation s="105.11643629998559" a="165.8771158971808" b="0.0014460260463951924" c="0.00010472886363376496" d="-6.3992483934894217e-06" /> - <elevation s="115.62807992998415" a="165.89645538537965" b="0.001526522861841425" c="-1.3622355125310876e-05" d="1.0523446834587978e-07" /> - <elevation s="126.13972355998271" a="165.91111868008275" b="0.0012750197146973198" c="-1.5529289742024833e-05" d="1.5375633040430504e-06" /> - <elevation s="136.65136718998127" a="165.92459117912776" b="0.0014582205612279511" c="1.6517513050626686e-05" d="2.3689983926386591e-07" /> - <elevation s="147.16301081997983" a="165.94201972537527" b="0.0018840014786677421" c="2.2604113650626815e-05" d="1.0523446841041251e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024543555957712987" b="3.7882504664564642e-05" c="-9.1658259412903732e-07" d="-5.6150305879897678e-08" /> - <superelevation s="10.511643629998559" a="0.02477526839208077" b="0" c="-2.7497477823869861e-06" d="1.7439377254252131e-07" /> - <superelevation s="21.023287259997119" a="0.024673990917492797" b="0" c="5.5454033076041941e-05" d="-3.5169909374137565e-06" /> - <superelevation s="31.534930889995678" a="0.026716448942782699" b="0" c="-2.9125384437336077e-05" d="1.8471823857128568e-06" /> - <superelevation s="42.046574519994238" a="0.0256437158720948" b="0" c="2.2138488147646874e-05" d="-1.1615055658858374e-06" /> - <superelevation s="52.558218149992797" a="0.026740834458935471" b="8.0403336616819158e-05" c="8.0844749256855919e-07" d="-2.9382888341179836e-07" /> - <superelevation s="63.069861779991356" a="0.027334058314452434" b="0" c="-8.5390831153598282e-07" d="0" /> - <superelevation s="73.581505409989916" a="0.027239706012896645" b="-1.7951959727120737e-05" c="-1.7134864448852862e-06" d="-1.6246903749649495e-07" /> - <superelevation s="84.093149039988475" a="0.02667296571857487" b="-0.00010783095665541556" c="-1.239308598098087e-05" d="6.3470133690590916e-07" /> - <superelevation s="94.604792669987035" a="0.024907308574122575" b="-0.00015798105360839579" c="-2.3901222006545767e-06" d="3.1779471102096362e-07" /> - <superelevation s="105.11643629998559" a="0.02335168464692856" b="-0.00010288543140092512" c="3.0851431955793803e-06" d="1.147131833718561e-07" /> - <superelevation s="115.62807992998415" a="0.022744318594912199" b="0" c="2.9268632397060914e-05" d="-1.6487402256229477e-06" /> - <superelevation s="126.13972355998271" a="0.024063366479062358" b="6.8791935153859947e-05" c="-3.7475607958030665e-06" d="4.5224415016625502e-08" /> - <superelevation s="136.65136718998127" a="0.024424924632540031" b="4.9970559903056618e-06" c="-2.3769146701496134e-07" d="0" /> - <superelevation s="147.16301081997983" a="0.024451188268424653" b="0" c="-4.3628931369134944e-06" d="1.3081372159300492e-07" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="5.2410149566756603" b="0.00036897645347464897" c="-0.020776639568327468" d="0.0055418856212186797" /> - <laneOffset s="1.9069518300533432" a="5.2045956097411681" b="-0.018412501263367267" c="0.00059933746331113644" d="-4.002331392694338e-05" /> - <laneOffset s="7.8237459317834839" a="5.1083441665566784" b="-0.015523651374217705" c="-0.00022835495793943091" d="6.5492034107285114e-05" /> - <laneOffset s="10.511643629998559" a="5.0662401852535934" b="-0.01533174153357421" c="0.00029986092143094922" d="6.5938806132564948e-05" /> - <laneOffset s="13.233195544244991" a="5.0280642799329316" b="-0.012234371889815607" c="0.00073710667121522149" d="-4.1231418066527481e-05" /> - <laneOffset s="19.431009598152102" a="4.9707361107246264" b="-0.0078489266168806984" c="0.00037334453512422543" d="-1.8488845678461937e-05" /> - <laneOffset s="21.023287259997119" a="4.9591103595129802" b="-0.0068006172721732519" c="0.00029663640000175884" d="-2.0200484020436828e-05" /> - <laneOffset s="27.300318313795394" a="4.9231144547125556" b="-0.0054643904983496441" c="-5.6124255781152796e-05" d="9.8732498760600833e-06" /> - <laneOffset s="31.534930889995678" a="4.899718184585943" b="-0.0054085797752036271" c="7.9444462548635252e-05" d="1.2832036698159402e-05" /> - <laneOffset s="39.373564728420668" a="4.8683841100706315" b="-0.001797745735004893" c="0.00016771248197731573" d="-6.425559899568079e-06" /> - <laneOffset s="42.046574519994238" a="4.864654301442342" b="-0.0010388830388729723" c="0.00011225488604509619" d="-9.1593877201520876e-06" /> - <laneOffset s="49.404215225396499" a="4.8594392480516522" b="-0.00087454777698367861" c="-0.00011297251738830379" d="1.6909821167316779e-05" /> - <laneOffset s="52.558218149992797" a="4.8560876499452128" b="-0.0010825358458417082" c="7.0396375542943742e-05" d="1.8034523751474259e-05" /> - <laneOffset s="55.915569581115584" a="4.8539291792555312" b="-0" c="1.7739313132116052e-05" d="-1.99405730121641e-07" /> - <laneOffset s="63.464733705174233" a="4.8548543510443478" b="0.0002337416472876161" c="1.8635630188148034e-05" d="3.997744855161417e-07" /> - <laneOffset s="73.581505409989916" a="4.8595403447032481" b="0.00073355611974493457" c="2.8384166230824317e-05" d="5.036172355205211e-07" /> - <laneOffset s="84.093149039988475" a="4.8709724653305981" b="0.0014972256332952637" c="2.8895571116353317e-05" d="2.4376167643432982e-06" /> - <laneOffset s="88.409156734952816" a="4.8781687472800357" b="0.0018828758558217967" c="0.00020886318665851782" d="-1.9185369636149178e-06" /> - <laneOffset s="94.604792669987035" a="4.8973954867329557" b="0.0042500220545584975" c="0.0001556842734756218" d="-2.5662745463219497e-06" /> - <laneOffset s="103.01663368388378" a="4.942634588205947" b="0.0063244431732800846" c="0.00011682819536030907" d="5.5253820397930077e-06" /> - <laneOffset s="105.11643629998559" a="4.9564809421561629" b="0.0068881625369851202" c="0.00012918669473368339" d="-4.2951350661282214e-07" /> - <laneOffset s="113.315237354423" a="5.0214028736670713" b="0.0089198984247781353" c="0.0001941728361695208" d="-1.1643915490917811e-05" /> - <laneOffset s="115.62807992998415" a="5.0429278138055897" b="0.0096312225070740391" c="0.00011923973834145323" d="-1.373478471403138e-05" /> - <laneOffset s="119.32534687985114" a="5.0794728282949126" b="0.0099496902188366421" c="-9.2466591619389362e-05" d="1.8280468063713034e-05" /> - <laneOffset s="126.13972355998271" a="5.1487645102661226" b="0.011236086460135252" c="0.00031298792751982627" d="3.2697590995969858e-06" /> - <laneOffset s="127.15190374306975" a="5.1604615038775457" b="0.011879736505853061" c="0.00015748935529949013" d="7.5378067176938832e-06" /> - <laneOffset s="132.63270757525578" a="5.2315438822798752" b="0.014285362321386658" c="0.0003820812843091674" d="-1.8246746970748084e-05" /> - <laneOffset s="136.65136718998127" a="5.2939381493498416" b="0.016472237206414622" c="0.00016396989201535712" d="-1.8084305862204946e-05" /> - <laneOffset s="140.38172667344958" a="5.3567284935458543" b="0.016940609573097551" c="0.00020069678062085432" d="-1.5747852449101037e-05" /> - <laneOffset s="146.67488984295971" a="5.4673619920983398" b="0.017595615501834319" c="-4.8131371216093946e-05" d="5.369215674972493e-06" /> - <laneOffset s="156.03610003008635" a="5.6322649902288324" b="0.01810602918708118" c="0.011194106688632103" d="-0.0068023814756230606" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929383180529507" b="-0.00061421165127674177" c="0.0048387424527979034" d="-0.0021390078425813932" /> - <width sOffset="1.9069518300533432" a="2.4945298779117069" b="-0.0054949973735775627" c="0.0029301374434214538" d="0.0034429010925523004" /> - <width sOffset="2.4052188861073831" a="2.4929452705054755" b="-1.0707684363061437e-05" c="-0.00037879824880359466" d="4.6815293517095521e-05" /> - <width sOffset="7.8237459317834839" a="2.489213428833736" b="7.7873990024131257e-06" c="0.00049947485134398497" d="-5.8700054517170025e-05" /> - <width sOffset="10.511643629998559" a="2.4917030373579099" b="0.0014205745941122533" c="2.646110883229813e-05" d="-5.8966330403310489e-05" /> - <width sOffset="13.233195544244991" a="2.4945765482567914" b="0.00025434177985505374" c="-0.00035385677694802078" d="4.8203893795783573e-05" /> - <width sOffset="17.722336794932868" a="2.4929481228303247" b="-8.4134469635292058e-06" c="-4.9141283301162283e-05" d="4.1464894695377329e-05" /> - <width sOffset="19.431009598152102" a="2.4929971267814661" b="0.00018683189021577364" c="-0.00023946332071430037" d="1.8722322307563317e-05" /> - <width sOffset="21.023287259997119" a="2.4927630737465751" b="-0.00043334948677297824" c="-0.00015228700486227874" d="1.9521053391095854e-05" /> - <width sOffset="27.300318313795394" a="2.4888706340590598" b="-3.7715969753247987e-05" c="0.00018767922944289714" d="-1.0552680505398307e-05" /> - <width sOffset="31.534930889995678" a="2.4912750588653489" b="0.00098409146363913607" c="4.8446848321385025e-05" d="-1.2484937137466016e-05" /> - <width sOffset="39.373564728420668" a="2.495952542855556" b="-0.00055777451837995553" c="-3.1658812022016957e-05" d="6.7726594602974495e-06" /> - <width sOffset="42.046574519994238" a="2.4943647528336026" b="-0.00058185157091290526" c="3.1026454987964904e-05" d="7.3928347670164809e-06" /> - <width sOffset="45.86682282990494" a="2.4930069235762922" b="-2.1114364352271906e-05" c="7.4123578274266124e-06" d="8.5296486161548442e-06" /> - <width sOffset="49.404215225396499" a="2.4934025412383836" b="0.00035152466083761692" c="0.00012098345193457255" d="-1.7539560271278471e-05" /> - <width sOffset="52.558218149992797" a="2.4951644553764449" b="0.00059125231953725951" c="-5.4262850300618812e-05" d="-1.7783349178227249e-05" /> - <width sOffset="55.915569581115584" a="2.4958648739306764" b="-0.00037445812301305768" c="9.2405604907740726e-07" d="4.5058030337135766e-07" /> - <width sOffset="63.069861779991356" a="2.4933981834393713" b="-0.00029204882171310695" c="1.3282345207347551e-05" d="6.8617340791096856e-07" /> - <width sOffset="63.464733705174233" a="2.493284974840785" b="-0.00028123819889238841" c="8.6828402485254133e-06" d="8.6993194895795634e-08" /> - <width sOffset="73.581505409989916" a="2.4914185092326733" b="-7.8842556094059989e-05" c="1.0141763993021424e-05" d="1.4407456786842189e-07" /> - <width sOffset="84.093149039988475" a="2.4918776948483394" b="0.00018212906928528048" c="9.9874383790919394e-06" d="1.5032886151219198e-07" /> - <width sOffset="88.409156734952816" a="2.4928618967185532" b="0.00027674173419024208" c="-0.00013647139746261058" d="4.5064825928000696e-06" /> - <width sOffset="89.408428918940984" a="2.4930066608681534" b="1.7497367003410733e-05" c="-3.2414762280342098e-05" d="2.9290233541333442e-06" /> - <width sOffset="94.604792669987035" a="2.4926332945182557" b="-8.2110234282275693e-05" c="3.689549836795341e-06" d="1.5526578862186371e-06" /> - <width sOffset="103.01663368388378" a="2.4931278291686194" b="0.00030955545964342964" c="1.6966481371397644e-05" d="-6.5389987000013624e-06" /> - <width sOffset="105.11643629998559" a="2.4937921020579976" b="0.00029431329274957375" c="-1.2177787747208029e-05" d="-8.827129880000571e-07" /> - <width sOffset="113.315237354423" a="2.4949000369348751" b="-8.3382023460910198e-05" c="-0.00010943998108585099" d="1.0331688996179722e-05" /> - <width sOffset="115.62807992998415" a="2.4942495897897583" b="-0.00042381684261559756" c="-3.7680720753093905e-05" d="1.1482914617351776e-05" /> - <width sOffset="119.32534687985114" a="2.4927478946230837" b="-0.00023154136000431286" c="0.00014904831455626796" d="-2.0532338160375057e-05" /> - <width sOffset="123.31933977983246" a="2.4928925774834951" b="-2.3539838848601197e-05" c="0.00017151162487658475" d="-2.6914375808185746e-05" /> - <width sOffset="126.13972355998271" a="2.4935866644079532" b="0.00030164094242624874" c="-6.2914917891720762e-05" d="-6.5317541718026812e-06" /> - <width sOffset="127.15190374306975" a="2.4938207491631461" b="0.00015420295883153759" c="8.2678474020357563e-05" d="-1.0799801789899857e-05" /> - <width sOffset="132.63270757525578" a="2.4953714326360652" b="8.7239390596497227e-05" c="-0.00019554852026625594" d="1.4984751898546545e-05" /> - <width sOffset="136.65136718998127" a="2.4935364908541375" b="-0.00075845211553966785" c="-1.4797106417085797e-05" d="1.4929900996019655e-05" /> - <width sOffset="140.38172667344958" a="2.4912762944606781" b="-0.00024557438891423949" c="-8.6825187344377204e-05" d="1.2593447582916601e-05" /> - <width sOffset="146.67488984295971" a="2.4894309515608937" b="0.00015786448608803849" c="0.00010244941091240456" d="-8.5236205363918916e-06" /> - <width sOffset="147.16301081997983" a="2.489531427035427" b="0.00025178733230287256" c="8.8169823428806276e-05" d="-8.3589166079564318e-06" /> - <width sOffset="155.40500709301836" a="2.4929160628258149" b="1.701826265226164e-06" c="0.0077688526287547363" d="-0.0034381166305446475" /> - <width sOffset="156.03610003008635" a="2.4951471294735112" b="0.0056994561814278748" c="-0.0098319117287241665" d="0.0033696340607486689" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15301184618148689" weight="standard" type="solid"> - <type name="solid"> - <line length="157.67465444997839" space="0" width="0.15301200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.5719970546712849" b="3.7089218118176864e-09" c="-0.014507851445080284" d="0.0049634137522181349" /> - <width sOffset="1.9069518300533432" a="3.5536588745877067" b="-0.0011836986451862937" c="0.0035587716188833648" d="-0.00061849518292747649" /> - <width sOffset="5.6055142684552974" a="3.5666704896758854" b="-0.00024088299632458489" c="-8.6239138129941864e-05" d="-3.8507133490015275e-05" /> - <width sOffset="7.8237459317834839" a="3.5652915088270483" b="-0.0011919087948400377" c="-0.00045975566437147846" d="6.7008214544243746e-05" /> - <width sOffset="10.511643629998559" a="3.5600674064477142" b="-0.002211099532428611" c="8.0505212159817549e-05" d="6.7411350930485567e-05" /> - <width sOffset="13.233195544244991" a="3.5560049595060326" b="-0.00027498505717082032" c="0.00052977378328485504" d="-3.9758873268606171e-05" /> - <width sOffset="19.431009598152102" a="3.5651851663755552" b="0.0017101329864535036" c="0.00019339132372426412" d="-1.7016300880468843e-05" /> - <width sOffset="21.023287259997119" a="3.5683297928277913" b="0.0021965716149815679" c="0.00011854509804882111" d="-1.5686398991665802e-05" /> - <width sOffset="22.182479179348366" a="3.5710108993103153" b="0.0024081699923703759" c="4.1802947664901972e-05" d="-2.3389343272427762e-05" /> - <width sOffset="25.302508523567138" a="3.5782210091608126" b="0.0019859663213135405" c="-0.00021235728914221463" d="-1.757034960070875e-05" /> - <width sOffset="27.300318313795394" a="3.5812009208640641" b="0.00092708472371441468" c="-0.00029002739778183757" d="1.2503384295646068e-05" /> - <width sOffset="31.534930889995678" a="3.5808754529475939" b="-0.00085659265982365035" c="-0.00012369925673688263" d="1.5036840179754463e-05" /> - <width sOffset="39.373564728420668" a="3.5738026574132249" b="-2.4080054775915249e-05" c="1.6416704225494922e-05" d="-4.2207564179706727e-06" /> - <width sOffset="42.046574519994238" a="3.5737749776764369" b="-2.678771011088211e-05" c="-2.1360507821868959e-05" d="-6.9545842382801079e-06" /> - <width sOffset="42.72731910334528" a="3.5737446494118643" b="-6.5538348260705073e-05" c="6.6406233766139259e-05" d="-9.0822575268478594e-06" /> - <width sOffset="49.404215225396499" a="3.5735640632884813" b="-0.00039345008215713905" c="-0.00013857058806963153" d="1.6986951360628476e-05" /> - <width sOffset="52.558218149992797" a="3.5714776258829852" b="-0.00076060911855786251" c="4.3144916731955117e-05" d="1.8168583668558634e-05" /> - <width sOffset="55.915569581115584" a="3.5700978764093332" b="0.00014347457199714858" c="-8.1618869153696263e-06" d="-6.5345813044669174e-08" /> - <width sOffset="58.747483696759865" a="3.5704372438016145" b="9.5674877651705494e-05" c="-0.0026256488609637395" d="0.00060386687083058299" /> - <width sOffset="61.349218345572396" a="3.5635479079719135" b="-0.0013040418127289329" c="0.00014430971837164967" d="-5.0029449521122441e-06" /> - <width sOffset="63.069861779991356" a="3.5617058765306293" b="-0.00085186603787524781" c="0.00011773339400419726" d="-5.3350861856834075e-06" /> - <width sOffset="63.464733705174233" a="3.5613875275098645" b="-0.0007613824153039541" c="0.00011682572358452478" d="-4.7359059220364562e-06" /> - <width sOffset="73.581505409989916" a="3.5607380428459789" b="0.0001482692378946079" c="-2.8539961210833068e-05" d="-4.7195353333487315e-06" /> - <width sOffset="78.329759380972305" a="3.5602933594013213" b="-0.00044197946874668785" c="-0.00017895193530296605" d="3.723517684968593e-06" /> - <width sOffset="84.093149039988475" a="3.5525147061446285" b="-0.0021336704686417398" c="-0.00012692290614519893" d="5.7087780442570549e-06" /> - <width sOffset="88.409156734952816" a="3.5414004337356904" b="-0.0029102429242061985" c="9.5399781163696472e-05" d="1.3526243163002919e-06" /> - <width sOffset="94.604792669987035" a="3.5273533229971843" b="-0.0015723531754062376" c="0.00010688394287616988" d="6.0858805739212603e-07" /> - <width sOffset="101.90955553775554" a="3.5218081509344703" b="8.6592512662453207e-05" c="0.00019403087732170794" d="-1.3924652276545394e-05" /> - <width sOffset="103.01663368388378" a="3.5221229303342625" b="0.00046500811915379647" c="0.00017368904496895747" d="-5.8329956897834663e-06" /> - <width sOffset="105.11643629998559" a="3.5238111761617876" b="0.0011172775143997024" c="0.0001189139216305247" d="-1.1011333836035059e-05" /> - <width sOffset="113.315237354423" a="3.5348963119182168" b="0.00084662391551333475" c="-7.6374655957841441e-05" d="-2.2225735820329734e-05" /> - <width sOffset="115.62807992998415" a="3.5361708975985851" b="0.00013666636632547573" c="-0.00022473000753957403" d="-2.4316605021126557e-05" /> - <width sOffset="115.87471020627783" a="3.5361905693346847" b="2.1378637190252667e-05" c="-0.00025648144530603247" d="3.0681571299141566e-05" /> - <width sOffset="119.32534687985114" a="3.5344710361847449" b="-0.00065270332404813308" c="1.7685868660753358e-06" d="6.2696824126552562e-05" /> - <width sOffset="119.49235626825558" a="3.5343623699888407" b="-0.00064686633782629933" c="8.5347947183663189e-05" d="5.3820185210673332e-06" /> - <width sOffset="126.13972355998271" a="3.5354145865074154" b="0.0012012656668189178" c="0.00022151066049816873" d="-9.8464164549810827e-06" /> - <width sOffset="127.15190374306975" a="3.5368472128038526" b="0.0016194198499666235" c="2.6184289355124773e-05" d="-5.5783688368839372e-06" /> - <width sOffset="132.63270757525578" a="3.5455910735239171" b="0.0014037323671763392" c="3.5114662635236818e-05" d="-3.1362922525305864e-05" /> - <width sOffset="135.94084864782877" a="3.5494836544723523" b="0.00060637247677183988" c="-0.00035953053708713285" d="5.3153622047275002e-05" /> - <width sOffset="136.65136718998127" a="3.5497520551661412" b="0.000175967931928072" c="-0.0002443596317910486" d="5.3316063148908861e-05" /> - <width sOffset="140.13042216255258" a="3.5496517037668913" b="0.00041167140232633431" c="-0.00012265962343982104" d="-9.8178197580418224e-06" /> - <width sOffset="140.38172667344958" a="3.5497472563893089" b="0.00034816146644461865" c="0.00010904836352133" d="-7.4813664567351335e-06" /> - <width sOffset="146.67488984295971" a="3.5543924245295164" b="0.00083180582930621194" c="1.6287247250701374e-05" d="1.3635701669617121e-05" /> - <width sOffset="147.16301081997983" a="3.5548039128791169" b="0.00085745273564786367" c="3.6685780392940128e-05" d="1.3600019451057706e-05" /> - <width sOffset="156.03610003008635" a="3.5748013870589492" b="0.0047207435891553681" c="0.011490159328368322" d="-0.0067941506718483882" /> - <width sOffset="156.53433236222673" a="3.5791653858071437" b="0.011110634060249119" c="-0.0099213783290085008" d="0.0029521881264771253" /> - <roadMark sOffset="0" color="standard" width="0.15327738036321931" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.153277" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - <speed sOffset="16.444088899724203" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.5730146475288223" b="2.8990967375765002e-09" c="0.0037888404605455643" d="-0.0004906637714004611" /> - <width sOffset="4.9902916623535907" a="3.606391797241999" b="0.0011578251136073539" c="0.0013139783709352026" d="0.00061627642783549015" /> - <width sOffset="5.6055142684552974" a="3.6077449635120913" b="0.0034743832760705372" c="-0.00076619845773917106" d="3.6288378397318412e-05" /> - <width sOffset="10.511643629998559" a="3.6106335924707782" b="-0.0014233589555996268" c="-0.00023179854880043781" d="3.6400768008201405e-05" /> - <width sOffset="17.280332283356703" a="3.6016676205728793" b="0.00044181614196527053" c="-0.00012112601739476403" d="4.7048586356777064e-05" /> - <width sOffset="20.638316770228769" a="3.6035668950154447" b="0.0012199055890089131" c="0.0013153673917241442" d="-0.00012002859470334043" /> - <width sOffset="21.023287259997119" a="3.604224615059513" b="0.0021792953135674632" c="0.0011819171821733146" d="-0.00012307013493792018" /> - <width sOffset="22.182479179348366" a="3.6081473108143953" b="0.0044233154217301028" c="0.00077612297389207264" d="-0.00011536719065715442" /> - <width sOffset="25.302508523567138" a="3.6259994646687543" b="0.0058972138118229258" c="-0.0002684901619879804" d="-0.00012118618432874434" /> - <width sOffset="30.121772298286494" a="3.6346196962876469" b="-0.0051343936826893739" c="-0.016327308911248024" d="0.0070305210693191924" /> - <width sOffset="31.534930889995678" a="3.6145989146512383" b="-0.0091603328041118051" c="0.013481068226808708" d="0.0070309464003538201" /> - <width sOffset="31.689485846540883" a="3.6135311227363065" b="-0.004489351377940755" c="0.0013140517753002577" d="-5.7080772941733088e-05" /> - <width sOffset="42.046574519994238" a="3.6445753115420283" b="0.0043611089012821477" c="-0.0004578328440363982" d="-5.810203835303387e-05" /> - <width sOffset="42.72731910334528" a="3.6473136178076198" b="0.0036569986915388395" c="-0.00067846041594739294" d="-5.597436506532409e-05" /> - <width sOffset="44.615652241795061" a="3.6514230950575182" b="0.00049589960270991881" c="-2.4959438907287433e-05" d="-3.1803774281922694e-07" /> - <width sOffset="52.558218149992797" a="3.6536279069456064" b="3.9226009701789184e-05" c="-2.2677459068931476e-05" d="-1.0620110131084168e-06" /> - <width sOffset="55.869259030666598" a="3.6534706232253051" b="-0.00014587443220180526" c="1.8822377513479567e-05" d="-2.4749293719203165e-07" /> - <width sOffset="58.747483696759865" a="3.6532007905944752" b="-4.3675195797672751e-05" c="0.0026336171695411563" d="-0.00060417970958080063" /> - <width sOffset="61.349218345572396" a="3.6602738439971998" b="0.0013911515053614222" c="-0.00013878318004282108" d="4.6901062020287708e-06" /> - <width sOffset="63.069861779991356" a="3.6622805284541062" b="0.00095521555010084479" c="-0.0001127624213042971" d="5.1700871898218243e-06" /> - <width sOffset="66.284334774811725" a="3.6643576098700157" b="0.00039053703282902362" c="-0.00035181974348764641" d="1.3033448151244625e-05" /> - <width sOffset="73.581505409989916" a="3.6535378212738783" b="-0.0026619978857603211" c="-6.853018365171395e-05" d="1.3153860894173543e-05" /> - <width sOffset="78.329759380972305" a="3.6407610734200846" b="-0.0024230977996458872" c="0.00020202674995052806" d="4.7108078758673454e-06" /> - <width sOffset="84.093149039988475" a="3.634408310238797" b="0.00037505187909830321" c="0.00027558193462454443" d="4.9395960451671781e-06" /> - <width sOffset="91.713784940666088" a="3.6554566896176839" b="0.0054358587068094651" c="0.0020360980186809488" d="-0.0009362536937277409" /> - <width sOffset="93.110784677663375" a="3.6644716499795393" b="0.0056431141590784157" c="-0.0015818822479434439" d="9.547989845776447e-05" /> - <width sOffset="94.604792669987035" a="3.6696900500108933" b="0.0015557752688000158" c="-0.0011803688961908631" d="8.7153346282041816e-05" /> - <width sOffset="101.90955553775554" a="3.6520411924652754" b="-0.0017374617221810789" c="0.00065572452686306934" d="0.00010168658661596924" /> - <width sOffset="102.8016252516356" a="3.6510852606156003" b="-0.00032479472966445017" c="0.00035049208100947825" d="-1.4291375895199662e-05" /> - <width sOffset="105.11643629998559" a="3.6520342174397751" b="0.001068116563083951" c="0.00023758188911911525" d="-1.7294399028248168e-05" /> - <width sOffset="113.76801949229787" a="3.6678587603152959" b="0.0012955838359044467" c="-4.3821913493215193e-05" d="1.6406078301353874e-05" /> - <width sOffset="115.62807992998415" a="3.6702225894504639" b="0.0013028474920198426" c="4.8520442620576126e-05" d="1.5948731124379175e-05" /> - <width sOffset="115.87471020627783" a="3.6705471016731206" b="0.0013296910285166708" c="7.4080567227899493e-05" d="-3.9049445203659418e-05" /> - <width sOffset="119.49235626825558" a="3.6744781590118336" b="0.00033252277664813992" c="-0.00040188713333759815" d="1.8265360352179918e-05" /> - <width sOffset="126.13972355998271" a="3.6642952688051995" b="-0.0025891586051329952" c="-3.2471183881833271e-05" d="1.8565911446291775e-05" /> - <width sOffset="135.94084864782877" a="3.6532794592059243" b="0.0021247718322650808" c="0.00059681556070984455" d="-6.5950633118564631e-05" /> - <width sOffset="136.65136718998127" a="3.6550667871155937" b="0.0028729859965988154" c="0.00045700749646303588" d="-6.6012002780195227e-05" /> - <width sOffset="138.78586937356653" a="3.6626393866345888" b="0.0039216812220419471" c="-0.0009054437829320326" d="-2.8892103154432045e-05" /> - <width sOffset="140.13042216255258" a="3.6662051842924748" b="0.0013301519381521687" c="-0.0005872161210550193" d="3.4241779864202011e-05" /> - <width sOffset="147.16301081997983" a="3.6584272016856594" b="-0.0018486286575491867" c="0.00013445853315897685" d="3.4302300593494538e-05" /> - <width sOffset="156.53433236222673" a="3.6811424484906925" b="0.0097089353454024863" c="0.012355173253590179" d="-0.009712036497730718" /> - <roadMark sOffset="0" color="standard" width="0.29259667075674861" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.292597" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - <speed sOffset="16.444088772538226" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.4919747584701648" b="8.3369942205781082e-09" c="0.02542863440958127" d="-0.018629446122290672" /> - <width sOffset="0.90001442746846771" a="3.4989911008594259" b="0.00050127853804910957" c="-0.0070091616819750032" d="0.0010451585695630866" /> - <width sOffset="4.9902916623535907" a="3.4552977426490843" b="-0.0043798883718910234" c="0.00094499933710327083" d="-6.1781629672209742e-05" /> - <width sOffset="6.2100911529885376" a="3.4512491010174027" b="-0.0023502456133908407" c="0.00094119415189289205" d="-5.7638549501875967e-05" /> - <width sOffset="10.511643629998559" a="3.4539670109390488" b="0.0025474270507327614" c="0.00019727595958104083" d="-5.7707303486831011e-05" /> - <width sOffset="10.947367014272032" a="3.4551096644851422" b="0.0026864745108405447" c="0.00066800358154522638" d="-0.0001549477715051445" /> - <width sOffset="14.810466403692887" a="3.466523848181787" b="0.00091049661341365343" c="-0.0013017034761688552" d="0.0001390594453011096" /> - <width sOffset="17.280332283356703" a="3.4629271288409562" b="-0.0029746824753941175" c="0.00035715492617978439" d="0.00012841162695313778" /> - <width sOffset="18.344968544942493" a="3.4603199472919206" b="-0.0017775576865183117" c="0.00030531722253711763" d="-6.0893092938155233e-05" /> - <width sOffset="20.638316770228769" a="3.4571147112598091" b="-0.0013379520829098126" c="-0.001076158117113035" d="0.00010618408809865684" /> - <width sOffset="21.023287259997119" a="3.4564462082809788" b="-0.0021193201464901196" c="-0.00094613025562209684" d="0.00010541156509486061" /> - <width sOffset="30.121772298286494" a="3.4382360762110138" b="0.0068426524268382968" c="0.016237860572877263" d="-0.0070462956885528156" /> - <width sOffset="31.420768135227089" a="3.4590793938860744" b="0.013358928453314486" c="-0.011202619396543993" d="-0.0070170415884102553" /> - <width sOffset="31.689485846540883" a="3.4617240843616846" b="0.0058181589087201889" c="-0.0014324101664358346" d="7.0985584801075253e-05" /> - <width sOffset="40.893186433253263" a="3.4492782785800027" b="-0.002509626665948889" c="0.00084029080985203303" d="-2.5264424667170021e-06" /> - <width sOffset="42.046574519994238" a="3.4474976709085454" b="-0.00058134665714028831" c="0.00082453418099374043" d="-9.1844880484815981e-06" /> - <width sOffset="44.615652241795061" a="3.4512904688006389" b="0.0034733808520678493" c="-0.00021684853231022209" d="-6.4840815370929597e-05" /> - <width sOffset="48.336262630766178" a="3.4578721702586579" b="-0.00083299982659145052" c="1.6133685214460946e-05" d="-1.4851137373894015e-06" /> - <width sOffset="52.558218149992797" a="3.4545310998289707" b="-0.00077618447294391783" c="-1.0153459553284637e-05" d="-7.9807016094903149e-07" /> - <width sOffset="52.924223445423429" a="3.4542456129160573" b="-0.00078393764101983591" c="-9.18045493489442e-07" d="-1.7983001498533055e-07" /> - <width sOffset="55.869259030666598" a="3.451924332847415" b="-0.00079402411803690127" c="-5.4555785096597673e-05" d="-9.943480909197428e-07" /> - <width sOffset="63.069861779991356" a="3.4430070035051434" b="-0.0017343600981397245" c="-7.4911971557667517e-05" d="-9.4604254323139435e-07" /> - <width sOffset="66.284334774811725" a="3.4366264741946453" b="-0.0022452910264068255" c="0.00020487958296182688" d="-8.8094035046540635e-06" /> - <width sOffset="73.432829129970429" a="3.4278275385942178" b="-0.00066663717530511622" c="-0.00083577704826505851" d="0.00014512628421143979" /> - <width sOffset="73.581505409989916" a="3.4277104278593526" b="-0.00090553372906989867" c="-0.00076976951246555156" d="0.00014509334331821758" /> - <width sOffset="79.116112979693341" a="3.4237176297897158" b="0.0039071679874448512" c="7.9801126909146898e-06" d="-7.8213263460970476e-06" /> - <width sOffset="84.093149039988475" a="3.4423971633027977" b="0.0034053790091877192" c="-0.00011830570628944553" d="-8.6219850271809845e-06" /> - <width sOffset="91.713784940666088" a="3.4576620617345788" b="0.00010010774104451154" c="-0.0019630082273759215" d="0.00093257130474575769" /> - <width sOffset="93.110784677663375" a="3.4565134480337614" b="7.5505384917746998e-05" c="0.001639539149931673" d="-9.9162287440442064e-05" /> - <width sOffset="94.604792669987035" a="3.4599551252451062" b="0.0043104660818188431" c="0.0011477215153196006" d="-5.2913446064282496e-05" /> - <width sOffset="95.698834590368946" a="3.4659754059544645" b="0.0066317762715660438" c="-0.00043240914954074483" d="3.0254347215379724e-05" /> - <width sOffset="101.59851945298493" a="3.4962628534289277" b="0.00468874481891394" c="-0.0010581969129024075" d="-2.1367088687512358e-05" /> - <width sOffset="102.8016252516356" a="3.5003349982801399" b="0.0020497148879068533" c="-0.00055795049926640511" d="9.4610873823045976e-05" /> - <width sOffset="105.11643629998559" a="3.5032635192129153" b="0.00098748950869073995" c="8.1528759409751889e-05" d="9.6820536878373963e-05" /> - <width sOffset="108.11684255265718" a="3.5095755631318255" b="0.0040915908561882704" c="0.024304449873662017" d="-0.0060427499816306674" /> - <width sOffset="110.84441939572758" a="3.5789316967964133" b="0.0018078043822136554" c="-9.2897730621453354e-05" d="4.351474309532032e-05" /> - <width sOffset="113.76801949229787" a="3.5845103588126408" b="0.0023804313978089018" c="0.00012129339747651052" d="9.8142657657493476e-06" /> - <width sOffset="115.62807992998415" a="3.5894209185322099" b="0.002933524419013964" c="0.00018223516970007359" d="8.022555342127758e-06" /> - <width sOffset="118.90991922273309" a="3.6012946053620887" b="0.0043888775541917171" c="0.00012140980113911084" d="-1.7683472946068749e-06" /> - <width sOffset="126.13972355998271" a="3.638703167576105" b="0.0058671208532869046" c="8.0799695417783942e-05" d="-1.8511723715566311e-06" /> - <width sOffset="126.75212242774208" a="3.6423260630875474" b="0.0059640013885738337" c="0.00011375593594452347" d="-1.3323786029683187e-05" /> - <width sOffset="134.56053860379978" a="3.6894880041483926" b="0.0053034005784916988" c="-0.00077870041721049338" d="7.7755515603085052e-05" /> - <width sOffset="136.65136718998127" a="3.6978830671244545" b="0.0030668820734179696" c="-0.00028950231614620434" d="7.8415894721822253e-05" /> - <width sOffset="138.78586937356653" a="3.703872927156179" b="0.0029028072945601786" c="0.0011523773665521094" d="4.1295995096163832e-05" /> - <width sOffset="142.24795044972598" a="3.7294487228567101" b="0.012366977099151535" c="0.0021677107296314262" d="-0.00033498833554801855" /> - <width sOffset="146.45539903720925" a="3.7949054147673653" b="0.012817522733885485" c="-0.0032695514298377061" d="0.00036973061300603973" /> - <width sOffset="147.16301081997983" a="3.8024691330662401" b="0.008745764866738481" c="-0.002484354728443894" d="0.00036970577449231551" /> - <width sOffset="151.62236512325282" a="3.8248508869112694" b="0.0086442594939855413" c="-0.00029400949704911516" d="-4.2179979235767361e-05" /> - <width sOffset="157.21766096104392" a="3.8566245946918567" b="0.0013924909782458217" c="-0.00042185136442837766" d="-0.0016071501323709247" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="110.84441939572758" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="110.84441939572758" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="46.830235054250807" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - <speed sOffset="16.444088772538226" max="80" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929383180527127" b="0.0088932641666206944" c="-0.028037811546998234" d="0.017766728543760674" /> - <width sOffset="0.90001442746846771" a="2.4911835966223537" b="0.0015989289013213261" c="0.0020706097420303297" d="-0.0019078761480924259" /> - <width sOffset="1.9035700407534775" a="2.4929452715875033" b="-9.5298628647044747e-06" c="7.376360188454602e-05" d="4.4340663498914372e-06" /> - <width sOffset="6.2100911529885376" a="2.4946264056101812" b="0.00087250338904064535" c="-9.1228613071532534e-05" d="2.9098617960448273e-07" /> - <width sOffset="10.511643629998559" a="2.4967146499339172" b="0.00010380671659681803" c="-8.7323403005443298e-05" d="5.5163094418179398e-07" /> - <width sOffset="10.947367014272032" a="2.4967433478078984" b="2.8023208680326775e-05" c="-0.00063276321418175669" d="9.7792098962484544e-05" /> - <width sOffset="14.810466403692887" a="2.4930463617655949" b="-0.00048261917402882097" c="0.00067454971242497316" d="-0.00019621511785276606" /> - <width sOffset="15.311779920565115" a="2.4929492221776233" b="4.5767053662200061e-05" c="0.00091301374865245324" d="-0.00017765989319965656" /> - <width sOffset="18.344968544942493" a="2.4965301971353506" b="0.00068091552656614207" c="-0.00024164142550052778" d="1.1644826690840958e-05" /> - <width sOffset="21.023287259997119" a="2.4968442451932242" b="-0.0003628712881195463" c="-0.00014480620776613606" d="1.1551431746015577e-05" /> - <width sOffset="31.420768135227089" a="2.4904009948913579" b="0.00037228214435205183" c="0.00019666483752850682" d="-1.7702666090079436e-05" /> - <width sOffset="31.534930889995678" a="2.490446032466032" b="0.00041649357987120616" c="0.00019596519228285366" d="-1.6559806270973914e-05" /> - <width sOffset="40.893186433253263" a="2.4979338408758949" b="-0.00026649354527060604" c="-0.00058165827505207463" d="5.6952220997480454e-05" /> - <width sOffset="42.046574519994238" a="2.4969400730518032" b="-0.0013809576796299655" c="-0.00037908310179039784" d="6.3819415357508038e-05" /> - <width sOffset="48.336262630766178" a="2.4891373072507834" b="0.0014245353766210822" c="-0.00013159489917856447" d="4.6371372396220234e-07" /> - <width sOffset="52.558218149992797" a="2.4928408624481389" b="0.0003381567188115321" c="-7.9618991071337867e-05" d="-1.8453174907257017e-05" /> - <width sOffset="52.924223445423429" a="2.4929530590881042" b="0.00027245881903974949" c="-0.00010999257804394973" d="-1.9071415054696481e-05" /> - <width sOffset="53.924701549996968" a="2.4930964516093264" b="-4.900479974477112e-06" c="6.1599262881657622e-05" d="-3.1106933056271909e-06" /> - <width sOffset="63.069861779991356" a="2.4958242248550775" b="0.0003412910205043123" c="-2.2606432026885763e-05" d="-2.9857227225121319e-06" /> - <width sOffset="73.432829129970429" a="2.4936105010244658" b="-0.0010891684868819494" c="0.00073630544414186156" d="-0.00015692141061190583" /> - <width sOffset="73.581505409989916" a="2.4934643275575024" b="-0.00088063225014439837" c="0.00065344012726867035" d="-0.00014951770975523462" /> - <width sOffset="74.683118611571544" a="2.493087309866576" b="1.4701902848157991e-05" c="0.00081829858356461836" d="-0.00016262650953164832" /> - <width sOffset="79.116112979693341" a="2.4950660654401569" b="-0.002317806900993832" c="0.00028688590455242782" d="-9.7118398673383285e-06" /> - <width sOffset="84.093149039988475" a="2.4894393454779999" b="-0.00018383660799278895" c="0.00014142501107033945" d="-8.7686917716579738e-06" /> - <width sOffset="94.12489294764309" a="2.4929751120785406" b="6.3071863949767975e-06" c="-0.00066751860564615993" d="3.2728935015181832e-05" /> - <width sOffset="94.604792669987035" a="2.4928280241521534" b="-0.00061176401185082804" c="-0.00055046135977981632" d="-5.0970555063615264e-06" /> - <width sOffset="95.698834590368946" a="2.4914931916768861" b="-0.001834522039290685" c="0.00083927154345856726" d="-8.8264848786025982e-05" /> - <width sOffset="101.59851945298493" a="2.4917571695940692" b="-0.001148160312584206" c="0.00043832827285426081" d="-3.6643412883324401e-05" /> - <width sOffset="105.11643629998559" a="2.4915473356733644" b="0.00057537658318563764" c="5.2580550615785268e-05" d="-3.3165586081618924e-05" /> - <width sOffset="108.10573817446655" a="2.4928512407789141" b="6.3922147423855108e-07" c="0.022063747940411049" d="-0.0056646374884986141" /> - <width sOffset="108.11684255265718" a="2.4928539607400744" b="0.0004885521520177988" c="-0.0014763771658710297" d="0.00047493422469591096" /> - <width sOffset="110.84441939572758" a="2.492840258668866" b="0.0030347572674109423" c="-0.0060915111607013246" d="0.0030491796538291245" /> - <width sOffset="111.84581782706539" a="2.4928326893987514" b="7.8390866049562156e-06" c="0.00015632900984576122" d="-1.4273620308587013e-05" /> - <width sOffset="115.62807992998415" a="2.4943263992838887" b="0.00057781955641433326" c="-9.2581708706128641e-06" d="-1.3085508859678635e-05" /> - <width sOffset="118.90991922273309" a="2.4956604625523982" b="9.424069033098486e-05" c="1.7197983165196626e-06" d="-3.2946062229450534e-06" /> - <width sOffset="126.13972355998271" a="2.4951866587369684" b="-0.00039751960016067272" c="-6.0902694143566785e-05" d="-2.9804168394092999e-06" /> - <width sOffset="126.75212242774208" a="2.494919693191445" b="-0.00047546634044815309" c="-0.00010273551395712505" d="8.4921968187189301e-06" /> - <width sOffset="134.56053860379978" a="2.4889861778972726" b="-0.00052652718927260513" c="0.00067653966114568451" d="-8.2587104814333212e-05" /> - <width sOffset="136.65136718998127" a="2.4900879744045712" b="0.0012194252505307156" c="0.00015908192609603405" d="-8.3262747799067816e-05" /> - <width sOffset="139.56994751719324" a="2.4929320646583371" b="2.0287995043524049e-05" c="0.00094080139937905154" d="-0.00020172147715357265" /> - <width sOffset="142.24795044972598" a="2.4958593121169175" b="0.00071916823239589252" c="-0.0012662538363859418" d="0.00017456285349075036" /> - <width sOffset="146.45539903720925" a="2.4894711042593913" b="-0.00066556611998963913" c="0.0021460624194565431" d="-0.00053015609507206843" /> - <width sOffset="147.16301081997983" a="2.4898868658964215" b="0.0015752215601492654" c="0.001018340920672193" d="-0.00052924289895791134" /> - <width sOffset="148.96044462124416" a="2.492934883654085" b="0.00010643884909045109" c="0.0014129339180035526" d="-0.00045414631153444646" /> - <width sOffset="151.62236512325282" a="2.4946639534191055" b="-0.0020253237079737967" c="0.00054183166313523964" d="-4.2260557806302618e-05" /> - <width sOffset="157.21766096104392" a="2.4928920311010359" b="6.8896804523472729e-05" c="-0.00074773582583797409" d="0.0015227095953262292" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276662427" type="pole" s="15.184363790335174" t="-7.6575617924377193" height="2.1094299609968346" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276662647" type="pole" s="16.444088899724203" t="7.0444472029927612" height="2.4526616800296495" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="9100424" s="0" t="-6.3413874230884009" orientation="none" validLength="29.532050377696127" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="29.532050377696127" s="0" distance="0" tStart="-6.3413874230884009" tEnd="-6.7538264144752391" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="277535880" s="29.532050377696127" t="-6.7538264144752391" orientation="none" validLength="8.0155080401598831" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.0155080401598831" s="29.532050377696127" distance="0" tStart="-6.7538264144752391" tEnd="-6.6619914944002723" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="545971336" s="37.54755841785601" t="-6.6619914944002723" orientation="none" validLength="16.625836867307882" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.625836867307882" s="37.54755841785601" distance="0" tStart="-6.6619914944002723" tEnd="-6.7684275270688152" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="814406792" s="54.173395285163892" t="-6.7684275270688152" orientation="none" validLength="52.352870381719157" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="52.352870381719157" s="54.173395285163892" distance="0" tStart="-6.7684275270688152" tEnd="-6.6232108880270655" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1082842248" s="106.52626566688305" t="-6.6232108880270655" orientation="none" validLength="2.9007980545930394" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.9007980545930394" s="106.52626566688305" distance="0" tStart="-6.6232108880270655" tEnd="-6.7677477780016879" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741974" s="109.42706372147609" t="-6.7677477780016879" orientation="none" validLength="6.2434651440682813" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.2434651440682813" s="109.42706372147609" distance="0" tStart="-6.7677477780016879" tEnd="-7.8205368180992014" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741975" s="115.67052886554437" t="-7.8205368180992014" orientation="none" validLength="3.4445358376636932" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.4445358376636932" s="115.67052886554437" distance="0" tStart="-7.8205368180992014" tEnd="-8.3198200246892924" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741976" s="119.11506470320806" t="-8.3198200246892924" orientation="none" validLength="3.9907305757244984" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.9907305757244984" s="119.11506470320806" distance="0" tStart="-8.3198200246892924" tEnd="-8.753819328690982" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741977" s="123.10579527893256" t="-8.753819328690982" orientation="none" validLength="2.9930478531264555" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.9930478531264555" s="123.10579527893256" distance="0" tStart="-8.753819328690982" tEnd="-8.8947910565934105" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741978" s="126.09884313205902" t="-8.8947910565934105" orientation="none" validLength="31.575811317919374" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="31.575811317919374" s="126.09884313205902" distance="0" tStart="-8.8947910565934105" tEnd="-8.6812905698373903" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412768" s="44.716233454243067" t="-6.6378982288740049" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848224" s="89.055795633589725" t="-6.7602273395826105" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283680" s="136.85787922921725" t="-8.9027531380152851" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8226971" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.1094299609968346" s="15.184363790335174" t="-7.6575617924377193" orientation="+" /> - <signal dynamic="no" id="8227191" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.4526616800296495" s="16.444088899724203" t="7.0444472029927612" orientation="+" /> - </signals> - </road> - <road name="" length="4.9999999999998659" id="4941863" junction="33556302"> - <link> - <predecessor elementType="road" elementId="4941552" contactPoint="end" /> - <successor elementType="road" elementId="33782184" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-479.67182255845836" y="-203.38377221301198" hdg="-0.093881892273964374" length="4.9999999999998659"> - <paramPoly3 aU="0" bU="5.0296210922123814" cU="-0.031122049781114179" dU="-0.0044221614702145027" aV="-0" bV="8.3266726846886741e-16" cV="-0.21037641589825687" dV="2.1215784233739844e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.87552809792845" b="0.0025841095075130834" c="-4.164810635480914e-05" d="-4.4214704067816695e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024121049484448639" b="6.0499344724807928e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.0714468186553945" b="0.0083388422465161451" c="-0.071744194388550273" d="0.021384137755936457" /> - <laneOffset s="2.4139661457797028" a="1.9743115474875708" b="0.035793760371916311" c="0.018526449567934963" d="-0.0015135440775600089" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.4139661457797028" color="standard" width="0.15449818811100205" weight="standard" type="solid"> - <type name="solid"> - <line length="2.5860338542201631" space="0" width="0.154498" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8570194670074196" b="-6.8440448918079266e-07" c="0.0066884817210566827" d="-0.13359632073854771" /> - <width sOffset="0.24609390931535846" a="3.8554332493925312" b="-0.020981361354209371" c="-0.052083213980172148" d="0.020878697666104864" /> - <width sOffset="2.4139661457797028" a="3.7778925238969876" b="0.047568100786922113" c="0.019112723189397128" d="-0.0020189841673914849" /> - <width sOffset="3.6271035007390395" a="3.8601227536091383" b="0.08502678712190917" c="0.013491249873365439" d="-0.0015243233609051451" /> - <roadMark sOffset="0" color="standard" width="0.28648685363082366" weight="bold" type="solid"> - <type name="solid"> - <line length="4.9999999999998659" space="0" width="0.28648699999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4929126843345846" b="0.0083395266510053259" c="-0.074729781157351766" d="0.15462947949544906" /> - <width sOffset="0.24609390931535846" a="2.4927437866426567" b="-0.00034745127387523123" c="-0.00042968866491374658" d="0.00015446109079650437" /> - <width sOffset="3.6271035007390395" a="2.4926269620900792" b="0.0020440245765048128" c="-0.00058942739802980281" d="-0.00034019971569069379" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5177002" s="0" t="-4.9957877475986026" orientation="none" validLength="4.9999999999998659" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.9999999999998659" s="0" distance="0" tStart="-4.9957877475986026" tEnd="-5.2244058090441481" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412770" s="3.1275666822655928" t="-4.8949583996177441" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="98.952921398837859" id="4942035" junction="-1"> - <link> - <predecessor elementType="road" elementId="33782184" contactPoint="end" /> - <successor elementType="road" elementId="9100416" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-464.94182846747492" y="-309.77879248466343" hdg="3.7207251530860881" length="70.000308189289427"> - <paramPoly3 aU="0" bU="69.95014248227713" cU="0.10231717703808496" dU="-0.057459034833361095" aV="0" bV="-0" cV="-1.2231602177186944" dV="0.43314523521248016" /> - </geometry> - <geometry s="70.000308189289427" x="-523.95566023019489" y="-347.42572990027776" hdg="3.7043384318996679" length="28.952613209548428"> - <paramPoly3 aU="0" bU="30.619991438371002" cU="-9.0775499102706831" dU="6.0860634169293313" aV="0" bV="-1.7763568394002505e-15" cV="-1.6350729659485239" dV="-5.2599789995665089" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="161.85819553465288" b="-0.014760346905181188" c="0.00039540615942469231" d="-1.887797168589895e-06" /> - <elevation s="10.994769044315317" a="161.74119850666332" b="-0.006750166880297866" c="0.0004751218876785039" d="-1.2673577969339293e-05" /> - <elevation s="21.989538088630635" a="161.70757258603814" b="-0.00089859041264513887" c="0.00032168909293415549" d="-1.5167678175123488e-05" /> - <elevation s="32.984307132945951" a="161.71642076832475" b="0.00067457226231948505" c="2.6223104066718292e-05" d="-1.8877971685900445e-06" /> - <elevation s="43.97907617726127" a="161.72449843796375" b="0.00056658742973153889" c="-0.00082098348680767507" d="5.9573976383902542e-05" /> - <elevation s="54.973845221576589" a="161.71066328623689" b="0.0041183305913358049" c="0.00083015666473287397" d="-5.125187028945182e-05" /> - <elevation s="65.968614265891901" a="161.7881778571211" b="0.0037863534210478222" c="-0.00029230885414782654" d="1.303311426359632e-05" /> - <elevation s="76.96338331020722" a="161.81179453745102" b="0.0020851386942293258" c="5.762277751234857e-06" d="-8.815991861925281e-06" /> - <elevation s="87.958152354522539" a="161.8236993754594" b="-0.00098531358911348871" c="-0.00017563301908012939" d="-1.8877971685967041e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025301473183488004" b="-5.5162896506742159e-05" c="2.5085973286207956e-06" d="0" /> - <superelevation s="10.994769044315317" a="0.024998221530034455" b="0" c="4.1017324041314374e-05" d="-2.4870811368564313e-06" /> - <superelevation s="21.989538088630635" a="0.026651013868586409" b="0" c="-5.0194862526716846e-05" d="3.0435602193735553e-06" /> - <superelevation s="32.984307132945951" a="0.024628412780927363" b="0" c="0.0001172916904676783" d="-2.8071646857997745e-06" /> - <superelevation s="43.97907617726127" a="0.035076204105715367" b="0.0015611582378057792" c="0.00030868130583085331" d="-2.3021663222066376e-05" /> - <superelevation s="54.973845221576589" a="0.058957561313537035" b="0" c="-0.00058345977117343906" d="3.5378021967947168e-05" /> - <superelevation s="65.968614265891901" a="0.035447060270674964" b="0" c="7.3570265027702545e-05" d="-3.1549226299882087e-06" /> - <superelevation s="76.96338331020722" a="0.040147383625277311" b="0.00047362818653888641" c="5.2861223221896175e-05" d="-4.4263093964819745e-06" /> - <superelevation s="87.958152354522539" a="0.045861925318420864" b="3.079954638325338e-05" c="-1.4006454459895676e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.1850913072854632" b="0.00024878433295416391" c="-0.37924725613893678" d="1.040856313454898" /> - <laneOffset s="0.20774540142322198" a="2.1781076019348449" b="-0.022560658224274374" c="0.0042195162881283749" d="-0.00039463259793364808" /> - <laneOffset s="5.6011511741244524" a="2.1172565356839814" b="-0.011483727934698476" c="-0.000245812367185703" d="3.5507153480261436e-05" /> - <laneOffset s="11.458901833786207" a="2.048689983132185" b="-0.010708446312237154" c="-0.00022801477698183574" d="3.3717278567332547e-05" /> - <laneOffset s="21.989538088630635" a="1.9500123087317405" b="-0.0042935656594935779" c="0.00083229772076312233" d="3.7572126929410971e-05" /> - <laneOffset s="23.282170385849721" a="1.9459341423232519" b="-0.0019535182259122642" c="8.7202679995322823e-05" d="-1.6428343627500109e-06" /> - <laneOffset s="32.984307132945951" a="1.9336889950767226" b="-0.00072534075264645849" c="5.1250702067064016e-05" d="-2.7607244181066554e-06" /> - <laneOffset s="43.97907617726127" a="1.9282401948645598" b="-0.00059955155688284076" c="2.1208749534393764e-05" d="-4.470793365375848e-06" /> - <laneOffset s="55.741156191391518" a="1.9168473114915472" b="-0.0019561897339984515" c="-5.2846014373554344e-05" d="-3.8030729114982131e-06" /> - <laneOffset s="65.968614265891901" a="1.887244190040704" b="-0.0042305650595196127" c="-0.00021796371785792087" d="-9.018555131652895e-06" /> - <laneOffset s="71.680283548648362" a="1.8542894829483103" b="-0.0076030798669090563" c="-0.0041675760193614023" d="0.0012378664290178909" /> - <laneOffset s="73.618415412494301" a="1.8329108693341709" b="-0.0098081059214607108" c="-0.0020499954363225824" d="0.0011223758038572704" /> - <laneOffset s="76.039303851132644" a="1.8130765125273902" b="-0" c="0.00080725486500628706" d="-1.9370872830782868e-06" /> - <laneOffset s="82.973135372833838" a="1.8512419708418151" b="0.010915344497132618" c="0.0039512782490637791" d="-0.00016759802628706885" /> - <laneOffset s="87.958152354522539" a="1.9830839882665554" b="0.037815091723762705" c="0.0014656257201902318" d="-0.00016514727239417222" /> - <laneOffset s="93.186439255402149" a="2.1972529471895799" b="0.039597621127744599" c="0.0050353879452278514" d="-0.00077579834876846307" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929854178702251" b="-0.039766111979799235" c="0.39764966680610209" d="-1.0446830149972974" /> - <width sOffset="0.20774540142322198" a="2.4925194843066274" b="-0.0098060971384841891" c="0.011797955434879531" d="-0.0034320689444660947" /> - <width sOffset="1.9558408942448251" a="2.4930963722347266" b="-2.1730271794867181e-05" c="-0.00092145166406482786" d="0.00022059728166990241" /> - <width sOffset="5.6011511741244524" a="2.4914583611850385" b="0.0020543952763169403" c="-0.00042892758837120951" d="-0.000209542469743323" /> - <width sOffset="6.8499342872922488" a="2.4929468916764277" b="2.801381294910768e-06" c="4.9242390472785318e-05" d="-2.2429588955990336e-05" /> - <width sOffset="10.994769044315317" a="2.4922073302578309" b="-0.0007449932867411007" c="-0.00022579162368457266" d="-2.2855382825983889e-05" /> - <width sOffset="11.458901833786207" a="2.4918106294312912" b="-0.00096935834704324313" c="0.00034856314352765507" d="-2.106550790488486e-05" /> - <width sOffset="21.989538088630635" a="2.4956562975050574" b="-0.00063630924983659829" c="-0.00032199313401744679" d="-2.1119948265293134e-05" /> - <width sOffset="23.282170385849721" a="2.4942501497825118" b="-0.0015746145530222749" c="0.00048690175925314135" d="1.8095013026761323e-05" /> - <width sOffset="24.781593250498627" a="2.4930448230185513" b="7.5760748702109661e-06" c="-6.3877311503279495e-06" d="4.822481233710866e-07" /> - <width sOffset="32.984307132945951" a="2.4929433322751153" b="1.2610622783721433e-07" c="1.9316204826747661e-05" d="-1.1713638259017406e-06" /> - <width sOffset="43.97907617726127" a="2.4937228950869486" b="7.9768284765285163e-08" c="0.00010435425812751497" d="-7.6335105391247968e-06" /> - <width sOffset="53.770441252153276" a="2.4965625810609922" b="-0.00015187192910475064" c="0.00049339392575044956" d="-0.00018737237025246616" /> - <width sOffset="54.973845221576589" a="2.496767798926002" b="0.00022158510492940615" c="2.4649557812101767e-05" d="2.2700801944861304e-06" /> - <width sOffset="55.741156191391518" a="2.4969533619790356" b="0.00026342249610548452" c="-5.3827593843619357e-05" d="1.6023597403605876e-06" /> - <width sOffset="65.968614265891901" a="2.4957312963671532" b="-0.00033479161598616927" c="-5.3864749103091255e-05" d="-2.6263089918577571e-06" /> - <width sOffset="71.680283548648362" a="2.4915724713889666" b="-0.0012071424243286265" c="0.0036962127142522302" d="-0.0012495112931414627" /> - <width sOffset="73.618415412494301" a="2.4940203262487701" b="-0.00096047158691143185" c="0.0037545264133763334" d="-0.0011669727919118797" /> - <width sOffset="76.039303851132644" a="2.497142157725925" b="-0.0032997276521050077" c="0.0005733831137120631" d="-4.2659900772635876e-05" /> - <width sOffset="76.96338331020722" a="2.4945489095123685" b="-0.0023493093287050184" c="0.00059615059006708551" d="-3.3033734798401094e-05" /> - <width sOffset="82.798127775711762" a="2.494574982262642" b="0.0012336379014802161" c="0.00258959548738349" d="-0.00012326826245611909" /> - <width sOffset="82.973135372833838" a="2.4948695307882796" b="0.0021287094140720834" c="-0.00065944085450565662" d="4.2392676508063039e-05" /> - <width sOffset="87.958152354522539" a="2.4943454075132214" b="-0.0012855141212325116" c="1.272387559612953e-06" d="4.5419087565971855e-05" /> - <width sOffset="93.186439255402149" a="2.4941502267491575" b="0.0024523807777347972" c="-0.0054464097387016321" d="0.00065607016400071299" /> - <width sOffset="93.426094618757702" a="2.4944341705821698" b="-4.5098266361051631e-05" c="5.4224964900002198e-05" d="-5.9892617822154522e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16508719176748962" weight="standard" type="solid"> - <type name="solid"> - <line length="98.952921398837859" space="0" width="0.16508700000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="5.1428445157409222" b="7.7633273122762816e-10" c="-0.37761490627159955" d="1.0407945839702397" /> - <width sOffset="0.20774540142322198" a="5.1358790224929987" b="-0.022139207815400141" c="0.0058133941057556728" d="-0.0004563620825918615" /> - <width sOffset="5.6011511741244524" a="5.1139804379567817" b="0.00074366743610738452" c="0.00034926897373712703" d="-2.6222331177946233e-05" /> - <width sOffset="10.994769044315317" a="5.1240376690702796" b="0.0022228037369488498" c="-6.840312265766796e-05" d="-2.7390421943937621e-05" /> - <width sOffset="11.458901833786207" a="5.1250518712397568" b="0.0021416062005456468" c="-0.00071272006643473371" d="-2.9180296847391003e-05" /> - <width sOffset="15.213305740750318" a="5.1215019130347086" b="-0.0044440086890260517" c="-0.00026484952753715561" d="4.5246764809106942e-05" /> - <width sOffset="21.989538088630635" a="5.0933054665950896" b="-0.0018005413685891719" c="0.00065193833430804763" d="4.993132524810935e-05" /> - <width sOffset="23.282170385849721" a="5.0921751958201602" b="0.00013518221765715897" c="-4.5229009716317564e-05" d="1.0716363955949428e-05" /> - <width sOffset="32.984307132945951" a="5.0990162805057704" b="0.0022837870167654005" c="0.00029991910868713454" d="6.2670230294593069e-06" /> - <width sOffset="38.468445826339853" a="5.1215948666537514" b="0.0061388397596254772" c="0.0030582339878661683" d="-0.00016074081458059602" /> - <width sOffset="43.97907617726127" a="5.2213946578905341" b="0.025200762278916121" c="0.00067032068518080919" d="-0.00016375696318497609" /> - <width sOffset="52.809850324102598" a="5.3834395725828319" b="-0.0012709040997063454" c="-0.0040491470579287871" d="0.00015423699826230122" /> - <width sOffset="54.973845221576589" a="5.3632906912780847" b="-0.016628753996394251" c="-0.0029158404865174434" d="0.00023618971235358699" /> - <width sOffset="55.741156191391518" a="5.3489212204680063" b="-0.020686285274767013" c="-0.0022884448908131933" d="0.00023685743280824257" /> - <width sOffset="64.798403891573784" a="5.1498157677372154" b="-0.003849409454814697" c="0.00088797322771839559" d="2.2510931215737984e-05" /> - <width sOffset="65.968614265891901" a="5.1465632058285049" b="-0.0016786995994467918" c="0.00074844942556189062" d="-9.3087187161724688e-05" /> - <width sOffset="71.680283548648362" a="5.1440466285520019" b="-0.0022393046886061635" c="-0.0046416795456296249" d="0.0011537977971196125" /> - <width sOffset="71.84795831852783" a="5.1435460928023629" b="-0.0036985733065220431" c="-0.0041481213766557043" d="0.0013335037850028262" /> - <width sOffset="73.618415412494301" a="5.1313958845238492" b="-0.005847039004443404" c="-0.0021452521934431442" d="0.0012180131598421671" /> - <width sOffset="76.039303851132644" a="5.1219494701119919" b="0.0051813607484549849" c="0.0014065802161004563" d="9.3700268702298422e-05" /> - <width sOffset="76.96338331020722" a="5.1280125083170311" b="0.0080209829194927713" c="0.0018186543833397205" d="6.3069209630616619e-05" /> - <width sOffset="79.022315912430088" a="5.1527873003403872" b="0.016312046158711079" c="0.007021021981601084" d="-0.00054859333357452542" /> - <width sOffset="82.973135372833838" a="5.2929934169015382" b="0.046100688798721916" c="0.0037031600218476639" d="-0.00071425427257850935" /> - <width sOffset="87.456253171148447" a="5.5097389931857723" b="0.036238107227841862" c="-0.010638748302773407" d="0.000791219938409727" /> - <width sOffset="87.958152354522539" a="5.5253469730102918" b="0.026156880587884561" c="-0.0094266258873549284" d="0.00079367069230944795" /> - <width sOffset="92.7240697246433" a="5.5218095734907529" b="-0.0096139265035286303" c="-0.0069929714141761974" d="0.00045523430614003362" /> - <width sOffset="93.186439255402149" a="5.5159143893072997" b="-0.015788632731710411" c="-0.00020143780867230236" d="-0.0001554167702379199" /> - <roadMark sOffset="0" color="standard" width="0.29716791476625065" weight="bold" type="solid"> - <type name="solid"> - <line length="98.952921398837859" space="0" width="0.29716799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - <speed sOffset="11.154114403102588" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929854178702353" b="0.00024878355662143268" c="-3.3660351574111647e-05" d="1.1342951793816627e-06" /> - <width sOffset="10.994769044315317" a="2.4931592998898391" b="-8.0034390721952717e-05" c="9.7332108079046576e-06" d="-3.3826932258168812e-07" /> - <width sOffset="14.518706351323157" a="2.4929833291207864" b="-2.4037962829697238e-05" c="0.00054946893504270798" d="7.5638001093403427e-05" /> - <width sOffset="15.213305740750318" a="2.4932570816888928" b="0.00084876242684052763" c="-6.9451137189750008e-05" d="1.2109394372985405e-06" /> - <width sOffset="21.989538088630635" a="2.4961962621964298" b="7.4337640480863498e-05" c="-4.4115861421382204e-05" d="1.7024758231720217e-06" /> - <width sOffset="32.984307132945951" a="2.4939434079779987" b="-0.00027833867898078039" c="2.8847412083723241e-05" d="-1.1725266045763836e-06" /> - <width sOffset="38.234650374916676" a="2.4931075435975933" b="-7.2387020346749605e-05" c="0.0026892896330955873" d="-0.00016914602195716621" /> - <width sOffset="38.468445826339853" a="2.4932354556816057" b="0.0011573636236512459" c="-8.4554287294676036e-05" d="-2.1381843730890334e-06" /> - <width sOffset="43.97907617726127" a="2.4966877876580824" b="3.0677744730697037e-05" c="1.2393924614348384e-05" d="-2.036891804523016e-06" /> - <width sOffset="52.809850324102598" a="2.496522507638756" b="-0.0002269525427509092" c="0.00033959740268941444" d="-0.00032003085324334253" /> - <width sOffset="53.309871732927718" a="2.4964539241343138" b="-0.00012738429413558299" c="0.00029419192105724183" d="-9.7745886145413985e-05" /> - <width sOffset="54.973845221576589" a="2.4966061838551497" b="3.9752112888032792e-05" c="-0.00011379580179062421" d="8.8771230676228682e-06" /> - <width sOffset="64.060331278173749" a="2.4942317121069526" b="0.00017054264198241523" c="-0.0017941513552288614" d="-0.0002630959942411893" /> - <width sOffset="64.798403891573784" a="2.493274436952452" b="-0.0029078508792362338" c="0.00088270799782211458" d="-4.8749492649098847e-05" /> - <width sOffset="65.968614265891901" a="2.4910022932941813" b="-0.001042214308675732" c="0.00059193977250389786" d="-5.5242694019451918e-05" /> - <width sOffset="71.84795831852783" a="2.4941092114186123" b="0.00018955019832440478" c="-0.00029560246976400044" d="-0.00023494868200119154" /> - <width sOffset="72.108644499212232" a="2.494134373955383" b="-1.2468182836599881e-05" c="-0.00049560620662248507" d="7.5503316585740979e-05" /> - <width sOffset="76.96338331020722" a="2.4910321580440375" b="0.00051395168644151942" c="0.0006280257409878756" d="0.00010188218596112309" /> - <width sOffset="79.022315912430088" a="2.4956419304028219" b="0.0043957749786193382" c="-0.0035554704387754815" d="0.00071354472916625319" /> - <width sOffset="81.484817130524249" a="2.4955614000029418" b="-0.00013430772369839999" c="0.0004498198978205646" d="-7.2761735618068592e-05" /> - <width sOffset="87.456253171148447" a="2.4953059511443962" b="-0.0025457906926583396" c="0.0038819939453403444" d="-0.0015782359466069355" /> - <width sOffset="88.003231681970888" a="2.4948166193976031" b="0.00028438795060470659" c="0.00024615392461763141" d="-6.4833368701537218e-05" /> - <width sOffset="92.7240697246433" a="2.4948239087998885" b="-0.0017261964406903793" c="0.00027425357242238501" d="4.8748272589893733e-07" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276670346" type="pole" s="11.666448561344758" t="4.4103634711383162" height="2.348683646012347" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670390" type="pole" s="11.154114403102588" t="-7.8426782133530848" height="1.9572195487186548" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670402" type="pole" s="76.660968185179826" t="3.2098140835107198" height="1.2218863423410653" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670414" type="pole" s="90.180928724401767" t="3.3478020611373145" height="1.3158731341549981" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5177126" s="0" t="2.8305986075583585" orientation="none" validLength="12.677009374884305" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="12.677009374884305" s="0" distance="0" tStart="2.8305986075583585" tEnd="2.6649913687696456" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273612582" s="12.677009374884305" t="2.6649913687696456" orientation="none" validLength="43.054687133453399" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="43.054687133453399" s="12.677009374884305" distance="0" tStart="2.6649913687696456" tEnd="2.5003283776649647" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542048038" s="55.731696508337706" t="2.5003283776649647" orientation="none" validLength="16.752248790938282" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="16.752248790938282" s="55.731696508337706" distance="0" tStart="2.5003283776649647" tEnd="2.5427158466311246" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810483494" s="72.483945299275987" t="2.5427158466311246" orientation="none" validLength="15.042622507920939" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="15.042622507920939" s="72.483945299275987" distance="0" tStart="2.5427158466311246" tEnd="2.8325372854696038" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078918950" s="87.526567807196926" t="2.8325372854696038" orientation="none" validLength="11.426353591640932" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="11.426353591640932" s="87.526567807196926" distance="0" tStart="2.8325372854696038" tEnd="3.2045773910562203" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5177130" s="0" t="-6.3238264341808863" orientation="none" validLength="19.040884752938528" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.040884752938528" s="0" distance="0" tStart="-6.3238264341808863" tEnd="-6.4880142911470919" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273612586" s="19.040884752938528" t="-6.4880142911470919" orientation="none" validLength="47.780628169511758" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="47.780628169511758" s="19.040884752938528" distance="0" tStart="-6.4880142911470919" tEnd="-6.5484443154019978" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542048042" s="66.821512922450282" t="-6.5484443154019978" orientation="none" validLength="19.707190230959696" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.707190230959696" s="66.821512922450282" distance="0" tStart="-6.5484443154019978" tEnd="-6.8011298566028309" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810483498" s="86.528703153409978" t="-6.8011298566028309" orientation="none" validLength="4.7351922483724564" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.7351922483724564" s="86.528703153409978" distance="0" tStart="-6.8011298566028309" tEnd="-6.6249494057856966" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078918954" s="91.263895401782435" t="-6.6249494057856966" orientation="none" validLength="7.689025997055424" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.689025997055424" s="91.263895401782435" distance="0" tStart="-6.6249494057856966" tEnd="-6.4723439401846754" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412771" s="12.025822209286829" t="-6.7246300249686355" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848227" s="36.16997065837473" t="-6.6920059484036543" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283683" s="60.139541320437175" t="-6.7853222241048705" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719139" s="85.30359036787128" t="-6.7482408700068621" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412808" s="10.728368134342617" t="2.7954596930697022" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848264" s="35.570708830279081" t="2.7255149083519159" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283720" s="60.533725500286444" t="2.7104451036278729" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719176" s="84.628471447167627" t="2.9245627127401992" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8234890" type="274" subtype="54" value="40" unit="km/h" country="DEU" zOffset="2.348683646012347" s="11.666448561344758" t="4.4103634711383162" orientation="+" /> - <signal dynamic="no" id="8234934" type="274" subtype="54" value="40" unit="km/h" country="DEU" zOffset="1.9572195487186548" s="11.154114403102588" t="-7.8426782133530848" orientation="+" /> - <signal dynamic="no" id="8234946" type="625" subtype="20" country="DEU" zOffset="1.2218863423410653" s="76.660968185179826" t="3.2098140835107198" orientation="+" /> - <signal dynamic="no" id="8234958" type="625" subtype="20" country="DEU" zOffset="1.3158731341549981" s="90.180928724401767" t="3.3478020611373145" orientation="+" /> - </signals> - </road> - <road name="" length="73.839786092422898" id="4942083" junction="-1"> - <link> - <predecessor elementType="road" elementId="9100416" contactPoint="end" /> - <successor elementType="junction" elementId="33556490" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-590.74644700625288" y="-296.99517592974007" hdg="1.2773670281122376" length="73.839786092422898"> - <paramPoly3 aU="0" bU="73.832595381761337" cU="0.021604496547238505" dU="-0.019924453624701473" aV="-0" bV="-0" cV="-0.53503951138938788" dV="-0.21657485393604625" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.60245734539996" b="-0.04910965258786032" c="-1.9474738139657636e-05" d="8.8413228402836902e-06" /> - <elevation s="10.548540870346129" a="158.09263272051163" b="-0.046569145277788181" c="-0.0003149953300237556" d="4.716854020442013e-05" /> - <elevation s="21.097081740692257" a="157.6217103913184" b="-0.037469054487150877" c="0.00061313383106225197" d="8.8413228403408717e-06" /> - <elevation s="31.645622611038384" a="157.30506853134901" b="-0.021582352482744586" c="0.002312253190931454" d="-6.3379099696349637e-05" /> - <elevation s="32.000006190504294" a="157.29770766986786" b="-0.019967382268039839" c="0.0018116279109364935" d="-7.5165868086676411e-05" /> - <elevation s="42.194163481384514" a="157.20279330922926" b="-0.0064652436149090914" c="0.00068189616478075293" d="-4.1548530392786043e-05" /> - <elevation s="52.742704351730644" a="157.16170241486458" b="-0.0059487531223196598" c="0.00020217655847049832" d="-2.9454453888326487e-06" /> - <elevation s="63.291245222076768" a="157.11799105273897" b="-0.0026666520173016443" c="8.4148099017599385e-05" d="-2.1611977043605369e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.036925129726173109" b="-0.00017075571636331353" c="-5.0484822920653441e-06" d="0" /> - <superelevation s="10.548540870346129" a="0.034562152793041978" b="-0.00027726395994545248" c="-2.7741672310909819e-05" d="2.1513108113975473e-06" /> - <superelevation s="21.097081740692257" a="0.031075669299455874" b="-0.00014439216113527924" c="1.6578389007415188e-05" d="-9.2280175522684516e-07" /> - <superelevation s="31.645622611038384" a="0.030314105992909325" b="-0.00010268173344157543" c="-3.3269977803691159e-06" d="4.1423997184057417e-08" /> - <superelevation s="42.194163481384514" a="0.028909384375762983" b="-0.0001590437200016087" c="-2.2436536386300742e-05" d="1.8944292207017043e-06" /> - <superelevation s="52.742704351730644" a="0.026958747631691614" b="0" c="2.6881128264566004e-05" d="-1.6729685202349191e-06" /> - <superelevation s="63.291245222076768" a="0.027986202987191046" b="8.6511336596896418e-06" c="-4.1006304881516222e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.7299814530146091" b="9.8755579703548849e-05" c="0.0087967458619898423" d="-0.0062925088724895195" /> - <laneOffset s="0.93756054830477209" a="1.7326206837807814" b="-0" c="-0.00025500992060653783" d="1.4450067281742044e-05" /> - <laneOffset s="7.3213678375562381" a="1.7259875845844148" b="-0.001489217799003162" c="8.6887160621308798e-05" d="-1.7333515923331453e-05" /> - <laneOffset s="10.548540870346129" a="1.7215039429513819" b="-0.0014699852812731478" c="-0.00010738709705790125" d="-1.8873878420233393e-05" /> - <laneOffset s="15.874411035342758" a="1.7077777345700522" b="-0.0042199113803959879" c="-0.00062921636580063256" d="4.1381073004298322e-05" /> - <laneOffset s="19.763769302068813" a="1.6842814083415958" b="-0.0072364792805897794" c="-0.00077005571766860365" d="9.7436382992042682e-05" /> - <laneOffset s="21.097081740692257" a="1.6734949249262459" b="-0.0087702845920125585" c="-0.00040717793436785825" d="8.6675769954235263e-05" /> - <laneOffset s="24.825505665730038" a="1.6396276963437195" b="-0.008191871167294109" c="0.00017968976345581104" d="-3.269160171202878e-06" /> - <laneOffset s="31.645622611038384" a="1.5910791871881222" b="-0.0061970458670282755" c="0.00010971443054244015" d="-3.2772487234605178e-06" /> - <laneOffset s="41.842559658186374" a="1.5358214251387787" b="-0.0049818242188537807" c="-0.00024726384871447517" d="2.7656506121761296e-05" /> - <laneOffset s="53.124873981668806" a="1.4878589647313114" b="-0" c="3.7412306631961711e-05" d="-6.6452090887629601e-07" /> - <laneOffset s="56.276916677583579" a="1.4882098593428639" b="0.00021604358611345369" c="0.0014185313643696761" d="-0.00014262128172475412" /> - <laneOffset s="61.303896795023405" a="1.5070251285748812" b="0.0036655557646157466" c="-0.00021719313623170042" d="2.2073870758019746e-05" /> - <laneOffset s="63.291245222076768" a="1.5136253099781312" b="0.0030638247077486944" c="-8.2051989047641317e-05" d="2.3214108135815743e-05" /> - <laneOffset s="70.187493625812365" a="1.5384655690252005" b="0.0052441894315796459" c="0.00048124654385023655" d="-0.00010422468570174588" /> - <laneOffset s="72.962348179048618" a="1.5544960910978001" b="0.0055074344905680171" c="4.4885701065472671e-05" d="-0.00016184511922510698" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4938874712288639" b="0.0027870485157240545" c="-0.0095694213140751182" d="0.0063340105919621505" /> - <width sOffset="0.93756054830477209" a="2.4933088625146755" b="0.0015463865515678811" c="-0.00040093440688561741" d="2.7051652190884857e-05" /> - <width sOffset="7.3213678375562381" a="2.4938791562525493" b="-0.00026528184628901849" c="5.1985449745094978e-05" d="5.8835235394302739e-05" /> - <width sOffset="8.3209652735718151" a="2.4937246890115601" b="1.5010823370235904e-05" c="-0.00012960260227259105" d="2.0290711613132248e-05" /> - <width sOffset="10.548540870346129" a="2.4933393086946429" b="-0.00026033516825498372" c="-3.2869226534843428e-05" d="6.8536478684616274e-06" /> - <width sOffset="15.874411035342758" a="2.4920558303716982" b="-2.7240668509897169e-05" c="0.00029690548039170171" d="-5.3401303556068519e-05" /> - <width sOffset="19.763769302068813" a="2.4932993509491235" b="-0.0001411189142708864" c="0.00029749188306753017" d="-0.00010945661354423231" /> - <width sOffset="21.097081740692257" a="2.4933806127121985" b="6.8430032697238546e-05" c="-0.00011346606901257517" d="-9.8696000560926798e-05" /> - <width sOffset="21.26304309967766" a="2.4933883930883676" b="2.2612863734934249e-05" c="0.00052656340927445533" d="-8.9189506557941755e-05" /> - <width sOffset="24.825505665730038" a="2.4961192302077686" b="0.00037858831389390307" c="-4.4015080486001874e-05" d="7.554235674949646e-07" /> - <width sOffset="31.645622611038384" a="2.4968935732305013" b="-0.00011637437419075459" c="-3.2617679909309182e-05" d="8.8433824838864793e-07" /> - <width sOffset="41.842559658186374" a="2.4932530270726447" b="-0.00050572132413762624" c="0.00025115952690303529" d="-3.0049416562578227e-05" /> - <width sOffset="42.194163481384514" a="2.4931049570192352" b="-0.00034024862411851601" c="0.00019458714988506202" d="-2.6619405253316704e-05" /> - <width sOffset="45.840414991535262" a="2.4931609491390931" b="1.7051790857578776e-05" c="0.00030030529469117847" d="-3.1669669821804689e-05" /> - <width sOffset="52.742704351730644" a="2.4971715391408571" b="-0.00036374120288829254" c="-0.00036050344512132936" d="-3.2639131346203862e-05" /> - <width sOffset="53.124873981668806" a="2.4969780536377075" b="-0.00065358932976789603" c="0.00025348753075848994" d="-4.3181043045817547e-06" /> - <width sOffset="56.276916677583579" a="2.4973011765082593" b="0.0008157117771077874" c="-0.0011747478692109203" d="0.00013763865651129638" /> - <width sOffset="61.303896795023405" a="2.4892000938416663" b="-0.00056055156151860273" c="0.0003858339577486094" d="-2.7056495971372478e-05" /> - <width sOffset="63.291245222076768" a="2.4893975843296747" b="0.00065243819950803377" c="0.0002241564488150903" d="-2.8014002624013562e-05" /> - <width sOffset="70.187493625812365" a="2.4953695977593329" b="-0.00025277484824824843" c="-0.00043844587818974302" d="9.942479121354618e-05" /> - <width sOffset="72.962348179048618" a="2.4934165285542793" b="-0.00038936360219185215" c="-4.2042062632690336e-05" d="0.0001570452247362631" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15287265664435828" weight="standard" type="solid"> - <type name="solid"> - <line length="73.839786092422898" space="0" width="0.15287300000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.6849096579350133" b="-4.1346115218349449e-10" c="0.0041808612721060071" d="-0.0047112040901426955" /> - <width sOffset="0.93756054830477209" a="3.6847020525734933" b="-0.0045841040132536511" c="-0.00042318757416871778" d="0.0015957548496287842" /> - <width sOffset="1.9566628203426595" a="3.6812798325358824" b="-0.00047474018407252911" c="1.0893438266320634e-05" d="1.5210142504027723e-05" /> - <width sOffset="7.3213678375562381" a="3.6813948985462579" b="0.00095538641982305297" c="0.000320844968376133" d="-1.6573440701136674e-05" /> - <width sOffset="8.3592761834021481" a="3.6827136029162935" b="0.0015678403579627634" c="0.0013997594773024538" d="-0.00018351698856572775" /> - <width sOffset="10.548540870346129" a="3.6909292772428905" b="0.0050580037050862369" c="9.9499160437000874e-05" d="-0.00017283229202525496" /> - <width sOffset="12.012613029482363" a="3.6980054459970475" b="0.004237949774156034" c="-0.00012037506595846597" d="-1.251864996560189e-05" /> - <width sOffset="15.874411035342758" a="3.7118553555014158" b="0.0027481313429993928" c="-0.0004856783491925809" d="4.7736301458928897e-05" /> - <width sOffset="19.730797614262251" a="3.717968070146723" b="0.0011319667696563541" c="0.00059639395637858404" d="-6.2456830262815462e-05" /> - <width sOffset="19.763769302068813" a="3.7180060391219918" b="0.001171091303851346" c="-3.3460771385002337e-05" d="-6.4015119769858259e-06" /> - <width sOffset="21.097081740692257" a="3.7194928125318256" b="0.0010477236513066271" c="-0.00011796110645517847" d="-2.9674250360566372e-05" /> - <width sOffset="24.825505665730038" a="3.7202213785707925" b="-0.0010694125397069819" c="-0.00083250000691325341" d="-0.00011961918023227219" /> - <width sOffset="24.930097541737997" a="3.7201002827403555" b="-0.0012474837226116881" c="-0.00063838041969489431" d="6.5494354349126437e-05" /> - <width sOffset="30.343164414875016" a="3.7050302484858628" b="-0.0024014677326367464" c="0.00023215411979373994" d="-2.4026686140952445e-05" /> - <width sOffset="31.645622611038384" a="3.7022431761469798" b="-0.0019190020807361022" c="0.00011822012028322468" d="-3.0198959381623259e-05" /> - <width sOffset="37.381204637019415" a="3.6894276314378023" b="-0.0035432362339788857" c="-0.021005950300630339" d="0.0037645511636690771" /> - <width sOffset="41.066097522157818" a="3.5795028636542066" b="-0.0050024435173267046" c="0.0019269440050661514" d="-0.00025247701546028212" /> - <width sOffset="41.842559658186374" a="3.5766622070580545" b="-0.0024666956166580524" c="0.0010821028944147254" d="-0.00022154326063171547" /> - <width sOffset="42.194163481384514" a="3.5759190528425" b="-0.0017879176090576489" c="0.00081363339607639534" d="-0.00023432186592892246" /> - <width sOffset="45.95542702894604" a="3.5682362821582219" b="-0.0056122653922790998" c="8.8828358397044109e-05" d="2.8067615073336722e-05" /> - <width sOffset="52.742704351730644" a="3.5430122610920218" b="-0.00052747627898467795" c="0.00065979357213410939" d="2.6852075129599814e-05" /> - <width sOffset="53.124873981668806" a="3.5429085397305959" b="-1.1404619570899691e-05" c="3.9167684858706251e-05" d="-1.4689519044472216e-06" /> - <width sOffset="55.761512641213052" a="3.5431238330352937" b="0.00016450158560148067" c="-0.0011357847647145657" d="0.00015790513127283913" /> - <width sOffset="56.276916677583579" a="3.5429285256550505" b="-0.00088043613590885303" c="0.00049577291391974675" d="1.5948370457828209e-05" /> - <width sOffset="59.539647438514706" a="3.5458875430849304" b="0.0028640418610889188" c="0.00022777699156429767" d="-0.00015722797117341419" /> - <width sOffset="61.303896795023405" a="3.5507860048789599" b="0.0021996007520074618" c="-8.9252507278076945e-05" d="7.4671813093864276e-06" /> - <width sOffset="63.291245222076768" a="3.5548634813445306" b="0.0019333251943951207" c="-3.7319364753893579e-05" d="9.2687170421962589e-06" /> - <width sOffset="70.187493625812365" a="3.5694612218610757" b="0.0027410096408168536" c="0.00023746652493742969" d="-0.00011817007679552631" /> - <width sOffset="71.679016524931072" a="3.5736856777619472" b="0.0026607253232992711" c="-0.0014405157201381644" d="-5.3066899959060524e-05" /> - <width sOffset="72.962348179048618" a="3.5746156670090885" b="-0.0012987875425768949" c="-0.0012135588293965883" d="-0.00011068733348181239" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="37.381204637019415" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="37.381204637019415" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="36.458581455403483" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4938874712288559" b="-0.0018556588642581547" c="0.0048202434740744309" d="-0.0015724597134233968" /> - <width sOffset="1.9566628203426595" a="2.4969314987244111" b="-0.0010531011769615696" c="3.4554267029079548e-05" d="8.0849937011345719e-06" /> - <width sOffset="8.3592761834021481" a="2.4937274279296355" b="0.00038366959286661529" c="-0.00092780660994174662" d="0.00016786261890580249" /> - <width sOffset="10.548540870346129" a="2.4918818793581794" b="-0.0012651228010664524" c="0.00017259638999919045" d="0.00013925722329669491" /> - <width sOffset="12.012613029482363" a="2.4908366337963335" b="0.00013576095644122436" c="0.0002450016462949414" d="-2.105641876296141e-05" /> - <width sOffset="19.730797614262251" a="2.4967980836255466" b="0.00015468063855205404" c="-0.00077235374231114521" d="8.9136704660325636e-05" /> - <width sOffset="21.097081740692257" a="2.4957949856202619" b="-0.0014566455767714495" c="-0.00039248955923508054" d="0.00010107831565281832" /> - <width sOffset="24.930097541737997" a="2.490137375255526" b="-1.0352028551453667e-05" c="0.00053816161320754984" d="-8.4035219182302575e-05" /> - <width sOffset="29.182594085423215" a="2.4933629296973496" b="7.698922226474867e-06" c="0.00050167104197507606" d="-0.0001427147458352425" /> - <width sOffset="30.343164414875016" a="2.4938244857380494" b="0.00059547044471515952" c="0.00019782096342700094" d="-5.3193705344495963e-05" /> - <width sOffset="31.645622611038384" a="2.4948181132769389" b="0.00084006453230366183" c="-1.6613791521793324e-05" d="-4.9114065406950883e-05" /> - <width sOffset="36.347011616350095" a="2.4932966759573061" b="-0.0025728644555577575" c="-0.72967377817024459" d="1.4590153831496886" /> - <width sOffset="36.597171519225157" a="2.4698309674131287" b="-0.093727660021930892" c="-0.012493090249787179" d="0.002052862636780567" /> - <width sOffset="37.381204637019415" a="2.3896551562282804" b="-0.10953192019593466" c="0.012939991225783487" d="-0.0017418874862707178" /> - <width sOffset="40.132216896509988" a="2.1499964057280487" b="-0.077883942390917255" c="-0.018265842875538743" d="0.0012755251127670075" /> - <width sOffset="41.066097522157818" a="2.0623707306734933" b="-0.10866289321872494" c="0.0039907307860113416" d="0.0052925532918988447" /> - <width sOffset="41.816610989956111" a="1.9853030115853771" b="-0.093729281949408855" c="-0.0012442584615282495" d="0.00034024185714893204" /> - <width sOffset="42.194163481384514" a="1.9497562350681434" b="-0.094523327484984071" c="-0.00082409785294450342" d="0.00035302046245131645" /> - <width sOffset="45.95542702894604" a="1.601355057797555" b="-0.085739974880349457" c="0.0012400772974739411" d="9.0630981449065577e-05" /> - <width sOffset="50.208578727528661" a="1.2660949010932705" b="-0.070273148284897141" c="-0.0011977116737569495" d="0.00015914670525305285" /> - <width sOffset="52.742704351730644" a="1.0829123537714147" b="-0.073277430530488283" c="8.4212724007573389e-06" d="0.00015751372577739187" /> - <width sOffset="55.761512641213052" a="0.86611194617513787" b="-0.068920222210832938" c="0.0025982656590861535" d="-1.8603574006944201e-06" /> - <width sOffset="57.76307728176284" a="0.73855807896747105" b="-0.058541388102827739" c="0.0016835216204761669" d="-0.00015127130597730493" /> - <width sOffset="59.539647438514706" a="0.639020518930975" b="-0.05399192774287688" c="0.0013013909961529762" d="2.1905035653775093e-05" /> - <width sOffset="63.291245222076768" a="0.4559375572802713" b="-0.043302430241155807" c="0.0015487609482331003" d="2.1560259691826434e-05" /> - <width sOffset="65.794842751046431" a="0.35757166993295053" b="-0.035142062914017107" c="0.0024990175343403641" d="-9.1941463352447522e-05" /> - <width sOffset="71.679016524931072" a="0.21858310270573655" b="-0.015282762087255508" c="0.0020252410106502529" d="-0.00015704464018851039" /> - <width sOffset="72.679853002324734" a="0.20515874843502235" b="-0.01170081436527496" c="0.0085808393902489875" d="-0.0086325111714999469" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5177063" s="36.849557228629919" t="2.5036311167002911" orientation="none" validLength="20.032921435178309" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="20.032921435178309" s="36.849557228629919" distance="0" tStart="2.5036311167002911" tEnd="2.4501717036914967" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273612519" s="56.882478663808229" t="2.4501717036914967" orientation="none" validLength="16.957307428614669" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.957307428614669" s="56.882478663808229" distance="0" tStart="2.4501717036914967" tEnd="2.575224152154556" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5177068" s="14.291793915652589" t="2.5513995908086939" orientation="none" validLength="22.557763312977329" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="22.557763312977329" s="14.291793915652589" distance="0" tStart="2.5513995908086939" tEnd="2.5036311167002911" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5177134" s="0" t="2.7003353570552009" orientation="none" validLength="14.291793915652589" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="14.291793915652589" s="0" distance="0" tStart="2.7003353570552009" tEnd="2.5513995908086939" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5177138" s="0" t="-5.2821255401131495" orientation="none" validLength="34.584020986387955" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="34.584020986387955" s="0" distance="0" tStart="-5.2821255401131495" tEnd="-5.5831084885431501" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412809" s="16.316509412673657" t="2.8336381441489698" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848265" s="70.811025060935776" t="2.9797674392279165" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412880" s="24.400922829403662" t="-5.7267529887209099" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="84.611153326026511" id="9100416" junction="-1"> - <link> - <predecessor elementType="road" elementId="4942035" contactPoint="end" /> - <successor elementType="road" elementId="4942083" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-551.002250435272" y="-356.33403980638832" hdg="3.149301039857566" length="67.997936852192623"> - <paramPoly3 aU="0" bU="68.037136542330927" cU="-2.3710459501827148" dU="-22.766958100781672" aV="0" bV="-0" cV="-60.275021313847596" dV="16.809568806657527" /> - </geometry> - <geometry s="67.997936852192623" x="-594.23515359566386" y="-313.20055844340538" hdg="1.5072375044644302" length="16.613216473833891"> - <paramPoly3 aU="0" bU="16.072187416956467" cU="1.1876604737391114" dU="-0.86559817577871856" aV="-0" bV="-6.6613381477509392e-16" cV="-3.6479078078265075" dV="1.1955472376497611" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="161.78912561690734" b="-0.005862400943285934" c="-0.00058392365243638722" d="2.225528168163135e-06" /> - <elevation s="10.576394165753314" a="161.66443775812263" b="-0.017467170864238862" c="-0.00052294261612277756" d="3.1363445518779008e-06" /> - <elevation s="21.152788331506628" a="161.42491218969553" b="-0.027476369759499176" c="-0.0004551632234302106" d="4.3151914820620028e-06" /> - <elevation s="31.729182497259941" a="161.08850186531143" b="-0.035656247653492346" c="-0.00037390038790132465" d="5.3980233596936382e-06" /> - <elevation s="42.305576663013255" a="160.67594907121514" b="-0.041753812897964669" c="-0.0002338897243161441" d="2.2255281681669216e-06" /> - <elevation s="52.881970828766569" a="160.21081432737796" b="-0.045954389228543009" c="-1.6670532480854211e-05" d="-8.0098684528176202e-06" /> - <elevation s="63.458364994519883" a="159.71344153723948" b="-0.04899497185742737" c="-7.8120738139813829e-05" d="-5.7585523999773922e-06" /> - <elevation s="65.998024680365546" a="159.58841278585362" b="-0.0495031978019594" c="-0.00049278985488678136" d="1.2404106898641027e-05" /> - <elevation s="74.034759160273197" a="159.16517866693809" b="-0.055020529894579402" c="-4.4012996084869309e-05" d="2.0388187466885106e-05" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.046031242267997638" b="-8.8789078915053521e-05" c="-3.1521405890451714e-06" d="0" /> - <superelevation s="10.576394165753314" a="0.044739575167563619" b="-0.00015546564158628256" c="-5.5897386589670544e-06" d="2.3047534270372186e-07" /> - <superelevation s="21.152788331506628" a="0.042742710458701129" b="-0.00019636120625234085" c="-2.0202908448563097e-05" d="1.8426285579014272e-06" /> - <superelevation s="31.729182497259941" a="0.040585988135188537" b="-5.3591331970431251e-06" c="7.6006053382493038e-07" d="-4.7909241524927748e-08" /> - <superelevation s="42.305576663013255" a="0.040557647982649186" b="-5.3591331970431251e-06" c="-5.5512052890101017e-08" d="-4.7909241524927748e-08" /> - <superelevation s="52.881970828766569" a="0.040438077787952137" b="-2.2610767492804206e-05" c="-2.0234757501429231e-05" d="9.7050638911848197e-07" /> - <superelevation s="63.458364994519883" a="0.039083658576701499" b="-0.00012494944519832334" c="-1.2831765431668674e-06" d="1.491373373964318e-07" /> - <superelevation s="74.034759160273197" a="0.037795048621532816" b="-0.00010204464852103246" c="1.8714939871045204e-06" d="-1.8328519464154267e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.4442717641772185" b="0.034574392535099481" c="-0.0053675260780968164" d="0.00042150907168520641" /> - <laneOffset s="8.1035326241599801" a="2.5962762703487869" b="0.030620560535839756" c="0.0069447308793043235" d="-0.0010532079995907249" /> - <laneOffset s="10.576394165753314" a="2.6985377624006661" b="0.045646035931965846" c="-0.00091272489465762333" d="-0.0010533072945451188" /> - <laneOffset s="13.301004853685779" a="2.7948254650023223" b="0.017214705076297399" c="-0.0023123744045829087" d="0.00015343652086420405" /> - <laneOffset s="20.111882770061122" a="2.8532834177140507" b="0.0070689722268791871" c="-0.00015243236890072229" d="3.2689614614624059e-05" /> - <laneOffset s="21.152788331506628" a="2.8605132596351672" b="0.0068578928870530291" c="-0.00012685400516902366" d="-1.164482667742543e-05" /> - <laneOffset s="31.995459483853232" a="2.9051140435219622" b="-0" c="-0.0046945541094981051" d="0.0009747992619535547" /> - <laneOffset s="33.60402987140224" a="2.8970241748278487" b="-0.0075361660016464473" c="-0.0023096646164094976" d="0.0002068757066927722" /> - <laneOffset s="37.233404884881047" a="2.8491390605250775" b="-0.016126318392115268" c="-0.00047389533169733692" d="-8.2611835235402216e-05" /> - <laneOffset s="41.279234296400425" a="2.7706666818318206" b="-0.024017671605958274" c="-0.0039230114930271969" d="0.0012818441230872163" /> - <laneOffset s="42.305576663013255" a="2.7432697478219716" b="-0.028019575696821182" c="2.0714656868315287e-05" d="0.0012817885503872682" /> - <laneOffset s="43.448926665644144" a="2.7131764619028957" b="-0.022945356210010499" c="0.0032984625651061084" d="-0.00029258162109270009" /> - <laneOffset s="49.129311236741671" a="2.6356421442000464" b="-0.01379427511877457" c="-0.023916431506638122" d="0.063117058213295427" /> - <laneOffset s="49.507767685434985" a="2.6304174046374991" b="-0.00477629750116201" c="0.0010147129386204937" d="6.3380888789363693e-07" /> - <laneOffset s="51.85612227441684" a="2.6248050804465182" b="-0" c="0.00049344690384861578" d="-0.0001421591222646297" /> - <laneOffset s="52.881970828766569" a="2.6251708964732989" b="0.00056359362244240159" c="3.7593415278943663e-05" d="-0.00014011079223658443" /> - <laneOffset s="54.132798522044176" a="2.6256604746559935" b="-0" c="-0.002186244168795229" d="3.3368037663057807e-07" /> - <laneOffset s="63.458364994519883" a="2.4358017665988663" b="-0.040688873909192055" c="-0.0022053807850895102" d="1.0709549274850689e-05" /> - <laneOffset s="64.947422621956079" a="2.3703590734853233" b="-0.047185513454428306" c="-0.0073711825917303622" d="0.00084514796043897746" /> - <laneOffset s="70.181930067803577" a="2.0426113201485432" b="-0.054883198509695086" c="-0.0014544007637940081" d="0.0004966520478732055" /> - <laneOffset s="74.034759160273197" a="1.8379709688452046" b="-0.043972969572810765" c="0.0042698449648566452" d="0.00049870225443902243" /> - <laneOffset s="76.079608092185737" a="1.7701709260684282" b="-0.020254762217377448" c="0.0074455416984000565" d="-0.0014268451338080813" /> - <laneOffset s="78.218193411159149" a="1.746951065804337" b="-0.0079861404377816192" c="0.0014660112474798534" d="-0.00011377110049023274" /> - <laneOffset s="82.119892065232563" a="1.7313514015276437" b="-0.0017421707468805907" c="0.00036119109967486013" d="1.5276787491223762e-06" /> - <laneOffset s="84.49578144173546" a="1.7292715547805881" b="-0" c="0.15999903019675468" d="-0.92454082075685573" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4948301502775281" b="-0.0089582061724893039" c="0.037686497051336643" d="-0.039715616571661547" /> - <width sOffset="0.47111972022898396" a="2.4948214883283741" b="0.00010640276722083744" c="-4.9933461633794828e-05" d="4.7076611126846239e-06" /> - <width sOffset="7.5379179810954167" a="2.4947411526659762" b="0.00010596003813323485" c="0.003220224025826883" d="-0.0013518568955220641" /> - <width sOffset="8.1035326241599801" a="2.4955866786526077" b="0.0024513138963991911" c="-0.0011387855565416632" d="0.00012286017575152469" /> - <width sOffset="10.576394165753314" a="2.4965425640113121" b="-0.00092691790053215511" c="-0.00026029974989385282" d="0.00012654149160311638" /> - <width sOffset="13.277774392602922" a="2.4946336184358167" b="0.00043703747580902536" c="0.0072608393233499595" d="0.0011746254166922132" /> - <width sOffset="13.301004853685779" a="2.4946477040868107" b="0.00077628444162314986" c="0.00013279316856417778" d="-3.2118395347999624e-05" /> - <width sOffset="20.111882770061122" a="2.4959473048302798" b="-0.0018845693979554091" c="0.00045169995868346482" d="8.8628510902155942e-05" /> - <width sOffset="21.152788331506628" a="2.494575011587338" b="-0.00065613257611744132" c="0.00080496372961289431" d="0.0001329629521899439" /> - <width sOffset="21.528306687466031" a="2.494449173780064" b="4.6736640367996823e-06" c="0.00025424818157793953" d="-2.6759705524510232e-05" /> - <width sOffset="31.729182497259941" a="2.4925484436017036" b="-0.0031618917439914448" c="-0.00057850565944603087" d="-2.7583404708028269e-05" /> - <width sOffset="31.995459483853232" a="2.4916649657851995" b="-0.003475844505763161" c="0.0035883768883501884" d="-0.0010140274933048859" /> - <width sOffset="33.60402987140224" a="2.4911381871074059" b="0.00019708466134593563" c="0.0010141832813386578" d="-0.00024610393804414427" /> - <width sOffset="36.426137969590435" a="2.4942401788105659" b="4.1221925530646186e-05" c="0.00015093105550203898" d="-0.00027439988697401099" /> - <width sOffset="37.233404884881047" a="2.494227458455339" b="-0.0002515574293656675" c="-9.6891517849925909e-05" d="1.5087654955059886e-05" /> - <width sOffset="41.279234296400425" a="2.4926228900083931" b="-0.00029467302907604243" c="0.0025326506997787671" d="-0.0013493683033673333" /> - <width sOffset="42.305576663013255" a="2.4935294560834174" b="0.0006398730975029146" c="-0.0016189842311269726" d="-0.0013493127308787226" /> - <width sOffset="42.453856442149053" a="2.4935843408470468" b="7.0746265585393958e-05" c="0.0028156312810764875" d="-0.0015152752969004096" /> - <width sOffset="43.448926665644144" a="2.4949497015064774" b="0.0011731314066840068" c="-0.00058893378481844659" d="5.9094874579705491e-05" /> - <width sOffset="48.851551465699856" a="2.4934165732595104" b="-1.5798650313291959e-05" c="0.0046717129063220042" d="3.2736729548032235e-05" /> - <width sOffset="49.129311236741671" a="2.4937733114970744" b="0.0025870061283788329" c="0.026927957438868437" d="-0.063376903104840399" /> - <width sOffset="49.507767685434985" a="2.4951738413755091" b="-0.0042631608632705438" c="0.0017017930690142603" d="-0.00026047870043284754" /> - <width sOffset="51.85612227441684" a="2.4911740598838863" b="-0.0005797735393158962" c="0.00039243527334014902" d="-0.00011768576928298431" /> - <width sOffset="52.881970828766569" a="2.4908652355665479" b="-0.00014616046797138056" c="3.280015287132632e-05" d="-0.0001181218753829346" /> - <width sOffset="54.132798522044176" a="2.4905025667559615" b="-0.00061853558760349822" c="0.0012876240210431687" d="-0.00025856634799614281" /> - <width sOffset="57.183486201953158" a="2.4932579629048455" b="1.8547224413186653e-05" c="0.0005004206386871532" d="-6.5723208194448898e-05" /> - <width sOffset="63.458364994519883" a="2.4968398748813683" b="-0.001464672346123963" c="-0.00074162313182405673" d="-7.4397455023365693e-05" /> - <width sOffset="64.947422621956079" a="2.4927688615294938" b="-0.0041681942917996193" c="0.0041396737893258529" d="-0.0009088358661875069" /> - <width sOffset="67.303568698975766" a="2.4940415298790222" b="0.00020315739027861046" c="0.0020888824372048819" d="-0.00073839773355251388" /> - <width sOffset="70.181930067803577" a="2.4943239464534388" b="-0.0061245218832756618" c="0.0030677739512875958" d="-0.00038990182098673032" /> - <width sOffset="74.034759160273197" a="2.4939666749877487" b="0.00015124610937240074" c="-0.0014226006519454746" d="-0.00039195101878513423" /> - <width sOffset="74.047107921723594" a="2.4939683250167084" b="0.00011593208899701724" c="0.0022267372643306992" d="-0.00083946742227779562" /> - <width sOffset="76.079608092185737" a="2.4963542530547773" b="-0.0012360433418379564" c="-0.0030083001888479141" d="0.0010860799659693" /> - <width sOffset="78.218193411159149" a="2.4905751282633535" b="0.00079865727323936379" c="0.00078496410659981554" d="-0.00022699406734854487" /> - <width sOffset="80.683279710642168" a="2.4939135895442703" b="0.00053057498880197933" c="-0.0022630637719830518" d="0.00060562069231045882" /> - <width sOffset="82.119892065232563" a="2.4918008254474109" b="-0.0022219757733083082" c="0.0001201812331634893" d="0.00049032191307115064" /> - <width sOffset="84.49578144173546" a="2.4937760338018409" b="0.0066524802944524699" c="-0.15601191720359978" d="0.92503267034695669" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16508719176748962" weight="standard" type="solid"> - <type name="solid"> - <line length="84.611153326026511" space="0" width="0.16508700000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="5.3883702539538376" b="-0.028295635981200239" c="0.054265973070203199" d="-0.036739566364592254" /> - <width sOffset="0.76310727720481153" a="5.3820520854947365" b="-0.0096580725271630009" c="-0.0019008552416155556" d="0.00042205889300205328" /> - <width sOffset="8.0957496758916854" a="5.3754288635717735" b="0.030544681606494484" c="0.0048561055923512847" d="0.0004273443223986422" /> - <width sOffset="8.1035326241599801" a="5.3756668856051766" b="0.030620348901735418" c="0.0069312029924777458" d="-0.0010473726429938053" /> - <width sOffset="10.576394165753314" a="5.477933370953938" b="0.045685969506325058" c="-0.00091178786454453791" d="-0.0010530567813009852" /> - <width sOffset="13.301004853685779" a="5.5743418999654653" b="0.017265323792937975" c="-0.0023093897212825274" d="0.00015368703410833772" /> - <width sOffset="20.111882770061122" a="5.6333622122445774" b="0.0071951100393653784" c="-0.00014432904023209804" d="3.2940127857895041e-05" /> - <width sOffset="21.152788331506628" a="5.6407324140763908" b="0.0070017145808577213" c="-0.00013118978829591366" d="-1.1382299042858246e-05" /> - <width sOffset="31.729182497259941" a="5.6866442704569664" b="0.00040700896761752597" c="-0.00049913162486634095" d="-1.1799562026575415e-05" /> - <width sOffset="31.995459483853232" a="5.6867170346571907" b="0.00013868454927164006" c="-0.0046974745057672025" d="0.00097464452661539787" /> - <width sOffset="33.60402987140224" a="5.678842049265354" b="-0.0074080779107466872" c="-0.0023133317207271907" d="0.00020672097135461545" /> - <width sOffset="37.233404884881047" a="5.6313661127488466" b="-0.01603096358490445" c="-0.00047924721372515381" d="-8.2766570573550443e-05" /> - <width sOffset="41.279234296400425" a="5.5531816724320091" b="-0.023973220867704665" c="-0.0039302414734012428" d="0.0012816893877496463" /> - <width sOffset="42.305576663013255" a="5.5258225769024918" b="-0.027990454813609102" c="1.1850365072059637e-05" d="0.0012820317747542023" /> - <width sOffset="43.448926665644144" a="5.4957513620403979" b="-0.022935551438297466" c="0.00329043254505057" d="-0.00029233839672557107" /> - <width sOffset="44.077378214892647" a="5.4825644793143784" b="-0.019146174910142564" c="0.0021250793806906771" d="-0.00028293830104720208" /> - <width sOffset="49.129311236741671" a="5.4035948081545486" b="-0.019338134609758237" c="-0.024392042350947173" d="0.06312670153334092" /> - <width sOffset="49.507767685434985" a="5.3962043605427557" b="-0.010676009356876445" c="0.00055005082428566583" d="1.0277128933356531e-05" /> - <width sOffset="51.85612227441684" a="5.3742998036959744" b="-0.0079225526174585836" c="9.6722594161270084e-05" d="-0.00013251580222003553" /> - <width sOffset="52.881970828766569" a="5.3661311923071917" b="-0.0081424722292386831" c="-0.00034005315989298459" d="-0.00012687114501239833" /> - <width sOffset="54.132798522044176" a="5.3551660378392043" b="-0.0095886643793476542" c="-0.0025142091917790595" d="1.3573327600679154e-05" /> - <width sOffset="54.741672733131928" a="5.3483987239861346" b="-0.012635242625811321" c="-0.0018920517639034969" d="-6.9866980041026643e-05" /> - <width sOffset="63.458364994519883" a="5.0482287975265532" b="-0.061545739740323235" c="-0.0037799824841386227" d="-4.704876950425782e-05" /> - <width sOffset="64.871113728703577" a="4.953603158672526" b="-0.072507778807907" c="-0.0047033713276381332" d="0.00014896253268711107" /> - <width sOffset="64.947422621956079" a="4.9480428485578507" b="-0.07322299468148237" c="-0.0098829130445489948" d="0.00098340094288318271" /> - <width sOffset="70.181930067803577" a="4.4350091732027712" b="-0.095851599807494844" c="-0.0017950724185681428" d="0.00063490503031739915" /> - <width sOffset="74.034759160273197" a="4.0753745804645671" b="-0.081409667265235186" c="0.0054993032154300658" d="0.00065211186437528319" /> - <width sOffset="75.077149444261408" a="3.9972279600159997" b="-0.067819116538231999" c="0.0054473154533039806" d="0.00064066565157017987" /> - <width sOffset="76.079608092185737" a="3.9353616373846654" b="-0.054966239969228253" c="0.0074904223383853805" d="-0.0012848817366768678" /> - <width sOffset="78.218193411159149" a="3.839502116871957" b="-0.040557827155974224" c="0.0024216943982752286" d="2.8192296640732083e-05" /> - <width sOffset="79.707536770292478" a="3.7845623878041743" b="-0.033156754525541655" c="-0.0015668008436063785" d="0.00096407383129423773" /> - <width sOffset="82.119892065232563" a="3.7089928310065998" b="-0.023884953437937732" c="0.0056371464924598776" d="0.0010793726105340583" /> - <width sOffset="82.911907754070143" a="3.6941479490242068" b="-0.012924301298158558" c="0.0052691041878067182" d="-0.00070775758737185574" /> - <width sOffset="83.658371783539252" a="3.6871420309319705" b="-0.0062410135419951433" c="0.0033034397027380332" d="1.175579467689295e-05" /> - <width sOffset="84.49578144173546" a="3.6842392027564168" b="-0.00068361749019121691" c="0.16295992326068987" d="-0.92453059264085513" /> - <roadMark sOffset="0" color="standard" width="0.29716791476625065" weight="bold" type="solid"> - <type name="solid"> - <line length="84.611153326026511" space="0" width="0.29716799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4948301502775787" b="0.015348003460695737" c="-0.053199556086730729" d="0.036596609128518399" /> - <width sOffset="0.76310727720481153" a="2.4918253679664506" b="-0.0019117248989847097" c="0.0026399971035570794" d="-0.00056501612907592855" /> - <width sOffset="3.4570839439199008" a="2.4947880831715814" b="1.0625198603585184e-05" c="0.00078857371412933107" d="-0.00015358340152240825" /> - <width sOffset="8.0957496758916854" a="2.4964759417588871" b="-0.0025875784837801133" c="0.0011787675106144507" d="-0.00015886893680259082" /> - <width sOffset="9.7367653040144386" a="2.4947019614167223" b="-2.2965403089771652e-06" c="-1.609961766795952e-05" d="-5.383617346903295e-06" /> - <width sOffset="10.576394165753314" a="2.4946854966571625" b="-4.0717920797960032e-05" c="-8.3516939597316622e-07" d="2.01226005173101e-07" /> - <width sOffset="21.152788331506628" a="2.4943994915222887" b="9.1434091115626917e-06" c="-5.2590216561733323e-06" d="3.3062257363155168e-07" /> - <width sOffset="31.729182497259941" a="2.4942990729090484" b="8.8508730730496729e-06" c="-8.6015542751383139e-07" d="-4.3893735112443201e-08" /> - <width sOffset="42.305576663013255" a="2.494244536494393" b="-2.4073687198709024e-05" c="-1.0949906349488702e-06" d="-4.4185339437263444e-07" /> - <width sOffset="42.557075957797423" a="2.494238405689885" b="-2.4708310147598275e-05" c="-0.00037359692443503386" d="3.0683797034051874e-07" /> - <width sOffset="44.077378214892647" a="2.4933384181369926" b="-0.0011585412038216556" c="0.00024199414432148455" d="-9.0932577080579804e-06" /> - <width sOffset="52.881970828766569" a="2.4956910191515811" b="0.00098802727726605803" c="1.5411814389383409e-06" d="-1.1801991311614875e-05" /> - <width sOffset="54.741672733131928" a="2.4974578779165113" b="0.00087130830505233701" c="-0.00066166745618120295" d="7.1638316330227211e-05" /> - <width sOffset="60.155567544407489" a="2.4941491639857816" b="6.1246834149181195e-06" c="-0.00039513408413209843" d="5.0699520754402135e-05" /> - <width sOffset="63.458364994519883" a="2.4916857100503109" b="-0.00094480825258060064" c="9.7666014034725798e-05" d="3.4625458189603833e-05" /> - <width sOffset="64.871113728703577" a="2.4906434925573357" b="-0.00046153058157028665" c="0.0009684018054942681" d="-0.00016138584303372193" /> - <width sOffset="68.584104729499245" a="2.4940194279224221" b="5.506180130643995e-05" c="0.00040128780713300221" d="-6.0169534618607332e-05" /> - <width sOffset="74.034759160273197" a="2.4964979938213276" b="-0.00093322037529924157" c="-0.0005865545360000128" d="-7.161645583312789e-05" /> - <width sOffset="75.077149444261408" a="2.4948067614981677" b="-0.002389508363516743" c="0.001280741547419144" d="-6.0170243028281976e-05" /> - <width sOffset="76.614432699388502" a="2.4939415130830547" b="0.0011216265659958688" c="-0.00091159435081452776" d="8.5508618643175352e-05" /> - <width sOffset="79.707536770292478" a="2.4912197558261506" b="-0.0020634278562727988" c="0.0039963260896766408" d="-0.0008503729160100192" /> - <width sOffset="82.911907754070143" a="2.4976626564417321" b="-0.0026468756009909167" c="-0.0012457223730942954" d="0.00093675728189506673" /> - <width sOffset="83.658371783539252" a="2.4953823630668479" b="-0.0029407419928021237" c="0.0012327622161357791" d="0.00021724389984687829" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276670426" type="pole" s="4.3495027228818675" t="3.6884768635582996" height="1.276763333804297" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670438" type="pole" s="17.513772391289866" t="4.0161382155232364" height="1.2623817844386451" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670450" type="pole" s="30.356394493042423" t="4.0565136251969598" height="1.2547305103827" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670462" type="pole" s="44.055978782969134" t="3.8705074170157059" height="1.2701346198401495" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670474" type="pole" s="56.761708084498942" t="3.754064369877447" height="1.2519697621397654" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="9100419" s="0" t="3.2045773910562203" orientation="none" validLength="4.4252661299499891" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="4.4252661299499891" s="0" distance="0" tStart="3.2045773910562203" tEnd="3.2339996846134818" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="277535875" s="4.4252661299499891" t="3.2339996846134818" orientation="none" validLength="13.582629350153805" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="13.582629350153805" s="4.4252661299499891" distance="0" tStart="3.2339996846134818" tEnd="3.561167256536848" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="545971331" s="18.007895480103794" t="3.561167256536848" orientation="none" validLength="10.034314507496223" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="10.034314507496223" s="18.007895480103794" distance="0" tStart="3.561167256536848" tEnd="3.6579636674355704" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="814406787" s="28.042209987600017" t="3.6579636674355704" orientation="none" validLength="27.121428915634475" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="27.121428915634475" s="28.042209987600017" distance="0" tStart="3.6579636674355704" tEnd="3.3392524049782444" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1082842243" s="55.163638903234492" t="3.3392524049782444" orientation="none" validLength="4.6617280929606153" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="4.6617280929606153" s="55.163638903234492" distance="0" tStart="3.3392524049782444" tEnd="3.3737583185782651" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741979" s="59.825366996195108" t="3.3737583185782651" orientation="none" validLength="4.5970010046558727" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="4.5970010046558727" s="59.825366996195108" distance="0" tStart="3.3737583185782651" tEnd="3.2376111031649097" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741980" s="64.42236800085098" t="3.2376111031649097" orientation="none" validLength="7.4321417155101273" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="7.4321417155101273" s="64.42236800085098" distance="0" tStart="3.2376111031649097" tEnd="2.8016774271521498" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741981" s="71.854509716361108" t="2.8016774271521498" orientation="none" validLength="10.376293335603265" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="10.376293335603265" s="71.854509716361108" distance="0" tStart="2.8016774271521498" tEnd="2.6537205908871351" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741982" s="82.230803051964372" t="2.6537205908871351" orientation="none" validLength="2.3803502740621383" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="2.3803502740621383" s="82.230803051964372" distance="0" tStart="2.6537205908871351" tEnd="2.7003353570552009" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="9100423" s="0" t="-6.4723439401846754" orientation="none" validLength="6.7556963430517341" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.7556963430517341" s="0" distance="0" tStart="-6.4723439401846754" tEnd="-6.1648438297165447" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="277535879" s="6.7556963430517341" t="-6.1648438297165447" orientation="none" validLength="16.88884855607494" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.88884855607494" s="6.7556963430517341" distance="0" tStart="-6.1648438297165447" tEnd="-5.8372264644772471" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="545971335" s="23.644544899126675" t="-5.8372264644772471" orientation="none" validLength="7.1843172456215072" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.1843172456215072" s="23.644544899126675" distance="0" tStart="-5.8372264644772471" tEnd="-5.865225785352326" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="814406791" s="30.828862144748182" t="-5.865225785352326" orientation="none" validLength="18.928189545155927" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.928189545155927" s="30.828862144748182" distance="0" tStart="-5.865225785352326" tEnd="-6.142473653134906" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1082842247" s="49.75705168990411" t="-6.142473653134906" orientation="none" validLength="13.008781879628252" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.008781879628252" s="49.75705168990411" distance="0" tStart="-6.142473653134906" tEnd="-6.0450034619725601" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741983" s="62.765833569532361" t="-6.0450034619725601" orientation="none" validLength="9.1568593235652429" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.1568593235652429" s="62.765833569532361" distance="0" tStart="-6.0450034619725601" tEnd="-5.7542772548881382" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741984" s="71.922692893097604" t="-5.7542772548881382" orientation="none" validLength="9.6780441530439703" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.6780441530439703" s="71.922692893097604" distance="0" tStart="-5.7542772548881382" tEnd="-5.3363428357289884" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741985" s="81.600737046141575" t="-5.3363428357289884" orientation="none" validLength="3.0104162798849359" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.0104162798849359" s="81.600737046141575" distance="0" tStart="-5.3363428357289884" tEnd="-5.2821255401131495" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412886" s="82.891399461409577" t="-5.5388694029390892" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9489019" s="9.2667981613511543" t="3.5663099616183804" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277924475" s="32.398085036790299" t="3.712736173917901" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546359931" s="56.03188302141907" t="3.6832884382616551" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9489020" s="10.622257039992894" t="-6.2984437898456154" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277924476" s="33.032131213811894" t="-6.0294539152214117" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546359932" s="55.089360480486299" t="-6.1863695905358318" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8234970" type="625" subtype="20" country="DEU" zOffset="1.276763333804297" s="4.3495027228818675" t="3.6884768635582996" orientation="+" /> - <signal dynamic="no" id="8234982" type="625" subtype="20" country="DEU" zOffset="1.2623817844386451" s="17.513772391289866" t="4.0161382155232364" orientation="+" /> - <signal dynamic="no" id="8234994" type="625" subtype="20" country="DEU" zOffset="1.2547305103827" s="30.356394493042423" t="4.0565136251969598" orientation="+" /> - <signal dynamic="no" id="8235006" type="625" subtype="20" country="DEU" zOffset="1.2701346198401495" s="44.055978782969134" t="3.8705074170157059" orientation="+" /> - <signal dynamic="no" id="8235018" type="625" subtype="20" country="DEU" zOffset="1.2519697621397654" s="56.761708084498942" t="3.754064369877447" orientation="+" /> - </signals> - </road> - <road name="" length="4.9999999999984297" id="9100458" junction="33554629"> - <link> - <predecessor elementType="road" elementId="4940030" contactPoint="end" /> - <successor elementType="road" elementId="33782045" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1446.5610058315126" y="-46.215463538840076" hdg="0.43633231299858255" length="4.9999999999984297"> - <paramPoly3 aU="0" bU="5.0791482586851417" cU="-0.088191790812974069" dU="0.0080533708663595091" aV="-0" bV="2.2204460492503131e-16" cV="-0.081160268201065866" dV="-0.0041537296664624652" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.06423822832744" b="-0.0083892130972954317" c="0.00016790301480920273" d="-1.1051681559232003e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.021856845448807921" b="8.8391347711819923e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.5991691760036475" b="0.0010573567818229117" c="0.0024219391335373723" d="-4.1804869300820694e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.12" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999984297" space="0" width="0.12" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-6" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.3341399433964325" b="0.072478887521709778" c="0.00051138327074184693" d="5.8583203623713409e-05" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999984297" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4927829045308671" b="0.00068069711353800633" c="-0.0004319765675133752" d="6.0198840748003289e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="9100462" s="0" t="-2.5305902685123303" orientation="none" validLength="4.9999999999984297" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.9999999999984297" s="0" distance="0" tStart="-2.5305902685123303" tEnd="-2.9110744467930951" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="879.90939930590821" id="9100473" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556587" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1757.6340098858536" y="102.80418759956956" hdg="0.41887902047863901" length="879.90939930590821"> - <paramPoly3 aU="0" bU="879.90355128863928" cU="0.015938721343642936" dU="-0.010575960932935446" aV="-0" bV="-5.6843418860808015e-14" cV="2.4489501231485926" dV="-1.5972043163786773" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.30803489874242" b="0.00018489706642795095" c="3.5365525675895064e-05" d="-6.5278871303994039e-09" /> - <elevation s="10.11390114144722" a="156.31351575075203" b="0.00089826069519569605" c="5.9294857757327614e-05" d="-1.8090149239891939e-06" /> - <elevation s="20.227802282894441" a="156.32679446436529" b="0.0015425275376196035" c="1.9117009715909741e-05" d="3.4145153029113557e-07" /> - <elevation s="30.341703424341659" a="156.34470418580375" b="0.0020340048820570592" c="3.3709296373986474e-05" d="-7.7294777900474364e-07" /> - <elevation s="40.455604565788882" a="156.36792440596679" b="0.0024786730690011432" c="8.7697652950775219e-05" d="-6.8969861639082972e-06" /> - <elevation s="50.569505707236104" a="156.39482878757224" b="0.0021361050950642014" c="-0.00013337342191305855" d="8.0511126659665709e-06" /> - <elevation s="60.683406848683319" a="156.41111961049006" b="0.0019089228945646595" c="5.6220943758433626e-05" d="-2.6567488589637798e-06" /> - <elevation s="70.797307990130548" a="156.43342859546163" b="0.0022308645659693338" c="1.9289882949667019e-05" d="-1.6750385829293542e-06" /> - <elevation s="80.911209131577763" a="156.45623159085525" b="0.0021070324078742162" c="-1.8046820698622586e-05" d="3.2848942459613927e-07" /> - <elevation s="91.025110273024978" a="156.4760357234166" b="0.0018427894184944679" c="1.2493647749092859e-05" d="-2.3757295814070298e-06" /> - <elevation s="101.13901141447221" a="156.49349366386639" b="0.0013664612174980873" c="1.6035246477431635e-06" d="-6.527887130396469e-09" /> - <elevation s="111.25291255591942" a="156.50747119017001" b="0.0013968937647935002" c="-0.00011808410202032582" d="8.0643285306099831e-06" /> - <elevation s="121.36681369736664" a="156.51786333515386" b="0.0014830364960080635" c="8.0878242576288816e-05" d="-3.65328216120915e-06" /> - <elevation s="131.48071483881387" a="156.53735619234118" b="0.0019979319797352193" c="5.5608549056951516e-05" d="-4.8211090705250643e-06" /> - <elevation s="141.5946159802611" a="156.55826360121941" b="0.0016433025650278712" c="-8.7618090956509347e-05" d="6.0169673607165343e-06" /> - <elevation s="151.7085171217083" a="156.5721461790053" b="0.0017174259028331171" c="9.3925494383608693e-06" d="-6.5278871303952812e-09" /> - <elevation s="161.82241826315553" a="156.59047007454654" b="0.0019054133035697172" c="0.00011036829672155433" d="-4.4331004913951326e-06" /> - <elevation s="171.93631940460276" a="156.61644460637905" b="0.0027775225900783908" c="5.8047097793976518e-05" d="-3.7060601639814024e-06" /> - <elevation s="182.05022054604996" a="156.64663974533974" b="0.002814398047798072" c="3.1956539445555286e-05" d="-4.8455030380386245e-06" /> - <elevation s="192.16412168749719" a="156.67336018664011" b="0.0019738546093563476" c="-0.00027551688123178943" d="1.6468057009543681e-05" /> - <elevation s="202.27802282894442" a="156.68217787067519" b="0.0014543554860432586" c="5.8015898698404309e-05" d="-2.6844576461856986e-06" /> - <elevation s="212.39192397039162" a="156.70004434711271" b="0.0018041020727268592" c="2.0326927141649957e-05" d="-1.6555186295698431e-06" /> - <elevation s="222.50582511183885" a="156.71865738370531" b="0.001707237185936348" c="-1.281410960509887e-05" d="-4.7312265697124013e-08" /> - <elevation s="232.61972625328607" a="156.73456449636464" b="0.0014335170540271192" c="-5.4883730306105171e-05" d="4.0519036286395583e-06" /> - <elevation s="242.73362739473328" a="156.74764077624815" b="0.0015667595860903382" c="6.0689840972124486e-05" d="-3.3364485322758179e-06" /> - <elevation s="252.8475285361805" a="156.76624309250172" b="0.0017705157564546162" c="6.1122872595999682e-06" d="-1.2896618380171869e-06" /> - <elevation s="262.96142967762773" a="156.78344091191329" b="0.0014983915117394533" c="-3.5919157346997945e-05" d="1.5634298678669517e-06" /> - <elevation s="273.07533081907496" a="156.79653875274835" b="0.0012516002952392283" c="-1.2685553820572308e-05" d="8.1660892253672434e-07" /> - <elevation s="283.18923196052219" a="156.80874452822741" b="0.0012455946415264006" c="-1.6286090966798934e-06" d="5.2691975320882852e-07" /> - <elevation s="293.30313310196937" a="156.82172088788661" b="0.0013743488982986465" c="1.8954246742875137e-05" d="-9.9432176785691002e-07" /> - <elevation s="303.41703424341659" a="156.83653107901475" b="0.0014526211610072146" c="1.0288362121414122e-05" d="-1.1448702288652385e-06" /> - <elevation s="313.53093538486382" a="156.85109071452828" b="0.0013094023667830426" c="-2.1027370034288571e-05" d="7.9350970552368358e-07" /> - <elevation s="323.64483652631105" a="156.86300390420365" b="0.0011275715782529513" c="-1.1182660613888869e-05" d="6.0057964946860985e-07" /> - <elevation s="333.75873766775828" a="156.8738855024778" b="0.0010856726024615819" c="-8.8462541253603861e-06" d="9.5709409954432603e-07" /> - <elevation s="343.87263880920551" a="156.88495116795502" b="0.0012004386500523098" c="7.7930370640039924e-06" d="2.559422102255803e-07" /> - <elevation s="353.98653995065274" a="156.89815423114865" b="0.0014366164140030549" c="1.4124339026532704e-05" d="-1.2717133877924789e-07" /> - <elevation s="364.10044109209991" a="156.91399725373867" b="0.0016832953023751189" c="1.9538675430176275e-05" d="-8.0273455288643209e-07" /> - <elevation s="374.21434223354714" a="156.93219008871367" b="0.0018321822143112939" c="7.2719321535518994e-06" d="-4.0566516298964093e-07" /> - <elevation s="384.32824337499437" a="156.95104476632082" b="0.0018547897390699835" c="1.4278322362034045e-05" d="-1.5171346361901256e-06" /> - <elevation s="394.4421445164416" a="156.96969490183673" b="0.0016780411803739592" c="-4.1390225740661551e-05" d="2.4568367326910685e-06" /> - <elevation s="404.55604565788883" a="156.98497434454478" b="0.0015947447090400996" c="1.1289471085134224e-05" d="-3.0802495715463842e-07" /> - <elevation s="414.66994679933606" a="157.00193957550769" b="0.0017285813587717641" c="1.7090326161849882e-06" d="3.1814882133253448e-07" /> - <elevation s="424.78384794078323" a="157.01992623950477" b="0.001860782612343317" c="1.8746481615345467e-06" d="6.06866827453931e-07" /> - <elevation s="434.89774908223046" a="157.03956561128649" b="0.002084933661907996" c="2.7636309459415068e-06" d="-7.8097994602911799e-08" /> - <elevation s="445.01165022367769" a="157.06085432165111" b="0.0021168696772347396" c="-1.0927747339435565e-06" d="-7.8097994602715141e-08" /> - <elevation s="455.12555136512492" a="157.08207155413842" b="0.0020707990809461976" c="-1.2311000391207303e-05" d="6.7216211957865894e-07" /> - <elevation s="465.23945250657215" a="157.10245149956239" b="0.0020280429977865976" c="0.00010907924097552005" d="-7.3662946125520889e-06" /> - <elevation s="475.35335364801938" a="157.1264998688884" b="0.0019739594725586081" c="-8.3786750623043174e-05" d="2.3724380584702559e-06" /> - <elevation s="485.46725478946655" a="157.14034810160089" b="0.0010071748050050375" c="-7.2892645374840435e-05" d="3.6546785854145672e-06" /> - <elevation s="495.58115593091378" a="157.14685929471318" b="0.00065423892744929783" c="-2.937800551859378e-05" d="2.9938429042835665e-06" /> - <elevation s="505.69505707236101" a="157.15356841027597" b="0.00097871596067868353" c="2.0094034575873663e-05" d="1.0831406471454239e-06" /> - <elevation s="512.00002909315185" a="157.16080945640866" b="0.0013612738174923077" c="3.9794668453911166e-05" d="1.1014144230149919e-06" /> - <elevation s="515.8089582138083" a="157.16663265444882" b="0.0017123617270837954" c="-2.2065265947784551e-06" d="1.1745888814668811e-08" /> - <elevation s="525.92285935525547" a="157.18373775570998" b="0.0016713330394004795" c="2.8542536880845061e-05" d="-8.227252131688853e-07" /> - <elevation s="536.03676049670264" a="157.20270993794017" b="0.0019962136868724588" c="2.8086890232652696e-05" d="-1.5769071258765999e-06" /> - <elevation s="546.15066163814993" a="157.22414107515999" b="0.0020804395463093362" c="2.9540592471068442e-07" d="-3.8247236967209743e-07" /> - <elevation s="556.2645627795971" a="157.244816961422" b="0.0019690445196958229" c="-5.1638075859675271e-06" d="-2.0167968982622177e-07" /> - <elevation s="566.37846392104439" a="157.26399482206818" b="0.0018027019916031862" c="-1.9207471709166601e-05" d="1.0086830597633849e-06" /> - <elevation s="576.49236506249156" a="157.28130596456069" b="0.0017237146369151323" c="-1.0553029981550602e-05" d="1.185160218626271e-06" /> - <elevation s="586.60626620393873" a="157.2988860846134" b="0.0018739436915744178" c="2.9613616868203425e-05" d="-1.5776174330855219e-06" /> - <elevation s="596.72016734538602" a="157.3192360307207" b="0.0019888339014390113" c="1.7268019967004206e-06" d="-3.7446728749389384e-07" /> - <elevation s="606.83406848683319" a="157.33914012722281" b="0.0019088494150526054" c="-8.5632075768828175e-06" d="2.9196971534776066e-07" /> - <elevation s="616.94796962828048" a="157.35787216295375" b="0.0018252321644961827" c="9.9237635664406697e-06" d="-1.2204461739804575e-06" /> - <elevation s="627.06187076972765" a="157.37608486624416" b="0.001651446126623167" c="-2.4051313757657145e-05" d="9.4184497191178883e-07" /> - <elevation s="637.17577191117493" a="157.39130159236151" b="0.0014539676888975089" c="-2.7446732341603424e-05" d="2.2428997135965711e-06" /> - <elevation s="647.28967305262211" a="157.40551974085847" b="0.0015870659526874122" c="7.7953621077253866e-05" d="-2.902219488051851e-06" /> - <elevation s="657.40357419406928" a="157.4265425994079" b="0.0022732836183404687" c="4.1219316442505764e-05" d="-2.1488863229521997e-06" /> - <elevation s="667.51747533551656" a="157.45152757610072" b="0.0024476246328515175" c="1.3468089118307044e-05" d="-1.5304111254246295e-06" /> - <elevation s="677.63137647696374" a="157.4760769702215" b="0.002250412640364908" c="-1.5335333247387477e-05" d="-1.8942619149256435e-07" /> - <elevation s="687.74527761841102" a="157.49707278172252" b="0.0018820827699357729" c="-7.0904876212744556e-05" d="5.1390121582486742e-06" /> - <elevation s="697.8591787598582" a="157.51417167204937" b="0.0020248569739905499" c="9.1569609500615848e-05" d="-5.7629563029321198e-06" /> - <elevation s="707.97307990130548" a="157.53805549192109" b="0.0021086133045278279" c="-3.8440202393559091e-05" d="1.3521453847359554e-06" /> - <elevation s="718.08698104275265" a="157.55684858874201" b="0.0017459893864335452" c="-2.1168867955596031e-05" d="1.0901914435300545e-06" /> - <elevation s="728.20088218419983" a="157.57346983777313" b="0.0016523400176209416" c="7.2314069486196268e-06" d="-6.0416888913099797e-07" /> - <elevation s="738.31478332564711" a="157.5902960996001" b="0.0016132123747986185" c="-5.4795403726470562e-05" d="3.8673563818563923e-06" /> - <elevation s="748.42868446709429" a="157.60500790981865" b="0.0016916089942379663" c="1.1571887555069638e-05" d="1.1745888814714225e-08" /> - <elevation s="758.54258560854157" a="157.62331252770221" b="0.0019292873437496267" c="0.00012887451520171437" d="-7.2179446531653544e-06" /> - <elevation s="768.65648674998874" a="157.64854044751468" b="0.0023211433071445211" c="-1.5959488118823814e-05" d="-9.2106941026295691e-08" /> - <elevation s="778.77038789143592" a="157.67028845926691" b="0.0019700528046498631" c="-2.2591088840431679e-05" d="1.8385478238072366e-06" /> - <elevation s="788.8842890328832" a="157.68980460351131" b="0.0020772853921519284" c="5.8202129995271515e-05" d="-2.007353420484569e-06" /> - <elevation s="798.99819017433038" a="157.71469088686337" b="0.0026385840262230851" c="8.5660532179230944e-05" d="-6.706132067169352e-06" /> - <elevation s="809.11209131577766" a="157.7432016631781" b="0.0023133775432024454" c="-2.8875725587932305e-05" d="1.0784627733931032e-06" /> - <elevation s="819.22599245722483" a="157.76476094376508" b="0.0020602361699198165" c="2.4468839854879605e-05" d="-3.0939634211312602e-06" /> - <elevation s="829.33989359867212" a="157.78490001675684" b="0.0016057332220158866" c="-8.2677017553388886e-05" d="4.4294847206020949e-06" /> - <elevation s="839.45379474011929" a="157.79726570157663" b="0.0012926480730908608" c="-7.6351412179146989e-06" d="1.4627845494675897e-06" /> - <elevation s="849.56769588156646" a="157.81107175007824" b="0.001587095012940225" c="2.293633454935081e-05" d="-7.3657591791754818e-08" /> - <elevation s="859.68159702301375" a="157.82939344938009" b="0.0020284431279507312" c="1.857275447326772e-05" d="3.0762040739132911e-07" /> - <elevation s="869.79549816446092" a="157.85212700029007" b="0.0024985295271465909" c="2.4914036010295869e-05" d="1.1745888829495503e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.023618982681025563" b="1.6206548328426854e-05" c="2.1505662201545409e-07" d="-5.2399140654590787e-23" /> - <superelevation s="10.11390114144722" a="0.023804892464790006" b="2.0556671158181939e-05" c="8.9534746041071805e-07" d="-6.7262951148245436e-08" /> - <superelevation s="20.227802282894441" a="0.024034798960807745" b="1.8026399700974223e-05" c="-1.2066911077155669e-06" d="7.3310672209071119e-08" /> - <superelevation s="30.341703424341659" a="0.02416952691381374" b="1.6114755656416596e-05" c="2.4219954097252559e-06" d="-2.1216073844899035e-07" /> - <superelevation s="40.455604565788882" a="0.024360765052062895" b="0" c="-8.8766371218768171e-07" d="0" /> - <superelevation s="50.569505707236104" a="0.024269965046564781" b="-1.795548606383186e-05" c="-1.375879232702248e-05" d="9.6543399916433655e-07" /> - <superelevation s="60.683406848683319" a="0.023679764847566721" b="0" c="2.1373848998782838e-06" d="-1.2624778205552275e-07" /> - <superelevation s="70.797307990130548" a="0.02376778904373978" b="4.4925649361997395e-06" c="-2.2209851932355238e-07" d="0" /> - <superelevation s="80.911209131577763" a="0.023790507722557908" b="0" c="-3.1898506197071911e-06" d="2.1026180205480039e-07" /> - <superelevation s="91.025110273024978" a="0.023681743389912999" b="0" c="5.0934466900938934e-07" d="-3.3573900705968055e-08" /> - <superelevation s="101.13901141447221" a="0.023699110514463845" b="0" c="-8.668671500493588e-07" d="0" /> - <superelevation s="111.25291255591942" a="0.02361043781002645" b="-1.7534817316734608e-05" c="-1.6077727973193535e-05" d="1.1169178530463794e-06" /> - <superelevation s="121.36681369736664" a="0.022944005266576011" b="0" c="9.5931260751613e-06" d="-4.648378608004313e-07" /> - <superelevation s="131.48071483881387" a="0.023444392557056257" b="5.1401673826969954e-05" c="5.653712837369788e-06" d="-5.4017090217490303e-07" /> - <superelevation s="141.5946159802611" a="0.02398374816175779" b="0" c="-1.0842128247517239e-05" d="6.1222432610956369e-07" /> - <superelevation s="151.7085171217083" a="0.023508079487195223" b="-3.1437317687929949e-05" c="3.3262994126229379e-06" d="-1.7643785655614128e-07" /> - <superelevation s="161.82241826315553" a="0.023347840315261804" b="-1.8297603231630898e-05" c="-2.5371058492949591e-06" d="2.2686153959718632e-07" /> - <superelevation s="171.93631940460276" a="0.023137959186774942" b="0" c="6.0353427254733715e-06" d="-1.9198144278903598e-07" /> - <superelevation s="182.05022054604996" a="0.023556703889084762" b="6.3167800198969505e-05" c="1.2701581627120511e-05" d="-1.0430793638209236e-06" /> - <superelevation s="192.16412168749719" a="0.024415704959845078" b="0" c="-1.8218890002245571e-05" d="1.2009141179350794e-06" /> - <superelevation s="202.27802282894442" a="0.023794495489914746" b="0" c="1.184664515116092e-06" d="0" /> - <superelevation s="212.39192397039162" a="0.023915676003446004" b="2.3963159583329276e-05" c="2.5326370679204339e-05" d="-1.7474981429718888e-06" /> - <superelevation s="222.50582511183885" a="0.02494080325129194" b="0" c="-1.0100753014298283e-05" d="4.1006630086587429e-07" /> - <superelevation s="232.61972625328607" a="0.024331825774314721" b="-7.8477763488967145e-05" c="-1.3177434815923345e-05" d="1.1243358719235895e-06" /> - <superelevation s="242.73362739473328" a="0.023353370567833362" b="0" c="2.5288484831151418e-05" d="-1.3104432331315478e-06" /> - <superelevation s="252.8475285361805" a="0.024584421382642069" b="0.00010939083946770746" c="2.1642648660577237e-07" d="-1.4191638400679678e-07" /> - <superelevation s="262.96142967762773" a="0.025566106840145996" b="7.0218366713946533e-05" c="-2.0052042261653126e-06" d="-6.4171661809296665e-08" /> - <superelevation s="273.07533081907496" a="0.026004784621159557" b="9.9649424283501078e-06" c="-1.2656583981777349e-06" d="7.6431680076567301e-08" /> - <superelevation s="283.18923196052219" a="0.02605517684245983" b="7.8182727038360198e-06" c="1.6141820000511609e-06" d="-1.3187744934784866e-07" /> - <superelevation s="293.30313310196937" a="0.026162931095606502" b="0" c="-3.153894442792131e-07" d="0" /> - <superelevation s="303.41703424341659" a="0.026130669595129004" b="-6.3796353209918816e-06" c="-2.6995232394389383e-07" d="-6.2367515732724098e-08" /> - <superelevation s="313.53093538486382" a="0.025974009901049568" b="-3.0979083518512489e-05" c="-4.038516190981624e-06" d="1.788327472736566e-07" /> - <superelevation s="323.64483652631105" a="0.025432600058330607" b="-5.7790450877443332e-05" c="-2.5970702458804319e-06" d="2.151442334689216e-07" /> - <superelevation s="333.75873766775828" a="0.024805036086861319" b="-4.4301520357356693e-05" c="1.7338364210758269e-06" d="2.0751982508790141e-09" /> - <superelevation s="343.87263880920551" a="0.024536477663710372" b="-8.5929977511560825e-06" c="1.2744337171649515e-06" d="-8.400541652797266e-08" /> - <superelevation s="353.98653995065274" a="0.024493023298828437" b="-8.5929977511560825e-06" c="-3.7287172951551262e-06" d="2.7378347722415109e-07" /> - <superelevation s="364.10044109209991" a="0.024307946076639657" b="0" c="5.8255143660585604e-07" d="0" /> - <superelevation s="374.21434223354714" a="0.024367535843485458" b="1.1783735279278009e-05" c="3.4458975305324683e-06" d="-1.4296130361598665e-07" /> - <superelevation s="384.32824337499437" a="0.02469129747602546" b="3.761570667676627e-05" c="4.1859389972034157e-06" d="-3.5909333100327789e-07" /> - <superelevation s="394.4421445164416" a="0.025128418920874439" b="1.209200930253582e-05" c="-1.7933746533740185e-06" d="1.1821186360522197e-07" /> - <superelevation s="404.55604565788883" a="0.025189567614218093" b="1.209200930253582e-05" c="2.5897977862884278e-06" d="-1.3780440516215699e-07" /> - <superelevation s="414.66994679933606" a="0.025434210930130038" b="2.2189477180987307e-05" c="1.6009108576981977e-06" d="-1.7783378615111787e-07" /> - <superelevation s="424.78384794078323" a="0.025638411971395901" b="0" c="-4.0210291101027086e-07" d="0" /> - <superelevation s="434.89774908223046" a="0.025597280464013942" b="-8.1336581812927502e-06" c="-3.3493228342428188e-06" d="1.7534903257134572e-07" /> - <superelevation s="445.01165022367769" a="0.025353821154342829" b="-2.2073216528590627e-05" c="1.5425288305037557e-06" d="-1.3297797601410877e-07" /> - <superelevation s="455.12555136512492" a="0.025150787804326093" b="-3.1678597286408833e-05" c="-6.574153926530958e-06" d="5.3657144501861127e-07" /> - <superelevation s="465.23945250657215" a="0.024713032751833914" b="0" c="3.1321041029626278e-05" d="-2.0645538974254766e-06" /> - <superelevation s="475.35335364801938" a="0.025780986249181018" b="0" c="-2.1231025063367364e-05" d="1.3546566567363006e-06" /> - <superelevation s="485.46725478946655" a="0.025010718521271076" b="-1.3749440063219499e-05" c="1.2660052385085495e-06" d="-5.7967289495260755e-08" /> - <superelevation s="495.58115593091378" a="0.024941188282496248" b="-5.9295317952208994e-06" c="6.7972980311594847e-07" d="-5.7967289495260755e-08" /> - <superelevation s="505.69505707236101" a="0.024890777124487212" b="-9.9686871176641006e-06" c="-7.2986485630110571e-06" d="4.1737443861203926e-07" /> - <superelevation s="515.8089582138083" a="0.024475168102019718" b="-2.9523365716540996e-05" c="5.1266934940826519e-07" d="6.2414067621456861e-08" /> - <superelevation s="525.92285935525547" a="0.024293584320047433" b="0" c="7.6313770490378185e-07" d="2.6199570327295767e-23" /> - <superelevation s="536.03676049670264" a="0.024371646436195334" b="1.5436598609412726e-05" c="5.8278308698285502e-06" d="-2.8723953824475821e-07" /> - <superelevation s="546.15066163814993" a="0.024826738463542549" b="4.5174753551921245e-05" c="9.3991405216499189e-07" d="-9.1192088678975696e-08" /> - <superelevation s="556.2645627795971" a="0.025285432419222081" b="3.62027603453616e-05" c="8.6540060109147635e-07" d="-1.7501674811066543e-07" /> - <superelevation s="566.37846392104439" a="0.025559040741903533" b="0" c="-2.3288185376405439e-06" d="6.1515739195187492e-08" /> - <superelevation s="576.49236506249156" a="0.025384465359636683" b="-2.8229362181103773e-05" c="-4.6543933145112369e-06" d="3.5296993085756286e-07" /> - <superelevation s="586.60626620393873" a="0.024988022785131951" b="-1.4060572220867037e-05" c="6.9511121496175937e-07" d="0" /> - <superelevation s="596.72016734538602" a="0.024916919166414937" b="0" c="3.2050846223005992e-06" d="-1.3119704733019204e-07" /> - <superelevation s="606.83406848683319" a="0.025109039113990976" b="2.45709879911801e-05" c="2.1707519501517841e-06" d="-1.6012567640283466e-07" /> - <superelevation s="616.94796962828048" a="0.025413936253395903" b="1.9342284327180112e-05" c="-9.562227303129337e-07" d="2.6199570327295767e-23" /> - <superelevation s="627.06187076972765" a="0.025511749229163334" b="0" c="-8.395097892804416e-06" d="3.2475597935299344e-07" /> - <superelevation s="637.17577191117493" a="0.024988986180304575" b="-7.0155542274996996e-05" c="-1.2414540631591475e-05" d="1.046929600283995e-06" /> - <superelevation s="647.28967305262211" a="0.024092656790975456" b="0" c="8.0044818521775526e-08" d="0" /> - <superelevation s="657.40357419406928" a="0.024100844655210622" b="1.6191307628293205e-06" c="1.6356703023375115e-08" d="1.5828673308616948e-08" /> - <superelevation s="667.51747533551656" a="0.024135269255599723" b="6.8073832060761234e-06" c="2.525224020795656e-06" d="-1.19896615538099e-07" /> - <superelevation s="677.63137647696374" a="0.024338385771970634" b="2.1094082649945798e-05" c="2.3855894074814106e-06" d="-2.2598702401906579e-07" /> - <superelevation s="687.74527761841102" a="0.024561956188781861" b="0" c="-2.4929881142941934e-05" d="1.6432749865284163e-06" /> - <superelevation s="697.8591787598582" a="0.02371192206220641" b="0" c="1.9369827548349122e-05" d="-1.2767791760043153e-06" /> - <superelevation s="707.97307990130548" a="0.024372375048226362" b="0" c="-7.5316592970570209e-06" d="4.9645593009223368e-07" /> - <superelevation s="718.08698104275265" a="0.024115568070466248" b="0" c="5.1000868051371397e-07" d="0" /> - <superelevation s="728.20088218419983" a="0.024167737366517106" b="1.0316354751989179e-05" c="1.1830642416849458e-05" d="-8.1344484353918385e-07" /> - <superelevation s="738.31478332564711" a="0.024640685827810375" b="0" c="-6.1364424368513117e-06" d="3.647170894502037e-07" /> - <superelevation s="748.42868446709429" a="0.024390305102828618" b="-1.2204920991627843e-05" c="1.5989585028131155e-06" d="-9.8437282803309861e-08" /> - <superelevation s="758.54258560854157" a="0.024328585420654369" b="-1.0069247730913907e-05" c="-2.1722191198983904e-06" d="1.7599615657762141e-07" /> - <superelevation s="768.65648674998874" a="0.024186626350590209" b="0" c="5.6138767974167414e-07" d="1.3099785163647883e-23" /> - <superelevation s="778.77038789143592" a="0.024244051255660953" b="1.1355638989868083e-05" c="4.8618681475336288e-06" d="-3.125798370050514e-08" /> - <superelevation s="788.8842890328832" a="0.024823888110855393" b="0.00010010831571861793" c="1.2791534945339046e-05" d="-8.4655238291522612e-07" /> - <superelevation s="798.99819017433038" a="0.026269022472890723" b="9.9068895484682643e-05" c="-3.2017580965875131e-06" d="-1.1178685316215942e-07" /> - <superelevation s="809.11209131577766" a="0.026827834141104279" b="0" c="-1.6582506745524535e-05" d="1.0439982527470851e-06" /> - <superelevation s="819.22599245722483" a="0.026211672906624399" b="-1.5052803579591872e-05" c="2.2324921959991346e-06" d="-1.4715668166528192e-07" /> - <superelevation s="829.33989359867212" a="0.026135551622971591" b="-1.5052803579591872e-05" c="-5.9397352279776709e-06" d="2.4288613646633546e-07" /> - <superelevation s="839.45379474011929" a="0.025627008151557426" b="-6.0665398724824407e-05" c="-3.3799907547616914e-06" d="2.3268056900783793e-07" /> - <superelevation s="849.56769588156646" a="0.024908423932152892" b="-5.7631801760486633e-05" c="1.4092247012514967e-06" d="-8.1668695289869888e-09" /> - <superelevation s="859.68159702301375" a="0.024461243460339337" b="-3.1632474793690202e-05" c="2.1311892725524938e-06" d="-8.7717131203484567e-08" /> - <superelevation s="869.79549816446092" a="0.024268568486307481" b="-1.5441217790949392e-05" c="3.5686448574566084e-07" d="2.6199570327294879e-23" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="7.9903347889575826" b="-0.0034399798413225872" c="0.00039114697916401586" d="-9.8875876516330862e-06" /> - <laneOffset s="6.6567327614788914" a="7.9818517242157139" b="0.00045312292710451049" c="8.8007554445289051e-05" d="-1.1499932283641462e-06" /> - <laneOffset s="10.11390114144722" a="7.9844225960639692" b="0.0010204025931953458" c="8.0866032935147117e-05" d="-6.3671571006318548e-07" /> - <laneOffset s="18.86458180587853" a="7.9991174329020298" b="0.0022893998613235092" c="0.00044287576406860625" d="-3.8973608744288201e-05" /> - <laneOffset s="20.227802282894441" a="8.0029626822389002" b="0.0032795923181236464" c="0.00029256394257548736" d="-3.5009638006511767e-05" /> - <laneOffset s="29.240574072219527" a="8.0306550502566996" b="2.1711917875527123e-05" c="6.3739889769278485e-06" d="-4.775870971439866e-06" /> - <laneOffset s="30.341703424341659" a="8.0306803099749207" b="1.8377062653994305e-05" c="-3.344749762254032e-07" d="-1.9590970941404849e-08" /> - <laneOffset s="40.455604565788882" a="8.030811691936357" b="5.5994291584680545e-06" c="-3.5603238860773934e-07" d="9.0466141083758886e-08" /> - <laneOffset s="49.583431457681336" a="8.030901938896541" b="2.1711988296157628e-05" c="0.00033912545525510062" d="-2.2435312321489222e-05" /> - <laneOffset s="59.692475618643591" a="8.0426003208472405" b="-0" c="-0.00087914676702209777" d="8.1170138616557249e-05" /> - <laneOffset s="66.213495295932574" a="8.0277240560179486" b="-0.0011109034402188378" c="0.0005131078704856901" d="-0.00010494066051562483" /> - <laneOffset s="69.473166117814941" a="8.0259202101425746" b="-0.0011109043736714874" c="-0.0010733636986755475" d="0.00015904667499039678" /> - <laneOffset s="70.797307990130548" a="8.0229364875839249" b="-0.0031168817359698547" c="-0.00043816422914979349" d="0.00016035613729758493" /> - <laneOffset s="74.411577190678557" a="8.0135184165279121" b="-0" c="0.0013021765198530343" d="-0.00010335144133971124" /> - <laneOffset s="80.911209131577763" a="8.0401510757030668" b="0.0038290245085441715" c="-0.00071455860087891445" d="-0.00010271090885946333" /> - <laneOffset s="82.63564273970546" a="8.0441024207371132" b="0.00044832133986858229" c="-2.1368480476483967e-05" d="4.9719183877221592e-07" /> - <laneOffset s="91.025110273024978" a="8.0466531972502224" b="0.00019476279989104261" c="-9.5747121185127905e-06" d="4.2587155135836757e-07" /> - <laneOffset s="101.13901141447221" a="8.0480841922208359" b="0.00013177589209356747" c="2.9488331535262687e-06" d="4.6491589496246929e-07" /> - <laneOffset s="111.25291255591942" a="8.0501995835119633" b="0.00033409443636138523" c="3.6072086990224217e-06" d="4.8056088255922915e-06" /> - <laneOffset s="113.22738391901567" a="8.0509102976604545" b="0.00040454363071805319" c="1.3520641301625681e-05" d="-1.0399484800880269e-06" /> - <laneOffset s="121.92599071451775" a="8.0547678329841244" b="0.00040369963844044102" c="3.8713639719131123e-06" d="-5.3016193537985395e-07" /> - <laneOffset s="131.48071483881387" a="8.058516051033914" b="0.00033247943991685658" c="-5.2457462234109788e-06" d="-5.1630243310263781e-07" /> - <laneOffset s="141.5946159802611" a="8.0608079762392695" b="6.7930251662297862e-05" c="-2.3529731062164731e-05" d="1.7594188503539042e-06" /> - <laneOffset s="143.4062163934191" a="8.0608642771767229" b="-0" c="-0.0012787375222891701" d="0.00013172331561113194" /> - <laneOffset s="149.25637987116261" a="8.0434736691801021" b="-0.0014371877475178815" c="4.0129549433901528e-05" d="2.9454328034341517e-06" /> - <laneOffset s="151.7085171217083" a="8.0402342149914023" b="-0.0011872489615400291" c="5.0077967055333492e-05" d="5.8317645165559077e-08" /> - <laneOffset s="161.82241826315553" a="8.0334093546695335" b="-0.00015638563513747076" c="4.3024709209894832e-05" d="3.4489799660586171e-06" /> - <laneOffset s="163.35673969350736" a="8.033283152877214" b="-0" c="0.0005090608443542214" d="-2.2175890558983772e-05" /> - <laneOffset s="171.93631940460276" a="8.0567498373669117" b="0.0038380082909315431" c="-6.011596647313636e-05" d="-2.2760758103588192e-05" /> - <laneOffset s="176.02356212517711" a="8.0698783417481508" b="0.0022058980418723389" c="-8.0527928766715198e-05" d="1.584433927645107e-06" /> - <laneOffset s="182.05022054604996" a="8.0805945319095898" b="0.0014079122302929361" c="-4.0337527489149708e-05" d="1.6648524722025132e-06" /> - <laneOffset s="190.70793414285026" a="8.0908406949194447" b="0.0010838227791990312" c="0.00012951931314479542" d="-2.9065917465578936e-05" /> - <laneOffset s="192.16412168749719" a="8.0926038372316302" b="0.001276130321583975" c="5.2048897133147949e-06" d="-2.3168137227844867e-05" /> - <laneOffset s="196.52456804585293" a="8.0963464901510687" b="-0" c="-2.4290712924837796e-05" d="7.6347379158635113e-07" /> - <laneOffset s="202.27802282894442" a="8.0956878183980301" b="-0.00020369295443103648" c="-1.7016925595999288e-05" d="-1.4683032982552064e-07" /> - <laneOffset s="205.38765819763458" a="8.0948854416318419" b="-0.00031378529575278659" c="-5.8282685625826887e-05" d="1.2806545096860898e-06" /> - <laneOffset s="212.39192397039162" a="8.0902683407234122" b="-0.00094175440785716281" c="-1.5957628697522997e-05" d="-9.1323105336132518e-07" /> - <laneOffset s="216.45426029539593" a="8.0861180534852508" b="-0.0011166169130302443" c="3.140048201890151e-06" d="-3.39093350281347e-07" /> - <laneOffset s="222.50582511183885" a="8.0794006180871172" b="-0.0011158667596058742" c="1.7383617690402202e-06" d="2.2309880525644875e-06" /> - <laneOffset s="225.03355467350863" a="8.0766271478676952" b="-0.001064314405530667" c="-0.00023894048723671309" d="5.6692701759712026e-05" /> - <laneOffset s="229.30750140715421" a="8.0721397207343237" b="-0" c="0.00013031129291701549" d="-3.3935546786813488e-06" /> - <laneOffset s="232.61972625328607" a="8.0734460296843178" b="0.0007515502349041374" c="7.6436608199579971e-05" d="-5.9724805391355234e-06" /> - <laneOffset s="242.73362739473328" a="8.0826870156856696" b="0.00046490187856727903" c="-9.7312379194305044e-05" d="-1.1092278530118145e-05" /> - <laneOffset s="244.5550796650856" a="8.0831439293574689" b="-0" c="-0.0019656682994209219" d="0.00027093411435921136" /> - <laneOffset s="248.59689567772645" a="8.0689215267312502" b="-0.0026115752535788711" c="0.00021667732418343449" d="-1.0495859043461528e-05" /> - <laneOffset s="252.8475285361805" a="8.0609294978048975" b="-0.0013384575014195124" c="0.00011107404655717766" d="-7.9774454761199224e-06" /> - <laneOffset s="260.68130891021053" a="8.0534256088394933" b="-0.0010668805023759944" c="-1.7256515723449696e-05" d="-8.7289642261770077e-07" /> - <laneOffset s="262.96142967762773" a="8.0508929291551805" b="-0.0011591888185612286" c="1.5226961693871889e-06" d="5.0788484615423365e-06" /> - <laneOffset s="271.58442165057119" a="8.0442668857641291" b="-0" c="8.9167808750322959e-05" d="-6.8267354776621858e-06" /> - <laneOffset s="273.07533081907496" a="8.044442465018161" b="0.00022035859649172652" c="6.5552447169945453e-05" d="-3.8888075593095795e-06" /> - <laneOffset s="283.64894872794576" a="8.0495041723603524" b="0.00030228931720616451" c="-9.2769567273356543e-06" d="-4.8527090040544645e-08" /> - <laneOffset s="293.30313310196937" a="8.0515142216515851" b="0.00010959776456682936" c="-1.0179061565797889e-05" d="2.4200518087579966e-08" /> - <laneOffset s="298.79414975741832" a="8.0518131198947991" b="-0" c="-0.00010688411491910535" d="5.2186471471665118e-06" /> - <laneOffset s="303.41703424341659" a="8.0500444741408916" b="-0.00065364175421603668" c="-3.6148167174110852e-05" d="5.1917474920264932e-06" /> - <laneOffset s="312.6192715539346" a="8.0450141400671296" b="-0" c="3.9634818825526853e-05" d="-9.7961059302038946e-07" /> - <laneOffset s="323.64483652631105" a="8.0485192971229189" b="0.00051673908889450948" c="6.0894443571075831e-07" d="-9.095526930734139e-07" /> - <laneOffset s="333.75873766775828" a="8.0528668469512041" b="0.00024993954305873998" c="-3.7431595333759315e-05" d="1.5804191508304969e-07" /> - <laneOffset s="337.17110047562369" a="8.053290149309003" b="-0" c="-0.00078420673064697724" d="9.6391105224980075e-05" /> - <laneOffset s="342.59488398632897" a="8.0456003677425052" b="-0" c="0.00016277732303593323" d="-1.8111010166787188e-05" /> - <laneOffset s="343.87263880920551" a="8.0458283453138542" b="0.00032727179550199454" c="8.7618707540016512e-05" d="-2.0633486370911231e-05" /> - <laneOffset s="347.98823525675357" a="8.0472209902130398" b="-0" c="-0.00023331448480457456" d="2.8682119718997886e-05" /> - <laneOffset s="353.41123018856297" a="8.0449338181153429" b="-0" c="0.00066797944013905169" d="-6.5216111085316259e-05" /> - <laneOffset s="360.23959850658059" a="8.0553156912618373" b="-0" c="-0.00025843310331392574" d="2.6496739991742702e-05" /> - <laneOffset s="364.10044109209991" a="8.0529883509127291" b="-0.00081064945876909377" c="4.6737127599048274e-05" d="2.6053919328858641e-05" /> - <laneOffset s="366.77799969933375" a="8.0516530010982397" b="-0" c="0.00017893131845977972" d="-6.3223203046654236e-06" /> - <laneOffset s="374.21434223354714" a="8.0589478700459214" b="0.0016123315675980407" c="4.0356025205071609e-05" d="-6.3934209283031194e-06" /> - <laneOffset s="384.32824337499437" a="8.0727685060488312" b="0.00046667707682553815" c="-0.00013361597115851289" d="-1.4821947311544638e-05" /> - <laneOffset s="385.7420048938576" a="8.0731193324001449" b="-0" c="-0.00051158596661148644" d="2.667753449355859e-05" /> - <laneOffset s="394.4421445164416" a="8.0519642300109471" b="-0.0028438764840921205" c="0.00018920609155168114" d="2.6588652409915337e-05" /> - <laneOffset s="397.55699934903913" a="8.0457452499469202" b="-0.00089126257458228581" c="4.6924756649750681e-05" d="-1.2355717339921991e-06" /> - <laneOffset s="404.55604565788883" a="8.0413823205980961" b="-0.00041598504234295717" c="2.2904357507105167e-05" d="-1.287768628052143e-06" /> - <laneOffset s="414.66994679933606" a="8.0381857233217033" b="-0.00034786163517027134" c="-1.144897985706152e-05" d="-1.6384848128346887e-06" /> - <laneOffset s="419.53148273157854" a="8.0360357280970813" b="-0.00057535535245035617" c="-2.109790530015321e-05" d="7.3476240143437059e-07" /> - <laneOffset s="424.78384794078323" a="8.0325381827482296" b="-0.00073617273881826275" c="-8.0026064666547334e-06" d="9.7522049054164602e-07" /> - <laneOffset s="434.89774908223046" a="8.0252829349658725" b="-0.00059877905340771826" c="1.7368910289335121e-05" d="2.0989738096820846e-06" /> - <laneOffset s="437.219287673238" a="8.0240127191674375" b="-0.00048419634345113504" c="2.2556127772267144e-06" d="5.785585196639357e-07" /> - <laneOffset s="445.01165022367769" a="8.0206503989722346" b="-0.00034365143183047046" c="1.2394266035289833e-05" d="4.9298090238842628e-07" /> - <laneOffset s="454.02643271954963" a="8.0189208490922166" b="-0" c="8.8091624728486317e-05" d="4.8200591311990662e-06" /> - <laneOffset s="455.12555136512492" a="8.0190336693088486" b="0.00021111508239739585" c="8.5383727153923506e-05" d="-4.7351630442082407e-06" /> - <laneOffset s="465.23945250657215" a="8.0250040377710778" b="0.00048514659715354411" c="-4.5762907418430286e-05" d="-8.3263024183877576e-06" /> - <laneOffset s="468.18009431589962" a="8.0258232230201543" b="-0" c="-0.0043072869055075886" d="0.00051712528982923831" /> - <laneOffset s="473.67361980869379" a="7.9815676114393384" b="-0.00050568409256694191" c="8.9104823263732799e-05" d="-1.1362813355955784e-05" /> - <laneOffset s="475.35335364801938" a="7.9809157538542745" b="-0.00030252004917177426" c="4.3403336588506786e-05" d="-4.1257049428282657e-06" /> - <laneOffset s="484.21836436674459" a="7.9787705842215875" b="-0.00050567579817899601" c="-0.00043775587641238208" d="3.4242762182784173e-05" /> - <laneOffset s="485.46725478946655" a="7.9775229732257511" b="-0.0014388659294803617" c="-0.00032757391165776328" d="2.4961394359541632e-05" /> - <laneOffset s="492.77120438806242" a="7.9592644373280468" b="-0.0022291351942251235" c="8.4402759869387623e-05" d="-1.6911161090893511e-05" /> - <laneOffset s="495.58115593091378" a="7.9532918989726742" b="-0.002155382704773467" c="-6.0797951138064855e-05" d="-1.6587938518491308e-05" /> - <laneOffset s="497.41579430547574" a="7.9490304775202212" b="-0.0025459671388075749" c="-0.00041619156236446245" d="3.3910203250568996e-05" /> - <laneOffset s="505.69505707236101" a="7.9186678449155803" b="-0.0024642398465922694" c="0.00041858641521940647" d="3.6501541767568885e-05" /> - <laneOffset s="507.50596749374864" a="7.9157948096093707" b="-0.00058908575255086791" c="5.3502745804540545e-05" d="-2.358157748041138e-06" /> - <laneOffset s="515.8089582138083" a="7.9132422748761986" b="-0.00018833189275612399" c="-1.1562884641035119e-05" d="-2.1755050613907992e-06" /> - <laneOffset s="520.5622533040148" a="7.9118521896376368" b="-0.00044571436988097009" c="-5.9337982138115855e-05" d="2.5939307224956626e-06" /> - <laneOffset s="525.92285935525547" a="7.9081573250672088" b="-0.00085827112571679556" c="-1.8378835072687282e-05" d="2.4161441105520755e-06" /> - <laneOffset s="536.03676049670264" a="7.9000965149244466" b="-0.00048858520294613899" c="6.0657470874123749e-05" d="1.4576370059337375e-06" /> - <laneOffset s="539.60517751781788" a="7.8991916604125869" b="-0" c="0.0013964669547502334" d="-0.00012262980452519033" /> - <laneOffset s="546.15066163814993" a="7.9246318569015868" b="0.0025194850960448116" c="-0.00098100573925224066" d="-0.00013861060768308596" /> - <laneOffset s="547.20098556456605" a="7.9260352984689453" b="-0" c="-0.00033322583864296544" d="1.7036500953536737e-05" /> - <laneOffset s="556.2645627795971" a="7.9113459925964165" b="-0.001841870720302315" c="0.00014276005371181708" d="1.4413719205955315e-05" /> - <laneOffset s="558.55692303868693" a="7.9080475833438673" b="-0.00096012714098988011" c="1.521224898286172e-05" d="-1.5835271347324576e-07" /> - <laneOffset s="566.37846392104439" a="7.9013927709312606" b="-0.00075122308149555312" c="1.2324624805489221e-05" d="6.7905271693649536e-08" /> - <laneOffset s="576.49236506249156" a="7.8951259252476396" b="-0.00048108471403277161" c="1.1042986210401845e-05" d="1.5238158135289966e-07" /> - <laneOffset s="586.60626620393873" a="7.8915475281157077" b="-0.00021094758103317758" c="1.2713349697127624e-05" d="5.4119862438108059e-08" /> - <laneOffset s="594.50425824745355" a="7.8907011655265675" b="-0" c="3.7811884576531193e-05" d="-2.182624483204187e-07" /> - <laneOffset s="596.72016734538602" a="7.8908844566084975" b="0.00016436022647566437" c="3.7449161437689951e-05" d="-5.3751655456128697e-07" /> - <laneOffset s="601.81968936843089" a="7.8926252032594961" b="0.00050437131811557109" c="0.00012102876562983839" d="-3.4872003302387434e-06" /> - <laneOffset s="606.83406848683319" a="7.8977577877172402" b="0.0014550930745239796" c="7.3334237433966801e-05" d="-3.2091741577459411e-06" /> - <laneOffset s="616.94796962828048" a="7.9166558009309629" b="0.0019536746642269658" c="-2.1672756954509587e-05" d="-3.1296243886617115e-06" /> - <laneOffset s="627.06187076972765" a="7.9309603580331007" b="0.00055488523135284722" c="-0.00012071258863882107" d="-1.6776699859232347e-06" /> - <laneOffset s="629.25955657300074" a="7.9315789934887935" b="-0" c="-0.00021320789101654145" d="1.8650022856036334e-05" /> - <laneOffset s="636.88091956586175" a="7.9274509210154847" b="-0" c="0.0050846608926044491" d="-0.001093192788049644" /> - <laneOffset s="639.98172114949705" a="7.9437472091111436" b="-0" c="-0.00020992284305293887" d="7.191368845854402e-06" /> - <laneOffset s="647.28967305262211" a="7.935342752827018" b="-0.0019160218732235113" c="-5.9020609214607059e-05" d="6.566181426091483e-06" /> - <laneOffset s="654.408312677509" a="7.9210810788592108" b="-0.0017580904436998771" c="-6.1317757313084973e-05" d="2.4175475970853338e-06" /> - <laneOffset s="657.40357419406928" a="7.9153299853116819" b="-0.0020603481324222676" c="-3.9138076498636083e-05" d="2.463549260894425e-06" /> - <laneOffset s="667.51747533551656" a="7.8930370471917124" b="-0.0020960286805842901" c="3.7435433503809655e-05" d="2.3032469157135582e-06" /> - <laneOffset s="673.81030181615381" a="7.8819034879367944" b="-0.0013512558864288548" c="3.7427145172923486e-05" d="-5.8653702871496693e-07" /> - <laneOffset s="677.63137647696374" a="7.8772539746008921" b="-0.0010909234523081208" c="3.5512691257894087e-05" d="-5.0951718349857405e-08" /> - <laneOffset s="687.74527761841102" a="7.8698003985594696" b="-0.00038821546110886867" c="2.6073142603898273e-05" d="1.148417022112331e-06" /> - <laneOffset s="693.21405611342584" a="7.8686449501524187" b="-0" c="0.0071745232572034317" d="-0.0012608505605288566" /> - <laneOffset s="697.00753938141588" a="7.9030599790642251" b="-0" c="-0.0001925349917444419" d="7.084276842602352e-06" /> - <laneOffset s="707.97307990130548" a="7.8892498129141533" b="-0.0016669947290789886" c="4.1228257628674788e-05" d="7.4933478252378351e-06" /> - <laneOffset s="714.94351460844655" a="7.8821710795382058" b="-0" c="0.0010241979232464701" d="-0.00024488381442183823" /> - <laneOffset s="717.06136092913243" a="7.884438706374377" b="0.0010430752959650752" c="-6.0651014104016721e-05" d="4.2478734399451434e-06" /> - <laneOffset s="718.08698104275265" a="7.8854492895840238" b="0.00093207046712540272" c="-5.1296697902944255e-05" d="1.6238114208135874e-06" /> - <laneOffset s="728.20088218419983" a="7.8913088998167265" b="0.00039275486828991787" c="9.3660089495347833e-07" d="1.4668879121691439e-06" /> - <laneOffset s="738.31478332564711" a="7.8968945746269501" b="0.00086184852399445581" c="4.5376618223299445e-05" d="2.1062972828014399e-06" /> - <laneOffset s="742.25760882139446" a="7.9011272168841016" b="0.0013179053879582758" c="0.00085184103391276961" d="-0.00013416176294041426" /> - <laneOffset s="747.1586242841156" a="7.9122536604166971" b="-0" c="-0.00019842568271256846" d="3.1594797093567382e-05" /> - <laneOffset s="748.42868446709429" a="7.9119983167463657" b="-0.00035113288355198774" c="-8.7558730872539807e-05" d="2.7583030732281781e-05" /> - <laneOffset s="751.80261609400225" a="7.9108762787398605" b="-0" c="0.00036845953592918495" d="-2.5531164229074611e-05" /> - <laneOffset s="759.51946073906083" a="7.9210854485117332" b="0.0011255711502385314" c="-6.845968219363153e-05" d="1.867924341702796e-06" /> - <laneOffset s="768.65648674998874" a="7.9270793135754252" b="0.00034236771657201537" c="-1.7833875545809106e-05" d="1.7809686277896174e-06" /> - <laneOffset s="778.77038789143592" a="7.9305602626450877" b="0.00052815877403486087" c="4.0388569830837681e-05" d="1.3538293058652469e-06" /> - <laneOffset s="784.50991177030937" a="7.9351780996746069" b="0.0011255751766584882" c="0.00051629874211392771" d="-3.6742758795186299e-05" /> - <laneOffset s="788.8842890328832" a="7.9469057241134307" b="0.0035333086162553976" c="6.7642530548318278e-05" d="-3.9217819176588461e-05" /> - <laneOffset s="792.48457601411837" a="7.9586732519019181" b="0.0024953417379918177" c="-0.0001365668640720637" d="3.1078661366151182e-06" /> - <laneOffset s="798.99819017433038" a="7.9699916715966523" b="0.0011118279081354235" c="-5.8443099157338721e-05" d="4.3045889478551628e-06" /> - <laneOffset s="809.11209131577766" a="7.9797117462570046" b="0.0012506145299818509" c="6.8152979192140451e-05" d="5.5992838057032452e-06" /> - <laneOffset s="813.79110849281574" a="7.9876290632167892" b="0.0022561512005204293" c="0.00022621199877788443" d="-3.0921747370779255e-05" /> - <laneOffset s="819.79617590005614" a="8.0026387621395454" b="0.0016277957532532159" c="-9.0767303434799172e-05" d="3.4855573267666584e-08" /> - <laneOffset s="828.809836809481" a="8.009962198816746" b="-0" c="-0.0042148820184053602" d="0.00064148982169988573" /> - <laneOffset s="832.91335118669019" a="7.9833144247603771" b="-0.0021858432890285188" c="6.2031791409477844e-05" d="5.7429930317971907e-07" /> - <laneOffset s="839.45379474011929" a="7.9718322782686828" b="-0.0013007113322982826" c="6.3159132764127786e-05" d="3.1248930969795922e-07" /> - <laneOffset s="849.0652889338603" a="7.9654426561617457" b="-0" c="0.00041048723190217082" d="-2.480517502244127e-05" /> - <laneOffset s="860.09758982889059" a="7.9820963507120393" b="-0" c="-0.00038726633232715607" d="1.7560119792734039e-05" /> - <laneOffset s="869.79549816446092" a="7.9616904561190154" b="-0.0025567892192447823" c="0.00012093673307026695" d="1.769169549278394e-05" /> - <laneOffset s="874.82204060469098" a="7.9541411174671506" b="-0" c="0.0014218195617407448" d="-0.00019524974247642592" /> - <laneOffset s="878.24614765372144" a="7.962972762709799" b="0.0028693026301266694" c="0.0019762053211582467" d="-0.0011382015271577096" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4928828029174319" b="0.00019398594846065011" c="-6.0944370479596279e-05" d="4.8010764722708454e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="6.6567327614788914" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8213665155131364" b="-0.0049824992130395778" c="0.00049575602099060279" d="-1.2374299272633707e-05" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.867120257697608" b="0.0041386059233483336" c="-0.00035062698087319163" d="6.0725843477103483e-06" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9435238105019672" b="-0.016958515215534375" c="0.0034896716632342468" d="-0.0001864493153529357" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.5325186433471409" b="0.030802300650085553" c="-0.0012301810788048696" d="-0.00013539575998564672" /> - <roadMark sOffset="0" color="standard" width="0.30932594790760459" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30932599999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="restricted" level="false"> - <link /> - <width sOffset="0" a="0.31167261757948417" b="-0.029211455665145623" c="-0.012324224197712707" d="0.0014540018687503437" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="-6" type="driving" level="false"> - <link> - <successor id="-5" /> - </link> - <width sOffset="0" a="3.3584506803681373" b="0.0050055822302183658" c="0.010296305825664384" d="-0.0011359466270887491" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="6.6567327614788914" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-7" type="shoulder" level="false"> - <link> - <successor id="-6" /> - </link> - <width sOffset="0" a="2.4928828029175456" b="-9.8642599913210602e-06" c="3.7181576717302005e-06" d="-3.1244798025509387e-07" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="6.6567327614788914"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4928897345644376" b="4.3802457776440573e-05" c="-4.1749297498566143e-05" d="3.1445488245681006e-06" /> - <width sOffset="3.457168379968329" a="2.4926721120228246" b="-0.00013211517736968852" c="-7.9477660156379213e-06" d="3.3455767426047492e-06" /> - <width sOffset="12.207849044399637" a="2.4931492169175486" b="0.0004973448143429939" c="-0.00029884436357208394" d="4.1682469777763861e-05" /> - <width sOffset="13.571069521415549" a="2.4933774411726546" b="-8.5052334676300086e-05" c="-0.00013134972912731243" d="3.6714238865017624e-05" /> - <width sOffset="16.208023018551689" a="2.4929130153047581" b="-1.1898594520637351e-05" c="-0.00025849088085147179" d="3.9280196519832833e-05" /> - <width sOffset="22.583841310740635" a="2.4925100132268572" b="0.0014822643788924312" c="-0.00016757237411288406" d="9.0464294836795938e-06" /> - <width sOffset="23.684970662862767" a="2.4939510768315838" b="0.0011461326626397211" c="-0.00014404045877164671" d="4.31014558255409e-06" /> - <width sOffset="33.798871804309989" a="2.4952680158698506" b="-0.00044482200063169223" c="-1.3084494326405793e-05" d="4.3394910724489524e-06" /> - <width sOffset="42.926698696202443" a="2.4934177994158588" b="0.0004009750471820498" c="-0.0002312583342230419" d="2.6865269537566652e-05" /> - <width sOffset="43.912772945757212" a="2.4936140867644845" b="2.3265994479959714e-05" c="-0.00016383559879579374" d="2.8833718208823756e-05" /> - <width sOffset="47.676906584903115" a="2.4929181107563796" b="1.5476904220096746e-05" c="-0.00030198975318999584" d="2.9732302016309435e-05" /> - <width sOffset="53.035742857164699" a="2.4889042862813451" b="-0.00065967157524761313" c="0.00071387539552409253" d="-7.3873148920752414e-05" /> - <width sOffset="54.026674087204427" a="2.4888797017742625" b="0.0005375132305612785" c="0.00048781608609337784" d="-7.4660574426686197e-05" /> - <width sOffset="59.556762534453682" a="2.4941438965823757" b="-0.00091693635334533447" c="-0.00055514107834019727" d="0.00011145022470550179" /> - <width sOffset="62.816433356336049" a="2.4891164922332099" b="-0.00098346304029754326" c="0.0010949876001783794" d="-0.00015253711079962152" /> - <width sOffset="64.140575228651656" a="2.4893800026740784" b="0.0011140212151263596" c="0.00048727621760698471" d="-0.00015402838673531915" /> - <width sOffset="67.066601493841503" a="2.4929528861948889" b="9.3852037049136066e-06" c="0.00028195539039931375" d="-0.00023966503361785965" /> - <width sOffset="67.754844429199665" a="2.4930147694719889" b="5.6920410300267344e-05" c="-0.00021451791286683335" d="2.4042545021302339e-05" /> - <width sOffset="74.254476370098871" a="2.4909239381291091" b="0.00031539293077134743" c="0.00025394047711556496" d="2.3958248316406828e-05" /> - <width sOffset="75.978909978226568" a="2.4923458032692949" b="0.0014049317811815885" c="-0.00084666084699880286" d="-7.9249852379850933e-05" /> - <width sOffset="76.728940847311918" a="2.4928898218835407" b="1.1431046120235241e-06" c="1.7696690827344326e-05" d="-4.1060165100305534e-07" /> - <width sOffset="84.368377511546086" a="2.493748286263596" b="0.000199639242414265" c="7.9452368777465261e-06" d="-4.5135956869245172e-07" /> - <width sOffset="94.482278652993315" a="2.4961131850037042" b="0.00022184386315668593" c="-5.8733375048578723e-06" d="-4.3924599861284407e-07" /> - <width sOffset="104.59617979444053" a="2.4973016755693198" b="-3.1753579088189272e-05" c="-1.1202064738474973e-05" d="-4.5063007445735943e-06" /> - <width sOffset="106.57065115753677" a="2.4971606198957996" b="-0.00012869383392660261" c="-1.9342571636875627e-05" d="1.3392565611003407e-06" /> - <width sOffset="114.71008093588775" a="2.4955538544123179" b="-0.00017739032544816636" c="1.2152084417856594e-05" d="7.860666659395034e-07" /> - <width sOffset="115.26925795303886" a="2.4954585989582476" b="-0.00016306263334588434" c="-4.0182957573966154e-06" d="2.7628012158799852e-07" /> - <width sOffset="124.82398207733497" a="2.4937747320142769" b="-0.00016418292939503022" c="5.9133431739339982e-06" d="1.8162261856862251e-07" /> - <width sOffset="134.26994137529974" a="2.492904567939064" b="-3.8520721031848625e-06" c="-0.00031770344830262524" d="1.55243384749e-05" /> - <width sOffset="134.93788321878222" a="2.4927648790085204" b="-0.0004074885471785708" c="-0.00028397689297744656" d="1.3248617200598673e-05" /> - <width sOffset="136.74948363194022" a="2.4911734593877028" b="-0.0013059521068194933" c="0.0010527965911812612" d="-0.00011671527956017381" /> - <width sOffset="142.59964710968373" a="2.4961962234947226" b="-0.00097142346628292906" c="-2.6720874084772093e-06" d="1.2062603247634529e-05" /> - <width sOffset="145.05178436022942" a="2.4939759514307553" b="-0.00076693164530158928" c="8.7719080134825918e-05" d="1.6597843130541882e-05" /> - <width sOffset="147.59981081964145" a="2.4928658766264551" b="3.3708731497755079e-06" c="-5.8583953070451869e-05" d="7.2902428317992062e-06" /> - <width sOffset="155.16568550167665" a="2.4926952166516809" b="0.00036882747313057244" c="0.00011193827430567634" d="4.0154852581243788e-06" /> - <width sOffset="156.70000693202849" a="2.493539139145474" b="0.00074068512994187132" c="-0.0003197391939600649" d="2.9640355783179387e-05" /> - <width sOffset="162.45016525951246" a="2.4928616116357318" b="3.6978483343589122e-06" c="-0.00020664441610580795" d="2.3195149467851687e-05" /> - <width sOffset="165.27958664312388" a="2.4917431566290738" b="-0.0006085953802862855" c="-1.1042868720633319e-05" d="2.2940970861233025e-05" /> - <width sOffset="169.36682936369823" a="2.4906376038258422" b="0.00045085966782543998" c="1.1578813418389452e-05" d="-1.4042211699941997e-06" /> - <width sOffset="175.39348778457108" a="2.4934679579572574" b="0.00043741625894730212" c="-1.5927880454436828e-05" d="-1.7065601489694406e-06" /> - <width sOffset="184.05120138137138" a="2.4949536242180042" b="-0.00022213258717453739" c="-0.00018686800044703987" d="2.9024209787593529e-05" /> - <width sOffset="185.50738892601831" a="2.4943235287763805" b="-0.00058172633902179682" c="-6.0992618740904441e-05" d="2.3854694723236203e-05" /> - <width sOffset="189.86783528437405" a="2.4926049882473666" b="0.00024704675005678329" c="-2.2515924710992745e-05" d="-7.6916296197602821e-08" /> - <width sOffset="195.62129006746554" a="2.4932663840839755" b="-1.968026492839281e-05" c="-2.1693145777034348e-05" d="4.6757781387122883e-07" /> - <width sOffset="198.7309254361557" a="2.4930094764602764" b="-0.00014103161476197718" c="2.2564837415183857e-05" d="-9.5990702563899878e-07" /> - <width sOffset="205.73519120891274" a="2.4927988281784028" b="3.3790257516823959e-05" c="6.3482187183904068e-06" d="-1.7382837092201765e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="209.79752753391705" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.806517242273503" b="-2.7261748217319694e-05" c="0.00012628493409160295" d="-2.4067857133802095e-06" /> - <width sOffset="3.457168379968329" a="3.8078329043401133" b="0.00075961700989758598" c="0.00010362154493647844" d="-2.1643399475925622e-06" /> - <width sOffset="12.207849044399637" a="3.8209645520291531" b="0.0020759359321306744" c="0.00042552802035707794" d="-4.0501232602169267e-05" /> - <width sOffset="12.367992972953576" a="3.8213077473483503" b="0.0022091112966131179" c="0.00042161013208923809" d="-3.6342205227158535e-05" /> - <width sOffset="13.571069521415549" a="3.8245124293896788" b="0.0030657654415098897" c="0.00029428820193230044" d="-3.5030412074034483e-05" /> - <width sOffset="22.583841310740635" a="3.8504024773890757" b="-0.00016609668252377645" c="7.5365525435155579e-06" d="-4.7966450381560032e-06" /> - <width sOffset="23.684970662862767" a="3.8502223174011538" b="-0.00016694683679836721" c="-2.0783633356948627e-07" d="-2.9089522833745956e-08" /> - <width sOffset="33.798871804309989" a="3.8484824789257353" b="-0.00018007769787808443" c="-8.1578399403413093e-07" d="2.5591419539511566e-08" /> - <width sOffset="42.926698696202443" a="3.8467902544223556" b="-0.00018857374995103369" c="0.0003368892079708596" d="-2.2500187046082234e-05" /> - <width sOffset="43.912772945757212" a="3.8469103051525728" b="0.00041018813656511981" c="0.00027910159534785063" d="-2.7310997276438264e-05" /> - <width sOffset="45.086589805627078" a="3.8477321787874637" b="0.00095252540629441409" c="0.00020588073584086695" d="-2.3123590844582016e-05" /> - <width sOffset="53.035742857164699" a="3.8566983902985426" b="-0.00015779175524720802" c="-0.00088343168554380614" d="8.0481860094392955e-05" /> - <width sOffset="54.026674087204427" a="3.855752860499388" b="-0.0016715456403283697" c="-0.00064235554033127587" d="8.0653636089062013e-05" /> - <width sOffset="59.556762534453682" a="3.8405048089253491" b="-0.0013764925114420885" c="0.00050002810729034254" d="-0.0001054571630430784" /> - <width sOffset="62.816433356336049" a="3.8376783623695125" b="-0.0014782291111177378" c="-0.0010914943465251438" d="0.0001585301724627453" /> - <width sOffset="64.140575228651656" a="3.8341752611861857" b="-0.0035349384051473857" c="-0.00045960106285478363" d="0.00016035023325125872" /> - <width sOffset="65.40177989132664" a="3.8293076034974343" b="-0.0039290632733631923" c="3.8338815365342123e-05" d="0.00016342753407709053" /> - <width sOffset="67.754844429199665" a="3.8224037931490376" b="-0.0010339838832492121" c="0.0011936354247546071" d="-0.00010028004456014268" /> - <width sOffset="74.254476370098871" a="3.8385739347750931" b="0.00177334174338371" c="-0.00076295791162433665" d="-9.9665547536561774e-05" /> - <width sOffset="75.978909978226568" a="3.8388520840257465" b="-0.0017471165110036734" c="-5.4013220979572531e-05" d="3.5425531616735153e-06" /> - <width sOffset="84.368377511546086" a="3.8224848824702731" b="-0.0019053925222260633" c="3.4705059350216467e-05" d="3.4947379108634004e-06" /> - <width sOffset="94.482278652993315" a="3.8103794655948446" b="-0.00013094477535586553" c="0.00014034323755061998" d="3.5337822535610008e-06" /> - <width sOffset="95.409552565201409" a="3.8103815337160931" b="0.00013844389974018468" c="2.2230212616054166e-05" d="4.4217427106293204e-07" /> - <width sOffset="104.59617979444053" a="3.8138722819700162" b="0.00065883597807964395" c="2.3208309947436114e-05" d="4.6785931172047227e-06" /> - <width sOffset="106.57065115753677" a="3.8152996269049391" b="0.00080520327225803458" c="3.236937591339415e-05" d="-1.1669641884750979e-06" /> - <width sOffset="114.71008093588775" a="3.8233687302756891" b="0.0011002045540398292" c="3.3049558751276596e-06" d="-2.8807818107566724e-07" /> - <width sOffset="115.26925795303886" a="3.8239849223981466" b="0.0011036304368371027" c="2.031072719754399e-05" d="2.2170836293226159e-07" /> - <width sOffset="116.92367370178931" a="3.8258673822509568" b="0.0011726557189333296" c="6.607879602536528e-05" d="-3.2554033552806582e-06" /> - <width sOffset="124.82398207733497" a="3.8376507948930945" b="0.0016071846949311194" c="-9.5731164667436688e-06" d="-3.2173355884617211e-06" /> - <width sOffset="132.60714774826468" a="3.8480629338003665" b="0.00087347033200907529" c="-4.2219389899102347e-05" d="3.0441477628692608e-07" /> - <width sOffset="134.93788321878222" a="3.849873266811402" b="0.0006816269154310405" c="-4.4184776828813653e-05" d="1.66752110991739e-06" /> - <width sOffset="136.74948363194022" a="3.8509730067886663" b="0.00053795448838348046" c="-0.0012998920140094557" d="0.00013163141787069719" /> - <width sOffset="142.59964710968373" a="3.8359871208178253" b="-0.0011561831674278939" c="1.736220729924452e-05" d="2.8535350629828473e-06" /> - <width sOffset="145.05178436022942" a="3.8332984739211868" b="-0.0010195594139637231" c="2.9691367399602597e-05" d="-2.3310328498877538e-07" /> - <width sOffset="148.85446330716726" a="3.8298379469624111" b="-0.00080385821580114091" c="-0.00025732894881116432" d="1.057963795275937e-05" /> - <width sOffset="155.16568550167665" a="3.8171743832631071" b="-0.0027877692023575863" c="-6.4647781564859753e-05" d="1.3992271240727315e-05" /> - <width sOffset="156.70000693202849" a="3.8127953993953314" b="-0.0028873307649472119" c="0.00044991874682694436" d="-1.1632599284313642e-05" /> - <width sOffset="165.27958664312388" a="3.8137950645609049" b="0.0022640981752809911" c="0.0001511077032002639" d="-1.1821974139876146e-05" /> - <width sOffset="168.29768668658204" a="3.8216797628898611" b="0.002853157977226468" c="-0.00024570460152404592" d="-2.3288449897942551e-05" /> - <width sOffset="169.36682936369823" a="3.8244208784248936" b="0.0022479107160343556" c="-6.1726362202376827e-05" d="1.0567421351121222e-06" /> - <width sOffset="175.39348778457108" a="3.8359576415519072" b="0.0016190478772593244" c="-3.5823345564839831e-05" d="1.1011798127809959e-06" /> - <width sOffset="184.05120138137138" a="3.8480043275334141" b="0.0012463714630469348" c="0.00011939314572736078" d="-2.9629590125202716e-05" /> - <width sOffset="185.50738892601831" a="3.8499809583374525" b="0.0014056020342280069" c="-5.5785194849827115e-06" d="-2.4752169564470046e-05" /> - <width sOffset="188.92980682266099" a="3.8537339449328689" b="0.00049765563717186513" c="-0.00049120755378699176" d="-1.0587109855107025e-05" /> - <width sOffset="189.86783528437405" a="3.853759809567542" b="-0.00045182440609215662" c="-0.00024742592872761192" d="1.3344501160804907e-05" /> - <width sOffset="195.62129006746554" a="3.8455113956228724" b="-0.0019737334742671673" c="-2.0245721590397345e-05" d="1.2779578210878105e-05" /> - <width sOffset="198.7309254361557" a="3.839562308943238" b="-0.0017289179702836607" c="5.9077769944528629e-05" d="1.4207063050427799e-05" /> - <width sOffset="202.46110136013445" a="3.8346725429208011" b="-0.00069513674049742299" c="0.0018117018811672119" d="-0.00025120656544536254" /> - <width sOffset="205.73519120891274" a="3.8430008057724798" b="0.0030896625526523531" c="-0.00065412126951540318" d="-0.0002483331300372332" /> - <width sOffset="207.19711661127963" a="3.8453437489103468" b="-0.00041512242630039426" c="-0.00024348693969709979" d="4.0388234122279615e-05" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8809240895974098" b="0.00027781243378937931" c="-0.00020605262271627858" d="4.5273000760634738e-06" /> - <width sOffset="3.457168379968329" a="3.879608858883028" b="-0.00098457373903081385" c="-0.00015678110933713493" d="4.778139912055368e-06" /> - <width sOffset="12.367992972953576" a="3.8617673827536012" b="-0.0026404786779169586" c="-4.4589800762886673e-05" d="6.1911215743037244e-07" /> - <width sOffset="13.571069521415549" a="3.8585272238812456" b="-0.0027450802689722355" c="-3.720474857143454e-05" d="3.2701781031753209e-06" /> - <width sOffset="23.684970662862767" a="3.8303412414249292" b="-0.0024941212383130236" c="6.2856504912299954e-05" d="3.2672538885114127e-06" /> - <width sOffset="29.868999477020083" a="3.8180939715850628" b="-0.0013418673119873321" c="2.7019373062561806e-05" d="-2.087041561511723e-07" /> - <width sOffset="33.798871804309989" a="3.8132252219844358" b="-0.0011391715551553759" c="2.4796531337541397e-05" d="-1.6937662107653077e-07" /> - <width sOffset="43.912772945757212" a="3.8040649849371406" b="-0.00068956933191692863" c="1.1068717000266383e-05" d="4.6325124164685315e-06" /> - <width sOffset="45.086589805627078" a="3.8032783001594441" b="-0.00064443537225721285" c="4.4284128524299152e-06" d="4.4510598461258348e-07" /> - <width sOffset="54.026674087204427" a="3.7981889797689248" b="-0.00045852917370012129" c="1.4681189088971878e-05" d="2.8543724228793016e-07" /> - <width sOffset="64.140575228651656" a="3.7953485167401508" b="-7.3968003847284843e-05" c="2.4566084721916848e-05" d="-2.2632676724515544e-07" /> - <width sOffset="65.40177989132664" a="3.7952938496386124" b="-1.3082293984935118e-05" c="0.00013247325889202474" d="-3.3036275931469463e-06" /> - <width sOffset="74.254476370098871" a="3.8032679796241045" b="0.0015556905991249716" c="4.4544349308056092e-05" d="-3.2900769955257319e-06" /> - <width sOffset="78.024776367927728" a="3.8095902719548667" b="0.0017512747861454837" c="2.1030776007682897e-05" d="-3.1102047582295764e-06" /> - <width sOffset="84.368377511546086" a="3.8207520096627476" b="0.0016426206762865361" c="-3.8388431790003775e-05" d="-3.1278067651529905e-06" /> - <width sOffset="94.482278652993315" a="3.8302026148909092" b="-9.3732342626448768e-05" c="-0.00013327109232304409" d="-3.1297894169003124e-06" /> - <width sOffset="95.409552565201409" a="3.829998612536214" b="-0.00034896328232184021" c="-1.4034231334081209e-05" d="-3.8181434396974202e-08" /> - <width sOffset="104.59617979444053" a="3.8255788083798965" b="-0.000616484651403441" c="-1.7113386794761459e-05" d="5.5389280312135179e-08" /> - <width sOffset="114.71008093588775" a="3.8176505017656668" b="-0.00094565338187658013" c="-1.4905167470012943e-05" d="-7.6627588027376331e-07" /> - <width sOffset="116.92367370178931" a="3.8154758635857569" b="-0.0010229055628437557" c="-6.4661511110911715e-05" d="2.7108358383285617e-06" /> - <width sOffset="118.1106645154407" a="3.8141751130467827" b="-0.0011649525285895603" c="-4.7359719297473192e-05" d="2.5820552539373707e-06" /> - <width sOffset="124.82398207733497" a="3.8050012057341123" b="-0.0014517250997112322" c="8.7999047441375442e-06" d="2.5421337222014447e-06" /> - <width sOffset="132.60714774826468" a="3.7954338470047118" b="-0.00085275326984129236" c="2.5680554216844419e-05" d="-9.7961664232659084e-07" /> - <width sOffset="134.93788321878222" a="3.7935734066615727" b="-0.00074900890886713044" c="2.0288640484518963e-05" d="-8.6436586079363866e-08" /> - <width sOffset="145.05178436022942" a="3.787983925928915" b="-0.00036513935407784821" c="1.4816916482715675e-05" d="1.1574084996085423e-07" /> - <width sOffset="148.85446330716726" a="3.7868160406205273" b="-0.00024743043578181469" c="0.00030049835771078776" d="-1.0697000387769081e-05" /> - <width sOffset="152.17537915414147" a="3.7889166117018807" b="0.0013945140497381274" c="0.00018401255594499149" d="-1.008593174554331e-05" /> - <width sOffset="155.16568550167665" a="3.7944623747878601" b="0.0022244587288222793" c="9.2537122305219892e-05" d="-1.0081489629496385e-05" /> - <width sOffset="165.27958664312388" a="3.8159961286628041" b="0.0010025444875037576" c="-0.00021241019884766623" d="-1.0464854476125381e-05" /> - <width sOffset="168.29768668658204" a="3.8167993828682234" b="-0.00056557678709464676" c="-1.7389529364610417e-05" d="1.0016212801193442e-06" /> - <width sOffset="175.39348778457108" a="3.8122684484604985" b="-0.00066106599427102062" c="8.3316874161514422e-06" d="1.0432262587697126e-06" /> - <width sOffset="185.50738892601831" a="3.8075140301798935" b="-0.00017239630840966823" c="3.8179751626033787e-05" d="2.0635859360067871e-06" /> - <width sOffset="186.27530572119662" a="3.8074050930831977" b="-0.00011010789700945652" c="0.00017515735003734937" d="-3.6601693091437056e-06" /> - <width sOffset="188.92980682266099" a="3.808278574063086" b="0.00074243007159738143" c="0.00037750180965039819" d="-1.7825229015032957e-05" /> - <width sOffset="195.62129006746554" a="3.8248087831924189" b="0.0034000995566914717" c="1.7101850443412112e-05" d="-1.815259323050229e-05" /> - <width sOffset="202.46110136013445" a="3.8430563045389068" b="0.0010863471004389639" c="-0.0019490186636632913" d="0.00024726103526521439" /> - <width sOffset="205.73519120891274" a="3.8343984328974883" b="-0.003724511437485424" c="0.00049202444453947639" d="0.00024312316273136756" /> - <width sOffset="206.74065100881541" a="3.8313981253501872" b="-0.001997734185184427" c="0.0013241152472825942" d="0.0002496492969532806" /> - <width sOffset="207.19711661127963" a="3.8307858662198062" b="-0.00063285664069399319" c="0.00016621633453302886" d="-3.9072067196297871e-05" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.930272501770828" b="0.0047152310406565262" c="-0.00024129267454847501" d="-0.00018617220293578452" /> - <width sOffset="2.2175896873113894" a="3.9375120519450446" b="0.00089843537417241945" c="-0.00047429357843001372" d="2.7293555647005405e-05" /> - <width sOffset="3.457168379968329" a="3.9379489404869563" b="-0.00015159887795352018" c="-0.00036766910407903689" d="2.9548126693893477e-05" /> - <width sOffset="12.082532020913771" a="3.9282489459446701" b="0.00010070857536449707" c="2.0405510210349879e-05" d="-2.634994136477941e-06" /> - <width sOffset="13.571069521415549" a="3.9284353770355449" b="0.00014394189321478845" c="1.2485711888415736e-05" d="-1.1231677498237064e-06" /> - <width sOffset="23.684970662862767" a="3.9300063814445623" b="5.1830560233798693e-05" c="-2.0636386010344779e-05" d="-1.140943186214947e-06" /> - <width sOffset="29.868999477020083" a="3.9292678993357648" b="-0.00033429802608513147" c="5.4648245791786381e-05" d="2.3350148584742283e-06" /> - <width sOffset="33.798871804309989" a="3.9289398506126187" b="0.00020340841512200163" c="8.2493041375229087e-05" d="2.4165004725191089e-06" /> - <width sOffset="38.399151981319967" a="3.9318566071825427" b="0.0011158087581676522" c="0.00011738793271583357" d="-3.5214351384179761e-06" /> - <width sOffset="43.912772945757212" a="3.9409871063780941" b="0.0020891188366295036" c="5.6859142512085993e-05" d="-3.4891846492030699e-06" /> - <width sOffset="54.026674087204427" a="3.9643226516563663" b="0.0021685178072246868" c="-5.0354649813888942e-05" d="-3.6197408101684768e-06" /> - <width sOffset="62.612655920513745" a="3.9769382899540688" b="0.00050329765919106533" c="-0.00027651079279716797" d="2.2112156403492636e-05" /> - <width sOffset="64.140575228651656" a="3.9771406371001436" b="-0.00018680973009235953" c="-0.00017384892761544387" d="2.2592469958851243e-05" /> - <width sOffset="69.97061858132993" a="3.9746194238197265" b="8.9810567913625532e-05" c="4.7826847907575118e-06" d="2.2340455716074159e-07" /> - <width sOffset="74.254476370098871" a="3.975109491599679" b="0.00014308663523860933" c="7.3777444558751965e-06" d="2.6256109045629726e-07" /> - <width sOffset="78.024776367927728" a="3.975767919046759" b="0.00020991630041578886" c="-3.3526118746678414e-06" d="8.2688853161538424e-08" /> - <width sOffset="84.368377511546086" a="3.9769857393161532" b="0.00017736355012559069" c="-2.0547643859246636e-06" d="5.6098654507912111e-08" /> - <width sOffset="94.482278652993315" a="3.9786274303134888" b="0.00015301534417101897" c="-5.4949081102662289e-07" d="7.5402211458949503e-08" /> - <width sOffset="104.59617979444053" a="3.9801968126041594" b="0.00016503925468945214" c="-3.1815274875646172e-07" d="1.7866971766124414e-07" /> - <width sOffset="114.71008093588775" a="3.9820183038750026" b="0.00021343263407583779" c="5.1349339401703532e-06" d="-1.4900616340285084e-07" /> - <width sOffset="118.1106645154407" a="3.9827976200466169" b="0.00024318687033302185" c="-4.0337698986566014e-06" d="-2.0225579052524798e-08" /> - <width sOffset="121.29647626232379" a="3.9835307733295542" b="0.00021686937501579271" c="0.00014877752576375342" d="-8.8953468588465515e-06" /> - <width sOffset="124.82398207733497" a="3.9857566136848841" b="0.00093443421358015675" c="6.1246346639934939e-05" d="-8.2003458091081226e-06" /> - <width sOffset="133.26233358164316" a="3.9930755370832629" b="0.00021633465305488691" c="2.0652181590265092e-07" d="-8.471408047854778e-07" /> - <width sOffset="134.93788321878222" a="3.9934346113434076" b="0.00020989176965341985" c="-2.6906018628901286e-06" d="2.5644290405276225e-07" /> - <width sOffset="145.05178436022942" a="3.9955475174403596" b="0.00023416220759697788" c="3.2928784418211102e-06" d="2.0320234874776245e-07" /> - <width sOffset="152.17537915414147" a="3.9974561490677418" b="0.00031201134807252903" c="1.754975948028121e-05" d="-4.078662934892121e-07" /> - <width sOffset="154.85748976251634" a="3.9984113765098028" b="0.00039734991577101714" c="-5.4491002180144985e-05" d="7.0470291631536317e-07" /> - <width sOffset="155.16568550167665" a="3.9985286828833795" b="0.00036396293418485492" c="-5.4036630603687292e-05" d="6.782898334985115e-07" /> - <width sOffset="165.27958664312388" a="3.9973840394626543" b="-0.00052093051715611997" c="-3.2866247411273326e-05" d="5.6714766047363279e-07" /> - <width sOffset="175.39348778457108" a="3.9893402273827743" b="-0.0010117001738566989" c="-2.1727928936793671e-06" d="-4.1202662521006827e-06" /> - <width sOffset="177.09431931191648" a="3.9875929377279524" b="-0.0010548489464841566" c="-0.00020307682787950798" d="1.4371476866774486e-05" /> - <width sOffset="185.50738892601831" a="3.9729025484652816" b="-0.0014202197239657497" c="0.00015843912472134877" d="1.5463028900382193e-05" /> - <width sOffset="186.27530572119662" a="3.9719123710780635" b="-0.0011495281258429141" c="6.1838471996044557e-05" d="2.1186784145591477e-05" /> - <width sOffset="188.38125095486254" a="3.9699636637393341" b="-0.00060718075347194784" c="-0.00012829201035620714" d="5.4714731838631679e-06" /> - <width sOffset="195.62129006746554" a="3.9609192958557307" b="-0.0016044453244718716" c="-1.1765515070646358e-05" d="5.2099968645042655e-06" /> - <width sOffset="205.73519120891274" a="3.9488786478909845" b="-0.0002436285271232601" c="0.00015422867434411631" d="3.2872322678070419e-06" /> - <width sOffset="206.74065100881541" a="3.9487929479577306" b="7.6482613524562809e-05" c="6.5405110958813699e-05" d="-3.2389019639598942e-06" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.6431112364086315" b="-0.0035746804655285274" c="0.00026469835467373743" d="0.00018421029411629211" /> - <width sOffset="2.2175896873113894" a="3.6384946661369564" b="0.00031697933002321395" c="0.00048464713226027873" d="-2.925546446789692e-05" /> - <width sOffset="3.457168379968329" a="3.639576551762536" b="0.0013836379271977442" c="0.0003750468898338163" d="-3.0993552682917037e-05" /> - <width sOffset="12.082532020913771" a="3.6595246852096248" b="0.00093599701453033379" c="-5.0429698770682594e-05" d="1.1895681477667234e-06" /> - <width sOffset="13.571069521415549" a="3.6608101360240908" b="0.00079377135408131546" c="-4.7018174169679638e-05" d="-2.8930308432015018e-07" /> - <width sOffset="23.684970662862767" a="3.6637294234529785" b="-0.00024608227890846653" c="-5.4948931462345233e-05" d="-2.9915580197514954e-07" /> - <width sOffset="33.798871804309989" a="3.6553102957336945" b="-0.0014493812352829921" c="-6.3763805033229334e-05" d="-2.4415425566205525e-07" /> - <width sOffset="38.399151981319967" a="3.6472695601478486" b="-0.0020515447721171942" c="-6.8678492656516584e-05" d="5.6937813556102794e-06" /> - <width sOffset="39.405843840327591" a="3.6451404948395671" b="-0.0021725102101328546" c="-0.00022364374814262135" d="8.9245432796909788e-06" /> - <width sOffset="43.912772945757212" a="3.6316234133634548" b="-0.0036445663001888695" c="-0.00010548353569964098" d="8.8571860601011979e-06" /> - <width sOffset="54.026674087204427" a="3.5931359136221546" b="-0.0030602352449428951" c="0.00016226562721254718" d="8.6719119175003939e-06" /> - <width sOffset="58.861464398801814" a="3.5831133579636303" b="-0.00088307172263200418" c="0.00016539138301287698" d="2.5815400281533499e-06" /> - <width sOffset="62.612655920513745" a="3.5822643470770004" b="0.00046673572486770576" c="0.00032736199268343342" d="-2.3150357185422133e-05" /> - <width sOffset="64.140575228651656" a="3.5836591434501606" b="0.0013049650187470919" c="0.0002210436320726506" d="-2.3515950805982417e-05" /> - <width sOffset="69.97061858132993" a="3.5941203737908243" b="0.0014844733718082626" c="2.6260219544254361e-05" d="-1.1468854043172297e-06" /> - <width sOffset="74.254476370098871" a="3.6008713970487642" b="0.0016463224762277066" c="1.1304271863979593e-05" d="-1.1302024492795464e-06" /> - <width sOffset="84.368377511546086" a="3.6175092016481649" b="0.0015281544487757025" c="-2.3215566147709829e-05" d="-1.1512794100319356e-06" /> - <width sOffset="94.379459565243195" a="3.6293258650212556" b="0.00071717881392441307" c="-1.4768220395969702e-05" d="3.1179992201547793e-08" /> - <width sOffset="94.482278652993315" a="3.6293994486003962" b="0.00071414289290686712" c="-1.4582072207095248e-05" d="1.3859392863873841e-08" /> - <width sOffset="104.59617979444053" a="3.6351449429136329" b="0.00042343269273943651" c="-1.6031310155978414e-05" d="1.090972469285831e-07" /> - <width sOffset="114.71008093588775" a="3.6379005083797429" b="0.00013263351881324335" c="-1.2121642187795865e-05" d="-4.9693865838346844e-07" /> - <width sOffset="118.61577154784038" a="3.6382040181291608" b="1.5205218854364142e-05" c="-1.8920247525327778e-05" d="-2.1645931452307672e-07" /> - <width sOffset="121.29647626232379" a="3.6381046446922327" b="-9.0900519966842248e-05" c="-0.0001736656383644092" d="8.6586619651913538e-06" /> - <width sOffset="124.82398207733497" a="3.6360030810216819" b="-0.00099288670385535736" c="-8.05378599914995e-05" d="8.3360099635600414e-06" /> - <width sOffset="133.26233358164316" a="3.6268987628616176" b="-0.00057138407052692618" c="-1.6063689700732902e-05" d="9.8280495921297715e-07" /> - <width sOffset="134.93788321878222" a="3.6259009053807802" b="-0.00061693751317861702" c="-1.2148549446927117e-05" d="2.3406201344850682e-07" /> - <width sOffset="145.05178436022942" a="3.6186607245718934" b="-0.00079084865976100638" c="-6.6343153741440644e-06" d="1.7961888636230415e-07" /> - <width sOffset="154.85748976251634" a="3.6104373451394314" b="-0.00086914487476855455" c="6.7408488368575766e-05" d="-9.3295028247332748e-07" /> - <width sOffset="155.16568550167665" a="3.6101758538504929" b="-0.00082786070472918184" c="6.4726276044239255e-05" d="-9.1740391293985177e-07" /> - <width sOffset="165.27958664312388" a="3.6074747574554551" b="0.0001998831288114862" c="3.7392556640208852e-05" d="-1.0217372853449789e-06" /> - <width sOffset="175.39348778457108" a="3.6122642279605728" b="0.00064270879676053372" c="1.6062855639121462e-05" d="-2.8358560613494163e-06" /> - <width sOffset="177.09431931191648" a="3.6133898814062118" b="0.00067273828886931018" c="0.00018147331419867123" d="-2.1327599175756178e-05" /> - <width sOffset="177.47974119595386" a="3.6136749062314317" b="0.00080312121578613566" c="0.00017032036172550546" d="-1.5194197902212883e-05" /> - <width sOffset="185.50738892601831" a="3.6232376925928849" b="0.00060018002180124079" c="-0.000192061479609622" d="-1.5624071185748016e-05" /> - <width sOffset="188.38125095486254" a="3.623005430880887" b="-0.00089085786543459714" c="-2.7806507433267731e-06" d="9.123977593071699e-08" /> - <width sOffset="195.62129006746554" a="3.6164444548466927" b="-0.0009167740404563275" c="-1.2076216047017186e-06" d="8.7537868958189846e-08" /> - <width sOffset="205.73519120891274" a="3.6071393272827388" b="-0.00091433856402082332" c="8.0476723617360175e-06" d="-9.2516107397150442e-07" /> - <roadMark sOffset="0" color="standard" width="0.30932594790760459" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30932599999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link> - <predecessor id="-6" /> - </link> - <width sOffset="0" a="3.5129479104642813" b="-0.0089234162748578153" c="0.00020330825441641607" d="8.6361169534476215e-06" /> - <width sOffset="3.457168379968329" a="3.484884946226825" b="-0.0072080175860845001" c="0.00029475866267252287" d="8.8876495370454855e-06" /> - <width sOffset="13.571069521415549" a="3.4513297420159041" b="0.0014816819413274005" c="0.00056255972484581002" d="8.8558060331977612e-06" /> - <width sOffset="14.109311554511802" a="3.4522916024883123" b="0.0020949652216343834" c="9.8453792724320866e-05" d="-2.1231627259961993e-06" /> - <width sOffset="23.684970662862767" a="3.4795156369652149" b="0.0033964460806835371" c="3.8307113304711307e-05" d="-2.1263113305565524e-06" /> - <width sOffset="33.798871804309989" a="3.5155856308148117" b="0.003518807281306277" c="-2.5961724420788097e-05" d="-2.1046815275939212e-06" /> - <width sOffset="39.405843840327591" a="3.5341282986407627" b="0.003029172167042776" c="0.00011079650966723402" d="-5.3354434519755591e-06" /> - <width sOffset="43.912772945757212" a="3.5495426653093967" b="0.0037027490512693967" c="3.8103218916090196e-05" d="-5.0431765917814308e-06" /> - <width sOffset="54.026674087204427" a="3.5856720454504947" b="0.0029258787555916273" c="-0.00011651245337668327" d="-5.0769758236459083e-06" /> - <width sOffset="58.861464398801814" a="3.5965207838707114" b="0.0014432262584938732" c="-6.7495922584739335e-05" d="1.0133960656889143e-06" /> - <width sOffset="64.140575228651656" a="3.6024077850984817" b="0.00081531638549086033" c="-5.1688682632120545e-05" d="9.3204018771153744e-07" /> - <width sOffset="74.254476370098871" a="3.6063307800277418" b="5.5785891120860949e-05" c="-2.362493636752995e-05" d="9.5380826861164864e-07" /> - <width sOffset="84.368377511546086" a="3.6054651475963855" b="-0.00012939665644362227" c="5.0838536021159459e-06" d="9.3311404403266797e-07" /> - <width sOffset="94.379459565243195" a="3.6056154795558024" b="0.00025294810087393769" c="-9.9157062964082383e-06" d="-2.4934519842942081e-07" /> - <width sOffset="94.482278652993315" a="3.6056413823512328" b="0.00025090114506418526" c="-1.0527683776261463e-05" d="-1.9078195917093252e-07" /> - <width sOffset="103.35931476927388" a="3.6069055837884791" b="1.8890018538627912e-05" c="-3.3575231848186665e-06" d="5.4687821655848081e-06" /> - <width sOffset="104.59617979444053" a="3.6069341597619271" b="3.5683417124601953e-05" c="5.5289149924190398e-06" d="1.0819227558163496e-07" /> - <width sOffset="114.71008093588775" a="3.6079725480495819" b="0.00018072250341375889" c="6.9839138691652252e-06" d="4.1763643966355288e-07" /> - <width sOffset="118.61577154784038" a="3.6088098121628951" b="0.00025438892099782703" c="1.285332941344998e-05" d="1.3715709581220257e-07" /> - <width sOffset="124.82398207733497" a="3.6109173220086612" b="0.00042984014715681832" c="1.5465556106149772e-05" d="-2.4429822292061093e-07" /> - <width sOffset="134.93788321878222" a="3.616593928486326" b="0.00066770583241752173" c="8.2085775157414261e-06" d="-7.5882547613217883e-08" /> - <width sOffset="145.05178436022942" a="3.6241081977130714" b="0.00081046101123938275" c="4.0233021161783738e-06" d="-8.7949781722887831e-08" /> - <width sOffset="153.30517691011912" a="3.6310218657185045" b="0.00085889977605421079" c="-0.0010313160782896395" d="2.0039136840025132e-06" /> - <width sOffset="155.16568550167665" a="3.6290628690272229" b="-0.002957835477611677" c="-0.0010260210951673597" d="-1.2085115143716675e-07" /> - <width sOffset="165.27958664312388" a="3.4940698654745539" b="-0.023749073282789444" c="-0.0010289202021612047" d="-3.0832520938685005e-07" /> - <width sOffset="173.02858944751574" a="3.2481111477030273" b="-0.039750826399546302" c="-0.0033311858854027541" d="4.1562561309836942e-05" /> - <width sOffset="175.39348778457108" a="3.1360237318119193" b="-0.054809312006964171" c="-0.0030341175396237903" d="5.3026038565265148e-05" /> - <width sOffset="177.47974119595386" a="3.0089532562015391" b="-0.066776808073052848" c="-0.0027157476959680585" d="4.689263728724746e-05" /> - <width sOffset="185.50738892601831" a="2.3221401026020958" b="-0.10131321503513235" c="-0.0015941850662521968" d="5.2970439610179622e-05" /> - <width sOffset="186.72305058425138" a="2.1967167356775823" b="-0.10495434992395902" c="-0.0061123982943776922" d="0.00033464282706641504" /> - <width sOffset="195.62129006746554" a="1.0146091013291638" b="-0.13424379980328013" c="0.0028190788891492373" d="0.00033438796647963136" /> - <width sOffset="198.83351458756431" a="0.62355950146236871" b="-0.10578173843528471" c="-0.0074185399356802998" d="0.0015725880035422309" /> - <width sOffset="204.81634840354027" a="0.061915338083085025" b="-0.025680459079028703" c="0.0028333426897273095" d="-3.4115289091795676e-05" /> - <width sOffset="205.73519120891274" a="0.040684680155476549" b="-0.020560073748195778" c="0.0027262305751320185" d="-3.2109273990120258e-05" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="209.79752753391705" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link> - <predecessor id="-7" /> - <successor id="-5" /> - </link> - <width sOffset="0" a="2.4928897345643239" b="2.8489581133770911e-05" c="4.3280109854842026e-05" d="-3.2530006528226751e-06" /> - <width sOffset="3.457168379968329" a="2.4933710979036956" b="0.00021110311537874803" c="1.1069985942256438e-05" d="-3.0954925970943065e-06" /> - <width sOffset="13.571069521415549" a="2.493436057842592" b="-0.00051489846308626721" c="-6.8437102366619435e-05" d="-9.31021680197826e-06" /> - <width sOffset="14.109311554511802" a="2.4931376395587517" b="-0.00059666154806401514" c="0.00039493508082367031" d="1.6687519544096859e-06" /> - <width sOffset="14.859266241853771" a="2.4929129984516081" b="-1.4790392704093906e-06" c="4.9701642891543038e-07" d="-3.1280294444623854e-08" /> - <width sOffset="23.684970662862767" a="2.4929171550319911" b="-1.5552500924479254e-08" c="3.3917730315328375e-07" d="-2.2370270701023348e-08" /> - <width sOffset="33.798871804309989" a="2.4929285491096316" b="-1.9572905457531688e-08" c="-1.6168732986567504e-07" d="1.063993816436016e-08" /> - <width sOffset="43.912772945757212" a="2.4929228196584639" b="-2.5042619659389198e-08" c="-1.0350393060579187e-06" d="6.8202977961998573e-08" /> - <width sOffset="54.026674087204427" a="2.4928872513207949" b="-3.1961358731066175e-08" c="1.5232747491448783e-07" d="-1.006806969045358e-08" /> - <width sOffset="64.140575228651656" a="2.4928920937634658" b="-4.0329949936709561e-08" c="-9.515386603592277e-09" d="1.4223959926196215e-09" /> - <width sOffset="74.254476370098871" a="2.4928921840874168" b="2.0368960035994053e-07" c="6.8022335266410758e-07" d="-6.3700309832349291e-08" /> - <width sOffset="75.105731747734112" a="2.492892811099864" b="1.2232986162166726e-06" c="-9.2072377037171275e-06" d="3.1807672532569151e-07" /> - <width sOffset="84.368377511546086" a="2.4923669690414449" b="-8.747375304682262e-05" c="-6.9656985363212633e-07" d="2.8536960392344062e-07" /> - <width sOffset="94.482278652993315" a="2.4917062475960616" b="-1.3991607025032218e-05" c="7.8390436446535267e-06" d="2.9132879386596325e-07" /> - <width sOffset="103.35931476927388" a="2.4924035662236435" b="0.00019405501408546158" c="3.3465567029700536e-06" d="-5.3682353333016656e-06" /> - <width sOffset="104.59617979444053" a="2.4926385479910884" b="0.00017769594760820584" c="-8.327085140910647e-06" d="1.4972851439815119e-07" /> - <width sOffset="114.71008093588775" a="2.4937388646883161" b="5.5204952521625101e-05" c="-4.0695248666691712e-06" d="1.8969931375805442e-08" /> - <width sOffset="124.82398207733497" a="2.4939005519192001" b="-2.1291232325550938e-05" c="-1.7093000156783341e-06" d="1.3265190753561572e-08" /> - <width sOffset="134.93788321878222" a="2.4935240921480286" b="-5.1795886351255251e-05" c="-1.1972072950990987e-06" d="1.2939008986523574e-07" /> - <width sOffset="145.05178436022942" a="2.4930116320908322" b="-3.6306435199555763e-05" c="1.0420359673920095e-06" d="1.8460634812215581e-07" /> - <width sOffset="151.856992533332" a="2.4928709964406863" b="3.52394343987447e-06" c="-0.00056052342315336949" d="-1.9154662478146322e-05" /> - <width sOffset="153.30517691011912" a="2.4916423724462522" b="-0.0017404742424815955" c="0.00038941985620399703" d="-2.1246525945288138e-05" /> - <width sOffset="155.16568550167665" a="2.4896153484500907" b="-0.00051207031884752726" c="0.0002720056202058684" d="-1.9682637703936151e-05" /> - <width sOffset="163.30270175144315" a="2.492854174252189" b="4.9346343021228201e-06" c="0.00020052768196279628" d="-1.9485237411480378e-05" /> - <width sOffset="165.27958664312388" a="2.4934970671663823" b="0.00056932568214915907" c="8.3646889491252618e-05" d="-2.0627154778241985e-05" /> - <width sOffset="173.02858944751574" a="2.49333360957176" b="-0.0018501133956675617" c="0.0018992252933496638" d="-6.2498041308445417e-05" /> - <width sOffset="173.52707318486756" a="2.4928755476992546" b="-3.2372227815463672e-06" c="3.2138381420212386e-06" d="-4.2445597210781022e-06" /> - <width sOffset="175.39348778457108" a="2.4928531044242455" b="-3.5598329325203792e-05" c="-9.334540371386691e-06" d="1.1884165847075693e-06" /> - <width sOffset="185.50738892601831" a="2.4927677164851563" b="0.00014027738304514537" c="3.2143723142977025e-05" d="-5.5510644879664279e-06" /> - <width sOffset="186.48764712277941" a="2.4929308828922938" b="0.00018729352349926287" c="-0.0044016997389148046" d="0.00025395321732521881" /> - <width sOffset="186.72305058425138" a="2.4927343659481895" b="-0.0018428388939388946" c="0.00048904028587967285" d="-2.771916982628953e-05" /> - <width sOffset="195.62129006746554" a="2.4955283401807051" b="0.00027605560729909717" c="-0.00025183693516424212" d="-2.7836474247407833e-05" /> - <width sOffset="198.83351458756431" a="2.4928939027659798" b="-0.0022035404382857587" c="0.00076045202044789512" d="-6.5520026858400171e-05" /> - <width sOffset="204.81634840354027" a="2.4928991323426688" b="-0.00013995489599289562" c="5.6119875955298187e-05" d="-5.4219716293336931e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="216.45426029539593"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="2.4929243247046919" b="-2.5270310218274659e-06" c="2.5652814229561996e-05" d="-1.5661919539228894e-07" /> - <width sOffset="6.0515648164429194" a="2.4938137656499482" b="0.00029074544518420062" c="2.6785151615632841e-05" d="-9.4611817233552118e-07" /> - <width sOffset="8.5792943781127065" a="2.4947045525153069" b="0.00040802125443180999" c="0.00027720741135884354" d="-5.5407831879482901e-05" /> - <width sOffset="12.85324111175828" a="2.497186335582791" b="-0.00025878086819820252" c="-7.5569972511860993e-05" d="4.6784245589430487e-06" /> - <width sOffset="16.165465957890149" a="2.4956701335503375" b="-0.00060541169967820571" c="-2.7950650909036558e-05" d="8.4988289604801955e-06" /> - <width sOffset="22.353466655707336" a="2.4928673486187733" b="2.4965975824001087e-05" c="-0.00022180187913610502" d="1.4579011704107441e-05" /> - <width sOffset="26.27936709933735" a="2.4904289550920709" b="-0.0010424726640918575" c="-6.0726628049208344e-05" d="1.7005553081020589e-05" /> - <width sOffset="28.100819369689674" a="2.4884314336081221" b="-0.001094436595945726" c="0.0018399415342452987" d="-0.00026502083980831353" /> - <width sOffset="32.142635382330525" a="2.4965668606746281" b="0.00079061241966992273" c="-0.00027070298605833394" d="1.6409133594387992e-05" /> - <width sOffset="36.393268240784579" a="2.4962966550167422" b="-0.0006212708400085054" c="-6.667219278312135e-05" d="1.2952218639981385e-05" /> - <width sOffset="42.39285428731975" a="2.492966519604197" b="-2.2635353428221709e-05" c="7.8647526268672135e-05" d="4.9873517680526883e-06" /> - <width sOffset="44.227048614814606" a="2.4932203689539012" b="0.00031621071598786831" c="4.6940738096795734e-05" d="-2.1171972862666616e-06" /> - <width sOffset="46.507169382231808" a="2.494160312402931" b="0.00049725020650054829" c="2.7738105073901837e-05" d="-5.6208890440693833e-06" /> - <width sOffset="55.130161355175261" a="2.496906639554938" b="-0.00027821919689654195" c="-7.392904228505884e-05" d="6.2846948953997046e-06" /> - <width sOffset="56.621070523679037" a="2.4963483373073121" b="-0.00045675312002753664" c="-4.8834203791127447e-05" d="3.5506049638122375e-06" /> - <width sOffset="66.734971665126267" a="2.490406799554032" b="-0.00035497698132047351" c="6.0172621841083115e-05" d="3.5199999825193349e-06" /> - <width sOffset="67.194688432549839" a="2.4902566695260848" b="-0.00029742050974298725" c="1.6500339029763845e-05" d="-3.2028047281067519e-07" /> - <width sOffset="76.848872806573439" a="2.4886350138547861" b="-6.8379447134751429e-05" c="7.3298551475353053e-06" d="-3.1847940992838385e-07" /> - <width sOffset="82.339889462022398" a="2.4884278177696704" b="-1.6690403956378084e-05" c="9.9187237611659187e-05" d="-5.5129260389973254e-06" /> - <width sOffset="86.962773948020669" a="2.4899257417182667" b="0.00054692064444773953" c="2.2793483592577031e-05" d="-5.3843145792558987e-06" /> - <width sOffset="94.340083536387255" a="2.4930392285634078" b="4.1107498157690308e-06" c="9.4729980971437863e-06" d="-6.0532718305617317e-06" /> - <width sOffset="96.165011258538669" a="2.4930414891106309" b="-2.1792921253660838e-05" c="4.3876738819074263e-05" d="1.1808625283974982e-07" /> - <width sOffset="97.076675089467898" a="2.49305817808313" b="5.8503185754884041e-05" c="3.2224218607009924e-05" d="-1.4673292182479516e-06" /> - <width sOffset="107.19057623091513" a="2.4954280793276684" b="0.00026004460555832426" c="-1.4853391715370354e-05" d="-1.4994187332431167e-06" /> - <width sOffset="117.30447737236236" a="2.4949875363432543" b="-0.00050053797356949727" c="-5.8423768907804553e-05" d="-2.5372122543779883e-06" /> - <width sOffset="120.71684018022776" a="2.4924984056033246" b="-0.00098789573831828035" c="0.0006639955892673243" d="-9.8770275564296091e-05" /> - <width sOffset="124.21688035644124" a="2.4929399421382801" b="3.0235780215402252e-05" c="-7.5956087790322554e-06" d="-0.000101321419481133" /> - <width sOffset="126.14062369093304" a="2.4922486539026725" b="-0.0011238956301331316" c="2.9084582727204348e-05" d="1.3180695910983634e-05" /> - <width sOffset="127.41837851380959" a="2.4908875727219861" b="-0.00098501101678182402" c="8.1539895150990841e-05" d="1.5001366067019394e-05" /> - <width sOffset="131.53397496135764" a="2.4892605516590223" b="0.00044844504008860182" c="0.00033293448455088543" d="-3.431424002287073e-05" /> - <width sOffset="136.95696989316704" a="2.4960111169006307" b="0.0010320195979283183" c="-0.00065998831997728406" d="5.9583990763484169e-05" /> - <width sOffset="137.53227965525681" a="2.4963977498351113" b="0.00033178771540593268" c="-0.00055883936310785714" d="5.9650708709736702e-05" /> - <width sOffset="143.78533821118467" a="2.4912059565278319" b="0.00034003798321937523" c="0.00015061242346057639" d="-3.2062142367311224e-05" /> - <width sOffset="147.64618079670399" a="2.4929186539651749" b="6.9254672851254027e-05" c="-0.0002190192351493348" d="-3.1619320931532275e-05" /> - <width sOffset="147.78537750263288" a="2.4929239650530164" b="6.4432191230781545e-06" c="0.00013313354954973188" d="-3.1609626191758509e-05" /> - <width sOffset="150.32373940393782" a="2.4932811497360223" b="7.1316354005783054e-05" c="-3.0487965976662478e-05" d="7.6661344175667861e-07" /> - <width sOffset="157.76008193815122" a="2.492440772372678" b="-0.0002549422545677347" c="-1.2933635835611677e-05" d="7.0634949060478414e-07" /> - <width sOffset="167.87398307959845" a="2.489270078770268" b="-0.00029980170366264533" c="-4.4353976259154098e-06" d="8.9193654217001087e-06" /> - <width sOffset="169.28774459846167" a="2.4888625691243327" b="-0.00025886090679226787" c="0.00034850006841377515" d="-3.2580116383415475e-05" /> - <width sOffset="176.03777068915517" a="2.4929738791963238" b="-7.4208827463462419e-06" c="0.00014670591119229275" d="-3.2775860844448531e-05" /> - <width sOffset="177.98788422104568" a="2.4932742504571177" b="0.00019083131171639556" c="-3.936316572829656e-05" d="-2.9401647309941954e-05" /> - <width sOffset="181.10273905364321" a="2.4925981916352065" b="-0.00091018240986667309" c="7.6631956898323984e-05" d="-1.5774231660291946e-06" /> - <width sOffset="188.1017853624929" a="2.4894408905586705" b="-6.9299205710471215e-05" c="4.3975738486314084e-05" d="-1.6199770825387503e-06" /> - <width sOffset="198.21568650394013" a="2.491562362195948" b="0.00032310612837242763" c="-4.9357261873402e-06" d="-1.4506134922561546e-06" /> - <width sOffset="203.07722243618261" a="2.4928498250011408" b="0.00017226199659296781" c="-4.0340087969931005e-05" d="-3.8238607066821041e-06" /> - <width sOffset="204.82722504452434" a="2.4930072484617067" b="-4.0603467109384542e-06" c="1.0547407926841715e-05" d="-7.808974474576292e-07" /> - <width sOffset="208.32958764538731" a="2.4930888590707116" b="4.1084609208182532e-05" c="3.066696259986158e-06" d="-5.1130915851377065e-07" /> - <width sOffset="218.44348878683454" a="2.493289099635728" b="-5.3789834906885214e-05" c="-1.0467228219146106e-05" d="-1.5303970892615355e-06" /> - <width sOffset="220.76502737784207" a="2.4930886625261834" b="-0.00012713439895412038" c="8.6059876881403335e-06" d="-9.9817992398481275e-09" /> - <width sOffset="228.55738992828176" a="2.4926158256542941" b="5.169241463194509e-06" c="8.2647111509789023e-06" d="5.3695042037360955e-08" /> - <width sOffset="237.57217242415371" a="2.4933734046491391" b="0.00016726918103759621" c="-5.2648153333592698e-05" d="-4.2733831877382152e-06" /> - <width sOffset="238.67129106972899" a="2.4934879768900515" b="3.6048514149907143e-05" c="-5.6360522327384614e-05" d="5.8974607312414525e-06" /> - <width sOffset="244.82216102678623" a="2.4929497886191196" b="1.2075482804011026e-05" c="0.00056149755546776444" d="-8.143154624226091e-05" /> - <width sOffset="248.78519221117622" a="2.4967478594064065" b="0.00062574229950517965" c="-0.00040923958546285473" d="-8.0782819388028701e-05" /> - <width sOffset="251.7258340205037" a="2.4929948829181132" b="-0.0038767895874223406" c="0.0030661703850961451" d="-0.00060623441163550388" /> - <width sOffset="254.22574637786695" a="2.4929940535236792" b="8.7426631145557515e-05" c="0.0020203926965923669" d="-0.00058658747718656268" /> - <width sOffset="257.21935951329783" a="2.495625045067964" b="-0.0035865226207503773" c="0.00087847592540371393" d="-5.8099374001939086e-05" /> - <width sOffset="258.89909335262348" a="2.4918039116126991" b="-0.0011270942999965423" c="0.00058000232359916605" d="-6.133560901724406e-05" /> - <width sOffset="263.96933750181245" a="2.4930049588598377" b="2.4079835149279984e-05" c="-0.00016878498893782131" d="9.4072481583989812e-06" /> - <width sOffset="267.7641040713487" a="2.4911798543352575" b="-0.00085051916227250706" c="0.00030974590091014157" d="-2.8961218967747515e-05" /> - <width sOffset="269.01299449407065" a="2.4905443538501242" b="-0.00021235659457875659" c="0.00020632960984653741" d="-2.1295640189692919e-05" /> - <width sOffset="276.31694409266652" a="2.4917026980543131" b="-0.0006065334305631778" c="-0.00012532361058772347" d="2.0576915260614349e-05" /> - <width sOffset="279.12689563551783" a="2.4894653726930205" b="-0.00082342464558777303" c="4.9861892591564018e-05" d="2.0243891509054326e-05" /> - <width sOffset="280.96153401007984" a="2.4882475264741402" b="-0.000436050942707628" c="0.00042537755877422806" d="-3.0254250260011829e-05" /> - <width sOffset="289.24079677696511" a="2.4966257098352838" b="0.00038613328767865551" c="-0.00032355495829967284" d="-3.2422999135483111e-05" /> - <width sOffset="291.05170719835269" a="2.4960713473637712" b="-0.0011047084190089901" c="6.3686337184380785e-05" d="6.4367003801490005e-06" /> - <width sOffset="296.05167265731529" a="2.4929445507311314" b="1.4896411878137229e-05" c="-6.6694779221700899e-05" d="5.3319448027722351e-06" /> - <width sOffset="299.3546979184124" a="2.49245825709143" b="-0.0002511785017255917" c="-1.8791269288801297e-05" d="3.238908962118888e-06" /> - <width sOffset="304.10799300861891" a="2.4911876079475661" b="-0.00021028147578053919" c="4.4147845828964617e-05" d="-1.530526821765942e-06" /> - <width sOffset="309.46859905985957" a="2.491093241801404" b="0.00013109284049900771" c="1.9517977141496561e-05" d="-1.4799874408689952e-06" /> - <width sOffset="319.58250020130674" a="2.4928844778354344" b="7.1730453569445395e-05" c="-1.7176754924994248e-05" d="-7.4659059941781051e-06" /> - <width sOffset="320.8578391605447" a="2.4929325339483119" b="-8.5115681803720551e-06" c="0.00056015715979156598" d="-3.6932983407147678e-05" /> - <width sOffset="323.15091722242198" a="2.4954131198796023" b="0.0019778528050510428" c="-0.0010141185960092561" d="8.7154458123886089e-05" /> - <width sOffset="329.69640134275403" a="2.4893516459697222" b="-9.5971433011551345e-05" c="0.00068065628494457344" d="0.00010174569242046275" /> - <width sOffset="330.74672526917016" a="2.4901196239161054" b="0.001670579276331617" c="-8.3283923301988544e-05" d="-5.3901416216067035e-05" /> - <width sOffset="333.49668920860745" a="2.4929629016139634" b="-1.0332604607885725e-05" c="0.00020319128020715278" d="-1.7389514458742004e-05" /> - <width sOffset="339.8103024842012" a="2.4966207738506991" b="0.0004758822412974182" c="-0.00013132097575026329" d="-1.4327128102498493e-05" /> - <width sOffset="342.10266274329103" a="2.4968489998785959" b="-0.00035205127576554693" c="-3.177677008156345e-06" d="2.4494381692297982e-07" /> - <width sOffset="349.92420362564849" a="2.4940182215409505" b="-0.00035680551947538228" c="2.509409837231434e-06" d="2.47909647201622e-07" /> - <width sOffset="360.03810476709566" a="2.4909226934811484" b="-0.00022996889902860427" c="8.9770116886500044e-06" d="2.7454773254878218e-07" /> - <width sOffset="370.15200590854283" a="2.4897991146235698" b="3.5867601782679786e-05" c="1.667876567575632e-05" d="2.0796962494277198e-07" /> - <width sOffset="378.04999795205765" a="2.4912252483140849" b="0.00033824348042903472" c="-2.2098271437455579e-06" d="4.8035193534122173e-07" /> - <width sOffset="380.26590704999012" a="2.4919691408621238" b="0.00033552587706344621" c="8.1920707299683153e-07" d="6.6749634202869518e-07" /> - <width sOffset="385.36542907303499" a="2.4937899852080259" b="0.00039595598324449876" c="-8.0771892752827166e-05" d="3.6171801177142034e-06" /> - <width sOffset="390.37980819143729" a="2.4942005899503057" b="-0.00014123469318515626" c="-2.6308742014978588e-05" d="3.1374143998145794e-06" /> - <width sOffset="397.8651847819657" a="2.492985163159612" b="-7.7202699689483609e-06" c="-5.5691367769684707e-05" d="1.4634441014243741e-06" /> - <width sOffset="400.49370933288458" a="2.4926066680957817" b="-0.00027015909857259091" c="-3.8126574586208264e-05" d="3.2686438844270358e-06" /> - <width sOffset="410.60761047433175" a="2.4893559119453723" b="-3.831739257326573e-05" c="6.1484750207192209e-05" d="2.2047138384615019e-06" /> - <width sOffset="412.80529627760484" a="2.4895920645973799" b="0.00026387606480901955" c="0.00015745488296227145" d="-1.8122979003511563e-05" /> - <width sOffset="419.30516389077741" a="2.4929827028975664" b="1.3753834271407357e-05" c="0.0014830115893220211" d="-0.00019666640481580871" /> - <width sOffset="420.42665927046585" a="2.4945859780434141" b="0.0025980625000643527" c="-0.0040501228052604796" d="0.00091517640605260503" /> - <width sOffset="420.72151161577904" a="2.4950233731614286" b="0.00044837664400018424" c="-0.0032989283516346507" d="0.00089946045657214894" /> - <width sOffset="423.52746085410115" a="2.4901789555321114" b="0.0031804296540407844" c="-0.00060214525212855393" d="-0.00020092370032350005" /> - <width sOffset="425.02742625154349" a="2.4929166550909887" b="1.7863163549491456e-05" c="2.0424382834949702e-05" d="-1.418625889043754e-06" /> - <width sOffset="430.83541275722621" a="2.493431437911279" b="0.00011154996789544008" c="-7.5770660237343368e-06" d="-1.9578191729058676e-06" /> - <width sOffset="437.9540523821131" a="2.4931352955260779" b="-0.00029396447358198945" c="9.3135892499320131e-05" d="2.190814655919075e-06" /> - <width sOffset="439.45401265726377" a="2.4929112985642732" b="2.2301996786540206e-07" c="4.7360094055849799e-05" d="-2.2243994892469965e-06" /> - <width sOffset="440.94931389867338" a="2.4930100886840068" b="0.00012693745819726196" c="3.793358730092197e-05" d="-1.9505518142497633e-06" /> - <width sOffset="451.06321504012067" a="2.496156221142809" b="0.00029567889676475442" c="-2.1322774342223795e-05" d="-1.8723592577060557e-06" /> - <width sOffset="457.35604152075791" a="2.4967059220526497" b="-0.00019511654002128068" c="-1.3179982217887042e-05" d="1.0174246867441527e-06" /> - <width sOffset="461.17711618156784" a="2.4958246935355142" b="-0.00025127486424730253" c="-3.1647259522597169e-06" d="4.710806154413424e-07" /> - <width sOffset="471.29101732301513" a="2.4934469630725165" b="-0.00017072839861826327" c="8.6279308355600567e-06" d="8.510665194721713e-07" /> - <width sOffset="476.75979581802994" a="2.4929105259330466" b="0" c="-4.4257574141831971e-06" d="7.7778251123396085e-07" /> - <width sOffset="480.55327908601998" a="2.4928892962897811" b="0" c="2.5945660867644961e-05" d="-1.1211260362478911e-06" /> - <width sOffset="491.51881960590958" a="2.4945308437271549" b="0.0001645934518412055" c="-9.6338740182792674e-06" d="-1.1507630512222767e-06" /> - <width sOffset="498.48925431305065" a="2.4948203194933454" b="-0.00013744736284141497" c="-0.00085997182050990694" d="0.00025122639919571453" /> - <width sOffset="500.60710063373654" a="2.4930584481437794" b="-0.00039956669049076197" c="0.00026517497632631826" d="2.0947113317149375e-06" /> - <width sOffset="501.35707809938788" a="2.4929088177175753" b="1.7184358657654089e-06" c="-1.379727825107232e-06" d="-2.7100604016914562e-06" /> - <width sOffset="501.63272074735676" a="2.4929091298047865" b="3.4009023639858076e-07" c="9.5044670028436996e-08" d="-8.599831536167717e-08" /> - <width sOffset="504.35698436872838" a="2.4929090229341613" b="-1.0567947485185534e-06" c="4.4927673748228661e-05" d="-1.7759459756670963e-06" /> - <width sOffset="511.74662188880393" a="2.4946379306382926" b="0.00037200577777836603" c="6.7774062618203686e-06" d="-1.7907679280706451e-06" /> - <width sOffset="521.86052303025122" a="2.497240969235822" b="-4.04404948731521e-05" c="-4.5844964949014393e-05" d="-2.0748907570609928e-06" /> - <width sOffset="525.80334852599856" a="2.4962416396920775" b="-0.00049872585208774497" c="-0.0008519378892873382" d="0.00013419316946616634" /> - <width sOffset="530.70436398871971" a="2.4891313785140419" b="0.00082049330627018103" c="0.00019879059893960482" d="-3.156339056627812e-05" /> - <width sOffset="531.97442417169839" a="2.4904294510339797" b="0.0011727051021302851" c="8.571225902138188e-05" d="-2.7644785353233294e-05" /> - <width sOffset="535.34835579860635" a="2.4943000265766218" b="0.00080700354365912221" c="-0.00037093107538672211" d="2.5469409608134675e-05" /> - <width sOffset="542.08832531314567" a="2.4906870193383863" b="-0.00072211368023329951" c="0.00014254705900412396" d="2.5508500465320888e-05" /> - <width sOffset="543.06520044366493" a="2.4901414144314371" b="-0.00037058518681729383" c="6.3162052403211845e-05" d="-1.8905881033738616e-06" /> - <width sOffset="552.20222645459285" a="2.4905863137633935" b="0.00031013281542577569" c="1.1288203275643072e-05" d="-1.9024530070638876e-06" /> - <width sOffset="561.814523228079" a="2.4929207451334792" b="-1.9463147185149864e-07" c="0.00011038997977004072" d="-5.6514063578066514e-06" /> - <width sOffset="562.31612759604002" a="2.4929477091428751" b="0.00010628376137489411" c="9.7700845966606543e-05" d="-5.2242670278821459e-06" /> - <width sOffset="568.05565147491347" a="2.4957884382370707" b="0.00071150091916202503" c="-0.0004448527354977658" d="3.287232107315099e-05" /> - <width sOffset="572.43002873748731" a="2.4931400366639602" b="-0.0012933534728290629" c="-3.1678732950921768e-05" d="3.4851527630624497e-05" /> - <width sOffset="576.03031571872248" a="2.4896993929268634" b="-0.00016621509212480078" c="0.00012537095384194624" d="-7.4741576825987574e-06" /> - <width sOffset="582.54392987893448" a="2.4918703516956935" b="0.00051569888532841559" c="-7.7543349037296339e-06" d="-1.1315948264506681e-05" /> - <width sOffset="586.27990093597657" a="2.4930986896492335" b="-1.6067412094073201e-05" c="0.00011242639168499205" d="-7.7293422061964547e-06" /> - <width sOffset="592.65783102038176" a="2.4955641814123659" b="0.00047478555449079196" c="-3.1546526478680732e-05" d="-8.1769831366306495e-06" /> - <width sOffset="597.33684819741984" a="2.4962574174560173" b="-0.00035748894842886994" c="-0.00022578884440465079" d="2.8344048039881682e-05" /> - <width sOffset="602.77173216182894" a="2.4921953870510176" b="-0.00030008490112388205" c="0.00023070477213003711" d="2.8057298578847623e-05" /> - <width sOffset="603.34191560466024" a="2.4921044888768886" b="-9.6317644169372635e-06" c="3.8615963714756558e-05" d="-2.8993043737206806e-06" /> - <width sOffset="612.09154417054947" a="2.4930344381533889" b="2.4147675805139956e-07" c="-0.0035635270115682437" d="0.00051413356420372514" /> - <width sOffset="612.3555765140851" a="2.4927955408762994" b="-0.0017740057990164515" c="0.00096877390193947062" d="-0.00012732140182013772" /> - <width sOffset="616.4590908912943" a="2.4930311989943883" b="-0.00025508094428868889" c="1.6979124686285427e-05" d="5.1939107861245214e-07" /> - <width sOffset="622.99953444472339" a="2.4922344962057599" b="3.3675671606563052e-05" c="2.4344358388925995e-05" d="3.9460010123652553e-07" /> - <width sOffset="632.6110286384644" a="2.4951574939563708" b="0.0006110074337437022" c="-0.00030259518345228257" d="2.551226444915521e-05" /> - <width sOffset="633.11343558617057" a="2.4953913247666115" b="0.00032627445052389503" c="-0.00027555362747227964" d="2.5744210741122987e-05" /> - <width sOffset="639.61070458949109" a="2.4929399539545543" b="5.9196661251498944e-06" c="-0.00030776853877081213" d="3.8646676334302435e-05" /> - <width sOffset="643.22733672761785" a="2.4907639482310069" b="-0.00070375268243104275" c="0.00010244455169993491" d="3.7329718466725805e-05" /> - <width sOffset="643.64332953349469" a="2.490491607484552" b="-0.00059914056444494105" c="0.00012581033511678249" d="-5.0355763291627893e-06" /> - <width sOffset="653.34123786906503" a="2.4919207249029931" b="0.00042027443951823864" c="-2.2074364292153686e-05" d="-4.8301909704337054e-06" /> - <width sOffset="657.39266284592145" a="2.4929398966701282" b="3.5602715133848002e-06" c="0.00099400895429180335" d="-0.00015757605499755169" /> - <width sOffset="658.36778030929509" a="2.4937424221735043" b="0.0014926157532313151" c="-0.00050105518878655966" d="5.5365382971344832e-05" /> - <width sOffset="661.79188735832554" a="2.495201369419763" b="8.6783521084845411e-06" c="-0.0024923780124954014" d="0.00099831716765280036" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="663.45513901051231" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="3.8433279682148838" b="-0.00086212230840049405" c="-1.4764766284318101e-05" d="5.6754705280914672e-07" /> - <width sOffset="6.0515648164429194" a="3.8376958503057024" b="-0.00097846902328526395" c="-3.20742609590217e-06" d="2.4233576199729461e-06" /> - <width sOffset="8.5792943781127065" a="3.8352411906128738" b="-0.00094823250959294989" c="-0.00024242750037471397" d="5.6885071327117723e-05" /> - <width sOffset="12.85324111175828" a="3.8312012137737614" b="9.6817104870744824e-05" c="0.00012929081163140429" d="-3.2011851111912391e-06" /> - <width sOffset="16.165465957890149" a="3.832823997513608" b="0.00084793857628293013" c="8.2095595089498111e-05" d="-5.8483506184511772e-06" /> - <width sOffset="26.27936709933735" a="3.8437471290557443" b="0.00071385120764842758" c="-9.1683142057489398e-05" d="-8.6771883909283067e-06" /> - <width sOffset="28.100819369689674" a="3.8446907625191242" b="0.00029349365203241231" c="-0.0019468421480082294" d="0.0002733492044837331" /> - <width sOffset="28.405998294534584" a="3.8446067823484595" b="-0.00081840227622342529" c="-0.0017332576271285084" d="0.00027240333724789899" /> - <width sOffset="32.142635382330525" a="3.8315601749529833" b="-0.002361252315751581" c="0.00021750770951255629" d="-9.0266361547658971e-06" /> - <width sOffset="36.393268240784579" a="3.8247600164385176" b="-0.0010014380100568326" c="0.00012185999973972568" d="-6.7185711026555424e-06" /> - <width sOffset="44.227048614814606" a="3.8211633744878108" b="-0.00032910719253041916" c="2.3114673539041146e-05" d="3.8597795104506019e-07" /> - <width sOffset="45.733902336705768" a="3.8207212630693643" b="-0.00025681711479327634" c="0.0026712868798471853" d="-0.00037166255334680954" /> - <width sOffset="46.507169382231808" a="3.8219481041103318" b="0.0032077212455367647" c="0.0018338538058614694" d="-0.00036571080845248887" /> - <width sOffset="50.731057795072246" a="3.8406556350317054" b="-0.00087448665988813464" c="-8.0035875009958006e-05" d="1.1029690623249499e-05" /> - <width sOffset="55.130161355175261" a="3.8361987934447841" b="-0.00093831543608804686" c="2.1786882887119883e-05" d="-8.758933159015852e-07" /> - <width sOffset="56.621070523679037" a="3.8348453757450756" b="-0.00087919174284985821" c="2.2906268108938087e-05" d="1.8769462312089557e-06" /> - <width sOffset="67.194688432549839" a="3.830328913984272" b="0.00023474813536580755" c="0.00013097149679142903" d="5.71722684699445e-06" /> - <width sOffset="67.432006564054035" a="3.8303920766890753" b="0.00029787793801108541" c="2.9222454510964149e-05" d="-1.3566645022569966e-06" /> - <width sOffset="76.848872806573439" a="3.8346556235590654" b="0.00048732950942386973" c="-8.8750498037738748e-06" d="-1.3228926354524072e-06" /> - <width sOffset="82.339889462022398" a="3.8368449444934098" b="0.00027020276191248719" c="-0.00012777083594099915" d="3.8715539595584224e-06" /> - <width sOffset="82.574983228711773" a="3.8369014560067436" b="0.00021076843937579254" c="-0.00010918023836849964" d="5.2513427935793474e-06" /> - <width sOffset="86.962773948020669" a="3.836167865528032" b="-0.00044404393518673695" c="-4.0813753772707734e-05" d="5.2483836606465894e-06" /> - <width sOffset="96.165011258538669" a="3.8327153470733348" b="0.00013811820021048516" c="3.6532770618425946e-05" d="-9.2297442447787954e-07" /> - <width sOffset="97.076675089467898" a="3.8328709286080569" b="0.00020242807364026451" c="3.6232018334225917e-05" d="-1.003052260171312e-06" /> - <width sOffset="107.19057623091513" a="3.8375867566128044" b="0.00062751253171702413" c="2.8402470592652421e-06" d="-9.4800589841544327e-07" /> - <width sOffset="117.30447737236236" a="3.8432431180717996" b="0.00039404708412804081" c="-3.3602070664513e-05" d="1.9400146227646914e-07" /> - <width sOffset="120.71684018022776" a="3.8442041882981073" b="0.00017149915880415942" c="-0.00078000908491341627" d="9.6427064772174349e-05" /> - <width sOffset="126.14062369093304" a="3.8375738024614794" b="0.00022020691435632064" c="0.00016756007916585126" d="-1.8075050619538897e-05" /> - <width sOffset="127.41837851380959" a="3.838091034098305" b="0.0005598772181448021" c="9.3492715644111712e-05" d="-2.0553682930719342e-05" /> - <width sOffset="131.53397496135764" a="3.8405460469253647" b="0.0002850106805343733" c="-0.00022645516043560642" d="2.8761923159190951e-05" /> - <width sOffset="136.374683749924" a="3.8398817557538383" b="0.00011449168767412612" c="0.0024285189053548364" d="-0.00084652936090518882" /> - <width sOffset="136.95696989316704" a="3.8406047005450423" b="0.0020816119979163812" c="0.0013844169105628463" d="-0.00094042759172243339" /> - <width sOffset="138.16109908142542" a="3.8434766418055624" b="0.0013249912612038287" c="-3.8443638925377975e-05" d="-4.7166918530765488e-05" /> - <width sOffset="143.78533821118467" a="3.8413213657274872" b="-0.0035834023855137887" c="-0.00042473138859318212" d="4.4545932546274645e-05" /> - <width sOffset="147.64618079670399" a="3.8237189463873094" b="-0.0048710253440855033" c="8.9922978200552932e-05" d="4.4161230363470093e-05" /> - <width sOffset="150.32373940393782" a="3.8121689082762513" b="-0.0034396592667289543" c="0.0003675673286050998" d="1.1784990729935478e-05" /> - <width sOffset="155.53326452586967" a="3.805891569183613" b="0.001349547162085344" c="0.00032893299974415193" d="-1.2647052599105562e-05" /> - <width sOffset="157.76008193815122" a="3.8103881988509762" b="0.0026263552065239511" c="0.00024446539001559916" d="-1.3090911486716431e-05" /> - <width sOffset="167.87398307959845" a="3.8484141572816224" b="0.0035541056454568105" c="-0.00013574109347911997" d="-2.140476637972121e-05" /> - <width sOffset="169.28774459846167" a="3.8531070226321606" b="0.0030419480676941351" c="-0.00054163069778477633" d="2.0094715425380892e-05" /> - <width sOffset="175.41219253699828" a="3.856037503455493" b="-0.0013312401965704422" c="6.1781241932742662e-05" d="1.9797481004307965e-05" /> - <width sOffset="177.98788422104568" a="3.8533567993752627" b="-0.00061896072240302802" c="0.00021574654270428465" d="1.886217594472422e-05" /> - <width sOffset="181.10273905364321" a="3.8540921085703399" b="0.001274098236197257" c="1.2646501326773078e-06" d="-8.9620481991818554e-06" /> - <width sOffset="188.1017853624929" a="3.8599988058093055" b="-2.5261208755049326e-05" c="-0.00018498964876170697" d="-9.0142450940088654e-06" /> - <width sOffset="188.99684278880497" a="3.8598215315141688" b="-0.00037807861350945467" c="-7.3646085860417523e-05" d="1.4099057261888298e-06" /> - <width sOffset="198.21568650394013" a="3.8511817547230534" b="-0.0013764708151845807" c="-3.1406567257457882e-05" d="1.035412736171677e-06" /> - <width sOffset="203.07722243618261" a="3.8438666819409288" b="-0.0016084246404846764" c="-2.0577456596226746e-06" d="3.4086599504350936e-06" /> - <width sOffset="208.32958764538731" a="3.8358557912777993" b="-0.001347933117943761" c="5.3170412546852021e-05" d="3.6491180397124837e-06" /> - <width sOffset="208.61538075748152" a="3.8354749892953759" b="-0.001316647487857309" c="2.2231522988366143e-05" d="-2.1137072147738522e-07" /> - <width sOffset="218.44348878683454" a="3.824481559183333" b="-0.0009409098453530473" c="1.3156391271441514e-05" d="7.7283271626708592e-07" /> - <width sOffset="220.76502737784207" a="3.8223777772874099" b="-0.00086732806342036629" c="-1.1192969417052811e-05" d="-7.4758257374555071e-07" /> - <width sOffset="223.98692764550904" a="3.8194421393751785" b="-0.00096273448544028717" c="-3.4301413279923165e-05" d="1.9894184878607449e-06" /> - <width sOffset="228.55738992828176" a="3.8145154068670157" b="-0.0011516094794576869" c="-7.853177924767375e-06" d="2.1426726391975393e-06" /> - <width sOffset="237.57217242415371" a="3.8050654169461477" b="-0.00077081760658479555" c="0.00011245901734780985" d="6.4697508670463446e-06" /> - <width sOffset="238.67129106972899" a="3.8043626449412047" b="-0.00050015842435440221" c="0.00011804373436606548" d="-3.2472071673628514e-06" /> - <width sOffset="245.94488942533755" a="3.8057202623354431" b="0.00070166424425201646" c="0.0010143466825761251" d="-4.855563608413761e-05" /> - <width sOffset="248.78519221117622" a="3.814783674497078" b="0.0052886261109703243" c="0.00061241067700485395" d="-5.1328261345290028e-05" /> - <width sOffset="251.7258340205037" a="3.834326156226691" b="0.007558822937046036" c="-0.0040284733959945543" d="0.00047412333090233257" /> - <width sOffset="257.21935951329783" a="3.8328801801645174" b="0.0062232316527910869" c="-0.00034077874003732208" d="-5.4364772283203428e-05" /> - <width sOffset="258.89909335262348" a="3.8421143885350846" b="0.0046182249338631498" c="-0.00060099217470033174" d="-4.8597667828326571e-05" /> - <width sOffset="261.82871916577744" a="3.8492639738760719" b="-0.00015443813377055975" c="-0.00021259880582032961" d="4.6119835505842824e-06" /> - <width sOffset="267.7641040713487" a="3.8418220739751572" b="-0.0021907257647973974" c="-0.00050191307054685697" d="4.2980450675739307e-05" /> - <width sOffset="269.01299449407065" a="3.8383869728799889" b="-0.0032432812731750344" c="-0.00035497397282635156" d="3.4033023661982439e-05" /> - <width sOffset="276.31694409266652" a="3.8090220977142533" b="-0.0029819567452594635" c="0.00025577886830676386" d="-7.8395317881963361e-06" /> - <width sOffset="278.22444139851848" a="3.8042102760266445" b="-0.0020917352313093137" c="0.00037639210800155851" d="-2.957812520871796e-05" /> - <width sOffset="279.12689563551783" a="3.8026073840062127" b="-0.0014846493000976952" c="0.00029367131333693888" d="-2.9254902637803174e-05" /> - <width sOffset="280.96153401007984" a="3.8006914020657643" b="-0.00070249502998615617" c="-0.00013144019327688612" d="2.1243239131254738e-05" /> - <width sOffset="289.24079677696511" a="3.7979213281436515" b="0.0014894786157035062" c="0.00039061392856474142" d="2.3677726959814716e-05" /> - <width sOffset="291.05170719835269" a="3.8020402332233854" b="0.0031371582522745694" c="-4.413808048206857e-05" d="-1.5181972555797961e-05" /> - <width sOffset="296.31205821764536" a="3.8151115303247405" b="0.0014124802332456531" c="-2.3141212277123306e-05" d="-3.2700425891663906e-06" /> - <width sOffset="299.3546979184124" a="3.8191028557479028" b="0.0011808406992423835" c="-5.4622833940915028e-05" d="-2.2104975849568711e-06" /> - <width sOffset="304.10799300861891" a="3.8232442053495781" b="0.00051173308720516312" c="-0.0001028969208094698" d="2.5589381989334951e-06" /> - <width sOffset="309.46859905985957" a="3.823424735164477" b="-0.00037084493476334865" c="-6.219661639526286e-05" d="2.4432432320584667e-06" /> - <width sOffset="315.05956512981868" a="3.8198341552149708" b="-0.0008372039793339294" c="-0.00017662076845982274" d="1.0667802087060552e-05" /> - <width sOffset="319.58250020130674" a="3.8134214580751422" b="-0.0017802007005404033" c="-2.8281334515549818e-05" d="9.6814869787509654e-06" /> - <width sOffset="323.15091722242198" a="3.8071487514953031" b="-0.001612199342630394" c="0.0013955665280267785" d="-0.00011440595455236747" /> - <width sOffset="329.69640134275403" a="3.8243039642348782" b="0.0019525104491496968" c="-0.00083071359149423755" d="-0.00012671555414188657" /> - <width sOffset="330.74672526917016" a="3.8252914808686471" b="-0.00021189660140881835" c="-0.00014545271287161267" d="2.8931554505353822e-05" /> - <width sOffset="331.28357490734413" a="3.8251402800961891" b="-0.00034305419802758421" c="-0.00021661553319225757" d="1.4385997452516519e-05" /> - <width sOffset="339.8103024842012" a="3.8153845040615177" b="-0.00089929205511679058" c="0.00016166254932719202" d="1.1690387604245119e-05" /> - <width sOffset="342.10266274329103" a="3.8143133500133013" b="2.6181550882452514e-05" c="1.5386173190067683e-05" d="-2.8816843151884592e-06" /> - <width sOffset="349.92420362564849" a="3.8140805322119409" b="-0.0002620053807232968" c="-5.1569613863293754e-05" d="-2.8520737207169839e-06" /> - <width sOffset="353.07291114998941" a="3.8126552398544042" b="-0.00067159009203637506" c="6.4202930040340293e-06" d="2.6710127183175687e-07" /> - <width sOffset="360.03810476709566" a="3.8083792143133088" b="-0.00054327853343128191" c="1.0839894759394424e-05" d="3.675847225494449e-07" /> - <width sOffset="370.15200590854283" a="3.8043736613956813" b="-0.00021120946298902683" c="1.9039893311281858e-05" d="2.6924907446238542e-07" /> - <width sOffset="370.17268119417577" a="3.804369302721021" b="-0.00021042180735706212" c="0.00015713183818394187" d="-6.5577653440057621e-06" /> - <width sOffset="378.04999795205765" a="3.8092566438232662" b="0.0010443630044067297" c="2.5975273818908155e-05" d="-6.8301476548577838e-06" /> - <width sOffset="380.26590704999012" a="3.8116240858618564" b="0.0010588674338520309" c="-1.8927495930967249e-05" d="-7.0164221315917942e-06" /> - <width sOffset="384.74336110338345" a="3.8153558559979528" b="0.0004673862835735857" c="-0.00037437744198285001" d="1.3069990729502253e-05" /> - <width sOffset="385.36542907303499" a="3.8155048759531383" b="1.6782879567690779e-05" c="-0.00025818333747481691" d="1.0120306959128505e-05" /> - <width sOffset="390.37980819143729" a="3.8103732542364428" b="-0.0018090804606484042" c="-0.00010345449739515495" d="1.0300305504323231e-05" /> - <width sOffset="400.49370933288458" a="3.7921502243027749" b="-0.00074085204257083636" c="0.00020937603487157977" d="1.049751318087931e-05" /> - <width sOffset="404.7340595700349" a="3.7935738241485852" b="0.0016010572116060364" c="-1.9555534573242272e-05" d="-3.655695322128014e-06" /> - <width sOffset="410.60761047433175" a="3.8015623256845554" b="0.00099298724166249175" c="-8.6757775339075898e-05" d="-2.3433706875020376e-06" /> - <width sOffset="412.80529627760484" a="3.8033007014075624" b="0.00057770038313398147" c="-0.00018364208066006286" d="1.7984322154457068e-05" /> - <width sOffset="420.42665927046585" a="3.8049981306486664" b="0.00091236190595586348" c="0.005099006062884227" d="-0.001093858488779227" /> - <width sOffset="420.72151161577904" a="3.8056823998045095" b="0.0036339764008760664" c="0.0041431573117398229" d="-0.0010960333398706808" /> - <width sOffset="423.52746085410115" a="3.8242858717943484" b="0.00099658860860664606" c="-0.00020834638434919105" d="4.3508171500300981e-06" /> - <width sOffset="423.68451361185021" a="3.8244372666557886" b="0.00093146780630345093" c="-0.00010871106902247245" d="4.5599012114321871e-06" /> - <width sOffset="430.83541275722621" a="3.8272065102671649" b="7.6220575880541711e-05" c="-1.4097273018761215e-05" d="4.2695282175400738e-06" /> - <width sOffset="437.9540523821131" a="3.8285748953288374" b="0.00052458917617601323" c="-6.5441560722223778e-05" d="1.2089438855856693e-07" /> - <width sOffset="440.94931389867338" a="3.8295623108526744" b="0.00013581384457179036" c="-6.4022014954327196e-05" d="1.7187201501047972e-07" /> - <width sOffset="451.06321504012067" a="3.8245648550434517" b="-0.0011064679367231486" c="-5.8113297514897542e-05" d="1.5802396120128171e-07" /> - <width sOffset="455.56040327824155" a="3.8184279092827715" b="-0.0016195728502523153" c="2.6856577757602572e-05" d="3.8251909084834092e-06" /> - <width sOffset="457.35604152075791" a="3.8156284831805971" b="-0.0014861225733236037" c="3.97246711914404e-06" d="9.3540696381932335e-07" /> - <width sOffset="461.17711618156784" a="3.8100600847018171" b="-0.0014147918452284099" c="1.7609520970269454e-05" d="1.3665576231733776e-06" /> - <width sOffset="471.29101732301513" a="3.7989661025421473" b="-0.00063923031442166857" c="5.6068075421806447e-05" d="1.5683790328664938e-06" /> - <width sOffset="475.1608006098736" a="3.797422940593945" b="-0.00013482723620810284" c="0.00028259632543876126" d="-7.1382193979735488e-06" /> - <width sOffset="476.75979581802994" a="3.7979007076291884" b="0.00071416041290757286" c="0.0073779631892589275" d="-0.0012691371969492942" /> - <width sOffset="480.55327908601998" a="3.837500128608105" b="0.0018999054648007722" c="-8.3400709516427186e-05" d="-1.2023595783983014e-06" /> - <width sOffset="481.4049184644623" a="3.839056930567696" b="0.0017552346311707483" c="-8.4057120516503039e-05" d="-6.1888636478496089e-07" /> - <width sOffset="491.51881960590958" a="3.8475706377923125" b="-0.00013497569165578523" c="-0.00010237373985985309" d="-6.0783875706903172e-07" /> - <width sOffset="495.50707361311265" a="3.8453653863551116" b="-0.00098056580796793678" c="-0.0003421735743975641" d="2.6858479838755602e-05" /> - <width sOffset="498.48925431305065" a="3.8401104082470701" b="-0.002304822914209209" c="0.00072439093657348272" d="-0.00022551868240833504" /> - <width sOffset="500.60710063373654" a="3.8363360098540742" b="-0.0022710641520318374" c="-0.00023742088002406354" d="2.3613005453414283e-05" /> - <width sOffset="501.63272074735676" a="3.8337824933640547" b="-0.0026835560902241499" c="-0.00016731626971109887" d="2.1146196267293942e-05" /> - <width sOffset="508.81578831042816" a="3.8137106228552655" b="-0.0018140376445054905" c="8.609323936505526e-05" d="-1.3855767344511607e-06" /> - <width sOffset="511.74662188880393" a="3.8090986206550896" b="-0.001345093151577376" c="7.4599657819827779e-05" d="-1.653684615124305e-06" /> - <width sOffset="521.86052303025122" a="3.8014145171667719" b="-0.00034357716336347191" c="2.4261269998904172e-05" d="-1.2728061838548151e-06" /> - <width sOffset="525.80334852599856" a="3.800358998759501" b="-0.00021162190498464077" c="0.0007907560397839192" d="-0.00013754086640654093" /> - <width sOffset="526.99805638339819" a="3.8010002997484529" b="0.0010888756822690284" c="0.00045038969933113059" d="-0.0001393116262780459" /> - <width sOffset="530.70436398871971" a="3.8041301808816828" b="-0.0013136115460677872" c="-0.00017628561321661793" d="2.6444933756472696e-05" /> - <width sOffset="531.97442417169839" a="3.8022316342011351" b="-0.0016334269936735812" c="-8.3181454200208994e-05" d="2.264601311751469e-05" /> - <width sOffset="535.34835579860635" a="3.7966434365394965" b="-0.0014213572012431693" c="0.00032286533298226126" d="-3.0468181843835868e-05" /> - <width sOffset="542.08832531314567" a="3.7924017138544883" b="-0.0012214037685604629" c="-0.00029166032795314978" d="-3.0719502498691591e-05" /> - <width sOffset="543.06520044366493" a="3.7909015905547792" b="-0.0018791806936586429" c="-0.00022754681622670089" d="-3.3204139299584525e-06" /> - <width sOffset="545.52189518056468" a="3.7848624609671209" b="-0.0030573263962796779" c="-0.0035234087077263584" d="0.00071200698541798359" /> - <width sOffset="549.26488479658224" a="3.7613931255715185" b="0.0004921014115772869" c="0.00012615075659042527" d="-6.2403550047867355e-06" /> - <width sOffset="552.20222645459285" a="3.7637688699774978" b="0.0010716722566866182" c="7.1215357460887118e-05" d="-6.1344847560609089e-06" /> - <width sOffset="562.31612759604002" a="3.7755458482717774" b="0.00062969475447601734" c="-0.00011073053621120778" d="-6.5616240723797368e-06" /> - <width sOffset="562.64364654062388" a="3.7757399767906614" b="0.00055505048792606996" c="-0.0017585848909314737" d="0.00025585194062225519" /> - <width sOffset="567.35960472118211" a="3.7660809953696557" b="0.0010388671235483531" c="0.00077775964979847506" d="-3.1402697525347773e-05" /> - <width sOffset="568.05565147491347" a="3.7671703156320078" b="0.0020759392436503076" c="0.0011647855781875937" d="-6.9499285624894877e-05" /> - <width sOffset="572.43002873748731" a="3.7927222329926256" b="0.0082767190639606459" c="0.00027651619694869269" d="-7.2257804280709601e-05" /> - <width sOffset="576.03031571872248" a="3.822732951755758" b="0.0074579630323298634" c="-0.00028455348236332289" d="-2.9932118967515449e-05" /> - <width sOffset="581.7689000244867" a="3.8505038193838041" b="0.0012349794932387888" c="-0.00013713032305200386" d="5.1826611037542976e-06" /> - <width sOffset="582.54392987893448" a="3.8513810078412414" b="0.0010317585315750991" c="-0.00010768672951986803" d="6.3793839144717492e-06" /> - <width sOffset="592.65783102038176" a="3.8574005907371713" b="0.00081115326751048707" c="8.3193707883550986e-05" d="7.2625258440097837e-06" /> - <width sOffset="597.33684819741984" a="3.8637613309061418" b="0.0020666826743299615" c="0.00026459974166966602" d="-2.9258505332444736e-05" /> - <width sOffset="599.5004416311906" a="3.8691750871166928" b="0.0028007660258009574" c="5.0086631541686373e-05" d="-3.200153702678059e-05" /> - <width sOffset="602.77173216182894" a="3.8777529165166165" b="0.0021010837213617031" c="-0.00025843295169909438" d="-3.0937632041409314e-05" /> - <width sOffset="603.34191560466024" a="3.8788611657807133" b="0.001776201018533332" c="-7.1271098635183885e-05" d="1.8970885111084332e-08" /> - <width sOffset="612.3555765140851" a="3.8890946347208919" b="0.00049599791737225886" c="-0.0041958153511854838" d="0.00064147393702150394" /> - <width sOffset="612.88563330327622" a="3.8882742160823103" b="-0.0034113569723366885" c="-0.003173932171817025" d="0.00064138502031439498" /> - <width sOffset="616.4590908912943" a="3.8648214732236497" b="-0.0015244921801225778" c="8.1780022512304717e-05" d="4.6949791767421814e-07" /> - <width sOffset="622.99953444472339" a="3.8584803126818192" b="-0.00039448523473129687" c="8.4628525042315726e-05" d="1.682386492452e-07" /> - <width sOffset="632.6110286384644" a="3.8626561548093816" b="0.001278953992847019" c="0.00042779723101499711" d="-2.4949425670549411e-05" /> - <width sOffset="633.11343558617057" a="3.8634035277185612" b="0.0016899179362226582" c="0.00039558799887886545" d="-2.5246204424895829e-05" /> - <width sOffset="637.96085345463041" a="3.8780149859317135" b="0.0037454135696190966" c="0.00051382097269437568" d="-4.856306105351034e-05" /> - <width sOffset="643.22733672761785" a="3.9048977789845578" b="0.005116659928203867" c="-0.00025072700940250944" d="-4.8323331116805312e-05" /> - <width sOffset="643.64332953349469" a="3.906979405713435" b="0.004882971604447988" c="-0.00028781258411701585" d="-5.9580362872505477e-06" /> - <width sOffset="653.34123786906503" a="3.9218311864801425" b="-0.0023804381929639273" c="-0.00046384028439931479" d="-5.8264604434351003e-06" /> - <width sOffset="653.49067553989653" a="3.9214650815932561" b="-0.0025194589593007196" c="-0.00058558648829757157" d="5.3682896063581684e-05" /> - <width sOffset="658.36778030929509" a="3.901476188949883" b="-0.0044006638645876627" c="0.0012339634909526022" d="-0.00015925854187068392" /> - <width sOffset="658.62139536642928" a="3.9004368856687561" b="-0.0038054912356462129" c="-0.00069005892068492707" d="0.00013961522929088649" /> - <width sOffset="661.79188735832554" a="3.8858846365033335" b="-0.0039708987898761918" c="0.0031979417965778251" d="-0.00080333655539011842" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.8295771002070649" b="-0.00056102710685798575" c="-2.2077724498259595e-05" d="7.6365973229472906e-07" /> - <width sOffset="6.0515648164429194" a="3.8255427302927139" b="-0.00074433771875739125" c="-5.0241120677926777e-06" d="1.402513667018203e-06" /> - <width sOffset="14.042555241011343" a="3.8199895789778524" b="-0.00055595654653334964" c="-1.1101228402902146e-05" d="6.411816844087179e-07" /> - <width sOffset="16.165465957890149" a="3.8187654368663702" b="-0.00059442144352922423" c="-1.0308443089735404e-05" d="1.0628802998471765e-06" /> - <width sOffset="26.27936709933735" a="3.8127986707678621" b="-0.0004767693377387939" c="2.5388481361978748e-05" d="-1.0699230288585177e-06" /> - <width sOffset="28.405998294534584" a="3.8118892888330542" b="-0.00038330183886470422" c="5.523921439685459e-05" d="-1.2405577845084758e-07" /> - <width sOffset="29.341727554913632" a="3.8115788873084098" b="-0.00028024980611932038" c="0.00022215077816529349" d="-8.0893987625542589e-06" /> - <width sOffset="36.393268240784579" a="3.8178125645806502" b="0.0016460434172412206" c="5.8872694456066601e-05" d="-7.920191933053e-06" /> - <width sOffset="45.733902336705768" a="3.8318696136391277" b="0.00067281047388822058" c="-0.0028094935193567357" d="0.00036412833935454329" /> - <width sOffset="46.507169382231808" a="3.8308783234246468" b="-0.0030189842332687799" c="-0.0019655626578419559" d="0.00036419010259681182" /> - <width sOffset="50.425168454793351" a="3.810781034153774" b="-0.0016493922689084436" c="0.0024741991845379872" d="0.00037271421399935259" /> - <width sOffset="50.731057795072246" a="3.810518676879417" b="-3.1107263043377355e-05" c="9.5951841711588724e-05" d="-4.0262850460499115e-06" /> - <width sOffset="56.621070523679037" a="3.812841517775988" b="0.0006801652135058657" c="2.6514961348470912e-05" d="-3.8572498807641582e-06" /> - <width sOffset="66.734971665126267" a="3.8184423229310545" b="3.2818809369005841e-05" c="-9.0722354295112782e-05" d="-3.7857561798592613e-06" /> - <width sOffset="67.432006564054035" a="3.8184198385534374" b="-9.917250055296036e-05" c="7.1806801700265591e-06" d="3.2881350302948985e-06" /> - <width sOffset="68.449443728278681" a="3.8183298332096283" b="-7.4349299901166634e-05" c="-2.6903561534684213e-05" d="1.0032310375481868e-06" /> - <width sOffset="76.848872806573439" a="3.8164017820864626" b="-0.00031396333444523702" c="-1.3798639374406863e-06" d="1.0381929432924904e-06" /> - <width sOffset="82.574983228711773" a="3.8147536702869176" b="-0.00022764396959707746" c="5.9449537902256522e-07" d="-3.4159585670921692e-07" /> - <width sOffset="85.062743272884774" a="3.8141857665947621" b="-0.00023102840496684685" c="-3.4724546731075819e-05" d="5.4501068912380699e-07" /> - <width sOffset="86.962773948020669" a="3.8136251842864621" b="-0.00035708115655096802" c="-3.2355047881131417e-05" d="5.5139846730463209e-07" /> - <width sOffset="97.076675089467898" a="3.8072745260496603" b="-0.00084234337220961497" c="-1.763277538052887e-05" d="6.2364072532442895e-07" /> - <width sOffset="107.19057623091513" a="3.7975966686823313" b="-0.0010076371729274059" c="-2.0163982697405167e-06" d="6.3689744614541019e-07" /> - <width sOffset="117.30447737236236" a="3.7878581758151602" b="-0.00085297785553202997" c="1.5426644443353764e-05" d="3.2854713361850943e-07" /> - <width sOffset="119.17089326755311" a="3.7863220393379811" b="-0.00079195929674037518" c="-3.1503452052729179e-05" d="1.3614481477742064e-06" /> - <width sOffset="127.41837851380959" a="3.7784112455469461" b="-0.0010337865627469281" c="1.3308691603985072e-06" d="1.3238851859797599e-06" /> - <width sOffset="136.374683749924" a="3.7702102173994305" b="-0.00069135926881412364" c="-0.0022003875545273032" d="0.00087661516926314383" /> - <width sOffset="137.53227965525681" a="3.7678211365031049" b="-0.0022616111627635819" c="0.00084415798164610772" d="0.00087654094578091092" /> - <width sOffset="138.16109908142542" a="3.7669507298242313" b="-0.00016017594286511227" c="0.00052338751684423055" d="-1.6719727411503892e-05" /> - <width sOffset="139.60590776739727" a="3.7677614364276426" b="0.0012475078226335768" c="0.0006794533653297247" d="-2.8790490826558834e-05" /> - <width sOffset="147.64618079670399" a="3.806751201554019" b="0.0065899195789695247" c="-1.5367211675889569e-05" d="-2.8841153009779885e-05" /> - <width sOffset="155.53326452586967" a="3.8436203346286719" b="0.00096522855069167222" c="-0.00047496803290871133" d="-4.409109680698201e-06" /> - <width sOffset="157.41511874519475" a="3.8437253301288807" b="-0.00086925557924729746" c="-0.00024221755337246214" d="7.6879616719181874e-06" /> - <width sOffset="157.76008193815122" a="3.8433969607502587" b="-0.0010336232672616091" c="-0.00023181225811729834" d="8.0607199553884911e-06" /> - <width sOffset="167.87398307959845" a="3.8175699970636048" b="-0.0032490585658385323" c="1.5309984001484707e-05" d="8.0080992766435061e-06" /> - <width sOffset="171.66857733534718" a="3.8058991334979355" b="-0.0027869436544344043" c="0.00022925320351096685" d="1.7528253493351683e-06" /> - <width sOffset="175.41219253699828" a="3.7987707561849859" b="-0.00099677637258118465" c="1.4734090051820911e-05" d="2.0500597704101008e-06" /> - <width sOffset="177.98788422104568" a="3.7963361469359076" b="-0.00088007398250507024" c="3.3871891980201264e-05" d="2.8771783363198078e-06" /> - <width sOffset="188.1017853624929" a="3.7938765718233869" b="0.00068800826707385147" c="0.00012099754628132099" d="2.9036516059316561e-06" /> - <width sOffset="188.99684278880497" a="3.7945913953088342" b="0.00091158635984073353" c="-6.7540128614525409e-06" d="-7.5204992140623672e-06" /> - <width sOffset="191.83769123946487" a="3.7969541450052597" b="0.00069113134590640952" c="6.0786195439925959e-05" d="-2.51978907375073e-06" /> - <width sOffset="198.21568650394013" a="3.8031811307549903" b="0.001159013313555581" c="1.3864742959116134e-05" d="-2.5049521973463474e-06" /> - <width sOffset="208.32958764538731" a="3.8137299892897008" b="0.00067076442499223012" c="-6.2186592619972047e-05" d="-2.5095954089724907e-06" /> - <width sOffset="208.61538075748152" a="3.8139165513028672" b="0.00063460449135443716" c="-3.0270699902939258e-05" d="1.3508933541654551e-06" /> - <width sOffset="218.44348878683454" a="3.8185120358270903" b="0.00043105236074484157" c="8.2624342805846905e-06" d="1.4870069539655422e-06" /> - <width sOffset="223.98692764550904" a="3.8214087595752924" b="0.00065974285618917213" c="4.8874365055095385e-05" d="-1.2499941076499068e-06" /> - <width sOffset="228.55738992828176" a="3.825325691522552" b="0.0010281658890615665" c="2.9178303455025018e-05" d="-1.4888258763635384e-06" /> - <width sOffset="228.96245503278797" a="3.8257468542053159" b="0.0010510712645877226" c="5.4263486106467977e-05" d="-1.9307543903302608e-06" /> - <width sOffset="238.67129106972899" a="3.8392995228424285" b="0.0015587544447598276" c="-4.6482482977108258e-06" d="-1.7727752134825466e-06" /> - <width sOffset="245.94488942533755" a="3.8497091758090107" b="0.0012097682050272889" c="-0.0010104912032788055" d="4.3535653703166409e-05" /> - <width sOffset="248.78519221117622" a="3.8459908879178708" b="-0.0034767856160210029" c="-0.00063896495089826107" d="4.2743602759690841e-05" /> - <width sOffset="258.89909335262348" a="3.7896875259301792" b="-0.0032847851734025104" c="0.00065582820161710193" d="4.4155517331076218e-05" /> - <width sOffset="261.82871916577744" a="3.7868033677356916" b="0.0016947989402216204" c="0.00022839331644902645" d="-9.0541340478278441e-06" /> - <width sOffset="264.80202114016743" a="3.7936236406232062" b="0.0028128336525079936" c="0.00018521506035469332" d="-1.0560674479986306e-05" /> - <width sOffset="269.01299449407065" a="3.8079641285896959" b="0.0038109099841749008" c="4.8240529521954685e-05" d="-1.0825573420201532e-05" /> - <width sOffset="278.22444139851848" a="3.8387001200015303" b="0.001943965932897816" c="-0.00041639195178219332" d="1.0913020001556784e-05" /> - <width sOffset="280.12689074722653" a="3.8409665059631202" b="0.00047812966059825827" c="-0.00031401291428660895" d="1.2414188912616817e-05" /> - <width sOffset="289.24079677696511" a="3.8286391164687124" b="-0.0021521488602458559" c="2.3613419863977779e-05" d="1.2566320811795298e-05" /> - <width sOffset="296.31205821764536" a="3.8190446751945126" b="6.6855825680408373e-05" c="2.9608256655513328e-05" d="6.5439084517296928e-07" /> - <width sOffset="299.3546979184124" a="3.8195406291425038" b="0.00026520471670855015" c="3.1008437928976772e-05" d="-2.1916718766702017e-07" /> - <width sOffset="309.46859905985957" a="3.8251680256088187" b="0.00082518077828965929" c="2.4075574977621801e-05" d="-2.7805017344549621e-07" /> - <width sOffset="315.05956512981868" a="3.830485565248833" b="0.0010683175948880649" c="0.00017481628981899495" d="-8.5026090284323805e-06" /> - <width sOffset="319.58250020130674" a="3.8381069955464002" b="0.0021278709208881726" c="6.1488017833607493e-05" d="-8.4704437342833231e-06" /> - <width sOffset="329.69640134275403" a="3.8571545513412664" b="0.00077228800237075419" c="-0.00018560617342469791" d="-1.2076519506939726e-05" /> - <width sOffset="331.28357490734413" a="3.8578644569203124" b="9.1842975891224824e-05" c="-0.0001253502669504302" d="2.4690375352686986e-06" /> - <width sOffset="332.54099685887718" a="3.8577866584869756" b="-0.000211681919149858" c="-0.00010719095063560663" d="3.2113833966871324e-06" /> - <width sOffset="339.8103024842012" a="3.8518171977886806" b="-0.0012609939671847062" c="-3.4850905219451867e-05" d="3.2772032987404911e-06" /> - <width sOffset="349.92420362564849" a="3.838889162449143" b="-0.00096026601583623975" c="6.4734020429812458e-05" d="3.4683864421832177e-06" /> - <width sOffset="353.07291114998941" a="3.836615636008478" b="-0.00044944853563702315" c="1.256587907280957e-05" d="3.4921144963414244e-07" /> - <width sOffset="360.03810476709566" a="3.8342127616586921" b="-0.0002235761229975447" c="1.7847996523203759e-05" d="3.2128031874953614e-07" /> - <width sOffset="366.33027582222871" a="3.8335926459713372" b="3.9189000055792807e-05" c="3.6334856278532143e-06" d="-2.7930947457520258e-07" /> - <width sOffset="370.15200590854283" a="3.833779894362237" b="5.4722937881488613e-05" c="6.0408913320963741e-07" d="-2.5243883186583888e-07" /> - <width sOffset="370.17268119417577" a="3.8337810260306036" b="5.474759345351884e-05" c="-0.00013748681272817459" d="6.5747820844572876e-06" /> - <width sOffset="380.26590704999012" a="3.827087766734159" b="-0.00071124088065446312" c="6.2159338529898245e-05" d="6.4450051721630367e-06" /> - <width sOffset="384.74336110338345" a="3.8257278813460394" b="0.00023301084039062121" c="0.0004099338050449526" d="-1.3641407694239558e-05" /> - <width sOffset="390.37980819143729" a="3.837621911159018" b="0.0035540076745223764" c="0.00018145140627810432" d="-1.3542017021474181e-05" /> - <width sOffset="400.49370933288458" a="3.8781175955632703" b="0.0030686916055964876" c="-0.000227624419583107" d="-1.3587190992846642e-05" /> - <width sOffset="402.19960278275278" a="3.882622602384854" b="0.0021734664617577" c="-0.00027634409287678545" d="-1.4730403166391795e-05" /> - <width sOffset="404.7340595700349" a="3.8861162597733157" b="0.00048884117632091431" c="-2.587383676754325e-05" d="-5.7719466341179499e-07" /> - <width sOffset="410.60761047433175" a="3.8879779256139178" b="0.00012516135779728322" c="-3.7261345010225326e-05" d="-4.457691569240174e-07" /> - <width sOffset="420.05844145377785" a="3.8854564002699763" b="-0.00069858589414964999" c="-2.7662954613403602e-05" d="1.0199949655574938e-06" /> - <width sOffset="420.72151161577904" a="3.8849813238127662" b="-0.00073392549454863725" c="-3.7365441335459991e-05" d="3.194846086950811e-06" /> - <width sOffset="423.68451361185021" a="3.882561764231073" b="-0.00087120693761101836" c="-0.00010655182714346012" d="2.9857619003373484e-06" /> - <width sOffset="430.83541275722621" a="3.8719750704148974" b="-0.0019370556606370702" c="-4.5910806376699178e-05" d="2.6597867312390223e-06" /> - <width sOffset="440.94931389867338" a="3.8504393305174687" b="-0.0020495136706298409" c="3.4897796941131496e-05" d="2.660168187016736e-06" /> - <width sOffset="442.83389657919167" a="3.8467186028972673" b="-0.0018896341291975891" c="3.8313131590619441e-05" d="2.5034120141277781e-06" /> - <width sOffset="451.06321504012067" a="3.8351579913533977" b="-0.00075044638751241603" c="0.00010119837743533821" d="2.360076889388124e-06" /> - <width sOffset="455.56040327824155" a="3.83404445884057" b="0.00030296547362837267" c="5.0201622744879219e-05" d="-1.3070900576544507e-06" /> - <width sOffset="458.6220115239845" a="3.8354050719542165" b="0.00057360506742511067" c="5.5581020187118885e-05" d="-1.8652961242388162e-06" /> - <width sOffset="461.17711618156784" a="3.8372024416571455" b="0.00082110262259423689" c="4.2989067967772454e-05" d="-1.7982340111878755e-06" /> - <width sOffset="471.29101732301513" a="3.848044004181018" b="0.0011388475440229241" c="-1.6367275669616618e-05" d="-8.1174334091636797e-07" /> - <width sOffset="475.1608006098736" a="3.8521589525452611" b="0.00097570381246145919" c="-0.00023411147722197747" d="7.8948550902788889e-06" /> - <width sOffset="481.4049184644623" a="3.8510456058768576" b="-0.0010244977976526703" c="-8.8601319838645817e-05" d="7.3264082096831375e-06" /> - <width sOffset="491.51881960590958" a="3.839200435533392" b="-0.00056843099216787984" c="0.0001338857751565334" d="7.715682883185415e-06" /> - <width sOffset="495.50707361311265" a="3.8395524645599526" b="0.00086769085780281766" c="0.00045872927315020558" d="-1.9750635712656248e-05" /> - <width sOffset="501.63272074735676" a="3.857540981697904" b="0.0042643761059564123" c="9.4635859271328317e-05" d="-1.9905045419774878e-05" /> - <width sOffset="508.81578831042816" a="3.88567793371148" b="0.002542838031579325" c="-0.00013202783862382934" d="2.6267275819232801e-06" /> - <width sOffset="511.74662188880393" a="3.8920626064651382" b="0.0018366238653450958" c="-0.00010690876406571684" d="2.8490554471827544e-06" /> - <width sOffset="513.20607132836722" a="3.8945242078737126" b="0.0015427733953728162" c="-0.00019905893867443094" d="8.1362627766903674e-06" /> - <width sOffset="521.86052303025122" a="3.8982406866221297" b="-7.4511668020079769e-05" c="1.2260635285000935e-05" d="8.3813627654699325e-06" /> - <width sOffset="526.99805638339819" a="3.8993180146770836" b="0.00071512650362877384" c="-1.1157893434340645e-05" d="1.0152122636331281e-05" /> - <width sOffset="527.48038389357748" a="3.899661483247995" b="0.00071144834987442863" c="-4.563812382574735e-05" d="4.5577970748722237e-06" /> - <width sOffset="531.97442417169839" a="3.902350716352752" b="0.00057740246796682423" c="1.4051278631163228e-05" d="4.3577963184265171e-06" /> - <width sOffset="542.08832531314567" a="3.9141362333456193" b="0.0021989189351791245" c="0.00014476719134276354" d="4.6082951641982271e-06" /> - <width sOffset="545.52189518056468" a="3.9235796363322053" b="0.0033560426003007935" c="0.0034636260628118053" d="-0.00071071910418378222" /> - <width sOffset="549.26488479658224" a="3.9473970456721137" b="-0.0005867873085685846" c="-0.00017147182324605748" d="7.5282362390126285e-06" /> - <width sOffset="552.20222645459285" a="3.9443847865380683" b="-0.0013992696426236883" c="-0.00010575101763977037" d="7.3374443490347674e-06" /> - <width sOffset="562.31612759604002" a="3.9270063686892951" b="-0.0012867168404028528" c="0.00011673601057082651" d="7.3623289471127129e-06" /> - <width sOffset="562.64364654062388" a="3.9265977253202191" b="-0.0012078810889902805" c="0.001765377103337711" d="-0.00025505123574752345" /> - <width sOffset="565.82227895150834" a="3.9324039475047394" b="0.0022842020920360116" c="-0.00068947220205597937" d="-0.00025124572233563183" /> - <width sOffset="567.35960472118211" a="3.9333731883179963" b="-0.0016170448772686518" c="-0.00076479515601998336" d="3.6008915810943206e-05" /> - <width sOffset="572.43002873748731" a="3.910205811542014" b="-0.0065954351072979641" c="-0.00020789815122662059" d="3.6309580391940536e-05" /> - <width sOffset="579.60667009462838" a="3.865586117739193" b="-0.003969170427596572" c="0.0005492918561608122" d="3.2427565361687587e-05" /> - <width sOffset="581.7689000244867" a="3.8598997372673649" b="-0.0011389600606562503" c="9.6912289543536957e-05" d="-2.6872147091325181e-06" /> - <width sOffset="582.54392987893448" a="3.8590739706448627" b="-0.00099358262339694888" c="8.9660051819968271e-05" d="-2.8818495493906047e-06" /> - <width sOffset="592.65783102038176" a="3.8552149410233576" b="-6.431860728150048e-05" c="9.031554895574526e-07" d="-2.4864041018540269e-06" /> - <width sOffset="599.5004416311906" a="3.8540205264734197" b="-0.00040120889070088318" c="-2.5534749710206476e-05" d="2.5662759241522502e-07" /> - <width sOffset="602.77173216182894" a="3.8524437833585834" b="-0.00056003328186400169" c="-2.841073509732615e-05" d="-7.9981007651323036e-07" /> - <width sOffset="612.88563330327622" a="3.8430460473792531" b="-0.0013801601228540378" c="-5.4231083411454619e-05" d="-7.8609428011001781e-07" /> - <width sOffset="615.16980109816279" a="3.839601215345422" b="-0.0016402100692628849" c="-7.6599246616951852e-05" d="1.2574283943059749e-06" /> - <width sOffset="622.99953444472339" a="3.8226664773585779" b="-0.0026084545173413864" c="-5.0519910871285423e-05" d="1.2999843745275953e-06" /> - <width sOffset="633.11343558617057" a="3.7924620073882571" b="-0.0032314311952649725" c="-1.6208919987943131e-05" d="1.6004392519020299e-06" /> - <width sOffset="637.96085345463041" a="3.7765993348662645" b="-0.0032757552401499312" c="-0.00047830460764244968" d="2.4917295880527377e-05" /> - <width sOffset="643.22733672761785" a="3.7497211203307876" b="-0.0062404148225647538" c="-8.7198078208291135e-05" d="2.4681340442245151e-05" /> - <width sOffset="653.34123786906503" a="3.7032209562857115" b="-0.0004302035965167443" c="0.00066195064676214071" d="2.4588459116330954e-05" /> - <width sOffset="653.49067553989653" a="3.7031715321471226" b="-0.00023071557062036611" c="0.0007921080986562452" d="-3.4920897901730816e-05" /> - <width sOffset="654.93320021693046" a="3.7043821764636387" b="0.0018365570614720639" c="0.0011960049004263121" d="-0.00014599266286624121" /> - <width sOffset="657.87210461303789" a="3.7164038803121908" b="0.0050835596330403993" c="0.00037362504588388289" d="-6.1328750199487878e-05" /> - <width sOffset="658.62139536642928" a="3.7203969115930073" b="0.0055401705961944476" c="0.002038617168584366" d="-0.00036020252139199968" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="3.9495454044163694" b="0.00038555560936869818" c="3.2240285946167314e-05" d="4.4128180171995647e-07" /> - <width sOffset="5.2795893077952769" a="3.9525445880804608" b="0.000762887497860557" c="0.00010196284793867561" d="-6.8528563548830665e-06" /> - <width sOffset="6.0515648164429194" a="3.9531911302182765" b="0.00090806133983924468" c="8.6403285672570729e-05" d="-6.7774394541875296e-06" /> - <width sOffset="14.042555241011343" a="3.9625064633523501" b="0.00099061794002845683" c="-3.6372539487567802e-05" d="-6.0161074713153719e-06" /> - <width sOffset="16.165465957890149" a="3.9643879761812575" b="0.0007548473568260301" c="-9.513749895649329e-05" d="2.080982586052108e-06" /> - <width sOffset="17.545888858689807" a="3.9652541678456279" b="0.00050408374989351166" c="-0.00016225330175756667" d="9.4405071890965357e-06" /> - <width sOffset="26.27936709933735" a="3.9635695666763411" b="-0.00016980200883969445" c="8.8431551387873898e-05" d="6.4144434572471273e-06" /> - <width sOffset="27.736788952481817" a="3.9635297861250809" b="0.00012883648566350506" c="0.00052283340988752973" d="-3.3936693062890533e-05" /> - <width sOffset="29.341727554913632" a="3.9649429938291454" b="0.0015448222857379539" c="0.00019217467204735625" d="-2.5971350078691885e-05" /> - <width sOffset="36.393268240784579" a="3.9762857109744489" b="0.00038086147722875057" c="-0.00034203255076697037" d="-2.8060142716958245e-05" /> - <width sOffset="39.198161299189991" a="3.974043860030275" b="-0.0022001511883207705" c="-1.2295139241501613e-05" d="6.4693636731052905e-06" /> - <width sOffset="46.507169382231808" a="3.9598321318346268" b="-0.0013430704736622388" c="0.00013746796021129088" d="6.1593101796349734e-06" /> - <width sOffset="50.425168454793351" a="3.9570506608113791" b="1.7777685074485509e-05" c="5.079208518692255e-05" d="-2.3648012596611793e-06" /> - <width sOffset="50.940493744139388" a="3.9570729868333112" b="6.8242586106556411e-05" c="5.4441415297679448e-05" d="-2.0211246900369112e-06" /> - <width sOffset="56.621070523679037" a="3.9588469267171531" b="0.00049110113512585384" c="2.1800019643928771e-05" d="-1.8424650233161773e-06" /> - <width sOffset="65.551455972358639" a="3.9636590099075475" b="0.00043964667239494048" c="0.00068649522790410072" d="-4.3330357034832655e-05" /> - <width sOffset="66.734971665126267" a="3.9650690875591259" b="0.0018825227082986237" c="0.00053468479512352258" d="-4.2532692374238731e-05" /> - <width sOffset="68.449443728278681" a="3.9696539349933859" b="0.0033408633635949431" c="0.00036004211063193084" d="-4.0247788381433192e-05" /> - <width sOffset="76.848872806573439" a="3.9992662365400871" b="0.0008706659346947507" c="-0.00065410293188755447" d="-4.0243794540267964e-05" /> - <width sOffset="77.488901014438198" a="3.9995449920551529" b="-1.6078653780391333e-05" c="-6.3517421675419913e-07" d="3.1601447267361582e-07" /> - <width sOffset="85.062743272884774" a="3.9995240746361147" b="2.8682624217574413e-05" c="3.9314773623584942e-05" d="-5.7059207276002734e-07" /> - <width sOffset="86.962773948020669" a="3.9997165895369502" b="0.00017190146427580714" c="3.5386634606440805e-05" d="-5.7972438793985483e-07" /> - <width sOffset="97.076675089467898" a="4.0044751578057092" b="0.00070979355688834903" c="1.7581330900734666e-05" d="-5.718972840211417e-07" /> - <width sOffset="97.111288807095292" a="4.0044997474401001" b="0.00071100861175141261" c="-6.7870531978701114e-06" d="-1.2791304341253216e-07" /> - <width sOffset="107.19057623091513" a="4.0108457172533001" b="0.0005352064527278991" c="-1.4153816516069027e-05" d="-1.1422870678336567e-07" /> - <width sOffset="117.30447737236236" a="4.0146927578457072" b="0.00021385214602395806" c="-2.29091750398752e-05" d="5.0678576992595313e-07" /> - <width sOffset="119.17089326755311" a="4.0150153855455084" b="0.0001336322264419011" c="2.8698157283219538e-05" d="-5.2611524438161212e-07" /> - <width sOffset="120.98667363475792" a="4.0153495021056571" b="0.00023264742961580495" c="4.7355465599638173e-05" d="-3.8498302733344814e-06" /> - <width sOffset="127.41837851380959" a="4.0177804842301095" b="0.00036403439169942415" c="-2.7999625690841295e-05" d="-3.9280928281932501e-06" /> - <width sOffset="134.39722364412458" a="4.0176221650098851" b="-0.00060072050239291818" c="-0.00024804375830878879" d="1.3023072996520755e-05" /> - <width sOffset="137.53227965525681" a="4.0137022373408966" b="-0.0017719878577748555" c="-0.00012686012699426871" d="1.3045640481783073e-05" /> - <width sOffset="139.60590776739727" a="4.0095986243605131" b="-0.0021298231475976774" c="-0.00027424097712183275" d="2.5116403896842032e-05" /> - <width sOffset="146.3472047327725" a="3.990472581246391" b="-0.0024030515682693225" c="-4.2548500145031401e-05" d="1.0877064712322296e-05" /> - <width sOffset="147.64618079670399" a="3.9873031215319394" b="-0.0024585306543211958" c="-1.1662397432818288e-06" d="1.0296044827364337e-05" /> - <width sOffset="157.41511874519475" a="3.9727732926743737" b="0.00046640453946101147" c="4.2935644869085778e-05" d="-1.8010265489125221e-06" /> - <width sOffset="157.76008193815122" a="3.9729392204652645" b="0.00049538400941549429" c="4.2055457413306914e-05" d="-1.8458558714288707e-06" /> - <width sOffset="167.87398307959845" a="3.9803417294612382" b="0.00077963017854992638" c="-9.0469168233160757e-06" d="-2.5302463498960137e-06" /> - <width sOffset="171.41542454582034" a="3.982876895794683" b="0.00062035033664211694" c="1.2954716112241912e-06" d="-2.1572962617462957e-06" /> - <width sOffset="171.66857733534718" a="3.9830339872357294" b="0.00062059148151525105" c="-0.00012312366205597067" d="4.097977656684942e-06" /> - <width sOffset="177.98788422104568" a="3.983073055962405" b="-0.00044457944187420212" c="-4.3400455687382899e-05" d="4.275072533143668e-06" /> - <width sOffset="188.1017853624929" a="3.978559971004215" b="-1.0570992509396828e-05" c="8.7300722111818984e-05" d="4.2161985789767629e-06" /> - <width sOffset="191.83769123946487" a="3.9799587753875243" b="0.00081825992773219955" c="2.9206813382049461e-06" d="-7.8451156133784076e-07" /> - <width sOffset="198.21568650394013" a="3.9850929022024983" b="0.00075977708898779185" c="-1.0780902829756173e-05" d="-7.6158137747376208e-07" /> - <width sOffset="208.32958764538731" a="3.9908865208686874" b="0.00030799436452277158" c="-3.3841760202074579e-05" d="-7.5693816540408931e-07" /> - <width sOffset="209.10852997155465" a="3.9911055394413415" b="0.00025389498639580407" c="-5.3721330083756494e-05" d="4.903360278263725e-06" /> - <width sOffset="216.95899158795604" a="3.9921602536924445" b="0.00031699907567291844" c="0.00078221214156924364" d="-3.7422523312242032e-05" /> - <width sOffset="218.44348878683454" a="3.9942321984967322" b="0.0023919749128854789" c="0.00061341265910862144" d="-3.8009197504381903e-05" /> - <width sOffset="228.72575845534888" a="4.042360667404747" b="0.0029509485234750386" c="-0.00026061220234638966" d="1.0327631594247132e-05" /> - <width sOffset="228.96245503278797" a="4.0430446829061264" b="0.0028293123158467711" c="-0.00028017305407145591" d="1.0769560098266889e-05" /> - <width sOffset="238.67129106972899" a="4.0539604528060771" b="0.00043446840484113894" c="2.9380963548622255e-05" d="1.1293912058367721e-05" /> - <width sOffset="242.7150712123171" a="4.0569445943075566" b="0.0012261282166597608" c="0.00018311627718316454" d="-6.3338587254424592e-06" /> - <width sOffset="248.78519221117622" a="4.0697178678610957" b="0.0027490650491347867" c="6.9117269745874016e-05" d="-6.7496391339888154e-06" /> - <width sOffset="258.89909335262348" a="4.0976088008075946" b="0.0020758735808651821" c="-0.00013559799260039483" d="-6.2774418550412904e-06" /> - <width sOffset="264.80202114016743" a="4.1038465057378257" b="-0.0001811807675672981" c="-0.00028434761831049857" d="-4.7709014228931486e-06" /> - <width sOffset="267.38442670400082" a="4.1014001983320192" b="-0.0017452313377005187" c="-4.9971674075741907e-05" d="5.2839851113044554e-06" /> - <width sOffset="269.01299449407065" a="4.0984482575990109" b="-0.0018659527755386111" c="-3.2196477435977792e-05" d="2.201855438800535e-06" /> - <width sOffset="279.12689563551783" a="4.0785607397563286" b="-0.0018415267956954774" c="3.4276488573603092e-05" d="2.2002806707613538e-06" /> - <width sOffset="280.12689074722653" a="4.0767556983644244" b="-0.0017663733761766021" c="7.8266420667963097e-07" d="6.9911175975963312e-07" /> - <width sOffset="287.7410366490102" a="4.0636602590285715" b="-0.0016328612676084588" c="0.00044053814986063549" d="-0.00017195331939488632" /> - <width sOffset="289.24079677696511" a="4.0616221885674886" b="-0.0014717718780482959" c="-0.00033322464510130052" d="-0.00017194860061073752" /> - <width sOffset="289.61951711164625" a="4.0610076643566497" b="-0.0017981570711921553" c="-0.0003083976325102991" d="1.8306934503456532e-05" /> - <width sOffset="299.3546979184124" a="4.0311649832128431" b="-0.0025977202511413347" c="0.00022067805290914248" d="1.9766871604076576e-05" /> - <width sOffset="301.19060350914765" a="4.0272619379523089" b="-0.0015875564609623568" c="4.7976008389366129e-05" d="5.9139821459920254e-08" /> - <width sOffset="309.46859905985957" a="4.0174412658437069" b="-0.0007811083868716431" c="4.9114650492291045e-05" d="3.4335605384547367e-10" /> - <width sOffset="319.58250020130674" a="4.0145655545926537" b="0.00021247841917826523" c="5.0668145932960835e-05" d="-7.1839817934354167e-08" /> - <width sOffset="329.69640134275403" a="4.0218231127713953" b="0.001215337957499822" c="5.1384798225901252e-05" d="-1.3946831137451245e-07" /> - <width sOffset="332.54099685887718" a="4.0256928390258722" b="0.0015042902736595563" c="4.1349155099445392e-05" d="-8.8181417277830948e-07" /> - <width sOffset="339.8103024842012" a="4.0384742583700053" b="0.0019656569639776873" c="2.4913322035237639e-05" d="-9.1709986008012614e-07" /> - <width sOffset="346.95828797548052" a="4.0534627190849859" b="0.0021812430269092936" c="0.0001154690706824404" d="-8.2729721461697537e-06" /> - <width sOffset="349.92420362564849" a="4.060732000577346" b="0.0026478626132397627" c="4.252015966624473e-05" d="-7.9765672839216904e-06" /> - <width sOffset="359.94267381831241" a="4.0835064232352316" b="0.0010980184448288058" c="-4.6600929130547546e-05" d="3.7450081079906266e-11" /> - <width sOffset="360.03810476709566" a="4.0836107837794984" b="0.0010891241040894809" c="-4.6766425532220781e-05" d="1.1961388118917564e-08" /> - <width sOffset="366.33027582222871" a="4.0886151696799145" b="0.00050202011081765946" c="-2.6261473169904444e-05" d="6.125511814251141e-07" /> - <width sOffset="370.15200590854283" a="4.0901843817567336" b="0.00032813165749461675" c="-2.0720727804108597e-05" d="5.2623740035722013e-07" /> - <width sOffset="380.26590704999012" a="4.0919279537147926" b="7.0484916232526099e-05" c="-4.1679984557788787e-06" d="3.882518553109098e-07" /> - <width sOffset="384.45039176868863" a="4.0921783626801673" b="5.5997832423198771e-05" c="-6.6042763060942204e-06" d="-2.0167744657046922e-07" /> - <width sOffset="390.37980819143729" a="4.0922361611881115" b="-4.3592890719596346e-05" c="-8.0366239330219159e-06" d="-1.2589227537097094e-07" /> - <width sOffset="400.49370933288458" a="4.0908429494905638" b="-0.00024478906948098317" c="-1.0273810238312483e-05" d="-1.8157174699458229e-07" /> - <width sOffset="402.19960278275278" a="4.0903945665162587" b="-0.00028142628148498976" c="-3.2018263456619236e-05" d="9.6164042657493921e-07" /> - <width sOffset="408.12957857017045" a="4.08780033200392" b="-0.00055971419571740236" c="-0.00013889142130177627" d="5.2750034685373405e-06" /> - <width sOffset="410.60761047433175" a="4.0856407280408691" b="-0.0011508932167022862" c="-0.00010095897730183533" d="5.4569041177121402e-06" /> - <width sOffset="420.05844145377785" a="4.070352699426091" b="-0.0015969830157450007" c="3.1520800896009929e-05" d="3.9911399941816359e-06" /> - <width sOffset="420.72151161577904" a="4.0693088096629335" b="-0.0015499177523800617" c="3.4652023645198151e-05" d="4.1536281833857301e-06" /> - <width sOffset="429.21765906899645" a="4.0611891996820724" b="-6.1617358192470276e-05" c="5.7941871933066012e-05" d="2.1586686094280541e-07" /> - <width sOffset="430.83541275722621" a="4.0612420731623669" b="0.00012754884882156258" c="5.3984229639697276e-05" d="-1.8084050839722319e-06" /> - <width sOffset="440.94931389867338" a="4.0661832848284352" b="0.00066458049911247803" c="-7.5351913899511912e-07" d="-1.8184605509094983e-06" /> - <width sOffset="442.83389657919167" a="4.0674208938387793" b="0.0006423647443734872" c="5.8994911068875617e-07" d="-1.6617043780168603e-06" /> - <width sOffset="451.06321504012067" a="4.071820996916669" b="0.00031447425453841338" c="-3.9457916125984337e-05" d="-1.7535394330621898e-06" /> - <width sOffset="456.91369899582037" a="4.071959102953147" b="-0.00032728285398081063" c="-9.6959275064584965e-05" d="2.3019381195591724e-06" /> - <width sOffset="458.6220115239845" a="4.0711285183623129" b="-0.00063840288569494961" c="-0.00010254677641573126" d="2.8601441860467049e-06" /> - <width sOffset="461.17711618156784" a="4.0688755599168127" b="-0.0011064205106136936" c="-7.8266451260929813e-05" d="3.0998399196504218e-06" /> - <width sOffset="471.29101732301513" a="4.0528863525375476" b="-0.0017383216708585308" c="1.2641265306537891e-05" d="3.4937062713488815e-06" /> - <width sOffset="478.43621533543092" a="4.0423855540750893" b="-0.0010225714670114962" c="4.8641009161256888e-05" d="1.0623841964005151e-07" /> - <width sOffset="481.4049184644623" a="4.039781305416521" b="-0.00073096113405215829" c="4.5855587730129783e-05" d="-1.2568360800243831e-06" /> - <width sOffset="491.51881960590958" a="4.0357787769010312" b="-0.00018909241631160192" c="8.864673303964554e-06" d="-1.0843376754252778e-06" /> - <width sOffset="501.63272074735676" a="4.0336512776638873" b="-0.00034253350084810681" c="-2.4624163903759563e-05" d="-1.1659270956605754e-06" /> - <width sOffset="504.53523810704814" a="4.0324211094154894" b="-0.00051494506004132017" c="-2.5611475808114086e-05" d="1.3278363495023603e-06" /> - <width sOffset="511.74662188880393" a="4.0278737091272694" b="-0.00067717479475530801" c="4.9203319791216528e-06" d="1.1547962883435085e-06" /> - <width sOffset="513.20607132836722" a="4.0268994768425257" b="-0.00065543372037949409" c="0.00011460076410240669" d="-4.1324110411661177e-06" /> - <width sOffset="521.86052303025122" a="4.027131912872024" b="0.00039963284840136308" c="7.939689818149069e-06" d="-3.9880009166833236e-06" /> - <width sOffset="527.48038389357748" a="4.0289207169511574" b="0.00011101561432164532" c="-1.0126166511296424e-05" d="1.6063246449561683e-06" /> - <width sOffset="531.97442417169839" a="4.0293609090324622" b="0.00011732672963556839" c="1.0523022363603686e-05" d="1.567863588946041e-06" /> - <width sOffset="539.34165585726271" a="4.0314233640591333" b="0.00052767039276650361" c="0.00012978072982501492" d="-7.1836646479005126e-06" /> - <width sOffset="542.08832531314567" a="4.0337029354733582" b="0.0010780150661075195" c="6.934344336425986e-05" d="-7.3168893581420558e-06" /> - <width sOffset="550.77715028914986" a="4.0435050993456061" b="0.00062586055039906487" c="-0.00036392090984986255" d="2.1430278845691322e-05" /> - <width sOffset="552.20222645459285" a="4.043719953871781" b="-0.00028080494304281371" c="-0.00027296856166081476" d="2.1034772940322714e-05" /> - <width sOffset="559.32454289572297" a="4.0354727796834133" b="-0.00096802440691095637" c="-0.00012913867422244306" d="5.5358109114620606e-06" /> - <width sOffset="562.31612759604002" a="4.0315693285196597" b="-0.001592053439394851" c="-7.6839143470653314e-05" d="5.6063051993599305e-06" /> - <width sOffset="565.82227895150834" a="4.0252843970644037" b="-0.0019241162070707579" c="4.8374524959227043e-06" d="1.800791786986163e-06" /> - <width sOffset="572.43002873748731" a="4.0133010795033259" b="-0.0016243064127587426" c="4.6766050638242073e-05" d="1.6201894646146046e-06" /> - <width sOffset="579.60667009462838" a="4.0046515279000898" b="-0.00070272047137665016" c="0.0001062011083095437" d="5.5022044948630385e-06" /> - <width sOffset="582.54392987893448" a="4.0036431372878933" b="6.3570743568602079e-05" c="0.00017140643748798546" d="2.6115325648916096e-06" /> - <width sOffset="584.85966444261271" a="4.0047419700793068" b="0.00089944838878457123" c="0.0017812844050027576" d="-0.00011864671690652248" /> - <width sOffset="592.65783102038176" a="4.0638140777832881" b="0.00703573382965271" c="-0.00099722438858738265" d="-0.0001167217059212893" /> - <width sOffset="594.36963884096201" a="4.07235026312188" b="0.0025955368677535564" c="-4.4013048921453294e-05" d="1.0183724418497248e-06" /> - <width sOffset="602.77173216182894" a="4.0916551421235372" b="0.0020716099126106371" c="-2.1170758096113814e-05" d="8.3044414899979849e-07" /> - <width sOffset="612.88563330327622" a="4.1113007671946198" b="0.0018982128817788141" c="2.0426652573788935e-06" d="9.8859631176169523e-07" /> - <width sOffset="615.16980109816279" a="4.1156590429401092" b="0.0019230182361383726" c="2.5798474320160716e-05" d="-1.0549263626542656e-06" /> - <width sOffset="622.99953444472339" a="4.1317909670261415" b="0.0021329926760993382" c="-3.7380220212894657e-06" d="-8.8288196207445637e-07" /> - <width sOffset="630.21893370514033" a="4.1466628633513274" b="0.001940973432251212" c="-0.00055213163834649359" d="2.2609937559072895e-05" /> - <width sOffset="633.11343558617057" a="4.1482034811231907" b="-0.00068703095522893603" c="-0.00036381823335468228" d="2.1156543415829545e-05" /> - <width sOffset="643.22733672761785" a="4.1259273236247127" b="-0.0015539025336966704" c="0.00027795870484233421" d="2.1152768905484412e-05" /> - <width sOffset="643.77192267268504" a="4.1251669418112025" b="-0.0012323376513328774" c="-0.0001194561254963238" d="1.0377455708587101e-05" /> - <width sOffset="653.34123786906503" a="4.1115290529403374" b="-0.00066771759711678393" c="0.00017514574955989541" d="1.1459256831496444e-05" /> - <width sOffset="654.93320021693046" a="4.1109561845598739" b="-2.2941619332024816e-05" c="-0.00032514570687715782" d="0.00012253101906730044" /> - <width sOffset="654.96986594780924" a="4.1109549123104685" b="-4.6290846074745379e-05" c="-0.00035081285352237359" d="0.00011017852365538154" /> - <width sOffset="657.87210461303789" a="4.1105590441956359" b="0.00070152146600558241" c="0.00014368467922858892" d="2.5514610982546074e-05" /> - <width sOffset="658.63010343956682" a="4.1111844644913917" b="0.00096332629716069755" c="0.0055653663350812019" d="-0.00078274964936564818" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - </link> - <width sOffset="0" a="3.6034957619611965" b="-0.00089475648444924051" c="5.486268451140568e-06" d="-1.71523065792299e-06" /> - <width sOffset="5.2795893077952769" a="3.5986723202573434" b="-0.00098025733952868165" c="-8.4414073826223287e-05" d="5.578907498262376e-06" /> - <width sOffset="6.0515648164429194" a="3.5978678459628091" b="-0.0011006143487416744" c="-6.5468286161228452e-05" d="6.7576428301098907e-06" /> - <width sOffset="16.165465957890149" a="3.5870307189150461" b="-0.00035115584383719773" c="0.00015854286553308917" d="-1.6929061960995102e-06" /> - <width sOffset="16.943924595291918" a="3.5868526366322189" b="-0.0001073954102379338" c="9.5559989830470963e-05" d="-2.9171098948368212e-06" /> - <width sOffset="17.545888858689807" a="3.5868219793398435" b="4.4808471906019429e-06" c="0.00016602571296207594" d="-1.0276634497863776e-05" /> - <width sOffset="26.27936709933735" a="3.5926788809029335" b="0.00055293572276672804" c="-0.00010536222504546593" d="-8.1953188073481799e-06" /> - <width sOffset="27.736788952481817" a="3.5932355738050639" b="0.00019359880380674278" c="-0.0005475505435039833" d="3.2155817712780557e-05" /> - <width sOffset="36.393268240784579" a="3.5747394760784128" b="-0.0020573678125902889" c="0.00028456498622511563" d="3.4353024504656172e-05" /> - <width sOffset="39.198161299189991" a="3.571965651104168" b="0.00034979043502548503" c="7.7801560306307986e-06" d="-1.7648188540884511e-07" /> - <width sOffset="46.507169382231808" a="3.5748689916751442" b="0.00043523704803461919" c="4.296091661977368e-06" d="2.5523942708852827e-07" /> - <width sOffset="50.940493744139388" a="3.5769052157133956" b="0.00048837869019547459" c="3.8551338678592801e-07" d="-8.8437136106134013e-08" /> - <width sOffset="56.621070523679037" a="3.5796757173928375" b="0.00048419724573654744" c="-1.0612764825323495e-07" d="-1.130220738429237e-07" /> - <width sOffset="65.551455972358639" a="3.5839108256382151" b="0.00045526058797507274" c="-0.00071719109646060301" d="4.1374869937841782e-05" /> - <width sOffset="66.734971665126267" a="3.5835136470500588" b="-0.0010684907396557796" c="-0.00057125676232269447" d="4.0484930048324745e-05" /> - <width sOffset="76.848872806573439" a="3.55615674467471" b="-0.00020002809147377277" c="0.000657537898617464" d="4.0535509072954172e-05" /> - <width sOffset="77.488901014438198" a="3.5563086998642941" b="0.00069147193862000174" c="4.6302575336213397e-06" d="-2.429994313096439e-08" /> - <width sOffset="86.962773948020669" a="3.5632545397845603" b="0.00077266181081529761" c="3.4363496893545254e-06" d="-6.1374701849746595e-10" /> - <width sOffset="97.076675089467898" a="3.57142003762953" b="0.00084198327052453727" c="-3.6981973713363984e-07" d="1.3590846261112396e-07" /> - <width sOffset="97.111288807095292" a="3.5714491813632558" b="0.00084195815734921045" c="2.3953290779609951e-05" d="-3.0807577799884054e-07" /> - <width sOffset="107.19057623091513" a="3.5820535211910878" b="0.0012309282267406116" c="1.152536821325041e-05" d="-2.9410750634533256e-07" /> - <width sOffset="117.30447737236236" a="3.5953776768228085" b="0.0013738074466668189" c="2.2881705988409206e-06" d="-8.080073106650354e-07" /> - <width sOffset="120.98667363475792" a="3.6004269897697476" b="0.001357792163735443" c="-2.8160791409829778e-05" d="2.5157077184434393e-06" /> - <width sOffset="127.41837851380959" a="3.6086643129007285" b="0.0013077489075472941" c="1.9425815318066707e-05" d="2.572573035776475e-06" /> - <width sOffset="131.97577607292035" a="3.6152712272176055" b="0.0016451072761151171" c="8.3782670328360248e-05" d="1.867965723147479e-06" /> - <width sOffset="134.39722364412458" a="3.6197725415012565" b="0.002083715900667543" c="0.00023515569162022354" d="-1.508320010145688e-05" /> - <width sOffset="137.53227965525681" a="3.6281515924841981" b="0.0031134292855090973" c="9.3002056556964747e-05" d="-1.5015514220221125e-05" /> - <width sOffset="146.3472047327725" a="3.6525379626898924" b="0.0012527944213192828" c="-2.7820906860044528e-05" d="-7.7617503614121241e-07" /> - <width sOffset="147.64618079670399" a="3.6541166681298765" b="0.0011765880263424919" c="-3.0546935624407054e-05" d="-2.8585054190287903e-07" /> - <width sOffset="157.76008193815122" a="3.6625961568042067" b="0.00047097084201213187" c="-3.8210828771876764e-05" d="-3.3186814317231922e-07" /> - <width sOffset="167.87398307959845" a="3.6631075477502311" b="-0.00040379161646528715" c="-3.9915351173425761e-05" d="-2.9993293855825181e-06" /> - <width sOffset="170.05161354625429" a="3.6620079847248004" b="-0.00062030251580513925" c="-3.7414726080941048e-06" d="9.9627801738683389e-07" /> - <width sOffset="171.41542454582034" a="3.6611575774851852" b="-0.0006249486659165572" c="-3.6889814320569721e-05" d="6.2332793827433729e-07" /> - <width sOffset="177.98788422104568" a="3.6556335602248717" b="-0.0010290841862073776" c="-2.3177526364383505e-05" d="6.8910933517928795e-07" /> - <width sOffset="188.1017853624929" a="3.6435675778953933" b="-0.0012864455655494842" c="-1.443690454433451e-06" d="6.5642383823660356e-07" /> - <width sOffset="198.21568650394013" a="3.6310880286050549" b="-0.0011142095053966552" c="1.9765382921503738e-05" d="6.5613402715710527e-07" /> - <width sOffset="208.32958764538731" a="3.6225196552190506" b="-0.00051304943758389296" c="4.0556301953215879e-05" d="7.450262218558982e-07" /> - <width sOffset="209.10852997155465" a="3.6221449789968334" b="-0.0004485112606716123" c="6.0408035683834022e-05" d="-4.9152722218131212e-06" /> - <width sOffset="216.95899158795604" a="3.6199687738729773" b="-0.00040883028886434493" c="-0.00077580597873689672" d="3.7410611368018334e-05" /> - <width sOffset="217.65330381698377" a="3.61932344720914" b="-0.0014320299047020152" c="-0.00065891996685003829" d="3.6712302488100049e-05" /> - <width sOffset="218.44348878683454" a="3.6177985674713482" b="-0.0024045985774918273" c="-0.00056983113058031178" d="3.7302412962431838e-05" /> - <width sOffset="228.55738992828176" a="3.5737817236650864" b="-0.0024839270626611869" c="0.00055973799430866658" d="3.7303232283693777e-05" /> - <width sOffset="228.72575845534888" a="3.5733795539997475" b="-0.0022922701276754309" c="0.00028014247068899786" d="-1.1033596686869216e-05" /> - <width sOffset="238.67129106972899" a="3.5674373267367079" b="5.9430940317973299e-06" c="-4.8525538249267321e-05" d="-1.147290066628513e-05" /> - <width sOffset="242.7150712123171" a="3.5659092218638397" b="-0.00094933016971788641" c="-0.00020443222361905198" d="6.1548701175183681e-06" /> - <width sOffset="248.78519221117622" a="3.5539906977854634" b="-0.0027508329911871843" c="-9.0103987103109755e-05" d="6.012292371701752e-06" /> - <width sOffset="258.89909335262348" a="3.5231723015987022" b="-0.0027284284969834685" c="9.0097328996600106e-05" d="6.9554876240828539e-06" /> - <width sOffset="264.2293522569488" a="3.5122422354893335" b="-0.0011750934684429293" c="0.00019972018638614311" d="8.2132176466815518e-06" /> - <width sOffset="267.38442670400082" a="3.510780795604171" b="0.00033044594105111188" c="6.1229743891119039e-06" d="-1.8416688874887367e-06" /> - <width sOffset="269.01299449407065" a="3.5113272339786374" b="0.00033573569353737476" c="-4.6116778146394332e-06" d="-5.1411615655376434e-08" /> - <width sOffset="279.12689563551783" a="3.5141979100207106" b="0.00022667475035022526" c="-6.4757532712416046e-06" d="-5.6596348968956939e-08" /> - <width sOffset="287.7410366490102" a="3.5156338188930008" b="0.00010250971777990266" c="-0.00043172440889816677" d="0.00017259583480629551" /> - <width sOffset="289.24079677696511" a="3.5153987211424234" b="-2.7807085186965039e-05" c="0.00034237143187922808" d="0.00017272267148482368" /> - <width sOffset="289.61951711164625" a="3.5154466782688996" b="0.00030583932910409432" c="0.00031842388842970998" d="-1.7532863629368758e-05" /> - <width sOffset="299.3546979184124" a="3.5324257905978782" b="0.001520702125122092" c="-0.00020200534197233148" d="-1.3257086280887032e-05" /> - <width sOffset="300.67448885705051" a="3.5340504604683951" b="0.00091821699282303474" c="-0.00027567892394884794" d="-1.9576455448265524e-05" /> - <width sOffset="301.19060350914765" a="3.5344482405572459" b="0.00061800913312944549" c="-2.4417635630907277e-05" d="1.3127633869274023e-07" /> - <width sOffset="309.46859905985957" a="3.5379653604791401" b="0.00024073819106872638" c="-2.1431845488982048e-05" d="8.4976732692033264e-08" /> - <width sOffset="319.58250020130674" a="3.5382957915325988" b="-0.00016670387809149245" c="-1.7494957694193594e-05" d="2.1403472523719957e-08" /> - <width sOffset="329.69640134275403" a="3.534842331535391" b="-0.00051402027569178647" c="-1.3304458199259442e-05" d="-1.6156128921562763e-07" /> - <width sOffset="336.78868779684115" a="3.5304698949332924" b="-0.00072711818706538154" c="3.7036854036741089e-05" d="-2.8529985221570594e-06" /> - <width sOffset="339.8103024842012" a="3.5285322681845024" b="-0.00058144094170167965" c="1.753717520886853e-05" d="-1.2548046913529226e-06" /> - <width sOffset="346.95828797548052" a="3.5248138998709249" b="-0.0005230678243143454" c="-0.00011959280010443913" d="6.1010675947684782e-06" /> - <width sOffset="349.92420362564849" a="3.5223696858441018" b="-0.0010714651671958648" c="-6.5414444999288199e-05" d="5.9718096615266617e-06" /> - <width sOffset="359.94267381831241" a="3.5110745737998754" b="-0.00058400346321536346" c="-3.6547169663887812e-05" d="-2.0047944341259955e-06" /> - <width sOffset="360.03810476709566" a="3.5110185072154412" b="-0.00059103369876915704" c="-5.0874619983134277e-05" d="3.6074496013717431e-06" /> - <width sOffset="361.54124086436275" a="3.5100274077565636" b="-0.00071952444316587729" c="-0.00014956505892412268" d="4.7659962398563293e-06" /> - <width sOffset="370.15200590854283" a="3.4957850480322947" b="-0.0022351353050957829" c="-2.8096946494213934e-05" d="4.6509070665168093e-06" /> - <width sOffset="380.26590704999012" a="3.4751166930472701" b="-0.0013762370309500138" c="0.00011354788294300552" d="4.5091494243657711e-06" /> - <width sOffset="384.172577711543" a="3.471742017684206" b="-0.00028259172599911858" c="5.5655178518912863e-05" d="-1.7397924624739999e-06" /> - <width sOffset="384.45039176868863" a="3.4716677679287593" b="-0.00025207097904578858" c="6.1515341851693e-05" d="-1.1498631221788784e-06" /> - <width sOffset="390.37980819143729" a="3.4720961815207878" b="0.00035614858650442237" c="4.2804489594415931e-05" d="-1.1047571718855502e-06" /> - <width sOffset="400.49370933288458" a="3.4789338082917749" b="0.00088296920349918565" c="1.0176318867940877e-05" d="-1.0514051588728356e-06" /> - <width sOffset="408.12957857017045" a="3.4858012837480508" b="0.00085446802232280489" c="0.00011007181312452084" d="-5.3647682007945276e-06" /> - <width sOffset="410.28806688212012" a="3.4881045243964466" b="0.0012546609459327934" c="0.00014128041674289456" d="-6.062989258946495e-06" /> - <width sOffset="410.60761047433175" a="3.4885196713149114" b="0.0013430942086083153" c="0.00013667245325853184" d="-6.2366856411519177e-06" /> - <width sOffset="420.72151161577904" a="3.5096317228901688" b="0.0021938072071296002" c="-5.7416365803914619e-05" d="-5.9830346305868979e-06" /> - <width sOffset="428.67231111215187" a="3.5204375144598479" b="0.00014613876343182934" c="-0.00015808822703219247" d="-1.2591927957417404e-06" /> - <width sOffset="429.21765906899645" a="3.5204699905754668" b="-2.7410888211292954e-05" c="-7.75686574432685e-05" d="2.6785685286625545e-06" /> - <width sOffset="430.83541275722621" a="3.5202339801850453" b="-0.000257354389530067" c="-6.8749557606637596e-05" d="1.8902180959736377e-06" /> - <width sOffset="440.94931389867338" a="3.5125542085577126" b="-0.0010679499710544642" c="-1.1291390381180182e-05" d="1.8859319104080881e-06" /> - <width sOffset="451.06321504012067" a="3.5025491722036208" b="-0.00071760842098093902" c="4.6845491500442325e-05" d="1.7833068350319033e-06" /> - <width sOffset="456.51663376762906" a="3.5003181502725278" b="-4.7566823222573062e-05" c="6.8387205397604016e-05" d="1.1078330491575366e-06" /> - <width sOffset="456.91369899582037" a="3.5003101144743511" b="7.2655249266840623e-06" c="9.6431047326890398e-05" d="-2.9476444976577125e-06" /> - <width sOffset="461.17711618156784" a="3.5018654635615563" b="0.00066878151373477035" c="6.0456572577324135e-05" d="-2.8388834048127569e-06" /> - <width sOffset="471.29101732301513" a="3.5118766185955077" b="0.0010205084749659969" c="-2.5869249600459681e-05" d="-2.8528034035936377e-06" /> - <width sOffset="478.43621533543092" a="3.5168069549435819" b="0.00021388682248829567" c="-4.813085976477765e-05" d="5.3466444804898448e-07" /> - <width sOffset="481.4049184644623" a="3.5170317234500938" b="-5.7749334118316407e-05" c="-4.0671416006479513e-05" d="1.3658952781371439e-06" /> - <width sOffset="491.51881960590958" a="3.5137004347475824" b="-0.00046128632914050152" c="1.769102912179879e-06" d="1.5161306127088661e-06" /> - <width sOffset="501.63272074735676" a="3.5107845233557469" b="3.975826746579976e-05" c="4.7259571759445347e-05" d="1.488507790436977e-06" /> - <width sOffset="504.53523810704814" a="3.511334463575583" b="0.00035172200190905105" c="5.1055771863326474e-05" d="-1.005255654724091e-06" /> - <width sOffset="511.74662188880393" a="3.5161489809490307" b="0.00093125541803640451" c="3.0516360764048444e-05" d="-1.0896138921712359e-06" /> - <width sOffset="521.86052303025122" a="3.5275618830661672" b="0.0012141612581315787" c="-1.9894773923322859e-06" d="-9.69091458975464e-07" /> - <width sOffset="531.97442417169839" a="3.5386357001237365" b="0.00087653051026203601" c="-3.2135303567912605e-05" d="-1.0094166303046002e-06" /> - <width sOffset="539.34165585726271" a="3.5429454944342935" b="0.00023867245481356986" c="-0.00013905038664426204" d="7.7421116065559822e-06" /> - <width sOffset="542.08832531314567" a="3.5427124532367023" b="-0.0003499544899544992" c="-7.5111204644056251e-05" d="7.9037906777873938e-06" /> - <width sOffset="550.77715028914986" a="3.5391858281480397" b="0.00013489543094109089" c="0.00037345159710372119" d="-2.0843377525867024e-05" /> - <width sOffset="552.20222645459285" a="3.5400761627131239" b="0.001072300546560104" c="0.00028455239341456263" d="-2.0518892924105203e-05" /> - <width sOffset="559.32454289572297" a="3.5547346222818326" b="0.0020030351837601271" c="0.00015174528813978902" d="-5.0199308952366381e-06" /> - <width sOffset="562.24035881544171" a="3.5617407947687512" b="0.002759919744028623" c="2.9075133150687391e-05" d="-3.7420341929009647e-06" /> - <width sOffset="562.31612759604002" a="3.561950075812256" b="0.0027642612707571802" c="2.5751087859376436e-05" d="-3.8374142468761634e-06" /> - <width sOffset="572.43002873748731" a="3.5885716062531086" b="0.0021075504049716271" c="-8.5334917298742234e-05" d="-4.0003213486450761e-06" /> - <width sOffset="582.54392987893448" a="3.5970195924383335" b="-0.00084617799878163795" c="-0.00021127542557151227" d="-6.0055902999351835e-07" /> - <width sOffset="584.85966444261271" a="3.5939196195948058" b="-0.0018343553311195057" c="-0.0018071827503220439" d="0.0001206576904414216" /> - <width sOffset="592.65783102038176" a="3.5269356758585997" b="-0.0080076896337914691" c="0.0010147963751801017" d="0.00011988734001467685" /> - <width sOffset="594.36963884096201" a="3.5168030590142774" b="-0.0034795043038136392" c="7.7841907108517982e-05" d="2.1472616515337122e-06" /> - <width sOffset="597.5082304943727" a="3.5067155055776715" b="-0.0029274199220535916" c="4.3680677881010536e-05" d="4.3175308871628035e-07" /> - <width sOffset="602.77173216182894" a="3.4925801343635872" b="-0.0024317088350079437" c="4.553713966731727e-05" d="-2.7351371028969419e-07" /> - <width sOffset="612.88563330327622" a="3.4723611443624516" b="-0.001594526547069534" c="3.5697630184143571e-05" d="-1.9875254483426508e-07" /> - <width sOffset="622.99953444472339" a="3.4596801850186742" b="-0.00093343372922083769" c="2.58868472673872e-05" d="-8.0239870937523079e-08" /> - <width sOffset="630.21893370514033" a="3.4542603775169116" b="-0.00057220499737393841" c="0.00055342098045712868" d="-2.357305937254089e-05" /> - <width sOffset="630.50269696945907" a="3.4541420304739092" b="-0.00026381833014898527" c="0.00050443632753004305" d="-1.9506850473271329e-05" /> - <width sOffset="633.11343558617057" a="3.4565443674884455" b="0.0019712109588850227" c="0.00034329100912622914" d="-2.1415240605801254e-05" /> - <width sOffset="643.22733672761785" a="3.4894412063443214" b="0.0023434747243371006" c="-0.00030984837964833007" d="-2.1504755337087554e-05" /> - <width sOffset="643.77192267268504" a="3.4906220635824767" b="0.0019868633346739337" c="8.6991390099800466e-05" d="-1.0729442140190455e-05" /> - <width sOffset="653.34123786906503" a="3.5081989540581193" b="0.00070421662259815459" c="-0.00022156282556817905" d="-1.1206958497734386e-05" /> - <width sOffset="654.96986594780924" a="3.5087097692115536" b="-0.00010664725449886527" c="-0.00023717351237989017" d="1.1455396438537035e-06" /> - <width sOffset="656.30724125713016" a="3.5081456798557156" b="-0.00073488061060036187" c="0.0021974643491062783" d="-0.00023990623369374688" /> - <width sOffset="658.63010343956682" a="3.5152886363837976" b="0.0055905549809991389" c="-0.0048380045239252052" d="0.00056835802665651351" /> - <roadMark sOffset="0" color="standard" width="0.30932594790760459" weight="bold" type="solid"> - <type name="solid"> - <line length="663.45513901051231" space="0" width="0.30932599999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <predecessor id="-6" /> - </link> - <width sOffset="0" a="2.4929243247049131" b="-6.1138203418796859e-06" c="3.3636137400584421e-05" d="-1.7927099026889977e-06" /> - <width sOffset="6.0515648164429194" a="2.4937218352154451" b="0.00020403387415009807" c="3.0135459858018356e-06" d="-1.3499807568505349e-06" /> - <width sOffset="16.165465957890149" a="2.4946970347948882" b="-0.00014928134328711447" c="-4.8769064873695574e-05" d="-1.1951428726229157e-06" /> - <width sOffset="16.943924595291918" a="2.4945507076935494" b="-0.00022738350489920922" c="7.4691305965234424e-06" d="2.9060826097655489e-08" /> - <width sOffset="26.27936709933735" a="2.4931025639740518" b="-8.03302310014264e-05" c="1.28249515992415e-05" d="-9.6905685050810894e-07" /> - <width sOffset="32.193676781307857" a="2.4928755952880897" b="-3.0318850457473803e-05" c="2.3692838285902366e-05" d="-3.4706259321731025e-06" /> - <width sOffset="36.393268240784579" a="2.492909072159744" b="-1.4948163031260672e-05" c="1.4498451227323846e-07" d="-9.8891471925955345e-08" /> - <width sOffset="46.507169382231808" a="2.4926704092643233" b="-4.2362566549556128e-05" c="-2.2844291743506063e-07" d="-3.4753058875426225e-08" /> - <width sOffset="56.621070523679037" a="2.4921826366403366" b="-5.7648239766656386e-05" c="-3.5995863206350864e-07" d="1.3442206390270478e-08" /> - <width sOffset="66.734971665126267" a="2.4915766742980709" b="-6.0804361753315911e-05" c="3.4938400853826996e-07" d="6.2100766295620408e-09" /> - <width sOffset="76.848872806573439" a="2.4910038685358868" b="-5.1831386332193679e-05" c="6.817881052423064e-07" d="2.3825163772473817e-08" /> - <width sOffset="86.962773948020669" a="2.4905740403888847" b="-3.0729012122508357e-05" c="1.0448839091171255e-06" d="3.9416328909020518e-08" /> - <width sOffset="97.076675089467898" a="2.4904109110117938" b="2.5024996638710805e-06" c="9.2600741388828833e-07" d="8.6774555695934613e-08" /> - <width sOffset="107.19057623091513" a="2.4906207168401631" b="4.7862361810675574e-05" c="1.3903805715565267e-06" d="9.568410015825195e-08" /> - <width sOffset="117.30447737236236" a="2.4913460064904758" b="0.00010534957091598107" c="2.6574718686077199e-06" d="5.1685131172807309e-08" /> - <width sOffset="127.41837851380959" a="2.4927368085033335" b="0.0001749651571310031" c="3.9650287139243523e-06" d="-3.729807753449329e-08" /> - <width sOffset="131.97577607292035" a="2.4936130169163118" b="0.00020878155255210325" c="-2.5729058577240589e-05" d="6.673092350244461e-07" /> - <width sOffset="137.53227965525681" a="2.4940932151802926" b="-1.5336678257950797e-05" c="-1.4847284943065557e-05" d="7.1606408498009924e-07" /> - <width sOffset="147.64618079670399" a="2.4931601699565613" b="-9.5923896524741309e-05" c="6.654372797101669e-06" d="6.5097320666772157e-07" /> - <width sOffset="151.9755998975717" a="2.4929224304235129" b="-1.6994881489042993e-06" c="-1.7464375321508689e-05" d="8.489985347355214e-07" /> - <width sOffset="157.76008193815122" a="2.4924925614695486" b="-0.00011852115390705898" c="-1.4254947210547149e-06" d="9.0950902619203281e-07" /> - <width sOffset="167.87398307959845" a="2.4920889775502069" b="0.00013174797401608075" c="1.8750249253168257e-05" d="4.1438119740464018e-06" /> - <width sOffset="170.05161354625429" a="2.4925075820457412" b="0.00027236099673437172" c="-9.9468488522833071e-06" d="1.4820457091178282e-07" /> - <width sOffset="177.98788422104568" a="2.4941166981200142" b="0.0001424829514992464" c="-6.1155662145963993e-06" d="1.0055549987103229e-07" /> - <width sOffset="188.1017853624929" a="2.4950362200457361" b="4.9636254058265809e-05" c="-2.4986959136770955e-06" d="7.8099963183402647e-08" /> - <width sOffset="198.21568650394013" a="2.4953634412957575" b="2.3059896286025213e-05" c="7.0597599545228251e-07" d="8.2816496462189726e-08" /> - <width sOffset="208.32958764538731" a="2.4957545605144658" b="6.2754384937534202e-05" c="3.5233560734252751e-06" d="1.1181321590791453e-07" /> - <width sOffset="217.65330381698377" a="2.4967365834190414" b="0.00015761626214168205" c="-3.2311176831214998e-05" d="8.1012209023890031e-07" /> - <width sOffset="218.44348878683454" a="2.496841354273216" b="0.00010807015151392867" c="-3.2461342769624356e-05" d="9.0696385996721034e-07" /> - <width sOffset="228.55738992828176" a="2.4955521714687716" b="-0.00027022876133686927" c="-5.92681712203974e-06" d="8.8597780167381186e-07" /> - <width sOffset="238.67129106972899" a="2.4931294425646806" b="-0.00011823259015276803" c="9.6952464753411451e-06" d="4.2555213858772095e-06" /> - <width sOffset="241.15331236649391" a="2.4929607819166737" b="8.5425475343538487e-06" c="-2.5830515661897698e-05" d="9.2769901383667791e-07" /> - <width sOffset="248.78519221117622" a="2.4919338478571653" b="-0.00022362510707267199" c="-4.3813808198628344e-06" d="5.942771905541745e-07" /> - <width sOffset="258.89909335262348" a="2.4898387658411929" b="-0.00012988319432429224" c="1.7839835641395795e-05" d="1.1504056825148953e-07" /> - <width sOffset="264.2293522569488" a="2.4896707360492281" b="7.0104171764039059e-05" c="2.1280215818310441e-05" d="-1.142689454356432e-06" /> - <width sOffset="269.01299449407065" a="2.4903679647344275" b="0.00019525276289796028" c="8.1007591228853038e-06" d="-2.5642761743066491e-07" /> - <width sOffset="279.12689563551783" a="2.4929060765788975" b="0.00028042260737981545" c="1.0149147343832143e-07" d="-2.5873496431157212e-07" /> - <width sOffset="289.24079677696511" a="2.4954849476620131" b="0.00020307678500694189" c="-8.592128962185657e-06" d="-2.1527066867986923e-07" /> - <width sOffset="299.3546979184124" a="2.4964372381143525" b="-3.6783854348301716e-05" c="-5.4985461080785715e-06" d="-6.0645691748370419e-06" /> - <width sOffset="300.67448885705051" a="2.4963651717957926" b="-8.2988392282361853e-05" c="-8.3266015039282067e-06" d="2.5479998819738709e-07" /> - <width sOffset="309.46859905985957" a="2.4951647042018212" b="-0.00017032257301681367" c="-1.7463953498838415e-06" d="2.3691661272150012e-07" /> - <width sOffset="319.58250020130674" a="2.4935085427094137" b="-0.000132945003797019" c="7.1819232678137001e-06" d="6.4157004233666663e-08" /> - <width sOffset="327.42471522048629" a="2.492938592951047" b="-8.4635987325039005e-06" c="4.7735536207401732e-05" d="-5.3736402638438843e-06" /> - <width sOffset="329.69640134275403" a="2.4931027122212299" b="0.00012522376740093343" c="2.448712946439605e-05" d="-6.7515097685001487e-07" /> - <width sOffset="336.78868779684115" a="2.4949816933310807" b="0.00037068189048304807" c="-4.3656791983398049e-05" d="2.0162862560633138e-06" /> - <width sOffset="339.8103024842012" a="2.4957587828091565" b="0.0001620809028227135" c="-2.9061139533189658e-05" d="5.4628726314819797e-07" /> - <width sOffset="349.92420362564849" a="2.4949905276312725" b="-0.00025812127653194366" c="-1.2301671632724598e-05" d="6.0130413209108349e-07" /> - <width sOffset="360.03810476709566" a="2.4917436501292416" b="-0.00032243306181637662" c="1.5534349303476135e-05" d="-4.9056377455961614e-06" /> - <width sOffset="361.54124086436275" a="2.4912774273550644" b="-0.00030898423998681443" c="0.00010837072786261036" d="-6.0641843840831918e-06" /> - <width sOffset="370.15200590854283" a="2.4927803504464006" b="0.00020843366060937455" c="-5.400631548832894e-05" d="-3.7197080872653156e-06" /> - <width sOffset="371.79137913959914" a="2.4929605180093217" b="1.3700007230369685e-06" c="8.432002889372989e-05" d="-5.3374341781004454e-06" /> - <width sOffset="380.26590704999012" a="2.4957793205826331" b="0.00028054936561382378" c="-5.1596925795340779e-05" d="-5.1921790008444979e-06" /> - <width sOffset="384.172577711543" a="2.4957782803950099" b="-0.00036032531306754659" c="-1.7093361850190796e-06" d="1.0567628475897012e-06" /> - <width sOffset="390.37980819143729" a="2.4937285362539887" b="-0.00025939550150285345" c="1.9968835319974936e-05" d="4.6847820391045154e-07" /> - <width sOffset="395.67276907828182" a="2.4929844697209766" b="-8.6331109521811146e-06" c="-6.2247609805501687e-06" d="2.7662084203029374e-07" /> - <width sOffset="400.49370933288458" a="2.4928291716245079" b="-4.9364291721422826e-05" c="6.9405265767491707e-07" d="7.7099039366902293e-07" /> - <width sOffset="410.28806688212012" a="2.493136657494663" b="0.00018611333772722521" c="-4.2599852608154851e-05" d="1.4692114131487121e-06" /> - <width sOffset="410.60761047433175" a="2.493191826966255" b="0.00015933837308324255" c="-4.42809831081068e-05" d="1.7674209067344689e-06" /> - <width sOffset="420.72151161577904" a="2.4921023184239459" b="-0.00019399486183116054" c="8.8572826681661058e-06" d="1.5187694187489025e-06" /> - <width sOffset="428.67231111215187" a="2.4918831701278865" b="0.00023487809055699414" c="3.0457111096774619e-06" d="-3.2050724183141922e-06" /> - <width sOffset="430.83541275722621" a="2.4923730471332854" b="0.00020306477053172445" c="-1.4996944636207259e-05" d="-8.2752303439095137e-07" /> - <width sOffset="435.6724622398508" a="2.4929107442501" b="-1.0194377368571224e-07" c="1.6433359654741986e-05" d="-4.9793060263452284e-07" /> - <width sOffset="440.94931389867338" a="2.4932946325612644" b="0.00013173598151187889" c="8.7304002859189871e-06" d="-4.8435665346929475e-07" /> - <width sOffset="451.06321504012067" a="2.4950189420828748" b="0.00015969681840317091" c="-6.1462520289212491e-06" d="-3.7085268657657895e-07" /> - <width sOffset="456.51663376762906" a="2.4956469013773246" b="5.9573419286332501e-05" c="-4.5798542045418922e-06" d="3.0462109354577316e-07" /> - <width sOffset="461.17711618156784" a="2.4958559029892387" b="3.6733957816454069e-05" c="-1.217294303852307e-06" d="-1.6810176356766392e-08" /> - <width sOffset="471.29101732301513" a="2.496085517206728" b="6.9521802553249728e-06" c="-2.8293638808214481e-06" d="1.0859517092645828e-07" /> - <width sOffset="481.4049184644623" a="2.4959787607515436" b="-1.6954708230846406e-05" c="1.2585755577106787e-07" d="-6.705869382977517e-08" /> - <width sOffset="491.51881960590958" a="2.4957507802924184" b="-3.4987388283174055e-05" c="-1.202010363731488e-06" d="3.9614517891643012e-08" /> - <width sOffset="501.63272074735676" a="2.4953149501046585" b="-4.7144790754175621e-05" c="-3.6364620645770156e-07" d="3.4957591508353123e-09" /> - <width sOffset="511.74662188880393" a="2.4948045511950472" b="-5.3427800259861025e-05" c="6.7915089786944911e-07" d="-4.6099254960435111e-08" /> - <width sOffset="521.86052303025122" a="2.4942859662345622" b="-5.383668633395243e-05" c="-3.2401893299361438e-07" d="3.9172466737266925e-08" /> - <width sOffset="531.97442417169839" a="2.4937488493990365" b="-4.8369905295265954e-05" c="3.0549222424884434e-07" d="1.6820597984056299e-08" /> - <width sOffset="542.08832531314567" a="2.4933082919977156" b="-3.7028681806173597e-05" c="4.540501532897661e-07" d="2.6172035390024251e-08" /> - <width sOffset="552.20222645459285" a="2.49300730938082" b="-1.9812754353019468e-05" c="1.0978851064400888e-06" d="-8.7049438366112417e-10" /> - <width sOffset="561.01961614780589" a="2.4929173724353486" b="-6.5482602038901175e-07" c="-5.5569640443779203e-05" d="-2.0606368825603982e-06" /> - <width sOffset="562.24035881544171" a="2.492830013838625" b="-0.00014553964976391181" c="1.5642409840831476e-05" d="-3.3385385430400495e-06" /> - <width sOffset="562.31612759604002" a="2.4928190748262669" b="-0.00014322673585400684" c="2.4873146167430722e-05" d="-5.8766380470466608e-07" /> - <width sOffset="572.43002873748731" a="2.4933068186138927" b="0.00017956419875929429" c="1.0825416602714839e-05" d="-6.9299182522295185e-07" /> - <width sOffset="582.54392987893448" a="2.4955133134858478" b="0.0001858781127420002" c="-6.4137556747555138e-06" d="-5.8656198032025338e-07" /> - <width sOffset="592.65783102038176" a="2.4961303627213534" b="-0.00012385809701263547" c="-2.1074182367973609e-05" d="-1.1331763850176888e-06" /> - <width sOffset="597.5082304943727" a="2.4949044929712407" b="-0.00040827310107823499" c="1.6816104925809997e-05" d="5.8233217779033951e-07" /> - <width sOffset="602.77173216182894" a="2.4933063448438366" b="-0.00018285033067744411" c="2.612137591100106e-05" d="1.8471745107549325e-06" /> - <width sOffset="605.50854288380401" a="2.4930394360470265" b="1.6349405339625934e-06" c="-1.7615978983280584e-05" d="4.5676844899329083e-07" /> - <width sOffset="612.88563330327622" a="2.492276189569024" b="-0.00018370037722199189" c="-8.7290847835593953e-06" d="4.8619581883220423e-07" /> - <width sOffset="622.99953444472339" a="2.4900283545791702" b="-0.00021107021422062599" c="5.2450984225438743e-06" d="2.8686899263654878e-07" /> - <width sOffset="630.50269696945907" a="2.4888611221287178" b="-8.3910585897965751e-05" c="4.0619520514444621e-05" d="-3.7793399262082373e-06" /> - <width sOffset="633.11343558617057" a="2.4888516622473142" b="5.0903870348003233e-05" c="1.8759836264247355e-05" d="-5.5608065965220721e-07" /> - <width sOffset="643.22733672761785" a="2.4907101619248042" b="0.00025972799506562643" c="7.3820849627352503e-07" d="-5.8658453075413177e-07" /> - <width sOffset="653.34123786906503" a="2.492805679780191" b="9.4653382378549983e-05" c="-1.9132583815053314e-05" d="1.2765166188850828e-09" /> - <width sOffset="655.75375443096095" a="2.4929226944007441" b="2.3603206130112014e-06" c="0.0021099014356190985" d="-0.00019493823308694389" /> - <width sOffset="656.30724125713016" a="2.4935373105795557" b="0.0021588090002748503" c="-0.00064382760835765096" d="4.6113540248475727e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276662537" type="pole" s="813.99260546588505" t="-12.447916806466203" height="1.6981278583597827" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5174023" s="173.24394588066372" t="-11.801747053511676" orientation="none" validLength="38.419187432359934" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="38.419187432359934" s="173.24394588066372" distance="0" tStart="-11.801747053511676" tEnd="-10.541276624112665" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273609479" s="211.66313331302365" t="-10.541276624112665" orientation="none" validLength="35.495968171895043" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="35.495968171895043" s="211.66313331302365" distance="0" tStart="-10.541276624112665" tEnd="-10.505318945906687" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542044935" s="247.15910148491869" t="-10.505318945906687" orientation="none" validLength="244.19030354830235" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="244.19030354830235" s="247.15910148491869" distance="0" tStart="-10.505318945906687" tEnd="-10.681055205340535" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810480391" s="491.34940503322105" t="-10.681055205340535" orientation="none" validLength="16.999372581351963" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.999372581351963" s="491.34940503322105" distance="0" tStart="-10.681055205340535" tEnd="-10.823966568016923" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078915847" s="508.34877761457301" t="-10.823966568016923" orientation="none" validLength="12.82295233193588" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.82295233193588" s="508.34877761457301" distance="0" tStart="-10.823966568016923" tEnd="-11.05350525172746" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5174060" s="717.17213419827021" t="-10.823650710193125" orientation="none" validLength="14.609745537654817" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.609745537654817" s="717.17213419827021" distance="0" tStart="-10.823650710193125" tEnd="-10.771670447792182" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273609516" s="731.78187973592503" t="-10.771670447792182" orientation="none" validLength="29.172935821379951" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="29.172935821379951" s="731.78187973592503" distance="0" tStart="-10.771670447792182" tEnd="-11.055792826803286" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542044972" s="760.95481555730498" t="-11.055792826803286" orientation="none" validLength="19.751454581601593" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.751454581601593" s="760.95481555730498" distance="0" tStart="-11.055792826803286" tEnd="-11.82628890974836" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810480428" s="780.70627013890658" t="-11.82628890974836" orientation="none" validLength="27.354238504306295" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="27.354238504306295" s="780.70627013890658" distance="0" tStart="-11.82628890974836" tEnd="-11.990830099155408" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078915884" s="808.06050864321287" t="-11.990830099155408" orientation="none" validLength="33.535884810168" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="33.535884810168" s="808.06050864321287" distance="0" tStart="-11.990830099155408" tEnd="-11.851228874742594" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741986" s="841.59639345338087" t="-11.851228874742594" orientation="none" validLength="28.494769715402299" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="28.494769715402299" s="841.59639345338087" distance="0" tStart="-11.851228874742594" tEnd="-11.561479601234776" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741987" s="870.09116316878317" t="-11.561479601234776" orientation="none" validLength="9.8182361371250408" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.8182361371250408" s="870.09116316878317" distance="0" tStart="-11.561479601234776" tEnd="-11.540268529948388" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="9100479" s="0" t="9.4598396879856601" orientation="none" validLength="43.928377331721045" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="43.928377331721045" s="0" distance="0" tStart="9.4598396879856601" tEnd="9.3258344432444353" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="277535935" s="43.928377331721045" t="9.3258344432444353" orientation="none" validLength="12.748959984626516" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.748959984626516" s="43.928377331721045" distance="0" tStart="9.3258344432444353" tEnd="9.4757535912788313" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="545971391" s="56.677337316347561" t="9.4757535912788313" orientation="none" validLength="83.327611659886472" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="83.327611659886472" s="56.677337316347561" distance="0" tStart="9.4757535912788313" tEnd="9.5221227447358796" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="814406847" s="140.00494897623403" t="9.5221227447358796" orientation="none" validLength="8.9986109371997145" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.9986109371997145" s="140.00494897623403" distance="0" tStart="9.5221227447358796" tEnd="9.7052104712242464" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1082842303" s="149.00355991343375" t="9.7052104712242464" orientation="none" validLength="9.1080381641382075" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.1080381641382075" s="149.00355991343375" distance="0" tStart="9.7052104712242464" tEnd="9.7063348632437982" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741988" s="158.11159807757195" t="9.7063348632437982" orientation="none" validLength="8.4983729455406376" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.4983729455406376" s="158.11159807757195" distance="0" tStart="9.7063348632437982" tEnd="9.5035004050535328" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741989" s="166.60997102311259" t="9.5035004050535328" orientation="none" validLength="322.3661555828985" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="322.3661555828985" s="166.60997102311259" distance="0" tStart="9.5035004050535328" tEnd="9.4133201768201467" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741990" s="488.97612660601112" t="9.4133201768201467" orientation="none" validLength="29.687032284209749" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="29.687032284209749" s="488.97612660601112" distance="0" tStart="9.4133201768201467" tEnd="9.3323403192418688" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741991" s="518.66315889022087" t="9.3323403192418688" orientation="none" validLength="146.50654577425405" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="146.50654577425405" s="518.66315889022087" distance="0" tStart="9.3323403192418688" tEnd="9.3482624267638315" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741992" s="665.16970466447492" t="9.3482624267638315" orientation="none" validLength="39.695189254160027" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="39.695189254160027" s="665.16970466447492" distance="0" tStart="9.3482624267638315" tEnd="9.2698445116010397" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741993" s="704.86489391863495" t="9.2698445116010397" orientation="none" validLength="55.794505089197514" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="55.794505089197514" s="704.86489391863495" distance="0" tStart="9.2698445116010397" tEnd="9.2906056164566344" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741994" s="760.65939900783246" t="9.2906056164566344" orientation="none" validLength="77.966114669345075" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="77.966114669345075" s="760.65939900783246" distance="0" tStart="9.2906056164566344" tEnd="9.4597813199504763" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741995" s="838.62551367717754" t="9.4597813199504763" orientation="none" validLength="21.272981999659805" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="21.272981999659805" s="838.62551367717754" distance="0" tStart="9.4597813199504763" tEnd="9.3991886615170639" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073741996" s="859.89849567683734" t="9.3991886615170639" orientation="none" validLength="20.010904092094165" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="20.010904092094165" s="859.89849567683734" distance="0" tStart="9.3991886615170639" tEnd="9.1363003697940783" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412699" s="556.63822435305929" t="-10.917745139339365" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848155" s="607.55840804089019" t="-10.387060850270846" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283611" s="655.98431171808181" t="-10.111630043269159" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719067" s="707.83777135666173" t="-11.442665160023115" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154523" s="760.06637069754913" t="-11.179350402893427" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741997" s="803.74064734911735" t="-11.733197670159141" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741998" s="855.20450351923387" t="-12.809023651464782" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9489013" s="30.698986164179722" t="-11.625805657208062" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277924469" s="82.467154060101436" t="-11.817444831033553" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546359925" s="131.93082504219282" t="-11.666584230867793" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814795381" s="189.20039313072655" t="-11.142935638099811" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083230837" s="239.97423010680578" t="-11.180259676313293" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073741999" s="293.40017236081337" t="-10.819397815695147" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742000" s="341.45739566418655" t="-10.948977544912019" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742001" s="388.6983739946823" t="-10.457316240156077" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8227081" type="103" subtype="20" country="DEU" zOffset="1.6981278583597827" s="813.99260546588505" t="-12.447916806466203" orientation="+" /> - </signals> - </road> - <road name="" length="5.0000000000012479" id="9100480" junction="33554629"> - <link> - <predecessor elementType="road" elementId="4940030" contactPoint="end" /> - <successor elementType="road" elementId="33782019" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1442.7188584116122" y="-37.975951807246112" hdg="0.43633231299858233" length="5.0000000000012479"> - <paramPoly3 aU="0" bU="5.0894926213886835" cU="-8.6342706190357852" dU="8.5441038238517439" aV="-0" bV="-0" cV="0.0026531889047518575" dV="-0.077484917610545434" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.26297691306499" b="-0.0074693377896188316" c="8.5016479576216142e-05" d="-2.8157037410633443e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.021856845448807921" b="9.5390310689138834e-06" c="-0" d="-1.0842021724846924e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="8.1301074543726468" b="-0.014571297946810346" c="0.01150008980747428" d="-0.0016673864407328652" /> - <laneOffset s="3.8393220840815991" a="8.1493168022215983" b="-0" c="-0.00043877885829565419" d="2.9792040826741926e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000012479" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8146197255738157" b="-0.009322522737274368" c="0.011347528922335559" d="-0.0016841390020220404" /> - <width sOffset="3.8393220840815991" a="3.8507839247141176" b="0.0033364963935582914" c="-0.00078429517900038197" d="1.3039479536912784e-05" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8747555124847315" b="0.0086196980415080299" c="-0.0023484712944917786" d="0.00012884493409147935" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.8999761044278167" b="-0.0010906886745193113" c="0.0003532604345983896" d="-2.7266117737691361e-07" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.5925037676165599" b="-0.00033579098416836387" c="-0.0068289325426794546" d="0.00079624768975796736" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000012479" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <successor id="-5" /> - </link> - <width sOffset="0" a="0.21684866959479621" b="-0.0038377284122688097" c="0.00068852897146473406" d="-2.0358956844660847e-05" /> - <width sOffset="3.3159711411229673" a="0.21095139240994332" b="5.6975202395663505e-05" c="0.0070580086258207964" d="-0.0029413160858618873" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="9100472" s="0" t="10.644166221929725" orientation="none" validLength="5.0000000000012479" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.0000000000012479" s="0" distance="0" tStart="10.644166221929725" tEnd="10.610608623147797" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="710.67644354620177" id="33781870" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554459" /> - <successor elementType="junction" elementId="33554492" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-699.89308644884193" y="-627.7457745232" hdg="1.2151937612974701" length="81.002718620908524"> - <paramPoly3 aU="0" bU="80.940244788552306" cU="0.27304678246960068" dU="-0.21700856205832425" aV="-0" bV="1.0658141036401503e-14" cV="0.59461598861899945" dV="-1.2453905903195428" /> - </geometry> - <geometry s="81.002718620908524" x="-671.08374149424878" y="-552.04344290694394" hdg="1.1836964194078403" length="184.53983328133188"> - <paramPoly3 aU="0" bU="183.95678619546979" cU="1.1745838549396233" dU="-6.285022191467144" aV="-0" bV="-0" cV="-43.177958532953269" dV="3.5865075306708403" /> - </geometry> - <geometry s="265.5425519022404" x="-566.90645021923183" y="-401.37628949403779" hdg="0.75963389673488846" length="142.01739916214007"> - <paramPoly3 aU="0" bU="141.91904821878057" cU="-0.62357092325676788" dU="-0.41388113444931118" aV="-0" bV="-0" cV="-25.435455634213834" dV="9.0189556363538088" /> - </geometry> - <geometry s="407.55995106438047" x="-453.44954848492534" y="-316.26073828320597" hdg="0.59047080485336878" length="62.502266889590011"> - <paramPoly3 aU="0" bU="62.401649013434316" cU="0.42141581952308532" dU="-0.32509719354630501" aV="-0" bV="7.1054273576010019e-15" cV="1.1510376299465324" dV="-1.445669385539667" /> - </geometry> - <geometry s="470.0622179539705" x="-401.36978425681411" y="-281.70960335434108" hdg="0.55780281954742761" length="101.51871143043824"> - <paramPoly3 aU="0" bU="101.19924335475625" cU="0.63942591805292182" dU="-1.2580846555341241" aV="-0" bV="-0" cV="-15.039635715578452" dV="2.8096190331054034" /> - </geometry> - <geometry s="571.58092938440871" x="-309.56155352482619" y="-238.84614479266568" hdg="0.34187523264838759" length="139.09551416179306"> - <paramPoly3 aU="0" bU="139.35679565633433" cU="-0.71646902425318437" dU="-3.1106917220783594" aV="-0" bV="2.1316282072803006e-14" cV="-27.388927480437765" dV="0.38111073398639317" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.08371747948448" b="-0.00025915965332692036" c="-9.7245200862250686e-06" d="-4.9022674158495201e-08" /> - <elevation s="10.009527373890165" a="158.0800999450413" b="-0.00046857019236674316" c="-1.3563246577232664e-05" d="1.8741657075430724e-07" /> - <elevation s="20.019054747780331" a="158.0742388213005" b="-0.00068376141062725265" c="-8.0845017735923559e-05" d="6.9985608245740008e-06" /> - <elevation s="30.028582121670496" a="158.06631336207772" b="-0.00019863141925963867" c="4.9224409210158043e-05" d="-3.4884103028893501e-06" /> - <elevation s="40.038109495560661" a="158.06575859000347" b="-0.00026172344051336239" c="-1.5842479638873305e-05" d="5.481504028954508e-07" /> - <elevation s="50.047636869450827" a="158.06210131254099" b="-0.00041411629157750191" c="0.00010965310492456974" d="-8.1073615732974313e-06" /> - <elevation s="60.057164243340992" a="158.06081186253564" b="-0.00065580997245234232" c="-3.531638348630794e-05" d="1.6490842389889569e-06" /> - <elevation s="70.066691617231157" a="158.05236294582591" b="-0.00086714217966803511" c="2.9456251501266645e-05" d="-4.9022674158179575e-08" /> - <elevation s="80.076218991121323" a="158.04658534015491" b="-0.00029219070723748332" c="0.00037315914142042802" d="-2.8466792082191234e-05" /> - <elevation s="90.085746365011488" a="158.05249946806271" b="-0.001378215628326862" c="-0.00018847729143304902" d="9.1535129725527379e-06" /> - <elevation s="100.09527373890165" a="158.02900022146855" b="-0.0024000639234261689" c="-1.6180793012862856e-05" d="9.9573046176841105e-07" /> - <elevation s="110.10480111279182" a="158.00435413113163" b="-0.0024246994931485465" c="2.4346970540085934e-06" d="3.3638447764073766e-08" /> - <elevation s="120.11432848668198" a="157.9803617037185" b="-0.0023658483868765619" c="0.00013537608790611578" d="-7.0286634256164138e-06" /> - <elevation s="123.00370165140839" a="157.97448652459349" b="-0.001759580226638011" c="0.00013682330429014292" d="-6.9563145118348107e-06" /> - <elevation s="130.12385586057215" a="157.96638351378931" b="-0.000869158573310646" c="8.0454715971185197e-05" d="-2.2104058687077021e-06" /> - <elevation s="140.13338323446231" a="157.96352772690202" b="7.7082866110421791e-05" c="0.00012504472970374211" d="-8.8289164186940439e-06" /> - <elevation s="150.14291060835248" a="157.96797342585415" b="-7.3364157127969067e-05" c="8.3342377665143342e-06" d="5.2427967731333504e-07" /> - <elevation s="160.15243798224265" a="157.96859987752427" b="0.00025106315147336818" c="-2.7546501851371925e-05" d="4.6798705562952047e-06" /> - <elevation s="170.16196535613281" a="157.97304625877666" b="0.0011062458766698557" c="7.4386031841444739e-05" d="-7.7715752851440272e-07" /> - <elevation s="180.17149273002298" a="157.99079266024182" b="0.0023617921941690443" c="8.4931549396908478e-05" d="-2.5612105797309789e-06" /> - <elevation s="190.18102010391314" a="158.02037389196263" b="0.0032922135633421897" c="3.8530459536413966e-07" d="3.3708084291425874e-06" /> - <elevation s="200.19054747780331" a="158.05674644975576" b="0.0043130973409205948" c="7.2995230791188205e-05" d="-8.4476129595449023e-07" /> - <elevation s="210.20007485169347" a="158.10638477631394" b="0.0055204813422279177" c="6.2430185295635847e-05" d="-8.4476129595450347e-07" /> - <elevation s="220.20960222558364" a="158.16704992743269" b="0.0065163631193469766" c="-1.7087803626448909e-05" d="3.3570904303202833e-06" /> - <elevation s="230.2191295994738" a="158.23393029935411" b="0.0071833285416465237" c="6.8431506422442158e-05" d="-1.782957676831796e-06" /> - <elevation s="240.22865697336397" a="158.31090016072721" b="0.0080173556123541087" c="-6.6002327266334647e-05" d="9.9113246705758047e-06" /> - <elevation s="250.23818434725413" a="158.39447696623827" b="0.0096751172432323774" c="0.00040191251732684465" d="-1.9843792986105558e-05" /> - <elevation s="260.2477117211443" a="158.51168762395014" b="0.0117565390777603" c="2.5142421479194154e-06" d="2.6087807618200938e-07" /> - <elevation s="270.25723909503449" a="158.62987855162842" b="0.011885284451841937" c="4.5152074769944052e-05" d="4.0710173835024822e-07" /> - <elevation s="280.26676646892463" a="158.75377671331549" b="0.012911549657629667" c="5.5848178346116708e-05" d="-2.0773631483522415e-07" /> - <elevation s="290.27629384281477" a="158.88840235705121" b="0.013967137695592078" c="3.334250858686569e-05" d="1.465791208198682e-06" /> - <elevation s="300.28582121670496" a="159.03301739610953" b="0.015075198870486969" c="0.00023720884482086006" d="-1.0150732396503993e-05" /> - <elevation s="310.29534859059515" a="159.19749934443752" b="0.016772870649122341" c="4.4166455209729208e-05" d="-9.6894771790829199e-07" /> - <elevation s="320.30487596448529" a="159.36884119785978" b="0.017365802863120863" c="5.2243931786145171e-05" d="3.4685315986401726e-07" /> - <elevation s="330.31440333837543" a="159.54824687534267" b="0.018515931312183018" c="6.9027227690864781e-05" d="-1.3437231490496681e-07" /> - <elevation s="340.32393071226562" a="159.74036372191838" b="0.019857402618434102" c="0.0001036608998618984" d="-3.6821628298931889e-06" /> - <elevation s="347.05664092452645" a="159.87763298644771" b="0.020752509667101172" c="8.4362759875094884e-05" d="-4.1760324298238625e-06" /> - <elevation s="350.33345808615582" a="159.94639408060931" b="0.021170871516430486" c="-3.0093456669526641e-05" d="4.9307463911129098e-06" /> - <elevation s="360.34298546004595" a="160.16023426889305" b="0.022050472843716855" c="-5.5299312485269892e-06" d="6.4663915497618437e-06" /> - <elevation s="370.35251283393609" a="160.38687992457133" b="0.02388338453691019" c="0.00017683907839026249" d="-6.227846146722687e-06" /> - <elevation s="380.36204020782628" a="160.63741327238893" b="0.025551620087688125" c="4.5466904448626929e-05" d="-2.7206602580811333e-07" /> - <elevation s="390.37156758171648" a="160.89745542689045" b="0.026380049130742812" c="-1.5440311536707924e-05" d="4.5997054903198917e-06" /> - <elevation s="400.38109495560661" a="161.16457314107564" b="0.027453490975259655" c="2.4929472454854703e-05" d="4.2251883790902591e-06" /> - <elevation s="410.39062232949675" a="161.44610458663104" b="0.029222528410432245" c="9.0183408075800284e-05" d="-9.2228804492422156e-07" /> - <elevation s="420.40014970338694" a="161.74671889125196" b="0.030750701110432911" c="0.00011710984170505885" d="-5.4757432343178972e-06" /> - <elevation s="430.40967707727714" a="162.06076077658261" b="0.031449274814434151" c="2.2856822787750553e-05" d="-2.4762425888774508e-06" /> - <elevation s="440.41920445116727" a="162.37535986642928" b="0.031162557824868039" c="-4.1923943077707126e-05" d="5.7833865588768573e-07" /> - <elevation s="450.42873182505741" a="162.68366194864873" b="0.030497112470324366" c="1.2786091980613104e-06" d="-4.1005524866587324e-06" /> - <elevation s="460.43825919894761" a="162.98493945151114" b="0.029290198105429995" c="-0.00012223232124692048" d="3.1971452018229923e-06" /> - <elevation s="470.4477865728378" a="163.26908024898387" b="0.027804194629472447" c="2.6980204262640062e-06" d="-7.0279392338961723e-06" /> - <elevation s="480.45731394672794" a="163.5406093669057" b="0.025745805295845976" c="-0.00010307437789781322" d="-4.7054336087269782e-07" /> - <elevation s="490.46684132061807" a="163.78751373251325" b="0.023540921562667752" c="-0.00027690203710832118" d="1.0929358312096785e-05" /> - <elevation s="500.47636869450827" a="164.00636486597961" b="0.021282662676836081" c="-7.5715697609021591e-05" d="8.1814548282147974e-07" /> - <elevation s="507.06530178511071" a="164.14354181439296" b="0.020391448346292706" c="-3.6962449327153389e-05" d="1.6415635901460888e-06" /> - <elevation s="510.48589606839846" a="164.2129259077322" b="0.02019620243379391" c="0.00012085611411556244" d="-1.2722112776050928e-05" /> - <elevation s="520.4954234422886" a="164.41443049012292" b="0.01879171780216557" c="-8.5193327854090348e-05" d="3.5287474652014527e-07" /> - <elevation s="530.50495081617873" a="164.59434501427253" b="0.017192292145935994" c="-0.00018353903942130002" d="4.433270868808787e-06" /> - <elevation s="540.51447819006898" a="164.7524887937978" b="0.014850530781031355" c="-0.00021665200428638663" d="1.2880435924027411e-05" /> - <elevation s="550.52400556395912" a="164.89234637160888" b="0.014384859734453522" c="-1.0666521862227791e-05" d="3.5287474652040981e-07" /> - <elevation s="560.53353293784926" a="165.03561721755585" b="0.014277390287552325" c="3.9236686901688661e-05" d="-2.574649514442538e-06" /> - <elevation s="570.5430603117394" a="165.17987627974793" b="0.014289004336402969" c="2.2334239537236519e-05" d="-2.7549136259761066e-06" /> - <elevation s="580.55258768562953" a="165.32237734625483" b="0.013908065036929549" c="-4.5435020022593651e-05" d="1.9663977119548147e-06" /> - <elevation s="590.56211505951978" a="165.4590103637552" b="0.013589542809065108" c="7.9932904891603525e-06" d="-6.9920066445591304e-07" /> - <elevation s="600.57164243340992" a="165.59513491634411" b="0.013539400846475352" c="-1.7042284763053751e-05" d="2.136950618206155e-06" /> - <elevation s="603.08034401013185" a="165.62902771527351" b="0.013494240065217581" c="-9.1330271059795277e-05" d="1.8931486788441273e-06" /> - <elevation s="610.58116980730006" a="165.72590613609867" b="0.012443674353247029" c="0.00016860179956492777" d="-1.3235424115936575e-05" /> - <elevation s="620.59069718119031" a="165.85408046725823" b="0.011840726240309529" c="-0.00010919960299883647" d="1.5009956631447454e-06" /> - <elevation s="630.60022455508044" a="165.96316505268231" b="0.010105810549936754" c="-2.298825803524337e-05" d="-5.3927916862606117e-06" /> - <elevation s="640.60975192897058" a="166.05660801165351" b="0.0080246856308076302" c="-0.00018815326723464862" d="8.2654887493833922e-06" /> - <elevation s="650.61927930286072" a="166.12636926199417" b="0.0067424088527768909" c="-2.4321456293874205e-05" d="-2.4280903472150705e-06" /> - <elevation s="660.62880667675086" a="166.18898576878411" b="0.005525700522845442" c="-0.00015151137697425862" d="2.813669832754205e-06" /> - <elevation s="670.63833405064111" a="166.23193711742897" b="0.0033382961013800651" c="-0.0002194882690438365" d="1.2636704248914773e-05" /> - <elevation s="680.64786142453124" a="166.25603407092729" b="0.002742586819070796" c="-2.5295141446574086e-05" d="1.0907281233304537e-07" /> - <elevation s="690.65738879842138" a="166.28106111726464" b="0.0022689862216486549" c="2.1954748197365968e-05" d="-3.8844949732183661e-06" /> - <elevation s="700.66691617231163" a="166.30207664893035" b="0.001540929435864101" c="-5.4717402037970865e-05" d="1.0907281231449764e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028527093940823998" b="1.9594184551828032e-06" c="2.7993922163315515e-06" d="0" /> - <superelevation s="10.009527373890165" a="0.028827179686350624" b="5.8000604494431826e-05" c="2.6487569165673697e-06" d="1.5049192048466983e-08" /> - <superelevation s="20.019054747780331" a="0.029688211217602383" b="0.00011554957869014336" c="2.0394042055461064e-05" d="-1.7427410793508812e-06" /> - <superelevation s="30.028582121670496" a="0.031140373028231555" b="0" c="-5.3109127168752602e-05" d="2.8667317352582341e-06" /> - <superelevation s="40.038109495560661" a="0.02869426895209852" b="-0.00020153547766848314" c="1.8524131903931087e-05" d="-1.4230441643533788e-06" /> - <superelevation s="50.047636869450827" a="0.027105823267166131" b="-0.00025842697617635624" c="-5.570970114099729e-05" d="4.5702291728135618e-06" /> - <superelevation s="60.057164243340992" a="0.023520805167720722" b="0" c="7.8825810310719136e-05" d="-5.2500520997848573e-06" /> - <superelevation s="70.066691617231157" a="0.026153341249553548" b="0" c="-4.6919607873086207e-05" d="3.1249965571452071e-06" /> - <superelevation s="80.076218991121323" a="0.024586372763159815" b="0" c="3.9558950422780539e-05" d="-2.2157499093549021e-06" /> - <superelevation s="90.085746365011488" a="0.02632772022607871" b="0.00012594060142536053" c="-6.3748492566908192e-06" d="1.5750802988149849e-07" /> - <superelevation s="100.09527373890165" a="0.027107584558062489" b="4.5664635276166275e-05" c="-2.2810585140754195e-06" d="-5.4055459405952903e-23" /> - <superelevation s="110.10480111279182" a="0.027336125266470238" b="0" c="-7.1504580915365641e-05" d="4.7624347114120635e-06" /> - <superelevation s="120.11432848668198" a="0.024948095399932507" b="0" c="4.1298999060590199e-06" d="1.0811091881190581e-22" /> - <superelevation s="130.12385586057215" a="0.025361872707423631" b="8.2676692322249069e-05" c="4.1451390301651899e-05" d="-1.6971730232929185e-06" /> - <superelevation s="140.13338323446231" a="0.028640440046061838" b="0.0004023717988762701" c="2.5126307811417834e-05" d="-1.7633916687779462e-06" /> - <superelevation s="150.14291060835248" a="0.033416975778090538" b="0.00037535072023094556" c="-5.9738344781823673e-06" d="-4.1972931513273278e-07" /> - <superelevation s="160.15243798224265" a="0.036154606663983915" b="0.000129601356833575" c="-1.1280070589140487e-05" d="4.801596013914267e-07" /> - <superelevation s="170.16196535613281" a="0.036803230828443403" b="4.8107496924627564e-05" c="-1.970170496757251e-07" d="-1.4693123227513806e-07" /> - <superelevation s="180.17149273002298" a="0.037117673278696708" b="0" c="-6.13721061632214e-06" d="2.5767694292532694e-07" /> - <superelevation s="190.18102010391314" a="0.03676119637018925" b="-4.5410703205857436e-05" c="-7.4730333571278436e-06" d="6.4880901224257204e-07" /> - <superelevation s="200.19054747780331" a="0.036208593925083445" b="0" c="8.6426449585097943e-06" d="-3.7952533728049674e-07" /> - <superelevation s="210.20007485169347" a="0.036693894904592489" b="5.8942925269027784e-05" c="9.0234015192031176e-06" d="-7.9709008905786453e-07" /> - <superelevation s="220.20960222558364" a="0.037388575573038436" b="0" c="-6.4854780317150616e-05" d="4.3195366370859956e-06" /> - <superelevation s="230.2191295994738" a="0.035222628295221194" b="0" c="1.2791425619517095e-05" d="-8.5195002332701838e-07" /> - <superelevation s="240.22865697336397" a="0.035649821994197743" b="0" c="-5.268632927576482e-05" d="3.5090787212189514e-06" /> - <superelevation s="250.23818434725413" a="0.033890263008491822" b="0" c="3.9146512674570359e-05" d="-2.5985647408929048e-06" /> - <superelevation s="260.2477117211443" a="0.035206378029848544" b="2.6206006553570048e-06" c="-3.9271594314118677e-07" d="2.6156142940751543e-08" /> - <superelevation s="270.25723909503449" a="0.035219493516846459" b="2.6206006553570048e-06" c="7.0738731222323681e-06" d="-4.2869096652529714e-07" /> - <superelevation s="280.26676646892463" a="0.035524542929836964" b="1.538038932537002e-05" c="-1.7168996276137618e-06" d="9.4770921955519167e-08" /> - <superelevation s="290.27629384281477" a="0.035601518143823653" b="9.4951591581370309e-06" c="-7.6828749005127827e-07" d="9.4770921955518095e-08" /> - <superelevation s="300.28582121670496" a="0.035714627040862597" b="2.2600247307178124e-05" c="2.539669014367176e-05" d="-1.7666919351215855e-06" /> - <superelevation s="310.29534859059515" a="0.036713609101880477" b="0" c="-1.2152583080686202e-05" d="2.8310915444106218e-07" /> - <superelevation s="320.30487596448529" a="0.035779953158314212" b="-0.00015818856538674401" c="-1.6594046332753285e-05" d="1.0099418820502779e-06" /> - <superelevation s="330.31440333837543" a="0.03354682355093043" b="-0.00018682552213933448" c="1.0362297257148787e-05" d="-6.7318480777003682e-07" /> - <superelevation s="340.32393071226562" a="0.032039882802324234" b="-0.00018172257268503784" c="-5.6662949995129119e-06" d="2.5496395975659822e-07" /> - <superelevation s="350.33345808615582" a="0.029908909419441156" b="-0.00021852143692210226" c="-7.3143241786154506e-06" d="6.7457397297238873e-07" /> - <superelevation s="360.34298546004595" a="0.027665290193017042" b="-0.00016218930240271306" c="9.1488224617654607e-06" d="-2.9559970551028019e-07" /> - <superelevation s="370.35251283393609" a="0.026662032895136953" b="-6.788749414647837e-05" c="2.9112996455860281e-06" d="3.1959164123560641e-08" /> - <superelevation s="380.36204020782628" a="0.026306246731009078" b="0" c="1.5382960638172561e-05" d="-1.0245545777581783e-06" /> - <superelevation s="390.37156758171648" a="0.026819989612506569" b="0" c="-2.8560781468081764e-05" d="1.902239762927099e-06" /> - <superelevation s="400.38109495560661" a="0.025866148637784074" b="0" c="1.7761700959854784e-06" d="0" /> - <superelevation s="410.39062232949675" a="0.026044104253339032" b="3.5557246392902743e-05" c="1.3081958249025892e-05" d="-7.6099629369329699e-07" /> - <superelevation s="420.40014970338694" a="0.02694753177545553" b="6.8711571678349475e-05" c="-2.1844804271912218e-06" d="3.1981739713857571e-09" /> - <superelevation s="430.40967707727714" a="0.027419644968573947" b="2.594161968522563e-05" c="-3.8875391488853779e-06" d="2.5892259135871535e-07" /> - <superelevation s="440.41920445116727" a="0.027549476644755103" b="2.594161968522563e-05" c="-1.0209418675781922e-08" d="2.5892259135871535e-07" /> - <superelevation s="450.42873182505741" a="0.028067780461306462" b="0.00010356209582949043" c="6.0867712198134084e-05" d="-3.846788197997541e-06" /> - <superelevation s="460.43825919894761" a="0.031344969414832509" b="0.00016583966440174942" c="-1.5237257997076534e-05" d="6.9465491028370629e-07" /> - <superelevation s="470.4477865728378" a="0.032174957745085546" b="6.9597918823888181e-05" c="-2.6986827325194812e-06" d="1.3664575400382173e-07" /> - <superelevation s="480.45731394672794" a="0.032738253962099499" b="5.6644717377526999e-05" c="-4.6448819725355591e-06" d="4.6772618682103137e-07" /> - <superelevation s="490.46684132061807" a="0.0333089314434388" b="0.0001042439264219868" c="1.4371767047351884e-05" d="-9.6440246560763515e-07" /> - <superelevation s="500.47636869450827" a="0.034825118832264843" b="0.00010208082209184875" c="-4.6056102868873981e-06" d="-3.2873522531405502e-08" /> - <superelevation s="510.48589606839846" a="0.035352493009593949" b="0" c="-1.3173493784944891e-05" d="6.3283840073429123e-07" /> - <superelevation s="520.4954234422886" a="0.03466728117031239" b="-7.3507443466872842e-05" c="-1.8577432911083127e-06" d="1.3517881978029382e-07" /> - <superelevation s="530.50495081617873" a="0.033880943474461259" b="-7.0066751424430602e-05" c="-4.454779266586445e-06" d="5.2981404329172832e-07" /> - <superelevation s="540.51447819006898" a="0.033264611037547596" b="0" c="2.0178136057764521e-05" d="-1.3439286594356187e-06" /> - <superelevation s="550.52400556395912" a="0.03393849781431281" b="0" c="-2.1128579553103666e-06" d="1.4072312483815894e-07" /> - <superelevation s="560.53353293784926" a="0.033867934951955711" b="0" c="7.4554346302266519e-06" d="-4.9655588798822678e-07" /> - <superelevation s="570.5430603117394" a="0.034116923203296894" b="0" c="-6.5736646228352643e-06" d="3.094135459065439e-07" /> - <superelevation s="580.55258768562953" a="0.033768602307410037" b="-3.8597530036618759e-05" c="-4.9945728957412157e-06" d="4.6106822187750437e-07" /> - <superelevation s="590.56211505951978" a="0.033344237136364724" b="0" c="3.1123819120102984e-05" d="-2.0729463012269356e-06" /> - <superelevation s="600.57164243340992" a="0.034383675570491004" b="0" c="-3.2944962207632834e-05" d="2.1942402790878172e-06" /> - <superelevation s="610.58116980730006" a="0.033283416640270812" b="0" c="1.0237314558934486e-05" d="-6.8183802468292471e-07" /> - <superelevation s="620.59069718119031" a="0.033625311000141454" b="0" c="-0.00013830823443814443" d="9.0683260875404963e-06" /> - <superelevation s="630.60022455508044" a="0.028862390706270863" b="-4.3115981613185941e-05" c="2.153747125246628e-06" d="-5.4055459405953361e-23" /> - <superelevation s="640.60975192897058" a="0.028646605407166199" b="0" c="1.8696349171695621e-05" d="-1.2452368943655978e-06" /> - <superelevation s="650.61927930286072" a="0.029271005125976836" b="0" c="-1.0576767651673022e-05" d="7.0444669074402246e-07" /> - <superelevation s="660.62880667675086" a="0.028917774092100553" b="0" c="3.2514877159422688e-06" d="-2.7354905043399757e-08" /> - <superelevation s="670.63833405064111" a="0.029216109555938168" b="5.6869594410596929e-05" c="1.379315154213327e-05" d="-1.1078728049439547e-06" /> - <superelevation s="680.64786142453124" a="0.030056249616090353" b="0" c="-2.4726916709908483e-05" d="1.3244414125241961e-06" /> - <superelevation s="690.65738879842138" a="0.028907074603852962" b="-9.6919608028210474e-05" c="7.2379203532561108e-06" d="-5.4455837044151287e-07" /> - <superelevation s="700.66691617231163" a="0.028116010676840195" b="-0.00011570223631085433" c="-3.6636234779746663e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.6194681791799366" b="-0.006887088043902795" c="0.00036926987575327993" d="-9.5496049781021743e-07" /> - <laneOffset s="9.6894715395251403" a="2.5865364232464625" b="-0" c="0.00061670974874199137" d="-3.814553697154631e-05" /> - <laneOffset s="20.467661208249229" a="2.610417351428985" b="-0" c="-0.00084864123205392818" d="4.4773230822729602e-05" /> - <laneOffset s="30.028582121670496" a="2.5719727301449589" b="-0.0039492579646373373" c="0.00042866221965404458" d="4.7329386781149731e-05" /> - <laneOffset s="33.086452816984597" a="2.5652579291655413" b="-0" c="0.00091372460953092626" d="-2.8141857830312362e-05" /> - <laneOffset s="37.594950657212863" a="2.5812518183568742" b="0.0065229699821149501" c="0.0030831743457040337" d="-0.00057988959176962667" /> - <laneOffset s="40.038109495560661" a="2.6071353249785001" b="0.011204212686011421" c="-0.0012139417840034486" d="-0.00057797529625498723" /> - <laneOffset s="41.776848096647178" a="2.6199083481465872" b="0.0017407323870204316" c="-6.6200237800343513e-05" d="3.3162432184526768e-07" /> - <laneOffset s="50.047636869450827" a="2.62996471154616" b="0.00071373124718521425" c="-7.7286104465290644e-05" d="1.7632925000749156e-06" /> - <laneOffset s="55.795904782415988" a="2.6318486129643537" b="-0" c="-0.0002411845738601517" d="1.2442252247464689e-06" /> - <laneOffset s="60.622134467522358" a="2.6263706924528054" b="-0.0022410809779926152" c="7.9385910724143099e-05" d="-7.713896717259301e-05" /> - <laneOffset s="65.297189829490577" a="2.609746627000558" b="-0.0065566947310951532" c="-0.00029230927036933422" d="-5.9214195966206776e-05" /> - <laneOffset s="70.066691617231157" a="2.5654003833035848" b="-0.013386073663144529" c="-0.0011376167500667413" d="-5.2058704375129209e-05" /> - <laneOffset s="71.098982045605709" a="2.5503125301211798" b="-0.015901200368387068" c="-0.0010618590314135773" d="2.6252440115113318e-05" /> - <laneOffset s="74.362591713834036" a="2.4880197671468407" b="-0.021993331290497617" c="-0.0021189434813328233" d="0.0003065651186613703" /> - <laneOffset s="78.348014638171492" a="2.3861170433292611" b="-0.02427503376972567" c="6.457877473212988e-05" d="2.8593245317370495e-05" /> - <laneOffset s="80.076218991121323" a="2.3445052883134774" b="-0.023795625626458261" c="0.00020924003639340681" d="2.547831431693127e-05" /> - <laneOffset s="88.024510789027673" a="2.1813831035669313" b="-0.015640620196098947" c="0.00039833104466463335" d="2.9409043060931705e-05" /> - <laneOffset s="90.085746365011488" a="2.151094038071955" b="-0.013623662048797291" c="0.00059961922435163538" d="3.298478770260162e-05" /> - <laneOffset s="93.519295807743006" a="2.1127207804947732" b="-0.0083394186510262255" c="-3.307145969678904e-05" d="0.00021937447099994008" /> - <laneOffset s="97.129608344859207" a="2.0925051536229033" b="-0" c="0.0004276568795851578" d="-4.4810763245198203e-05" /> - <laneOffset s="100.09527373890165" a="2.0950976459970625" b="0.0013542194096320085" c="3.3823172870080404e-05" d="-4.4505315619713621e-05" /> - <laneOffset s="103.54342898236821" a="2.0983447351361835" b="-0" c="-0.00046622826310015517" d="1.8210597736112644e-05" /> - <laneOffset s="110.10480111279182" a="2.0834169463442227" b="-0.0037662079240489417" c="-0.00011087480072650159" d="1.8472857906455473e-05" /> - <laneOffset s="120.58852400266852" a="2.0530323338607728" b="-0" c="0.0012257836608290283" d="-9.9278338446591576e-08" /> - <laneOffset s="125.66070698584386" a="2.0845551643432687" b="0.012427135637606055" c="0.00066371604281106704" d="0.0015629799378094997" /> - <laneOffset s="126.3755816350195" a="2.0943492070278418" b="0.01577234601358142" c="0.00066873400994624883" d="9.2160225899071786e-05" /> - <laneOffset s="130.12385586057215" a="2.1677170086156878" b="0.024669974698938647" c="0.0017242873847912149" d="8.4964889247415769e-05" /> - <laneOffset s="131.53408379059238" a="2.2061747510012468" b="0.030040171096720684" c="0.0011043282345734688" d="0.00014667404143988799" /> - <laneOffset s="135.09694802570237" a="2.3338557740293822" b="0.043494955769880092" c="0.0037330803231008856" d="-0.00010935173494871711" /> - <laneOffset s="140.13338323446231" a="2.6336374514529144" b="0.072776446901479719" c="0.0021117931691647719" d="-0.00010817656256966135" /> - <laneOffset s="149.67152784534051" a="3.4260430672830893" b="0.083537145548419539" c="0.0029793990981376167" d="-0.00045260931663538" /> - <laneOffset s="154.92677578476233" a="3.8816448401574868" b="0.077352116338100144" c="0.0015046758295620408" d="-0.00028844542690055605" /> - <laneOffset s="160.15243798224265" a="4.285788709288104" b="0.069447761768699545" c="-0.002993304797315815" d="-0.0002868361100000393" /> - <laneOffset s="166.30747782827254" a="4.5329579025544824" b="-0" c="-0.00067453129912554142" d="3.7769456044432236e-05" /> - <laneOffset s="170.16196535613281" a="4.5250992620944901" b="-0.0035165141374797499" c="-0.00022861651598920298" d="3.8329132172404083e-05" /> - <laneOffset s="176.01723834656082" a="4.5043654958008696" b="-0.0022514849544228808" c="2.686143256848431e-05" d="-4.3721338039674801e-05" /> - <laneOffset s="180.17149273002298" a="4.4923412926036299" b="-0.0042919126963435125" c="-0.00051887286059916916" d="-4.2278434059083907e-05" /> - <laneOffset s="181.86568515730804" a="4.4833750596581279" b="-0.0064141074820078829" c="-0.0014565759850521652" d="4.5722663674992161e-05" /> - <laneOffset s="190.18102010391314" a="4.3556137594849647" b="-0.021153489206188307" c="-0.00032095189146441426" d="4.569788099362114e-05" /> - <laneOffset s="200.19054747780331" a="4.1575495750830749" b="-0.013843143102731792" c="0.0010520743703142021" d="4.4779815747622141e-05" /> - <laneOffset s="203.20146274364248" a="4.1266290411538868" b="-0.0062898604025065277" c="0.0014833303582032274" d="-0.00033384954927969101" /> - <laneOffset s="206.17296392355337" a="4.1122767686831967" b="-0.0063179181260407703" c="-0.0011408414089758875" d="0.00017356168979927375" /> - <laneOffset s="209.89153911950442" a="4.0819322799446791" b="-0.0076025974805358559" c="0.00047394047090245321" d="-6.2054750836101951e-05" /> - <laneOffset s="215.03189795210912" a="4.0469466687187499" b="-0.0076492211411515586" c="-0.00073235041443363465" d="7.1435830503242061e-05" /> - <laneOffset s="220.20960222558364" a="3.9976237601217068" b="-0.0094877204483062409" c="0.00035871452557862613" d="7.7621159279627391e-05" /> - <laneOffset s="223.01938668215413" a="3.975519187101948" b="-0.0056334682136122364" c="0.0011289487013957206" d="-0.00020583124956728455" /> - <laneOffset s="226.5542554148505" a="3.9606207569968399" b="-0.0053678650422134032" c="-0.00074438509751555918" d="0.00013159519512665523" /> - <laneOffset s="229.56129756428246" a="3.9413265556434189" b="-0.0062748890884000916" c="0.00022278839370706044" d="-1.3716464784035365e-05" /> - <laneOffset s="240.22865697336397" a="3.8830917677944927" b="-0.0062042561452650526" c="-0.00023229652833382496" d="-9.5005760233941025e-06" /> - <laneOffset s="243.07561396740056" a="3.8633264895790314" b="-0.0077579437812069522" c="-0.00030249988482984537" d="2.1121249657997072e-05" /> - <laneOffset s="250.27095662146792" a="3.7997122883267296" b="-0.008830595847652974" c="0.00020928423055207126" d="-8.8779854780165891e-05" /> - <laneOffset s="252.60399553064155" a="3.7791219073672964" b="-0.0093037643811622432" c="-0.00031062311762824986" d="3.4656834417239841e-05" /> - <laneOffset s="255.97929921023433" a="3.745512733829846" b="-0.010216156939156134" c="-0.0015778612097963407" d="0.00030422730030759152" /> - <laneOffset s="260.94569998750251" a="3.6931239592697276" b="-0.0033773153846309023" c="0.00017932085242581297" d="-3.6684240031169386e-09" /> - <laneOffset s="270.36538498742902" a="3.6772188687937128" b="-0" c="0.00086912101013948066" d="-3.2885807224086695e-05" /> - <laneOffset s="280.26676646892463" a="3.7305027681689085" b="0.0075388846541939543" c="-0.00010426108699006433" d="-3.3500860411497347e-05" /> - <laneOffset s="282.41774272313512" a="3.7459029475313463" b="0.0066253632328516976" c="0.00037695720106919653" d="-9.3200745339546106e-05" /> - <laneOffset s="285.63126110902317" a="3.7679935275623033" b="0.0061607124983758315" c="-0.00061704217783156766" d="0.00011003272716791478" /> - <laneOffset s="289.22552865951991" a="3.7872745593706405" b="0.0059895420715500511" c="0.00054024338090574535" d="-9.2343032913881534e-05" /> - <laneOffset s="290.27629384281477" a="3.7940575159163923" b="0.0068190100444262946" c="0.00025349636604963112" d="-9.0533549785123916e-05" /> - <laneOffset s="293.2445009558553" a="3.8141636054638388" b="0.0059309989157750329" c="0.00018886848564854072" d="-4.7977713542864062e-05" /> - <laneOffset s="301.10868005026862" a="3.8491521074449482" b="-0" c="-1.9631542274862234e-05" d="7.6540259655735404e-07" /> - <laneOffset s="310.29534859059515" a="3.8480887283995657" b="-0.00016690876535957762" c="1.3885684363130716e-06" d="2.4445743898347857e-06" /> - <laneOffset s="312.7257363557635" a="3.8477263711185032" b="-0.00011684052215049313" c="5.4612868397672212e-06" d="-3.5916999659637212e-07" /> - <laneOffset s="320.30487596448529" a="3.8469981628589269" b="-9.5952602585552086e-05" c="-3.1583460790830106e-05" d="3.12188914721801e-06" /> - <laneOffset s="324.03432884246604" a="3.8463629630378744" b="-0.00020126528897268709" c="-0.00045856169218259527" d="1.0840194498955879e-05" /> - <laneOffset s="330.31440333837543" a="3.8296985542108195" b="-0.004678278255873804" c="-0.00028473735540653615" d="1.2034149137404034e-05" /> - <laneOffset s="334.12241851038419" a="3.8084191541809318" b="-0.0063233257430864382" c="-0.00039786139408612024" d="2.1115436366861543e-05" /> - <laneOffset s="340.68055963979464" a="3.7557940158711891" b="-0.0088173130556032913" c="-0.00014900011217040728" d="5.8025637028715198e-06" /> - <laneOffset s="343.68916521550301" a="3.7280755145349231" b="-0.0095563088637732573" c="-0.00066921825395889879" d="0.00013697589415740812" /> - <laneOffset s="347.63800251750251" a="3.6883382286838327" b="-0.008433851651183594" c="0.00085209315125887896" d="-6.8963926397991437e-05" /> - <laneOffset s="350.33345808615582" a="3.6704454482546613" b="-0.0053434614254350482" c="0.00024543546453823916" d="-7.1715828785340243e-05" /> - <laneOffset s="353.88668840158988" a="3.6513403791157062" b="-0.0063156168602707952" c="-0.00027680684754417595" d="2.803225085258849e-05" /> - <laneOffset s="361.26016796368657" a="3.6009604647012763" b="-0.0058254869921850663" c="-0.0011839601018234578" d="0.00043542709384286865" /> - <laneOffset s="364.27694213492822" a="3.5845659945789814" b="-0.0010805977008658757" c="5.5484897446574553e-05" d="4.2014455585465768e-07" /> - <laneOffset s="370.35251283393609" a="3.580143060080077" b="-0.00035986703401635586" c="5.3783942519088116e-05" d="1.2149768398765046e-06" /> - <laneOffset s="373.38615748383575" a="3.5795802454836569" b="-0" c="0.00022471684964299178" d="1.0834641285132122e-07" /> - <laneOffset s="380.14959416509009" a="3.58989323106303" b="0.0030545849870902233" c="0.00039212800794441558" d="-1.3241657540254446e-05" /> - <laneOffset s="390.37156758171648" a="3.6479469147539567" b="0.0069204167765941965" c="-1.9870484533168685e-05" d="-1.0545193750413318e-05" /> - <laneOffset s="392.24975382116213" a="3.6608047847730156" b="0.0067341786793344996" c="0.00016133114548981263" d="-8.2801210006019199e-06" /> - <laneOffset s="400.38109495560661" a="3.721778023164962" b="0.0077154431145660674" c="-4.3940548312454227e-05" d="-8.721885368454881e-06" /> - <laneOffset s="403.03381321903669" a="3.7417729031528477" b="0.0072981938479271596" c="7.6362134857276549e-05" d="-2.16770696803568e-05" /> - <laneOffset s="407.46958106350735" a="3.7737565624601559" b="0.006696086818318266" c="-0.00053691236303982472" d="0.00020053155962358607" /> - <laneOffset s="409.57745257204073" a="3.7873635703092905" b="0.0071055610041945577" c="0.0026164644087785828" d="-0.00065626555291246403" /> - <laneOffset s="413.08973844109204" a="3.8161626999919203" b="0.001197728053510434" c="-0.00022238055389147386" d="-3.1543920703053089e-06" /> - <laneOffset s="415.64390206028469" a="3.8177185770927911" b="-0" c="-0.00028397330782007328" d="4.8418437512864543e-05" /> - <laneOffset s="419.55389065701166" a="3.8162714480913249" b="-0" c="0.00032488066405243722" d="-6.1295423634583022e-05" /> - <laneOffset s="423.08738625138977" a="3.8176235571355543" b="-0" c="-0.0010962747115188054" d="8.9185724837460961e-05" /> - <laneOffset s="430.1659108604681" a="3.7943259295348755" b="-0.0021139261928989901" c="0.00061760111821341623" d="-0.0001136195902775799" /> - <laneOffset s="434.12859710591039" a="3.7885771742620031" b="-0.0025716724327001263" c="-0.00036036462009736761" d="9.8209846380862271e-06" /> - <laneOffset s="440.41920445116727" a="3.7605842779242309" b="-0.0059395967103317727" c="-0.00016943239235381341" d="7.8587007183084217e-06" /> - <laneOffset s="442.07013927569585" a="3.7503519506522589" b="-0.0064347816950809586" c="1.7335676843308772e-05" d="-3.7272095776806907e-05" /> - <laneOffset s="447.98716750460341" a="3.7051627323298217" b="-0.010144455294237829" c="-0.00054641904306949472" d="1.5503236998715277e-05" /> - <laneOffset s="450.42873182505741" a="3.6773627047951369" b="-0.012535434394458096" c="-0.00040188712189775076" d="1.5712452338324764e-05" /> - <laneOffset s="455.25532478192679" a="3.609263616187885" b="-0.015316813649661117" c="-0.00075435709455356126" d="3.2990454380859071e-05" /> - <laneOffset s="460.43825919894761" a="3.5142066257472142" b="-0.020477731504325459" c="-0.000216235917067146" d="3.5524928445054711e-05" /> - <laneOffset s="468.87457167742792" a="3.3473902940005735" b="-0.016541125743615576" c="-0.000187150804520297" d="2.2547038868207202e-05" /> - <laneOffset s="470.4477865728378" a="3.3209921411380865" b="-0.016962570501284507" c="-6.6199188182986888e-05" d="2.7839050904443484e-05" /> - <laneOffset s="480.45731394672794" a="3.1724909851101066" b="-0.0099201788387192572" c="0.0007770718266911622" d="2.6583456920412286e-05" /> - <laneOffset s="483.13641781945768" a="3.1520024917799985" b="-0.0051840504915109335" c="0.00014832831166067923" d="-2.3339430391281304e-07" /> - <laneOffset s="490.46684132061807" a="3.1218797099032329" b="-0.0030470562130182027" c="0.00015030634178439883" d="-2.8953001495194319e-07" /> - <laneOffset s="500.91863229421762" a="3.1061213984676677" b="-0" c="0.0011104677024024517" d="-7.1462827562137349e-05" /> - <laneOffset s="505.88284542352136" a="3.1247446958790408" b="0.0057419329904404102" c="0.00065204131711064711" d="-3.0134080945564552e-05" /> - <laneOffset s="510.48589606839846" a="3.1620516343322072" b="0.0098292418778406221" c="0.00023406320487258226" d="-2.921202203974236e-05" /> - <laneOffset s="514.17312619668871" a="3.2000121474128633" b="0.010363860993526182" c="7.2544750723920734e-05" d="8.6609273632516914e-06" /> - <laneOffset s="520.4954234422886" a="3.2706239901200949" b="0.012319729228191544" c="0.00022390446702298737" d="9.9244874572339456e-06" /> - <laneOffset s="523.68520535289395" a="3.3125215025185901" b="0.014051078370171333" c="0.00069146431110368777" d="-4.7310508738217839e-05" /> - <laneOffset s="530.50495081617873" a="3.425499642164223" b="0.016881216407754637" c="-0.00028997883884560597" d="-4.5494994036836617e-05" /> - <laneOffset s="533.38614722714499" a="3.4706424094887867" b="0.014077242634631471" c="-0.0002279077625259107" d="-1.1259990182504323e-07" /> - <laneOffset s="540.51447819006898" a="3.5593681684733727" b="0.010810874063026667" c="-0.00022863686761297614" d="-8.518245107611362e-07" /> - <laneOffset s="546.51812233775206" a="3.6158475512159352" b="0.0079734564472744591" c="-0.00016852373166303765" d="-7.3423803915168001e-06" /> - <laneOffset s="550.52400556395912" a="3.6446119805608133" b="0.0062698119210638044" c="-0.0002518185558703992" d="-6.3733456343591756e-06" /> - <laneOffset s="555.97071794851445" a="3.6702613808678679" b="0.0029594174911344072" c="-0.00028329882267590399" d="-2.5497721143943874e-06" /> - <laneOffset s="560.86982783424889" a="3.6776605439566432" b="-0" c="-0.0016154600098866577" d="0.00028603658710477732" /> - <laneOffset s="564.19617156095546" a="3.6703136301092676" b="-0.0012525413776549618" c="0.00012476021763209021" d="-3.0397945908844522e-07" /> - <laneOffset s="569.31160288547471" a="3.667130330565715" b="-0" c="0.00013684103429500164" d="-1.3909642096599795e-06" /> - <laneOffset s="570.5430603117394" a="3.6673352506577466" b="0.00033069967673766265" c="0.00013281264413961326" d="1.1230733832100551e-07" /> - <laneOffset s="579.1949136383555" a="3.6802107822734875" b="0.0026540708619701317" c="0.00097645164345236044" d="-2.026939714990509e-05" /> - <laneOffset s="580.55258768562953" a="3.6855632924122208" b="0.0051933905201378867" c="0.0008808210851904613" d="-2.5798367802220019e-05" /> - <laneOffset s="590.56211505951978" a="3.7999245284094814" b="0.015072331239930894" c="0.00011533285067162623" d="-3.1028532109085779e-05" /> - <laneOffset s="591.96311480733084" a="3.8211819112045338" b="0.015212785393563903" c="-0.00011494945319261863" d="4.1889067213170669e-05" /> - <laneOffset s="600.57164243340992" a="3.9703461942492679" b="0.022546481936552724" c="0.00096026568512701076" d="4.6321788336810937e-05" /> - <laneOffset s="602.52365790144631" a="4.0183607742849148" b="0.026824897556063789" c="0.0015329009032718579" d="-0.00021202882233358722" /> - <laneOffset s="606.13418666833832" a="4.1252161423995224" b="0.029602092162359706" c="-6.4250955492274985e-05" d="1.2557754504953368e-05" /> - <laneOffset s="610.70161974901953" a="4.2602778933376388" b="0.029801086995967667" c="0.005087770240062869" d="-0.0011829368909510715" /> - <laneOffset s="614.96154725328472" a="4.3881093058882108" b="0.0087479471440880235" c="-0.0012000230582032993" d="-1.0340205177278829e-06" /> - <laneOffset s="618.58944377094588" a="4.4040023161236768" b="-0" c="-0.010517535209143447" d="0.00029633282383087337" /> - <laneOffset s="620.59069718119031" a="4.3642545501218493" b="-0.03853605400754314" c="-0.0087584337686310142" d="0.00029967751925814233" /> - <laneOffset s="628.77922060832543" a="3.6259711997250683" b="-0.12169147873613219" c="-0.011816927333394213" d="0.0010256167721493289" /> - <laneOffset s="630.60022455508044" a="3.3713781893522996" b="-0.15452581533423865" c="-0.0062591278281023165" d="0.0010099314162617412" /> - <laneOffset s="636.02764208294025" a="2.5097902780106276" b="-0.13321938739008218" c="-0.00064445665523493896" d="0.00081978402418799042" /> - <laneOffset s="640.30743577934106" a="1.9920985366084263" b="-0.093688618455166531" c="0.0072688976699662221" d="-0.00022549618585212248" /> - <laneOffset s="644.28055157345091" a="1.7204643574079679" b="-0.046607085177362867" c="0.0041602794292703331" d="0.00034730426400126285" /> - <laneOffset s="648.07708696552413" a="1.6224890507994709" b="9.6072401730560309e-09" c="-0.0011829739057364057" d="2.6175212668008969e-05" /> - <laneOffset s="650.61927930286072" a="1.6152738667366735" b="-0.0055071938602410091" c="-0.00098161284234383767" d="2.6786931618913779e-05" /> - <laneOffset s="660.62880667675086" a="1.4886646091718942" b="-0.017106755765380306" c="-0.00017737534732966884" d="2.6730342646354812e-05" /> - <laneOffset s="670.63833405064111" a="1.326469536251462" b="-0.012623252283448645" c="0.00062813524321069067" d="2.6385561535520552e-05" /> - <laneOffset s="675.10415769995859" a="1.2849736009344579" b="-0.0054343020946495896" c="0.00072537371466648958" d="-4.3035386383620693e-05" /> - <laneOffset s="680.64786142453124" a="1.2698080419002518" b="-0.001359562696547933" c="9.2315660136807325e-06" d="-4.2626015070201551e-05" /> - <laneOffset s="686.36534034109968" a="1.2543696635366433" b="-0.0054342778200726638" c="-0.00096023982175594182" d="2.6392992446944261e-05" /> - <laneOffset s="690.65738879842138" a="1.2154430570733279" b="-0.012218459731192639" c="-0.00062464082533515784" d="2.5904084161618143e-05" /> - <laneOffset s="700.66691617231163" a="1.0565370810533035" b="-0.016937138435077596" c="0.00015124331438808191" d="2.5931941426546958e-05" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <successor id="1" /> - </link> - <width sOffset="0" a="0.15243017090274114" b="-9.991119748585086e-05" c="0.0021032966172328557" d="-0.0004168539264355682" /> - <width sOffset="4.1656891333797947" a="0.15837926100095778" b="-0.0042775074542543215" c="0.00047008324656568659" d="-1.8964280763275635e-05" /> - <width sOffset="9.6894715395251403" a="0.14589821231677247" b="-0.00082015651417161831" c="-0.000119379495390973" d="1.8226295704780037e-05" /> - <width sOffset="10.009527373890165" a="0.14562408526464843" b="-0.00089097165007270287" c="-9.7303822687741688e-05" d="1.8105759341206708e-05" /> - <width sOffset="16.188933622138194" a="0.140675110248766" b="-1.9422743625299201e-05" c="-0.00040570404368318815" d="5.224733830275433e-05" /> - <width sOffset="20.019054747780331" a="0.13758474287589362" b="-0.00082783562702218663" c="0.00020484697690781951" d="5.3154551142582994e-05" /> - <width sOffset="20.467661208249229" a="0.1372593943082645" b="-0.00061195257004412282" c="0.00050831488536667651" d="-2.9764216646417286e-05" /> - <width sOffset="30.028582121670496" a="0.15186105098419267" b="0.0009456152060605392" c="-0.0003474847336210264" d="-2.4963079582147978e-05" /> - <width sOffset="31.212183739080032" a="0.1524520950168311" b="1.8134928284093202e-05" c="4.6796312779788605e-05" d="-6.4295268349918682e-05" /> - <width sOffset="33.086452816984597" a="0.15222714890398237" b="-0.00048403287727424778" c="-0.0003656045424729542" d="1.1175976261502548e-05" /> - <width sOffset="37.594950657212863" a="0.14363759896201245" b="-0.003099180243621812" c="-0.0027645261998779625" d="0.00056292371020081635" /> - <width sOffset="40.038109495560661" a="0.12777355514295552" b="-0.0065272161991825946" c="0.0013684044784874399" d="0.00057702719850605765" /> - <width sOffset="41.341128202407823" a="0.12286840707037028" b="-2.1972627662870774e-05" c="0.00078640085484500471" d="0.00095236141746110072" /> - <width sOffset="41.776848096647178" a="0.12308691424626961" b="0.0012057510299651279" c="-0.0021312961173011852" d="0.00037405449688049911" /> - <width sOffset="45.272226265567795" a="0.11723613694502699" b="1.6600770698997971e-05" c="0.0028085603261909595" d="-0.00075010133826574547" /> - <width sOffset="47.768924618244981" a="0.12311079331773245" b="1.3580578654087336e-05" c="0.00032982737296310293" d="-6.8893982228385907e-06" /> - <width sOffset="50.047636869450827" a="0.12477286062734061" b="0.001409423718743464" c="0.00027362592938023954" d="-1.3927493325050141e-05" /> - <width sOffset="55.795904782415988" a="0.13927055851204351" b="0.003174572914492222" c="0.00022775514290793083" d="-1.3408426049728135e-05" /> - <width sOffset="60.057164243340992" a="0.15589638224741975" b="0.0043851964662720662" c="5.9909056091703411e-05" d="-1.5528291627447418e-05" /> - <width sOffset="60.622134467522358" a="0.15839020985789043" b="0.0044380206426737692" c="-0.0002689657455529839" d="6.2854900771277221e-05" /> - <width sOffset="64.614742901716724" a="0.17582238072576883" b="0.0052961660663205391" c="0.0013118116580150723" d="5.5842670413926954e-05" /> - <width sOffset="65.297189829490577" a="0.18006543698377708" b="0.0071646731968077297" c="0.00071594898940071663" d="3.7917899203844749e-05" /> - <width sOffset="70.066691617231157" a="0.23463786247069107" b="0.01658179903612058" c="0.001263693438872277" d="3.2308222870302735e-05" /> - <width sOffset="71.098982045605709" a="0.25313725647251761" b="0.019294081526180288" c="0.0011267710211794427" d="-4.6002921619939352e-05" /> - <width sOffset="74.362591713834036" a="0.32650789617448739" b="0.02517881133437759" c="0.0019904818839248336" d="-0.0003263156001662022" /> - <width sOffset="78.348014638171492" a="0.43781541137176649" b="0.025495440222871826" c="-0.00042918243740815729" d="-4.83437268221867e-05" /> - <width sOffset="79.840601379605744" a="0.47475267534787724" b="0.023891153525888168" c="0.0074682869172348681" d="-0.0014795204024410967" /> - <width sOffset="80.076218991121323" a="0.48077710592902267" b="0.027164063727194404" c="0.0064260673784370592" d="-0.0014764054713659724" /> - <width sOffset="83.074534784114988" a="0.58019738691666278" b="0.02588062035572667" c="0.0073814220429461981" d="-0.0011637998601267351" /> - <width sOffset="87.054766512537128" a="0.72676221015973708" b="0.029328554597742383" c="0.032036771164520771" d="-0.016901619174460782" /> - <width sOffset="88.024510789027673" a="0.76991746006016415" b="0.043780456649013255" c="-0.016715537987137621" d="-0.0169055499032972" /> - <width sOffset="88.273150131993773" a="0.77950976437135244" b="0.032332795364151706" c="0.0054661746232408798" d="-0.00069727816753127863" /> - <width sOffset="90.085746365011488" a="0.85192271546564813" b="0.045275997491469377" c="0.0016878492390288982" d="-0.00069599963389997482" /> - <width sOffset="92.500052289233508" a="0.9612765013441944" b="0.041255285703393291" c="0.0040452966924860011" d="-0.00084793519557157724" /> - <width sOffset="93.519295807743006" a="1.0066303350914043" b="0.046858919441131346" c="0.0024249947182320855" d="-0.0010343248788691431" /> - <width sOffset="95.011449027977108" a="1.0785139761174638" b="0.04718700788405765" c="-0.0060698463253656011" d="0.0060529125602707592" /> - <width sOffset="96.006217449669947" a="1.1254060286033458" b="0.053080061944556667" c="-0.00087944112970658674" d="-0.00023621120213648702" /> - <width sOffset="97.129608344859207" a="1.1835909428878542" b="0.050209848983630331" c="0.00023978919846982181" d="2.7974032108859798e-05" /> - <width sOffset="100.09527373890165" a="1.3353352031624088" b="0.052370227246288661" c="0.00048820285304537601" d="2.8203838712178017e-05" /> - <width sOffset="103.54342898236821" a="1.5228767937331891" b="0.056743037555489463" c="0.00081962421979069099" d="-3.4512074643647462e-05" /> - <width sOffset="109.51366315052685" a="1.8835162405866517" b="0.062839320906451529" c="-0.010541802310130331" d="0.0070592791002602271" /> - <width sOffset="110.10480111279182" a="1.9184374111144726" b="0.057776471926890671" c="0.0019803273400519471" d="0.0070590168400856959" /> - <width sOffset="111.0062215562718" a="1.9772978637027232" b="0.07855428612059745" c="-0.0021730120154648952" d="0.00027738065286868406" /> - <width sOffset="116.23017537817506" a="2.3679044082500313" b="0.078559756300761688" c="-0.12381726106752919" d="0.24722573210086418" /> - <width sOffset="116.47893607846798" a="2.3835906814583052" b="0.062854402875733045" c="0.039345384951346526" d="-0.023717758125686671" /> - <width sOffset="117.4739755598896" a="2.4617227510463424" b="0.070705714803789427" c="0.090363313231348386" d="-0.21349976115205357" /> - <width sOffset="117.97149431329146" a="2.4929752117480102" b="0.0020810732240972708" c="-0.0005609676337192328" d="7.8388287520821261e-05" /> - <width sOffset="120.11432848668198" a="2.4956300785258052" b="0.00075676749768253634" c="-7.6627559187823443e-05" d="7.1707478739155276e-05" /> - <width sOffset="120.58852400266852" a="2.4959793497443803" b="0.00073246733720863167" c="-0.00073028295627831203" d="9.0279614983649394e-05" /> - <width sOffset="125.66070698584386" a="2.4926873297161016" b="0.00029209162551929214" c="0.0012040181685860859" d="-0.0014727996011642968" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1620678747004908" weight="standard" type="solid"> - <type name="solid"> - <line length="126.3755816350195" space="0" width="0.16206799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.9076125807940039" b="-0.0056025582996763017" c="0.00049340820615001934" d="-7.3892485354212573e-06" /> - <width sOffset="6.4247347117850975" a="3.8900245541991243" b="-0.00017754746762567919" c="0.00042609367000577634" d="-5.6810980211968437e-06" /> - <width sOffset="9.6894715395251403" a="3.893788744206137" b="0.0024229638639589211" c="0.00064565086089673324" d="-4.287167449687421e-05" /> - <width sOffset="10.009527373890165" a="3.894628960094598" b="0.00282307773920839" c="0.00060811477994903449" d="-4.298009341550697e-05" /> - <width sOffset="13.654985143705662" a="3.9109196230291055" b="0.0055432571323172451" c="0.00035320986252202196" d="-5.003689342006641e-05" /> - <width sOffset="20.019054747780331" a="3.9476055947002173" b="0.0039592714398728832" c="-0.00059814130319001959" d="-5.0015411101533757e-05" /> - <width sOffset="20.467661208249229" a="3.9492568594081181" b="0.0033924148663035604" c="-0.00089738449612773957" d="3.2903356690515774e-05" /> - <width sOffset="28.954825316157496" a="3.9335238508710777" b="-0.0047298048213336094" c="-0.00050577314763039505" d="0.00015560788101811094" /> - <width sOffset="30.028582121670496" a="3.9280546990346075" b="-0.0052777335040103956" c="-1.3329267328099728e-05" d="0.00016193991370837231" /> - <width sOffset="32.726843663587111" a="3.9168982587407402" b="-0.0018125985389551317" c="0.0010135182114734006" d="2.8359181052205845e-05" /> - <width sOffset="33.086452816984597" a="3.9163788174371583" b="-0.0010726555660346036" c="0.0010949938300290234" d="-4.7112063551593579e-05" /> - <width sOffset="37.594950657212863" a="3.9294827479500878" b="0.0059280215310532061" c="0.003007862171632843" d="-0.00059885979749091107" /> - <width sOffset="40.038109495560661" a="3.9531865129926751" b="0.0099015641246729229" c="-0.0014282956353916317" d="-0.00059694550197668741" /> - <width sOffset="40.639591238735917" a="3.9584954959660963" b="0.007535487281826854" c="-0.0038919572711995035" d="-0.00033139724286672899" /> - <width sOffset="41.776848096647178" a="3.9615441614790146" b="-0.0026026639276034184" c="-0.00086002321220608258" d="0.00024690967771038387" /> - <width sOffset="45.500021307652837" a="3.9526755155022393" b="0.0012613050560496628" c="0.00088799559952690158" d="-0.00011479388938549159" /> - <width sOffset="50.047636869450827" a="3.9659797347176813" b="0.0022157393544069812" c="-0.00069743408459910011" d="-0.00011336222120677562" /> - <width sOffset="51.003969952572781" a="3.9673617144833626" b="0.00057074670900814875" c="-0.00086932909662274546" d="6.0985833621952182e-05" /> - <width sOffset="55.795904782415988" a="3.9568452099028262" b="-0.0035596029240264606" c="-0.0001869147783354982" d="6.0466766346627189e-05" /> - <width sOffset="59.976925879114219" a="3.9431143946238674" b="-0.0019515449131778597" c="0.0013721622695823594" d="-9.1474948680573536e-05" /> - <width sOffset="60.622134467522358" a="3.942401894318238" b="-0.0002951246016205636" c="0.0014976567364833463" d="-0.00016985814107787535" /> - <width sOffset="65.297189829490577" a="3.956399289617516" b="0.002570800432348112" c="-0.00017444025795876724" d="-0.00015193336992875338" /> - <width sOffset="65.493725237126156" a="3.9568966515815891" b="0.0024846272470241482" c="0.0021210186428536476" d="-0.00040743806267755676" /> - <width sOffset="70.066691617231157" a="3.9736502656901855" b="-0.0036777394587655683" c="-0.0034666238840807082" d="-0.00040028257108680113" /> - <width sOffset="70.865462408535947" a="3.9682967668075024" b="-0.0099819978678433001" c="-0.0048709706460640127" d="0.001417979562533667" /> - <width sOffset="71.098982045605709" a="3.9657182101129411" b="-0.012024959141694519" c="-0.0036406156022529583" d="0.001496290707022343" /> - <width sOffset="72.439675297605049" a="3.9466583951648371" b="-0.013718295801435692" c="0.0015948480699868647" d="-0.00019045958214962465" /> - <width sOffset="74.362591713834036" a="3.9248221773569734" b="-0.0096975110943364855" c="-0.00081798310348614846" d="8.985309639665808e-05" /> - <width sOffset="78.348014638171492" a="3.8788689381038117" b="-0.011935957502278813" c="-0.0012255280319614945" d="-0.00018811877694729066" /> - <width sOffset="79.5242330364417" a="3.8628280167904321" b="-0.015599715922234841" c="-0.0011468173888565323" d="0.00039878501170963768" /> - <width sOffset="80.076218991121323" a="3.853934839807498" b="-0.016501254490558236" c="-0.00049002986406053483" d="0.00039567008071058317" /> - <width sOffset="81.66493996815781" a="3.8280687300508602" b="-0.015062241322886895" c="0.0031909172458192679" d="-0.00064239951457139319" /> - <width sOffset="85.535519963377141" a="3.7803228878140276" b="-0.019232952432794069" c="0.00048978803276195342" d="2.6841927442556607e-05" /> - <width sOffset="88.024510789027673" a="3.7359004081327196" b="-0.016295933305137782" c="0.00027177974434575006" d="3.0772656186646682e-05" /> - <width sOffset="90.085746365011488" a="3.7037348523514777" b="-0.01478329852570214" c="0.00049438447038556703" d="3.2472121075240373e-05" /> - <width sOffset="91.963636482683029" a="3.677931915744979" b="-0.012582963094681095" c="0.00018129015113083947" d="0.00011542897809235558" /> - <width sOffset="93.519295807743006" a="3.6592304163996854" b="-0.011180870989911787" c="-0.00025246073276789013" d="0.00030181866138955188" /> - <width sOffset="97.129608344859207" a="3.6297763275489494" b="-0.0012017590897580557" c="0.001101215489041961" d="3.7633427144260863e-05" /> - <width sOffset="97.909914468914906" a="3.6295269731212256" b="0.00058555374798256103" c="0.0024419970212515405" d="-0.00020350082656988585" /> - <width sOffset="100.09527373890165" a="3.6403451927747286" b="0.0083432006284336613" c="0.001116508467566927" d="-0.00020246477607749149" /> - <width sOffset="103.54342898236821" a="3.6740882696854529" b="0.0088212080363601862" c="-0.001017549193901396" d="-0.00013974886272182408" /> - <width sOffset="104.71690111786771" a="3.6828126865816877" b="0.0058557587829625151" c="-0.00065210283998384647" d="3.67801835924886e-05" /> - <width sOffset="110.10480111279182" a="3.7011854417111794" b="0.0020319563129044646" c="-6.5807918123437684e-05" d="3.7644783489110471e-05" /> - <width sOffset="116.43970746658842" a="3.7209870512597458" b="0.0057303550834652654" c="0.00048891336614549641" d="1.2709068535673874e-05" /> - <width sOffset="120.11432848668198" a="3.7492762495379472" b="0.0098383232912340312" c="0.00062269901892737767" d="1.1403891109209464e-05" /> - <width sOffset="120.58852400266852" a="3.7540827752698784" b="0.010436578340730992" c="0.0013945875327493287" d="-7.1682451250894157e-06" /> - <width sOffset="125.66070698584386" a="3.8419622193954712" b="0.024030531453242139" c="0.00072495463559984585" d="0.0015559109710228569" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="45.500021307652837" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="45.500021307652837" color="standard" width="0.30074322676080184" weight="bold" type="solid"> - <type name="solid"> - <line length="80.875560327366657" space="0" width="0.30074299999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="2.4932066336497991" b="-0.00012794888538194779" c="1.4272126046751177e-05" d="2.8954954222860199e-06" /> - <width sOffset="6.4247347117850975" a="2.4937415810168639" b="0.00041399433279829282" c="-5.0268526454287649e-06" d="1.1873449080468031e-06" /> - <width sOffset="10.009527373890165" a="2.4952157637890831" b="0.00042372866036412271" c="7.9749863577969685e-06" d="1.1688378472421221e-06" /> - <width sOffset="13.654985143705662" a="2.4969230565051381" b="0.00052847294137481609" c="-0.00019438359564642149" d="8.2256378518005307e-06" /> - <width sOffset="20.019054747780331" a="2.4945336787213437" b="-0.00094621942314344638" c="-3.3336781235243103e-05" d="8.0571350741381886e-06" /> - <width sOffset="28.954825316157496" a="2.489165396909458" b="0.00038803917871387927" c="0.00062881056544881173" d="-0.00011464738925270735" /> - <width sOffset="30.028582121670496" a="2.4901651135378398" b="0.0013418690396476147" c="0.00025052600249818541" d="-0.00011447771975575501" /> - <width sOffset="32.726843663587111" a="2.4933608953129047" b="0.00019343366465460264" c="-0.00039212523835945555" d="1.9103012874507135e-05" /> - <width sOffset="32.976954897898118" a="2.4933850444875629" b="8.6881288962909614e-07" c="0.00017183078363764489" d="-2.1811813050178949e-05" /> - <width sOffset="40.038109495560661" a="2.4942793935978238" b="-0.00083508846204363588" c="-0.00033489307547399447" d="-1.2153761396737502e-05" /> - <width sOffset="40.639591238735917" a="2.4936533007108985" b="-0.0012511435775398368" c="0.0010296823002324553" d="-0.00027770202050655533" /> - <width sOffset="41.890290193335098" a="2.4931558779799392" b="2.1317188989918197e-05" c="0.0013602756791530589" d="-0.00027599152831941215" /> - <width sOffset="45.500021307652837" a="2.4979760718281279" b="-0.00094686418103834497" c="-0.00061864626100001548" d="8.5712038776471341e-05" /> - <width sOffset="50.047636869450827" a="2.4889370702075535" b="-0.0012558124374414887" c="0.00052239543576700824" d="8.7816011795134789e-05" /> - <width sOffset="51.003969952572781" a="2.4882906710495112" b="-1.5701910974140135e-05" c="0.00062099839216453651" d="-8.6532043033597577e-05" /> - <width sOffset="55.757736287569067" a="2.4929536535634798" b="2.2030848397234983e-05" c="0.00034737981750443707" d="-3.5888035631409016e-05" /> - <width sOffset="59.976925879114219" a="2.4965350245098232" b="0.0010367643231846552" c="-0.00090751403209374292" d="0.00011605367762044651" /> - <width sOffset="60.057164243340992" a="2.4966124299830117" b="0.00089337096893188817" c="-0.00088537985868675445" d="0.00011240674885544687" /> - <width sOffset="65.493725237126156" a="2.4933628082975505" b="0.0012334752736447453" c="-0.0014371011810664139" d="0.00036791144166149493" /> - <width sOffset="67.49573260186196" a="2.493024448040329" b="-9.6894886189398052e-05" c="-0.0019107524710431729" d="0.00046457512676620886" /> - <width sOffset="70.066691617231157" a="2.4880403908847679" b="-0.00070953927829727273" c="0.0016837996829324737" d="0.00047060680474034721" /> - <width sOffset="70.865462408535947" a="2.4887877961089382" b="0.0028811912551832556" c="0.0032566652762135882" d="-0.0013476553288783795" /> - <width sOffset="72.439675297605049" a="2.4961365190063938" b="0.0031154992837627692" c="-0.0023250870004526843" d="0.00033909496029361781" /> - <width sOffset="76.194300989012731" a="2.4930050190547419" b="-3.2807408047643566e-06" c="-0.0015799623658876033" d="0.00034129910004289854" /> - <width sOffset="79.5242330364417" a="2.488076816444345" b="0.0008278160243346197" c="0.0010870291244663582" d="-0.00024560468861893354" /> - <width sOffset="80.076218991121323" a="2.4888236578075844" b="0.001803366874200382" c="0.00068006807202668532" d="-0.00024996304130978043" /> - <width sOffset="81.66493996815781" a="2.4924028713862278" b="0.0020714977957366713" c="-0.0023064155478579778" d="0.00078810655397120095" /> - <width sOffset="82.668826789886154" a="2.4929553730886802" b="-0.00017652779344543533" c="-0.0023232562652798945" d="0.00071751527308439316" /> - <width sOffset="85.535519963377141" a="2.4902603932310519" b="0.004192816782961498" c="-0.00091081477665859174" d="4.827383107040915e-05" /> - <width sOffset="90.085746365011488" a="2.4950285381009283" b="-0.0010975447647237624" c="-0.00025366223116205086" d="5.0755245192203371e-05" /> - <width sOffset="91.963636482683029" a="2.4924090548162066" b="-0.0015132836133974115" c="0.00052830763399264896" d="-3.2201611824773155e-05" /> - <width sOffset="97.909914468914906" a="2.4953202853519043" b="0.0013538692862360407" c="-0.001298816323751503" d="0.00020893264188947375" /> - <width sOffset="100.09527373890165" a="2.4942566895458689" b="-0.0013294328135140272" c="8.0226116210452801e-05" d="0.00020306493203081665" /> - <width sOffset="101.42342993046847" a="2.4931082678307241" b="-4.1708256143985906e-05" c="-0.00075387210773578421" d="0.00016757123191337269" /> - <width sOffset="104.71690111786771" a="2.4907800236788447" b="0.00044549117203725955" c="4.4380421663019746e-05" d="-8.9578144007882579e-06" /> - <width sOffset="110.10480111279182" a="2.4930675529246136" b="0.00014360400404916235" c="-9.5308134737756654e-05" d="-9.5601541238141817e-06" /> - <width sOffset="110.74083444763598" a="2.4931178742307942" b="1.07633540521292e-05" c="0.00018052670785618607" d="-2.2203377876259228e-05" /> - <width sOffset="116.43970746658842" a="2.4949327351840216" b="-9.4946623660474225e-05" c="-3.8368735401180133e-05" d="2.7323370771825765e-06" /> - <width sOffset="120.11432848668198" a="2.4942013280484097" b="-0.00026624481870225584" c="-9.3217705236720353e-06" d="3.2776024641766718e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="126.3755816350195"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4929733837289425" b="-4.5842152683252257e-05" c="0.00021528500479174172" d="-3.9689353762500893e-05" /> - <width sOffset="3.7482742255526489" a="2.4937361093234576" b="-0.00010480151530809986" c="-0.00022501373743303156" d="-3.4086523575991168e-05" /> - <width sOffset="5.1585021555728758" a="2.4930452224410713" b="-0.00094281081615021564" c="0.00061019568969551664" d="-9.5795675768451844e-05" /> - <width sOffset="8.3891117886736879" a="2.4931379062095869" b="3.8531011620213107e-07" c="0.00118801066047911" d="-0.00025174577944723906" /> - <width sOffset="8.7213663906828742" a="2.4932599487463425" b="0.00070645632193788027" c="-0.00012393341992129533" d="4.2799969467504181e-06" /> - <width sOffset="13.757801599442814" a="2.4942210955626933" b="-0.00021621386345356541" c="-3.326108780240351e-05" d="5.107032009792932e-06" /> - <width sOffset="23.295946210321006" a="2.493564446289807" b="0.00054314314249695461" c="-0.00033521763517486806" d="4.5174254341992276e-05" /> - <width sOffset="28.551194149742827" a="2.4937173594940707" b="0.00076265721792598273" c="-0.00012304327419573511" d="4.4872792738823533e-06" /> - <width sOffset="33.776856347223145" a="2.4949830734778882" b="-0.00015569820780041155" c="-3.8232440693333845e-05" d="5.5090030666886717e-06" /> - <width sOffset="39.923558738106323" a="2.4938609268028573" b="-1.2824371293828133e-06" c="0.007580951467934062" d="0.0003257762815806323" /> - <width sOffset="39.931896193253039" a="2.4938614432752813" b="0.00012519718551229922" c="-2.6136667601703366e-05" d="1.1707634158518939e-06" /> - <width sOffset="43.78638372111331" a="2.4940227452720842" b="-2.4107376592027302e-05" c="-6.4594362013897062e-06" d="1.2256855384160353e-06" /> - <width sOffset="48.840812369196783" a="2.4938941442188796" b="4.5337854188073901e-06" c="-1.7706914070792672e-05" d="-0.00010253360778457874" /> - <width sOffset="49.641656711541316" a="2.4938337551127967" b="-0.00022110747737021401" c="0.00015375735535436046" d="-2.0483137572840849e-05" /> - <width sOffset="53.795911095003476" a="2.4941002305686446" b="-4.0966289271693324e-06" c="-0.0001015796288319253" d="-2.0891210594968798e-05" /> - <width sOffset="55.490103522288535" a="2.4937001371031497" b="-0.00052817887681262232" c="0.00051505889479995797" d="-0.00010889230832913338" /> - <width sOffset="57.966262799224239" a="2.4938970673412006" b="1.9581456917064366e-05" c="1.1260901175216614e-05" d="-3.8439303349918077e-07" /> - <width sOffset="63.805438468893641" a="2.4943188285635882" b="0.00011177145433882013" c="-5.8496471972536252e-07" d="-7.7756965151215519e-07" /> - <width sOffset="73.814965842783806" a="2.4945992057781465" b="-0.00013365458541430425" c="-2.3542901444439587e-05" d="-1.1331964416848292e-06" /> - <width sOffset="76.82588110862298" a="2.4939524208791299" b="-0.00030624530162744537" c="-6.0550072234378562e-05" d="0.00037749616859179992" /> - <width sOffset="77.321369795212235" a="2.4938317354647781" b="-8.8212888940313559e-05" c="-0.0011611082018897381" d="0.00033493527641988732" /> - <width sOffset="79.797382288533868" a="2.4915791474090536" b="0.00032205094903200397" c="0.00097487236310610887" d="-0.00017247596265914869" /> - <width sOffset="83.515957484484915" a="2.4973883939506356" b="0.00041743320708421093" c="-0.0006277974427432774" d="6.3140477940925235e-05" /> - <width sOffset="83.824493216673972" a="2.4974592787629897" b="4.8069160201678722e-05" c="-0.000557333835175203" d="6.3474772106072663e-05" /> - <width sOffset="88.656316317089619" a="2.491840087603225" b="-0.00089206378161462568" c="0.00061210260093159941" d="-7.0015809233282827e-05" /> - <width sOffset="93.612599580115102" a="2.4939304976092451" b="1.568272708988433e-05" c="0.0006991552892300335" d="-0.00014349790053080913" /> - <width sOffset="93.834020590564137" a="2.4939666900000521" b="0.00030419213999885453" c="0.00062239081345914315" d="-0.00014968322931232836" /> - <width sOffset="96.643805047134634" a="2.4964146971158647" b="0.00025656290352503875" c="-0.00075528001521645797" d="0.00013376917953460468" /> - <width sOffset="100.178673779831" a="2.4937926474878607" b="-6.8611650818048431e-05" c="0.00071616710666357649" d="-0.00012784957215171403" /> - <width sOffset="103.18571592926295" a="2.4965858243508259" b="0.0007703141874816806" c="-0.00021721664607066363" d="1.7462087759629729e-05" /> - <width sOffset="103.8435479644543" a="2.4970035336912999" b="0.00050719983877569718" c="-0.00021358176406589691" d="1.1136467834139133e-05" /> - <width sOffset="113.85307533834447" a="2.4918497996591529" b="-0.00042119572877305934" c="0.00012827361911340918" d="7.8882829798520293e-06" /> - <width sOffset="116.70003233238106" a="2.4918723748225302" b="0.00050099071006781161" c="0.00018470658873915127" d="-2.2733542701539775e-05" /> - <width sOffset="123.86260271223463" a="2.4965830471051516" b="-0.00035191829552245341" c="-0.0003039352601184317" d="-2.4442060698187688e-05" /> - <width sOffset="123.89537498644842" a="2.4965711866488127" b="-0.00037191834880931883" c="-0.00036219855566223789" d="8.5459035411429902e-05" /> - <width sOffset="126.22841389562205" a="2.4948172497279857" b="-0.0006664863181447666" c="0.00013446599012526642" d="-3.7977653785983948e-05" /> - <width sOffset="129.60371757521483" a="2.4926392005867961" b="-0.0010567604081482985" c="0.0013680777607892425" d="-0.00030754811967629149" /> - <width sOffset="132.0835029783787" a="2.4937416195362414" b="5.4668269728880628e-05" c="0.00074619516660101711" d="-0.00036736529701104817" /> - <width sOffset="133.8721300861248" a="2.4941244982695596" b="-0.00080181269579071221" c="-0.0012015962796419171" d="-0.00035867219364055177" /> - <width sOffset="134.57011835248301" a="2.4928574726594244" b="-0.0030034348610757091" c="0.00082291881238918095" d="-5.4441224911181282e-05" /> - <width sOffset="142.25419998443937" a="2.4936677769538513" b="-1.4862558068799974e-07" c="0.00047769270243522798" d="-1.8428133378364482e-05" /> - <width sOffset="143.88165746001499" a="2.4948533257767056" b="0.0014082732454486165" c="0.00039054567349758134" d="-1.8224669186348492e-05" /> - <width sOffset="143.98980335240952" a="2.495010169332788" b="0.0014921056245037394" c="-0.00030527091980626052" d="1.465746893269412e-05" /> - <width sOffset="153.89118483390513" a="2.4940842048203038" b="-0.00024216357380013598" c="0.00012943640006877257" d="1.5329149505383718e-05" /> - <width sOffset="156.04216108811562" a="2.4943147344259109" b="0.00052743574714419778" c="-0.00046904264396276666" d="7.5029034433428578e-05" /> - <width sOffset="159.25567947400367" a="2.493655837662915" b="-0.00016271148974712334" c="0.00034977135363913921" d="-0.0001282044380741685" /> - <width sOffset="160.74378626473435" a="2.493765781676351" b="2.6571263311868376e-05" c="0.00044485244930200725" d="-0.00013251246121855997" /> - <width sOffset="162.84994702450041" a="2.494557041562615" b="0.00013699150234647121" c="-0.0003632495651783084" d="6.986329886525224e-05" /> - <width sOffset="163.90071220779527" a="2.4943809733484739" b="-0.0003949787189658242" c="-0.00014514003413935745" d="6.8311293876678719e-05" /> - <width sOffset="166.8689193208358" a="2.4937162594322757" b="0.00054892935851076456" c="-0.00027839292790396723" d="2.5755457634416317e-05" /> - <width sOffset="173.91023958168546" a="2.4927701602090333" b="0.00045930335870098373" c="0.00029164275891488953" d="1.5084367674118758e-05" /> - <width sOffset="174.73309841524912" a="2.4933539767033794" b="0.0009699057244497855" c="-0.00059453629312635706" d="-3.3658748462705112e-05" /> - <width sOffset="175.4781171460873" a="2.4937326568083655" b="2.7977216606013792e-05" c="2.8270731638454399e-05" d="-1.7699053957993564e-06" /> - <width sOffset="183.91976695557565" a="2.4949187322889936" b="0.00012690236670609743" c="-1.4112658008275113e-05" d="-2.3262509672668753e-06" /> - <width sOffset="186.350154720744" a="2.4951103986754704" b="1.708191320215854e-05" c="-1.7322661016037894e-05" d="4.7749341916099125e-07" /> - <width sOffset="193.92929432946579" a="2.4944526799701534" b="-0.00016321334414498589" c="-2.1228483152572205e-05" d="3.220127062192631e-06" /> - <width sOffset="197.65874720744654" a="2.4937157557152885" b="-0.00018719010815695925" c="5.7026812892687251e-05" d="-3.5902058106180567e-06" /> - <width sOffset="203.93882170335593" a="2.493900058273383" b="0.00010428916199171304" c="-1.3727527783769758e-05" d="-6.7342304427911939e-06" /> - <width sOffset="207.74683687536469" a="2.4937262665155977" b="-0.00029321891997098181" c="0.00015994302329431359" d="-1.5815517672253419e-05" /> - <width sOffset="213.94834907724612" a="2.4942870357357707" b="-0.00013417699001046571" c="-0.00017623078386259586" d="-1.0418550936135359e-05" /> - <width sOffset="214.30497800477514" a="2.4942162980098108" b="-0.00026385020584748613" c="-2.0804700604546518e-05" d="4.8943217308032995e-06" /> - <width sOffset="217.31358358048351" a="2.4933674458948851" b="-0.00025613057602450265" c="0.00059596156872033373" d="-0.00012627900881766191" /> - <width sOffset="217.56263270835734" a="2.4933386709126375" b="1.721929794222532e-05" c="0.0008225606562330904" d="-0.00014188569718425414" /> - <width sOffset="221.26242088248301" a="2.4974762427862602" b="0.00027724129472435008" c="-0.00065090526157428167" d="6.4054123371228158e-05" /> - <width sOffset="223.95787645113631" a="2.4947488166382574" b="-0.0018355791335607765" c="-0.00011545391175407979" d="6.5550040133335682e-05" /> - <width sOffset="227.51110676657038" a="2.4897095720987226" b="-0.0001732524001246535" c="0.00034106299885781807" d="-3.4198039504598235e-05" /> - <width sOffset="233.96740382502645" a="2.4936043227406817" b="-4.5754142190001373e-05" c="-0.00037149958736787793" d="-2.1645653311193586e-05" /> - <width sOffset="234.88458632866707" a="2.4932331427406469" b="-0.00078184649809876546" c="0.0010961803096479618" d="-0.00042904049630128143" /> - <width sOffset="235.88207015561039" a="2.4931181243766374" b="0.00012434536546004384" c="0.0008176856712505486" d="-0.00047625120165004033" /> - <width sOffset="237.90136049990872" a="2.4927820335292354" b="-0.0023991557529648303" c="0.00063392794361550665" d="-4.1244252363016809e-05" /> - <width sOffset="243.97693119891659" a="2.4923560593169944" b="0.00073649959035039286" c="-0.00013231482039017704" d="-3.5082528962494832e-05" /> - <width sOffset="245.63510841513596" a="2.4930535499127617" b="8.3130698954741468e-06" c="0.00018738219216808498" d="-3.5877239505052749e-06" /> - <width sOffset="247.01057584881625" a="2.4934101584408253" b="0.00050342631627977945" c="1.2702316650276463e-05" d="-2.4810935231961582e-06" /> - <width sOffset="253.77401253007059" a="2.496628487711213" b="0.00033476295487903191" c="-0.00020285261608106575" d="1.0868910290711365e-05" /> - <width sOffset="253.98645857280678" a="2.4966905555793857" b="0.00025004413382080821" c="-0.00019516126637226201" d="1.0564137886302449e-05" /> - <width sOffset="263.99598594669698" a="2.4902344085526464" b="-0.00048161679020527169" c="0.00012583403465205473" d="8.3431886030310957e-06" /> - <width sOffset="265.87417218614263" a="2.4898290100483069" b="7.935659908158213e-05" c="-6.7774922671910343e-05" d="6.0781158532165263e-06" /> - <width sOffset="274.00551332058711" a="2.4892608956343807" b="0.00018278607949259382" c="8.0012240189114453e-05" d="6.1530074054543865e-06" /> - <width sOffset="276.65823158401719" a="2.4904236727600928" b="0.00073718049646641966" c="-6.0733971447575447e-05" d="1.9108191717357465e-05" /> - <width sOffset="281.09399942848785" a="2.494166361522439" b="0.0013262973268265768" c="0.0005183556876552953" d="-0.00020310043758651523" /> - <width sOffset="283.20187093702123" a="2.4973630001592815" b="0.00080435144941584831" c="-0.0026512656781682432" d="0.00065369667495061249" /> - <width sOffset="284.01504069447725" a="2.4966154337456508" b="-0.0022107456072671672" c="-0.0010395152823516544" d="0.00064737456234226405" /> - <width sOffset="285.70612132548638" a="2.4930348783426903" b="-0.00017255852556438515" c="0.00056040449086905745" d="0.00076546414754535841" /> - <width sOffset="286.71415680607254" a="2.4942144455780917" b="0.0032907026470510711" c="-0.0012008821704517186" d="0.00011235298670319523" /> - <width sOffset="289.26832042526519" a="2.4966572887724152" b="-0.00064490745879215846" c="-0.00030255618348826039" d="6.0780157120030444e-05" /> - <width sOffset="293.17830902199216" a="2.4931434172651294" b="-0.00022326681314116439" c="0.00036948562406548735" d="0.00017049401820374001" /> - <width sOffset="293.42840789088314" a="2.4931133567390193" b="-6.4580216077753951e-06" c="-0.00059901227961443014" d="7.3616158932499791e-05" /> - <width sOffset="296.71180461637027" a="2.4892401973052425" b="-0.0015591480751375661" c="0.00089751493339760994" d="-7.6864989539555888e-05" /> - <width sOffset="303.7903292254486" a="2.4959122299698651" b="-0.00040706364295575075" c="-0.00055472301236284113" d="0.00012594032566059826" /> - <width sOffset="304.03409544225764" a="2.4957818631265183" b="-0.00065505823696937991" c="-0.00045740011265245454" d="0.00012545327331346423" /> - <width sOffset="307.03684442678929" a="2.4930872972655735" b="-8.5248170317050835e-06" c="0.00021889761592899272" d="0.00011188806259947322" /> - <width sOffset="307.75301547089089" a="2.4932345640991409" b="0.00047717393690998059" c="8.6539963264513624e-05" d="-1.1552512317102209e-05" /> - <width sOffset="314.04362281614777" a="2.4967850448019897" b="0.00019449272600870465" c="-0.00013354465287391149" d="-9.689021826028191e-06" /> - <width sOffset="315.69455764067635" a="2.4966985538911142" b="-0.00032567909087414821" c="-0.00032937794464141479" d="3.544177466908693e-05" /> - <width sOffset="321.61158586958391" a="2.4905817797554453" b="-0.00050097664779543034" c="0.00020188659028448516" d="-1.7333558106555035e-05" /> - <width sOffset="324.05315019003791" a="2.4903098212585415" b="0.00017487323445303758" c="6.4351211733279002e-05" d="-1.8549708015893873e-05" /> - <width sOffset="328.87974314690729" a="2.4905672541087576" b="-0.00050033452486957473" c="0.0003757383495785371" d="-3.5827710058425693e-05" /> - <width sOffset="334.0626775639281" a="2.4930792138626017" b="0.00050722110776450433" c="-0.00010643435951485317" d="-9.006399136073952e-05" /> - <width sOffset="335.09945067553485" a="2.4933903112971332" b="-3.9044000150721681e-06" c="0.00018462491966709642" d="-2.8302243239595194e-05" /> - <width sOffset="342.49899004240842" a="2.4920036158816639" b="-0.0019205393744513716" c="0.0004263673094668536" d="-1.53243536624677e-05" /> - <width sOffset="344.0722049378183" a="2.489977787334805" b="-0.00069278813084677759" c="0.00034736308758285042" d="-2.0474921172890216e-05" /> - <width sOffset="354.08173231170844" a="2.4973123364085406" b="0.00010690627562343936" c="-0.00026623775028218914" d="-1.9781030371525427e-05" /> - <width sOffset="356.76083618443818" a="2.4953074220930151" b="-0.00174559172610971" c="0.00041717898668119219" d="7.0358208526480347e-06" /> - <width sOffset="358.74509097175445" a="2.4935412360755644" b="-6.9072060572975338e-06" c="-0.00010969499904642325" d="6.5810462317696182e-06" /> - <width sOffset="364.09125968559857" a="2.4913746537619694" b="-0.00061551423814831807" c="4.4487597494747536e-06" d="6.93941067996163e-06" /> - <width sOffset="374.10078705948877" a="2.4926186351158042" b="0.0015593376821203119" c="0.00022738320439639296" d="6.9476496578625915e-06" /> - <width sOffset="374.54305065919812" a="2.4933533499154512" b="0.0017645411312987834" c="-0.00073263840017627989" d="7.8120947198305742e-05" /> - <width sOffset="379.50726378850186" a="2.4936151359733087" b="0.00026609486223341371" c="-0.00017505504014153541" d="3.6792200581979943e-05" /> - <width sOffset="380.99652998559685" a="2.4937446920619415" b="-1.0506456745127367e-05" c="-0.00027131793261976064" d="2.8483520833892431e-05" /> - <width sOffset="384.11031443337896" a="2.4919412950222295" b="-0.00087165852188386163" c="-4.2219591512846269e-06" d="2.8537143386234965e-05" /> - <width sOffset="387.79754456166921" a="2.4901004660798636" b="0.00026115121999598263" c="0.00014983119628485313" d="-9.3358060167630829e-06" /> - <width sOffset="394.1198418072691" a="2.495381246706124" b="0.0010362090400512971" c="-2.3341151175388091e-05" d="-1.0533107392282627e-05" /> - <width sOffset="397.30962371787444" a="2.4981071850750953" b="0.0005657887801851242" c="-0.00049672508983382522" d="4.6701888803165539e-05" /> - <width sOffset="403.76532034019584" a="2.493623258941053" b="-8.5777907383836893e-06" c="-0.00011965538356240179" d="4.9836189376377226e-05" /> - <width sOffset="404.12936918115923" a="2.4936066825862837" b="-7.5883994585804887e-05" c="-5.1720694677912361e-05" d="4.8020674675069607e-05" /> - <width sOffset="407.01056559212549" a="2.4941072391902921" b="0.00082198208248158468" c="-9.1960825027310067e-05" d="2.6382805400592647e-06" /> - <width sOffset="414.13889655504948" a="2.4962494031903755" b="-8.6894653285809684e-05" c="-3.6662007134141336e-05" d="2.8695972762550682e-06" /> - <width sOffset="420.14254070273256" a="2.4950272457280618" b="-0.00021681286176805994" c="-6.0433174119366476e-05" d="9.3601531570045045e-06" /> - <width sOffset="424.14842392893962" a="2.4937906384587611" b="-0.00025037938576348475" c="5.0070418244324197e-05" d="9.1240009854309609e-06" /> - <width sOffset="425.8577991770141" a="2.493554522024771" b="7.7888154950255667e-07" c="-0.00017157995492602605" d="1.7337394942852504e-05" /> - <width sOffset="429.59513631349495" a="2.4920659035784052" b="-0.00055523537806865305" c="-4.9853960004307262e-05" d="1.3513821422868531e-05" /> - <width sOffset="434.15795130282976" a="2.4897782827456698" b="-0.0001661400484053404" c="0.00013609894314451607" d="1.3362127794251721e-05" /> - <width sOffset="434.49424619922939" a="2.4897383109062967" b="-7.0067748686694338e-05" c="0.00144426613516701" d="-0.00027522423143493292" /> - <width sOffset="437.82058992593596" a="2.4953559137547798" b="0.00040247624462430836" c="-0.00018805725799176699" d="1.1116335128934679e-05" /> - <width sOffset="442.93602125045521" a="2.493981757923065" b="-0.00064884704356502152" c="-3.4208486000287007e-05" d="1.2203319879718083e-05" /> - <width sOffset="444.1674786767199" a="2.4931536432487311" b="-0.0006775810895739301" c="9.1458045345665256e-06" d="1.0949333380570962e-05" /> - <width sOffset="452.819332003336" a="2.4950670409974141" b="0.0019394980232927445" c="-0.00054738211562123851" d="3.1331037868248829e-05" /> - <width sOffset="454.17700605061003" a="2.4967696774412147" b="0.00062642055405266045" c="-0.00041380128483255131" d="3.7213938650051678e-05" /> - <width sOffset="460.73564318679399" a="2.4935771459456499" b="8.2882288465410681e-07" c="-6.6641209227284574e-06" d="4.0485730649176045e-06" /> - <width sOffset="461.72518181422055" a="2.4935753635161304" b="-4.6706062719129027e-07" c="-0.00045367263138654842" d="5.4801968484929182e-05" /> - <width sOffset="464.18653342450028" a="2.4916429297818832" b="-0.0012377504198927709" c="-5.6322858823666867e-05" d="5.8273244254197213e-05" /> - <width sOffset="465.58753317231134" a="2.4899585358191172" b="-0.0010524308191577885" c="0.00028846894957397132" d="-1.4644355068057696e-05" /> - <width sOffset="474.19606079839042" a="2.492933785640044" b="0.00065841843711437684" c="-9.4194958501917945e-05" d="-1.461645463483329e-05" /> - <width sOffset="476.14807626642681" a="2.4937513959133506" b="0.00012359635046572948" c="-0.00048116227122888574" d="0.0002437341560347563" /> - <width sOffset="477.13631443459388" a="2.4936388630422499" b="-0.00011330643033051133" c="-0.0010352996776849342" d="0.00024815972828981427" /> - <width sOffset="479.75860503331882" a="2.490697399018976" b="-0.00042367704276259632" c="0.00021748446117195316" d="2.3573151451247098e-05" /> - <width sOffset="484.20558817228056" a="2.4951872835144142" b="0.0029091462375420291" c="0.00052629963887982874" d="2.0567395897224395e-05" /> - <width sOffset="484.32603811400003" a="2.4955453616052674" b="0.0030368269461687608" c="-0.0044462194218727533" d="0.0012160620405885518" /> - <width sOffset="486.30109487932435" a="2.4935682623685373" b="-0.00029522054208985099" c="-0.0038108696240632938" d="0.001488293892341618" /> - <width sOffset="488.58596561826522" a="2.4907516407396466" b="0.0055996048702743832" c="-0.0024390750218470031" d="0.00030639102190836508" /> - <width sOffset="492.21386213592638" a="2.4935940951972597" b="0" c="-4.8934517789272006e-05" d="4.4457208518006164e-06" /> - <width sOffset="494.21511554617081" a="2.4934337443855927" b="-0.00014244520229195895" c="-3.7163172825642465e-05" d="6.7287078065243365e-06" /> - <width sOffset="502.0741483821883" a="2.4932850733578436" b="0.00052020534980579125" c="-0.0084257307365222783" d="0.00043711644870592027" /> - <width sOffset="502.40363897330593" a="2.4925573806956001" b="-0.004889827256635379" c="0.0024265892605644865" d="-0.00028882280417786221" /> - <width sOffset="504.22464292006094" a="2.4899556193983519" b="0.0010745727487779244" c="0.00081448940331936993" d="-0.00029288941794879337" /> - <width sOffset="506.56893616434883" a="2.4931774735299044" b="6.4470134620298047e-05" c="0.0026593396011635323" d="-0.00088488174081208194" /> - <width sOffset="509.65206044792075" a="2.4927216761066129" b="-0.0087715234157186017" c="0.0053040256904006589" d="-0.000694734348738335" /> - <width sOffset="513.93185414432151" a="2.4978720545162094" b="-0.0015468365388309896" c="-0.0010037681966325301" d="0.00035054586133580418" /> - <width sOffset="514.23417029395114" a="2.4973223670533988" b="-0.0020576327373645897" c="-0.00068080930898764807" d="0.00034863180341799968" /> - <width sOffset="516.41306735802209" a="2.4932132189924268" b="-5.8974428994836015e-05" c="-0.0013248504938369746" d="0.00042377622884165293" /> - <width sOffset="517.90496993843135" a="2.4915836250228356" b="-0.0011823807118362881" c="0.0009926989222721087" d="-0.00014902422101168545" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1620678747004908" weight="standard" type="solid"> - <type name="solid"> - <line length="521.70150533050469" space="0" width="0.16206799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="0" b="0" c="0.003367991492344645" d="3.2954534333379765e-05" /> - <width sOffset="3.7482742255526489" a="0.049054236023605924" b="0.026637301494807957" c="0.0037495145245922141" d="2.5613499276607166e-05" /> - <width sOffset="5.1585021555728758" a="0.094147557765785539" b="0.037365457695930158" c="0.0028784584109074148" d="8.7322651469078202e-05" /> - <width sOffset="8.7213663906828742" a="0.26776410809177786" b="0.061201992366223007" c="0.0048728276655416215" d="-0.00016870312491952576" /> - <width sOffset="13.757801599442814" a="0.67805429950426555" b="0.097447545759355034" c="0.0023186360003117409" d="-0.00015969048448002742" /> - <width sOffset="16.251559602642203" a="0.93300757670292778" b="0.1060325164864869" c="0.0093599027522809075" d="-0.0015858443021211587" /> - <width sOffset="19.170073889083994" a="1.2827674061738876" b="0.12014317627050189" c="-0.00083861227126504393" d="-5.5920618097610881e-05" /> - <width sOffset="23.295946210321006" a="1.7602597357345102" b="0.11036738170098545" c="0.0024322407584107131" d="-0.00040035337215747351" /> - <width sOffset="23.76732897333298" a="1.8127835312857907" b="0.11239353682819393" c="0.0018424099598840118" d="-0.00040219256320244399" /> - <width sOffset="28.551194149742827" a="2.3485910393132201" b="0.10240824645816329" c="0.001731304235196376" d="-0.00023802867346763647" /> - <width sOffset="31.202110036677993" a="2.6277989575347016" b="0.10656919426837359" c="-0.00072586822749677962" d="-0.00028858230678893563" /> - <width sOffset="33.776856347223145" a="2.8924498280018485" b="0.09709202905637021" c="-0.0029423662145323273" d="-0.00028962019442342786" /> - <width sOffset="39.931896193253039" a="3.3110511767058339" b="0.027954904232610545" c="-0.00067500116802404796" d="3.4985371621040565e-05" /> - <width sOffset="43.78638372111331" a="3.4107779505646896" b="0.024310677841755619" c="-0.00026300201729526296" d="3.5579382506801975e-05" /> - <width sOffset="49.63351140716378" a="3.5510464010220484" b="0.024884325172253925" c="-0.00060945297119223689" d="6.9066487941398257e-05" /> - <width sOffset="49.641656711541316" a="3.5512490510273773" b="0.024874410559665806" c="-0.0010255698836716882" d="-1.2983602226621125e-05" /> - <width sOffset="53.795911095003476" a="3.6359537311893515" b="0.015681247810198602" c="-0.0011883360152266792" d="-1.1625538450316633e-05" /> - <width sOffset="55.490103522288535" a="3.6590533829955123" b="0.011554602124217377" c="-0.0019702434288354663" d="7.6375559283759102e-05" /> - <width sOffset="63.630127774986079" a="3.6637535713257314" b="-0.0053391239737872742" c="-0.00051628184275961378" d="4.4420555017951342e-05" /> - <width sOffset="63.805438468893641" a="3.6628019378104373" b="-0.0055160477873866347" c="-0.00049789334347312224" d="4.4395772523870358e-05" /> - <width sOffset="73.814965842783806" a="3.6022274406192976" b="-0.0021392795348041029" c="0.00083599225188318318" d="4.3582020639141665e-05" /> - <width sOffset="76.82588110862298" a="3.6045546370442585" b="0.0040802170347111928" c="0.0012564288610397046" d="-0.00033504734438813324" /> - <width sOffset="77.336708740371023" a="3.6069221222235881" b="0.0051015675372712132" c="0.00074242626292593582" d="-0.00033253332148723823" /> - <width sOffset="79.797382288533868" a="3.6190162722709909" b="0.002714922569456742" c="-0.0013604103596605492" d="0.00017487791759165933" /> - <width sOffset="83.515957484484915" a="3.6192926050927947" b="-0.00014812248279424522" c="0.00026905499627955247" d="-6.0738523042504402e-05" /> - <width sOffset="83.824493216673972" a="3.6192707325740248" b="5.5779456401613275e-07" c="0.00021176770929393524" d="-6.0736209134341615e-05" /> - <width sOffset="88.656316317089619" a="3.6173660429764585" b="-0.002206930342958123" c="-0.00091797197132663746" d="7.2754372205025605e-05" /> - <width sOffset="90.892008192384708" a="3.6086567189959444" b="-0.0052205867993348311" c="-0.00070766103932599434" d="0.00010315288283895582" /> - <width sOffset="93.834020590564137" a="3.589799298958757" b="-0.0067059820809541263" c="0.00018548997296221779" d="0.00010896992350926469" /> - <width sOffset="96.643805047134634" a="3.5748386302201185" b="-0.0030826921444256105" c="0.0012199739601746935" d="-0.00017448248533764871" /> - <width sOffset="99.103126565306411" a="3.5720406606802095" b="-0.00024802325049463588" c="-0.00045659809239872524" d="-0.00019414527732183309" /> - <width sOffset="100.178673779831" a="3.5710041518873981" b="-0.001903971688389244" c="-0.00077360978309984612" d="0.00014328116737190799" /> - <width sOffset="103.18571592926295" a="3.5621795138211421" b="-0.0026697511695476447" c="0.00029898434141807477" d="-2.0304925388062061e-06" /> - <width sOffset="103.8435479644543" a="3.560552071327876" b="-0.0022790242581522606" c="0.00029654345179489622" d="-1.7435617725959999e-06" /> - <width sOffset="110.28848289745611" a="3.5577147296058813" b="0.0013261142946268461" c="0.00026652153256805159" d="-2.4020656624529635e-05" /> - <width sOffset="113.85307533834447" a="3.5647403302930378" b="0.0023105531788667087" c="-6.3365484352690294e-06" d="-1.9905823182484471e-05" /> - <width sOffset="116.70003233238106" a="3.5708076891218465" b="0.0017904535252291761" c="-0.00016540977845404787" d="1.0716002498906818e-05" /> - <width sOffset="123.58862838477737" a="3.578795128016508" b="0.0010370827733603427" c="0.00039336469547597325" d="1.4936267926784194e-06" /> - <width sOffset="123.89537498644842" a="3.5791503057953973" b="0.0012788309620917742" c="0.00045059942000148345" d="-0.0001084074775980908" /> - <width sOffset="126.22841389562205" a="3.5832098574051434" b="0.001611154274021245" c="-0.00020668395136524579" d="1.5029211599314853e-05" /> - <width sOffset="129.60371757521483" a="3.5868712386429187" b="0.00072958083750124941" c="-0.0016726696060903404" d="0.00028459967748966654" /> - <width sOffset="133.72258510245894" a="3.581386265006381" b="0.0014353318904275856" c="0.0025537050713282362" d="0.00026030859795153865" /> - <width sOffset="134.57011835248301" a="3.5845955893289618" b="0.0063249806529554996" c="0.00044000360750100101" d="-4.3922370779780669e-05" /> - <width sOffset="143.88165746001499" a="3.6461803659625138" b="0.0030943663264647319" c="-0.00078697718288595379" d="-4.3911166403877325e-05" /> - <width sOffset="143.98980335240952" a="3.6465057493119604" b="0.002922608933406623" c="-0.00011131979556936746" d="-7.6793304899811204e-05" /> - <width sOffset="145.35505195727194" a="3.6500929323875826" b="0.002189244554575078" c="-0.00022005663794810075" d="5.3491220047328435e-05" /> - <width sOffset="149.33230031613004" a="3.6586844878755329" b="0.0029772580666828359" c="-8.7065985651317936e-05" d="-1.9286206084479581e-05" /> - <width sOffset="153.89118483390513" a="3.6686205804031076" b="0.00098091008932633429" c="-0.00034741886638373174" d="-1.9905533471655197e-05" /> - <width sOffset="156.04216108811562" a="3.6689249939807289" b="-0.00078996010062266919" c="0.00022152909792301533" d="-7.9605418399704268e-05" /> - <width sOffset="159.25567947400367" a="3.6660323981755707" b="-0.0018323683642725202" c="-0.00064140378172771731" d="0.00012362805410775151" /> - <width sOffset="161.22412629134283" a="3.6608831268661004" b="-0.0029204112298918143" c="-0.00062985188232220007" d="0.00017675145020404169" /> - <width sOffset="162.84994702450041" a="3.6552297716401427" b="-0.0035668460850067051" c="0.00020307101123002698" d="-2.5624309877908947e-05" /> - <width sOffset="163.90071220779527" a="3.6516763379402533" b="-0.003224962164215325" c="0.00012657746916307217" d="-2.3820737407139351e-05" /> - <width sOffset="166.8689193208358" a="3.6425962339579927" b="-0.0031031460784823614" c="0.00065600192145579038" d="1.8735098835120693e-05" /> - <width sOffset="169.57081990280534" a="3.6393703730176097" b="0.00085207152575116334" c="0.00011160437155415199" d="-5.7587480487899491e-05" /> - <width sOffset="173.91023958168546" a="3.640463755087834" b="-0.0014325461257422437" c="-0.00063839930928052718" d="-5.7583549260667501e-05" /> - <width sOffset="174.73309841524912" a="3.6388206308532007" b="-0.0026001400343279059" c="0.00014286726178686549" d="-8.8404331236373161e-06" /> - <width sOffset="183.91976695557565" a="3.6201372148847248" b="-0.0022134535236061821" c="-0.00010078939981657784" d="-7.2920975177851549e-06" /> - <width sOffset="185.63411573713898" a="3.6160096234002781" b="-0.0026233241363686124" c="-6.2327827389963076e-05" d="1.1208569252397122e-05" /> - <width sOffset="186.350154720744" a="3.614103379746306" b="-0.0026953421466869416" c="-5.2001582442796473e-05" d="8.4048248652922893e-06" /> - <width sOffset="193.92929432946579" a="3.5943470787356997" b="-0.0020351925820678951" c="0.0001102242916918195" d="1.1885884008828752e-05" /> - <width sOffset="194.64872160290253" a="3.5929443808936106" b="-0.0018581403280858114" c="4.4643139119244268e-05" d="4.4089249654902229e-06" /> - <width sOffset="197.65874720744654" a="3.5878760475398881" b="-0.0014695484024369657" c="-0.00037745097656297175" d="1.2127230317236932e-05" /> - <width sOffset="203.93882170335593" a="3.5667644545803849" b="-0.0047755191833369626" c="-0.00017937859733431239" d="1.3321184956568893e-05" /> - <width sOffset="204.39645943858085" a="3.5645427058824568" b="-0.0049313303543200701" c="0.0016750302096115736" d="-0.00017765536578587631" /> - <width sOffset="207.74683687536469" a="3.560141872675433" b="0.0003100766038225105" c="-0.00036121008371817518" d="-0.00016857407855644404" /> - <width sOffset="208.89514682916246" a="3.5597663879912824" b="-0.0011863389703430987" c="0.0011917331334126175" d="-0.00015173301286831999" /> - <width sOffset="213.94834907724612" a="3.5646237756494239" b="-0.00076564239091847161" c="-0.0011063731266032343" d="-0.00015205666552373231" /> - <width sOffset="214.30497800477514" a="3.5642031153329476" b="-0.0016127893265008688" c="-0.0014356292964477092" d="-0.00016736953818900641" /> - <width sOffset="216.30066355516976" a="3.5539364171741568" b="-0.0093426971272892508" c="-0.00076206212732397144" d="0.00012388720877297253" /> - <width sOffset="217.31358358048351" a="3.5438198824973863" b="-0.010505185683947486" c="-0.00095818964170197869" d="0.00025506053922814411" /> - <width sOffset="219.95794003610803" a="3.5140564898506792" b="-0.010222150515527611" c="0.0025283450791942631" d="3.6514025643227921e-05" /> - <width sOffset="221.26242088248301" a="3.5051053536680983" b="-0.003439390561293847" c="0.0025698654646692212" d="-0.00016942579491185185" /> - <width sOffset="223.95787645113631" a="3.5111879396461183" b="0.0067216462530486952" c="0.0011519095531669636" d="-0.00017203024627231574" /> - <width sOffset="227.51110676657038" a="3.5418973994795575" b="0.0083917705568963656" c="-0.00043965344678494267" d="-7.2282166634386868e-05" /> - <width sOffset="233.16370526709898" a="3.562229998451667" b="-0.0035072494044661394" c="-0.00011717898736014073" d="4.3095729154671964e-05" /> - <width sOffset="234.88458632866707" a="3.556067049354751" b="-0.0035276764387298484" c="-0.0014219300554519328" d="0.0004504905721451062" /> - <width sOffset="237.90136049990872" a="3.5448523821472575" b="0.00019268445539564658" c="-4.6155719368152572e-05" d="1.5483622858092232e-05" /> - <width sOffset="243.97693119891659" a="3.5477917570212814" b="0.0013464602246771895" c="0.00022688296110675655" d="1.6183486191836019e-05" /> - <width sOffset="245.03712882963185" a="3.5494935772980787" b="0.0018821134189901088" c="0.00048977286889924918" d="-5.5022575937935678e-05" /> - <width sOffset="247.01057584881625" a="3.554692365309303" b="0.0031723399022055136" c="0.00032389593663474555" d="-5.6129206365134356e-05" /> - <width sOffset="251.97436680231982" a="3.571554917747612" b="0.0022389036442275771" c="-0.00020307356715203859" d="1.0614088042302004e-05" /> - <width sOffset="253.77401253007059" a="3.5749883165574836" b="0.0016111110179173854" c="1.9444003438403939e-05" d="-2.7359159108068317e-06" /> - <width sOffset="253.98645857280678" a="3.5753314420570552" b="0.0016190021781745379" c="1.7688795710385952e-05" d="-2.7337879329624935e-06" /> - <width sOffset="263.99598594669698" a="3.5905675312842473" b="0.0011514152744029433" c="-7.0217826348711215e-05" d="-6.0274542553349957e-08" /> - <width sOffset="265.87417218614263" a="3.592482005012867" b="0.00088701309352553874" c="0.00017006169660797294" d="2.2047982072555935e-06" /> - <width sOffset="267.53659693634012" a="3.5944367192292304" b="0.0014707225522429049" c="-0.00020056279158214108" d="1.3219853670589696e-05" /> - <width sOffset="274.00551332058711" a="3.5991364403064527" b="0.00053550355341577555" c="5.2801543142325899e-05" d="1.2794209694055685e-05" /> - <width sOffset="276.65823158401719" a="3.6011673691732562" b="0.0010857340561282146" c="0.00034433264130216137" d="-1.60974617880143e-07" /> - <width sOffset="277.68645977470618" a="3.6026476233333016" b="0.0017933285408553174" c="-9.8233777082663685e-05" d="3.9509238602455289e-07" /> - <width sOffset="281.09399942848785" a="3.6076334692375225" b="0.001137620199421866" c="-0.00041900605011163466" d="0.00022260372168994623" /> - <width sOffset="283.20187093702123" a="3.6102545333532308" b="0.002338365046919407" c="0.0028739465663608892" d="-0.00063419339084598071" /> - <width sOffset="284.01504069447725" a="3.6137153954172265" b="0.0057543061817694821" c="0.0013264866008242207" d="-0.00063414762559568696" /> - <width sOffset="286.71415680607254" a="3.6264410197346653" b="-0.00094474080923107333" c="0.00026770410154703766" d="1.8963535246423472e-05" /> - <width sOffset="287.82152445868519" a="3.6257488710304306" b="-0.00028208423259937373" c="9.0350560760481399e-05" d="-5.0793115941370592e-05" /> - <width sOffset="289.26832042526519" a="3.6253760512427826" b="-0.00033960985921129591" c="-0.00016753351859091894" d="7.7971364155553859e-07" /> - <width sOffset="292.34461943346128" a="3.6227685366857414" b="-0.001348239522856154" c="-0.000366559955948109" d="7.8302058832784737e-05" /> - <width sOffset="293.17830902199216" a="3.6214351220450158" b="-0.0017961651639218899" c="-0.00012981376608802743" d="-3.141180231522662e-05" /> - <width sOffset="294.02456806836744" a="3.6198030971406294" b="-0.0020833644105434316" c="-0.00021049886756530699" d="-3.1700973039176439e-05" /> - <width sOffset="296.71180461637027" a="3.6120693781434752" b="-0.0039014459398561832" c="-0.0012374569551060208" d="0.00011878017543287425" /> - <width sOffset="299.88752424684702" a="3.5910037468114795" b="-0.0081673148730571649" c="-0.00074307478452905059" d="0.00020743202584178326" /> - <width sOffset="303.38819246448685" a="3.5622052880083372" b="-0.0057437934040545681" c="0.00085267640200594841" d="8.918772392528449e-05" /> - <width sOffset="303.7903292254486" a="3.560039187201959" b="-0.0050147396472097535" c="0.00078023917487446827" d="-0.0001136175911793741" /> - <width sOffset="307.75301547089089" a="3.5453494290061389" b="-0.0041834245319670865" c="-0.00019770279803942549" d="9.8229837362923129e-06" /> - <width sOffset="312.70686666172219" a="3.5209677997710012" b="-0.0054190180444028185" c="0.0014023460008061135" d="-0.00010381174398627931" /> - <width sOffset="314.04362281614777" a="3.5159817977416576" b="-0.0022263376654719494" c="0.00099111968594294626" d="-0.00010589475801901118" /> - <width sOffset="315.69455764067635" a="3.5145311396220653" b="0.00018033459951165721" c="0.00061448911581996936" d="-0.00015102555451411946" /> - <width sOffset="317.05314358773262" a="3.5155316221316948" b="0.0010137382857607728" c="0.00088265134289982282" d="-9.0965858133987583e-05" /> - <width sOffset="321.61158586958391" a="3.5298772127364897" b="0.0033901219129491185" c="-0.00026347109019585771" d="-3.8190525358474292e-05" /> - <width sOffset="324.05315019003791" a="3.5360279467652984" b="0.0014205704445709698" c="-0.0005122294922319348" d="-3.7981310015496179e-05" /> - <width sOffset="324.30433931338212" a="3.5363518570236816" b="0.0011560480869214334" c="0.00018406774200516239" d="1.2972066969628696e-06" /> - <width sOffset="328.87974314690729" a="3.5456188272382234" b="0.0029218850129534308" c="-0.00037810933254205651" d="1.8575208739503886e-05" /> - <width sOffset="334.0626775639281" a="3.5531918792608512" b="0.00049940012994559302" c="-6.4264491739881175e-05" d="2.1087171593886618e-05" /> - <width sOffset="342.49899004240842" a="3.5654924248522826" b="0.0039174980263704702" c="-0.00040058366404737431" d="8.1092820170613386e-06" /> - <width sOffset="344.0722049378183" a="3.570695619717978" b="0.002717301195318933" c="-0.00034718312509466898" d="1.3316141213227646e-05" /> - <width sOffset="347.57226160604125" a="3.5765241541695363" b="0.00077636400751232224" c="0.0014903521553024097" d="-0.00035762328194242698" /> - <width sOffset="351.10386955738375" a="3.5821017457280577" b="-0.0020780629492501024" c="-0.0010449683373237842" d="0.00013074495226279601" /> - <width sOffset="354.08173231170844" a="3.5700996706158343" b="-0.0048233995991181847" c="0.00013136193211603006" d="0.00012960670177203821" /> - <width sOffset="356.76083618443818" a="3.5606124210387029" b="-0.0013287408374606318" c="0.00033064833987508804" d="0.00010278985054771087" /> - <width sOffset="359.7443546376652" a="3.5623211606684442" b="0.0033891652972192028" c="0.0017418621961873802" d="-0.00034473189801229292" /> - <width sOffset="363.7533796968703" a="3.5816915920549319" b="0.00073361892508601355" c="-4.8896912033597232e-05" d="-2.8220582908044107e-07" /> - <width sOffset="364.09125968559857" a="3.5819338741108115" b="0.00070047969661524287" c="-4.2072299744077364e-05" d="-3.3834153489837966e-07" /> - <width sOffset="373.79541923554473" a="3.5844602697955525" b="-0.0002116585123850995" c="-0.00057446861813925589" d="2.1885268007325244e-05" /> - <width sOffset="374.54305065919812" a="3.5839900720778077" b="-0.0010339416021096736" c="0.00044385740630162557" d="-4.9288029538280655e-05" /> - <width sOffset="379.50726378850186" a="3.5837658680758024" b="-0.00027101172903434053" c="0.00031567229147887844" d="-7.9592829217072238e-06" /> - <width sOffset="383.63546681307054" a="3.5874668227309221" b="0.001928379151487314" c="-0.00016094691707315632" d="2.779322464081216e-06" /> - <width sOffset="384.11031443337896" a="3.5883465162075723" b="0.0017774086774206537" c="-0.00015883966315159587" d="3.7013813770377865e-06" /> - <width sOffset="387.79754456166921" a="3.5929262515640068" b="0.00075702012937205708" c="4.3719760807732331e-05" d="4.1574330780400289e-05" /> - <width sOffset="388.49147473940758" a="3.5934865157008598" b="0.000877756048579207" c="-0.00020286806361905399" d="2.3190802881251324e-05" /> - <width sOffset="394.1198418072691" a="3.5961351708552218" b="0.00079807484177579421" c="0.00017484709636929994" d="2.4425732464575637e-05" /> - <width sOffset="397.30962371787444" a="3.6012526134381835" b="0.0026590971852497453" c="0.00078117436746701682" d="-3.280926373087525e-05" /> - <width sOffset="400.42803921830802" a="3.6161463818383441" b="0.0065739871425136657" c="0.00055886450719313098" d="-8.4875086782769233e-05" /> - <width sOffset="404.12936918115923" a="3.6438314182588916" b="0.0072227448174438935" c="-0.00039810360811450013" d="-8.3039782920920263e-05" /> - <width sOffset="407.01056559212549" a="3.6593506732339676" b="0.0028607027977566764" c="-0.00066055426474600565" d="-3.7657388784983735e-05" /> - <width sOffset="407.28320924826875" a="3.6600807604945835" b="0.0024921132014706759" c="-0.00064489467478936492" d="4.6848146251744923e-05" /> - <width sOffset="411.77773672911832" a="3.6625077394067445" b="-0.00046577357002733182" c="-0.00021647410543741252" d="-9.527304398189467e-07" /> - <width sOffset="414.13889655504948" a="3.6601885726300822" b="-0.0015039681252924063" c="-0.00022161662355172303" d="-1.7315568563820164e-06" /> - <width sOffset="420.14254070273256" a="3.642796692380768" b="-0.004352218186557618" c="-0.00017734828744674343" d="-8.2221127371216758e-06" /> - <width sOffset="420.95447647672967" a="3.6391416547363495" b="-0.0046564700540575061" c="-0.00044747857693267363" d="1.8190505748973093e-05" /> - <width sOffset="424.14842392893962" a="3.6202969613647125" b="-0.0069582157387200862" c="-0.0002682206368676386" d="1.9157775623065489e-05" /> - <width sOffset="429.59513631349495" a="3.5775359723169045" b="-0.0081750145125810171" c="0.00011748111936002974" d="2.2981349143036919e-05" /> - <width sOffset="431.06662825058658" a="3.5658341081755642" b="-0.0076799857182990369" c="-0.0019556296056237547" d="0.00047258112394122281" /> - <width sOffset="434.49424619922939" a="3.5355648589842965" b="-0.0044298381162892787" c="0.001609166676313668" d="0.00076116748316050194" /> - <width sOffset="435.10001811439366" a="3.5336410894791772" b="-0.0016423089820240739" c="-0.00072742232136846605" d="0.00026610591447143265" /> - <width sOffset="437.82058992593596" a="3.5291474453960747" b="0.00030843923758665064" c="0.00033031063416351098" d="-2.0234652092463848e-05" /> - <width sOffset="442.93602125045521" a="3.5366601088142318" b="0.0020993228362991105" c="3.6529489503822746e-05" d="-2.1321636843007065e-05" /> - <width sOffset="444.1674786767199" a="3.5392609140850415" b="0.0020922898781608038" c="-4.1102320384597325e-05" d="-1.983614145363351e-05" /> - <width sOffset="447.41615727204709" a="3.5449441938279298" b="0.0011971867106522385" c="0.00013060681758393593" d="1.0573787358993492e-07" /> - <width sOffset="452.819332003336" a="3.5552424563493243" b="0.0026178304523725568" c="0.00097304477766088681" d="-2.0275966614646169e-05" /> - <width sOffset="454.17700605061003" a="3.5605394675803756" b="0.0051478629559394314" c="0.0008773874618236262" d="-2.5804937267071103e-05" /> - <width sOffset="454.83799458370498" a="3.5643180294695793" b="0.0062739260751861724" c="-0.00088458598943881453" d="0.00021965189463847914" /> - <width sOffset="457.1296268806679" a="3.5766935300755947" b="0.0056801919872824054" c="0.00020563110940839869" d="-3.9947700848663029e-05" /> - <width sOffset="464.18653342450028" a="3.6129795705329535" b="0.0026142529164973356" c="-0.00063134625000063887" d="-4.5056620585173036e-05" /> - <width sOffset="465.58753317231134" a="3.6152790311827756" b="0.00057990959812637306" c="-0.00092058859911665447" d="2.7860978737071445e-05" /> - <width sOffset="467.20132673585766" a="3.6139344648881226" b="-0.0021736927934059222" c="-0.00069400297833039617" d="5.8840392038297658e-05" /> - <width sOffset="470.13531472195751" a="3.603068809182731" b="-0.0047265409136358211" c="-0.00075857859086112174" d="0.00010206090905567197" /> - <width sOffset="474.19606079839042" a="3.5782008554632783" b="-0.0058384823166642182" c="0.00047853402692411742" d="0.00010621828798055522" /> - <width sOffset="476.14807626642681" a="3.569417476651362" b="-0.002756079526135987" c="0.0014019259264264575" d="-0.00015213232268983798" /> - <width sOffset="478.98764339381165" a="3.569412134884443" b="0.0015256527048364069" c="-0.00077532825262823359" d="-0.00010891241831088444" /> - <width sOffset="479.75860503331882" a="3.5700776049171932" b="0.00013594932931039472" c="-0.0003277735138077289" d="0.00011567415852785215" /> - <width sOffset="482.39798120756933" a="3.5702799220198473" b="0.00082317908178001706" c="0.00056905185178588607" d="-2.5360328242197814e-05" /> - <width sOffset="484.20558817228056" a="3.5734774662112976" b="0.0026318329865922183" c="0.00043297362331765901" d="-2.4616317620754008e-05" /> - <width sOffset="484.32603811400003" a="3.5738007089868011" b="0.0027350648674542601" c="0.0054040296067569106" d="-0.0012201109630860941" /> - <width sOffset="488.58596561826522" a="3.5891982472868973" b="-0.017647382726900813" c="-0.0013588402485098085" d="-3.8208092652751293e-05" /> - <width sOffset="491.26229209724391" a="3.5315026517621249" b="-0.025741805002949231" c="-0.0013875017823048157" d="1.2256012339773801e-05" /> - <width sOffset="492.21386213592638" a="3.5057617187647279" b="-0.028349122326471146" c="-0.010658772612530888" d="0.00030962285668846231" /> - <width sOffset="494.21511554617081" a="3.408821037363063" b="-0.06729079965309219" c="-0.0088198810012834576" d="0.00031296755211585834" /> - <width sOffset="495.13314212767222" a="3.3398552779339217" b="-0.082693288438111412" c="-0.007838492155364786" d="0.00028672782313619508" /> - <width sOffset="502.40363897330593" a="2.4344853705425598" b="-0.15120334823372303" c="-0.012004773680219525" d="0.0010126670760273039" /> - <width sOffset="504.22464292006094" a="2.1254500230641331" b="-0.18485064843798901" c="-0.0065111136072010974" d="0.00099725516627814387" /> - <width sOffset="508.2896797215821" a="1.333420700849852" b="-0.18834897992290678" c="0.0012831308757400191" d="0.001566437456247865" /> - <width sOffset="509.65206044792075" a="1.08316030958332" b="-0.17613044882898388" c="-0.0031439037648383792" d="0.0013762900641737118" /> - <width sOffset="513.93185414432151" a="0.37966191579186703" b="-0.12741396336295513" c="0.011914643686188329" d="0.00033100985411143333" /> - <width sOffset="514.23417029395114" a="0.34224070235470205" b="-0.12011922696532262" c="0.012212840893671244" d="0.00033173058682453734" /> - <width sOffset="516.4352832979655" a="0.14055231488258668" b="-0.061533938127101478" c="0.0095271476599170044" d="-0.0007257652661382427" /> - <width sOffset="517.90496993843135" a="0.068391209209770265" b="-0.038233007664035715" c="0.0059063542445104431" d="-0.00015296481628474667" /> - <roadMark sOffset="0" color="standard" width="0.12" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.12" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="49.63351140716378" color="standard" width="0.16130402690251466" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.161304" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8600799487849162" b="0.027452459967692133" c="-0.0016703246955980795" d="-3.6530578597780498e-05" /> - <width sOffset="3.6607340635815149" a="3.9364000312294598" b="0.013754594957560241" c="-0.00036337823942496892" d="-0.00036181834438701833" /> - <width sOffset="3.7482742255526489" a="3.9376010833067703" b="0.013682656431902895" c="-0.00045012630936481623" d="-0.00036167264678174931" /> - <width sOffset="6.8766494994387699" a="3.9649271259917152" b="0.00024754875999458484" c="-0.0044993808702306383" d="0.00085599835600256257" /> - <width sOffset="9.4104291658296972" a="3.9505926530934934" b="-0.006066701250676293" c="0.00072305175609770306" d="-0.00016873414378915937" /> - <width sOffset="12.569292942251678" a="3.9333251050122713" b="-0.0065497578954667145" c="0.00018894181462767367" d="4.8025646211225062e-07" /> - <width sOffset="13.757801599442814" a="3.9258083576151872" b="-0.0060986047678157143" c="0.00029449903842307932" d="2.4345563332766409e-05" /> - <width sOffset="16.251559602642203" a="3.9128089095143705" b="-0.004175583415554851" c="-0.0077593201544562248" d="0.0014504993809739001" /> - <width sOffset="19.170073889083994" a="3.8705887643503134" b="-0.012402089558173204" c="0.0012541766111929067" d="-7.9424303049656256e-05" /> - <width sOffset="23.139028086587331" a="3.8361562645233374" b="-0.0061999677217277338" c="0.00060211096999922926" d="-5.2138171639252115e-05" /> - <width sOffset="23.76732897333298" a="3.8324855780441807" b="-0.0055051005163968825" c="0.00052750735385305989" d="-5.0298980597699847e-05" /> - <width sOffset="28.678876478692985" a="3.8122126724406709" b="-0.0039634776902250334" c="9.124281106099631e-05" d="-9.3698742141031703e-05" /> - <width sOffset="31.202110036677993" a="3.8012875675555171" b="-0.0052926813224025843" c="-5.3838133904410098e-05" d="-4.3145108819639356e-05" /> - <width sOffset="33.776856347223145" a="3.7865669098907948" b="-0.0064279884081641751" c="-0.00034944182551324932" d="-4.4904001190959111e-05" /> - <width sOffset="35.607716668511955" a="3.7733512327736447" b="-0.0081591080604126349" c="-0.00052507768181776413" d="2.4648051943138371e-05" /> - <width sOffset="43.78638372111331" a="3.6849822013563363" b="-0.011801810570834414" c="8.8399758212491292e-05" d="2.3436856134365736e-05" /> - <width sOffset="46.377635793821298" a="3.6554020854194831" b="-0.010871572007486448" c="0.0004235189399354583" d="-0.00011540812307245276" /> - <width sOffset="49.625072046866904" a="3.6206113360122285" b="-0.011772098058343256" c="0.00072229197325366149" d="-0.00010347251996192944" /> - <width sOffset="49.63351140716378" a="3.6205120384167282" b="-0.011759928802740349" c="0.001690234753046842" d="-0.00013696019577316603" /> - <width sOffset="53.079370255830696" a="3.5944548810600483" b="-0.0049900808003628047" c="0.00012614422846497298" d="0.00010868746764246647" /> - <width sOffset="53.795911095003476" a="3.5909840361847234" b="-0.0046418953457464732" c="0.00035989021588691362" d="0.00010877230784700721" /> - <width sOffset="56.775923451579359" a="3.5832256680569712" b="0.00040090807449784729" c="0.0017387668009481909" d="-0.00032702451341622959" /> - <width sOffset="59.89193451119931" a="3.5914633792241872" b="0.0017111832472064201" c="-0.00082625432205569234" d="0.00010685321134062844" /> - <width sOffset="63.008501137803165" a="3.592005569916378" b="-0.00032537831274624847" c="-0.00013247677367169919" d="-3.9995193673582643e-05" /> - <width sOffset="63.630127774986079" a="3.5917425072620173" b="-0.00053644528474054536" c="0.00020407212170755717" d="-8.0401895947621847e-06" /> - <width sOffset="73.814965842783806" a="3.5989531680348983" b="0.0011183887958343686" c="-4.0626078014013612e-05" d="-8.900848267602139e-06" /> - <width sOffset="76.408965663498208" a="3.6014255414731329" b="0.00072794369774074712" c="1.9444060513260309e-05" d="1.7004198618734657e-06" /> - <width sOffset="77.336708740371023" a="3.6021189796533104" b="0.00076841257373513709" c="2.4724992518921978e-05" d="-8.1360303902217547e-07" /> - <width sOffset="79.574492778864141" a="3.6039532185146452" b="0.00086684817629712266" c="-0.00031257877748869006" d="2.8095944724333144e-05" /> - <width sOffset="83.824493216673972" a="3.6041481717350816" b="-0.00026762238763887013" c="5.6099309416056056e-05" d="2.8494055734362419e-05" /> - <width sOffset="90.733370990757152" a="3.6143736979029391" b="0.0045878295749845251" c="0.00077230837805776671" d="-5.7598869426146725e-05" /> - <width sOffset="90.892008192384708" a="3.6151207041291857" b="0.0048285146964876487" c="0.0010225545521601268" d="-8.7997380058918288e-05" /> - <width sOffset="93.834020590564137" a="3.6359361099531999" b="0.0085602837121580132" c="0.00023362476504957478" d="-8.465490737964796e-05" /> - <width sOffset="98.943174075794929" a="3.6744801943610406" b="0.00431817801994085" c="-0.0012083590694138969" d="9.1361665520348583e-05" /> - <width sOffset="99.103126565306411" a="3.6751403559458131" b="0.0039386303467075232" c="-0.00077527203150485821" d="0.00011102445750024256" /> - <width sOffset="103.65037945928648" a="3.6874587802019287" b="0.0037750419871222093" c="0.00064504012034523968" d="-4.6242720598047048e-05" /> - <width sOffset="103.8435479644543" a="3.6882117351795638" b="0.0040190683462321044" c="0.00061667592921626504" d="-4.6529651370138187e-05" /> - <width sOffset="110.28848289745611" a="3.7272731567841473" b="0.0061698084323285555" c="-0.00028665530469251652" d="-2.4252556518192922e-05" /> - <width sOffset="113.85307533834447" a="3.7445252080667162" b="0.0032017075891581839" c="-0.00055894457534262079" d="-2.1651255294051666e-05" /> - <width sOffset="117.79491791144812" a="3.7471347717118779" b="-0.0022140950522440668" c="-0.00066426049167074401" d="6.409252710022925e-05" /> - <width sOffset="123.58862838477737" a="3.7244742434760276" b="-0.00345696383208663" c="0.00011242030861905502" d="7.3314902806598803e-05" /> - <width sOffset="123.72868075691571" a="3.7239924939798055" b="-0.0034211602281199321" c="0.00022675693906834901" d="-1.0923607011193067e-05" /> - <width sOffset="133.72258510245894" a="3.7015461603774713" b="-0.0021618740396431198" c="-0.00081044107944733029" d="1.3367472429891895e-05" /> - <width sOffset="133.8721300861248" a="3.7012047832025248" b="-0.0024033719970991624" c="-0.00079957255643687067" d="1.3632684907246052e-05" /> - <width sOffset="136.9982764156295" a="3.6862939298061543" b="-0.0070028454861284358" c="-0.00016131935638373415" d="4.3912174358407299e-05" /> - <width sOffset="143.88165746001499" a="3.6447687757030023" b="-0.0029818911012279401" c="0.00074549950002820932" d="4.3900969668082696e-05" /> - <width sOffset="144.22429216877686" a="3.6438363627779848" b="-0.0024555613633709321" c="0.00032835187484846456" d="8.2951274679181756e-05" /> - <width sOffset="145.35505195727194" a="3.6415994809881176" b="-0.0013947982663124025" c="0.00040395675753038306" d="-4.7333250267961224e-05" /> - <width sOffset="149.33230031613004" a="3.639464083823396" b="-0.00042774926266940386" c="0.00034444143083032781" d="2.5444175864050846e-05" /> - <width sOffset="150.84772534916118" a="3.6396954267683808" b="0.00079149971500006543" c="0.00010591471581407119" d="8.2654095149653542e-07" /> - <width sOffset="153.89118483390513" a="3.6431086751550277" b="0.0014591618756471915" c="0.00011829591248281864" d="1.4141056900860118e-06" /> - <width sOffset="157.40720983798525" a="3.6497630163424137" b="0.0023434700035664486" c="-0.00019961612374759974" d="9.8328349300341121e-06" /> - <width sOffset="161.22412629134283" a="3.6563464530996677" b="0.0012493931966519644" c="0.0006314910540555288" d="-4.3290561166039459e-05" /> - <width sOffset="163.90071220779527" a="3.6633845219083874" b="0.0036994580119074517" c="0.00028515546685042094" d="-4.3410598999530769e-05" /> - <width sOffset="167.39891193984164" a="3.6779571679631986" b="0.0041008207969698328" c="-0.00019386621126030683" d="-9.608617587125315e-05" /> - <width sOffset="169.57081990280534" a="3.6849648399485675" b="0.0018989330891428778" c="-0.00012367852953755546" d="-1.9763596548236482e-05" /> - <width sOffset="173.91023958168546" a="3.6892612142824683" b="-0.00029093195930315592" c="-0.00038065120632203603" d="-1.9767527774775491e-05" /> - <width sOffset="174.54449011481074" a="3.6889185210150828" b="-0.00079764429230714824" c="-0.00057953957331904719" d="4.1358044667212948e-05" /> - <width sOffset="183.91976695557565" a="3.6645822790691454" b="-0.00075873493955922822" c="0.00058346970092496789" d="4.3020763958749483e-05" /> - <width sOffset="185.63411573713898" a="3.665213113650104" b="0.0016211192125560132" c="0.00072876231582977681" d="2.4520097193348017e-05" /> - <width sOffset="186.2640200452434" a="3.666529549911032" b="0.0025684074683111841" c="0.00029022015735512572" d="-8.2831676681974177e-06" /> - <width sOffset="193.92929432946579" a="3.6995387905106494" b="0.0055575736060300045" c="8.0019099243892043e-05" d="-7.0940479115462558e-06" /> - <width sOffset="194.64872160290253" a="3.7035758349448828" b="0.0056616943324636244" c="0.00015594238455167106" d="3.8291113204486237e-07" /> - <width sOffset="199.58615734482441" a="3.7353777822616197" b="0.0072296094736438322" c="0.0014816920910586894" d="-0.00018101052994597177" /> - <width sOffset="203.98022187088276" a="3.7803964869354876" b="0.0097661637938731699" c="0.00060539358287692194" d="-8.0602372437247395e-05" /> - <width sOffset="204.39645943858085" a="3.7845606052684775" b="0.010228244917899422" c="-0.0013313755996899742" d="0.00011037417830469146" /> - <width sOffset="208.89514682916246" a="3.8136786999214105" b="0.0049506798644865123" c="-0.0019754279213414373" d="9.353311261656893e-05" /> - <width sOffset="213.16041335263759" a="3.8061144813227581" b="-0.0067959702628848434" c="-0.0012253183443051204" d="0.00077550632890038005" /> - <width sOffset="213.94834907724612" a="3.800378329014916" b="-0.007282512114346943" c="0.00060572253411045232" d="0.00077582998155674454" /> - <width sOffset="215.28430738624166" a="3.7935801680154086" b="-0.0015100037918060788" c="0.0030620061082785133" d="8.2862144098502858e-05" /> - <width sOffset="216.30066355516976" a="3.7952954519252944" b="0.0049709585816398458" c="0.0016390403863111081" d="-0.00020839460286407833" /> - <width sOffset="219.95794003610803" a="3.8252045300233304" b="0.0085975531943977487" c="-0.0021105514235634656" d="1.0151910720511623e-05" /> - <width sOffset="222.3737910289251" a="3.8338001892294891" b="-0.0014222524230022692" c="-0.0012299637059245553" d="8.8550445762865907e-05" /> - <width sOffset="223.95787645113631" a="3.828812826159655" b="-0.0046523816022229058" c="-0.00087089729546659025" d="7.0800816982335502e-05" /> - <width sOffset="229.27804683618746" a="3.7900727169408275" b="-0.0079071414041440823" c="0.00046297549179521991" d="0.00010083605443236973" /> - <width sOffset="233.16370526709898" a="3.7722541769087266" b="0.00025815938022036647" c="9.0198227306674452e-05" d="-1.454184135820254e-05" /> - <width sOffset="233.96740382502645" a="3.7725123719291416" b="0.00037496465603310781" c="3.5507550025518401e-05" d="-1.5913682565000721e-05" /> - <width sOffset="240.21509944949906" a="3.772360147450156" b="-0.0010448643769310406" c="-0.0002445902599747662" d="-9.2674040011860084e-06" /> - <width sOffset="243.97693119891659" a="3.7644749030010733" b="-0.0032785188024569171" c="-0.00035624459586316412" d="-1.0136830263676313e-05" /> - <width sOffset="245.03712882963185" a="3.7605865195531125" b="-0.0040680801253756872" c="-0.00059990255278976853" d="6.1069231866269831e-05" /> - <width sOffset="251.97436680231982" a="3.7238831641681767" b="-0.0035744937204973729" c="0.00036218139344577698" d="-5.6740625411551391e-06" /> - <width sOffset="253.98645857280678" a="3.7181110301537368" b="-0.0021859238710125097" c="0.00033007812963734549" d="-6.2315312687840593e-06" /> - <width sOffset="258.36774353482787" a="3.7143458595870538" b="0.0003475537927018703" c="0.00022297331269307381" d="-2.743960179000349e-05" /> - <width sOffset="261.67198252879354" a="3.7169387800612457" b="0.00092231168899104075" c="-0.000106219651500128" d="-2.1384253959735793e-06" /> - <width sOffset="263.99598594669698" a="3.7184817027507009" b="0.00039395316808346192" c="-0.00012000620135903692" d="-8.4682270024115691e-07" /> - <width sOffset="267.53659693634012" a="3.7183345626972817" b="-0.00048768450320407688" c="0.00025261941088159555" d="-1.1861878163572947e-05" /> - <width sOffset="274.00551332058711" a="3.7225400489710916" b="0.0012915154415537233" c="2.2322737858753895e-05" d="-1.1877998580699388e-05" /> - <width sOffset="274.24765613753021" a="3.722853920371521" b="0.0013002366896090823" c="-0.00061961287881751644" d="2.4213752683029571e-05" /> - <width sOffset="277.68645977470618" a="3.7209826825245487" b="-0.0021022075662767226" c="7.2256006035328657e-05" d="2.3657685679177798e-05" /> - <width sOffset="284.01504069447725" a="3.7165690218504737" b="0.0016548857936376578" c="0.00053250224020709447" d="1.8855804236127206e-05" /> - <width sOffset="285.43818368654297" a="3.7200570058043869" b="0.0032851074724804569" c="-0.00035488174453323279" d="-3.2457066753258416e-05" /> - <width sOffset="287.82152445868519" a="3.7254312891798507" b="0.0010404002927544291" c="-0.00034659813882702132" d="3.7299584434462844e-05" /> - <width sOffset="288.69682167203598" a="3.7261014174316207" b="0.00051937821666121309" c="-0.00026746450263402742" d="5.1063187958801242e-05" /> - <width sOffset="292.34461943346128" a="3.7269155711017183" b="0.00060647136865572902" c="0.00049756237981140683" d="-2.6459157231999215e-05" /> - <width sOffset="294.02456806836744" a="3.7292131979596364" b="0.0020542085733177761" c="0.00037267646042599698" d="-2.5730794531438664e-05" /> - <width sOffset="299.88752424684702" a="3.7488817592610273" b="0.0037707493964074914" c="0.00055735633202453477" d="-0.00011438264494036666" /> - <width sOffset="300.87840377971634" a="3.7530540722230969" b="0.0045383782202957513" c="0.00096885630175051491" d="-0.00014715022752420943" /> - <width sOffset="303.38819246448685" a="3.7682209705667788" b="0.0066209122138779037" c="0.00044360928776973553" d="-2.8905925618812973e-05" /> - <width sOffset="304.03409544225764" a="3.7726747180051499" b="0.0071577914874814139" c="0.00039118306689892046" d="-2.8340387389863745e-05" /> - <width sOffset="309.96580548963414" a="3.8229816355528699" b="0.0088070753019022837" c="0.00045296936587565974" d="-9.5300246091084372e-05" /> - <width sOffset="312.70686666172219" a="3.8485630319401558" b="0.0091422175026263392" c="-0.0017847660466837967" d="1.8334481628045379e-05" /> - <width sOffset="313.20011708189452" a="3.8526404084105104" b="0.0073949264146189672" c="-0.001683226703065966" d="0.0001392107509481425" /> - <width sOffset="314.04362281614777" a="3.8577640003691829" b="0.0048524498137555638" c="-0.001330445797707867" d="0.00013933148106127984" /> - <width sOffset="317.05314358773262" a="3.8641152953186131" b="0.00063030694191916221" c="-0.00095618865364671777" d="7.92717846811488e-05" /> - <width sOffset="322.3741377262412" a="3.8523391534528271" b="-0.0028121804657804551" c="0.00041074499299254957" d="3.0445270740417801e-05" /> - <width sOffset="324.05315019003791" a="3.8489194974136796" b="-0.0011754053182770115" c="0.00059206741610052247" d="3.6412144853793521e-05" /> - <width sOffset="324.30433931338212" a="3.8486621825504135" b="-0.00087107114843561727" c="-0.0001054122898015733" d="-2.8663718623383609e-06" /> - <width sOffset="334.0626775639281" a="3.827460527315699" b="-0.0037472209119032672" c="-0.00017377609232347479" d="-2.5034147571008406e-06" /> - <width sOffset="341.64136598496884" a="3.7879906937832946" b="-0.006812572911043327" c="0.00089316478210375156" d="-6.1574472872482508e-05" /> - <width sOffset="344.0722049378183" a="3.7758236754347729" b="-0.003561820043150192" c="0.00045577540336014049" d="-5.9092358724604298e-05" /> - <width sOffset="347.57226160604125" a="3.7664068249847094" b="-0.002543055069201397" c="-0.0018624179430770504" d="0.00031184706443105443" /> - <width sOffset="351.10386955738375" a="3.747933163677899" b="-0.00402940703652639" c="0.00018791158831201762" d="-0.00017652116977424359" /> - <width sOffset="352.41848485757794" a="3.7425597501013366" b="-0.0044505428847131769" c="0.00091810689703566777" d="-0.0001082492456845987" /> - <width sOffset="354.08173231170844" a="3.7371991637944957" b="-0.0022948445387083643" c="0.00039366340113714275" d="-0.00010343279159783403" /> - <width sOffset="359.56677240252736" a="3.7193868839011879" b="-0.0073118583550261197" c="-0.003848322183965973" d="0.00041904112915384223" /> - <width sOffset="359.7443546376652" a="3.717969415865968" b="-0.0086390017129175864" c="-0.0041162670115457373" d="0.00086656287771729075" /> - <width sOffset="362.77765294639175" a="3.6780763553072324" b="-0.009691261659220898" c="0.0020285923700602494" d="0.00027741182119938337" /> - <width sOffset="363.7533796968703" a="3.6708093357406479" b="-0.0049402342858435346" c="0.00048526942925194061" d="-6.7037870912662478e-05" /> - <width sOffset="364.09125968559857" a="3.6691929433191586" b="-0.0046352683378674247" c="0.00046034165474354851" d="-5.4364215797552147e-05" /> - <width sOffset="368.55057810790254" a="3.6528561452850115" b="-0.0037728305254314809" c="0.00023897237404616454" d="-1.9557723764176828e-05" /> - <width sOffset="373.79541923554473" a="3.6368202571831358" b="-0.0028800888814564246" c="0.00045378726982851309" d="-4.1781333243091147e-05" /> - <width sOffset="374.10078705948877" a="3.635981896408095" b="-0.0026146330855126914" c="0.00043560247118214245" d="-4.1680962753551409e-05" /> - <width sOffset="378.34102793585242" a="3.6295495252086836" b="-0.0011687407290103275" c="-0.0010657355739197567" d="8.068640157612498e-05" /> - <width sOffset="383.63546681307054" a="3.6054625530321753" b="-0.0056685027751911003" c="0.0005938786912494373" d="6.9947796182549671e-05" /> - <width sOffset="384.11031443337896" a="3.6029122751260969" b="-0.0050571834662654722" c="0.00069110488674705101" d="7.1237259324458021e-05" /> - <width sOffset="387.21937842704716" a="3.5960104797321866" b="0.0013059928258817317" c="0.00099301509957702228" d="-8.958290200767741e-05" /> - <width sOffset="388.49147473940758" a="3.5990943439773782" b="0.0033975175611593604" c="0.00098427773436375187" d="-7.1199374108862481e-05" /> - <width sOffset="394.1198418072691" a="3.6367025492813507" b="0.0077107988288261514" c="-0.00023285359457540938" d="-6.9208119074213318e-05" /> - <width sOffset="397.06769931284424" a="3.6556365510150219" b="0.0045337329948654283" c="-0.00093676394038517887" d="0.00013060180053980615" /> - <width sOffset="400.42803921830802" a="3.6652492339840896" b="0.0026622637485780119" c="0.00029520649639940314" d="0.00018266762359204477" /> - <width sOffset="401.48839248213579" a="3.6686218668332486" b="0.0039044565964212888" c="0.00091970039244769822" d="-7.615345037361213e-05" /> - <width sOffset="404.12936918115923" a="3.6839453735847325" b="0.007168815565016402" c="0.00029673804464721984" d="-7.7173010210217235e-05" /> - <width sOffset="407.28320924826875" a="3.707085295479505" b="0.0067376922325927732" c="-0.00047989668489915855" d="-0.00016167854521921467" /> - <width sOffset="407.48180221913032" a="3.7084031607491226" b="0.0065279546139146855" c="-0.00021544256867345239" d="3.5423176094380163e-05" /> - <width sOffset="411.4419870031715" a="3.733076324374252" b="0.006488201612027236" c="0.00012425347772201982" d="-0.00012255911220039384" /> - <width sOffset="411.77773672911832" a="3.7352641044576127" b="0.0065301902680955162" c="0.00020406618563680701" d="-7.475823550666379e-05" /> - <width sOffset="414.13889655504948" a="3.7508365209519177" b="0.0062435075550736083" c="-0.00032540952676583329" d="-7.4718633697354206e-05" /> - <width sOffset="414.72521009562109" a="3.7543702502498797" b="0.0057848668992144837" c="-0.00059065860836979192" d="5.8364832532530462e-05" /> - <width sOffset="420.95447647672967" a="3.7815938388253656" b="0.0052204520758096637" c="0.00075015446610931526" d="3.1952214041788262e-05" /> - <width sOffset="421.38420306342977" a="3.7839782686877101" b="0.0058828760732518104" c="0.00055018836380979659" d="-4.1314509829246262e-05" /> - <width sOffset="424.14842392893962" a="3.803571169808194" b="0.0079775181629849756" c="0.00021345551636298534" d="-3.9738714297465297e-05" /> - <width sOffset="430.76631612712896" a="3.8541962402400718" b="0.005581519893736642" c="-0.00045082187111776843" d="-2.420330050138061e-05" /> - <width sOffset="431.06662825058658" a="3.8558311243609831" b="0.0053041968507423279" c="0.0017019338300634423" d="-0.00047380307529964869" /> - <width sOffset="434.15795130282976" a="3.8744953895538501" b="0.0022432693975919854" c="-0.002690503795696352" d="-0.00047438558567137741" /> - <width sOffset="435.10001811439366" a="3.8738242825045139" b="-0.0040890364829074162" c="-0.00031134189434508245" d="2.0675983017606725e-05" /> - <width sOffset="437.37567100498001" a="3.8631504008904347" b="-0.0051848309528451488" c="0.00010125984521574697" d="-1.1884506700123723e-07" /> - <width sOffset="444.1674786767199" a="3.8325697725595593" b="-0.0038258026537111396" c="9.8703805617731278e-05" d="2.0718092902685355e-07" /> - <width sOffset="447.41615727204709" a="3.821189784169106" b="-0.0031779290642740513" c="-0.00026430988406520668" d="-1.9734698398202393e-05" /> - <width sOffset="451.22889712826924" a="3.8041370881699565" b="-0.0060540677792993028" c="-0.0051595827131998969" d="0.0010977788064269961" /> - <width sOffset="454.49589209817674" a="3.7675679010066805" b="-0.0046161061845479412" c="0.0060025194634363887" d="-0.0052935248100248623" /> - <width sOffset="454.83799458370498" a="3.766479278787044" b="-0.0023677214331154087" c="0.0022805386276679601" d="-0.0055389816419441507" /> - <width sOffset="455.25118284458705" a="3.7654995806086098" b="-0.0033200581151330692" c="-0.0023662514153746685" d="0.00029315874473891113" /> - <width sOffset="457.1296268806679" a="3.752856707200372" b="-0.0091065222110050595" c="-0.0002943374996546236" d="0.0005527583402260332" /> - <width sOffset="458.53690703463047" a="3.740998916458711" b="-0.0066508429316026584" c="0.00071575826761818991" d="-3.5059927450851474e-05" /> - <width sOffset="464.18653342450028" a="3.7199476816647441" b="-0.0019204669060038041" c="0.00012816581596554672" d="-3.7076117516193983e-05" /> - <width sOffset="467.20132673585766" a="3.7143068300163748" b="-0.0021586321448539662" c="-0.00029886469363444548" d="-6.805553081823458e-05" /> - <width sOffset="467.64103300025812" a="3.7132940973223056" b="-0.0024609313962923873" c="-0.00076032370897584367" d="0.0002396216445777283" /> - <width sOffset="470.13531472195751" a="3.7061439870229673" b="-0.001781478463010841" c="0.0016152145781485213" d="0.00019640112756102153" /> - <width sOffset="470.89890649295018" a="3.7058128952900704" b="0.0010287988836570651" c="0.0017041889678042577" d="-0.00012559321009885302" /> - <width sOffset="474.19606079839042" a="3.7232298512481945" b="0.0081706901618456874" c="0.0004617648127296166" d="-0.00012223018278439615" /> - <width sOffset="478.13562881701756" a="3.7551120173882571" b="0.0061178886931911314" c="-0.0010975068032133847" d="1.1452441640129576e-05" /> - <width sOffset="478.98764339381165" a="3.7595349192520486" b="0.0042726460772475154" c="-0.00018694951007284404" d="-3.176746273877061e-05" /> - <width sOffset="482.39798120756933" a="3.7706717752599976" b="0.0018891188328211857" c="-0.00049286535995786093" d="0.00010926702403140433" /> - <width sOffset="484.20558817228056" a="3.7731215088253736" b="0.0011783764165402312" c="9.4619933398919784e-05" d="0.00010685548049682503" /> - <width sOffset="486.08000778359502" a="3.7763664387208129" b="0.0026593851386981712" c="0.00074985933444488484" d="-0.00012664729504751216" /> - <width sOffset="489.81416825726575" a="3.790158620601487" b="0.0029616829762301837" c="-0.0010437336407435665" d="0.00034869940278264898" /> - <width sOffset="491.26229209724391" a="3.7933176620721962" b="0.0021325053278780787" c="0.00019303565728644401" d="0.00029823529778996222" /> - <width sOffset="492.98891442714176" a="3.7991103270646209" b="0.0054664239623512315" c="0.0015090008526009295" d="-0.00025263041387223282" /> - <width sOffset="494.21511554617081" a="3.8076163802345686" b="0.0080275591145503832" c="0.00054824027536366847" d="-0.00023946509147377448" /> - <width sOffset="495.13314212767222" a="3.8152626636520695" b="0.0084287134061671737" c="-0.0002307169325298522" d="-0.00021322536249412336" /> - <width sOffset="496.16807670248744" a="3.8235023501344338" b="0.0072660091570945599" c="-0.00081424723665386603" d="0.00011218666149481921" /> - <width sOffset="502.57142926730734" a="3.8660979520656822" b="0.010638128383254727" c="0.0014265524023044961" d="-3.3317370202734468e-05" /> - <width sOffset="504.22464292006094" a="3.8874334414681639" b="0.015081739548038462" c="0.001220581165818283" d="-4.7100037010886963e-05" /> - <width sOffset="508.2896797215821" a="3.9657469494531261" b="0.02267023716072834" c="0.0050135833857531164" d="-0.00061628232698020616" /> - <width sOffset="514.23417029395114" a="4.1482183624869275" b="0.016943988594093726" c="-0.005971590260770555" d="-0.00061932028453965011" /> - <width sOffset="515.32917080431821" a="4.1587988191691885" b="0.0016384562384371866" c="-0.0076593370462595504" d="-0.00042404075829368716" /> - <width sOffset="516.4352832979655" a="4.1506661938639215" b="-0.016862142890294793" c="-0.0041902246287313961" d="0.00063345509466884145" /> - <width sOffset="518.49482785741816" a="4.1036979595540046" b="-0.026061226924904833" c="-0.00029935313640426975" d="0.00037705949071063408" /> - <roadMark sOffset="0" color="standard" width="0.30074322676080184" weight="bold" type="solid"> - <type name="solid"> - <line length="521.70150533050469" space="0" width="0.30074299999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4929733837263752" b="0.0010884076601373714" c="0.00010740662738035903" d="-1.819096791995305e-05" /> - <width sOffset="3.6607340635815149" a="2.4975047065129856" b="0.0011434518010736174" c="-0.0018005029174446385" d="0.00030709680215179115" /> - <width sOffset="3.7482742255526489" a="2.4975912127252191" b="0.0008352792733272163" c="-0.0016956493744521006" d="0.00030516708592300565" /> - <width sOffset="6.8766494994387699" a="2.4929525834351587" b="-0.00081421055707995606" c="0.0018232933881298439" d="-0.00091250391686036329" /> - <width sOffset="7.8810639080073202" a="2.4930495632259984" b="8.6739655953101472e-05" c="0.0017787800508014097" d="-0.00083551747679730588" /> - <width sOffset="9.4104291658296972" a="2.494353964518754" b="-0.00033517261171270817" c="-0.00077035309276896286" d="0.00018921502299427219" /> - <width sOffset="12.569292942251678" a="2.4915724394852008" b="0.00046214754113290193" c="-4.215422900659101e-05" d="2.0000622741694629e-05" /> - <width sOffset="13.757801599442814" a="2.4920957384341125" b="0.0004467020175723535" c="3.5425984228176885e-05" d="-1.7455166423186767e-05" /> - <width sOffset="17.592471419070705" a="2.4933453657301139" b="-5.1622648270015226e-05" c="-7.1153435648963235e-05" d="1.8507845103754972e-05" /> - <width sOffset="23.139028086587331" a="2.494028155280489" b="0.00086720641612217375" c="-5.6817622376712282e-05" d="-8.7782863164603592e-06" /> - <width sOffset="23.76732897333298" a="2.4945484151298802" b="0.00078541328937438773" c="-2.5470620106519673e-05" d="-5.9829501385040569e-06" /> - <width sOffset="28.678876478692985" a="2.4970826981730405" b="0.00010222748464835257" c="-0.00041850020682730597" d="3.7416811404851026e-05" /> - <width sOffset="33.776856347223145" a="2.4916847648252944" b="-0.0012474624805812358" c="0.00014517464760267966" d="4.2421018000479382e-05" /> - <width sOffset="35.607716668511955" a="2.4901478113656887" b="-0.00028928141809515459" c="0.00030717251770158926" d="-2.7131035133619628e-05" /> - <width sOffset="42.647259007698949" a="2.4938688419092703" b="1.9784059333942394e-06" c="0.00011452192186680404" d="-3.7112560429043646e-05" /> - <width sOffset="43.78638372111331" a="2.4939648424523617" b="0.00011841556431153866" c="4.6122985633026303e-06" d="-2.3109095498567904e-05" /> - <width sOffset="46.377635793821298" a="2.4939005772068814" b="-0.00032318529701026374" c="-0.0003279589518790755" d="0.00011573588370825367" /> - <width sOffset="49.625072046866904" a="2.4933560512580413" b="0.0012083602288072322" c="-0.00062353884274863268" d="0.0001038004709303215" /> - <width sOffset="53.079370255830696" a="2.4943682871337889" b="0.0006162785136896963" c="0.00060038851673625631" d="-0.00014184719247999067" /> - <width sOffset="53.795911095003476" a="2.4950659490503826" b="0.001258198155357021" c="0.00029514619231907818" d="-0.00014158826981043712" /> - <width sOffset="56.775923451579359" a="2.4976894522683266" b="-0.00075483594005406815" c="-0.0013771063091740938" d="0.00029420855145279907" /> - <width sOffset="59.89193451119931" a="2.4908676030124184" b="-0.00076711713010607294" c="0.00088115011259947687" d="-0.00013966917330407086" /> - <width sOffset="63.008501137803165" a="2.4928074817481525" b="0.00065539411854499165" c="-0.00011944683141253788" d="7.1792317104439942e-06" /> - <width sOffset="63.805438468893641" a="2.493257561728885" b="0.00047868962686279" c="-0.00011526993640093192" d="9.1242497128058982e-06" /> - <width sOffset="67.286545021017304" a="2.4939119794480322" b="7.8615538519136163e-06" c="-0.00013448030031306887" d="9.5230395877166516e-06" /> - <width sOffset="73.814965842783806" a="2.4908814353188489" b="-0.00053040263543676844" c="4.9428604019042833e-05" d="9.6056847737159655e-06" /> - <width sOffset="76.408965663498208" a="2.4900058312580948" b="-8.0061849782804215e-05" c="-5.1564971966824283e-06" d="-9.9558335579021474e-07" /> - <width sOffset="79.574492778864141" a="2.4896691420393435" b="-0.00014263682715999829" c="0.00031723063080311108" d="-2.9905131119106159e-05" /> - <width sOffset="83.824493216673972" a="2.4924972281203512" b="0.00093333918605700925" c="-5.169384705176454e-05" d="-3.5025844140816747e-05" /> - <width sOffset="86.371588569556479" a="2.4939603638567021" b="-1.1710083179333926e-05" c="0.00040308086543448487" d="-5.2741021066541471e-05" /> - <width sOffset="90.733370990757152" a="2.4972013222966534" b="0.00049437512265083569" c="-0.0004126769338276393" d="3.3351904092819326e-05" /> - <width sOffset="93.834020590564137" a="2.4957609300694514" b="-0.0011028196033141917" c="-0.00010525425293653933" d="3.2529999649133287e-05" /> - <width sOffset="98.943174075794929" a="2.4917173695371568" b="0.00036909572342319792" c="0.0005377871195271491" d="-0.00014348657324638237" /> - <width sOffset="101.71307831983151" a="2.4938164930974445" b="4.5687339153489999e-05" c="0.00055835379691473899" d="-0.00013805758491586989" /> - <width sOffset="103.65037945928648" a="2.4949967704428277" b="0.0006546396792623671" c="-0.00014976684760848933" d="1.9209593273827829e-05" /> - <width sOffset="103.8435479644543" a="2.4951177762611407" b="0.00059892956749327264" c="-0.00017018647255188381" d="8.3212546006178783e-06" /> - <width sOffset="113.85307533834447" a="2.4924067480345156" b="-0.00030690731545819291" c="7.4611967813527813e-05" d="8.3928244049541034e-06" /> - <width sOffset="117.79491791144812" a="2.4928703483467713" b="0.00067253615744344419" c="2.313994214684853e-05" d="-7.7350957989100357e-05" /> - <width sOffset="119.55827326820653" a="2.493704103879236" b="3.2593701346251072e-05" c="0.00038222131873844224" d="-5.0809476770070669e-05" /> - <width sOffset="123.72868075691571" a="2.4968023778334012" b="0.00056955022294988104" c="-0.00033700020094909044" d="3.3429032973286327e-05" /> - <width sOffset="123.86260271223463" a="2.4968726892772133" b="0.00048108542940415548" c="-0.00033347745953186698" d="2.8581977434463743e-05" /> - <width sOffset="130.78330201301958" a="2.4937040668415271" b="-2.7815081215173953e-05" c="-0.00024414813270151852" d="3.014553904864818e-05" /> - <width sOffset="133.8721300861248" a="2.4921771591889801" b="-0.00067323529334918121" c="5.0636966877204502e-05" d="3.4243974704465567e-05" /> - <width sOffset="136.9982764156295" a="2.491613585276085" b="0.00064733945332282614" c="-0.00013860790203363188" d="3.9644852533022989e-06" /> - <width sOffset="143.88165746001499" a="2.4907950787492257" b="-0.00069731950804330064" c="-5.4687364322608174e-05" d="3.8387981143668772e-06" /> - <width sOffset="144.22429216877686" a="2.4905498870806944" b="-0.00073344307841170244" c="0.00041153216514860593" d="-3.5211506896729864e-05" /> - <width sOffset="150.84772534916118" a="2.4935144602071695" b="8.3896133145463809e-05" c="6.6071913977778997e-05" d="-1.0593871984373594e-05" /> - <width sOffset="153.89118483390513" a="2.4940831490075377" b="0.00019168867339868726" c="-3.2854167758514566e-05" d="-1.1096996129566394e-05" /> - <width sOffset="157.40720983798525" a="2.4938686248594801" b="-0.00045090105174125546" c="0.00018292201378073444" d="-1.9515725369512108e-05" /> - <width sOffset="161.94062599055133" a="2.4937656078069894" b="4.3686875324747826e-06" c="0.00023546034108157187" d="-3.1500256040747408e-05" /> - <width sOffset="163.90071220779527" a="2.4944415812251179" b="0.00056434773596062294" c="5.2250323819561033e-05" d="-3.0569066642738167e-05" /> - <width sOffset="167.39891193984164" a="2.4957465631802616" b="-0.00019234594007955415" c="-0.00024511493764974533" d="2.2106510228988852e-05" /> - <width sOffset="173.91023958168546" a="2.4902046984831667" b="-0.0005726184260478424" c="0.00019804060823564948" d="2.1132568264828694e-05" /> - <width sOffset="174.54449011481074" a="2.4899265732898472" b="-0.00029590047160341082" c="0.00039952630820353304" d="-3.9993004179655436e-05" /> - <width sOffset="180.83245019971861" a="2.4939197041733054" b="-1.5272745909249499e-05" c="0.00024012011554509053" d="-3.9070088967922144e-05" /> - <width sOffset="183.91976695557565" a="2.4950115540900804" b="0.0003501884063082765" c="-0.0001131108371088507" d="-3.7075934521781472e-05" /> - <width sOffset="186.2640200452434" a="2.4947332357898113" b="-0.00079138735492863081" c="0.00011102114376906354" d="-4.272669664339937e-06" /> - <width sOffset="193.92929432946579" a="2.4932658979968827" b="0.00015748723550330955" c="-2.4684604809789405e-06" d="-1.7125437446301603e-06" /> - <width sOffset="198.57822085756993" a="2.4937726270917975" b="2.3498705857240114e-05" c="0.00063132794600412063" d="-4.3843952005510455e-05" /> - <width sOffset="199.58615734482441" a="2.4943928048994821" b="0.001162547707539323" c="-0.00082132572008908214" d="0.00013754948907317513" /> - <width sOffset="203.93882170335593" a="2.4952353157029683" b="0.001830546038797589" c="0.00093948553271613997" d="0.00013483656294380642" /> - <width sOffset="203.98022187088276" a="2.4953127204371381" b="0.0019090290747697924" c="-0.0005535850355228814" d="3.4428398155984754e-05" /> - <width sOffset="213.16041335263759" a="2.4928202729831441" b="0.00044945015571788097" c="0.00084131421212622665" d="-0.00064754481812845366" /> - <width sOffset="214.16442124425993" a="2.493464234071975" b="0.00018058497632634379" c="0.0010330470403328487" d="-0.00063972011300579361" /> - <width sOffset="215.28430738624166" a="2.4940635728092566" b="8.7469817562095455e-05" c="-0.0004630480710575537" d="5.3247724452073587e-05" /> - <width sOffset="222.3737910289251" a="2.4903839192963475" b="0.0015507425906560891" c="-0.00013756266337800534" d="-2.5150810590410754e-05" /> - <width sOffset="223.95787645113631" a="2.4923952642106149" b="0.00092558577531046127" c="-0.00027442369512101981" d="1.430976811893725e-05" /> - <width sOffset="225.88525047214563" a="2.4932622475053177" b="2.7224092285694883e-05" c="-0.00020025906749839318" d="3.3798433178619484e-05" /> - <width sOffset="229.27804683618746" a="2.4923694056289079" b="-0.00016448427640221655" c="-6.0101021923227488e-05" d="3.7631957285742676e-06" /> - <width sOffset="233.96740382502645" a="2.4906645125682121" b="-0.00047989576994334621" c="-7.2498150607922126e-06" d="4.2643068808409923e-06" /> - <width sOffset="240.21509944949906" a="2.4884232221766189" b="-7.1130011244242982e-05" c="5.4502734470133964e-05" d="-2.381971682991714e-06" /> - <width sOffset="243.97693119891659" a="2.4888001273365337" b="0.00023780567687072592" c="2.7673789940072858e-05" d="-1.6394373731270362e-06" /> - <width sOffset="253.98645857280678" a="2.4923089767469038" b="0.00029903996241204813" c="-2.0106359256440142e-05" d="-2.0137545653370428e-06" /> - <width sOffset="258.36774353482787" a="2.4930638411666464" b="6.8905522071617889e-06" c="-0.00011436856038049148" d="1.7563979713834559e-05" /> - <width sOffset="261.67198252879354" a="2.4924715660539736" b="-0.00017362121614252542" c="0.00011693015715098146" d="-7.7371966801914837e-06" /> - <width sOffset="263.99598594669698" a="2.4926024918826499" b="0.00024450534412737493" c="6.1894612358034221e-05" d="-8.1364890270684344e-06" /> - <width sOffset="274.00551332058711" a="2.4930913685313389" b="-0.00096202310866007681" c="-0.00018621328634420785" d="-8.5503306449129498e-06" /> - <width sOffset="274.24765613753021" a="2.4928473818813242" b="-0.001053707526372176" c="0.00044088261077816624" d="-4.4642081910786311e-05" /> - <width sOffset="279.24340821011873" a="2.4930206155798094" b="8.9034364630169796e-06" c="0.00036960367907992438" d="-5.8736208312282396e-05" /> - <width sOffset="284.01504069447725" a="2.4950971459387863" b="-0.00047587266822717673" c="-0.00047495591905235125" d="-5.389439140142504e-05" /> - <width sOffset="285.43818368654297" a="2.4933026236704112" b="-0.0021551957931170624" c="0.00026283330635944017" d="-2.581520412038383e-06" /> - <width sOffset="288.69682167203598" a="2.4889812472403592" b="-0.00052447594027089906" c="0.00025640761568773712" d="-1.6345123936059691e-05" /> - <width sOffset="294.02456806836744" a="2.4909932408395488" b="0.00081581033456928193" c="-5.3455792888772927e-07" d="-1.7775809263750486e-05" /> - <width sOffset="297.94337681645192" a="2.4931122633853917" b="-7.3319411148006341e-06" c="0.00030080163432108048" d="-3.3869967819483741e-06" /> - <width sOffset="300.87840377971634" a="2.4955963295540933" b="0.0016708592082443944" c="-0.00048053938140444946" d="2.9380585801978516e-05" /> - <width sOffset="304.03409544225764" a="2.4970069502881387" b="-0.0004842590466071009" c="-0.00020201101081843479" d="2.9079910063850008e-05" /> - <width sOffset="309.96580548963414" a="2.4930958903160598" b="0.00018874543470326528" c="-0.00025063740756930112" d="9.6039768765966989e-05" /> - <width sOffset="310.96752396686855" a="2.4931299962749782" b="-2.4280399696473623e-05" c="-0.00045434747555254615" d="0.00010796703939522525" /> - <width sOffset="313.20011708189452" a="2.4920125951223921" b="-0.00043855043123649379" c="0.00019438305954149626" d="-1.2909229920082181e-05" /> - <width sOffset="314.04362281614777" a="2.4917732316885091" b="-0.00013817880626764735" c="0.00016706173470248771" d="-1.2503212117785402e-05" /> - <width sOffset="322.3741377262412" a="2.4949874781392309" b="4.2167548772589075e-05" c="-0.00024693239193725256" d="3.6323301822700958e-05" /> - <width sOffset="324.05315019003791" a="2.4945340832925105" b="-0.00047984238672136269" c="-4.719323193287981e-05" d="2.2152211389768212e-05" /> - <width sOffset="327.39726453008143" a="2.4932301076404579" b="-5.229028066059023e-05" c="-0.00012102249342172081" d="8.3203254171651079e-06" /> - <width sOffset="334.0626775639281" a="2.4899687076657129" b="-0.00055666055454716909" c="6.5676688554521288e-05" d="1.0712855413339854e-05" /> - <width sOffset="341.64136598496884" a="2.4941854271461517" b="0.0022847531078408756" c="-0.00081461380733917322" d="6.9783913528816835e-05" /> - <width sOffset="344.0722049378183" a="2.4959281192781608" b="-0.00043858200851379717" c="-0.00030211064282755992" d="6.5751560870736696e-05" /> - <width sOffset="347.70570484277954" a="2.4935001138088815" b="-2.9800243582549929e-05" c="-0.00047564132362785028" d="9.7917960881664835e-05" /> - <width sOffset="352.41848485757794" a="2.4930448294511507" b="0.0020113744363902215" c="-0.00051761149673219169" d="2.9646036792334377e-05" /> - <width sOffset="354.08173231170844" a="2.495094733694228" b="0.00053558011342372995" c="-0.00037724670360210087" d="2.5027968183277436e-05" /> - <width sOffset="359.56677240252736" a="2.4908128364966489" b="-0.0013438972893459445" c="0.0025745780822733996" d="-0.00049744595257187349" /> - <width sOffset="362.77765294639175" a="2.4965738627483729" b="-0.00019620794268738291" c="-0.00047636875738792176" d="9.1705103945918256e-05" /> - <width sOffset="364.09125968559857" a="2.4957019874744919" b="-0.0009730016520378234" c="-0.00012101138066361201" d="7.1161413868854124e-05" /> - <width sOffset="366.82044197115079" a="2.4935917222282518" b="-4.3402185485500442e-05" c="0.00017391961154161458" d="3.6988088406243662e-05" /> - <width sOffset="368.55057810790254" a="2.4942287955386258" b="0.00089056424342776508" c="-0.00014000986967934589" d="2.1815963726400346e-06" /> - <width sOffset="374.10078705948877" a="2.495231628902844" b="-0.00046199277375207938" c="-0.00010417853192224493" d="3.0417051116440504e-06" /> - <width sOffset="378.34102793585242" a="2.491631469041697" b="-0.0011814105995208365" c="0.00090564023412302715" d="-0.00011932565921804307" /> - <width sOffset="382.63047486471038" a="2.4938095213463525" b="1.4353645459881659e-06" c="0.00071170832669917999" d="-0.00010791245752321343" /> - <width sOffset="384.11031443337896" a="2.4950205174293183" b="0.0013989030370853903" c="0.00023353959196803866" d="-0.00010704621059458007" /> - <width sOffset="387.21937842704716" a="2.4984101870245259" b="-0.0002531334757045773" c="-0.00040236758399670022" d="5.3773950737509711e-05" /> - <width sOffset="392.51441242506286" a="2.4937717237361792" b="8.8093362448694347e-06" c="-0.000603161867719287" d="0.00010280849713283332" /> - <width sOffset="394.1198418072691" a="2.4926566800346506" b="-0.0011329212916794625" c="-0.00013092368318403476" d="8.6987859642976987e-05" /> - <width sOffset="397.06769931284424" a="2.4904076033222529" b="0.00036292796080832686" c="0.00073022308767413922" d="-0.00011282205997103888" /> - <width sOffset="401.48839248213579" a="2.4965355323841445" b="0.00020462756144516009" c="-0.00080944930534015817" d="0.00014599901399425696" /> - <width sOffset="404.12936918115923" a="2.4941195631678301" b="-0.0010159226078414693" c="0.00036790430254924987" d="0.00014699878467168453" /> - <width sOffset="405.01530344191559" a="2.4936104989214076" b="-1.7915551044339357e-05" c="-0.00034538253169979165" d="0.00012835126660901605" /> - <width sOffset="407.48180221913032" a="2.4933910759935816" b="0.00062083280616947751" c="0.00024357341064515023" d="-6.8750454733276063e-05" /> - <width sOffset="411.4419870031715" a="2.4953997243748995" b="-0.00068462901116860247" c="-0.00049206918102705785" d="8.9231833559274434e-05" /> - <width sOffset="414.13889655504948" a="2.4917246907532462" b="-0.0013917258184042002" c="0.00022968115697878785" d="8.8657205346202527e-05" /> - <width sOffset="414.72521009562109" a="2.4910055282216486" b="-0.0010309641220269845" c="0.00051944735846311068" d="-4.4426260887488436e-05" /> - <width sOffset="421.38420306342977" a="2.4940558437737708" b="-2.2844257696968961e-05" c="-0.00012689686810436385" d="2.8840462988208741e-05" /> - <width sOffset="424.14842392893962" a="2.4936322334371508" b="-6.3283447635916965e-05" c="0.00010637686723408458" d="2.7266432428561532e-05" /> - <width sOffset="424.40299339890072" a="2.4936234670505457" b="-3.8217884714992351e-06" c="-0.00016141808327074241" d="1.6789580070431289e-05" /> - <width sOffset="430.76631612712896" a="2.4913890782259407" b="-1.8607714374178214e-05" c="3.4412271643002561e-05" d="1.2541662744792418e-06" /> - <width sOffset="434.15795130282976" a="2.4917707493395138" b="0.00025810076328464885" c="4.7624778940154264e-05" d="1.5643095171628898e-06" /> - <width sOffset="437.37567100498001" a="2.4931464544297168" b="0.00061317641088339675" c="-0.00020872235040036711" d="2.235913760183456e-05" /> - <width sOffset="441.15431876451981" a="2.4936895819011036" b="-6.4567729691046918e-06" c="0.00020555358473099428" d="-2.2926455371208088e-05" /> - <width sOffset="444.1674786767199" a="2.4949091786200652" b="0.00060781788069801178" c="-1.7559563544448139e-07" d="-2.2223410207614733e-05" /> - <width sOffset="451.22889712826924" a="2.4913674395316212" b="-0.0027190817761425703" c="0.0041985810234101027" d="-0.0011397369150328389" /> - <width sOffset="453.24961974081742" a="2.4936128168675773" b="0.00028752225445289464" c="0.0022276838015740318" d="-0.0017487802367674992" /> - <width sOffset="454.49589209817674" a="2.494046054348332" b="-0.0023084653109471985" c="-0.0047134742635959494" d="0.0046425233796842467" /> - <width sOffset="455.25118284458705" a="2.4916139306593754" b="-0.0014833733741178847" c="0.0035867540503873845" d="-0.0011896170069847179" /> - <width sOffset="457.0191164691808" a="2.4936285184725215" b="4.4150235687075504e-05" c="0.0012061838872219587" d="-0.00057678966992885054" /> - <width sOffset="458.53690703463047" a="2.494457446437969" b="-0.0002806113863398612" c="-9.6592111439153234e-05" d="1.1028597748040711e-05" /> - <width sOffset="464.18653342450028" a="2.4917777897972431" b="-0.0003159885119834744" c="9.2986422904279718e-05" d="1.1042392048244062e-05" /> - <width sOffset="467.64103300025812" a="2.4922510844809005" b="0.000721779991573121" c="0.00057910992449813773" d="-0.00029663478334705508" /> - <width sOffset="469.40768665599268" a="2.4936980624674092" b="-9.4961222937804679e-06" c="0.00067955200215780577" d="-0.00029390379988837459" /> - <width sOffset="470.89890649295018" a="2.4942204377698189" b="5.6532817474447272e-05" c="-0.00027433706269283035" d="2.8090537770765463e-05" /> - <width sOffset="474.19606079839042" a="2.4924313352051541" b="-0.00083639464031806665" c="6.0898881713852614e-06" d="2.7704599410255458e-05" /> - <width sOffset="478.13562881701756" a="2.4909247565665384" b="0.00050153087029206761" c="0.00044819160850602169" d="-0.00010597802501451499" /> - <width sOffset="481.41366989198326" a="2.493651853531746" b="2.3534328746639688e-05" c="0.00040817518859818643" d="-7.2690750731468863e-05" /> - <width sOffset="484.20558817228056" a="2.4953172765548728" b="0.00060288660292536281" c="-0.00021034021707132022" d="-7.4754448857494544e-05" /> - <width sOffset="486.08000778359502" a="2.4952160107362875" b="-0.00097358285660657795" c="-0.00068506720837267169" d="0.00015874832668683674" /> - <width sOffset="489.81416825726575" a="2.490293811003693" b="0.00055085366649745837" c="0.0014681369773506502" d="-0.00031659837114332464" /> - <width sOffset="492.98891442714176" a="2.4967093911985039" b="0.00029978063136098382" c="-0.0013183674423088453" d="0.00023426734051854928" /> - <width sOffset="494.21511554617081" a="2.4955266394768043" b="-0.0018766751724579381" c="-0.00046457722848589788" d="0.0002256624637564417" /> - <width sOffset="496.16807670248744" a="2.4917705348852128" b="-0.0011092090483012587" c="0.00077906025448726843" d="-9.9749560232390003e-05" /> - <width sOffset="500.45021796814052" a="2.4934737817582877" b="7.5639676404816447e-05" c="0.00060413889043624215" d="-0.00012765950832214064" /> - <width sOffset="502.57142926730734" a="2.4951341327257603" b="0.00091542597054331334" c="-0.00029392688315473794" d="1.7844523375676227e-05" /> - <width sOffset="504.22464292006094" a="2.495924820469603" b="8.9891522208358082e-05" c="-0.00022455877070735018" d="2.2535699847985126e-05" /> - <width sOffset="510.63025011933445" a="2.4932097183680786" b="-1.2937804525998964e-05" c="-0.00044952646599119442" d="8.1403459545601286e-05" /> - <width sOffset="514.23417029395114" a="2.4911349141912429" b="-8.1189643286358817e-05" c="0.00043041275924574052" d="8.3186825092109367e-05" /> - <width sOffset="515.32917080431821" a="2.4916713064586911" b="0.0011606442666020674" c="0.00035696030957395206" d="-0.00011209270115369841" /> - <width sOffset="518.49482785741816" a="2.4953666859542225" b="5.0699910071727583e-05" c="-0.00068456535112937399" d="0.00014430290280447166" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="648.07708696552413"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="2.4932482095113144" b="-0.0012935272995259818" c="0.00030818077388015421" d="-1.8843654810181987e-05" /> - <width sOffset="2.5421923373365871" a="2.4916419146699047" b="-9.1962727124590693e-05" c="0.0001660545214480976" d="-1.7728248788585406e-05" /> - <width sOffset="8.4664272146740132" a="2.4932389860984592" b="8.9276654368988795e-06" c="-0.073551531421246569" d="0.021101952843022437" /> - <width sOffset="9.9605024053350917" a="2.3994446342589164" b="-0.078458930484148107" c="0.00089224711729883675" d="-9.756856679615409e-06" /> - <width sOffset="12.551719711226724" a="2.2019616516361831" b="-0.07403145266525693" c="0.00081445211292315728" d="-1.0514545478189342e-05" /> - <width sOffset="20.917055053947479" a="1.6335029571976216" b="-0.062612509516729267" c="0.0011558634015740854" d="-0.00011620046009704681" /> - <width sOffset="22.561247085116975" a="1.533164197259562" b="-0.059753984348152517" c="0.00059671007974466928" d="-0.00011499799677926032" /> - <width sOffset="24.901256036688665" a="1.3951332345007486" b="-0.058850434038437635" c="7.3905375961186097e-05" d="-3.6196307730961234e-05" /> - <width sOffset="27.02707073443446" a="1.2700143730994424" b="-0.05902693868327482" c="9.9326769687098837e-05" d="3.3224640188186607e-05" /> - <width sOffset="32.570774459007112" a="0.9514996602625152" b="-0.054862418504045579" c="0.00065267128163273272" d="3.3180652491800015e-05" /> - <width sOffset="38.28825337557555" a="0.66536200652434596" b="-0.044145166614490139" c="0.0014601316851982538" d="-3.5838355025336845e-05" /> - <width sOffset="41.777966823296993" a="0.52756659328768896" b="-0.035263613468255212" c="0.0011086109820060335" d="-1.3346851296517976e-05" /> - <width sOffset="42.580301832897248" a="0.49998012689815052" b="-0.033510434427400079" c="0.001080726054943611" d="-1.2857943011132829e-05" /> - <width sOffset="52.589829206787499" a="0.2599404206376863" b="-0.015740056916681837" c="0.00069134327046804561" d="-1.2037890423493051e-05" /> - <width sOffset="55.736820154114639" a="0.21687818048460294" b="-0.011746408511517641" c="0.00067653534639049509" d="-1.7103437680873432e-05" /> - <width sOffset="61.220655394418145" a="0.16998731801321798" b="-0.0058694185330364496" c="0.0044322197604514486" d="-0.0040868646131301863" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16130402690251466" weight="standard" type="solid"> - <type name="solid"> - <line length="62.599356580677636" space="0" width="0.161304" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="4.0294828215462273" b="-0.0163494250022235" c="-0.0003237638096079791" d="5.783442427544109e-05" /> - <width sOffset="2.5421923373365871" a="3.9867772292296788" b="-0.016874257886394968" c="0.0001206151616684947" d="5.9634722605440313e-05" /> - <width sOffset="5.8989771090616614" a="3.9337487089531975" b="-0.014048606731307763" c="-0.00049351075580741531" d="2.6915514171010336e-05" /> - <width sOffset="12.403432912260882" a="3.8288976259725951" b="-0.017052424226949241" c="0.0019779427157280926" d="-0.00013606903879791145" /> - <width sOffset="12.551719711226724" a="3.8264120258249319" b="-0.016474794695216701" c="0.0019172749082296712" d="-0.00013612562778426716" /> - <width sOffset="19.825963571585135" a="3.7556255889066956" b="-0.010190453362310977" c="0.00021737108693687941" d="1.9641392957176744e-05" /> - <width sOffset="22.561247085116975" a="3.7297800883405952" b="-0.0085604527601046854" c="0.00038841308290405731" d="1.9911505461628465e-05" /> - <width sOffset="27.02707073443446" a="3.7010703722628691" b="-0.00389996393936897" c="0.00039891557619441641" d="-4.9509442457535518e-05" /> - <width sOffset="29.232377673442329" a="3.6938788314495201" b="-0.0028628508658318265" c="-0.0027696328910853094" d="0.00041759666426222889" /> - <width sOffset="32.320940483353525" a="3.6709200323483504" b="-0.008020581510765264" c="-0.0024801681410654636" d="0.00067666942380871487" /> - <width sOffset="32.570774459007112" a="3.6687719657987374" b="-0.0091331349871838115" c="-0.0019734189572885186" d="0.00067707879515435925" /> - <width sOffset="35.318333115670043" a="3.6428243012648336" b="-0.0046433405940582637" c="-0.00024279412442371792" d="-4.2265810951088348e-05" /> - <width sOffset="38.28825337557555" a="3.6257852086517657" b="-0.0072039063901583062" c="-0.00085770374954473728" d="2.6753196566065368e-05" /> - <width sOffset="42.580301832897248" a="3.5811806374873454" b="-0.013088002025162375" c="-0.000525080155869422" d="2.6487473213085574e-05" /> - <width sOffset="46.791336714900353" a="3.5187333676492445" b="-0.016101171360359642" c="0.00080965878398381666" d="-5.7606389838638784e-05" /> - <width sOffset="52.561524704763315" a="3.4417169564247114" b="-0.012511430827210547" c="0.00055851128686123901" d="-6.0917030977398801e-07" /> - <width sOffset="52.589829206787499" a="3.4413632740401559" b="-0.012479815523593934" c="0.00055648078110657096" d="-5.8132451299654594e-07" /> - <roadMark sOffset="0" color="standard" width="0.30074322676080184" weight="bold" type="solid"> - <type name="solid"> - <line length="62.599356580677636" space="0" width="0.30074299999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4932482094988182" b="0.0011488362303815683" c="-0.00026793326732459663" d="1.2967180022727316e-05" /> - <width sOffset="2.5421923373365871" a="2.4946502333233789" b="3.7971044357758277e-05" c="-0.00016736057321969889" d="1.4152297583015354e-05" /> - <width sOffset="5.8989771090616614" a="2.4934271745812322" b="-0.00060721136530506124" c="0.0011898267814137861" d="4.6871506070674711e-05" /> - <width sOffset="6.1506561121257164" a="2.4933504658419547" b="6.0432090690388379e-07" c="-0.00032520879896767344" d="5.1574869082838171e-05" /> - <width sOffset="12.403432912260882" a="2.4932477963257353" b="0.0019829899091838602" c="-0.0013039915188538757" d="0.00021455942184382031" /> - <width sOffset="12.551719711226724" a="2.4935138737236455" b="0.001610414277905024" c="-0.0012097659067659811" d="0.00021398428449690896" /> - <width sOffset="15.423739950660888" a="2.4932295194056713" b="-4.3381784335411178e-05" c="-0.00075641373379663364" d="0.00014645199962028902" /> - <width sOffset="19.825963571585135" a="2.4908738587268671" b="0.0018113449722721294" c="-9.2999592764997753e-05" d="-9.3150211211991176e-06" /> - <width sOffset="22.561247085116975" a="2.4949419688132184" b="0.0010935057649817869" c="-0.00017071701546344698" d="-9.9444469526343609e-06" /> - <width sOffset="29.232377673442329" a="2.4916868757649699" b="-0.0025119477467432983" c="0.0024712587880735977" d="-0.00047705055367241073" /> - <width sOffset="32.320940483353525" a="2.4934473564031632" b="-0.00089874265179312046" c="0.0016309128228463258" d="-0.00073612331325703358" /> - <width sOffset="32.824369881297798" a="2.4933143215919036" b="0.00018366443281661073" c="0.0021602398358987517" d="-0.00074029961693383142" /> - <width sOffset="35.318333115670043" a="2.4957251576726764" b="-0.0028548816343444529" c="0.00047171603648342696" d="-2.0955010828350181e-05" /> - <width sOffset="42.580301832897248" a="2.4918444926022882" b="0.0006810302908855677" c="4.1489157112942958e-06" d="-1.8017388856528524e-05" /> - <width sOffset="45.135556061320813" a="2.4933111841336895" b="0.00034930924198966904" c="0.00040497243810021298" d="-1.4694427243966663e-05" /> - <width sOffset="46.791336714900353" a="2.4949331345191181" b="0.0015695411512730382" c="-0.00066813972588227757" d="6.9399435807582504e-05" /> - <width sOffset="52.561524704763315" a="2.4950768604598013" b="0.00079093461018959858" c="-0.00021284795110118474" d="1.2402222977502747e-05" /> - <width sOffset="52.589829206787499" a="2.4950990772292716" b="0.00077891530750263342" c="-0.00022227753978624183" d="1.242352610659223e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659244" type="pole" s="123.47047557501909" t="-5.870201704076786" height="1.9507027812537387" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276672177" type="pole" s="650.08297587647235" t="-6.7057915527009033" height="1.6066211846642489" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423206" type="pole" s="423.99095507705965" t="-8.4104411855735108" height="1.8758865695060649" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423282" type="pole" s="522.15181477969907" t="-8.9563060307107101" height="1.7689636637475985" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423242" type="pole" s="521.39683089548532" t="5.8600603320598914" height="2.118142662471115" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5177231" s="145.85481679582404" t="5.9528545857071959" orientation="none" validLength="9.1921850302033477" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="9.1921850302033477" s="145.85481679582404" distance="0" tStart="5.9528545857071959" tEnd="5.5569165454969278" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5177235" s="155.04700182602738" t="5.5569165454969278" orientation="none" validLength="1.4796185661880088" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="1.4796185661880088" s="155.04700182602738" distance="0" tStart="5.5569165454969278" tEnd="5.4791566710365514" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273612691" s="156.52662039221539" t="5.4791566710365514" orientation="none" validLength="47.74481422016126" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="47.74481422016126" s="156.52662039221539" distance="0" tStart="5.4791566710365514" tEnd="4.7661836977258663" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542048147" s="204.27143461237665" t="4.7661836977258663" orientation="none" validLength="39.058743132111715" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="39.058743132111715" s="204.27143461237665" distance="0" tStart="4.7661836977258663" tEnd="4.4710347272559172" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810483603" s="243.33017774448837" t="4.4710347272559172" orientation="none" validLength="27.539301672098702" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="27.539301672098702" s="243.33017774448837" distance="0" tStart="4.4710347272559172" tEnd="4.3580457461953266" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078919059" s="270.86947941658707" t="4.3580457461953266" orientation="none" validLength="29.325737010212038" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="29.325737010212038" s="270.86947941658707" distance="0" tStart="4.3580457461953266" tEnd="4.5171438004088893" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742002" s="300.19521642679911" t="4.5171438004088893" orientation="none" validLength="38.319750739259973" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="38.319750739259973" s="300.19521642679911" distance="0" tStart="4.5171438004088893" tEnd="4.4688354664481178" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742003" s="338.51496716605908" t="4.4688354664481178" orientation="none" validLength="29.051479153427579" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="29.051479153427579" s="338.51496716605908" distance="0" tStart="4.4688354664481178" tEnd="4.2580371804760819" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742004" s="367.56644631948666" t="4.2580371804760819" orientation="none" validLength="56.850427657768705" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="56.850427657768705" s="367.56644631948666" distance="0" tStart="4.2580371804760819" tEnd="4.4494470878710697" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742005" s="424.41687397725536" t="4.4494470878710697" orientation="none" validLength="13.279766762878182" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="13.279766762878182" s="424.41687397725536" distance="0" tStart="4.4494470878710697" tEnd="4.4156597428618571" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742006" s="437.69664074013355" t="4.4156597428618571" orientation="none" validLength="21.771347116869947" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="21.771347116869947" s="437.69664074013355" distance="0" tStart="4.4156597428618571" tEnd="4.1968289554518678" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742007" s="459.46798785700349" t="4.1968289554518678" orientation="none" validLength="12.897246541952427" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="12.897246541952427" s="459.46798785700349" distance="0" tStart="4.1968289554518678" tEnd="3.9278664957677685" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742008" s="472.36523439895592" t="3.9278664957677685" orientation="none" validLength="10.656866723649443" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="10.656866723649443" s="472.36523439895592" distance="0" tStart="3.9278664957677685" tEnd="3.8223472747343368" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742009" s="483.02210112260536" t="3.8223472747343368" orientation="none" validLength="28.056913335809497" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="28.056913335809497" s="483.02210112260536" distance="0" tStart="3.8223472747343368" tEnd="3.8107121659474523" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5177260" s="511.07901445841486" t="3.8107121659474523" orientation="none" validLength="19.212383773074805" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="19.212383773074805" s="511.07901445841486" distance="0" tStart="3.8107121659474523" tEnd="4.1626660833765774" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5177264" s="530.29139823148967" t="4.1626660833765774" orientation="none" validLength="23.471526208954288" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="23.471526208954288" s="530.29139823148967" distance="0" tStart="4.1626660833765774" tEnd="4.5573726051084362" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273612720" s="553.76292444044395" t="4.5573726051084362" orientation="none" validLength="22.364902194576871" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="22.364902194576871" s="553.76292444044395" distance="0" tStart="4.5573726051084362" tEnd="4.5492378915440197" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542048176" s="576.12782663502082" t="4.5492378915440197" orientation="none" validLength="25.225989082965384" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="25.225989082965384" s="576.12782663502082" distance="0" tStart="4.5492378915440197" tEnd="4.8983869575876691" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810483632" s="601.35381571798621" t="4.8983869575876691" orientation="none" validLength="15.699394976039798" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.699394976039798" s="601.35381571798621" distance="0" tStart="4.8983869575876691" tEnd="5.3293676216611257" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078919088" s="617.05321069402601" t="5.3293676216611257" orientation="none" validLength="20.846659772709927" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="20.846659772709927" s="617.05321069402601" distance="0" tStart="5.3293676216611257" tEnd="6.0233054373219588" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="33781868" s="0" t="-3.0756659017018002" orientation="none" validLength="1.7755933939403945" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.7755933939403945" s="0" distance="0" tStart="-3.0756659017018002" tEnd="-3.1993344598867912" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="302217324" s="1.7755933939403945" t="-3.1993344598867912" orientation="none" validLength="1.9971901059384105" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.9971901059384105" s="1.7755933939403945" distance="0" tStart="-3.1993344598867912" tEnd="-3.1046542578721428" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="570652780" s="3.772783499878805" t="-3.1046542578721428" orientation="none" validLength="11.928515120425788" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.928515120425788" s="3.772783499878805" distance="0" tStart="-3.1046542578721428" tEnd="-3.1145931660475128" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="839088236" s="15.701298620304593" t="-3.1145931660475128" orientation="none" validLength="35.01054107218927" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="35.01054107218927" s="15.701298620304593" distance="0" tStart="-3.1145931660475128" tEnd="-3.897452119001716" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1107523692" s="50.711839692493861" t="-3.897452119001716" orientation="none" validLength="8.5115963818192952" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.5115963818192952" s="50.711839692493861" distance="0" tStart="-3.897452119001716" tEnd="-4.2974095061148949" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742010" s="59.223436074313156" t="-4.2974095061148949" orientation="none" validLength="24.343989744630917" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="24.343989744630917" s="59.223436074313156" distance="0" tStart="-4.2974095061148949" tEnd="-4.8074532960088696" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742011" s="83.567425818944074" t="-4.8074532960088696" orientation="none" validLength="38.603292964011999" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="38.603292964011999" s="83.567425818944074" distance="0" tStart="-4.8074532960088696" tEnd="-5.0518018283265222" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742012" s="122.17071878295607" t="-5.0518018283265222" orientation="none" validLength="13.668972793233195" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.668972793233195" s="122.17071878295607" distance="0" tStart="-5.0518018283265222" tEnd="-5.2301429038383764" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742013" s="135.83969157618927" t="-5.2301429038383764" orientation="none" validLength="24.368460230722775" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="24.368460230722775" s="135.83969157618927" distance="0" tStart="-5.2301429038383764" tEnd="-5.8537545442099717" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742014" s="160.20815180691204" t="-5.8537545442099717" orientation="none" validLength="22.907941409657724" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="22.907941409657724" s="160.20815180691204" distance="0" tStart="-5.8537545442099717" tEnd="-6.2520782540775919" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742015" s="183.11609321656977" t="-6.2520782540775919" orientation="none" validLength="7.9725157352668816" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.9725157352668816" s="183.11609321656977" distance="0" tStart="-6.2520782540775919" tEnd="-6.3162652105763932" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742016" s="191.08860895183665" t="-6.3162652105763932" orientation="none" validLength="7.6061989590044732" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.6061989590044732" s="191.08860895183665" distance="0" tStart="-6.3162652105763932" tEnd="-6.509097571856719" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742017" s="198.69480791084112" t="-6.509097571856719" orientation="none" validLength="15.205105847950591" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.205105847950591" s="198.69480791084112" distance="0" tStart="-6.509097571856719" tEnd="-6.7084407139549" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742018" s="213.89991375879171" t="-6.7084407139549" orientation="none" validLength="9.554208155671688" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.554208155671688" s="213.89991375879171" distance="0" tStart="-6.7084407139549" tEnd="-6.6966501764944235" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742019" s="223.4541219144634" t="-6.6966501764944235" orientation="none" validLength="23.454510171353121" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="23.454510171353121" s="223.4541219144634" distance="0" tStart="-6.6966501764944235" tEnd="-6.8769669097527757" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742020" s="246.90863208581652" t="-6.8769669097527757" orientation="none" validLength="41.936122899854354" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="41.936122899854354" s="246.90863208581652" distance="0" tStart="-6.8769669097527757" tEnd="-6.9017326425228465" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742021" s="288.84475498567087" t="-6.9017326425228465" orientation="none" validLength="17.124726429671682" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.124726429671682" s="288.84475498567087" distance="0" tStart="-6.9017326425228465" tEnd="-6.7133192511774009" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742022" s="305.96948141534256" t="-6.7133192511774009" orientation="none" validLength="71.335304927423294" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="71.335304927423294" s="305.96948141534256" distance="0" tStart="-6.7133192511774009" tEnd="-6.9933246915080316" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742023" s="377.30478634276585" t="-6.9933246915080316" orientation="none" validLength="40.78791130486087" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="40.78791130486087" s="377.30478634276585" distance="0" tStart="-6.9933246915080316" tEnd="-6.8109558403637953" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742024" s="418.09269764762672" t="-6.8109558403637953" orientation="none" validLength="21.122401494475866" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="21.122401494475866" s="418.09269764762672" distance="0" tStart="-6.8109558403637953" tEnd="-6.8935665071166365" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742025" s="439.21509914210259" t="-6.8935665071166365" orientation="none" validLength="47.826326265562045" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="47.826326265562045" s="439.21509914210259" distance="0" tStart="-6.8935665071166365" tEnd="-7.5194358068686267" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742026" s="487.04142540766463" t="-7.5194358068686267" orientation="none" validLength="21.706337368567176" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="21.706337368567176" s="487.04142540766463" distance="0" tStart="-7.5194358068686267" tEnd="-7.3834352853951009" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742027" s="508.74776277623181" t="-7.3834352853951009" orientation="none" validLength="27.916359785664156" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="27.916359785664156" s="508.74776277623181" distance="0" tStart="-7.3834352853951009" tEnd="-7.0095838959935231" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742028" s="536.66412256189597" t="-7.0095838959935231" orientation="none" validLength="41.661286178865566" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="41.661286178865566" s="536.66412256189597" distance="0" tStart="-7.0095838959935231" tEnd="-6.9093088108429619" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742029" s="578.32540874076153" t="-6.9093088108429619" orientation="none" validLength="40.830222134328551" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="40.830222134328551" s="578.32540874076153" distance="0" tStart="-6.9093088108429619" tEnd="-6.0351141636761323" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742030" s="619.15563087509008" t="-6.0351141636761323" orientation="none" validLength="16.010647143671804" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.010647143671804" s="619.15563087509008" distance="0" tStart="-6.0351141636761323" tEnd="-6.0271574222140014" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742031" s="635.16627801876189" t="-6.0271574222140014" orientation="none" validLength="15.250060008236119" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.250060008236119" s="635.16627801876189" distance="0" tStart="-6.0271574222140014" tEnd="-5.6707256917524589" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742032" s="650.41633802699801" t="-5.6707256917524589" orientation="none" validLength="60.260105519203762" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="60.260105519203762" s="650.41633802699801" distance="0" tStart="-5.6707256917524589" tEnd="-5.768346612224299" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412764" s="30.270676200094684" t="-3.5345228539937779" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848220" s="60.439997708603258" t="-4.5022600361018039" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283676" s="84.574000343936419" t="-4.945462845006225" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719132" s="108.90534893711066" t="-5.0722705617777404" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154588" s="133.19004265324079" t="-5.341081681712863" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742033" s="157.49260127507199" t="-5.8798896793568707" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742034" s="206.22269502604661" t="-6.616202430972189" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742035" s="234.66578488771731" t="-6.8441185443135417" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742036" s="254.87227571372082" t="-7.1054639451333159" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742037" s="279.17475713101078" t="-7.0616741774548348" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742038" s="303.6748854237577" t="-6.8132286512349722" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742039" s="327.48470848171985" t="-6.8383485407215954" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742040" s="351.88454928862797" t="-7.0655321965002393" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742041" s="399.99036377354258" t="-7.0283507873171311" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742042" s="447.98229617664458" t="-7.0041795232172746" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742043" s="472.20151544909453" t="-7.4835750163964416" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742044" s="496.65932903503182" t="-7.7089016005915214" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742045" s="520.97452268585641" t="-7.4929799711242655" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742046" s="545.04163242343031" t="-7.265071706035501" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742047" s="597.9150052550192" t="-6.7829899136836893" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742048" s="622.42515296406145" t="-6.2577496216126578" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742049" s="646.76233273797493" t="-5.8522802668743337" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742050" s="699.15603782065773" t="-5.7437780861919485" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412804" s="157.61745394539702" t="5.6098954515947597" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848260" s="181.62718529597132" t="5.1742931010757474" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283716" s="206.09049859571763" t="4.7658808619003263" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719172" s="230.87237682674495" t="4.6438296337381253" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154628" s="254.94214741902658" t="4.5398202129468785" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742051" s="279.44514845490306" t="4.5260760733108647" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742052" s="303.4380807134396" t="4.4855275714883822" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742053" s="327.85926896752471" t="4.4909651219984195" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742054" s="351.58384145888391" t="4.1863701877413639" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742055" s="375.61368472873141" t="4.1491825241768385" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742056" s="399.78792286078794" t="4.3809809629518774" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742057" s="424.18488002149235" t="4.5302998936743357" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742058" s="447.94261975735526" t="4.3899067780315439" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742059" s="472.24466125680294" t="4.017004999472201" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742060" s="495.84471841618296" t="3.797148611646247" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742061" s="519.36099473483023" t="3.9812988115096286" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742062" s="545.33388446239644" t="4.7582747309944899" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742063" s="570.68543826592247" t="4.7536391550019292" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742064" s="596.33318617573195" t="4.9480939447376713" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742065" s="622.06932500862149" t="5.80006811131235" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8223788" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="1.9507027812537387" s="123.47047557501909" t="-5.870201704076786" orientation="+" /> - <signal dynamic="no" id="8236721" type="205" subtype="-1" country="DEU" zOffset="1.6066211827540258" s="650.08297587647235" t="-6.7057915527009033" orientation="+" /> - <signal dynamic="no" id="8987738" type="531" subtype="20" country="DEU" zOffset="1.8758865695060649" s="423.99011706744625" t="-8.4077675625309549" orientation="+" /> - <signal dynamic="no" id="8987750" type="1004" subtype="32" country="DEU" zOffset="1.4497935361751786" s="423.99095507705965" t="-8.4104411855735108" orientation="+" /> - <signal dynamic="no" id="8987786" type="1004" subtype="30" country="DEU" zOffset="1.7374215195517593" s="521.39683089548532" t="5.8600603320598914" orientation="+" /> - <signal dynamic="no" id="8987798" type="531" subtype="20" country="DEU" zOffset="2.118142662471115" s="521.39841921601339" t="5.8325347869112774" orientation="+" /> - <signal dynamic="no" id="8987814" type="531" subtype="20" country="DEU" zOffset="1.7689636637475985" s="522.15096092368412" t="-8.9496430698429688" orientation="+" /> - <signal dynamic="no" id="8987826" type="1004" subtype="30" country="DEU" zOffset="1.3560781742311576" s="522.15181477969907" t="-8.9563060307107101" orientation="+" /> - </signals> - </road> - <road name="" length="5.0000000000000329" id="33781891" junction="33554492"> - <link> - <predecessor elementType="road" elementId="33782205" contactPoint="end" /> - <successor elementType="road" elementId="33781969" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-172.49511851901204" y="-214.05192591065364" hdg="-0.069318770074491942" length="5.0000000000000329"> - <paramPoly3 aU="0" bU="5.0351863301974236" cU="-0.033540322032047369" dU="-0.001647939925829633" aV="-0" bV="7.2164496600635175e-16" cV="0.0036110708966418689" dV="0.00016703270734882468" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="166.43665138853021" b="0.00016337428721371612" c="5.3221612461129553e-07" d="1.6452011353432217e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025888064121177636" b="4.1686825686060032e-05" c="-0" d="4.3368086899419323e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.6158988481979715" b="-0.0039635464954749936" c="0.00047419266444484427" d="-7.3405625619661253e-05" /> - <laneOffset s="2.1142524751931546" a="3.608944836510108" b="-0.0029428038961191111" c="0.0014481230237806096" d="-0.00055594710630532066" /> - <laneOffset s="4.4180329361951181" a="3.6030534190673436" b="-0.0051223972168468459" c="-0.051944049258782356" d="0.06454544484284308" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15523179294825901" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000000329" space="0" width="0.15523200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.5499431035833484" b="-0.0004974443453940945" c="0.00045753595991230591" d="7.0734847277716348e-05" /> - <width sOffset="1.0867287203438991" a="3.5500336384249755" b="0.00074759976479635976" c="0.002131503133042043" d="-0.0004822904459426421" /> - <width sOffset="2.1142524751931546" a="3.5525290468284272" b="0.0036003258808134314" c="0.0020843328995271528" d="-0.00096483192662864033" /> - <width sOffset="4.4180329361951181" a="3.5600887136492574" b="-0.0021582429769894801" c="-0.054133781962619205" d="0.064136560022519745" /> - <roadMark sOffset="0" color="standard" width="0.15745140277557482" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15745100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="2" /> - </link> - <width sOffset="0" a="3.6256446928828745" b="-0.0026174104380335067" c="-0.00057875837147406881" d="0.00055198595698564802" /> - <width sOffset="0.42272609533046079" a="3.6244765196380881" b="-0.0028108076850402314" c="-0.00045257834142750587" d="-2.5629620550460824e-05" /> - <width sOffset="1.0867287203438991" a="3.622403091111575" b="-0.003445734358087523" c="-0.0019469911503311463" d="0.00052739567267019976" /> - <width sOffset="2.8717221685321874" a="3.6130484547710262" b="-0.0053553004279060009" c="0.083746174796069564" d="-0.025838745854349296" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.8717221685321874" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="2.8717221685321874" type="none" width="0" /> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="0.15926276254980376" b="-0.027074929917204844" c="-0.36571148481980886" d="10.34008745573265" /> - <width sOffset="0.043189731172901702" a="0.15824426236409472" b="-0.00080115564222930338" c="-0.0019428508682028107" d="-0.00020558673334131314" /> - <width sOffset="0.42272609533046079" a="0.15764909145664419" b="-0.0023647637333012398" c="-0.0016030972173046035" d="0.00037202884419200113" /> - <width sOffset="2.8717221685321874" a="0.14770746754481134" b="-0.0035229010759023271" c="-0.081738778167105341" d="0.026738170371202553" /> - <width sOffset="3.3702319275872128" a="0.12895067692518714" b="-0.065083791323583412" c="-0.074796052363463109" d="0.040608456415376332" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="4.9999999964183415" id="33781913" junction="33554492"> - <link> - <predecessor elementType="road" elementId="33781870" contactPoint="end" /> - <successor elementType="road" elementId="33781969" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-172.82084900596882" y="-218.85405055681645" hdg="-0.053277710204200801" length="4.9999999964183415"> - <paramPoly3 aU="0" bU="4.9988974140843796" cU="0.0010671971920036072" dU="-0.00013937144360410167" aV="-0" bV="6.106226635438361e-16" cV="-0.036160759439943416" dV="-3.905938443005198e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="166.31212783772887" b="0.0003652221301898885" c="-4.2763351025314478e-05" d="1.0907281218629911e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026590825200705354" b="-9.8865390290303598e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="0.92816362550681841" b="-0.0046835651088729833" c="-4.9822031729686382e-05" d="0.00019279931127002406" /> - <laneOffset s="2.933048469244568" a="0.91886267430700863" b="3.3835220369375885e-10" c="0.11646917489150989" d="-0.037565523611979595" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16130402690251466" weight="standard" type="solid"> - <type name="solid"> - <line length="2.933048469244568" space="0" width="0.161304" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="2.933048469244568" type="none" width="0" /> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="3" /> - </link> - <width sOffset="0" a="3.3716173959225051" b="-0.0015632467271622305" c="0.0004597209081454866" d="1.7241890135912658e-05" /> - <width sOffset="2.8148449751806766" a="3.3712441754297808" b="0.0014346801555916594" c="0.0012153660032547353" d="0.00011946403414842338" /> - <width sOffset="2.933048469244568" a="3.3714309381115286" b="0.0017270086500078673" c="0.11608025695090918" d="-0.037638858888918644" /> - <width sOffset="4.4781118972016429" a="3.5123810398614008" b="0.090872905433756257" c="-0.088944496398802267" d="0.002405140301879799" /> - <roadMark sOffset="0" color="standard" width="0.30074322676080184" weight="bold" type="solid"> - <type name="solid"> - <line length="4.9999999964183415" space="0" width="0.30074299999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="2.4930845917637727" b="0.00097363186774375443" c="-0.0011854097732981218" d="0.00020853166686591592" /> - <width sOffset="2.8148449751806766" a="2.4910836788394741" b="-0.00074304807430023421" c="-3.4502181013510932e-05" d="0.00010630952267078701" /> - <width sOffset="4.4781118972016429" a="2.4902415107396174" b="2.4481375743392155e-05" c="0.031057441488437747" d="-0.039937689668117948" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33781911" s="0" t="-5.768346612224299" orientation="none" validLength="4.9999999966490405" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.9999999966490405" s="0" distance="0" tStart="-5.768346612224299" tEnd="-5.797001454048524" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="1982.5907928842385" id="33781942" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554597" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="660.3527959705682" y="-244.36814670859701" hdg="3.1851810303100767" length="216.00853752493447"> - <paramPoly3 aU="0" bU="246.27643340670508" cU="-79.301005811192795" dU="48.63539702882526" aV="0" bV="3.1974423109204508e-14" cV="-10.278147267429661" dV="-0.9313640132403429" /> - </geometry> - <geometry s="216.00853752493447" x="444.45831374875274" y="-242.56443262024661" hdg="3.0855449094141978" length="362.00183137677078"> - <paramPoly3 aU="-0" bU="355.12790549436124" cU="16.365333892372981" dU="-9.5278944633025802" aV="-0" bV="5.6843418860808015e-14" cV="-7.7497783330248344" dV="3.0037945982441028" /> - </geometry> - <geometry s="578.01036890170531" x="83.32721229903413" y="-217.54918021570757" hdg="3.0674877953156585" length="251.99886260168964"> - <paramPoly3 aU="-0" bU="252.87612179280524" cU="-3.1823654675292392" dU="2.3045557258182314" aV="-0" bV="-6.3948846218409017e-14" cV="0.13571944588371565" dV="0.27878043531934305" /> - </geometry> - <geometry s="830.00923150339497" x="-168.01017654094602" y="-199.30533035190967" hdg="3.0718590013467022" length="490.50011548511691"> - <paramPoly3 aU="-0" bU="491.80679314369803" cU="-4.9354592330145666" dU="3.6245365720662566" aV="-0" bV="-3.5527136788005009e-14" cV="-5.702340539213516" dV="3.8544008547905699" /> - </geometry> - <geometry s="1320.5093469885119" x="-657.18518374267478" y="-163.28552786916151" hdg="3.0721806702380228" length="333.49969707699347"> - <paramPoly3 aU="-0" bU="339.76855047187274" cU="-10.02340990415086" dU="3.7489612235523233" aV="-0" bV="-3.5527136788005009e-14" cV="-5.1144224070449136" dV="3.3354689871125807" /> - </geometry> - <geometry s="1654.0090440655053" x="-989.75283529313526" y="-138.38095505510725" hdg="3.0715085889299254" length="153.49911576106615"> - <paramPoly3 aU="-0" bU="164.19177774401365" cU="-41.230121171481599" dU="30.53615660031252" aV="-0" bV="1.9539925233402755e-14" cV="1.9688468641721868" dV="-1.4522979568998582" /> - </geometry> - <geometry s="1807.5081598265715" x="-1142.9100015133338" y="-128.14728967961369" hdg="3.0690902243715676" length="175.08263305766692"> - <paramPoly3 aU="-0" bU="173.15880236755001" cU="3.5837424682095516" dU="-1.6599233301482055" aV="-0" bV="5.6843418860808015e-14" cV="-0.20909184748530696" dV="0.15924639479785729" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.07121194259207" b="0.013181538710603168" c="-6.4529040360749443e-05" d="2.3135993950256289e-06" /> - <elevation s="10.013084812546658" a="165.19905269875707" b="0.012585166590315682" c="0.00013759760699648651" d="-2.5451403249527962e-06" /> - <elevation s="20.026169625093317" a="165.33630968803323" b="0.014575178042226855" c="0.00020154729180551945" d="-6.8496935790609198e-06" /> - <elevation s="30.039254437639975" a="165.49558307292267" b="0.016551109086039267" c="0.00011339315416047526" d="-2.6829433400002078e-07" /> - <elevation s="35.000625635959253" a="165.58045769899348" b="0.017656467784903207" c="8.6799739468831539e-05" d="-3.1431503945330036e-06" /> - <elevation s="40.052339250186634" a="165.67146301948432" b="0.018292804829315088" c="0.00025008005997333084" d="-1.9043321883807864e-05" /> - <elevation s="50.065424062733292" a="165.86058574629871" b="0.017572993485871317" c="-8.5641790209651432e-05" d="-5.6125666571710716e-07" /> - <elevation s="60.078508875279951" a="166.02739555193247" b="0.015689098543843195" c="-0.0001191990247712674" d="8.4195647170347161e-06" /> - <elevation s="70.091593687826617" a="166.18099336797073" b="0.015834482499900937" c="6.9536280770101673e-05" d="-3.1322510621450097e-06" /> - <elevation s="80.104678500373268" a="166.34337265893853" b="0.016284891831137863" c="-7.5600889123864853e-06" d="3.1254677967085787e-07" /> - <elevation s="90.117763312919919" a="166.50599044864487" b="0.016227501779595904" c="1.6940969166706372e-05" d="-2.9443238518821994e-06" /> - <elevation s="100.13084812546658" a="166.66722043670566" b="0.015681154278322919" c="-9.2110104748926327e-05" d="3.879695874251371e-06" /> - <elevation s="110.14393293801325" a="166.81889697867726" b="0.015003498357061565" c="-7.9131451293873065e-05" d="5.3407090848372191e-06" /> - <elevation s="120.1570177505599" a="166.96655611431146" b="0.015025206890041862" c="8.5102615728770229e-05" d="-8.3190168607836597e-06" /> - <elevation s="130.17010256310655" a="167.11718561696469" b="0.014227245810403993" c="-9.8951949958088099e-05" d="6.2085779200991627e-07" /> - <elevation s="140.18318737565323" a="167.25034642674601" b="0.01243236236077765" c="-6.3856767316350236e-05" d="-3.3857298736039755e-06" /> - <elevation s="150.19627218819988" a="167.36503128897974" b="0.010135177107229333" c="-0.00013912425129158774" d="2.3045868858191525e-08" /> - <elevation s="160.20935700074654" a="167.45258995615322" b="0.0073559831174469983" c="-0.00018244875660413417" d="3.2503674152235569e-06" /> - <elevation s="170.22244181329319" a="167.5112165291865" b="0.0046798970907813014" c="-0.00013876449170952026" d="1.0155035442267086e-06" /> - <elevation s="180.23552662583984" a="167.54518344365869" b="0.0022064246871457581" c="0.00033133132776173114" d="-3.1369775404306299e-05" /> - <elevation s="187.00850507343009" a="167.56558021058646" b="0.002377525140902793" c="-0.00014038183807030434" d="-3.0806754949676358e-05" /> - <elevation s="190.24861143838652" a="167.57076196633818" b="0.00049756629326844887" c="-4.8245139002347193e-05" d="1.9413242172385093e-06" /> - <elevation s="200.26169625093317" a="167.57285594685217" b="0.00011532333013714815" c="-2.8105368538787668e-06" d="-6.5134693875860697e-07" /> - <elevation s="210.27478106347982" a="167.57307499235259" b="-0.00013687673897543802" c="-2.0296201206539497e-05" d="1.7637889435342005e-09" /> - <elevation s="220.2878658760265" a="167.56967126964264" b="-0.00054280138476275387" c="-9.5111803874252122e-05" d="7.3087296830267444e-06" /> - <elevation s="230.30095068857315" a="167.56203752351354" b="-0.0002491658420840361" c="6.8868076579337969e-05" d="-4.7173211945573377e-06" /> - <elevation s="240.3140355011198" a="167.5617115837567" b="-0.00028890435592319921" c="-3.4373489448577329e-06" d="1.7637889435343358e-09" /> - <elevation s="250.32712031366646" a="167.5584758956355" b="-0.00035721076663368416" c="-0.00018360317573086967" d="9.2976442828693438e-06" /> - <elevation s="260.34020512621311" a="167.54582490610187" b="-0.0012374815710973581" c="8.0330046915859166e-06" d="-5.3975943123911011e-07" /> - <elevation s="270.35328993875976" a="167.53369742122808" b="-0.0012389631222152957" c="-6.4818268610323798e-06" d="3.7359511404105751e-07" /> - <elevation s="280.36637475130647" a="167.52101676190051" b="-0.0012563972549881055" c="2.4633482396839704e-05" d="-2.3567470602909845e-06" /> - <elevation s="290.37945956385312" a="167.50854013812653" b="-0.0014719585422621633" c="-4.8021150715507979e-05" d="2.5460024691034869e-06" /> - <elevation s="300.39254437639977" a="167.4915426118954" b="-0.0016678373657279969" c="3.3497239280494928e-06" d="-3.48419494441894e-08" /> - <elevation s="310.40562918894642" a="167.47514328557676" b="-0.0016112351828996394" c="1.7223303020084505e-06" d="9.6370378463158863e-08" /> - <elevation s="320.41871400149307" a="167.45927928426008" b="-0.0015477566817826058" c="1.0523157084142869e-05" d="-6.8266427655398649e-07" /> - <elevation s="330.43179881403972" a="167.44415118917237" b="-0.0015423537386773131" c="-8.4386067888628951e-05" d="8.1167190562730777e-06" /> - <elevation s="340.44488362658637" a="167.42839538811077" b="-0.00079089121744011046" c="3.3264203577332657e-05" d="1.7637889435351803e-09" /> - <elevation s="350.45796843913303" a="167.42381302916505" b="-0.00012420611183695265" c="7.4164670626718373e-05" d="-1.0498448602932924e-07" /> - <elevation s="360.47105325167968" a="167.42989983407361" b="0.0013294503404509734" c="0.00024904463789771319" d="-1.7671585307849894e-05" /> - <elevation s="370.48413806422639" a="167.45044036863436" b="0.0010015020712068751" c="-9.7776237494024684e-05" d="1.7637889435350471e-09" /> - <elevation s="380.49722287677304" a="167.45066703637031" b="-0.00095605092383199892" c="-6.9485843373853035e-06" d="1.7637889435352998e-09" /> - <elevation s="390.51030768931969" a="167.44039911006462" b="-0.0010946739301068739" c="-0.00028836488732690129" d="1.4603778687514392e-05" /> - <elevation s="400.52339250186634" a="167.41518722508877" b="-0.0024769117079456041" c="4.0041837111137426e-06" d="1.2383802230560725e-08" /> - <elevation s="410.53647731441299" a="167.39079959749824" b="-0.0023929983763230057" c="5.8058381626104801e-06" d="-1.5163482775608747e-07" /> - <elevation s="420.54956212695964" a="167.36726817513528" b="-0.0023223392494726106" c="-3.639821209892708e-06" d="6.4358952790247971e-07" /> - <elevation s="430.56264693950629" a="167.34429557920464" b="-0.0022016484625850506" c="-4.5033275797159257e-06" d="1.3769444301342227e-06" /> - <elevation s="440.575731752053" a="167.32318113101206" b="-0.0018776678046986584" c="2.0649928052320529e-06" d="2.1014427289627295e-06" /> - <elevation s="450.58881656459965" a="167.30669662669149" b="-0.0012042301913878536" c="2.2243174946642036e-05" d="-2.4744499852344875e-07" /> - <elevation s="460.60190137714631" a="167.29662029230832" b="-0.00083321248984497302" c="9.5150528559860236e-05" d="-7.772570456253779e-06" /> - <elevation s="470.61498618969296" a="167.29001411347946" b="-0.0012655891517890498" c="-8.0575181098284487e-05" d="4.1417638928462755e-06" /> - <elevation s="480.62807100223961" a="167.27342108727365" b="-0.001633418448569998" c="-2.8148453599833985e-06" d="5.2118328778682714e-07" /> - <elevation s="490.64115581478626" a="167.25730654000296" b="-0.0015330245900449916" c="2.22217842423299e-05" d="-1.454497091696906e-06" /> - <elevation s="500.65424062733291" a="167.24272401823725" b="-0.0015254991533360798" c="-1.2739429025710345e-05" d="5.8608609004547617e-07" /> - <elevation s="510.66732543987956" a="167.22676017663861" b="-0.0016043348622852033" c="-4.3011629176922407e-06" d="3.3297583563153558e-07" /> - <elevation s="520.68041025242621" a="167.21059887759301" b="-0.0015903163431584143" c="-9.3826619166483651e-06" d="1.1769651133053862e-06" /> - <elevation s="530.69349506497292" a="167.19491577323629" b="-0.0014242009616388137" c="-6.0150015318350059e-07" d="1.7637889435372288e-09" /> - <elevation s="540.70657987751952" a="167.18059659141034" b="-0.0014357161834161216" c="6.093355782644276e-05" d="-4.1122216117841856e-06" /> - <elevation s="550.71966469006622" a="167.16820157076035" b="-0.0014523474731840311" c="-3.4873010471152199e-06" d="1.6369708453144322e-07" /> - <elevation s="560.73274950261293" a="167.15347378952811" b="-0.0014729470293070913" c="2.2323072463359057e-05" d="-1.1597461185222732e-06" /> - <elevation s="570.74583431515953" a="167.1397988943358" b="-0.0013747363284815073" c="-7.3663231129668729e-06" d="6.4909517326549276e-07" /> - <elevation s="580.75891912770624" a="167.12594662806748" b="-0.0013270170819560849" c="3.8735039754506715e-05" d="-3.3023939682234029e-06" /> - <elevation s="590.77200394025283" a="167.11322736660048" b="-0.0015446151644579694" c="-6.8803750468753778e-06" d="4.0371673126663815e-07" /> - <elevation s="600.78508875279954" a="167.0974764682781" b="-0.001560970542022095" c="7.9643391298133296e-06" d="-4.6108992782658156e-07" /> - <elevation s="610.79817356534613" a="167.08218195508545" b="-0.0015401645473538525" c="-4.8571802807931645e-06" d="3.6182418384750816e-07" /> - <elevation s="620.81125837789284" a="167.06663641324556" b="-0.0015286037584589227" c="9.5883948041862835e-06" d="-6.7679181567289307e-08" /> - <elevation s="630.82434319043944" a="167.05222377933623" b="-0.0013569418610748906" c="4.3156892221972768e-05" d="-3.48429389189419e-06" /> - <elevation s="640.83742800298614" a="167.03946560680765" b="-0.0015407000541221483" c="-4.3274490362741776e-06" d="1.7637889435446046e-09" /> - <elevation s="650.85051281553285" a="167.02360633909495" b="-0.0016268317602466467" c="-2.8190445816685922e-05" d="1.2572388114279508e-06" /> - <elevation s="660.86359762807945" a="167.00575248845379" b="-0.0018132190767354702" c="-2.1717545546342119e-05" d="1.8715610337832003e-06" /> - <elevation s="670.87668244062615" a="166.98729804774013" b="-0.0016851997147315256" c="1.5506328713099937e-06" d="1.7637889435471982e-09" /> - <elevation s="680.88976725317275" a="166.97058124013952" b="-0.0016536159555045531" c="5.0878916267834732e-06" d="1.7637889435475192e-09" /> - <elevation s="690.90285206571946" a="166.9545353355673" b="-0.0015511944524326214" c="4.7714576542535268e-05" d="-2.8855217159341018e-06" /> - <elevation s="700.91593687826605" a="166.94089018300701" b="-0.0014635776365382787" c="-1.9573475852215149e-05" d="9.524963754604691e-07" /> - <elevation s="710.92902169081276" a="166.92522902300183" b="-0.0015690621880404547" c="9.137465624670618e-06" d="-9.5882195525101012e-07" /> - <elevation s="720.94210650335935" a="166.9094714189203" b="-0.0016744735908920398" c="-3.2914391352700215e-06" d="2.1062551093782974e-07" /> - <elevation s="730.95519131590606" a="166.89258622039586" b="-0.0016770353881395475" c="0.0001186710557022127" d="-5.6608378528164184e-06" /> - <elevation s="740.96827612845277" a="166.88200901623702" b="-0.0010032072206482699" c="3.2647399602375286e-05" d="-2.7270238428454581e-06" /> - <elevation s="750.98136094099937" a="166.87249936386937" b="-0.0011696543676944053" c="-4.2314665494536189e-05" d="2.0358905738455022e-06" /> - <elevation s="760.99444575354607" a="166.85858886091017" b="-0.0014046884638633161" c="-5.6811721168267253e-07" d="-9.3890783302813058e-08" /> - <elevation s="771.00753056609267" a="166.84437237586496" b="-0.0014443066713259887" c="1.5692992912274612e-05" d="-1.8082400458008406e-06" /> - <elevation s="781.02061537863938" a="166.82966847196289" b="-0.0016739287047808919" c="-2.9963191347529643e-05" d="2.007584200267728e-06" /> - <elevation s="791.03370019118597" a="166.81191859152744" b="-0.0016701242341899615" c="3.1978982377671639e-05" d="-1.2679178940782409e-06" /> - <elevation s="801.04678500373268" a="166.79712886686596" b="-0.0014110791562079136" c="9.0654647996926008e-06" d="-2.4395072534414853e-07" /> - <elevation s="811.05986981627939" a="166.78366362243412" b="-0.0013029094862750104" c="3.02075422872726e-05" d="-2.5958188354055497e-06" /> - <elevation s="821.07295462882598" a="166.77104012193104" b="-0.0014787530525750422" c="-2.3914050928657404e-05" d="1.5618457675758387e-06" /> - <elevation s="831.08603944137269" a="166.75540355952506" b="-0.0014878791728552591" c="-2.3462596151056648e-06" d="9.7325839890132303e-07" /> - <elevation s="841.09912425391929" a="166.74124714267711" b="-0.0012421236520974519" c="4.8280759669346734e-05" d="-3.106041758826055e-06" /> - <elevation s="851.11220906646599" a="166.73053212201617" b="-0.0012094976108069943" c="-2.0949973578341625e-05" d="7.0547051099772935e-07" /> - <elevation s="861.12529387901259" a="166.71702907980526" b="-0.001416849962709423" c="-1.6456187035977129e-05" d="9.6567718080494551e-07" /> - <elevation s="871.1383786915593" a="166.70216158577298" b="-0.001455942563131704" c="8.7899958156183589e-06" d="-5.8643724677171374e-07" /> - <elevation s="881.151463504106" a="166.68787566851495" b="-0.0014563044964582899" c="2.9700917925827447e-06" d="-5.8811704174735137e-07" /> - <elevation s="891.1645483166526" a="166.67300092634446" b="-0.0015737220730955915" c="-4.1957098867244217e-05" d="2.0525457984800188e-06" /> - <elevation s="901.17763312919931" a="166.65509703016824" b="-0.0017965858275594581" c="-2.7905805496771366e-05" d="2.7053260205848387e-06" /> - <elevation s="911.1907179417459" a="166.63702573525904" b="-0.0015417091052003695" c="1.908215061608535e-05" d="-3.5761818044791871e-07" /> - <elevation s="921.20380275429261" a="166.62314265946023" b="-0.0012671331199826247" c="5.3469601263360422e-05" d="-4.1459601941389769e-06" /> - <elevation s="931.2168875668392" a="166.61165345390404" b="-0.0014433869497745056" c="-2.1409681383349966e-06" d="1.7637889428310159e-09" /> - <elevation s="941.22997237938591" a="166.59698781121659" b="-0.0014857318185550648" c="-6.3164158588621931e-06" d="4.8963380918565392e-07" /> - <elevation s="951.24305719193251" a="166.58196931521422" b="-0.0014649506337209711" c="3.0189085364444685e-05" d="-1.4059085608433e-06" /> - <elevation s="955.00948874739186" a="166.57680482291559" b="-0.0012973730708654054" c="1.2844378134929626e-05" d="-1.4065657670335972e-06" /> - <elevation s="961.25614200447922" a="166.56885893103544" b="-0.0013015597629040781" c="1.8414106422485503e-05" d="-1.7799201324049301e-06" /> - <elevation s="971.26922681702592" a="166.55588561918336" b="-0.0014681700934239463" c="-3.4962582743546203e-05" d="2.0030752716343753e-06" /> - <elevation s="981.28231162957252" a="166.53969024220541" b="-0.0015658405037669925" c="4.2853373663056973e-06" d="1.1065826741625464e-09" /> - <elevation s="991.29539644211923" a="166.52444211529749" b="-0.0014796887666323644" c="4.8325606688528139e-05" d="-2.698206026226926e-06" /> - <elevation s="1001.3084812546658" a="166.51176227020665" b="-0.00132349349482269" c="-5.7734201579858543e-07" d="-5.1029451399464624e-07" /> - <elevation s="1011.3215660672125" a="166.49793983193683" b="-0.001488544686750831" c="-7.289183163286746e-05" d="4.8417036764477932e-06" /> - <elevation s="1021.3346508797591" a="166.4805873709704" b="-0.0014919741144013325" c="7.1924595107920948e-05" d="-4.0982136167750388e-06" /> - <elevation s="1031.3477356923058" a="166.46874507986379" b="-0.001284283623997539" c="-9.1468436222075429e-06" d="-9.766437868509224e-08" /> - <elevation s="1041.3608205048524" a="166.45487031113382" b="-0.0014968359048848888" c="-3.7825250419067269e-05" d="2.5136260251948576e-06" /> - <elevation s="1051.3739053173992" a="166.43861344206277" b="-0.0014982682677179423" c="1.9625032750360068e-05" d="-2.4475572251607666e-07" /> - <elevation s="1061.3869901299458" a="166.42533307950373" b="-0.0011788730303965564" c="2.9181027755542423e-05" d="-1.4416490301346872e-06" /> - <elevation s="1071.4000749424924" a="166.41500735265399" b="-0.0010281160906931821" c="6.8516111483229152e-06" d="-6.5106117842958641e-07" /> - <elevation s="1081.413159755039" a="166.40474607414154" b="-0.0010867343923782128" c="1.9600163400939069e-05" d="-2.573098472464606e-06" /> - <elevation s="1091.4262445675859" a="166.39324644723914" b="-0.0014681691694799152" c="-4.2919723417995746e-06" d="2.9206133529829844e-07" /> - <elevation s="1101.4393293801324" a="166.37840843297028" b="-0.0014662730909505404" c="5.6876722635947401e-05" d="-2.9940238123880068e-06" /> - <elevation s="1111.452414192679" a="166.36642329050929" b="-0.0012278094517020766" c="1.6970554684676549e-05" d="-2.0004324880723951e-06" /> - <elevation s="1121.4654990052259" a="166.35382233448755" b="-0.0014896555359197327" c="-1.2910923582402893e-05" d="1.106582674158177e-09" /> - <elevation s="1131.4785838177725" a="166.33761292488805" b="-0.0017478790374613079" c="-7.1061070376952925e-05" d="4.1552746051471372e-06" /> - <elevation s="1141.4916686303191" a="166.31715815547818" b="-0.0019211133113668215" c="-7.929285207823243e-06" d="2.0078337396618357e-06" /> - <elevation s="1151.5047534428656" a="166.29914260570996" b="-0.0014759790410617804" c="7.8748927353436662e-05" d="-5.2234852876164788e-06" /> - <elevation s="1161.5178382554125" a="166.2870150002806" b="-0.0014700888328974871" c="-0.0001756117776356511" d="9.5984371435773555e-06" /> - <elevation s="1171.5309230679591" a="166.26432387593195" b="-0.002099848381762086" c="-1.4378667375224062e-05" d="3.0968459076796668e-06" /> - <elevation s="1181.5440078805057" a="166.2449653022648" b="-0.0014563113517514414" c="0.00013500815475065426" d="-7.251766969885316e-06" /> - <elevation s="1191.5570926930523" a="166.23663903226702" b="-0.00093384224037107975" c="1.9952361136849495e-05" d="-3.0107765747329037e-06" /> - <elevation s="1201.5701775055991" a="166.22626624102043" b="-0.0014398711175154413" c="-1.0265866082097802e-05" d="7.1414530259657693e-07" /> - <elevation s="1211.5832623181457" a="166.21153636680663" b="-0.0014306524679886983" c="2.564921819531639e-05" d="-1.6544368601933229e-06" /> - <elevation s="1221.5963471306923" a="166.19812182106205" b="-0.0014146276612673312" c="2.0356928407510383e-07" d="1.1065826741534792e-09" /> - <elevation s="1231.6094319432391" a="166.18397855548034" b="-0.0014102181041177491" c="-7.1228625745422671e-05" d="4.7796578169370806e-06" /> - <elevation s="1241.6225167557857" a="166.16751485162123" b="-0.0013990023897735423" c="4.4491334891371515e-05" d="-1.9494406107669045e-06" /> - <elevation s="1251.6356015683323" a="166.15601020331391" b="-0.0010943750388246829" c="1.9958563693649281e-05" d="-1.4465968087131296e-06" /> - <elevation s="1261.6486863808789" a="166.14560093332457" b="-0.0011297969493463062" c="-2.5470381680557048e-05" d="1.6459775608297085e-06" /> - <elevation s="1271.6617711934257" a="166.13338691982872" b="-0.0011447847811428195" c="4.2786513167955246e-05" d="-3.5226015822521041e-06" /> - <elevation s="1281.6748560059723" a="166.12267750097752" b="-0.0013474826496718639" c="-2.3563620498083553e-05" d="1.1065826741467261e-09" /> - <elevation s="1291.6879408185189" a="166.10682362125976" b="-0.0018190388666115694" c="-8.345984527946799e-05" d="4.322745960494796e-06" /> - <elevation s="1301.7010256310657" a="166.08458132773472" b="-0.0021902001373569095" c="-3.9641571712094558e-05" d="4.2716037761335492e-06" /> - <elevation s="1311.7141104436123" a="166.0629645236605" b="-0.0016992320616939323" c="3.752806858532186e-05" d="-1.6842607229380038e-06" /> - <elevation s="1321.7271952561589" a="166.04802172230077" b="-0.0014542899706324595" c="2.0685583732439988e-05" d="-1.6842607229380021e-06" /> - <elevation s="1331.7402800687055" a="166.03384288788891" b="-0.0015466383381428543" c="-0.00011658426594915558" d="7.3549157096078679e-06" /> - <elevation s="1341.7533648812523" a="166.01405113562549" b="-0.0016691218714173094" c="5.0583805001694197e-05" d="-2.8708972635511273e-06" /> - <elevation s="1351.7664496937989" a="165.99952752195563" b="-0.0015196465749870631" c="-1.5650866558722793e-05" d="8.752304370459837e-07" /> - <elevation s="1361.7795345063455" a="165.98362065740895" b="-0.0015698167692350241" c="-2.5930500060433028e-06" d="4.4859874225344673e-07" /> - <elevation s="1371.7926193188923" a="165.96809232691896" b="-0.0014868135855824033" c="-1.2193243372396949e-05" d="1.8581754607083194e-06" /> - <elevation s="1381.8057041314389" a="165.95384769820751" b="-0.0011720851203430595" c="2.4041074139895904e-06" d="1.106582674075357e-09" /> - <elevation s="1391.8187889439855" a="165.94235366172106" b="-0.0011236072133373469" c="7.8523420972100664e-05" d="-5.2460406258246913e-06" /> - <elevation s="1401.8318737565321" a="165.93370913160354" b="-0.0011290173552072631" c="-2.1049719249936835e-05" d="1.1065826740293037e-09" /> - <elevation s="1411.8449585690789" a="165.92029481184161" b="-0.0015502297593308952" c="-4.7110736323873796e-05" d="2.5953700902583178e-06" /> - <elevation s="1421.8580433816255" a="165.90265439078726" b="-0.0017130274000931372" c="4.4568054122977227e-06" d="4.2937870958439249e-08" /> - <elevation s="1431.8711281941721" a="165.88599165641926" b="-0.0016108595655388554" c="-4.1504793064117308e-05" d="4.6782426248114482e-06" /> - <elevation s="1441.8842130067187" a="165.87039726574994" b="-0.0010348935656659224" c="2.7463596042860997e-05" d="-1.7447492853161387e-06" /> - <elevation s="1451.8972978192655" a="165.86103673296535" b="-0.001009698397599474" c="-1.2753013356512719e-05" d="9.3506757907661717e-07" /> - <elevation s="1461.9103826318121" a="165.85058663927938" b="-0.00098383754126038503" c="3.5649220320766382e-05" d="-2.2853181238492523e-06" /> - <elevation s="1471.9234674443587" a="165.84201534718494" b="-0.00095731099664862047" c="-0.0001138372012550893" d="5.9919703833524515e-06" /> - <elevation s="1481.9365522569055" a="165.82703170291541" b="-0.001434735677370648" c="4.8828180076242536e-07" d="5.68545353264847e-07" /> - <elevation s="1491.9496370694521" a="165.81328530900709" b="-0.0012539470066360698" c="-2.2826083296996522e-06" d="1.416030792935018e-06" /> - <elevation s="1501.9627218819987" a="165.80192216932394" b="-0.00087373723317888839" c="0.00017656336172263993" d="-1.1602490929338297e-05" /> - <elevation s="1511.9758066945453" a="165.79922784120046" b="-0.00082771162514729132" c="6.334627014837715e-07" d="1.1065826602413268e-09" /> - <elevation s="1521.9888915070921" a="165.7910045175831" b="-0.00081469294950414696" c="-0.00017129680610049894" d="1.1506333886795263e-05" /> - <elevation s="1531.0085948952255" a="165.77816369828199" b="-0.0010964906354616968" c="0.0001331418023202328" d="1.1511093506047417e-05" /> - <elevation s="1532.0019763196387" a="165.77721713411097" b="-0.00079789177797359126" c="0.00010430369648127517" d="-5.6569185717905186e-06" /> - <elevation s="1542.0150611321853" a="165.77400630590321" b="-0.00041060792000113897" c="3.2808014667312471e-05" d="-4.1618794093292011e-06" /> - <elevation s="1552.0281459447322" a="165.76900600877462" b="-0.0010054224584196308" c="-0.00019308633419235562" d="1.1773020426222819e-05" /> - <elevation s="1562.0412307572788" a="165.75139872723108" b="-0.0013310470983948545" c="6.5137390491549008e-06" d="5.866201927078817e-09" /> - <elevation s="1572.0543155698253" a="165.73872980864607" b="-0.0011988373862225061" c="0.00025165766756299096" d="-1.5154341460992374e-05" /> - <elevation s="1582.0674003823719" a="165.73674350908428" b="-0.00071730597331535453" c="-5.2440122978345382e-05" d="1.9387034339880667e-06" /> - <elevation s="1592.0804851949188" a="165.72624964254464" b="-0.001184346690993271" c="-3.2910243512598766e-05" d="1.9387034339881353e-06" /> - <elevation s="1602.0935700074654" a="165.71303735987453" b="-0.0012602787297324822" c="4.7741220916039289e-07" d="2.0227248252968777e-06" /> - <elevation s="1612.106654820012" a="165.70249662361775" b="-0.00064231148680512302" c="0.00017914884994115797" d="-1.2941978925440043e-05" /> - <elevation s="1622.1197396325588" a="165.70103405403361" b="-0.00094740715694720994" c="-5.1781532323585776e-05" d="1.4433059342334138e-06" /> - <elevation s="1632.1328244451054" a="165.68780485165527" b="-0.0015502672618454808" c="-1.0792143118171566e-05" d="5.8662019270097532e-09" /> - <elevation s="1642.145909257652" a="165.67120574291687" b="-0.0017646280814679139" c="-0.00021348407342293096" d="1.139284796947027e-05" /> - <elevation s="1652.1589940701986" a="165.64356968889635" b="-0.0026130917086593778" c="2.5096823801446559e-05" d="-1.0294843110777242e-06" /> - <elevation s="1662.1720788827454" a="165.61888730363233" b="-0.0024201525168188534" c="-1.6061028483796896e-05" d="2.0631706199261236e-06" /> - <elevation s="1672.185163695292" a="165.59511508259499" b="-0.0021212213798415002" c="1.2643101204091837e-05" d="-7.1243474751438881e-07" /> - <elevation s="1682.1982485078386" a="165.57442749891871" b="-0.0020823186052356473" c="-6.4599887235178893e-06" d="4.9467556448910899e-07" /> - <elevation s="1692.2113333203854" a="165.55342599551207" b="-0.0020628961475366494" c="-9.3597916711090853e-07" d="5.8662019274832265e-09" /> - <elevation s="1702.224418132932" a="165.53268208766761" b="-0.0020798757560222597" c="4.8930721280602737e-05" d="-1.3111104848552597e-06" /> - <elevation s="1712.2375029454786" a="165.51544573690228" b="-0.0014943439887654679" c="8.1702248179235963e-05" d="-5.8833587663794225e-06" /> - <elevation s="1722.2505877580252" a="165.50276787998939" b="-0.0016277905185971028" c="-8.7655408803050141e-05" d="5.7081259453802636e-06" /> - <elevation s="1731.0090427578496" a="165.48562195114329" b="-0.001849622257633039" c="7.5973156685688823e-05" d="5.6692035028933285e-06" /> - <elevation s="1732.263672570572" a="165.48343214510993" b="-0.0016322142718345305" c="0.00016816213517213937" d="-9.6609722458205313e-06" /> - <elevation s="1742.2767573831186" a="165.47424994938973" b="-0.0011704521849892325" c="-1.7393739156282918e-05" d="-8.5671745052970653e-07" /> - <elevation s="1752.2898421956652" a="165.45992609877339" b="-0.0017764704301829739" c="-0.00011090877742181689" d="7.9956652606213717e-06" /> - <elevation s="1762.302927008212" a="165.43904532142815" b="-0.0015925674278211028" c="0.0001039368969316731" d="-3.4429508857594696e-06" /> - <elevation s="1772.3160118207586" a="165.43006323240056" b="-0.00054669955573308411" c="6.8909880241872624e-05" d="-3.453889814135517e-06" /> - <elevation s="1782.3290966333052" a="165.4280306510492" b="-0.00020557893349707704" c="9.2573735907487966e-05" d="-9.3371853512687069e-06" /> - <elevation s="1792.3421814458518" a="165.42587990146512" b="-0.001160172515891286" c="-0.00012149184255650943" d="5.8720297951352344e-06" /> - <elevation s="1802.3552662583986" a="165.40797710694198" b="-0.0018269667438127008" c="-2.3750369672225714e-05" d="1.9165723963314832e-06" /> - <elevation s="1812.3683510709452" a="165.38922638321225" b="-0.0017261182927732204" c="2.3014371386809408e-05" d="-9.0333071211424719e-07" /> - <elevation s="1822.3814358834918" a="165.37334319687605" b="-0.0015369374599665344" c="9.0881653028821732e-06" d="-4.8197313391631575e-07" /> - <elevation s="1832.3945206960384" a="165.35838104059388" b="-0.0014999068994508281" c="6.5612604035479175e-06" d="-7.7769846793861408e-07" /> - <elevation s="1842.4076055085852" a="165.3432394345439" b="-0.001602430487811483" c="-4.2694482177014206e-05" d="3.2976282414217147e-06" /> - <elevation s="1852.4206903211318" a="165.32622412349065" b="-0.0014655583328903917" c="6.2971311840808373e-06" d="1.6363847491565657e-06" /> - <elevation s="1862.4337751336784" a="165.31382354243209" b="-0.00084724994313005843" c="2.3307741381561149e-05" d="-1.6676472674332457e-06" /> - <elevation s="1872.4468599462252" a="165.30600263247899" b="-0.00088208944855365881" c="-7.8299642439034388e-05" d="4.1742949917414454e-06" /> - <elevation s="1882.4599447587718" a="165.29351043004777" b="-0.0011945635359784264" c="-4.3893492029719034e-06" d="9.0110656404142799e-07" /> - <elevation s="1892.4730295713184" a="165.28201372813766" b="-0.0010114255069783474" c="-1.9496153891800197e-06" d="-1.843612994550736e-07" /> - <elevation s="1902.486114383865" a="165.27150568072821" b="-0.0011059220599797051" c="-2.3380385614622058e-05" d="9.9315109489287958e-07" /> - <elevation s="1912.4991991964118" a="165.2590848829789" b="-0.0012754160778568136" c="-4.5548199502297379e-06" d="4.0093213026271626e-08" /> - <elevation s="1922.5122840089584" a="165.24589760966856" b="-0.0013545722135600269" c="6.4257361577163547e-05" d="-2.4371399858329062e-06" /> - <elevation s="1932.525368821505" a="165.23633000691416" b="-0.00080080000970170792" c="5.8706752353915228e-05" d="-4.3860568684051325e-06" /> - <elevation s="1942.5384536340518" a="165.22979428049661" b="-0.00094439138620285869" c="-6.6379374631762186e-05" d="3.6540405834768512e-06" /> - <elevation s="1952.5515384465984" a="165.2173510924797" b="-0.0011746332041284444" c="2.9786815129054596e-05" d="-2.3620835681238454e-06" /> - <elevation s="1962.564623259145" a="165.20620450436158" b="-0.0012885981206957726" c="-2.0553858113992788e-06" d="-1.6102205711770812e-06" /> - <elevation s="1972.5777080716916" a="165.1914790355942" b="-0.00181409079008174" c="-3.4632931046305207e-05" d="-3.3056240592826216e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.027893224450209121" b="0" c="1.9427221532522526e-06" d="-5.3997865565656778e-23" /> - <superelevation s="10.013084812546658" a="0.028088005401256423" b="3.8905283375456145e-05" c="1.0054477370093478e-05" d="-5.9282612452982024e-07" /> - <superelevation s="20.026169625093317" a="0.02889049170439795" b="6.1944389701522817e-05" c="-4.0656177545353421e-06" d="2.2451208979983518e-07" /> - <superelevation s="30.039254437639975" a="0.029328514256742003" b="4.805564309263592e-05" c="6.0907828514545635e-06" d="-5.652886716470833e-07" /> - <superelevation s="40.052339250186634" a="0.029852862164414021" b="0" c="-1.4941075068145559e-05" d="9.9477003326846881e-07" /> - <superelevation s="50.065424062733292" a="0.029353522135000382" b="0" c="5.2672971302435292e-05" d="-3.5069426514417553e-06" /> - <superelevation s="60.078508875279951" a="0.031113885624207208" b="0" c="-5.2948536213462123e-05" d="3.439269426670292e-06" /> - <superelevation s="70.091593687826617" a="0.029257954262457548" b="-2.587364132948976e-05" c="1.2919915197896915e-06" d="0" /> - <superelevation s="80.104678500373268" a="0.029128416779936751" b="0" c="3.3930342668469265e-05" d="-2.2590668978757196e-06" /> - <superelevation s="90.117763312919919" a="0.030262389953139689" b="0" c="-1.306363542996558e-05" d="3.5009338423142489e-07" /> - <superelevation s="100.13084812546658" a="0.029304074924188912" b="-0.00015631152957215291" c="-3.3768544412241483e-05" d="2.7679720084652177e-06" /> - <superelevation s="110.14393293801325" a="0.027132068747569963" b="0" c="1.7421811135678035e-06" d="0" /> - <superelevation s="120.1570177505599" a="0.027306743079475497" b="3.4889214497946237e-05" c="3.7243188433055525e-05" d="-2.5956283054597875e-06" /> - <superelevation s="130.17010256310655" a="0.028784332729544188" b="0" c="-6.4312162514231432e-05" d="3.9797886661375325e-06" /> - <superelevation s="140.18318737565323" a="0.026331706768587489" b="-9.086314413845787e-05" c="4.537220339160781e-06" d="0" /> - <superelevation s="150.19627218819988" a="0.025876796584290974" b="0" c="1.8673599924214611e-05" d="-9.7369268756474835e-07" /> - <superelevation s="160.20935700074654" a="0.02677152671807433" b="8.1087938021785712e-05" c="5.6209924635919095e-06" d="-6.4383030643904377e-07" /> - <superelevation s="170.22244181329319" a="0.027500677385664307" b="0" c="-2.1737631687199309e-05" d="1.447281704832292e-06" /> - <superelevation s="180.23552662583984" a="0.026774192203268651" b="0" c="1.3212017525805382e-05" d="-8.7965016263854497e-07" /> - <superelevation s="190.24861143838652" a="0.027215746053300141" b="0" c="-2.6169298642780595e-06" d="1.7423400901714885e-07" /> - <superelevation s="200.26169625093317" a="0.027128286628229182" b="0" c="1.0708573304195619e-05" d="-6.0415654216288135e-07" /> - <superelevation s="210.27478106347982" a="0.027595416956356408" b="3.273011596039231e-05" c="-9.023697496086317e-07" d="-4.8736063740122921e-08" /> - <superelevation s="220.2878658760265" a="0.027783745482300972" b="0" c="-1.71007383312822e-05" d="1.1385594384030145e-06" /> - <superelevation s="230.30095068857315" a="0.027212228162269377" b="0" c="7.9212663792491615e-06" d="-3.9787650554775592e-07" /> - <superelevation s="240.3140355011198" a="0.027606988730199344" b="3.8957099758480075e-05" c="3.7505911415217567e-06" d="-3.7923049922169901e-07" /> - <superelevation s="250.32712031366646" a="0.02799238965013438" b="0" c="-1.2849391129455037e-05" d="6.4244922832642621e-07" /> - <superelevation s="260.34020512621311" a="0.027349060127668835" b="-6.408460819064042e-05" c="5.4768847518371196e-06" d="-5.4533430621450509e-07" /> - <superelevation s="270.35328993875976" a="0.026709020416150971" b="-0.0001184322929317913" c="1.9552672381499033e-06" d="-7.3896705595416384e-07" /> - <superelevation s="280.36637475130647" a="0.024977314940328031" b="-0.00030154643062957321" c="-6.5260634273753581e-06" d="-6.3090936136412987e-07" /> - <superelevation s="290.37945956385312" a="0.020670200446521705" b="-0.00062200693612155639" c="-3.084505260177416e-05" d="1.1669022588344428e-06" /> - <superelevation s="300.39254437639977" a="0.012520898529573169" b="-0.00088872779276612636" c="-1.3292639496290148e-05" d="5.8085690621047538e-07" /> - <superelevation s="310.40562918894642" a="0.0028723869180524888" b="-0.00098021505164727803" c="-8.2045168920097272e-06" d="6.5356645328695151e-07" /> - <superelevation s="320.41871400149307" a="-0.007109054363784814" b="-0.00094793671926495567" c="2.2928182159207202e-06" d="2.5877115747766231e-07" /> - <superelevation s="330.43179881403972" a="-0.016111154615801964" b="-0.00082418571427041089" c="-5.2226328547578621e-06" d="1.2681053243948861e-06" /> - <superelevation s="340.44488362658637" a="-0.023614337280342745" b="-0.00054734722181760346" c="1.5184424837716178e-05" d="4.9817161541381297e-07" /> - <superelevation s="350.45796843913303" a="-0.027072422923744861" b="-9.3418504922297203e-05" c="4.6648214147373843e-06" d="0" /> - <superelevation s="360.47105325167968" a="-0.027540126630168995" b="0" c="8.3028053690675473e-05" d="-5.5279703338201847e-06" /> - <superelevation s="370.48413806422639" a="-0.024765277391880194" b="0" c="-1.5508617692592996e-06" d="0" /> - <superelevation s="380.49722287677304" a="-0.024920769689043495" b="-3.1057820856259048e-05" c="-1.8704244177124771e-05" d="1.3485758102573881e-06" /> - <superelevation s="390.51030768931969" a="-0.025753200235490294" b="0" c="5.7565797953387606e-05" d="-3.4760670645236942e-06" /> - <superelevation s="400.52339250186634" a="-0.023471275863129238" b="0.00010727150846843474" c="-5.3565664566237728e-06" d="0" /> - <superelevation s="410.53647731441299" a="-0.022934216506997111" b="0" c="-3.9729176257381241e-05" d="2.6451506204894043e-06" /> - <superelevation s="420.54956212695964" a="-0.024261990308444361" b="0" c="6.8187838642866094e-06" d="-4.5399155151750824e-07" /> - <superelevation s="430.56264693950629" a="-0.024034102307090469" b="0" c="-5.787359560665023e-06" d="2.2040851534068831e-07" /> - <superelevation s="440.575731752053" a="-0.024393078935157925" b="-4.9602936184703067e-05" c="-9.0740753857010333e-06" d="7.6905911457121456e-07" /> - <superelevation s="450.58881656459965" a="-0.025027459121028012" b="0" c="3.7002278093973558e-05" d="-2.4577024464417107e-06" /> - <superelevation s="460.60190137714631" a="-0.023784904267289509" b="1.772386777038706e-06" c="-8.8503533637130185e-08" d="0" /> - <superelevation s="470.61498618969296" a="-0.023776030737729947" b="0" c="-4.346646249362366e-05" d="2.893977450995519e-06" /> - <superelevation s="480.62807100223961" a="-0.025228706971607319" b="0" c="9.7490918255390677e-06" d="-4.9082175581983203e-07" /> - <superelevation s="490.64115581478626" a="-0.024743995790270017" b="4.7604849098587306e-05" c="4.5137003078913447e-06" d="-4.5878850584889761e-07" /> - <superelevation s="500.65424062733291" a="-0.02427536418858204" b="0" c="-3.6554689118759788e-07" d="0" /> - <superelevation s="510.66732543987956" a="-0.024312014602537901" b="-7.3205040488497451e-06" c="-5.8660812706143749e-07" d="-7.3013840995260017e-08" /> - <superelevation s="520.68041025242621" a="-0.02451743068464966" b="-4.1029530051391691e-05" c="-5.6002505458748047e-06" d="3.1549166482273361e-07" /> - <superelevation s="530.69349506497292" a="-0.025173022696065094" b="-5.8285746973446742e-05" c="1.654930449828541e-06" d="-9.3586683644778464e-08" /> - <superelevation s="540.70657987751952" a="-0.025684670940265174" b="-5.3293356083201871e-05" c="-5.9801284396074006e-06" d="5.7533479401843941e-07" /> - <superelevation s="550.71966469006622" a="-0.026240284484877793" b="0" c="8.7398275703169932e-06" d="-5.5685807208349783e-07" /> - <superelevation s="560.73274950261293" a="-0.025923059899977362" b="7.5303787600003464e-06" c="-1.1280807414960275e-06" d="7.5107106525423907e-08" /> - <superelevation s="570.74583431515953" a="-0.02588535873938012" b="7.5303787600003464e-06" c="2.1099079846065129e-06" d="-9.5860055560940347e-09" /> - <superelevation s="580.75891912770624" a="-0.025608036787613923" b="4.6900421497368815e-05" c="1.0437724370876487e-05" d="-8.5086539453733961e-07" /> - <superelevation s="590.77200394025283" a="-0.024946122942985444" b="0" c="-1.0278104404408195e-05" d="6.6736937481266546e-07" /> - <superelevation s="600.78508875279954" a="-0.025306632359439543" b="-5.0959628075947208e-06" c="4.1632270403993387e-07" d="-1.6164601579335114e-08" /> - <superelevation s="610.79817356534613" a="-0.025332145513336558" b="-1.6206931411435598e-06" c="8.0928763287452658e-08" d="0" /> - <superelevation s="620.81125837789284" a="-0.025340259582275249" b="0" c="1.9247195652977377e-06" d="-6.7693054826520582e-08" /> - <superelevation s="630.82434319043944" a="-0.025215242732270091" b="1.8183664221791178e-05" c="3.5232511337040253e-06" d="-2.950303749650843e-07" /> - <superelevation s="640.83742800298614" a="-0.024976110438163918" b="0" c="-3.1237331451592936e-08" d="0" /> - <superelevation s="650.85051281553285" a="-0.024979242351349823" b="-6.2556409828486574e-07" c="-1.7515405653949929e-05" d="1.1682475689819493e-06" /> - <superelevation s="660.86359762807945" a="-0.025568793995678164" b="0" c="1.3239072878715891e-05" d="-8.3704600944131107e-07" /> - <superelevation s="670.87668244062615" a="-0.025081755913108149" b="1.3356530970386561e-05" c="-2.0008615557193302e-06" d="1.3321645914167814e-07" /> - <superelevation s="680.88976725317275" a="-0.025014885874404206" b="1.3356530970386561e-05" c="3.6875000653747422e-06" d="-2.8991757610500862e-07" /> - <superelevation s="690.90285206571946" a="-0.0248024872751905" b="0" c="-8.5668041120147489e-06" d="4.2731514844687914e-07" /> - <superelevation s="700.91593687826605" a="-0.025232416307815527" b="-4.3030027956293096e-05" c="-4.3253351523133051e-06" d="4.3103766394342055e-07" /> - <superelevation s="710.92902169081276" a="-0.025664213914015733" b="0" c="3.4418179905447333e-06" d="-2.2915468808919786e-07" /> - <superelevation s="720.94210650335935" a="-0.025549186214282191" b="0" c="-5.6681517386741961e-06" d="3.7738298401785835e-07" /> - <superelevation s="730.95519131590606" a="-0.02573861937374371" b="0" c="7.5028742469607712e-07" d="0" /> - <superelevation s="740.96827612845277" a="-0.025663394155409486" b="1.5025383234538143e-05" c="2.7780953822573546e-06" d="-1.6169067111534472e-07" /> - <superelevation s="750.98136094099937" a="-0.025396732897342143" b="2.2025766682076502e-05" c="-1.1341376909972602e-06" d="6.7330725677923088e-08" /> - <superelevation s="760.99444575354607" a="-0.025222302415711495" b="1.9565445786328516e-05" c="2.2932567549972764e-06" d="-2.076301111504349e-07" /> - <superelevation s="771.00753056609267" a="-0.025004911961234562" b="3.038446499160064e-06" c="-2.089226935615529e-07" d="5.7124150467980724e-09" /> - <superelevation s="781.02061537863938" a="-0.024989699849987324" b="5.7273740031716341e-07" c="-2.8599448173994246e-08" d="8.437166494634035e-25" /> - <superelevation s="791.03370019118597" a="-0.024986832415904978" b="0" c="-3.7271091500364887e-06" d="2.4814924470071432e-07" /> - <superelevation s="801.04678500373268" a="-0.02511139472377899" b="0" c="1.3325907216914628e-05" d="-8.8723288685998908e-07" /> - <superelevation s="811.05986981627939" a="-0.024666034609375689" b="0" c="-9.7098519264497274e-06" d="6.19954558795563e-07" /> - <superelevation s="821.07295462882598" a="-0.025017171155056236" b="-7.977736292022115e-06" c="3.9836556073238098e-07" d="0" /> - <superelevation s="831.08603944137269" a="-0.025057112030108311" b="0" c="4.4589272064631064e-06" d="-2.9687336053693672e-07" /> - <superelevation s="841.09912425391929" a="-0.024908091907240748" b="0" c="-3.998035078403563e-06" d="6.7471750188558484e-08" /> - <superelevation s="851.11220906646599" a="-0.025241205416924508" b="-5.977079762242791e-05" c="-1.3909772178217421e-05" d="1.1248219729327502e-06" /> - <superelevation s="861.12529387901259" a="-0.026105072039054607" b="0" c="1.9589764901319585e-05" d="-1.3042777038282877e-06" /> - <superelevation s="871.1383786915593" a="-0.02545036990166381" b="0" c="-8.5924382776009467e-07" d="4.0225565129173162e-08" /> - <superelevation s="881.151463504106" a="-0.025496135617414865" b="-5.1080918051919318e-06" c="-4.1722123558391768e-07" d="3.6306633287499507e-08" /> - <superelevation s="891.1645483166526" a="-0.025552665414615133" b="-2.542922476060075e-06" c="3.8093991866624598e-07" d="-2.5362807819154858e-08" /> - <superelevation s="901.17763312919931" a="-0.025565396663827393" b="-2.542922476060075e-06" c="-8.6298251648376209e-06" d="4.95331338153625e-07" /> - <superelevation s="911.1907179417459" a="-0.025958823270379308" b="-2.637673013293456e-05" c="1.2350665232345469e-06" d="5.4626233014844961e-09" /> - <superelevation s="921.20380275429261" a="-0.026093621535624847" b="0" c="6.5295674947162199e-06" d="-4.347356561908901e-07" /> - <superelevation s="931.2168875668392" a="-0.02587539932537565" b="0" c="-4.7089600906963619e-06" d="3.1352043709819623e-07" /> - <superelevation s="941.22997237938591" a="-0.026032775702876702" b="0" c="7.2273193795825777e-06" d="-4.8119166170293515e-07" /> - <superelevation s="951.24305719193251" a="-0.02579123419029327" b="0" c="-7.6492492967316557e-06" d="5.0454684211164771e-07" /> - <superelevation s="961.25614200447922" a="-0.026051632204439502" b="-1.424738082567796e-06" c="7.1143813781636089e-08" d="0" /> - <superelevation s="971.26922681702592" a="-0.02605876521606771" b="0" c="4.0712059071618718e-06" d="-1.6050821231426378e-07" /> - <superelevation s="981.28231162957252" a="-0.025811717612052688" b="3.32521007460559e-05" c="-2.9953704541453736e-07" d="1.154867144540192e-07" /> - <superelevation s="991.29539644211923" a="-0.025392853006136501" b="6.1990262040651365e-05" c="1.22305839571663e-05" d="-1.0204012710126342e-06" /> - <superelevation s="1001.3084812546658" a="-0.024570290109322625" b="0" c="-1.2144695857714743e-06" d="0" /> - <superelevation s="1011.3215660672125" a="-0.024692055097969397" b="-2.4321173929176481e-05" c="-2.6493819161663528e-05" d="1.8448053566013964e-06" /> - <superelevation s="1021.3346508797591" a="-0.025739848344625779" b="0" c="3.5250949381465532e-06" d="-1.1387406584595918e-07" /> - <superelevation s="1031.3477356923058" a="-0.025500737400383951" b="3.6342469683834338e-05" c="3.9627970521828993e-06" d="-2.7146114543647406e-07" /> - <superelevation s="1041.3608205048524" a="-0.025012047882142504" b="3.4050511485144875e-05" c="-1.0199881536861569e-06" d="-4.5294906390457082e-08" /> - <superelevation s="1051.3739053173992" a="-0.024818836081561255" b="0" c="-9.4523253870241038e-07" d="2.548729832209136e-08" /> - <superelevation s="1061.3869901299458" a="-0.024888019382830948" b="-1.1263174776112935e-05" c="6.9002605896066775e-07" d="-1.1233757221050364e-07" /> - <superelevation s="1071.4000749424924" a="-0.025044394330144763" b="-3.1234120201972934e-05" c="-9.642193526436345e-06" d="5.4442553036828717e-07" /> - <superelevation s="1081.413159755039" a="-0.02577732311441315" b="-6.0574962212175903e-05" c="-2.2678869797379544e-06" d="3.5238405933273534e-07" /> - <superelevation s="1091.4262445675859" a="-0.026257478798439416" b="0" c="1.639694355420683e-05" d="-9.1511996602550865e-07" /> - <superelevation s="1101.4393293801324" a="-0.025532207537439049" b="5.3113062709748254e-05" c="-4.8384673018018829e-07" d="-1.4436683695500942e-07" /> - <superelevation s="1111.452414192679" a="-0.025193827595305786" b="0" c="-1.1307689718411082e-05" d="6.6555613339579408e-07" /> - <superelevation s="1121.4654990052259" a="-0.025659385526566183" b="-2.6260009861171615e-05" c="1.3112847016070409e-06" d="0" /> - <superelevation s="1131.4785838177725" a="-0.025790857379525294" b="0" c="1.8014773917282392e-05" d="-1.1667256901281815e-06" /> - <superelevation s="1141.4916686303191" a="-0.02515597410621118" b="9.8326286963988183e-06" c="-4.9098898493694136e-07" d="0" /> - <superelevation s="1151.5047534428656" a="-0.025106746633677519" b="0" c="-5.6165090326250238e-05" d="3.7394463596189052e-06" /> - <superelevation s="1161.5178382554125" a="-0.026983818914461621" b="0" c="4.7861556205958525e-06" d="-1.9568683681681164e-07" /> - <superelevation s="1171.5309230679591" a="-0.02670040601401933" b="3.6988581218457639e-05" c="1.987417136667183e-06" d="-1.1186555637269842e-07" /> - <superelevation s="1181.5440078805057" a="-0.026243079312789252" b="4.3141385152942904e-05" c="3.5500365112273956e-06" d="-3.7978885157552617e-07" /> - <superelevation s="1191.5570926930523" a="-0.025836449317085019" b="0" c="-2.6908622788220562e-05" d="1.4848514241821052e-06" /> - <superelevation s="1201.5701775055991" a="-0.027043670333678466" b="-9.2254714252646734e-05" c="-7.3162474180581079e-07" d="3.5542377887967393e-07" /> - <superelevation s="1211.5832623181457" a="-0.027683957873423058" b="0" c="4.0725103637759288e-07" d="-1.3499466391414456e-23" /> - <superelevation s="1221.5963471306923" a="-0.027643126123989489" b="8.1556783344940566e-06" c="5.7308275209803984e-06" d="-2.7457709465913733e-07" /> - <superelevation s="1231.6094319432391" a="-0.027262535498306727" b="4.0333365542319824e-05" c="5.461904310762683e-07" d="-3.1367993858568035e-08" /> - <superelevation s="1241.6225167557857" a="-0.026835403304088096" b="4.1836426834149369e-05" c="3.9322046147360583e-06" d="-4.0089493144415515e-07" /> - <superelevation s="1251.6356015683323" a="-0.026424712118018251" b="0" c="-6.2203513507996987e-06" d="3.2257185471921145e-07" /> - <superelevation s="1261.6486863808789" a="-0.026724536410761314" b="-2.7544841643093265e-05" c="1.5070090808882668e-06" d="-1.2658254439348643e-07" /> - <superelevation s="1271.6617711934257" a="-0.026976329789059172" b="-3.5439429030095139e-05" c="-6.6231750540263867e-06" d="5.5879089551940426e-07" /> - <superelevation s="1281.6748560059723" a="-0.027434252427934454" b="0" c="6.0700573014975138e-06" d="-1.3105595914832843e-07" /> - <superelevation s="1291.6879408185189" a="-0.026957228232668707" b="8.2140251534629059e-05" c="1.8539816600210994e-05" d="-1.5074583357252054e-06" /> - <superelevation s="1301.7010256310657" a="-0.025789297817654117" b="0" c="-3.2244695093650856e-05" d="2.1468372432870824e-06" /> - <superelevation s="1311.7141104436123" a="-0.026866935599611643" b="0" c="9.5114997690157574e-07" d="0" /> - <superelevation s="1321.7271952561589" a="-0.026771571526689866" b="1.904789077633373e-05" c="-4.3022019678773468e-07" d="1.8998140826885462e-07" /> - <superelevation s="1331.7402800687055" a="-0.026433249915353098" b="6.7575900468324162e-05" c="1.8142746050292829e-05" d="-1.0976618616913107e-06" /> - <superelevation s="1341.7533648812523" a="-0.025039557404822974" b="0.00010074472604738967" c="-1.4563421764174846e-06" d="-2.3797605344661442e-07" /> - <superelevation s="1351.7664496937989" a="-0.024415718942694488" b="0" c="-6.3315812413784743e-06" d="1.606175829112277e-07" /> - <superelevation s="1361.7795345063455" a="-0.024889286198398856" b="-7.848586350456747e-05" c="-1.4916879787993738e-05" d="1.1786431182505855e-06" /> - <superelevation s="1371.7926193188923" a="-0.025987490158408899" b="-2.2694948090504315e-05" c="3.35536909471389e-06" d="-2.2192007630089395e-07" /> - <superelevation s="1381.8057041314389" a="-0.02610111337843218" b="-2.2250121277514841e-05" c="-5.1581376895508986e-07" d="-5.7227741327877925e-08" /> - <superelevation s="1391.8187889439855" a="-0.026433074861291306" b="-4.979317595827714e-05" c="-9.9584094383012176e-06" d="8.2857015291207558e-07" /> - <superelevation s="1401.8318737565321" a="-0.02709827996634475" b="0" c="3.0332868087425697e-05" d="-1.9283035878330546e-06" /> - <superelevation s="1411.8449585690789" a="-0.025992932910309789" b="2.744520527766175e-05" c="-1.3704670334597115e-06" d="0" /> - <superelevation s="1421.8580433816255" a="-0.0258555273262383" b="0" c="-1.1383542956651393e-05" d="7.579111512426565e-07" /> - <superelevation s="1431.8711281941721" a="-0.026235972417965634" b="0" c="9.0184639552315e-06" d="-5.2565153361136186e-07" /> - <superelevation s="1441.8842130067187" a="-0.025859482030428264" b="2.2496875740863045e-05" c="-3.37012162016337e-06" d="2.2438117611471527e-07" /> - <superelevation s="1451.8972978192655" a="-0.025746850468022969" b="2.2496875740863045e-05" c="3.4316113639778009e-05" d="-2.3595450803705325e-06" /> - <superelevation s="1461.9103826318121" a="-0.024449809172280818" b="0" c="-1.3610270097802324e-05" d="7.8205918010788473e-07" /> - <superelevation s="1471.9234674443587" a="-0.025029267140829203" b="-3.7329436028734834e-05" c="4.9770135456057525e-06" d="-3.108912841903697e-07" /> - <superelevation s="1481.9365522569055" a="-0.025216158545309335" b="-3.1170540730976259e-05" c="-6.8598249357417233e-06" d="5.6035447559148723e-07" /> - <superelevation s="1491.9496370694521" a="-0.025653493676813612" b="0" c="6.3541255843251661e-06" d="-2.9970672925294608e-07" /> - <superelevation s="1501.9627218819987" a="-0.025317301930873424" b="3.7101327672228526e-05" c="4.7617278315192527e-06" d="-4.4038177320442505e-07" /> - <superelevation s="1511.9758066945453" a="-0.024910496195533399" b="0" c="-3.670549806970055e-05" d="2.4438354917162679e-06" /> - <superelevation s="1521.9888915070921" a="-0.02613721678974577" b="0" c="2.768225833603594e-05" d="-1.2594387356147587e-06" /> - <superelevation s="1532.0019763196387" a="-0.024626130936684552" b="0.00017554856227823022" c="1.3095605862892422e-05" d="-1.0621183658970589e-06" /> - <superelevation s="1542.0150611321853" a="-0.022621651504120696" b="0.00011833347413631281" c="-7.7590567864272651e-06" d="1.8476971423353675e-07" /> - <superelevation s="1552.0281459447322" a="-0.022029209947775588" b="1.8525356599706523e-05" c="-2.3885289383276703e-06" d="1.4615591059298105e-07" /> - <superelevation s="1562.0412307572788" a="-0.021936461964367823" b="1.4653864536844268e-05" c="3.0787138853740838e-06" d="-2.5369801754539791e-07" /> - <superelevation s="1572.0543155698253" a="-0.021735749170897607" b="0" c="-3.7514937040189759e-05" d="2.4977275729708453e-06" /> - <superelevation s="1582.0674003823719" a="-0.022989521719369518" b="0" c="4.0022150860619455e-06" d="-2.0737208226630315e-07" /> - <superelevation s="1592.0804851949188" a="-0.022796439336169025" b="1.7774501506296265e-05" c="1.3231672029276628e-06" d="-1.4718946652612621e-07" /> - <superelevation s="1602.0935700074654" a="-0.02263356653720295" b="0" c="-1.8759825251418587e-05" d="1.24902069659307e-06" /> - <superelevation s="1612.106654820012" a="-0.02326053157486678" b="0" c="5.0065142398553617e-05" d="-3.3333145802593465e-06" /> - <superelevation s="1622.1197396325588" a="-0.021587323350969176" b="0" c="-2.1351693822997813e-05" d="1.0646491449113788e-06" /> - <superelevation s="1632.1328244451054" a="-0.022659250211091816" b="-0.00010736150789650437" c="5.0777536433348622e-06" d="-5.1019273228624716e-07" /> - <superelevation s="1642.145909257652" a="-0.023737363119310354" b="-0.00015913218043623803" c="-3.1310780770656471e-05" d="2.6137128273340818e-06" /> - <superelevation s="1652.1589940701986" a="-0.025846058249318855" b="0" c="1.3697349796691202e-06" d="0" /> - <superelevation s="1662.1720788827454" a="-0.025708726062327495" b="2.7430545044275914e-05" c="7.5963882253075295e-06" d="-3.3790086761854708e-07" /> - <superelevation s="1672.185163695292" a="-0.025011662633712513" b="7.7921388167679018e-05" c="-1.4765615468301993e-06" d="2.3030761487737407e-07" /> - <superelevation s="1682.1982485078386" a="-0.024148259125458826" b="0.00011762473084480657" c="1.0899195012961131e-05" d="-7.7534319779039292e-07" /> - <superelevation s="1692.2113333203854" a="-0.022656089821708445" b="0.00010268178814515105" c="-3.6291174985246859e-06" d="-9.9753662714951565e-08" /> - <superelevation s="1702.224418132932" a="-0.022091936218656103" b="0" c="-3.4114961065763313e-06" d="1.292958232759291e-07" /> - <superelevation s="1712.2375029454786" a="-0.022304175157985141" b="-2.9428877615111724e-05" c="-2.6908007688336663e-06" d="1.8661629118091174e-07" /> - <superelevation s="1722.2505877580252" a="-0.022681283913652438" b="-2.71838166805162e-05" c="3.7612380978791475e-06" d="-2.7112817034331209e-07" /> - <superelevation s="1732.263672570572" a="-0.022848562881886598" b="-3.3412074573572311e-05" c="-1.335912254173372e-05" d="6.922137635147402e-07" /> - <superelevation s="1742.2767573831186" a="-0.023827596825327018" b="-9.2736194795480474e-05" c="-7.7516978694172997e-06" d="8.2441782199929279e-07" /> - <superelevation s="1752.2898421956652" a="-0.024705713649246574" b="0" c="8.5979643259930146e-06" d="-5.7244858349210345e-07" /> - <superelevation s="1762.302927008212" a="-0.0244183643293444" b="0" c="-1.3083001353492901e-05" d="8.7106032412706678e-07" /> - <superelevation s="1772.3160118207586" a="-0.024855606378586217" b="0" c="5.2463754869373087e-05" d="-3.4930131157739383e-06" /> - <superelevation s="1782.3290966333052" a="-0.02310223503280702" b="0" c="-4.9501111442308546e-06" d="3.2957616538100672e-07" /> - <superelevation s="1792.3421814458518" a="-0.023267670828630765" b="0" c="1.0304308574117528e-05" d="-5.9701506535014741e-07" /> - <superelevation s="1802.3552662583986" a="-0.02283390329031507" b="2.6782295307474846e-05" c="-1.3373648485386851e-06" d="0" /> - <superelevation s="1812.3683510709452" a="-0.022699816593120863" b="0" c="-4.0900279498487705e-06" d="0" /> - <superelevation s="1822.3814358834918" a="-0.023109890433349586" b="-8.1907593495042229e-05" c="-1.807626555333259e-05" d="1.3446970819991034e-06" /> - <superelevation s="1832.3945206960384" a="-0.024392415730298034" b="-3.9440431813464836e-05" c="5.9083338279596094e-06" d="-3.9337419909836659e-07" /> - <superelevation s="1842.4076055085852" a="-0.024589875924693881" b="-3.9440431813464836e-05" c="-3.3329077698494583e-05" d="1.8085761179649387e-06" /> - <superelevation s="1852.4206903211318" a="-0.026510747008988474" b="-0.00016290053814162187" c="-7.5994431789499476e-06" d="1.0475510589474401e-06" /> - <superelevation s="1862.4337751336784" a="-0.027852149733536963" b="0" c="2.5318860332447801e-05" d="-1.4040177371110673e-06" /> - <superelevation s="1872.4468599462252" a="-0.026723169859045617" b="8.473147090878221e-05" c="6.7363542120089022e-08" d="-2.8618558849197985e-07" /> - <superelevation s="1882.4599447587718" a="-0.02615530292453401" b="0" c="-4.9409120972111464e-06" d="2.1940168519138004e-07" /> - <superelevation s="1892.4730295713184" a="-0.026430423936784186" b="-3.2954675715809312e-05" c="-4.9325713495233191e-06" d="4.3797038555900984e-07" /> - <superelevation s="1902.486114383865" a="-0.026815258850358747" b="0" c="9.6322651457123557e-06" d="-5.0254639680479429e-07" /> - <superelevation s="1912.4991991964118" a="-0.026354031655762538" b="4.1738654990176774e-05" c="2.8729684875461372e-06" d="-3.3004641332761395e-07" /> - <superelevation s="1922.5122840089584" a="-0.025979393465602213" b="0" c="-6.5350406317195373e-06" d="4.3510005518185777e-07" /> - <superelevation s="1932.525368821505" a="-0.026197798591497019" b="0" c="1.8176998029226855e-05" d="-1.2102163232420442e-06" /> - <superelevation s="1942.5384536340518" a="-0.025590312002401621" b="0" c="-9.5452784243640484e-07" d="0" /> - <superelevation s="1952.5515384465984" a="-0.025686014746429963" b="-1.9115536484505667e-05" c="-1.1298047800613585e-05" d="8.1577095520035503e-07" /> - <superelevation s="1962.564623259145" a="-0.026191206195527283" b="0" c="5.3169902217486798e-06" d="-2.8590054826428652e-07" /> - <superelevation s="1972.5777080716916" a="-0.025945139130530877" b="2.0484179442467232e-05" c="-4.0850265369898316e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-5.2384787362378296" b="-0.00027254604914326718" c="-0.0005788465429880349" d="3.0144810471085306e-05" /> - <laneOffset s="9.6578516207850988" a="-5.2679470635011674" b="-0.0030181840841061818" c="1.7796603456967885e-06" d="-6.5707840857164491e-08" /> - <laneOffset s="16.043916579535537" a="-5.2871659179688013" b="-0.0030034930880921927" c="1.4262581380345751e-05" d="1.6580207809663008e-07" /> - <laneOffset s="20.026169625093317" a="-5.2988899358914949" b="-0.0028820106349702738" c="4.6599233878508144e-06" d="-1.2992411433633729e-06" /> - <laneOffset s="30.039254437639975" a="-5.3285848881067119" b="-0.003179483248721133" c="-4.5501708833221872e-05" d="4.6595922179004463e-07" /> - <laneOffset s="33.233426017371293" a="-5.339189759608379" b="-0.0034559016077903371" c="0.00020593634782756264" d="-2.2792927486836273e-05" /> - <laneOffset s="40.052339250186634" a="-5.3604065042594762" b="-0.0038268251820447489" c="-0.00025810494622282448" d="-2.4235270312776348e-05" /> - <laneOffset s="43.387776481577745" a="-5.3769413967996957" b="-0.0063574733128665449" c="-0.00041723961238644897" d="3.9706393368285945e-05" /> - <laneOffset s="47.411795392328656" a="-5.4066929748541162" b="-0.0077865689878425185" c="-0.00021919321502212609" d="2.1991053891927918e-05" /> - <laneOffset s="50.065424062733292" a="-5.4284882115968927" b="-0.0084853175980149978" c="-5.877048903541818e-05" d="2.8192367082720209e-05" /> - <laneOffset s="52.958920695157659" a="-5.4528495267908754" b="-0.0081173152323245849" c="-3.1505161401481993e-05" d="4.0996696574491344e-06" /> - <laneOffset s="60.078508875279951" a="-5.5107589239380532" b="-0.0079425040245081433" c="5.1549234275816734e-05" d="2.1819777106019197e-06" /> - <laneOffset s="70.091593687826617" a="-5.5829289137109219" b="-0.0062538628347727195" c="0.00013299659360643115" d="2.8137338556941656e-07" /> - <laneOffset s="71.841599823788883" a="-5.5934643991197479" b="-0.005785787988916183" c="0.00017234502076236209" d="-1.6269398419370805e-05" /> - <laneOffset s="76.985666164198705" a="-5.6208809616419897" b="-0.0053042136301009899" c="0.00022728480870460132" d="-2.132736634699432e-05" /> - <laneOffset s="80.104678500373268" a="-5.6358609141751206" b="-0.0045088384699661904" c="1.9620140464298005e-05" d="-2.0396823521480483e-05" /> - <laneOffset s="87.424714496102979" a="-5.6758146942800636" b="-0.0075003627171378413" c="-0.0013476866767197508" d="0.00016814338091705489" /> - <laneOffset s="90.117763312919919" a="-5.7025035805592896" b="-0.011100749109463149" c="2.4808090823564663e-06" d="0.00016361393307614958" /> - <laneOffset s="94.214388293455315" a="-5.7366889415495663" b="-0.0028429511095945789" c="0.0002257330718647203" d="-9.3306786109311734e-06" /> - <laneOffset s="100.13084812546658" a="-5.7475398837038103" b="-0.0011517169374654608" c="8.6251133749312947e-05" d="-9.3064983615769074e-06" /> - <laneOffset s="108.22672640182475" a="-5.75614917311347" b="-0.0015850938858472227" c="-0.00022100043512691405" d="2.2787895600809579e-05" /> - <laneOffset s="110.14393293801325" a="-5.7598398653514016" b="-0.0021812177453000474" c="-7.0032690079834296e-05" d="3.0088246848416325e-05" /> - <laneOffset s="115.89639975219012" a="-5.7689772681325229" b="-0" c="5.6115649106446694e-05" d="4.7580895183157674e-07" /> - <laneOffset s="120.1570177505599" a="-5.7679218080701942" b="0.00050408657719069492" c="5.2009193160699678e-05" d="4.7609781775360172e-07" /> - <laneOffset s="130.17010256310655" a="-5.7571818384289219" b="0.0016888348704010511" c="8.4484605886543641e-05" d="-5.2223051745086385e-06" /> - <laneOffset s="133.40373952549149" a="-5.7510139318295836" b="0.0020714002982085557" c="0.00069673548694216159" d="-4.9100486530725546e-05" /> - <laneOffset s="138.70295150047656" a="-5.7277783351888658" b="0.0053192306970845336" c="0.0017559978116427025" d="-0.00041842176179748586" /> - <laneOffset s="140.18318737565323" a="-5.7174141403273406" b="0.0077674030468438222" c="-3.6516360816846332e-05" d="-0.00040007170808919736" /> - <laneOffset s="142.54354141861245" a="-5.7045447736740131" b="0.00090829600169389118" c="-7.7240014099949167e-05" d="2.8979897321211618e-06" /> - <laneOffset s="150.19627218819988" a="-5.7008185237994251" b="0.00023525805449546071" c="-1.2911303145987525e-05" d="3.3691429102069107e-06" /> - <laneOffset s="159.73331690626659" a="-5.696826664789759" b="0.00090831012713351754" c="7.1844779514642829e-05" d="1.1649233716500334e-05" /> - <laneOffset s="161.87206823804246" a="-5.6944414120220816" b="0.0013754861385467806" c="2.7908819125711441e-05" d="5.3905501477777713e-06" /> - <laneOffset s="170.22244181329319" a="-5.6778708349390863" b="0.0029692130605101742" c="0.00016369012013732698" d="4.7005872434862121e-06" /> - <laneOffset s="178.32524331982219" a="-5.6405640741512642" b="0.0065477668625038314" c="0.0016053908673785389" d="-0.00029244801243483013" /> - <laneOffset s="180.23552662583984" a="-5.6242362673890414" b="0.0094796812696208693" c="-6.7445857498257692e-05" d="-0.00028655282566854333" /> - <laneOffset s="181.49454006068373" a="-5.6129799987326088" b="0.0079471933883175361" c="0.00034375063068291473" d="-8.6316207008225115e-05" /> - <laneOffset s="188.24742533094403" a="-5.5702183188053525" b="0.00078137548215711301" c="-0.00012292107222701084" d="9.6157258574198194e-06" /> - <laneOffset s="190.24861143838652" a="-5.5690698459465464" b="0.0004049252123329456" c="-6.9838129873511865e-05" d="7.8351382337199609e-06" /> - <laneOffset s="198.20405528430439" a="-5.5663235421210411" b="0.00078137480226030229" c="0.00031197267501716211" d="-2.9337778152716895e-05" /> - <laneOffset s="200.26169625093317" a="-5.5636504818517514" b="0.0016925918602637689" c="0.00012830514761211318" d="-2.8488731639500804e-05" /> - <laneOffset s="204.88881974255733" a="-5.5558939230669129" b="0.0010501049219936083" c="-4.4245093453341224e-05" d="-6.2020940942225785e-06" /> - <laneOffset s="210.39075993320031" a="-5.5524886329259733" b="-0" c="-0.00014057105671245462" d="2.6003759377100178e-07" /> - <laneOffset s="215.92745387840785" a="-5.5567537003725684" b="-0.0015326834955567833" c="-0.0008687998787612367" d="0.00011292872314299888" /> - <laneOffset s="220.28039677690472" a="-5.5705731347896181" b="-0.0026769977795780306" c="0.0002086871426997167" d="-1.1881745548407584e-05" /> - <laneOffset s="228.14320309023074" a="-5.5844958447978241" b="-0.0015989858542510671" c="6.6338359798013012e-05" d="-3.5550777224076583e-06" /> - <laneOffset s="230.30095068857315" a="-5.5876729046242337" b="-0.001362358970438339" c="4.8201142649407587e-05" d="-1.3680308428738991e-06" /> - <laneOffset s="240.3140355011198" a="-5.5978549919652636" b="-0.00080855869277907425" c="3.4988066643861766e-06" d="-1.3690717518658041e-06" /> - <laneOffset s="250.32712031366646" a="-5.6069748148430785" b="-0.0011502880686320562" c="-3.4094446526662097e-05" d="-2.9835424977916228e-06" /> - <laneOffset s="252.70325948477546" a="-5.6099405844214223" b="-0.0013628499456778953" c="7.3673185900152068e-05" d="-5.4002655649611992e-06" /> - <laneOffset s="260.34020512621311" a="-5.6184570861604861" b="-0.0011824517867925894" c="-4.2415562345143514e-05" d="-5.222287756716163e-06" /> - <laneOffset s="269.21876686723522" a="-5.6359541384474596" b="-0.0031706311141734152" c="-0.0011090435334655893" d="7.1243158668990797e-05" /> - <laneOffset s="270.35328993875976" a="-5.6408747538905839" b="-0.0054120017528541649" c="-0.00081501132482563463" d="9.544361492277462e-05" /> - <laneOffset s="277.42870435711296" a="-5.686160909451929" b="-0.0026109390198919926" c="0.001003707267354013" d="-0.00016751659371351603" /> - <laneOffset s="280.36637475130647" a="-5.6894159380786409" b="-0.0010507748198588624" c="-0.00031810545761349691" d="-0.00022991312661183142" /> - <laneOffset s="281.47825216242222" a="-5.6912935700328742" b="-0.0026108684183262982" c="-0.0037872765320507932" d="0.0005590772132343198" /> - <laneOffset s="285.62109311720673" a="-5.7273588117686112" b="-0.0052044904206425676" c="0.0013328867947701008" d="-0.0001482843527180479" /> - <laneOffset s="290.37945956385312" a="-5.7379204273629654" b="-0.0025921485550699343" c="-0.00056386351352483459" d="-0.00023564755239128719" /> - <laneOffset s="291.66293848005159" a="-5.7426744871377684" b="-0.0052041218723613628" c="-0.0017068433868521222" d="0.00014576174639380587" /> - <laneOffset s="297.91153402037116" a="-5.8062741690755315" b="-0.0094610911730949147" c="0.00018063400077437269" d="-2.1985582793099668e-05" /> - <laneOffset s="300.39254437639977" a="-5.8289711134363538" b="-0.0089707725059103918" c="0.00011553268859302409" d="1.2475974524621595e-07" /> - <laneOffset s="310.40562918894642" a="-5.907087446137008" b="-0.0066195693517756612" c="0.0001285364120659533" d="1.2439817060717399e-06" /> - <laneOffset s="320.41871400149307" a="-5.9592335834894739" b="-0.0036713055739192343" c="0.00014387959572711927" d="2.1721851211714228e-06" /> - <laneOffset s="330.75671192976841" a="-5.9794105441485446" b="-0" c="0.012846887174418772" d="-0.021404986183083334" /> - <laneOffset s="331.15683325553584" a="-5.9787249611272886" b="-0" c="-0.00042329543830117646" d="1.1275837490460663e-05" /> - <laneOffset s="340.44488362658637" a="-6.0062068788807768" b="-0.0049449509292862738" c="-0.00015390217007272975" d="1.025227086655656e-05" /> - <laneOffset s="350.45796843913303" a="-6.0608590426460278" b="-0.004943286424373328" c="0.00011675217565018452" d="1.659806603418048e-05" /> - <laneOffset s="352.39639572121121" a="-6.0698816532191282" b="-0.0043035535036314498" c="-7.8255507299153953e-05" d="2.6952943058428425e-06" /> - <laneOffset s="360.47105325167968" a="-6.1083146530085646" b="-0.005040126018068144" c="-1.9558996578783004e-06" d="1.615527766251397e-06" /> - <laneOffset s="370.48413806422639" a="-6.1573560867144597" b="-0.0045933677040371178" c="5.9120485001516782e-05" d="2.5490305878593706e-06" /> - <laneOffset s="381.2869146770721" a="-6.1968643306786495" b="-0.0024236214432633244" c="0.00024516468120260048" d="-1.9400593829405601e-05" /> - <laneOffset s="390.46071380379726" a="-6.2134437391001756" b="-0.0028236182564585714" c="-0.00011023151109356127" d="1.6985634087982652e-08" /> - <laneOffset s="400.52339250186634" a="-6.2530013628685346" b="-0.0050369070448703672" c="-7.5235909697580049e-05" d="-8.334417921541954e-06" /> - <laneOffset s="402.3025652663232" a="-6.2622479851877406" b="-0.0053837691005468521" c="-0.00090512652377763771" d="0.00018100813184137866" /> - <laneOffset s="406.74050043828976" a="-6.288146257795586" b="-0.0027225434493670831" c="0.00020462250511171185" d="-7.4687373779532523e-06" /> - <laneOffset s="410.53647731441299" a="-6.2959409982432692" b="-0.0014919198332101014" c="0.00011249017804684154" d="-6.1658773224586406e-06" /> - <laneOffset s="417.54054304680221" a="-6.3029906624463612" b="-0.00082357979270517565" c="8.1066397515795765e-05" d="-5.1238443773335179e-06" /> - <laneOffset s="420.54956212695964" a="-6.304874434005618" b="-0.00047489599004009588" c="2.2930680257165168e-05" d="-9.036293666385405e-06" /> - <laneOffset s="423.03203028867154" a="-6.3060502769086391" b="-0.0005281091186980255" c="-5.9364305444197365e-06" d="2.88264626593824e-07" /> - <laneOffset s="430.56264693950629" a="-6.3102408132546364" b="-0.00056847646134515375" c="4.8623765921070879e-07" d="5.3508110602500795e-07" /> - <laneOffset s="440.575731752053" a="-6.3153470808938916" b="-0.00039779429070101446" c="1.1633593707655679e-05" d="6.5661169439599071e-07" /> - <laneOffset s="450.05889048612789" a="-6.3175132409729535" b="-0" c="0.00020476415631601099" d="-8.8930544886883495e-06" /> - <laneOffset s="460.60190137714631" a="-6.3051745174872291" b="0.0013521369469224047" c="-7.0733261071806672e-05" d="-8.9154612281219643e-06" /> - <laneOffset s="461.79965653186139" a="-6.3036717832759104" b="0.0011443238630985167" c="-1.5292861472322408e-05" d="8.4607151365216131e-07" /> - <laneOffset s="470.61498618969296" a="-6.2941930075319368" b="0.0010719453783491445" c="-3.014150405732594e-06" d="1.761693836656663e-06" /> - <laneOffset s="478.02146914478197" a="-6.2857032480558201" b="0.0013172152483526471" c="1.7144099140348726e-05" d="2.3175650415834907e-06" /> - <laneOffset s="480.62807100223961" a="-6.2821122643338523" b="0.0014538301354033495" c="2.0959958637358413e-05" d="-2.2519680170237946e-06" /> - <laneOffset s="488.81573806662306" a="-6.2700397448524745" b="0.0013441548955676434" c="-5.7847791928706465e-06" d="-4.8271364192269396e-06" /> - <laneOffset s="490.64115581478626" a="-6.2676347377758095" b="0.0012747813911438961" c="-1.5992206202184734e-05" d="1.6975896034084123e-07" /> - <laneOffset s="500.65424062733291" a="-6.2563032258356017" b="0.0010055798082062568" c="-8.9062930679558361e-06" d="3.2414813724840725e-07" /> - <laneOffset s="510.66732543987956" a="-6.246801809277212" b="0.00092471996522259928" c="-2.7663716165207274e-07" d="3.7260362064884819e-07" /> - <laneOffset s="521.20447816224691" a="-6.236652679103849" b="0.0010430023437008479" c="-8.3638233206228662e-05" d="2.7239252521917799e-05" /> - <laneOffset s="524.17854857754469" a="-6.2335739507921728" b="0.0012683116691540181" c="0.00021627767689690302" d="-1.5943568129300664e-05" /> - <laneOffset s="530.69349506497292" a="-6.2205399407560469" b="0.0020562349930397872" c="-0.00011134095244379502" d="-1.3346979810252663e-05" /> - <laneOffset s="533.04760293144534" a="-6.2164904991098231" b="0.001310117936027626" c="-0.00021325995509816799" d="1.5253235029276278e-05" /> - <laneOffset s="540.70657987751952" a="-6.2121132519189342" b="0.0007276727761619206" c="0.00011660266671626833" d="2.1884514445434781e-05" /> - <laneOffset s="542.39840610185774" a="-6.210442431839688" b="0.0013101342345828992" c="0.0010919326544709972" d="-0.00013901717678434014" /> - <laneOffset s="547.75112438841541" a="-6.1934642595494198" b="0.0010505592783929686" c="-0.00010648444905319363" d="5.4343008430986975e-06" /> - <laneOffset s="550.71966469006622" a="-6.1911418392112774" b="0.00056201747294398372" c="-6.1226633862856693e-05" d="4.2834089214725978e-06" /> - <laneOffset s="560.73274950261293" a="-6.187352762025057" b="0.00062427025035944055" c="6.9975288174395567e-05" d="4.1185990410161759e-06" /> - <laneOffset s="563.22869423787449" a="-6.1852946496649901" b="0.0010505525596645237" c="0.00029987177754936599" d="-2.1544640082112058e-05" /> - <laneOffset s="570.74583431515953" a="-6.1696041289643482" b="0.0019066144158119325" c="-0.00018368380007123406" d="-2.1953126301790693e-05" /> - <laneOffset s="574.01720570136104" a="-6.1661012198302725" b="-0" c="-0.00025467262398767843" d="2.2691960087945533e-05" /> - <laneOffset s="581.49922790953906" a="-6.1708534667097723" b="-0" c="0.00133555302690682" d="-0.00013467258883582262" /> - <laneOffset s="586.64809683207875" a="-6.1538297484480005" b="0.0030423200667281298" c="1.97365004538067e-05" d="-1.4857236213493527e-05" /> - <laneOffset s="591.15901999468019" a="-6.1410682182340253" b="0.002313415546567066" c="-4.9099841462673762e-05" d="1.2401665565344781e-07" /> - <laneOffset s="600.78508875279954" a="-6.1232381530553157" b="0.0014026132430028286" c="-4.742846557218611e-05" d="7.8726228660293046e-09" /> - <laneOffset s="610.79817356534613" a="-6.1139410306562558" b="0.00045517071800683093" c="-4.7429222842080437e-05" d="1.6485636651450683e-08" /> - <laneOffset s="615.6086591872604" a="-6.1128471521359531" b="-0" c="-0.00038837333375493343" d="3.316462319319511e-05" /> - <laneOffset s="620.81125837789284" a="-6.1186890605769824" b="-0.0013480972013701438" c="0.00013002929489398145" d="3.2951590154102477e-05" /> - <laneOffset s="623.41601792323422" a="-6.1207359668936077" b="-0" c="0.00019989006090298934" d="-8.1662118293085693e-06" /> - <laneOffset s="630.82434319043944" a="-6.113085670374435" b="0.0016171356266189323" c="2.0679447227477822e-05" d="-8.1782872467449162e-06" /> - <laneOffset s="639.82944286001111" a="-6.1028183807053251" b="-0" c="-0.00012338565734442523" d="1.4154438415483517e-05" /> - <laneOffset s="640.83742800298614" a="-6.1029292485054443" b="-0.00020559764481593577" c="-7.8291331210746505e-05" d="1.5681939143872073e-05" /> - <laneOffset s="645.17357337891588" a="-6.1040142646498028" b="-0" c="0.00024564067087043238" d="-7.9481487317367832e-06" /> - <laneOffset s="650.85051281553285" a="-6.0975519937336173" b="0.0020205241628275384" c="0.00010752958151432716" d="-7.7717699080801119e-06" /> - <laneOffset s="660.86359762807945" a="-6.0743415147651509" b="0.0018362933085124143" c="-0.00012441022007301605" d="-8.5279745834691937e-06" /> - <laneOffset s="665.76920743149185" a="-6.0693340667558768" b="-0" c="-0.0028400317251465602" d="0.00035678881326286908" /> - <laneOffset s="671.07586059170762" a="-6.0959930353707339" b="-0" c="2.2646207693234298e-05" d="-2.0774259686486777e-08" /> - <laneOffset s="680.88976725317275" a="-6.0938315524378268" b="0.00043849305796580569" c="2.8803338751215221e-05" d="-3.4863642433712052e-06" /> - <laneOffset s="682.12564001050316" a="-6.0932522181597664" b="0.00049371255687532503" c="0.00053519323003868059" d="-3.6136789453576737e-05" /> - <laneOffset s="690.90285206571946" a="-6.0721231990406892" b="0.001536846186677081" c="-0.00041879473181969225" d="-3.4505108862517128e-05" /> - <laneOffset s="692.44411570959949" a="-6.0708756903426844" b="-0" c="-0.00021225847047328964" d="9.6985320296241468e-06" /> - <laneOffset s="700.91593687826605" a="-6.0802127822306513" b="-0.001508189644301402" c="2.1060927407978678e-05" d="1.2685116376526789e-05" /> - <laneOffset s="703.12156529954882" a="-6.0833007205832486" b="-0.0012301529460462775" c="-0.00010749298004990376" d="6.9305193903474828e-06" /> - <laneOffset s="710.92902169081276" a="-6.0961591356164071" b="-0.0016412684312825546" c="5.3272081656167228e-05" d="6.6344994804267178e-06" /> - <laneOffset s="717.71955421822554" a="-6.1027703778476701" b="-0" c="5.0926629850639817e-05" d="-2.1030721458677436e-06" /> - <laneOffset s="720.94210650335935" a="-6.1023118935625256" b="0.00026270723118672861" c="3.0973568469774701e-05" d="-1.7822248240211726e-06" /> - <laneOffset s="730.95519131590606" a="-6.0983651459645039" b="0.00034692159996966437" c="-2.3096986451749177e-05" d="-1.8909055432616219e-06" /> - <laneOffset s="735.70028970580915" a="-6.097441044812121" b="-0" c="-0.0001955025269106947" d="4.4634033465709675e-06" /> - <laneOffset s="740.96827612845277" a="-6.1022140391759523" b="-0.0016882084778516747" c="-0.00012270514580552144" d="4.502597031968078e-06" /> - <laneOffset s="750.82234652630427" a="-6.1264564248162605" b="-0.0027948557352915613" c="-0.00077530823962486959" d="0.00015521895775823957" /> - <laneOffset s="755.44943719323533" a="-6.1406109002855578" b="-0" c="0.00031124747927688853" d="-2.9392660137344066e-05" /> - <laneOffset s="760.99444575354607" a="-6.1360521807867885" b="0.00074052093467249407" c="-0.00016941955762392465" d="-3.2234010030144497e-05" /> - <laneOffset s="762.51770750610353" a="-6.1354312121978198" b="-0" c="-0.00019269191623346059" d="5.4896014225250149e-06" /> - <laneOffset s="771.00753056609267" a="-6.1459606791444115" b="-0.0020848169683797234" c="-5.1631496073112798e-05" d="5.5770498990044452e-06" /> - <laneOffset s="781.02061537863938" a="-6.1664138275306097" b="-0.0014413017533072905" c="0.00011606901241393853" d="5.5531863322966382e-06" /> - <laneOffset s="783.35886979195107" a="-6.1690783647582181" b="-0.0008074189579461463" c="0.00017667511084188919" d="-2.3540785534393821e-05" /> - <laneOffset s="789.21568484218722" a="-6.1724763025228624" b="-0.0011604200909095949" c="-0.00062529965568282645" d="3.8644871204294522e-05" /> - <laneOffset s="791.03370019118597" a="-6.1764204799406581" b="-0.0030508440903210927" c="-0.00041547413923657316" d="3.874477272397478e-05" /> - <laneOffset s="797.75345390454027" a="-6.2039258046148982" b="-0.0033860407757570726" c="6.0452977596232064e-05" d="-2.0652819045384931e-06" /> - <laneOffset s="801.04678500373268" a="-6.2144952541880061" b="-0.0030550577602507811" c="4.1459309778871314e-05" d="-2.5628942800556027e-06" /> - <laneOffset s="809.35758159339957" a="-6.2384928063814025" b="-0.0028969902285031863" c="-2.9359791670258624e-07" d="-6.311864358671898e-07" /> - <laneOffset s="811.05986981627939" a="-6.2434282830707399" b="-0.0029034769331812453" c="-5.3259058703543704e-07" d="1.7406890600657914e-06" /> - <laneOffset s="818.14297542388272" a="-6.2634020621105977" b="-0.0026490286027478229" c="4.0088849450888074e-05" d="1.1770506624656611e-07" /> - <laneOffset s="821.07295462882598" a="-6.2708165462898773" b="-0.0024110781966282962" c="3.6324349205304653e-05" d="-9.191478089599811e-07" /> - <laneOffset s="831.08603944137269" a="-6.2922396902718258" b="-0.0019601070453253116" c="9.2284185026500038e-06" d="-9.7841348788399506e-07" /> - <laneOffset s="841.09912425391929" a="-6.3119234091082195" b="-0.0020695898613584409" c="-2.1260746965047897e-05" d="-4.9804950682934727e-07" /> - <laneOffset s="843.86635599596627" a="-6.3178238033619163" b="-0.0021986982382313966" c="-0.00010576078077995546" d="6.0775109667174081e-06" /> - <laneOffset s="851.11220906646599" a="-6.3369959065976769" b="-0.0027741009013412085" c="1.9268385890559306e-05" d="6.1155084789316327e-06" /> - <laneOffset s="860.99816282087033" a="-6.3566287499333498" b="-0.00060008403597570199" c="0.00015752688118178177" d="-1.8111252899940105e-05" /> - <laneOffset s="866.66506766911164" a="-6.3582665734635855" b="-0.00055956837642556138" c="-3.1752645655306094e-06" d="-3.4589791658499586e-06" /> - <laneOffset s="871.1383786915593" a="-6.3611428599557929" b="-0.00079562409555117861" c="-4.3098298950690544e-05" d="-2.4435441347403565e-06" /> - <laneOffset s="881.27239416530426" a="-6.3761749560033048" b="-0.0024219850156171809" c="-0.00070987314301887601" d="0.00012035127204090036" /> - <laneOffset s="886.49023220497531" a="-6.3910422691062267" b="-0" c="1.4886471177767112e-05" d="-4.0506744686868048e-07" /> - <laneOffset s="891.1645483166526" a="-6.3907583807816604" b="0.00011261690735548511" c="8.6308217342681383e-06" d="-4.7411612120271068e-07" /> - <laneOffset s="901.17763312919931" a="-6.3892413755058355" b="0.00014285190429110998" c="-8.4552158673418032e-06" d="-2.0469210900679462e-07" /> - <laneOffset s="907.95648681401849" a="-6.3887253078433197" b="-0" c="-3.7997557871511318e-05" d="1.9735742354576823e-06" /> - <laneOffset s="911.1907179417459" a="-6.3890560041034599" b="-0.0001838535233535243" c="-2.5874534534905576e-05" d="7.0832019165160448e-07" /> - <laneOffset s="921.20380275429261" a="-6.3927800698755854" b="-0.00048896882538934183" c="-4.1825519617247926e-06" d="5.9138695659482155e-07" /> - <laneOffset s="931.2168875668392" a="-6.3975017952136035" b="-0.00039484863845603614" c="1.3653000105550135e-05" d="7.4296519118859163e-07" /> - <laneOffset s="939.74309115220944" a="-6.3994153282946691" b="-0" c="0.00010254155687770239" d="-3.7114668342766386e-06" /> - <laneOffset s="941.22997237938591" a="-6.3992008282120425" b="0.00028031812348285843" c="8.5175192862164942e-05" d="-4.7537465313673406e-06" /> - <laneOffset s="950.77559535968192" a="-6.3928986918357005" b="0.00060694995783314761" c="3.166774883654692e-06" d="-6.3361742371262309e-08" /> - <laneOffset s="961.25614200447922" a="-6.3862626222644767" b="0.0006524497070773301" c="-5.0274203589296742e-08" d="-1.334298980063654e-07" /> - <laneOffset s="969.26103978909748" a="-6.3811114921983743" b="0.00062599490881263338" c="-3.9327968938642474e-05" d="2.3836989290627499e-06" /> - <laneOffset s="971.26922681702592" a="-6.3799936750351796" b="0.00049687812608180859" c="-2.3779788881408505e-05" d="2.290478002242519e-06" /> - <laneOffset s="981.28231162957252" a="-6.3751031173436479" b="0.0007096028459590895" c="5.0214744844448195e-05" d="1.745729795777106e-06" /> - <laneOffset s="985.50664077696649" a="-6.371077843110232" b="0.0012273074845959193" c="0.00033348338229842152" d="-1.470344557858449e-05" /> - <laneOffset s="991.29539644211923" a="-6.3556505003270418" b="0.0036100913169395221" c="8.917163803221951e-05" d="-1.4946143452340097e-05" /> - <laneOffset s="997.95577261457277" a="-6.3320661887702725" b="0.0028088644672625783" c="-3.6763104622362233e-05" d="-7.5821053318831087e-07" /> - <laneOffset s="1001.3084812546658" a="-6.3230907003949497" b="0.0025367841606788498" c="-3.7932164533465257e-05" d="6.7569306892522435e-07" /> - <laneOffset s="1011.3215660672125" a="-6.300814466159804" b="0.0019803869462519368" c="-2.3173987297209936e-05" d="9.6919613813289623e-07" /> - <laneOffset s="1021.3346508797591" a="-6.2823351453049217" b="0.0018078209899902323" c="2.3453197068488654e-06" d="4.806789420661419e-07" /> - <laneOffset s="1027.1947956283761" a="-6.2715637770862021" b="0.0018848302300938445" c="-7.0614878741886248e-05" d="1.0166354035977462e-05" /> - <laneOffset s="1031.3477356923058" a="-6.2642259095948116" b="0.0018243261271022075" c="6.9672381911523666e-05" d="7.7927314191286572e-06" /> - <laneOffset s="1033.4990768547334" a="-6.2599011070814568" b="0.0022323048202968717" c="0.0001236995838796579" d="-3.9861729099190154e-06" /> - <laneOffset s="1041.3608205048524" a="-6.2366427218603429" b="0.0034381733312497153" c="3.4048970386571238e-05" d="-3.842187106705181e-06" /> - <laneOffset s="1049.3399319544751" a="-6.208993214960727" b="0.0032476818067879564" c="4.3781885336318749e-05" d="-8.7477747895924278e-06" /> - <laneOffset s="1051.3739053173992" a="-6.2022799983458095" b="0.0033172143007210771" c="-8.9421726147763528e-06" d="-8.3032449885908983e-06" /> - <laneOffset s="1054.1270633990664" a="-6.1933882407259571" b="0.0030791630836250398" c="-0.00012085097226790842" d="5.3920168097759149e-06" /> - <laneOffset s="1061.3869901299458" a="-6.1753401470268345" b="0.002177008262103665" c="-4.7017614158816249e-06" d="5.4019705568095463e-06" /> - <laneOffset s="1069.5890536668653" a="-6.1548197696411808" b="0.0031901139806460085" c="0.00027143578400520027" d="-7.9944657308481572e-06" /> - <laneOffset s="1071.4000749424924" a="-6.148199636192734" b="0.0040946052406377548" c="0.00021777293645361192" d="-1.0277701990520512e-05" /> - <laneOffset s="1081.413159755039" a="-6.0956837846973428" b="0.0053643782214114512" c="-9.6475282320074301e-05" d="-1.0370741323463481e-05" /> - <laneOffset s="1091.8043413420628" a="-6.0619946586483495" b="-0" c="-0.000106919778134143" d="5.2474514806474325e-06" /> - <laneOffset s="1101.4393293801324" a="-6.0672267861777129" b="-0.0005989316634839771" c="5.4481968658271001e-05" d="4.429327082451692e-06" /> - <laneOffset s="1105.2058712429384" a="-6.0684730780194558" b="-0" c="0.00054791329243740949" d="-1.9201819268630057e-05" /> - <laneOffset s="1111.452414192679" a="-6.0517740548920864" b="0.004597403255926882" c="0.0001872773362907087" d="-1.880404119113762e-05" /> - <laneOffset s="1119.9151869771267" a="-6.0108517150486289" b="0.0037270213643651314" c="0.00023557438357768126" d="-1.8434161701136588e-05" /> - <laneOffset s="1121.4654990052259" a="-6.0045761616305429" b="0.0043245312458895357" c="0.0001378173406187524" d="-2.3274762809778584e-05" /> - <laneOffset s="1131.0666046854833" a="-5.9709508445368886" b="0.00053444013851045816" c="-4.4388393133032831e-05" d="1.8208535055478228e-06" /> - <laneOffset s="1141.4916686303191" a="-5.9681404325886271" b="0.00020261823889889424" c="1.619480158787357e-05" d="1.8167756524896555e-06" /> - <laneOffset s="1145.2041153890941" a="-5.9670720652036344" b="0.00039798074454520395" c="-2.4655340662039678e-05" d="2.9028060420873902e-06" /> - <laneOffset s="1151.5047534428656" a="-5.9648172427770501" b="0.00043299911944519993" c="1.3874044200425537e-05" d="4.9855636767676873e-06" /> - <laneOffset s="1156.8663448450277" a="-5.9613284317075621" b="0.0010117279787683954" c="0.00069204703925865372" d="-8.2997085474066171e-05" /> - <laneOffset s="1161.3033980674234" a="-5.950464851424762" b="0.0022510263253332084" c="4.1874811084691461e-05" d="-8.0036604622773043e-06" /> - <laneOffset s="1171.5309230679591" a="-5.9316247177123662" b="0.00059597457861372528" c="-0.00018865989357656174" d="-1.4646177114392161e-05" /> - <laneOffset s="1172.8940439030064" a="-5.9311999770183421" b="-0" c="-7.040097220931459e-05" d="1.3756389729065033e-06" /> - <laneOffset s="1181.5440078805057" a="-5.9355771873496552" b="-0.00090914807787684476" c="-2.9181612243011823e-05" d="1.3070922400879592e-06" /> - <laneOffset s="1189.0716885984075" a="-5.9435170106861426" b="-0.0011262848210706439" c="-0.00026427762167214068" d="4.2969622266739114e-05" /> - <laneOffset s="1191.5570926930523" a="-5.9472890789374837" b="-0.0016436580149152282" c="4.8978311878238971e-05" d="4.603582165354854e-05" /> - <laneOffset s="1194.6704596605045" a="-5.9505423695118695" b="-0" c="1.0562799900475945e-07" d="9.5366622800043312e-07" /> - <laneOffset s="1201.5701775055991" a="-5.950224091466576" b="0.0001376586143739903" c="6.8561245735608616e-06" d="2.0771757585922517e-07" /> - <laneOffset s="1211.5832623181457" a="-5.9479497622054645" b="0.00033743898423657675" c="1.0176837339093535e-05" d="-1.3384019626724041e-08" /> - <laneOffset s="1221.5963471306923" a="-5.9435640449473732" b="0.00053721633463080622" c="1.4880154476537054e-05" d="-1.8840888953343264e-06" /> - <laneOffset s="1223.3317420962039" a="-5.9425967962446817" b="0.00057183988299165395" c="0.0012434154481448276" d="-0.00012802739632658596" /> - <laneOffset s="1230.0287923596527" a="-5.9214544417976649" b="-0" c="-4.1835442417425084e-05" d="-4.7484929553570738e-06" /> - <laneOffset s="1231.6094319432391" a="-5.9215777166582697" b="-0.00016784472314542638" c="-4.891673871270005e-05" d="7.6144002441973548e-07" /> - <laneOffset s="1241.6225167557857" a="-5.9273984107528532" b="-0.00091842943368380036" c="-1.4288021531823033e-05" d="-1.7952040597063958e-06" /> - <laneOffset s="1244.0255935368587" a="-5.9297128898211673" b="-0.0010182005740777904" c="-0.00013260123577872035" d="9.9418160840655304e-06" /> - <laneOffset s="1251.6356015683323" a="-5.940759154217222" b="-0.0013091355250348111" c="9.4244785216906864e-05" d="1.076797996350599e-05" /> - <laneOffset s="1254.3596304253338" a="-5.9434082941031665" b="-0.00055597849782664302" c="4.5167037140187305e-05" d="-1.5904054780592739e-06" /> - <laneOffset s="1261.6486863808789" a="-5.9456770289170757" b="-0.00015102471143121072" c="6.8789442350483486e-06" d="-1.7258759410061824e-06" /> - <laneOffset s="1271.9203670762492" a="-5.9483729251721202" b="-0.00055598624965441288" c="-0.00061388135052188857" d="7.4500840083712103e-05" /> - <laneOffset s="1276.1941078572195" a="-5.9561460415666492" b="-0.0017208834736595737" c="7.7603598175082664e-05" d="-1.8309500113802807e-06" /> - <laneOffset s="1281.6748560059723" a="-5.9635481036433697" b="-0.0010352294461099031" c="4.6346638818871546e-05" d="-2.4073621067291463e-06" /> - <laneOffset s="1291.6879408185189" a="-5.9716839677708808" b="-0.00083118365701276222" c="-1.8141088791048483e-05" d="-2.6197726731547387e-06" /> - <laneOffset s="1301.7010256310657" a="-5.9844556095688111" b="-0.0019824700799460542" c="-0.00010505682874886811" d="5.1969975657020293e-06" /> - <laneOffset s="1302.9293251376055" a="-5.987039547028437" b="-0.0022170301442852626" c="-8.8850381129044718e-06" d="-1.8774560439097734e-06" /> - <laneOffset s="1311.7141104436123" a="-6.0084741700380926" b="-0.0028078001130069016" c="-6.4246180922860021e-05" d="-2.4040406568709119e-06" /> - <laneOffset s="1318.5553900634077" a="-6.0314597939260963" b="-0.0040244020045085982" c="-0.00012706303839554115" d="4.4413250531966813e-06" /> - <laneOffset s="1321.7271952561589" a="-6.0453609912043147" b="-0.0046963965852304945" c="-8.0636941157266397e-05" d="4.8065030149528559e-06" /> - <laneOffset s="1329.2987860029723" a="-6.0834566516725799" b="-0.0050908405818005896" c="-0.00025787426844466001" d="4.2315044443499042e-05" /> - <laneOffset s="1331.7402800687055" a="-6.0968072383467282" b="-0.0055933311827128891" c="8.1192879282629838e-05" d="4.1303375546322319e-05" /> - <laneOffset s="1334.7234229054543" a="-6.1116738996869202" b="-0.0040062175591160003" c="0.00031461766867823821" d="-1.2273376730918821e-05" /> - <laneOffset s="1341.7533648812523" a="-6.1285529655218145" b="-0.0014023835821364455" c="7.5120706908381941e-05" d="-1.2716764279663862e-05" /> - <laneOffset s="1346.1720092555402" a="-6.1343800055812574" b="-0.0014833824724617964" c="0.00012172888837082226" d="-8.1781748469301425e-06" /> - <laneOffset s="1351.7664496937989" a="-6.1403008035300477" b="-0.00088924819569516508" c="-1.4822358592389304e-05" d="-7.3324929852695623e-06" /> - <laneOffset s="1355.5538187524412" a="-6.1442796787188687" b="-0.0013170591345409361" c="-0.00020457417295048551" d="1.5797516475265151e-05" /> - <laneOffset s="1361.7795345063455" a="-6.1565964814092364" b="-0.0020273871809711338" c="7.4423634044384665e-05" d="1.6822109692471363e-05" /> - <laneOffset s="1366.812339338047" a="-6.1627704155791427" b="-0" c="3.1257528524655874e-05" d="-1.2016279152646171e-06" /> - <laneOffset s="1371.7926193188923" a="-6.1621435624813374" b="0.00022192987538063026" c="3.3515694729947496e-06" d="-2.334530941123722e-06" /> - <laneOffset s="1377.9206838145524" a="-6.1611949413970599" b="-0" c="-0.00052336019668865934" d="5.9636748919561887e-05" /> - <laneOffset s="1381.8057041314389" a="-6.1655972316292713" b="-0.0013661691419954152" c="0.00016437737377547826" d="6.1307602344381107e-05" /> - <laneOffset s="1383.7801967341063" a="-6.1671819438433237" b="-0" c="0.00035611096523180473" d="-1.1312804102510855e-05" /> - <laneOffset s="1391.8187889439855" a="-6.1500468072014023" b="0.0035321965944875712" c="7.7880550508726868e-05" d="-1.1273759406980842e-05" /> - <laneOffset s="1401.8318737565321" a="-6.1181882455401295" b="0.0017008611950455439" c="-0.0002510330251438093" d="-1.556125713039141e-05" /> - <laneOffset s="1403.9634428199029" a="-6.1158540430325186" b="0.00041856097300040172" c="-7.9425138524072319e-05" d="7.4727949517259206e-06" /> - <laneOffset s="1411.0490912143937" a="-6.1142175090951296" b="0.0004185504551212597" c="0.00014151226204525737" d="-2.7383801570009396e-06" /> - <laneOffset s="1421.8580433816255" a="-6.0966182074337656" b="0.0025179458197350357" c="5.1890564813444299e-05" d="-2.5987184786809282e-06" /> - <laneOffset s="1432.6186303898912" a="-6.0667531393155523" b="0.0027319730423093322" c="5.0496732816660238e-06" d="1.1903425541882915e-06" /> - <laneOffset s="1441.8842130067187" a="-6.0400594282102977" b="0.003132125743936464" c="4.0863869770697093e-05" d="1.2718770996054391e-06" /> - <laneOffset s="1448.7408358835089" a="-6.0162524862171614" b="0.0038718873647729428" c="0.00064193972762002858" d="-0.00013951694481080453" /> - <laneOffset s="1451.8972978192655" a="-6.0020228300407013" b="0.0037542765772188118" c="-0.00065309256107382973" d="-0.00015347971823746729" /> - <laneOffset s="1453.0098483952281" a="-5.9988657389653355" b="0.0017311623545954381" c="-0.00032862788751482764" d="2.8487976777192319e-05" /> - <laneOffset s="1460.7002165660531" a="-5.9920311390608951" b="0.0017311109409921105" c="0.0012067665545013489" d="-8.4211612767297824e-05" /> - <laneOffset s="1461.9103826318121" a="-5.9883181428662144" b="0.0042819026057025651" c="0.00091249612658849657" d="-7.5746387778822104e-05" /> - <laneOffset s="1469.5250707976595" a="-5.9362470988719664" b="0.0050025329762637925" c="-0.00025869514835980624" d="1.205024312034498e-05" /> - <laneOffset s="1471.9234674443587" a="-5.9255708854131148" b="0.0039695758981514199" c="-0.00018339642664624918" d="9.2147184939064355e-06" /> - <laneOffset s="1480.2522822559922" a="-5.8999071561687959" b="0.0028322778875508768" c="-0.00016296791575280692" d="1.1802443600825662e-05" /> - <laneOffset s="1481.9365522569055" a="-5.8955427465926027" b="0.0023837562365194853" c="-0.0001119820466408781" d="9.359713889696418e-06" /> - <laneOffset s="1491.5717536576337" a="-5.8745985607842712" b="0.0028326033436575607" c="0.00054635392059296554" d="-8.3848459968948266e-05" /> - <laneOffset s="1497.4583520991282" a="-5.8560955149966736" b="0.00054837474751955951" c="-2.6263366749618253e-05" d="-6.3012439568164922e-07" /> - <laneOffset s="1501.9627218819987" a="-5.8542158864429057" b="0.00027342047853648889" c="-2.5618584459271878e-05" d="-7.2957341996410053e-07" /> - <laneOffset s="1506.4420086598659" a="-5.853570737798619" b="-0" c="-0.00014508010254007004" d="1.8270268191158981e-05" /> - <laneOffset s="1511.7358591577381" a="-5.8549260206521261" b="-0" c="0.00063421930836153574" d="-8.4711103122071303e-06" /> - <laneOffset s="1518.7017022097875" a="-5.8270150805410958" b="0.0076026140452070045" c="0.0039742711970521616" d="-0.0011161879721013207" /> - <laneOffset s="1521.8066438055062" a="-5.7985064299675368" b="-0" c="-0.00025287529881394544" d="1.3996985460928762e-05" /> - <laneOffset s="1532.0019763196387" a="-5.8099581723622649" b="-0.00079155373596912209" c="0.00022810999406985027" d="-2.8370833990804083e-06" /> - <laneOffset s="1533.797122722136" a="-5.8106604435900335" b="-0" c="0.00036196702070066317" d="-2.1135329538087756e-05" /> - <laneOffset s="1542.0150611321853" a="-5.7979451683487406" b="0.0016671528845343367" c="-0.00013517937251613651" d="-2.3680390713154264e-05" /> - <laneOffset s="1544.7779700796291" a="-5.7948703369365715" b="0.00037787171902522586" c="-9.777025922725363e-05" d="1.1644642584799846e-05" /> - <laneOffset s="1550.3753965974056" a="-5.7937763181749631" b="0.00037786934083669055" c="0.0026111115497767833" d="-0.0003473374304862903" /> - <laneOffset s="1552.0281459447322" a="-5.7875874294462033" b="0.0061625548030030588" c="0.00089651394197176138" d="-0.00034589955009109013" /> - <laneOffset s="1554.2990358611337" a="-5.7730204525051052" b="0.0048829730163594594" c="-1.0482544739371325e-05" d="-6.0328053162345818e-06" /> - <laneOffset s="1562.0412307572788" a="-5.7386435647772016" b="0.0036358095273804013" c="-0.00014906837022849877" d="-6.0995507551442787e-06" /> - <laneOffset s="1569.6810689720091" a="-5.7222871445501582" b="0.00029005328638387573" c="-7.1850176778757145e-05" d="7.8243346102936796e-06" /> - <laneOffset s="1572.0543155698253" a="-5.7218988716906063" b="8.1223896922373562e-05" c="-2.5441423302468032e-05" d="1.0254049467574407e-05" /> - <laneOffset s="1575.6149537980436" a="-5.7214693215846637" b="0.00029005545355722064" c="0.00053671936974286616" d="-5.4519660269460137e-05" /> - <laneOffset s="1581.6970790705413" a="-5.7121171713876544" b="0.00076842998651682423" c="-1.8017147783982477e-05" d="-4.390769856423169e-08" /> - <laneOffset s="1592.0804851949188" a="-5.7061299259100071" b="0.00038006951949890659" c="-1.8089188861030211e-05" d="-4.0128422093778527e-08" /> - <laneOffset s="1602.2423068342173" a="-5.7041777724708504" b="-0" c="-0.00016341392152969714" d="1.2461110037452799e-05" /> - <laneOffset s="1608.6511623865013" a="-5.7076095588443323" b="-0.00055913086315855442" c="-5.8002590165823537e-05" d="5.5367059849951345e-06" /> - <laneOffset s="1612.106654820012" a="-5.7100057622479481" b="-0.00076165396922707039" c="3.7750188957837557e-06" d="3.4918722736013401e-06" /> - <laneOffset s="1619.2899811600437" a="-5.7139878790584051" b="-0.0001668758985337067" c="4.0242810765670141e-05" d="-5.2463926576515422e-06" /> - <laneOffset s="1622.1197396325588" a="-5.7142567319382813" b="-6.5153016302560828e-05" c="5.6874128987822594e-06" d="-1.1944207862291135e-06" /> - <laneOffset s="1629.2664512781812" a="-5.7148678639748196" b="-0.00016687728756619043" c="-0.0002441091210831507" d="1.4174540376465451e-05" /> - <laneOffset s="1632.1328244451054" a="-5.717018004296019" b="-0.0012169148399548324" c="-0.00014433442417925946" d="1.0515798740084514e-05" /> - <laneOffset s="1640.5252300275747" a="-5.7311808112024085" b="-0.0014175798104625013" c="6.1840645271303882e-05" d="8.2825279235355278e-06" /> - <laneOffset s="1642.145909257652" a="-5.733280564936635" b="-0.0011518674192096058" c="5.7069408610612189e-05" d="-5.9551842157220551e-06" /> - <laneOffset s="1652.1589940701986" a="-5.7450710171735002" b="-0.0018002194336377028" c="-0.00013018566807977705" d="-6.6853856917817253e-06" /> - <laneOffset s="1655.2336267271157" a="-5.752031038330685" b="-0.0027903638396056456" c="-7.5932908379849887e-05" d="-1.6980921819600532e-06" /> - <laneOffset s="1662.1720788827454" a="-5.775614632149848" b="-0.0040893268074735428" c="-0.00010461633263802752" d="-2.4285090246173047e-06" /> - <laneOffset s="1666.5388917294647" a="-5.795669115884678" b="-0.0051419348105394298" c="-0.00021075561134207521" d="2.5410436645022713e-05" /> - <laneOffset s="1670.5061891593527" a="-5.8177991720124815" b="-0.0056143563938727053" c="-4.9864949291588312e-05" d="3.9723857387778973e-06" /> - <laneOffset s="1672.185163695292" a="-5.8273472993852451" b="-0.0057482064182776101" c="5.930658088705516e-07" d="1.0663160075873661e-05" /> - <laneOffset s="1675.7483379501134" a="-5.8473392421306682" b="-0.0053378348412337221" c="6.1978170486695503e-05" d="-9.1549318325926681e-08" /> - <laneOffset s="1680.2879218034107" a="-5.8703021204336618" b="-0.0047807845332850608" c="7.4551302876077257e-05" d="-1.2415386351230331e-05" /> - <laneOffset s="1682.1982485078386" a="-5.8792494703488467" b="-0.0046318740442482347" c="3.3752653704728205e-05" d="-4.3859863723489675e-06" /> - <laneOffset s="1692.2113333203854" a="-5.926647939755739" b="-0.0052751792289407514" c="-8.3041272521120098e-05" d="-5.4578514125569312e-06" /> - <laneOffset s="1696.1647182916111" a="-5.9491378592699702" b="-0.0061876738837727853" c="-0.00015099487600241229" d="2.4238816957664564e-06" /> - <laneOffset s="1702.224418132932" a="-5.9916384892157515" b="-0.0077506266035800566" c="-0.00010539212806225273" d="2.7438649017055532e-06" /> - <laneOffset s="1712.2375029454786" a="-6.0770583324345022" b="-0.0090359121799687622" c="-2.5375046166024227e-05" d="2.7907508044882546e-06" /> - <laneOffset s="1722.2505877580252" a="-6.1672781168864121" b="-0.0087046594968861" c="5.402920292335048e-05" d="3.3814571263538411e-06" /> - <laneOffset s="1725.0123654760887" a="-6.1908351171471718" b="-0.0083288508571412959" c="0.00016896973423433676" d="-1.8912821438267634e-05" /> - <laneOffset s="1732.263672570572" a="-6.2495566594538401" b="-0.0088617389761513326" c="-0.00025760530953729949" d="-1.3095155905626101e-05" /> - <laneOffset s="1733.8684897878604" a="-6.2644957010086486" b="-0.0097897351463989823" c="-0.0015651786060209012" d="0.00024047548055479488" /> - <laneOffset s="1739.673215638823" a="-6.3270264397384182" b="-0.0036522504636089101" c="0.0034280262043019242" d="-0.0028464813128014571" /> - <laneOffset s="1740.4552696486778" a="-6.3291475899058609" b="-0.0035132434644743003" c="-0.0023266312581382755" d="0.00024443669870714065" /> - <laneOffset s="1742.2767573831186" a="-6.3417890378980761" b="-0.0095561149442372796" c="-0.0010309834496768757" d="0.0002377290287585682" /> - <laneOffset s="1745.7939848727119" a="-6.3778103672792614" b="-0.0079857631724239483" c="0.00062016857534037207" d="-9.1425474232102453e-05" /> - <laneOffset s="1750.3330540630052" a="-6.4098309030604215" b="-0.0080067450615345596" c="-0.00056418845984060632" d="3.2799088082014551e-05" /> - <laneOffset s="1752.2898421956652" a="-6.4274129457518665" b="-0.0098379745544558556" c="-0.00037741602374610393" d="3.019645298339463e-05" /> - <laneOffset s="1761.6769707839753" a="-6.5280426894261003" b="-0.008941110324925337" c="0.00035981288633507997" d="-1.4146803069157436e-05" /> - <laneOffset s="1772.3160118207586" a="-6.5994765250221477" b="-0.0060887779173235956" c="-7.7575584607702703e-05" d="-1.6181404750697781e-05" /> - <laneOffset s="1777.8701226728588" a="-6.6384597608811804" b="-0.0084480037845781845" c="-0.00098687100889177323" d="0.00021577995478967715" /> - <laneOffset s="1782.0098400726552" a="-6.6750362076840899" b="-0.0055251062970335949" c="0.00042659899146534156" d="1.209544065102991e-07" /> - <laneOffset s="1788.4678636602873" a="-6.6928931299351477" b="-0" c="9.5742313882610691e-05" d="-2.1822156934359616e-06" /> - <laneOffset s="1792.3421814458518" a="-6.6915829117760941" b="0.00064360491158260984" c="7.0664512714665998e-05" d="-2.6104337374663593e-06" /> - <laneOffset s="1802.3552662583986" a="-6.6806741794647939" b="0.0012735635454590099" c="9.7652069395123524e-07" d="-5.1640647185245603e-06" /> - <laneOffset s="1804.0241578599889" a="-6.6785700237375254" b="0.0012336741134043655" c="2.0920320166299789e-05" d="-4.5849918904342161e-08" /> - <laneOffset s="1812.3683510709452" a="-6.6668460569492156" b="0.001573223521524035" c="1.8510986741217842e-05" d="1.2744047179622756e-07" /> - <laneOffset s="1822.3814358834918" a="-6.6491093489127726" b="0.001982259941009428" c="1.1472812306793933e-05" d="8.0980734377726e-07" /> - <laneOffset s="1829.8145567705831" a="-6.6334085041420909" b="0.0022870462343563712" c="9.4912544646472225e-05" d="-1.5010980457101038e-05" /> - <laneOffset s="1832.3945206960384" a="-6.6271340296063119" b="0.0024770392285180169" c="-4.4252816650744623e-05" d="-1.7248327481633236e-05" /> - <laneOffset s="1834.5334678308236" a="-6.6222070246456912" b="0.0020509921552954533" c="-0.00020138275076551145" d="1.0888443165152783e-05" /> - <laneOffset s="1842.4076055085852" a="-6.6132274967496336" b="0.00090487834653835684" c="3.7313288969458429e-05" d="1.3601230574280039e-05" /> - <laneOffset s="1846.5570697809369" a="-6.6078585247410757" b="0.0019170988226447122" c="0.00042594444690425344" d="-5.1644868161539256e-05" /> - <laneOffset s="1852.4206903211318" a="-6.5923843175188352" b="0.0015852833648454603" c="-0.00057111741527278643" d="-1.8599147151231856e-05" /> - <laneOffset s="1853.7254127060651" a="-6.5913294855446436" b="-0" c="-5.7898494196731227e-05" d="1.5818212568341194e-06" /> - <laneOffset s="1862.4337751336784" a="-6.594675610628868" b="-0.00064852716372295412" c="-1.8448386548108853e-05" d="5.6736513126855984e-07" /> - <laneOffset s="1872.4468599462252" a="-6.6024494426028086" b="-0.00084732241926070977" c="7.6464827317293535e-06" d="7.7472734161337366e-07" /> - <laneOffset s="1882.4599447587718" a="-6.609389330740985" b="-0.00046116582890521056" c="3.1883242866050932e-05" d="1.24215522495055e-06" /> - <laneOffset s="1887.4109888366061" a="-6.6107402812379368" b="-5.4108899967469279e-05" c="2.0573778239007438e-06" d="2.1439707070446047e-07" /> - <laneOffset s="1892.4730295713184" a="-6.610933654252003" b="-1.679854272985794e-05" c="-7.9311585339058552e-07" d="-9.2723245515369644e-08" /> - <laneOffset s="1901.5491243257954" a="-6.6112207770605327" b="-5.4109702020993935e-05" c="-5.9972926426977187e-05" d="3.3762346971312036e-06" /> - <laneOffset s="1906.8952487282172" a="-6.6127082619064312" b="-0.00040586619409994283" c="2.2716501193595006e-05" d="-4.6589292028679964e-06" /> - <laneOffset s="1912.4991991964118" a="-6.6150892362963241" b="-0.0005901925830058011" c="-4.4658002996752326e-05" d="-4.8744640274682387e-06" /> - <laneOffset s="1916.9344574014783" a="-6.6190106718392432" b="-0.0012739964131869002" c="-0.0036465684557028134" d="0.00049917584421477527" /> - <laneOffset s="1921.9734075886968" a="-6.6541537711172136" b="-0" c="0.00087252195267969383" d="-9.3051384828050964e-05" /> - <laneOffset s="1926.8143861681228" a="-6.6442627125825684" b="0.0019057220081165819" c="-4.0147092775420979e-05" d="1.9193269913217164e-06" /> - <laneOffset s="1932.2023400145938" a="-6.6348600355029186" b="0.001640255098522629" c="4.3111590141291474e-05" d="-3.9080475896589131e-06" /> - <laneOffset s="1942.5384536340518" a="-6.6176158405869803" b="0.0012789160242960614" c="-7.5629930614946517e-05" d="-3.6647457890516146e-06" /> - <laneOffset s="1948.4518755874851" a="-6.6134555504258499" b="-0" c="-0.0027939850127560572" d="0.00047069028883389485" /> - <laneOffset s="1952.1568432652448" a="-6.6278699477545029" b="-0.0013200544430859249" c="3.7812725335034084e-05" d="1.5650660963129998e-07" /> - <laneOffset s="1962.564623259145" a="-6.6373363942754056" b="-0.00048210211794230689" c="4.2133204503506826e-05" d="-2.0890255914441215e-07" /> - <laneOffset s="1968.5524432399734" a="-6.6387573402671993" b="-0" c="0.00056733366873401982" d="-5.0819398462059215e-05" /> - <laneOffset s="1972.5777080716916" a="-6.632879431589326" b="0.0020970934419722582" c="-3.7591889299308665e-05" d="-5.186082219617278e-05" /> - <laneOffset s="1974.5958158896358" a="-6.6292266315810249" b="0.0013117145539131602" c="-0.00023303250389614393" d="2.7714514787674391e-05" /> - <laneOffset s="1981.4610341781545" a="-6.6222370532988659" b="0.0020307333984092243" c="0.0080684722552406638" d="-0.0052915241831497642" /> - <laneSection s="0"> - <left> - <lane id="4" type="shoulder" level="false"> - <link> - <predecessor id="-4" /> - <successor id="5" /> - </link> - <width sOffset="0" a="-2.4547999192492398e-05" b="-7.9225952536990122e-05" c="0.00010048650133568851" d="-4.0677669974070221e-06" /> - <width sOffset="10.013084812546658" a="0.0051733644067946116" b="0.00070960802154703393" c="-2.4978333633760773e-05" d="-3.464634168569606e-06" /> - <width sOffset="15.631145577476779" a="0.0077572529117801992" b="0.00010088977175050948" c="-0.00089205926375019763" d="0.00011249597335067636" /> - <width sOffset="20.026169625093317" a="0.00051982032031627767" b="-0.0012213576215857743" c="0.00057287419637351144" d="0.00011267274555179608" /> - <width sOffset="20.868418218017698" a="-3.5160052121341323e-05" b="-1.6568363194784368e-05" c="-0.00014499872011397276" d="0.00011817985269048289" /> - <width sOffset="23.280788179340259" a="0.00074015669188742805" b="0.0013471037028112837" c="-0.00030952421157923513" d="1.6801410763021921e-05" /> - <width sOffset="30.039254437639975" a="0.00089310452428925657" b="-0.00053440680496361212" c="3.7256553296312369e-05" d="1.4247959320207078e-05" /> - <width sOffset="32.755852226850962" a="1.9323099493817608e-06" b="-1.653896769641559e-05" c="-6.0772466288435713e-06" d="-3.3027838308021525e-05" /> - <width sOffset="36.754679581533907" a="-0.0022733062688091721" b="-0.0016495495442926697" c="0.00136285163419257" d="-0.00020328068208265974" /> - <width sOffset="40.052339250186634" a="-0.00018231470320007048" b="0.00070712870295844277" c="-0.00064666286988884661" d="-0.00020569582758883531" /> - <width sOffset="40.494049769812563" a="-1.3864875457514358e-05" b="1.5454300793475012e-05" c="0.001019603414404216" d="-0.00022045517835775225" /> - <width sOffset="43.051067682831594" a="0.0030064525948958476" b="0.00090550955603566508" c="-0.00028928137203156198" d="1.6897144823548401e-05" /> - <width sOffset="50.065424062733292" a="0.00095648339647880221" b="-0.00065865654523113507" c="6.9858806328460335e-05" d="1.457006016494516e-05" /> - <width sOffset="52.523203494160533" a="-2.403773101544715e-05" b="-5.1222269168935478e-05" c="-0.00020779725474769962" d="0.00012358314980405062" /> - <width sOffset="53.775614044461584" a="-0.00017135326737705014" b="9.8152270274088488e-06" c="0.00059751260272063883" d="-0.00018899628564610251" /> - <width sOffset="57.055719416312172" a="-0.00038032470771298676" b="-0.002170661026889743" c="0.00036839562197401389" d="-1.3423673166874751e-05" /> - <width sOffset="60.078508875279951" a="-0.0039464127023229878" b="-0.00031146284034449384" c="0.00023690544228010206" d="-1.7117768564586429e-05" /> - <width sOffset="68.519530645395463" a="9.0975405964144329e-06" b="2.9018545975568587e-05" c="-0.0031271783624623652" d="0.00015094711331782313" /> - <width sOffset="69.018270773964133" a="-0.00073556333989799327" b="-0.0029776395992328879" c="-0.0023384586629468422" d="0.0014800707587845944" /> - <width sOffset="69.689808352662041" a="-0.0033414956254933514" b="-0.0041159951322674183" c="0.0075905748486941533" d="-0.00097648177138825098" /> - <width sOffset="70.091593687826617" a="-0.0038332199434929493" b="0.0015106635660346764" c="0.0063791357212686856" d="-0.00098904853359954754" /> - <width sOffset="73.427710120320299" a="0.035480965449358415" b="0.011050382737068716" c="-0.00091030661154070224" d="-0.0017107910604823588" /> - <width sOffset="74.245886994281932" a="0.042975763810691348" b="0.006125119735006691" c="0.0030819945337321663" d="-0.00050794367462958533" /> - <width sOffset="78.610003127765864" a="0.086185993369878311" b="0.00400334543626294" c="-0.0018972102154175923" d="-0.00068894662023461862" /> - <width sOffset="79.357585898496097" a="0.087830664461268526" b="1.1586637786258763e-05" c="0.0039119520645836871" d="-0.00043981779456434954" /> - <width sOffset="80.104678500373268" a="0.089839367816342275" b="0.0051203181132938461" c="0.002913026683463907" d="-0.00043621895895216083" /> - <width sOffset="82.887442031568455" a="0.11724569827706333" b="0.011198905333718503" c="0.00086069251712753701" d="-0.00038149269915935648" /> - <width sOffset="85.628488566338319" a="0.14655247636981361" b="0.0073184532048171363" c="0.0070349173378377048" d="-0.0018326455456574436" /> - <width sOffset="88.369537044198339" a="0.18172616192728963" b="0.0045766477193508216" c="0.0042386849042438668" d="-0.00090530301755373341" /> - <width sOffset="89.84972195457344" a="0.19485127812445224" b="0.011174308796440406" c="0.001702370110461146" d="-0.00078299183814804264" /> - <width sOffset="90.117763312919919" a="0.19795368514771283" b="0.011918155096435219" c="0.001082171249994135" d="-0.00077535844875667025" /> - <width sOffset="92.839934283982842" a="0.22277563131093991" b="0.00057314747450052652" c="0.01328247291674196" d="-0.0039578006364450122" /> - <width sOffset="95.082592916244863" a="0.24622346046617238" b="0.00043176701618153403" c="0.0058590525064129524" d="-0.00087331487025559982" /> - <width sOffset="99.567909518866244" a="0.28722852604114202" b="0.00028296193819919176" c="0.017065497130871837" d="-0.0050734896843446066" /> - <width sOffset="100.13084812546658" a="0.2918907840697571" b="0.014673251552466215" c="0.0085278840306259162" d="-0.005076840253798242" /> - <width sOffset="101.81056740207029" a="0.31653834147955706" b="0.00034989683842818673" c="0.01449409529161819" d="-0.0027667551005999672" /> - <width sOffset="103.05649013094653" a="0.3341226978086107" b="0.023582245916335762" c="-0.0096241045726831922" d="0.0022696297183873609" /> - <width sOffset="104.88612457423636" a="0.35895336090792007" b="0.011158239425392423" c="0.0028143336818414826" d="0.002282164497621387" /> - <width sOffset="105.88286174370987" a="0.37513108950339635" b="0.023570429886513495" c="-0.0063079380738008308" d="0.0011272493096218155" /> - <width sOffset="107.86038655420312" a="0.40579172561204757" b="0.011846900048066215" c="0.0004646501782674757" d="0.0011032565806252926" /> - <width sOffset="109.60474294712894" a="0.43372651481554048" b="0.023538829677835146" c="-0.0044341930639647869" d="0.00073386934217976852" /> - <width sOffset="110.14393293801325" a="0.44524432040879169" b="0.019397148999019544" c="-0.0032280381164767748" d="0.00073973069386239166" /> - <width sOffset="113.59184152472514" a="0.50406957705920163" b="0.023519107166933721" c="-0.0019868252075496231" d="0.00020478197016172886" /> - <width sOffset="119.002760162816" a="0.60560098743495328" b="0.020004852527748952" c="0.0014369794730911853" d="0.00021708285574996848" /> - <width sOffset="119.99963164849085" a="0.62718630859372837" b="0.023517000312662205" c="-0.0023157587818355223" d="0.00029033268656311124" /> - <width sOffset="120.1570177505599" a="0.63083132723456625" b="0.02280963877407953" c="-0.0021993243849441628" d="0.00028326651451098011" /> - <width sOffset="125.48242474492767" a="0.73271045420057046" b="0.023485324619141625" c="-0.0015917782828273961" d="0.00018855183023813363" /> - <width sOffset="129.78663090664841" a="0.81934177067642722" b="0.020262082314694771" c="-0.00013727535458491239" d="0.00031451116602735935" /> - <width sOffset="130.17010256310655" a="0.82710925372514321" b="0.020295546982801636" c="0.00020784081538377129" d="0.00033009610052289057" /> - <width sOffset="131.78056522960068" a="0.86171230005403299" b="0.023533388566534634" c="-0.0011266043824956977" d="0.00016101442149539399" /> - <width sOffset="135.49286952889125" a="0.94178693668578717" b="0.02182570936842201" c="0.00019956490473332369" d="-4.1312992722692435e-06" /> - <width sOffset="140.18318737565323" a="1.048120416909482" b="0.02342510066871864" c="0.00017248925888604605" d="-1.2053670429566153e-06" /> - <width sOffset="140.47832594634286" a="1.0550490616340706" b="0.023526602148455231" c="-0.00017422234579788715" d="2.0909977838064263e-06" /> - <width sOffset="145.48519952127626" a="1.1687386962121611" b="0.021939239938835522" c="0.00013129188105128468" d="4.9219620574730429e-05" /> - <width sOffset="147.97840941064075" a="1.2250167562714589" b="0.023511777964937201" c="-0.0022109577605397058" d="0.0003695193292300452" /> - <width sOffset="150.19627218819988" a="1.2703184029157395" b="0.019157478971902231" c="0.00025097408320912584" d="0.00036618024222933085" /> - <width sOffset="151.96754516788891" a="1.3070738748911124" b="0.02349313662599916" c="-0.011299935467432189" d="0.0060425695829842956" /> - <width sOffset="153.21414937168956" a="1.3305061393882402" b="0.023490901460744312" c="-0.00051460797331370615" d="1.563639968233425e-05" /> - <width sOffset="156.88559155352488" a="1.4105888063379366" b="0.020344506591393603" c="-0.00066918765089788216" d="5.1915344685527631e-05" /> - <width sOffset="160.20935700074654" a="1.4727226602122112" b="0.017616652352966396" c="-0.00017704302940997648" d="6.1510474613707804e-05" /> - <width sOffset="161.6795441893255" a="1.4984352311749021" b="0.017494935079872136" c="0.00032455827909929507" d="-5.9614932859767639e-05" /> - <width sOffset="167.16611540045955" a="1.5943464809202412" b="0.015672690251661136" c="0.0040251645755823321" d="-0.00051282589771543862" /> - <width sOffset="168.73294251448587" a="1.6268118700280265" b="0.024509282729414075" c="-0.019533148009336587" d="0.0044189799878717947" /> - <width sOffset="170.98913409052579" a="1.6334295875700517" b="0.0038513676070190961" c="-0.066372741836410357" d="0.23896573049002809" /> - <width sOffset="171.23844186198883" a="1.633967317125971" b="0.015315176543704845" c="-0.017716439652152562" d="0.0066750442571229026" /> - <width sOffset="173.24537094822139" a="1.6473034488931093" b="0.024860416482974147" c="-0.0040038153058752088" d="0.00080000365871213223" /> - <width sOffset="176.73755743457937" a="1.7193636154695948" b="0.026165290424080726" c="-0.0082817491569862241" d="0.0018864023693623778" /> - <width sOffset="179.7308604149523" a="1.7740734481123344" b="0.027291440417637525" c="0.13378153188184688" d="-0.2622794785263815" /> - <width sOffset="180.15215837659738" a="1.7897039501102707" b="0.00035770783379541679" c="0.014946558518563498" d="0.00039051231774295454" /> - <width sOffset="181.1501034434236" a="1.8053342259859679" b="0.031356123553094604" c="-0.0067109830691503636" d="0.0011947420146991294" /> - <width sOffset="184.89239335800903" a="1.8913085585345053" b="0.031323366683667697" c="-0.010470263688837259" d="0.0025929395351537467" /> - <width sOffset="187.13776967544692" a="1.9382067147412991" b="0.023522587378607816" c="0.0075671553744483299" d="-0.006284169214664184" /> - <width sOffset="188.72609762298814" a="1.9694778737403471" b="0" c="0.070202421536469217" d="-0.046753845563705536" /> - <width sOffset="189.72432213854111" a="1.992925974686039" b="0.00039164196773349834" c="0.015063551782839716" d="-0.0033252254309040223" /> - <width sOffset="190.24861143838652" a="1.9967927474430729" b="0.01344485338613062" c="0.0098282323804477732" d="-0.0033277004407699941" /> - <width sOffset="192.71899643583524" a="2.0398171558275253" b="0.0010789979627370077" c="0.078973925601440134" d="-0.070173027035141736" /> - <width sOffset="193.46766469891537" a="2.0554433564657026" b="0.0013327189467216055" c="0.021451546678999924" d="-0.0071510434244844972" /> - <width sOffset="195.46411410439612" a="2.086701654071982" b="0.0014784680942172568" c="0.26025707894449757" d="-0.56339028070966812" /> - <width sOffset="195.71367093244018" a="2.094522823804307" b="0.026114838863034874" c="-0.010475984911547541" d="0.0026237614242625171" /> - <width sOffset="197.7101207772269" a="2.1257829961736894" b="0.015658741135844412" c="-0.0003628601449709581" d="3.0554667411357502e-05" /> - <width sOffset="200.26169625093317" a="2.1638826194930827" b="0.014403792957852138" c="-0.00012984892944364689" d="3.0917490557157167e-05" /> - <width sOffset="202.75859312544415" a="2.1995191518697865" b="0.014333618913980791" c="2.8520405154103793e-05" d="2.259446628151783e-05" /> - <width sOffset="206.75240208648376" a="2.2586591443749917" b="0.015642608795610507" c="0.028063156453912726" d="-0.056158559785571896" /> - <width sOffset="207.25162817982675" a="2.2664751562240912" b="0.0016736924275398239" c="0.0052133599261528401" d="-0.00066505667571211378" /> - <width sOffset="209.57205771512196" a="2.2901203334606706" b="0.015125381145714357" c="0.00036928811257599259" d="-0.0006430596298380029" /> - <width sOffset="210.27478106347982" a="2.3007084999824148" b="0.014691728583183511" c="-0.00096533833822452406" d="-0.00064394001599530043" /> - <width sOffset="212.31897205898821" a="2.3212067267140393" b="0.0026725277663978298" c="0.34362977821878593" d="-0.91684229172631537" /> - <width sOffset="212.56869266733969" a="2.3290253114662276" b="0.0027714950103867155" c="0.0040464593873460238" d="-0.00060709546283558939" /> - <width sOffset="217.06364438216275" a="2.3681045075166764" b="0.0023504277092373915" c="0.0086909055398509544" d="-0.0029790441642946483" /> - <width sOffset="219.06140137481324" a="2.3837335227404166" b="0.001406671619118486" c="0.019981621716155612" d="-0.0093237675917209571" /> - <width sOffset="220.52449657735457" a="2.3993634557405059" b="0" c="0.0036182119317328064" d="-0.0004228333626664012" /> - <width sOffset="225.71604841438895" a="2.4377178153276624" b="0.0033793882405749208" c="-0.0026228438500685877" d="-0.00040701253131156229" /> - <width sOffset="225.96588348075215" a="2.4383920465064026" b="0.0019926173181254651" c="0.35201111059251333" d="-0.93848889887266929" /> - <width sOffset="226.21571881713842" a="2.4462266621522195" b="0.0021473033541098505" c="0.0029151134811197556" d="-0.00032932528384080589" /> - <width sOffset="230.30095068857315" a="2.4811965282737507" b="0.0094766853647089803" c="-0.0011208476525198642" d="-0.00033122848857721523" /> - <width sOffset="232.46160015587779" a="2.4930987194770813" b="-5.7597121175196123e-06" c="3.1387194907207686e-06" d="-2.2777748636200878e-07" /> - <width sOffset="240.20649408999213" a="2.4931365646955879" b="1.8697950112944728e-06" c="0.00015672812200820057" d="-1.3683915616813235e-05" /> - <width sOffset="240.3140355011198" a="2.4931385613418868" b="3.5104552009466994e-05" c="0.00014766619907375452" d="-1.3570617141219357e-05" /> - <width sOffset="248.08942272730371" a="2.4959597239561466" b="-0.00012987370253333443" c="2.8752512590594697e-05" d="-3.7933857865488467e-06" /> - <width sOffset="250.32712031366646" a="2.4957705739322256" b="-5.8178600177268653e-05" c="2.1584428463099177e-06" d="-4.6581974831804468e-06" /> - <width sOffset="257.59853151962136" a="2.4936707466315777" b="-0.0007656732580317672" c="-0.00027542586993686418" d="6.1186163630588659e-05" /> - <width sOffset="260.34020512621311" a="2.4907621639875419" b="-0.0008961612122732667" c="0.00021901937546369219" d="6.1240989685757571e-05" /> - <width sOffset="260.41775151113143" a="2.4906940155434407" b="-0.00086108808330010789" c="0.00030159234628574958" d="-1.9639133347706486e-05" /> - <width sOffset="268.91292915138058" a="2.4931038820929921" b="1.1119562000353779e-05" c="6.0379625639973001e-05" d="2.9849708531247411e-06" /> - <width sOffset="270.35328993875976" a="2.4932540839884831" b="0.000203634664861787" c="4.0129742802569475e-05" d="-2.4151998840284693e-05" /> - <width sOffset="272.76050706193485" a="2.4936399180915636" b="-2.302367554650811e-05" c="-9.4410355148275222e-06" d="5.4476052902226397e-07" /> - <width sOffset="280.36637475130647" a="2.4931583376026332" b="-7.2096289019461584e-05" c="-2.6596457242371191e-05" d="6.6907254332445456e-06" /> - <width sOffset="284.75427220718689" a="2.4928951604209377" b="8.0961195294874076e-05" c="-0.00014905285635299201" d="1.0254720412144758e-05" /> - <width sOffset="290.37945956385312" a="2.4904594449024424" b="-0.00062247715702276238" c="8.626274300214292e-06" d="1.2369073991635767e-06" /> - <width sOffset="295.26280238215168" a="2.4877694285268213" b="-0.00044973731787693828" c="0.0011452521780704553" d="-0.00016338325453920584" /> - <width sOffset="299.13508800824377" a="2.4937139303972353" b="0.0010701521066533923" c="-1.3465527614616616e-05" d="-7.4198021038575054e-05" /> - <width sOffset="300.39254437639977" a="2.4948907814742078" b="0.00068432252225782142" c="-0.00017548236910081553" d="6.84787053034085e-06" /> - <width sOffset="310.40562918894642" a="2.491023557545339" b="-0.00077017630501162882" c="3.1150424487602659e-05" d="6.0195402932181458e-06" /> - <width sOffset="315.56139784674457" a="2.4887057260580834" b="3.1065824956544308e-05" c="0.00031253095540709436" d="-3.6202353926528157e-05" /> - <width sOffset="320.41871400149307" a="2.4920814952792725" b="0.00050476623316122061" c="-0.00028426692421298027" d="-2.3566289842220064e-05" /> - <width sOffset="321.30885764393344" a="2.492288947664588" b="-5.7329210082526089e-05" c="5.4228003630886793e-05" d="-4.2022028358547998e-05" /> - <width sOffset="322.81962147975139" a="2.4921812077071595" b="-0.00018121195791813904" c="-0.00022565724761370443" d="2.4804003168005373e-05" /> - <width sOffset="330.38205568789829" a="2.488633073089753" b="0.000661405282963655" c="7.0501499206053822e-05" d="-2.1331906048154278e-05" /> - <width sOffset="330.43179881403972" a="2.4886661452779748" b="0.00066826086332518147" c="0.00015847510642675488" d="-2.6628197550903224e-05" /> - <width sOffset="336.12982394909511" a="2.4926929695761428" b="-0.00011940110550821533" c="0.00019812325452529548" d="-1.8466696124591292e-05" /> - <width sOffset="340.44488362658637" a="2.4943830381277694" b="0.00055889098541979463" c="1.8919278055089681e-06" d="-4.3056216152422074e-06" /> - <width sOffset="345.65243827491054" a="2.4967367526515751" b="0.00022830800100487542" c="-7.7072579758134495e-05" d="8.461119794244617e-06" /> - <width sOffset="350.24323577507016" a="2.4969791699988084" b="5.5623790871587708e-05" c="-0.00021468585096901411" d="1.454231317273135e-05" /> - <width sOffset="350.45796843913303" a="2.496981359042409" b="-3.4564695266095947e-05" c="-0.00017972448570243718" d="1.5521222558290762e-05" /> - <width sOffset="358.24045548480944" a="2.4931430935037477" b="-1.174512743123057e-05" c="-0.00051599019488111138" d="6.4274784702909383e-05" /> - <width sOffset="360.47105325167968" a="2.4912629042550423" b="-0.0013542679033495212" c="-9.9937271450370349e-05" d="6.6326554762374292e-05" /> - <width sOffset="361.03686311663284" a="2.4904766664313494" b="-0.0014036573819178281" c="0.0006388369297040601" d="-5.1068542711222316e-05" /> - <width sOffset="369.20784335058454" a="2.4937996364056341" b="-0.0011925707282315918" c="0.00031590167686817424" d="8.5669576030153097e-05" /> - <width sOffset="370.45746189133752" a="2.492969843322002" b="-1.7264641472523878e-06" c="-0.00045777008394417716" d="4.0332758143780346e-05" /> - <width sOffset="370.48413806422639" a="2.4929694722746696" b="-2.6063467331083768e-05" c="-0.00042494832050569465" d="5.6190011198241704e-05" /> - <width sOffset="375.68123439115999" a="2.4892437815830082" b="0.00010998643949368695" c="0.00062785367476230446" d="-0.00011292921104252931" /> - <width sOffset="378.89411555854804" a="2.4923329090056896" b="0.00064725388479163143" c="-9.8740248958900201e-05" d="6.3660325695738873e-06" /> - <width sOffset="380.49722287677304" a="2.4931429961237681" b="0.00037975266827793572" c="-7.296831982132243e-05" d="3.3974648363465707e-06" /> - <width sOffset="391.3906023636556" a="2.493012751278644" b="-5.0272964415357113e-07" c="0.00010314969190661517" d="-5.9322177874174915e-06" /> - <width sOffset="391.48573007784478" a="2.4930136317790961" b="1.8961012187665004e-05" c="-7.364560567754805e-06" d="4.3687923331706937e-07" /> - <width sOffset="400.52339250186634" a="2.4929059625659127" b="-7.10378738632536e-06" c="-2.5206144956416908e-06" d="3.5044545685382933e-07" /> - <width sOffset="406.48196239635314" a="2.4928482798258011" b="1.8492750299657634e-07" c="-0.0050422285648815401" d="0.00085859269416579454" /> - <width sOffset="406.51589535420135" a="2.4928425137957948" b="-0.00033904466287382347" c="0.0016043423894978349" d="-0.00037880255004785765" /> - <width sOffset="410.29463896187679" a="2.494030811224663" b="-0.0044409024570521288" c="0.0036000780182862376" d="0.0010470971832310673" /> - <width sOffset="410.7945265563601" a="2.492841272952619" b="-5.6663947424175879e-05" c="-0.00083073482894968501" d="0.00020073195041275728" /> - <width sOffset="413.45810784105481" a="2.4905898337392367" b="-0.00020974544769261882" c="0.00026082041397259805" d="-2.1190581165596728e-05" /> - <width sOffset="420.54956212695964" a="2.4946617702596443" b="0.00029250478148403619" c="-0.00018909192670773573" d="-2.2573765330249027e-05" /> - <width sOffset="421.81450541297306" a="2.4946835201418933" b="-0.00029423593878662949" c="4.6369508802767309e-05" d="-4.1282819029220959e-06" /> - <width sOffset="430.56264693950629" a="2.4928942956010331" b="-0.00043075388422076939" c="-6.12357674425616e-05" d="-4.3471717842073789e-06" /> - <width sOffset="431.08944888521688" a="2.4926497438999489" b="-0.00049889141221588372" c="2.2150242989527747e-05" d="5.7203568455542098e-06" /> - <width sOffset="438.53953143989554" a="2.4925277925221332" b="0.00078365429234554247" c="-0.00047237538615793698" d="9.0400266936988669e-05" /> - <width sOffset="440.53918506284606" a="2.4929288089952673" b="-2.1092527451111332e-05" c="-0.00058744059433588785" d="9.3212088794572323e-05" /> - <width sOffset="440.575731752053" a="2.4929272580620818" b="-6.3657045939701645e-05" c="-0.00059254650606246266" d="9.0904275852664315e-05" /> - <width sOffset="445.56173860067054" a="2.4891468992802572" b="0.00080717404893847038" c="0.00024941457987446279" d="-3.6344458088797401e-05" /> - <width sOffset="450.58881656459965" a="2.4948904421641469" b="0.00055938880623487874" c="-0.0003021030006688381" d="-3.5637646733318129e-05" /> - <width sOffset="451.33801565888018" a="2.4951249790351637" b="4.670806061667543e-05" c="-0.00010634287590483935" d="7.5333651603720944e-06" /> - <width sOffset="460.60190137714631" a="2.492420573199758" b="1.5942232482580974e-05" c="0.00010137739503992093" d="7.4741317385849083e-06" /> - <width sOffset="462.57692534850588" a="2.4929050851139518" b="0.00050385128165655001" c="-0.0011149404165547807" d="0.00021675918788998871" /> - <width sOffset="462.82689275162386" a="2.492964751442619" b="-1.2914489541463511e-05" c="-0.00025470053936272339" d="0.00014872175909642511" /> - <width sOffset="464.87503404005702" a="2.4931476364493896" b="0.00081537114847101289" c="-0.00070493034282640809" d="8.4373566819110786e-05" /> - <width sOffset="470.61498618969296" a="2.4905587165224059" b="0.0010624188213224847" c="0.00076858241842490656" d="7.8041568568382405e-05" /> - <width sOffset="471.04177910774786" a="2.4911582153762337" b="0.0017611162165875527" c="-0.00030478267346281576" d="-7.8386665270415787e-05" /> - <width sOffset="472.79158450760201" a="2.4928866732772796" b="-2.5521847513294924e-05" c="0.00012605046193307624" d="-1.2578564520367308e-05" /> - <width sOffset="477.36061661345894" a="2.4942017136528651" b="0.00033856297653552046" c="5.4398786750919339e-05" d="-5.4926352976721598e-06" /> - <width sOffset="480.62807100223961" a="2.4956971221136515" b="0.00051813170793640244" c="-8.1388902376075041e-07" d="-7.4966744502131059e-06" /> - <width sOffset="485.05725967845029" a="2.497324668405569" b="6.9719163464799627e-05" c="-2.4809879399937399e-06" d="-4.8001483043665191e-07" /> - <width sOffset="490.64115581478626" a="2.4975530429003596" b="-2.8884320435445393e-06" c="-9.9454276270759179e-06" d="-1.027026487882863e-07" /> - <width sOffset="500.65424062733291" a="2.4964238673087094" b="-0.00023294873078073602" c="-1.3822296603960946e-05" d="-1.4847106753472969e-07" /> - <width sOffset="504.30567301351783" a="2.4953817504379234" b="-0.00033982976945489307" c="-9.1035514940992961e-05" d="1.3232708414488491e-05" /> - <width sOffset="510.30536383054255" a="2.4929237592806253" b="-3.2144307386735432e-06" c="-1.8352308062409461e-05" d="1.2909431514375367e-05" /> - <width sOffset="510.66732543987956" a="2.4929208035321846" b="-1.1426058414224123e-05" c="-6.5640324890004631e-06" d="1.3623700114215767e-05" /> - <width sOffset="512.38847785053326" a="2.4929511554045023" b="8.7053683435345339e-05" c="-0.0001103773509378689" d="5.8646046906939542e-06" /> - <width sOffset="520.68041025242621" a="2.4894274137318941" b="-0.00053374658640783384" c="3.554237211144522e-05" d="5.9733598659699923e-06" /> - <width sOffset="527.38349122155864" a="2.4892456771385696" b="0.00074791258328477962" c="0.00088549430140555927" d="-0.00015625617300846431" /> - <width sOffset="530.69349506497292" a="2.4957562557390975" b="0.0014740049668641405" c="-0.00065926257737718218" d="-0.00015620514109888214" /> - <width sOffset="531.29267954483498" a="2.4963691639245793" b="0.00051572189214922181" c="-0.0004032200717198348" d="3.7483009642309398e-05" /> - <width sOffset="537.86620731169944" a="2.4929826921374332" b="7.3630263717274511e-05" c="3.7932472110771242e-05" d="-1.798648415247118e-06" /> - <width sOffset="540.70657987751952" a="2.4934566413383852" b="0.00024558201451141968" c="1.6199583030269122e-05" d="-2.8374455384249729e-06" /> - <width sOffset="545.89705051474198" a="2.4947709821524038" b="0.00018441819784178939" c="-4.7162362580109301e-05" d="1.905649977309563e-06" /> - <width sOffset="550.71966469006622" a="2.4947772186543151" b="-0.0001375109812753833" c="-2.0190622230246757e-05" d="1.6565331338634679e-06" /> - <width sOffset="560.73274950261293" a="2.4930390043198987" b="-4.3590490346995031e-05" c="3.1052495208379376e-05" d="1.7343284694703302e-06" /> - <width sOffset="561.39782259561298" a="2.493024258865117" b="1.5263784746344031e-08" c="3.3229186833799764e-05" d="-1.2724270106737965e-06" /> - <width sOffset="570.74583431515953" a="2.4948887258439996" b="0.00028769458331219305" c="-3.063371179749101e-06" d="-1.2429964971775873e-06" /> - <width sOffset="580.75891912770624" a="2.4962144145942995" b="-0.00014752845773009023" c="-2.933994176522565e-05" d="-7.3181697750448189e-06" /> - <width sOffset="582.40384439680076" a="2.4958597821610145" b="-0.00030345653431566801" c="-0.00034636498491061161" d="3.5592166281956372e-05" /> - <width sOffset="589.68264510512211" a="2.4890259213332468" b="0.00031141932289914699" c="0.00023353367476158554" d="-3.1332888310806787e-05" /> - <width sOffset="590.77200394025283" a="2.4896017983238865" b="0.00070867479988787822" c="0.0001344213806199343" d="-2.8317268638368783e-05" /> - <width sOffset="595.68283002838211" a="2.4929700825917029" b="-1.9800989568752835e-05" c="-7.3817574454597905e-05" d="-2.7439727394147983e-05" /> - <width sOffset="596.33179464683087" a="2.4929186441218381" b="-0.00015028011907746266" c="6.1079643612835488e-05" d="-2.2418748546879722e-06" /> - <width sOffset="600.78508875279954" a="2.4932627279818629" b="0.00026034968251394434" c="3.2326407270509244e-05" d="-2.1567788671244359e-06" /> - <width sOffset="610.79817356534613" a="2.4969454811309895" b="0.00025899576711345949" c="-3.2453236897463413e-05" d="-2.1460232075937695e-06" /> - <width sOffset="616.26560989994607" a="2.4970406636703633" b="-0.00028832856043717043" c="-0.022548620839392415" d="0.018721408542142236" /> - <width sOffset="617.06808186437752" a="2.4919633409731521" b="-0.00031001553345414275" c="5.2767935546692841e-05" d="-1.8382695122685444e-06" /> - <width sOffset="620.81125837789284" a="2.4914458374191684" b="7.7538354005660982e-06" c="3.1904626774746536e-05" d="-1.825260449935828e-06" /> - <width sOffset="630.82434319043944" a="2.4928898599053264" b="9.7669239065494495e-05" c="-2.6032737702435424e-05" d="-5.9416875797684988e-07" /> - <width sOffset="632.56884362735445" a="2.4929778645336267" b="1.4163256163532856e-06" c="-0.00029573260420720358" d="8.0427283538496034e-05" /> - <width sOffset="632.71245744626231" a="2.4929722067012046" b="-7.8549830708964964e-05" c="0.00024666715822039913" d="-4.07848498012475e-05" /> - <width sOffset="636.67252717074166" a="2.4939965781000009" b="-4.3694209018348574e-05" c="-0.00071325260153334131" d="0.00023836901311857865" /> - <width sOffset="638.67263300813488" a="2.4929631275494071" b="-3.612468705086044e-05" c="-0.00069304075420575982" d="0.00016096053140241434" /> - <width sOffset="640.83742800298614" a="2.4912700403240056" b="-0.00077376093882705306" c="0.00034955761744848634" d="0.00016010288381027883" /> - <width sOffset="641.68206314642782" a="2.49096234520756" b="0.00015939264470630219" c="4.9302222843062996e-05" d="-6.6533447664218752e-06" /> - <width sOffset="648.03348242963989" a="2.4922588750339623" b="-1.9527478350863129e-05" c="0.00021504222396739894" d="-4.3394879170345369e-05" /> - <width sOffset="650.85051281553285" a="2.4929402752050773" b="0.00015893243407861157" c="-0.00015818258913319534" d="-4.0989921329385807e-05" /> - <width sOffset="651.28369052430685" a="2.4929761075757915" b="-1.1843154684839036e-06" c="0.00070118813843791667" d="-0.00011385290785272809" /> - <width sOffset="652.61479134897604" a="2.493948396680902" b="0.0012603361130917947" c="-0.0012095760169730434" d="0.00016733520921494892" /> - <width sOffset="657.49591409878622" a="2.4907418337909046" b="0.0014126225335621277" c="8.3856243539499593e-05" d="-0.00011814166707258973" /> - <width sOffset="659.74606988417372" a="2.492999048610498" b="-4.5232846854574831e-06" c="0.0001356580262766243" d="-5.6020331378138291e-05" /> - <width sOffset="660.86359762807945" a="2.4930852282260707" b="8.8793890358367534e-05" c="-4.5190576297736189e-05" d="-4.9923955489555481e-05" /> - <width sOffset="661.47833899370039" a="2.4931111375854496" b="-2.3366971554634412e-05" c="3.4294636313650609e-06" d="-9.9270651473193468e-08" /> - <width sOffset="670.87668244062615" a="2.4931120383420522" b="1.4790192244967652e-05" c="-1.6619631377611581e-07" d="-1.2584636977576954e-07" /> - <width sOffset="680.88976725317275" a="2.4931171296193151" b="-2.6390859466650352e-05" c="-5.0811980350035985e-06" d="1.0739719143953397e-08" /> - <width sOffset="684.43388976987865" a="2.492960251345739" b="-6.2002937667687954e-05" c="0.00012609344273304722" d="1.6602222183683209e-07" /> - <width sOffset="684.68391143533631" a="2.4929526340689421" b="1.0803820224489225e-06" c="-0.00023170839939432516" d="2.3718553645163242e-05" /> - <width sOffset="688.94542160154492" a="2.4905849080741733" b="-0.00068155484996368734" c="0.0025052476584675248" d="-0.00050869907372549992" /> - <width sOffset="690.90285206571946" a="2.4950345300580059" b="0.0032788479000726771" c="-0.00048132596983062402" d="-0.00050747082528868482" /> - <width sOffset="692.40397113246479" a="2.4971553210367032" b="-0.0015967483019591283" c="-0.00041493312746746945" d="0.00016105360370829359" /> - <width sOffset="695.27331095370232" a="2.4929621818784806" b="0" c="3.3964709554626469e-05" d="-4.1622797186016393e-06" /> - <width sOffset="700.91593687826605" a="2.4932958099259395" b="-1.4271009140478033e-05" c="-3.2675649583885293e-05" d="-3.8767066595111278e-06" /> - <width sOffset="703.0165715660271" a="2.4930857102755715" b="-0.00020287005112910048" c="-0.00016517100693167722" d="0.00039139108507553765" /> - <width sOffset="703.51661867786356" a="2.4929919028751186" b="-7.4457987214816617e-05" c="-0.0011593983787230432" d="0.00027710601246346754" /> - <width sOffset="706.64161097020565" a="2.4898935701092473" b="0.000797620180229022" c="0.0058236073113864329" d="-0.0025066810942488624" /> - <width sOffset="708.19894891301419" a="2.4957919680577749" b="0.00069789742640727272" c="-8.2644958049096006e-05" d="7.5371727027322927e-07" /> - <width sOffset="710.92902169081276" a="2.4970966380470401" b="0.00026349696287273857" c="-7.5769912917759074e-05" d="-9.4404360089548361e-09" /> - <width sOffset="713.24214724039552" a="2.4973006120715757" b="-8.7185214618689207e-05" c="-0.0019525372040169098" d="0.00037802929452337677" /> - <width sOffset="716.57667807441339" a="2.4893156219804737" b="-0.00049874432015760992" c="8.7377856561868283e-05" d="-2.6466575431500742e-06" /> - <width sOffset="720.94210650335935" a="2.4885833658792711" b="0.00011282745461022601" c="5.3395661566304756e-05" d="-2.5623633768459728e-06" /> - <width sOffset="730.95519131590606" a="2.4924942305373712" b="0.00041141601853525098" c="-2.3358265944734265e-05" d="-2.5282439606843412e-06" /> - <width sOffset="738.72101168523727" a="2.4930964440485921" b="-0.00040879592892376689" c="0.00053017030334081726" d="-0.00011959316806636302" /> - <width sOffset="739.22106713589528" a="2.4930096412716809" b="3.1718399297339574e-05" c="0.00078421245671589119" d="-0.00013325154228864376" /> - <width sOffset="740.96827612845277" a="2.494748322557621" b="0.0015517378669241456" c="8.5487338205287482e-05" d="-0.00013526404918631218" /> - <width sOffset="743.30981652130299" a="2.4971139401907596" b="-0.00027279983937596771" c="-0.001133077690486578" d="0.00023278213504393362" /> - <width sOffset="746.70184453255752" a="2.4922366318555174" b="7.5409429725828946e-05" c="8.9662105543632858e-05" d="-1.5451415035821413e-05" /> - <width sOffset="750.95235448866856" a="2.4929905062874704" b="1.5428165551822958e-07" c="-8.1776855799286117e-05" d="-3.9579925879932111e-08" /> - <width sOffset="750.98136094099937" a="2.4929904419567244" b="-4.5899312506647366e-06" c="-7.7874660351780886e-05" d="2.3821953109396128e-07" /> - <width sOffset="756.85730152818041" a="2.4903230476819775" b="-0.00089508889922243365" c="0.00014702537333002001" d="-5.148925940655205e-06" /> - <width sOffset="760.99444575354607" a="2.4887718149154407" b="5.7054981790721814e-05" c="8.3351782456654884e-05" d="-4.9206502567001288e-06" /> - <width sOffset="771.00753056609267" a="2.4927601253747147" b="0.00024621116421015858" c="-6.5802995300026984e-05" d="-4.5372202975077045e-06" /> - <width sOffset="772.60926804044198" a="2.4929670242332804" b="4.9134451887613423e-07" c="0.00011047692152349045" d="-7.0317959501128376e-06" /> - <width sOffset="781.02061537863938" a="2.4966027968899294" b="0.00036649605588504964" c="-6.6932904893482914e-05" d="-7.0536506981509552e-06" /> - <width sOffset="783.59825707635036" a="2.4969819702630431" b="-0.00011916041229474814" c="2.5227587996241809e-05" d="-3.1557197846394962e-06" /> - <width sOffset="787.99138722105045" a="2.4966778055679493" b="-8.0216575048538226e-05" c="-0.00011590482069882927" d="6.6631589928277336e-06" /> - <width sOffset="791.03370019118597" a="2.4955486105687257" b="-0.00060043808710593034" c="-5.4917157031076892e-05" d="6.6547258997921503e-06" /> - <width sOffset="800.50107011179875" a="2.4905887617833127" b="0.00014913090399920723" c="5.5385682788981935e-05" d="-4.7602023769434193e-06" /> - <width sOffset="801.04678500373268" a="2.490685865246169" b="0.00020532765526412242" c="4.553094303856713e-05" d="-4.5180479990755409e-06" /> - <width sOffset="809.63747104706863" a="2.49294554437025" b="-1.2682562178758811e-05" c="2.1505668479416195e-05" d="-8.7641086614895652e-06" /> - <width sOffset="810.63761512343592" a="2.4929456039493472" b="4.0350689625417296e-06" c="-1.971193797450273e-05" d="-3.0997404088394386e-06" /> - <width sOffset="811.05986981627939" a="2.4929435597848029" b="-1.426988974691755e-05" c="-2.0168164900219633e-05" d="-8.2691889405800546e-07" /> - <width sOffset="821.07295462882598" a="2.4899484071254152" b="-0.00066688627874149451" c="-4.2932999990637701e-05" d="-7.2440540597748388e-07" /> - <width sOffset="821.73202722105839" a="2.4894900241759261" b="-0.0007244222003866237" c="0.00017745483261153691" d="-7.061773901047444e-06" /> - <width sOffset="831.08603944137269" a="2.4924609014427901" b="0.00074174351425548911" c="-2.0674733893442232e-05" d="-7.1094239368665101e-06" /> - <width sOffset="836.20794510625876" a="2.4947623858871513" b="-2.9568685124532518e-05" c="-0.00059200069688579145" d="0.00013391842170553184" /> - <width sOffset="839.20723608464948" a="2.4929614469881782" b="3.3355085162670422e-05" c="-0.00070283112483754981" d="0.00019989518820225501" /> - <width sOffset="840.37643810796396" a="2.4923591523312227" b="-0.00079035788213457144" c="0.0011461657982950314" d="-0.00017748073438622218" /> - <width sOffset="841.09912425391929" a="2.4923195971627354" b="0.00058819701161723251" c="0.00076118246998312382" d="-0.00017847598323244673" /> - <width sOffset="844.64214005359281" a="2.4960209024368165" b="-0.00073924610090910252" c="-0.00051667144824991723" d="0.00014125993363953084" /> - <width sOffset="847.64145603521558" a="2.4929671569371266" b="-2.6288797359970547e-05" c="-0.0009752585819898373" d="0.00019608562317513636" /> - <width sOffset="850.70486904677682" a="2.4893714966305946" b="-0.00048103228860463601" c="0.002409806524210798" d="-0.00063521927275323245" /> - <width sOffset="851.11220906646599" a="2.4895324688620892" b="0.0011659910127694391" c="0.0016610672912717884" d="-0.00063811096054675119" /> - <width sOffset="853.37081022187965" a="2.4932873873179506" b="-0.0010961784518921075" c="0.00098740465309381719" d="0.0001339140586218513" /> - <width sOffset="853.87070230954589" a="2.4930028894262461" b="-8.5947093642847256e-06" c="-0.00013186725865618331" d="1.2955510502040594e-05" /> - <width sOffset="859.8562320611112" a="2.4910052867956205" b="-0.00019473113724366575" c="0.00032084750082629756" d="-2.4974081486684528e-05" /> - <width sOffset="861.12529387901259" a="2.4912238483912805" b="0.00049895587245466313" c="0.00022569841879047916" d="-2.8400265755869926e-05" /> - <width sOffset="867.89335936389932" a="2.4961345861632518" b="-0.00034872901807064772" c="2.7342056736709362e-06" d="-8.5714310976688183e-08" /> - <width sOffset="871.1383786915593" a="2.4950288164521224" b="-0.00033369167132784526" c="4.1740196571331898e-06" d="8.9050765422459037e-07" /> - <width sOffset="880.89085127340195" a="2.4929974950657385" b="1.8128295724227617e-06" c="-8.4748251648734358e-06" d="9.7860335017170617e-08" /> - <width sOffset="881.151463504106" a="2.4929973936440648" b="-2.5845169678334785e-06" c="-8.773214450517664e-06" d="9.803064457568514e-08" /> - <width sOffset="891.1645483166526" a="2.4921903117540998" b="-0.00014879219123013722" c="-5.4340506710843142e-06" d="1.1386220516217769e-07" /> - <width sOffset="891.96577717197499" a="2.4920676652386549" b="-0.00015728074005903598" c="2.4642020081796224e-07" d="-8.7860747324638859e-07" /> - <width sOffset="898.0159792976267" a="2.4909305223259066" b="-0.00025078309272369876" c="-9.8799109589405178e-05" d="1.1755763566403873e-05" /> - <width sOffset="901.17763312919931" a="2.4895215615923645" b="-0.00052298648371095933" c="1.2133858318294139e-05" d="1.1976031906980927e-05" /> - <width sOffset="905.65198729498775" a="2.4884972163758512" b="0.00030487079001336397" c="9.2437217623009263e-05" d="-6.5073248639694627e-06" /> - <width sOffset="911.1907179417459" a="2.4919158701429005" b="0.00072995438899383985" c="-1.8646741016509923e-05" d="-6.2280081487758168e-06" /> - <width sOffset="914.41209783704755" a="2.4938656306690472" b="0.00041592840503558041" c="-1.9741843603014884e-05" d="9.6870830600380328e-08" /> - <width sOffset="921.20380275429261" a="2.4958102045514838" b="0.00016117200920299623" c="-1.7937692736273517e-05" d="1.2472004198183783e-07" /> - <width sOffset="931.2168875668392" a="2.4957507772417031" b="-0.00016053727525855302" c="-1.5137022834829499e-05" d="3.1989700893262123e-07" /> - <width sOffset="934.61699419853369" a="2.4950425128425833" b="-0.00025237753455975933" c="-0.00046311020186818106" d="9.4097717809851574e-05" /> - <width sOffset="937.38923901587088" a="2.492788513378537" b="-0.00065056801007657989" c="0.00015184030023310618" d="-5.8997230316773246e-06" /> - <width sOffset="941.22997237938591" a="2.4921954346654136" b="0.00025470364083486857" c="8.291935279926945e-05" d="-6.0511197525786997e-06" /> - <width sOffset="951.24305719193251" a="2.4969845488064371" b="9.5170965284215731e-05" c="-0.00010049995624871499" d="-5.0658666605369264e-06" /> - <width sOffset="952.86914386007436" a="2.4968517859443917" b="-0.00027185716605195726" c="-0.00011028911987197014" d="1.232802614418276e-05" /> - <width sOffset="959.13384352874857" a="2.4938512831676878" b="-0.00020221936495264667" c="-6.1227513510891539e-06" d="3.1635339048150211e-06" /> - <width sOffset="961.25614200447922" a="2.4934247762249502" b="-0.0001854608751748069" c="1.2855269407581404e-05" d="2.3293398342848053e-06" /> - <width sOffset="964.88323434559163" a="2.4930323636448097" b="-2.7339780532932914e-07" c="-6.6555393905468494e-05" d="3.3834808394197823e-06" /> - <width sOffset="971.26922681702592" a="2.4911975770138994" b="-0.00043637370691067528" c="-2.0954840608964953e-06" d="3.3974192599938927e-06" /> - <width sOffset="979.72146190310548" a="2.4894110056467476" b="0.0002563409740288995" c="0.00011348959133400644" d="-1.3709702559159612e-05" /> - <width sOffset="981.28231162957252" a="2.4900354717837674" b="0.00051042050378007184" c="5.6151756425054482e-05" d="-1.0068217274232156e-05" /> - <width sOffset="987.54561357239174" a="2.4929613751935111" b="2.8914500820575808e-05" c="-5.7644965509926633e-06" d="3.6676665479483325e-07" /> - <width sOffset="989.54544661271655" a="2.4929990786294596" b="1.0258904558626437e-05" c="0.00017058337945294872" d="1.0730717815891637e-06" /> - <width sOffset="991.29539644211923" a="2.4935451633432688" b="0.00061714189781916535" c="0.00017199437650598971" d="-8.8313833462207294e-06" /> - <width sOffset="993.68813494829703" a="2.4958855440673782" b="0.0012885327897156715" c="-0.00028221424172899097" d="1.4588622564250977e-05" /> - <width sOffset="1001.3084812546658" a="2.4957721468174316" b="-0.00047113788258882749" c="5.0923982771762896e-05" d="1.4709357832573527e-05" /> - <width sOffset="1003.8998765671621" a="2.49514918697996" b="8.9125018953986612e-05" c="-0.00030307127074647805" d="2.3168949986408754e-05" /> - <width sOffset="1011.3215660672125" a="2.4885884438266856" b="-0.00058093689597556956" c="0.00021019588650450375" d="2.6747015612072534e-05" /> - <width sOffset="1013.2207229623572" a="2.4884265010555895" b="0.00050686619836958088" c="0.00059844262845535788" d="-0.0001101144541541844" /> - <width sOffset="1017.2204870241097" a="2.4929817206952185" b="9.2545422825285502e-06" c="0.0019695788603097814" d="-0.00028445269020583767" /> - <width sOffset="1018.1656292450274" a="2.4945097196960857" b="0.0029700193300785313" c="-0.001431489919032039" d="0.00013935014914524799" /> - <width sOffset="1021.3346508797591" a="2.4939806461081755" b="-0.0019044712734362593" c="-0.00010387647384735632" d="0.00013948687541987781" /> - <width sOffset="1024.8340405183028" a="2.4920214875683682" b="0.0024928751559378831" c="-0.001449119002419413" d="-0.00018739004883637484" /> - <width sOffset="1025.5840082425966" a="2.4929969592216095" b="3.0967036481021996e-06" c="2.3728130186749849e-05" d="-1.8278234812387155e-06" /> - <width sOffset="1031.3477356923058" a="2.493453088335615" b="9.4457727611655545e-05" c="-1.0142932882740849e-05" d="-1.9801906844338314e-06" /> - <width sOffset="1037.7934647310722" a="2.4931102226749555" b="-0.00028311492544628612" c="0.00014147390397438903" d="2.7857742087022201e-06" /> - <width sOffset="1038.7934377969311" a="2.4929713672072111" b="8.182133987263366e-06" c="-7.7349857875507618e-06" d="1.605986849701929e-06" /> - <width sOffset="1041.3608205048524" a="2.4929685668438282" b="2.2216165698643424e-07" c="-4.5738953738853032e-07" d="2.8990940515872518e-08" /> - <width sOffset="1051.3739053173992" a="2.4929540375299641" b="-2.1754129588165416e-07" c="2.2486930835176029e-07" d="-2.6113801169564598e-08" /> - <width sOffset="1056.7929579805016" a="2.4929553065420516" b="-8.096802609240325e-08" c="0.0007590093721038081" d="-9.3068303554940066e-05" /> - <width sOffset="1058.8592432968721" a="2.495374700538707" b="0.0019445037324349454" c="-0.0018683577242257685" d="0.00028478210134742137" /> - <width sOffset="1061.3869901299458" a="2.4929515640090996" b="-0.002042117736899233" c="0.00029041027569262108" d="0.00028497904546826434" /> - <width sOffset="1063.1461613304486" a="2.4918093052153534" b="0.0016254047391790244" c="-0.0004198654350929737" d="-0.00012276453207786823" /> - <width sOffset="1064.3961533787174" a="2.4929452469179809" b="2.9640605547862769e-07" c="0.00028083834368591029" d="-3.2642919137200375e-05" /> - <width sOffset="1069.6003152710264" a="2.4959519337967064" b="0.00027111880460500837" c="-3.4073048335690075e-05" d="2.6286084365507288e-06" /> - <width sOffset="1071.4000749424924" a="2.4963448391930561" b="0.00017401545982573545" c="-2.2994741044730272e-05" d="4.5014367523784836e-07" /> - <width sOffset="1081.413159755039" a="2.4962336880740414" b="-0.00015108438830255082" c="-7.1481696623735871e-06" d="4.8070582683002185e-07" /> - <width sOffset="1091.4262445675859" a="2.4944867737215004" b="-0.00014964545477526682" c="8.0446243692814045e-06" d="4.2637890950065523e-07" /> - <width sOffset="1098.3313621178254" a="2.4939774083690001" b="2.2442767645403528e-05" c="-0.00012072996212085543" d="1.514442380143181e-05" /> - <width sOffset="1101.4393293801324" a="2.4933356285490555" b="-0.00028914588138100224" c="1.368426366694804e-05" d="2.2534096812912919e-05" /> - <width sOffset="1103.3315029685073" a="2.4929901676400705" b="4.6780157614691002e-06" c="-0.00030866616949078759" d="4.0129216708401009e-05" /> - <width sOffset="1106.749018543637" a="2.4910028558731119" b="-0.00069900781719057798" c="0.00024720871866871867" d="-1.208833500196681e-05" /> - <width sOffset="1111.452414192679" a="2.4919261102683326" b="0.00082418108130398785" c="7.6890099844773607e-05" d="-1.176877403578141e-05" /> - <width sOffset="1114.683568533633" a="2.4949949141046917" b="0.00095245798537571405" c="-0.0016818132033870111" d="0.00039213075238390976" /> - <width sOffset="1117.1836592967463" a="2.4929917601097724" b="-0.00010392784275524425" c="-0.0006708838325925156" d="0.00047297371069787329" /> - <width sOffset="1118.6399742633489" a="2.4928784032288975" b="0.00095135936456622761" c="-0.00042915434382672214" d="4.7315240369409561e-05" /> - <width sOffset="1121.4654990052259" a="2.4932076295037584" b="-0.00034057661948018187" c="-2.7570589057484758e-05" d="4.71007857022645e-05" /> - <width sOffset="1124.1340290980831" a="2.4929975030891649" b="0.0005184990410644645" c="-0.00090855066557053504" d="0.00040679814915413006" /> - <width sOffset="1125.1340799153218" a="2.4930142456403122" b="-7.8176145378224329e-05" c="-0.0011309763196048284" d="0.00031356795577967925" /> - <width sOffset="1127.5118468012499" a="2.490649481801734" b="-0.00013804387862123785" c="0.00010103826542269499" d="-5.9445166039001823e-06" /> - <width sOffset="1131.4785838177725" a="2.4913206987866792" b="0.00038292962454268206" c="3.0805094420800294e-05" d="-6.0965521578658932e-06" /> - <width sOffset="1138.3404713176158" a="2.4934290240816468" b="-5.5485811776423075e-05" c="-0.00011306919238485608" d="2.7094367016292651e-05" /> - <width sOffset="1141.3407022723766" a="2.4929764912878216" b="-2.2926437326007375e-06" c="-0.00020995736048245935" d="1.6794445046730102e-05" /> - <width sOffset="1141.4916686303191" a="2.4929714178546858" b="-6.4537361256214107e-05" c="-0.00019518664271750926" d="1.8243693264994261e-05" /> - <width sOffset="1150.8406298982554" a="2.4902155796603767" b="0.0010695426832609718" c="-7.1814993790218697e-05" d="1.5471317688167937e-06" /> - <width sOffset="1151.5047534428656" a="2.4908946665945528" b="0.00097620176099898778" c="-5.721061408388875e-05" d="7.4029691253699025e-07" /> - <width sOffset="1161.5178382554125" a="2.4956766213253525" b="5.3162951783417749e-05" c="-3.0905510025429404e-05" d="1.1166516317117961e-06" /> - <width sOffset="1171.5309230679591" a="2.4942313430433272" b="-0.00022988330063138937" c="6.5575403795654304e-07" d="1.2193414621477856e-06" /> - <width sOffset="1179.3435768215738" a="2.4930568316839592" b="3.6399359777083754e-06" c="-0.0004315914390784928" d="3.2998477231948497e-05" /> - <width sOffset="1180.2045263787891" a="2.4927611136559937" b="-0.00066613818708680355" c="0.00016261669891760329" d="-1.1129846236883879e-05" /> - <width sOffset="1181.5440078805057" a="2.492133854003538" b="-0.00029040193434784782" c="0.00011952663582667178" d="-7.8680795624986181e-06" /> - <width sOffset="1189.1832990969608" a="2.493383072132854" b="0.00015828128062887227" c="-0.00034065136210025758" d="9.029370130747612e-05" /> - <width sOffset="1191.4335920020428" a="2.4930431582374011" b="-3.1567529702111741e-06" c="-0.00042793818089721745" d="6.1005150654217315e-05" /> - <width sOffset="1191.5570926930523" a="2.4930363561975257" b="-0.00010606664637806884" c="-0.00041102277266392501" d="6.3077857301677761e-05" /> - <width sOffset="1196.2778782808555" a="2.4900118646693352" b="0.00023045726232794766" c="4.3639535410875527e-06" d="2.482518937691687e-07" /> - <width sOffset="1201.5701775055991" a="2.4913905390815954" b="0.0002975073963878954" c="4.9375894376935638e-06" d="-8.812602115824457e-07" /> - <width sOffset="1211.5832623181457" a="2.4939798337343388" b="0.00013131801640295804" c="-2.0312098216254277e-05" d="-8.2755949193319858e-07" /> - <width sOffset="1214.0353603448532" a="2.494167504623694" b="1.677569325525942e-05" c="-1.5470845486277442e-05" d="5.4822463507875606e-07" /> - <width sOffset="1221.5963471306923" a="2.4936468703969226" b="-0.00012315044834139459" c="-3.6182134722415603e-06" d="5.8586901164579148e-07" /> - <width sOffset="1230.6785331765316" a="2.4926688489767903" b="-4.389486858869928e-05" c="3.8658684196767542e-05" d="-2.8462234470524661e-06" /> - <width sOffset="1231.6094319432391" a="2.4926591918272516" b="2.068039726515179e-05" c="2.386531256712763e-05" d="-2.5736998214773705e-06" /> - <width sOffset="1237.6217179606238" a="2.4930868604858185" b="2.8551482422914257e-05" c="-3.3609471931505874e-05" d="2.2420202417783122e-06" /> - <width sOffset="1238.1218136610112" a="2.4930930137881688" b="-3.3822634675917672e-06" c="5.6989728232975705e-07" d="-1.490347099869685e-07" /> - <width sOffset="1241.6225167557857" a="2.4930817638199843" b="-4.8714074145233296e-06" c="5.7046882526989851e-06" d="5.3883124256146709e-07" /> - <width sOffset="1242.122581999319" a="2.4930808217230105" b="1.2382541375299534e-06" c="-3.4044277561388561e-05" d="1.1301518420518348e-06" /> - <width sOffset="1251.6356015683323" a="2.4909846310812105" b="-0.00033966161409748971" c="-3.1108180401017449e-06" d="1.4047325788046306e-06" /> - <width sOffset="1254.8684148980988" a="2.4899015179260235" b="-0.00031573207593747006" c="8.2654402098462557e-05" d="-2.5719000260327689e-06" /> - <width sOffset="1261.6486863808789" a="2.4907588941864347" b="0.00045039970311511993" c="3.0381698169579651e-05" d="-2.7123891552463102e-06" /> - <width sOffset="1271.6617711934257" a="2.495591859984212" b="0.00024298113818202764" c="-5.0518669405507513e-05" d="-2.6215733748483439e-06" /> - <width sOffset="1279.0996467913412" a="2.4935256099228074" b="-0.00094361401354017046" c="0.0006295699419664577" d="-0.00012882725289706983" /> - <width sOffset="1281.1000889816594" a="2.4931260563203486" b="2.8611829490781185e-05" c="0.00065001439941276325" d="-0.00015636304038244058" /> - <width sOffset="1281.6748560059723" a="2.4933275483876338" b="0.00062085857688202843" c="0.0003790024225483157" d="-0.00015799054462464659" /> - <width sOffset="1284.5812969234414" a="2.4944546591635159" b="-0.0011798725401053053" c="0.0002687682117690847" d="-2.1770941743640593e-05" /> - <width sOffset="1291.6879408185189" a="2.4918297445853232" b="-0.00065837682839584629" c="-0.00018348893187104131" d="-2.8284180969795304e-05" /> - <width sOffset="1293.7185807233554" a="2.489499368927456" b="-0.0017534660495829642" c="0.001403274406810557" d="-0.00018705793084302128" /> - <width sOffset="1297.9695673088095" a="2.4930341999144581" b="3.6227144608895825e-05" c="0.00078369286330959656" d="-0.000203152806420924" /> - <width sOffset="1301.3824229369416" a="2.4942103329652925" b="-0.0017132295084328693" c="0.00052664637557654358" d="-4.277499889795767e-05" /> - <width sOffset="1301.7010256310657" a="2.4937165687083276" b="-0.0013906735724815685" c="0.00048614634886462834" d="-4.6957050151034466e-05" /> - <width sOffset="1306.6337437653237" a="2.493049685424106" b="-2.2263476088367019e-05" c="-4.5735597218868728e-05" d="-1.1503298987395276e-06" /> - <width sOffset="1311.7141104436123" a="2.4916053003988532" b="-0.00057604116178809541" c="-5.0252056431745669e-05" d="6.7876518825564841e-07" /> - <width sOffset="1311.9079026518759" a="2.4914917858129897" b="-0.00059544160185289591" c="8.2987921197345466e-05" d="-3.2776261978601427e-06" /> - <width sOffset="1320.9322764108581" a="2.490467923340689" b="0.00010160347144828538" c="7.480658543927177e-05" d="-3.699916114318125e-06" /> - <width sOffset="1321.7271952561589" a="2.4905941013446817" b="0.00021351991423496954" c="6.3222246496321712e-05" d="-3.5975444140636353e-06" /> - <width sOffset="1331.7402800687055" a="2.4954591899953007" b="0.00039752978294179406" c="-3.8547508110348611e-05" d="-6.0941816963363234e-06" /> - <width sOffset="1335.1320118841957" a="2.4961262773466366" b="-7.4275395967104106e-05" c="-0.00014708420920584816" d="1.3387934745694436e-05" /> - <width sOffset="1341.7533648812523" a="2.4930724179283938" b="-0.00026119415734662116" c="0.00014778349994942931" d="7.9522507872059954e-06" /> - <width sOffset="1342.6287055763032" a="2.49296235253549" b="1.5807218356950203e-05" c="-0.00046697509266089979" d="0.00010444002624697119" /> - <width sOffset="1343.7788332117907" a="2.4925217143191167" b="-0.00064389691196075315" c="0.00075853318736852405" d="-0.00013137044392517772" /> - <width sOffset="1348.0047653414495" a="2.4934325441455343" b="-0.0012711155265178495" c="0.00073876769387464728" d="9.8976837465529713e-05" /> - <width sOffset="1348.7544740531637" a="2.4929365190808701" b="3.4993253968688617e-06" c="-4.8046038890339063e-05" d="3.1349345865251784e-06" /> - <width sOffset="1351.7664496937989" a="2.4925968463731358" b="-0.00020060731820145867" c="-2.0359282322965339e-05" d="2.607934668116811e-06" /> - <width sOffset="1361.7795345063455" a="2.4911650739862106" b="0.00017610344069633109" c="3.5222284805301178e-05" d="1.8033800592499824e-05" /> - <width sOffset="1363.0537797520437" a="2.4914839752264299" b="0.00035371159586949984" c="4.6207740021969742e-05" d="-3.413114075061436e-06" /> - <width sOffset="1368.4576852331884" a="2.494206157133477" b="0.00055410485233020786" c="-0.00011916454381658081" d="6.1160423325879766e-06" /> - <width sOffset="1371.7926193188923" a="2.4949555843996425" b="-3.6643015478158084e-05" c="-6.0909144525893541e-05" d="4.5854162029172446e-06" /> - <width sOffset="1380.9536317561087" a="2.4930335554923415" b="1.8595796383181346e-06" c="-9.0837823397783276e-05" d="5.8287212322558985e-06" /> - <width sOffset="1381.8057041314389" a="2.49297279505533" b="-0.00014024578747425529" c="-7.7860610475474835e-05" d="5.897674210085982e-06" /> - <width sOffset="1391.372316854955" a="2.4896689415813302" b="-1.070357224393771e-05" c="1.044537876810601e-05" d="-2.9451999433604274e-07" /> - <width sOffset="1391.8187889439855" a="2.4896662186770904" b="-1.5525585725627029e-06" c="1.6104882926305907e-05" d="-4.6235103323211619e-07" /> - <width sOffset="1401.8318737565321" a="2.4908012100718375" b="0.00018189802465473328" c="1.5101738866860347e-06" d="-2.1018906237681366e-07" /> - <width sOffset="1411.8449585690789" a="2.4925629680462187" b="0.00014891917933129901" c="-8.0328634018712931e-06" d="-1.8552943802923621e-07" /> - <width sOffset="1415.9200382307158" a="2.4930238745046829" b="7.420720459814698e-05" c="-0.00035817393400702194" d="3.6523019893944879e-05" /> - <width sOffset="1421.8580433816255" a="2.4884822907717652" b="-0.00031607547132053975" c="0.00029235111526231737" d="3.735337721422699e-05" /> - <width sOffset="1423.9022050477843" a="2.4893768612531897" b="0.001347404535080672" c="6.3663554778055923e-05" d="-4.3467590130937209e-05" /> - <width sOffset="1427.6515097890274" a="2.4930326667881006" b="-8.3163735468084685e-06" c="0.00017050840992957779" d="-1.2699880494090221e-05" /> - <width sOffset="1431.8711281941721" a="2.4950793521854404" b="0.00075227352108646122" c="1.2873072339101055e-05" d="-1.2249397554194077e-05" /> - <width sOffset="1437.3288667834508" a="2.4975771390600094" b="-0.00020182587778255334" c="-5.3402301318182388e-05" d="4.0903248194814798e-06" /> - <width sOffset="1441.8842130067187" a="2.4959362451055735" b="-0.00043372063091541005" c="5.4650331434743501e-06" d="4.1154216689173221e-06" /> - <width sOffset="1444.9032619546967" a="2.4947898796949648" b="-0.00028819026057493253" c="1.5263857151557976e-05" d="-2.6203813522448548e-07" /> - <width sOffset="1451.8972978192655" a="2.4934312721801835" b="-0.00011313232681756449" c="5.6476061540298308e-06" d="8.7448991800276674e-08" /> - <width sOffset="1460.901281333299" a="2.492934326717025" b="9.838498893330154e-06" c="-0.00016955221567510682" d="1.3369642222780952e-05" /> - <width sOffset="1461.9103826318121" a="2.4927853402260585" b="-0.00029150988744542196" c="-0.00014562969798977707" d="3.3874108292341451e-06" /> - <width sOffset="1462.9852847714139" a="2.4923079399644124" b="-0.00059284364347082048" c="-0.00039501057352654592" d="8.7810894463307175e-05" /> - <width sOffset="1465.9238600046588" a="2.489383043348913" b="-0.00063957988419401524" c="9.4270452551859719e-05" d="-3.0515092100969134e-07" /> - <width sOffset="1471.9234674443587" a="2.4888732076793199" b="0.00045863954558822938" c="8.609312701502227e-05" d="-2.3270763162310873e-07" /> - <width sOffset="1475.7224977041017" a="2.4918453841579904" b="0.0011027045848839817" c="-7.2546489636234816e-05" d="6.6282048549471871e-07" /> - <width sOffset="1481.9365522569055" a="2.4960553514653059" b="0.00027787228963906504" c="-6.6735571693335362e-05" d="3.643470262223531e-06" /> - <width sOffset="1483.8693809113997" a="2.4963694269166492" b="6.0729558600416568e-05" c="-2.6466856817530033e-05" d="5.8460476806431459e-07" /> - <width sOffset="1491.9496370694521" a="2.4954405185400894" b="-0.00025248092472422809" c="-1.2569579437458424e-05" d="6.1445342361734485e-07" /> - <width sOffset="1501.9627218819987" a="2.4922690247030621" b="-0.00031938271149164728" c="7.6687624195769704e-06" d="-8.0972054633269151e-08" /> - <width sOffset="1506.0184871585523" a="2.4910944266561081" b="-0.00026117309515223674" c="0.0002782471545788968" d="-3.0738686474182325e-05" /> - <width sOffset="1511.5187652879231" a="2.4929608048629497" b="9.8824500226290905e-06" c="0.00025754259749301745" d="-5.2108307776776704e-05" /> - <width sOffset="1511.9758066945453" a="2.4930141440361213" b="0.0002126434916575313" c="0.00017573089859392217" d="-4.8348676524429629e-05" /> - <width sOffset="1514.4249552917199" a="2.4938787505906781" b="0.00020339187528252992" c="-0.00010733129508641397" d="8.7339644415097874e-06" /> - <width sOffset="1521.4255070392123" a="2.4930390016137762" b="-1.5269518989678753e-05" c="-0.00012204192946019005" d="3.9412439516835946e-05" /> - <width sOffset="1521.9888915070921" a="2.4929987103526816" b="-0.00011525380565129855" c="-5.2069205643309909e-05" d="3.4341553884314487e-05" /> - <width sOffset="1523.6829792536773" a="2.4928209909932866" b="4.0004943363393212e-06" c="-4.3334416066055106e-05" d="1.0668541213041194e-06" /> - <width sOffset="1532.0019763196387" a="2.4904694934808482" b="-0.00049550006809872963" c="7.0825533580033239e-06" d="-8.0322109654630897e-06" /> - <width sOffset="1534.3200555375875" a="2.4892588924561823" b="-0.00059214727488236612" c="0.00038788517576037742" d="-3.2869613910263018e-05" /> - <width sOffset="1541.4588960690344" a="2.4928409310153654" b="-7.9453199423801853e-05" c="0.00015434070445796111" d="3.0231334673627965e-05" /> - <width sOffset="1541.708934169556" a="2.4928311865033894" b="3.3990168489964065e-06" c="-0.0004493679554206895" d="3.4872045109431592e-05" /> - <width sOffset="1545.1558092878827" a="2.4889320701664026" b="-0.0018514925598723609" c="0.0031831731439615858" d="-0.00058092875973992882" /> - <width sOffset="1548.3391308604737" a="2.4965551975285116" b="0.00075404700755430081" c="-0.00044418945318247554" d="3.7072343125016315e-05" /> - <width sOffset="1552.0281459447322" a="2.4951531383362546" b="-0.001009662277795205" c="-3.5423283584407655e-05" d="3.7686148385614395e-05" /> - <width sOffset="1555.3403977134708" a="2.4927897210534926" b="-3.9584116221884607e-06" c="2.7768089994316153e-05" d="2.3402479163702254e-05" /> - <width sOffset="1557.1042702317632" a="2.4929975613890294" b="0.00031243295741037675" c="-6.6195530141083619e-06" d="-2.7064261550880984e-08" /> - <width sOffset="1562.0412307572788" a="2.4943754316863318" b="0.00024509305478624503" c="-7.3493405411526333e-06" d="1.6332090240141251e-08" /> - <width sOffset="1572.0543155698253" a="2.4961091069084578" b="0.00010282637207738353" c="-5.091186923382552e-06" d="-1.4493729316007515e-07" /> - <width sOffset="1582.0674003823719" a="2.4964827572033634" b="-4.272565187501574e-05" c="-7.6804334596861142e-06" d="1.6524371602367234e-08" /> - <width sOffset="1592.0804851949188" a="2.4953014763478771" b="-0.0001915650220666316" c="-7.350824556401811e-06" d="-4.5553483482201632e-08" /> - <width sOffset="1599.1252748781512" a="2.4935711998354826" b="-0.00030191737798674994" c="1.162245585944472e-05" d="4.3157087894925069e-06" /> - <width sOffset="1602.0935700074654" a="2.4928902914681874" b="-0.00011884538979835225" c="5.5970716961902941e-05" d="-1.2646441901959705e-06" /> - <width sOffset="1603.1266184742312" a="2.4928258555442442" b="-7.2533067366826911e-06" c="-0.00012513198729606072" d="7.7815281157328931e-06" /> - <width sOffset="1609.4020955312517" a="2.4897755526174885" b="-0.00065843176758135721" c="0.00044416526179213414" d="-3.7221748621650641e-05" /> - <width sOffset="1612.106654820012" a="2.4905073408846716" b="0.00092731962177411659" c="0.00014299193895223576" d="-3.937331328478794e-05" /> - <width sOffset="1616.9320185161669" a="2.4938876731754007" b="-0.00044302475825798936" c="2.5997887975676918e-05" d="3.7319862088393749e-06" /> - <width sOffset="1621.4337371521306" a="2.4927606268395044" b="1.793696658462534e-05" c="0.00047600141214895823" d="-2.9128269131684718e-05" /> - <width sOffset="1622.5684645848978" a="2.4933513240500274" b="0.0009856834547840275" c="-0.0001865237258020366" d="8.4227783793300003e-06" /> - <width sOffset="1632.1328244451054" a="2.4930853750130542" b="-0.00027080564097418307" c="6.5550358950573469e-05" d="4.6846873488664407e-06" /> - <width sOffset="1633.8736038791862" a="2.4928373124552197" b="0" c="0.0003882726560807422" d="-7.5605764260785685e-05" /> - <width sOffset="1636.9124339769469" a="2.4943011597097327" b="0.00026524761613389258" c="-0.00026282488140957569" d="2.0383879099070002e-05" /> - <width sOffset="1642.145909257652" a="2.4914125929150837" b="-0.000810829115655936" c="3.8883441300911544e-05" d="2.5337574969280105e-05" /> - <width sOffset="1645.2496854663577" a="2.4900281350912907" b="0.00016280490213770363" c="0.00011510495056045119" d="-1.5746177305748325e-05" /> - <width sOffset="1649.0173482024302" a="2.4914333229623482" b="0.0003595938629554925" c="-9.3303802115124779e-05" d="5.6909269080782724e-06" /> - <width sOffset="1652.1589940701986" a="2.4918186001442768" b="-5.8153845582326188e-05" c="-4.3872995909903722e-05" d="3.0626408843364535e-06" /> - <width sOffset="1662.1720788827454" a="2.4899121911017632" b="-1.5563620336692374e-05" c="5.640633872337462e-05" d="-3.8319249259494894e-06" /> - <width sOffset="1663.3597361186144" a="2.4899668503324888" b="0.00010220404046896008" c="0.00034646818292214288" d="-4.1859515792690379e-05" /> - <width sOffset="1668.2615930555239" a="2.4938625159835199" b="0.00048145234054157687" c="-0.00015908258253644845" d="1.0310128466362456e-05" /> - <width sOffset="1672.185163695292" a="2.4939252887968637" b="-0.00029073623168107297" c="-3.709817430890769e-05" d="1.2200217648929693e-05" /> - <width sOffset="1676.2671353758565" a="2.492950171523491" b="1.6254490694522826e-05" c="-0.003002346814027973" d="0.00036313540533007224" /> - <width sOffset="1676.5041842584371" a="2.4927901533111152" b="-0.0013459353218214945" c="0.00073094412069042713" d="-9.6646060741469345e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="3" /> - </link> - <width sOffset="0" a="3.8465111972139874" b="0.0027939685202700497" c="-0.00031798093056624026" d="-3.8811225744249592e-05" /> - <width sOffset="4.3588032847111116" a="3.8494340854777143" b="-0.0021902068994306399" c="-0.00023764124678499313" d="1.8177497963166743e-05" /> - <width sOffset="10.013084812546658" a="3.8327384257742354" b="-0.003134135036464614" c="7.6258263866057761e-05" d="1.7403289949299422e-05" /> - <width sOffset="15.631145577476779" a="3.8206235368467256" b="-0.00062940832508964956" c="0.0011782638394554658" d="-9.8557317569960521e-05" /> - <width sOffset="20.026169625093317" a="3.8322498396139686" b="0.0040163181633744265" c="-0.00010960001297310426" d="-9.7146697852675286e-05" /> - <width sOffset="22.072164124463363" a="3.8391763739033609" b="0.0023478406372340445" c="-0.00053581289213648891" d="-0.0001054312596571004" /> - <width sOffset="23.280788179340259" a="3.8410451885961185" b="0.00059061480690700263" c="0.00010171290964879415" d="-4.0528177296106377e-06" /> - <width sOffset="30.039254437639975" a="3.8484316384397266" b="0.0014101013036226491" c="2.5759809287832232e-05" d="-4.2609235882580416e-06" /> - <width sOffset="36.754679581533907" a="3.8577723568422297" b="0.0011796136650570857" c="-0.0018252286816123479" d="0.00016599192018640246" /> - <width sOffset="40.052339250186634" a="3.8477663328539329" b="-0.0054430854204711035" c="-0.00018299919258254866" d="0.00016706943541659817" /> - <width sOffset="41.439403181111864" a="3.840310192373499" b="-0.0049864506886757119" c="0.00064048796415186731" d="0.00016895271144910581" /> - <width sOffset="43.051067682831594" a="3.8346446265253804" b="-0.0016054022778598754" c="0.0010751344928882065" d="-6.8399611732330569e-05" /> - <width sOffset="50.065424062733292" a="3.8526759523230436" b="0.0033813227096664705" c="-0.00035113436789155209" d="-7.204544048612104e-05" /> - <width sOffset="53.775614044461584" a="3.85670820640645" b="-0.0021994543479879145" c="-0.001494020517958903" d="0.00024053399496448815" /> - <width sOffset="57.055719416312172" a="3.8419081352145499" b="-0.0042367621992440031" c="-0.0007577561856473657" d="6.4961382487035754e-05" /> - <width sOffset="57.594768315716053" a="3.8394143043082853" b="-0.0049970692641184318" c="-0.00025550854442197278" d="5.2798812612651341e-05" /> - <width sOffset="60.078508875279951" a="3.8262356463005696" b="-0.0052891607098816146" c="0.000144197593654694" d="5.6265875504131314e-05" /> - <width sOffset="69.018270773964133" a="3.8306756973778322" b="0.010779218975332992" c="0.0010903386323265587" d="-0.0012728577699566274" /> - <width sOffset="69.689808352662041" a="3.8380205798369218" b="0.010521591500730371" c="-0.0084212409529038738" d="0.0011836947601973978" /> - <width sOffset="70.091593687826617" a="3.8409653231989256" b="0.0043277859674096825" c="-0.0069908297314013228" d="0.0011838943642582553" /> - <width sOffset="74.245886994281932" a="3.8231752215464185" b="0.0075393614303728975" c="-0.00042758662331358449" d="-1.8953021594628415e-05" /> - <width sOffset="78.610003127765864" a="3.8463589504450417" b="0.0027243762021440061" c="-0.00234669699206832" d="0.00016204992484880715" /> - <width sOffset="78.674208190907606" a="3.8465242383153275" b="0.002425040595437833" c="-0.0017485061208059554" d="0.00018072427579618946" /> - <width sOffset="80.104678500373268" a="3.8469443112345756" b="-0.0014679129847978917" c="-0.0009614232499825481" d="0.00017734742253708186" /> - <width sOffset="82.887442031568455" a="3.839236088578891" b="-0.0026987256230740549" c="-0.0010702238960470956" d="0.00012262116274432223" /> - <width sOffset="89.84972195457344" a="3.8099522766275236" b="0.0002304502615259014" c="7.2118785661550645e-06" d="3.0998334660758429e-07" /> - <width sOffset="90.117763312919919" a="3.8100145709440874" b="0.00023438323833355949" c="7.1649124268733831e-06" d="8.1437558272412416e-08" /> - <width sOffset="100.13084812546658" a="3.8131615953435927" b="0.0004023642349651856" c="-1.6036117197621433e-05" d="3.312714343731726e-06" /> - <width sOffset="104.88612457423636" a="3.8150685435995815" b="0.00047457968488899007" c="5.0562364603567561e-05" d="-9.2220648915705148e-06" /> - <width sOffset="107.86038655420312" a="3.8166847125189092" b="0.00053060948121616319" c="-0.00011682196624906103" d="1.4770664104487596e-05" /> - <width sOffset="110.14393293801325" a="3.8174630912109855" b="0.00022814133404245479" c="-3.1599460480763506e-05" d="9.1530499719582242e-06" /> - <width sOffset="118.76624855428869" a="3.822948247552258" b="0.0017246523000420131" c="0.0016470728774274895" d="-0.00022114580353902296" /> - <width sOffset="119.002760162816" a="3.8234453556354531" b="0.0024666448212272022" c="0.0013905332849287087" d="-0.00023344668914861898" /> - <width sOffset="120.1570177505599" a="3.8277861201149959" b="0.0047436415308436891" c="0.00059397088071640343" d="-0.00022709878518212403" /> - <width sOffset="123.98424188877459" a="3.8419102570590833" b="-0.00068922597114224574" c="6.9114884967735922e-06" d="3.9626537772601413e-06" /> - <width sOffset="129.78663090664841" a="3.8389179109930813" b="-0.0002087791477855111" c="0.0010560849850779514" d="-0.00012199668202937554" /> - <width sOffset="130.17010256310655" a="3.8389862685877993" b="0.00054735914597949669" c="0.00091649684964483435" d="-0.00012275149929613245" /> - <width sOffset="135.49286952889125" a="3.849354387679357" b="-0.00012937306579961135" c="-0.00057660172645083801" d="4.2394221471491524e-05" /> - <width sOffset="138.71232008195562" a="3.8443761398164771" b="-0.0025238238119356352" c="0.00048760511583557952" d="-5.1651738617602807e-05" /> - <width sOffset="140.18318737565323" a="3.8415544759806819" b="-0.0014246569317323374" c="0.00024723045580940474" d="-4.7938929032604685e-05" /> - <width sOffset="143.86261113720616" a="3.8372716408071144" b="-0.0015523402661825382" c="-7.622477192656868e-05" d="5.2646490484896165e-05" /> - <width sOffset="145.48519952127626" a="3.8347770500915033" b="-0.0013838811801992828" c="-9.4060162360772481e-05" d="5.5178676938923549e-06" /> - <width sOffset="150.19627218819988" a="3.8267468347560811" b="-0.001902735628663652" c="-1.3326211068904461e-05" d="4.8517066433278942e-06" /> - <width sOffset="156.88559155352488" a="3.8148747670450365" b="-0.0014297243342649472" c="0.0004108417242247004" d="-3.1427238359846559e-05" /> - <width sOffset="160.20935700074654" a="3.8135074609899009" b="0.00025978932203046465" c="0.00013904796347109595" d="-4.092247087490985e-05" /> - <width sOffset="160.31856064153411" a="3.8135374358438052" b="0.00028869435493364057" c="-0.00030208511446873175" d="-4.4405080583215569e-05" /> - <width sOffset="161.6795441893255" a="3.8132588574952075" b="-0.00078032281079640437" c="-0.00071369444009148698" d="7.6720326890842747e-05" /> - <width sOffset="168.73294251448587" a="3.799170224155259" b="0.00060234213439122608" c="0.022057506656472187" d="-0.0048550855586962753" /> - <width sOffset="170.22244181329319" a="3.8329601866028806" b="0.033997026200119011" c="0.00036305883846521358" d="-0.0048552956098811394" /> - <width sOffset="170.98913409052579" a="3.8570506968793294" b="0.025991658418149446" c="0.013415276586921149" d="-0.0058638876032902814" /> - <width sOffset="173.24537094822139" a="3.9166355788365603" b="-0.0030244610001557769" c="0.00020071563538850219" d="1.1152995120249896e-05" /> - <width sOffset="178.12516424543182" a="3.9079523243422605" b="-0.00026882121412293919" c="0.0003288921093735823" d="-1.5376508648039524e-05" /> - <width sOffset="180.15215837659738" a="3.9086306855363295" b="0.00087497091337111418" c="-0.0015300535343794539" d="0.00012455166703182743" /> - <width sOffset="180.23552662583984" a="3.9086930682211651" b="0.00062245214582519969" c="-0.0014967099436180035" d="0.00012550201698628458" /> - <width sOffset="188.72609762298814" a="3.8828982456305505" b="0.0023488524217537693" c="4.9969392640573506e-05" d="-2.2999799212735002e-05" /> - <width sOffset="190.24861143838652" a="3.8865090650746508" b="0.0023410666653943717" c="-5.0271759737886026e-05" d="-2.0630746594238744e-05" /> - <width sOffset="193.64909612995243" a="3.8930773014891198" b="0.0012834916693556986" c="-0.00045264292540199213" d="1.610897248533031e-05" /> - <width sOffset="200.26169625093317" a="3.8864298772673416" b="-0.0025896356501945291" c="-0.00012965957036613476" d="1.4995061643801645e-05" /> - <width sOffset="202.75859312544415" a="3.8793888887464769" b="-0.0029566689365590599" c="5.5887819310339301e-05" d="2.3318085919422015e-05" /> - <width sOffset="209.57205771512196" a="3.869213819023563" b="0.001052417893410572" c="0.00074693903211418811" d="1.3210400483695174e-06" /> - <width sOffset="210.3111477763" a="3.870400202496179" b="0.0021586931939968595" c="0.0002274176506876636" d="-2.0395424965821468e-05" /> - <width sOffset="220.2878658760265" a="3.8943195669033024" b="0.00060628677705223954" c="-0.00038227889040120172" d="-2.0490784612501108e-05" /> - <width sOffset="220.52449657735457" a="3.8944413561091524" b="0.00042192684473755295" c="-0.00035539900674173559" d="2.5654566411239148e-05" /> - <width sOffset="225.71604841438895" a="3.8906427067256422" b="-0.0011938760671167444" c="-0.00030026615287292644" d="9.8337349793032576e-06" /> - <width sOffset="229.53669335743629" a="3.8822466859770763" b="-0.0030576580257929333" c="0.00013689652006532681" d="8.0639094098558486e-07" /> - <width sOffset="230.30095068857315" a="3.8799901681714646" b="-0.0028469966747736121" c="0.00013494888841909412" d="-1.4146651909179765e-07" /> - <width sOffset="240.3140355011198" a="3.8648711540060057" b="-0.00018703843673858241" c="0.00013408102454665185" d="-2.3101105643195914e-07" /> - <width sOffset="248.08942272730371" a="3.8714143545861512" b="0.0018561268729882989" c="-6.894429973571209e-05" d="-1.0008242411304402e-05" /> - <width sOffset="249.15779500149029" a="3.8733064900603562" b="0.0016745397127560773" c="9.9875030582608523e-05" d="-1.6670655791633586e-06" /> - <width sOffset="250.32712031366646" a="3.8753984676503404" b="0.0019012742706301536" c="9.325033045686042e-05" d="-1.0380924859209736e-06" /> - <width sOffset="257.59853151962136" a="3.893754769071526" b="0.0030927347634107879" c="0.00024657444309894854" d="-6.6882453599633685e-05" /> - <width sOffset="260.34020512621311" a="3.9027091329386114" b="0.0029365671508749663" c="-0.00030132013908360113" d="-6.6957111109514536e-05" /> - <width sOffset="260.41775151113143" a="3.9029350099106184" b="0.0028886266478215759" c="-0.00038522290356209749" d="1.3923011923948632e-05" /> - <width sOffset="266.30364290459931" a="3.9094306288393215" b="-0.00019909902211668294" c="-0.0001446632454662843" d="1.7027567715813448e-05" /> - <width sOffset="270.35328993875976" a="3.9073827705018469" b="-0.00053303118992429569" c="4.2354435618497764e-05" d="2.3296900895363682e-05" /> - <width sOffset="272.76050706193485" a="3.9066700502041787" b="7.5876710350478421e-05" c="8.5749994690838968e-05" d="-1.3998584739413356e-06" /> - <width sOffset="280.36637475130647" a="3.9115918003321264" b="0.0011373407619386902" c="5.1110377242253742e-05" d="-9.3739921306818357e-06" /> - <width sOffset="282.17931163238711" a="3.9137658575131971" b="0.0012302309092781958" c="-6.9216041860941359e-05" d="-7.5251552725013782e-07" /> - <width sOffset="290.37945956385312" a="3.9187847429422638" b="-5.6735564888228457e-05" c="-0.00013955509448992381" d="4.8529520977540357e-06" /> - <width sOffset="295.26280238215168" a="3.9157448502949204" b="-0.0010725407158737584" c="-0.0011869643833437083" d="0.0001694731140360927" /> - <width sOffset="299.13508800824377" a="3.9036337931052474" b="-0.0026415283382181503" c="4.2498348524513671e-05" d="8.0287880537212737e-05" /> - <width sOffset="300.39254437639977" a="3.9005390199545786" b="-0.002153795948851745" c="0.00019643722388991474" d="-3.4474223909226428e-06" /> - <width sOffset="304.355851351669" a="3.8948738437648105" b="-0.00075916819640556125" c="0.00019527161603347706" d="-1.0005246054205734e-05" /> - <width sOffset="310.40562918894642" a="3.8952125803550555" b="0.0005049612232477154" c="4.0547004790731346e-06" d="-1.0113154190916907e-05" /> - <width sOffset="315.56139784674457" a="3.8965378137547853" b="-0.00025971067233010112" c="-0.00034064300913298068" d="3.210874002882494e-05" /> - <width sOffset="320.41871400149307" a="3.8909190489029601" b="-0.0012962576328397757" c="0.00019650293973689804" d="1.9472675947464457e-05" /> - <width sOffset="321.06879147561904" a="3.8901647728955133" b="-0.0010160858626294999" c="0.00025850085142542549" d="2.6678951213470486e-05" /> - <width sOffset="322.81962147975139" a="3.8893213753100904" b="0.00013444165853807337" c="0.00048806094520407702" d="-4.014708031308584e-05" /> - <width sOffset="330.38205568789829" a="3.9008869267168276" b="0.00062821514484226113" c="-0.00015619083563248997" d="5.9888166722006626e-06" /> - <width sOffset="330.43179881403972" a="3.9009177903638843" b="0.00061272075975803099" c="-0.00016781677212169074" d="6.0665433713882767e-06" /> - <width sOffset="340.44488362658637" a="3.8963177807530087" b="-0.00092327748229969033" c="6.3039761734448878e-05" d="2.9457637036024962e-06" /> - <width sOffset="345.65243827491054" a="3.8936353203213496" b="-2.7056286481370873e-05" c="0.00012075966613161662" d="-9.8209777058791791e-06" /> - <width sOffset="350.24323577507016" a="3.8951059622863973" b="0.00046076632070896593" c="0.00023964444043798744" d="-1.5902171110616285e-05" /> - <width sOffset="350.45796843913303" a="3.8952157964462102" b="0.0005614855460410401" c="0.00022365911610779281" d="-1.5958520394649883e-05" /> - <width sOffset="355.64066164470182" a="3.9019117911890953" b="0.0015938463484790168" c="-1.1260519436429427e-05" d="-2.1346863979090025e-05" /> - <width sOffset="360.47105325167968" a="3.9069420355053479" b="-9.1779243938765187e-06" c="-0.00031801501802275814" d="-2.1638782462910906e-05" /> - <width sOffset="361.03686311663284" a="3.9068311133382361" b="-0.00038983236479975952" c="-0.00098093487196126311" d="9.5756315002701518e-05" /> - <width sOffset="369.20784335058454" a="3.8903921690806307" b="0.0027592562887308264" c="0.00043742909315439628" d="-4.0981803738443604e-05" /> - <width sOffset="370.48413806422639" a="3.894541133018766" b="0.0036755639201983235" c="0.00025396225062065432" d="-5.6605831627448001e-05" /> - <width sOffset="375.68123439115999" a="3.9125569580205846" b="0.0017285581692112043" c="-0.00080532292133705854" d="0.00011251339971815571" /> - <width sOffset="375.71805691015294" a="3.9126195215684616" b="0.00166970780210635" c="-0.00068291609395861562" d="0.00011491845961179967" /> - <width sOffset="378.89411555854804" a="3.9147155576346364" b="0.00080941233609615072" c="5.0156726073692352e-05" d="-4.3767839999685858e-06" /> - <width sOffset="380.49722287677304" a="3.9161240009477294" b="0.00093648117687004278" c="3.7402576486465151e-05" d="-1.6043257630409176e-06" /> - <width sOffset="390.51030768931969" a="3.927640486865946" b="0.0012029534269378897" c="-9.4014366999790758e-06" d="-1.8133982725890087e-06" /> - <width sOffset="391.48573007784478" a="3.9288032466343759" b="0.0011794366162323116" c="9.4113372705065064e-05" d="-8.1824953564367172e-06" /> - <width sOffset="400.52339250186634" a="3.9411094761145247" b="0.00087554388830270722" c="-0.00013948467252124385" d="-8.4469786616010116e-06" /> - <width sOffset="406.26130630273599" a="3.9399451814014985" b="-0.00155947439495932" c="-0.00017243928207048983" d="-6.988941635613426e-06" /> - <width sOffset="406.51589535420135" a="3.9395368642146464" b="-0.0016486356784853303" c="-0.0067369443923574251" d="0.0012304063074701031" /> - <width sOffset="410.29463896187679" a="3.9034991050404333" b="0.00014355108281306257" c="0.00092129674275732813" d="-0.00019549342582598708" /> - <width sOffset="410.53647731441299" a="3.9035849388845927" b="0.00055486009413106905" c="0.00077870441464405831" d="-0.00019533297968261259" /> - <width sOffset="413.45810784105481" a="3.9069816237050938" b="0.00010299031700443644" c="-0.00042092561810133915" d="2.6589551895732032e-05" /> - <width sOffset="420.54956212695964" a="3.8960265336009789" b="-0.0018554953392025636" c="0.00014917099641643109" d="2.848067807429373e-05" /> - <width sOffset="421.81450541297306" a="3.8939757682284206" b="-0.0013413954187088608" c="-6.3874710244127243e-05" d="1.0035194646964643e-05" /> - <width sOffset="430.56264693950629" a="3.884071234573224" b="-0.00015498568712267463" c="0.00019936592747026079" d="1.0072964588752108e-05" /> - <width sOffset="431.08944888521688" a="3.8840463885512797" b="6.3453386039121531e-05" c="0.00012502899340870906" d="5.4359589892563201e-09" /> - <width sOffset="438.53953143989554" a="3.8914609448260293" b="0.0019273111792871772" c="0.0007475275098112633" d="-8.4674474132669022e-05" /> - <width sOffset="440.575731752053" a="3.8977698205187328" b="0.0039183331904045077" c="0.00024337751339550094" d="-8.2058958063780171e-05" /> - <width sOffset="444.37604382750328" a="3.9116718094093739" b="0.002212776233439075" c="0.00017838537794276593" d="-0.00033922172479665657" /> - <width sOffset="445.56173860067054" a="3.9139808130166305" b="0.0012050903830617677" c="-0.00051046796019496717" d="-0.00021197299085543589" /> - <width sOffset="446.77087055368463" a="3.9143169066374623" b="-0.00095906944889914551" c="-0.00036028373313727168" d="4.5461693434849937e-05" /> - <width sOffset="450.58881656459965" a="3.90793356323785" b="-0.001722111130812401" c="0.00016053365261631025" d="4.5187992604291133e-05" /> - <width sOffset="451.33801565888018" a="3.9067524692392022" b="-0.0014054758330010128" c="-1.3761140710523073e-05" d="2.0169807138818296e-06" /> - <width sOffset="460.60190137714631" a="3.8941548720369124" b="-0.0011411497980556781" c="3.7749171276354028e-05" d="1.8060638670669373e-06" /> - <width sOffset="462.57692534850588" a="3.8920622367093456" b="-0.00097090391506754676" c="0.0013090528091722225" d="-0.00020747899225671807" /> - <width sOffset="464.87503404005702" a="3.8942263247195488" b="0.0017585087416859843" c="0.0012426643122586574" d="-0.00014313079997946808" /> - <width sOffset="470.61498618969296" a="3.9181940959582207" b="0.0018769629601111993" c="-0.0012238418492484819" d="-0.00014299060513406472" /> - <width sOffset="471.04177910774786" a="3.9187611287072146" b="0.00075417073423812556" c="-0.00023363612388216197" d="1.3437628704819729e-05" /> - <width sOffset="477.36061661345894" a="3.9175883255438309" b="-0.00058884554813532311" c="-7.9669467373442301e-05" d="6.3516994820684506e-06" /> - <width sOffset="479.30773183297862" a="3.9161866162794161" b="-0.00082685402475216703" c="-5.1051585851947395e-05" d="7.4342204318291639e-06" /> - <width sOffset="480.62807100223961" a="3.9150230021749284" b="-0.00092278471209757064" c="-1.4716400051504487e-05" d="8.548646919277816e-06" /> - <width sOffset="485.05725967845029" a="3.9113899091014019" b="-0.00055003344881694391" c="9.288525077155765e-07" d="1.531987299509706e-06" /> - <width sOffset="490.64115581478626" a="3.908614268086481" b="-0.00039635860266070311" c="2.1491128458301282e-05" d="1.1465770482786043e-06" /> - <width sOffset="500.65424062733291" a="3.9079513202187934" b="0.00037890024943264483" c="5.4694256771722511e-05" d="1.0338961756216571e-06" /> - <width sOffset="504.30567301351783" a="3.9101144197260509" b="0.00081967969477924393" c="0.00014160668485447187" d="-1.2347283306407451e-05" /> - <width sOffset="510.66732543987956" a="3.9178809156965686" b="0.0011222780241498954" c="-9.205883940884711e-05" d="-1.3049993821391328e-05" /> - <width sOffset="512.38847785053326" a="3.9194732775041983" b="0.00068940687826990867" c="1.4716786946666952e-05" d="-5.2908983978686641e-06" /> - <width sOffset="520.68041025242621" a="3.9231852084255543" b="-0.00015787721651461901" c="-0.00011291302134021101" d="-5.5505520714330119e-06" /> - <width sOffset="527.38349122155864" a="3.9153819116935136" b="-0.0024197879344640041" c="-0.00095436260599080208" d="0.00015667898080304042" /> - <width sOffset="530.69349506497292" a="3.9025982225181939" b="-0.0035878920180704688" c="0.0005963869539076501" d="0.00015872656262327263" /> - <width sOffset="531.29267954483498" a="3.900696674694081" b="-0.0027022414011397141" c="0.00034487683818434543" d="-3.4961588117750923e-05" /> - <width sOffset="532.08826600446105" a="3.8987474948143745" b="-0.0022198703469890899" c="0.00016346026655879417" d="-3.0299161199426419e-05" /> - <width sOffset="537.86620731169944" a="3.8855337355290493" b="-0.0033655193480913027" c="-6.370578847015531e-05" d="8.9824968580942521e-06" /> - <width sOffset="540.70657987751952" a="3.8756662832647919" b="-0.0035100109865096409" c="2.4138717862687993e-05" d="1.0021286877325358e-05" /> - <width sOffset="545.89705051474198" a="3.8594993357679539" b="-0.0024494783425046164" c="0.00019936321606887119" d="5.2781913616167044e-06" /> - <width sOffset="548.94264008897028" a="3.8540375540960126" b="-0.0010882458513828761" c="7.2011889631093509e-05" d="-8.3828652584965729e-07" /> - <width sOffset="550.71966469006622" a="3.8523264107150039" b="-0.00084025351739358165" c="6.8957421403034941e-05" d="-7.3405079046301827e-07" /> - <width sOffset="560.73274950261293" a="3.8500897447890594" b="0.00031990759133871229" c="4.5841227246062493e-05" d="-7.8999608449988067e-07" /> - <width sOffset="570.74583431515953" a="3.8570960324546206" b="0.0010003123358283475" c="2.1171960383299794e-05" d="-7.425380502801832e-07" /> - <width sOffset="580.75891912770624" a="3.868489528340942" b="0.0012009608510092761" c="-1.674352041553407e-05" d="5.4545700859187826e-06" /> - <width sOffset="582.40384439680076" a="3.8704439921486578" b="0.0011901537572403596" c="0.00029108507606946893" d="-3.745576597108019e-05" /> - <width sOffset="589.68264510512211" a="3.8800844895297661" b="-0.00052567076778307377" c="-0.00032950789581171158" d="2.946928862130385e-05" /> - <width sOffset="590.77200394025283" a="3.8791589138109135" b="-0.0011386615922590426" c="-0.00023593572785781078" d="2.5704759956347295e-05" /> - <width sOffset="596.33179464683087" a="3.8699527454076694" b="-0.0013784675922773686" c="4.4840739819173963e-06" d="5.0690741947584753e-07" /> - <width sOffset="600.78508875279954" a="3.8639477197139982" b="-0.0013083710889441973" c="1.4128995752516806e-05" d="9.6637670079542931e-07" /> - <width sOffset="606.55452360946276" a="3.8570550475029246" b="-0.001048836905677983" c="3.3131791648004276e-05" d="1.0459721182862536e-06" /> - <width sOffset="610.79817356534613" a="3.8532807421653326" b="-0.00071112808286941619" c="4.6586615174483745e-05" d="1.035752360587362e-06" /> - <width sOffset="616.26560989994607" a="3.8509545823941034" b="-0.00010882457669169353" c="0.022544543212158846" d="-0.018722518812989232" /> - <width sOffset="617.06808186437752" a="3.8557100012547281" b="-9.5826880967134082e-05" c="-5.9518446463302731e-05" d="7.2799866527346827e-07" /> - <width sOffset="620.81125837789284" a="3.8545555506945872" b="-0.00051080220593789215" c="-5.1621012038076278e-05" d="7.0316694387219993e-07" /> - <width sOffset="622.98283506923758" a="3.8532100738372783" b="-0.00072505231030179729" c="3.6728850475572899e-05" d="-2.2999002354965929e-06" /> - <width sOffset="630.82434319043944" a="3.8486740603804899" b="-0.00057329057073931058" c="-2.2518220197511074e-05" d="-5.2174236947613488e-07" /> - <width sOffset="632.71245744626231" a="3.8475078334889981" b="-0.00066390451208252622" c="-0.00053322190231099595" d="0.00012069039105067005" /> - <width sOffset="636.67252717074166" a="3.844011823190439" b="0.0007909589172097962" c="0.0013759924016030476" d="-0.0001584634718691986" /> - <width sOffset="640.83742800298614" a="3.8597262448198451" b="0.0040063909118693659" c="-0.00060368892191507066" d="-0.00015844398332038351" /> - <width sOffset="641.68206314642782" a="3.8625840329815784" b="0.0026474912879963812" c="-0.00029923003034909286" d="8.3122452545766412e-06" /> - <width sOffset="642.97990417804147" a="3.8655342065014509" b="0.0019127884872903803" c="-0.0002181374925082966" d="1.1928341192971359e-05" /> - <width sOffset="648.03348242963989" a="3.871169185627938" b="0.00062194001626450599" c="-0.00032980962348336273" d="4.8669875596917553e-05" /> - <width sOffset="650.85051281553285" a="3.871391967320438" b="-7.7544662143137115e-05" c="8.7302443297312499e-05" d="4.6310118527122987e-05" /> - <width sOffset="652.61479134897604" a="3.871781219539348" b="0.00066295255576340835" c="0.0017885293441031232" d="-0.00023487799853972577" /> - <width sOffset="657.49591409878622" a="3.8903145064056979" b="0.0013348569764583774" c="-0.00049395685308476454" d="5.0598877747571057e-05" /> - <width sOffset="660.86359762807945" a="3.8911403408183265" b="-0.00027055374429300547" c="1.7132976023666474e-05" d="5.0515161939447447e-05" /> - <width sOffset="661.47833899370039" a="3.890992230342222" b="-0.00019221895432532229" c="-3.0396746729732686e-05" d="6.9047709840607366e-07" /> - <width sOffset="670.87668244062615" a="3.8870739767019651" b="-0.00058060992126039951" c="-1.280808071733846e-05" d="5.8145233186790198e-07" /> - <width sOffset="680.88976725317275" a="3.880559856004191" b="-0.00066221422837626684" c="2.0891406495198288e-06" d="1.0452948382211629e-06" /> - <width sOffset="684.43388976987865" a="3.8782856623550193" b="-0.00060801665549093471" c="-0.00011785735257830884" d="8.9001229485084488e-07" /> - <width sOffset="688.94542160154492" a="3.8732254442719505" b="-0.0016171053352720605" c="-0.0025395368815844606" d="0.00053330763966576969" /> - <width sOffset="690.90285206571946" a="3.8643295377849238" b="-0.0054288799522498642" c="0.00059295409069967686" d="0.00053156495300648525" /> - <width sOffset="692.40397113246479" a="3.8593143306849789" b="-5.5271429926170185e-05" c="0.00063506571187758496" d="-0.00013695947599097003" /> - <width sOffset="693.05011926205907" a="3.8595068140105688" b="0.00059387682748508579" c="0.00053728479793782558" d="-0.00014485787470661749" /> - <width sOffset="695.27331095370232" a="3.861890947226243" b="0.00083493555804185977" c="-0.0012403870240708598" d="0.00011375829007868653" /> - <width sOffset="700.91593687826605" a="3.8475466678238401" b="-0.0022972162253832862" c="0.00069771139202333865" d="0.00011107741545685282" /> - <width sOffset="703.0165715660271" a="3.846829444071231" b="0.0021044999130040531" c="0.0015057753317402867" d="-0.00028419037628617315" /> - <width sOffset="706.64161097020565" a="3.8607078148936957" b="0.001817928681550246" c="-0.0059699718360164316" d="0.0024995967304261811" /> - <width sOffset="708.19894891301419" a="3.858500974591089" b="0.0014102282260577824" c="-9.6817812326102954e-05" d="-7.838081092947336e-06" /> - <width sOffset="710.92902169081276" a="3.8614698987143572" b="0.00070633023074652933" c="-0.00015928595833551181" d="-6.8861201661771744e-06" /> - <width sOffset="712.91545209188735" a="3.8621904719316094" b="-8.0066526927709726e-06" c="-3.53163870052824e-05" d="2.2205444468973601e-06" /> - <width sOffset="713.24214724039552" a="3.8621841643150514" b="-3.0371043014744704e-05" c="0.0018435617166647192" d="-0.00037581819050166006" /> - <width sOffset="716.57667807441339" a="3.8686474315807855" b="-0.00027181975005746126" c="-0.00017423436030110877" d="4.85776156487332e-06" /> - <width sOffset="720.94210650335935" a="3.864544569763992" b="-0.0015153124278471778" c="-0.00011093477140432916" d="4.6876969564653332e-06" /> - <width sOffset="729.72620677678401" a="3.8458513901199769" b="-0.0023791227750770585" c="0.00021634245603672678" d="-4.2099468295499036e-06" /> - <width sOffset="730.95519131590606" a="3.8432464345427642" b="-0.0018664358567572039" c="0.00020076278024546939" d="-4.4736787847730499e-06" /> - <width sOffset="738.72101168523727" a="3.8387644174360909" b="0.00044234411545155793" c="-0.00051589281189343941" d="0.0001125912453221956" /> - <width sOffset="740.96827612845277" a="3.8384309336535365" b="-0.00017052696047972207" c="0.00023762588727245634" d="0.00011285939383033363" /> - <width sOffset="743.30981652130299" a="3.8407834100359377" b="0.0027986545835015945" c="0.001298806699452589" d="-0.00025518679039991248" /> - <width sOffset="746.70184453255752" a="3.8552609292979136" b="0.0028014061134831879" c="-0.00015192475222671869" d="-6.9532403204532807e-06" /> - <width sOffset="747.75898502800351" a="3.8580444116613037" b="0.002456882799516967" c="-6.969671446804685e-05" d="9.7366273017981176e-07" /> - <width sOffset="750.98136094099937" a="3.865270280342076" b="0.0020380354558154224" c="-6.3029453993193919e-05" d="8.8201830767336674e-07" /> - <width sOffset="756.85730152818041" a="3.8752483989161521" b="0.0013886802877282837" c="-0.00026818213472296136" d="6.2691637794272926e-06" /> - <width sOffset="760.99444575354607" a="3.8768473012709066" b="-0.00050842773881892259" c="-0.00019248257815822554" d="6.0544283243241873e-06" /> - <width sOffset="771.00753056609267" a="3.8585359342143573" b="-0.0025420316282331124" c="-1.1288940005226775e-05" d="6.0151937205099652e-06" /> - <width sOffset="781.02061537863938" a="3.8379893426530027" b="-0.00095882218895034063" c="0.00016929072082840884" d="6.0311243886675785e-06" /> - <width sOffset="783.59825707635036" a="3.8367459420424526" b="3.4136107547077946e-05" c="6.9223108581650938e-05" d="2.1331934751657731e-06" /> - <width sOffset="786.45159326597172" a="3.8374564808520795" b="0.00048127206874861079" c="8.6317765359788357e-05" d="-5.1620034288739216e-07" /> - <width sOffset="787.99138722105045" a="3.8384003125681461" b="0.00074342353589066821" c="0.00018347518441091517" d="-1.0335079120352265e-05" /> - <width sOffset="791.03370019118597" a="3.8420692032985411" b="0.001572827212621629" c="8.9559422605924906e-05" d="-1.0367357954700139e-05" /> - <width sOffset="800.50107011179875" a="3.8561896129363715" b="0.0004808986983417334" c="-0.00012619000035498406" d="1.0475703259398855e-06" /> - <width sOffset="801.26808721476436" a="3.8564847036767791" b="0.00028916782610237737" c="-0.00014844665675886189" d="5.5553286507068722e-06" /> - <width sOffset="809.63747104706863" a="3.8517634721701164" b="-0.0010282508581607426" c="-0.00010137674448696647" d="9.8013893112915002e-06" /> - <width sOffset="811.05986981627939" a="3.8501239887997487" b="-0.001257156121887409" c="-6.2884668167692049e-05" d="7.5844880713442397e-06" /> - <width sOffset="821.26541380601475" a="3.8388062424697371" b="-0.00017085614281389661" c="0.0001826972528249893" d="4.1016510629153281e-08" /> - <width sOffset="821.73202722105839" a="3.8387663011904367" b="-3.3137335836951054e-07" c="-3.9065470469407538e-05" d="6.378385003315411e-06" /> - <width sOffset="831.08603944137269" a="3.840565477763759" b="0.00094310992956645086" c="0.00013922835810028578" d="6.4789845606345344e-06" /> - <width sOffset="834.99688618925825" a="3.8467708377378953" b="0.0023293942811861727" c="0.00026889097214405621" d="1.1673818482629503e-05" /> - <width sOffset="836.20794510625876" a="3.8500069793065106" b="0.003032044597661019" c="0.00077338858483370747" d="-0.00012935402716001399" /> - <width sOffset="840.37643810796396" a="3.8667151776972788" b="0.0027366781008467101" c="-0.0019920888336921083" d="0.00024802189542912881" /> - <width sOffset="841.09912425391929" a="3.8677461319788078" b="0.00024597520150040561" c="-0.0014544240069088571" d="0.00024807190465178772" /> - <width sOffset="844.64214005359281" a="3.8613933802871445" b="-0.00071800846963370997" c="0.00056316825886851263" d="-7.1664012220185933e-05" /> - <width sOffset="850.70486904677682" a="3.8617704619803908" b="-0.0017917295131552598" c="-0.0023232615530516766" d="0.0007596408837186291" /> - <width sOffset="851.11220906646599" a="3.860706472403014" b="-0.0033063120538081039" c="-0.0013961322568035799" d="0.00075967559018654983" /> - <width sOffset="853.37081022187965" a="3.8548695678313383" b="0.0020130279031114365" c="0.00010122842024653064" d="-1.2349428970671733e-05" /> - <width sOffset="859.8562320611112" a="3.8688139467913274" b="0.0017677691687860906" c="-0.0003591233276104798" d="2.5580163018144447e-05" /> - <width sOffset="861.12529387901259" a="3.8705312625332997" b="0.00097986169390596551" c="-0.00025881317018450184" d="2.9800048134895618e-05" /> - <width sOffset="867.89335936389932" a="3.8745463455378228" b="0.0015716592507398542" c="-7.4275006497807388e-06" d="1.4854966900142844e-06" /> - <width sOffset="871.1383786915593" a="3.8796189577103344" b="0.0015703819952683903" c="1.7728729334123648e-06" d="2.7935703858834086e-07" /> - <width sOffset="881.151463504106" a="3.8958015324425737" b="0.0016899124244904966" c="1.0539449992653774e-05" d="2.7918944654689852e-07" /> - <width sOffset="881.19095971519812" a="3.8958682940386415" b="0.0016907462677403231" c="1.8526200264594755e-05" d="-6.5442735792150764e-07" /> - <width sOffset="891.1645483166526" a="3.9139246928965434" b="0.0018649991509336254" c="-1.1197717879244358e-06" d="-6.5719513061843331e-07" /> - <width sOffset="891.96577717197499" a="3.9154179271372467" b="0.0018619390698959928" c="-8.1062447160635973e-06" d="3.3527454676769326e-07" /> - <width sOffset="898.0159792976267" a="3.9264605585631607" b="0.0018006683516697325" c="8.1077462994216652e-05" d="-1.2299096492880819e-05" /> - <width sOffset="901.17763312919931" a="3.9325754018816022" b="0.0019445187615680509" c="-3.2995831882173476e-05" d="-1.2645056788696838e-05" /> - <width sOffset="905.65198729498775" a="3.939482603994982" b="0.0008897924474969782" c="-0.00012227955398642329" d="5.8382999822547865e-06" /> - <width sOffset="911.1907179417459" a="3.9416517016254113" b="7.2559415497538428e-05" c="-2.0007336667875947e-05" d="5.7036013169424851e-06" /> - <width sOffset="914.41209783704755" a="3.9418684879268993" b="0.00012122069916241935" c="-2.3980174956466843e-05" d="-6.212776623437957e-07" /> - <width sOffset="915.55479831292462" a="3.9419747674123986" b="6.3982657773245849e-05" c="-2.3094515541516869e-05" d="1.774896308335019e-06" /> - <width sOffset="921.20380275429261" a="3.9419191857212272" b="-2.7021898224037369e-05" c="6.7349611934033537e-06" d="1.8580399158442893e-06" /> - <width sOffset="931.2168875668392" a="3.9441892160438448" b="0.00066672523240496264" c="6.2986662640375117e-05" d="1.604749991604767e-06" /> - <width sOffset="934.25548392754683" a="3.9468417072078643" b="0.0010939576167816316" c="3.8020419998765643e-05" d="-2.6304654770755196e-07" /> - <width sOffset="934.61699419853369" a="3.9472421405709186" b="0.0011213440290475908" c="0.00048897136877646069" d="-9.4040867329270647e-05" /> - <width sOffset="937.38923901587088" a="3.9521050910268687" b="0.0016642322224716007" c="-0.00012550632297435714" d="5.956573512263669e-06" /> - <width sOffset="941.22997237938591" a="3.9569830632235794" b="0.000963759985679095" c="-5.6293107826599196e-05" d="6.2060151789758584e-06" /> - <width sOffset="947.94074892571882" a="3.9627910688249326" b="0.0010466738288598231" c="0.0002732310397049015" d="-4.0109838147323753e-05" /> - <width sOffset="951.24305719193251" a="3.967782704399033" b="0.0015390378506197275" c="-0.0001223696913473716" d="-4.1293679108096539e-05" /> - <width sOffset="951.67379824233512" a="3.968419626829653" b="0.0014106339302149367" c="-4.6263815015722961e-05" d="1.0177071810705878e-05" /> - <width sOffset="952.86914386007436" a="3.9700570999543361" b="0.0013436559952897018" c="-2.4691911537395042e-05" d="-7.2168209928650476e-06" /> - <width sOffset="959.13384352874857" a="3.9757312507852971" b="0.00018457710399131556" c="-3.2797784404315845e-05" d="1.9476712464660541e-06" /> - <width sOffset="961.25614200447922" a="3.9759938704105373" b="7.1681543418622038e-05" c="-1.7764430211992076e-05" d="2.8321178452510299e-06" /> - <width sOffset="969.15492735620262" a="3.976847430918049" b="0.00032114108055726165" c="-9.7244287972187985e-06" d="-4.490938583718768e-06" /> - <width sOffset="971.26922681702592" a="3.9774405026002722" b="0.00021979335231755775" c="-3.9053169759872358e-05" d="-4.4199777656671695e-06" /> - <width sOffset="979.72146190310548" a="3.9738393631022677" b="-0.0013876731113570985" c="-0.00018056695979397222" d="1.2687144053407756e-05" /> - <width sOffset="981.28231162957252" a="3.9712817517393519" b="-0.0018586216557396349" c="-0.00012976474289094785" d="8.1073609294327565e-06" /> - <width sOffset="982.68112679433705" a="3.9684501651666233" b="-0.0021740648091952727" c="-0.00010003235991194739" d="1.2406294392691278e-05" /> - <width sOffset="987.54561357239174" a="3.9569354488090998" b="-0.0022665579404807694" c="-4.6246196265799725e-05" d="1.9713104638274458e-06" /> - <width sOffset="991.29539644211923" a="3.947890024613061" b="-0.0025302292998061484" c="-4.2400851552093509e-05" d="4.9089839793814193e-06" /> - <width sOffset="993.68813494829703" a="3.9416603419700009" b="-0.0026488228909263703" c="0.00038365193867795301" d="-1.8511021931085592e-05" /> - <width sOffset="1001.3084812546658" a="3.9355626068713598" b="-2.6488862725199298e-05" c="-4.2536830625656615e-05" d="-1.8933542094195043e-05" /> - <width sOffset="1003.8998765671621" a="3.9348788320189305" b="-0.00062838328041022124" c="0.00027861882900847971" d="-2.7393134248029472e-05" /> - <width sOffset="1011.3215660672125" a="3.9343636548273269" b="-0.0010193011255264543" c="-0.00031827682091742403" d="-3.2082097408356225e-05" /> - <width sOffset="1013.2207229623572" a="3.9310601239115348" b="-0.0025753571931698706" c="-0.00073692003500665801" d="0.0001047793723578837" /> - <width sOffset="1018.1656292450274" a="3.9129752061451963" b="-0.0021771317258213606" c="0.0034119765322382601" d="-0.00031902346698972883" /> - <width sOffset="1018.6597484458047" a="3.9126940032067408" b="0.00096104214803422773" c="0.0029366226847933638" d="-0.00032177651849958427" /> - <width sOffset="1021.3346508797591" a="3.9301179891094504" b="0.0097643680537210405" c="0.00036027097042590613" d="-0.00032020647920672006" /> - <width sOffset="1024.8340405183028" a="3.9549774261906583" b="0.00052234086250882851" c="-0.00019171142791998751" d="6.6704450475404097e-06" /> - <width sOffset="1031.3477356923058" a="3.9520892941470804" b="-0.0011261133168018527" c="-6.5197317594904822e-05" d="6.682486831272251e-06" /> - <width sOffset="1036.3798395906504" a="3.945623148345371" b="-0.0012746294780596158" c="5.7399096626057061e-05" d="9.8268722387290728e-06" /> - <width sOffset="1037.7934647310722" a="3.9439637626661179" b="-0.0010534356872082937" c="-9.0834517075132716e-05" d="5.0609073447924998e-06" /> - <width sOffset="1041.3608205048524" a="3.9392795766697599" b="-0.0015082980312672255" c="-4.1348519896742645e-05" d="4.2775079819552026e-06" /> - <width sOffset="1051.3739053173992" a="3.9243255018178265" b="-0.0010497376893868044" c="8.6791807956188529e-05" d="4.2246788212003433e-06" /> - <width sOffset="1056.3280698824767" a="3.921768819270576" b="0.0001212924482188898" c="0.00011710767683746287" d="4.0652801783617379e-06" /> - <width sOffset="1058.8592432968721" a="3.9228920474225282" b="0.00079226890967900058" c="0.0021984275533308219" d="-0.00037378512472399943" /> - <width sOffset="1061.3869901299458" a="3.9329045426826217" b="0.0047415007738944373" c="-0.0006323897561546734" d="-0.0003742567603167746" /> - <width sOffset="1063.1461613304486" a="3.937251125360989" b="-0.00095808137157458702" c="-0.00039327839979583663" d="3.3486817229425737e-05" /> - <width sOffset="1069.6003152710264" a="3.9236881700979267" b="-0.001849849107285009" c="6.0383104877548135e-05" d="-1.7847103440222629e-06" /> - <width sOffset="1071.4000749424924" a="3.9205440710350006" b="-0.0016498417058399715" c="5.6618414211925263e-05" d="1.3955334056632435e-06" /> - <width sOffset="1073.1148478361604" a="3.9178884871475992" b="-0.001443355789708919" c="3.9889258232172005e-05" d="-4.193536334208011e-08" /> - <width sOffset="1081.413159755039" a="3.9086339604569718" b="-0.00078999203220612426" c="4.1934778240790715e-05" d="1.1398706610480654e-08" /> - <width sOffset="1089.1642607190179" a="3.9050353839194836" b="-0.00013785614406981294" c="4.2334206517699709e-05" d="-6.0678958924849214e-07" /> - <width sOffset="1091.4262445675859" a="3.9049331387781576" b="4.434839277983561e-05" c="3.5920755509190157e-05" d="-3.8278877768146332e-07" /> - <width sOffset="1098.3313621178254" a="3.9068260649948869" b="0.00048566762000739954" c="0.00016559832695227931" d="-1.5100833669617656e-05" /> - <width sOffset="1101.4393293801324" a="3.909481748095101" b="0.0010774182585212119" c="1.1781217137638173e-05" d="-1.6898112407303771e-05" /> - <width sOffset="1106.749018543637" a="3.9130050867070088" b="-0.00022668779993812891" c="-0.00040183817466376816" d="3.5319439303048283e-05" /> - <width sOffset="1111.2175187123999" a="3.9071197991050131" b="-0.0017021936510553675" c="0.00011848488953431485" d="3.343677730753136e-05" /> - <width sOffset="1111.452414192679" a="3.9067269323782261" b="-0.0016409958094862822" c="0.00014413517968349095" d="3.2406950814192606e-05" /> - <width sOffset="1114.683568533633" a="3.9040226739177024" b="0.00030547075458231022" c="0.0021028938863753188" d="-0.00037149257560535831" /> - <width sOffset="1118.6399742633489" a="3.9151415371622011" b="-0.00049980930719658017" c="-0.00048176558530836958" d="5.4165894722790493e-05" /> - <width sOffset="1121.4654990052259" a="3.9111049597704035" b="-0.00192497557211361" c="-1.3082239189355013e-05" d="5.48740203169259e-05" /> - <width sOffset="1124.1340290980831" a="3.9069177021630326" b="-0.00082251387265381182" c="0.0016842663530421886" d="-0.00030482334313157807" /> - <width sOffset="1127.5118468012499" a="3.911608485822414" b="0.00012199033727888818" c="-0.00039988678096059503" d="1.468912890982643e-05" /> - <width sOffset="1127.6147852470567" a="3.9116168220108394" b="4.0129842097624564e-05" c="-0.00061415320507708507" d="3.3537437144297419e-05" /> - <width sOffset="1131.4785838177725" a="3.9045377400167274" b="-0.0032037636100784839" c="-0.00022845857033420398" d="3.3963002687817593e-05" /> - <width sOffset="1138.3404713176158" a="3.8827700786052741" b="-0.0015415827307585384" c="0.00048906506214138894" d="7.7208351361602462e-07" /> - <width sOffset="1141.4916686303191" a="3.8827928447530988" b="0.0015636987593088049" c="0.00049068960051983882" d="-9.0176981511333457e-07" /> - <width sOffset="1143.1461255607167" a="3.8867189624084015" b="0.003179943331774372" c="1.5263427117299048e-05" d="-1.736010874424153e-05" /> - <width sOffset="1150.8406298982554" a="3.9041822225361438" b="0.0003313959535752337" c="2.8382272464582297e-06" d="-6.6354725157938945e-07" /> - <width sOffset="1151.5047534428656" a="3.904403367855056" b="0.00033428782803826833" c="-8.7720258547523588e-07" d="-4.9511724614763701e-07" /> - <width sOffset="1161.5178382554125" a="3.907165606914373" b="0.00016779668112972435" c="-1.1719373272533523e-05" d="-2.5894312925996673e-07" /> - <width sOffset="1164.3809167107784" a="3.907543878508096" b="9.4321870847578938e-05" c="-0.00028850867048993168" d="1.1966515470824215e-05" /> - <width sOffset="1171.5309230679591" a="3.8978430524548475" b="-0.0021960779603437336" c="-3.3652264209240019e-05" d="1.1980580230285091e-05" /> - <width sOffset="1176.8225597659341" a="3.8870550971206121" b="-0.0015458093342246694" c="-2.9261994583663913e-06" d="3.5224492684605268e-07" /> - <width sOffset="1180.2045263787891" a="3.8818073780839732" b="-0.0015535153384979693" c="-0.00050833042262736494" d="4.4480568393739194e-05" /> - <width sOffset="1181.5440078805057" a="3.8789213218306458" b="-0.0026758911998479131" c="-0.00034516998757312846" d="3.7544251684503118e-05" /> - <width sOffset="1189.1832990969608" a="3.8550736784937802" b="-0.0013764902290743816" c="0.00079512277344240972" d="-6.0617529185427594e-05" /> - <width sOffset="1191.5570926930523" a="3.8554757840403191" b="0.0013737040414243402" c="0.00036801915820084031" d="-6.2544065402005348e-05" /> - <width sOffset="1196.2778782808555" a="3.8635823076604097" b="0.00066684641103833598" c="-3.9807816683588046e-05" d="2.855400058894006e-07" /> - <width sOffset="1201.5701775055991" a="3.8660388292233705" b="0.00026948923902237517" c="-2.2690132949756748e-05" d="1.5785864938349363e-06" /> - <width sOffset="1211.5832623181457" a="3.8680470839853198" b="0.00028990887722676027" c="2.6626314481972468e-05" d="1.7468736472535597e-06" /> - <width sOffset="1213.7251968486914" a="3.8688073746832057" b="0.0004280158805685281" c="0.00016399172004223698" d="-4.7007136188649644e-06" /> - <width sOffset="1214.0353603448532" a="3.8689557655566214" b="0.00052838772541657876" c="0.00014868872701543707" d="-6.0764977268510866e-06" /> - <width sOffset="1221.5963471306923" a="3.878824644030638" b="0.0017347015588370313" c="9.3040479676989803e-06" d="-5.9984219061538657e-06" /> - <width sOffset="1230.6785331765316" a="3.8908532383978871" b="0.00041934439983546301" c="-0.00018044628673091946" d="-2.5663298614525228e-06" /> - <width sOffset="1230.7527376001626" a="3.8908833609680444" b="0.00039252218150487446" c="-6.5067714540812863e-05" d="4.4913331511336628e-06" /> - <width sOffset="1237.6217179606238" a="3.8919651389053653" b="0.00013436672507986003" c="3.8538249261102836e-05" d="-3.2438693766265872e-07" /> - <width sOffset="1241.6225167557857" a="3.8930987982190848" b="0.00042715749502411757" c="2.9105263225103559e-05" d="-1.021387756124472e-06" /> - <width sOffset="1251.1946279094152" a="3.8989585703115504" b="0.00070360020922514369" c="0.00010270171078390669" d="-6.0893485241617525e-06" /> - <width sOffset="1251.6356015683323" a="3.8992882884494318" b="0.00079062534421091854" c="9.5116807025205196e-05" d="-6.6876007658899625e-06" /> - <width sOffset="1254.8684148980988" a="3.9026123562169017" b="0.0011959371150163688" c="-4.1883993197169776e-05" d="-2.7109681610520413e-06" /> - <width sOffset="1261.6486863808789" a="3.907950622759004" b="0.00025408087894096044" c="-9.4292043654315756e-05" d="-2.5377299030634199e-06" /> - <width sOffset="1269.2396468550342" a="3.9033359480970393" b="-0.0016161458752709183" c="-0.00015823321168063003" d="7.9704787546893755e-06" /> - <width sOffset="1271.6617711934257" a="3.8986063964786037" b="-0.0022423860057812352" c="-9.8252227695361705e-05" d="7.3178950668728492e-06" /> - <width sOffset="1279.0996467913412" a="3.8795034528253396" b="-0.0024894400714189453" c="-0.00067354886952854156" d="0.00013352357458916214" /> - <width sOffset="1281.6748560059723" a="3.8709061665549722" b="-0.0033020327121669902" c="0.00035959114356992649" d="0.00013459409495445118" /> - <width sOffset="1282.7366259619557" a="3.8679666625323108" b="-0.0020832204116207182" c="0.0020007428384022875" d="-5.6338766619732635e-05" /> - <width sOffset="1284.5812969234414" a="3.87057831379569" b="0.0047230735022525863" c="0.00042162703840125033" d="-0.00019255836950089804" /> - <width sOffset="1286.3095568616725" a="3.879006355567352" b="0.0044549881182953258" c="0.00017190441199830839" d="-1.1659886720973662e-05" /> - <width sOffset="1291.6879408185189" a="3.906125621489613" b="0.0052922668626969984" c="-4.1896739047311887e-05" d="-3.7083431067778524e-06" /> - <width sOffset="1293.7185807233554" a="3.9166684974113277" b="0.005076238441450158" c="-0.0018235559658677726" d="0.00015506540676642891" /> - <width sOffset="1301.3824229369416" a="3.9182662467462506" b="0.0044484049838471543" c="-8.131264375643562e-05" d="-5.3124006786903965e-06" /> - <width sOffset="1301.7010256310657" a="3.9196750948947781" b="0.0043949743807634957" c="-8.7969941020285319e-05" d="-4.6048534711054379e-06" /> - <width sOffset="1305.0762066456707" a="3.9333297343639337" b="0.0036437720742262983" c="-0.00013744749057729064" d="4.8110194493566474e-06" /> - <width sOffset="1311.7141104436123" a="3.9528676798100286" b="0.0024549916863723853" c="-4.3767213783827171e-05" d="4.5770204982819536e-06" /> - <width sOffset="1311.9079026518759" a="3.9533418276854233" b="0.0024385438721496746" c="-0.00017395160064477159" d="8.5334114208109373e-06" /> - <width sOffset="1320.2508323809955" a="3.9665340146225141" b="0.0013179028144739684" c="2.0670945562838115e-05" d="-4.8865338959079773e-07" /> - <width sOffset="1320.9322764108581" a="3.9674415358817852" b="0.0013453942573576081" c="-6.0882260040596225e-05" d="-6.6363475239076822e-08" /> - <width sOffset="1321.7271952561589" a="3.9684725105417438" b="0.0012484755412165687" c="-5.9160285314582354e-05" d="5.7186807796743922e-07" /> - <width sOffset="1331.7402800687055" a="3.9756161971895914" b="0.00023573131675668109" c="-5.5766337151869826e-05" d="3.2728722538770798e-06" /> - <width sOffset="1335.1320118841957" a="3.9759019080999209" b="-2.9605760668146349e-05" c="2.406298895169058e-05" d="-1.620924418815452e-05" /> - <width sOffset="1340.3043713727952" a="3.9741495429768925" b="-0.0010816333501168784" c="-5.2237685235457333e-05" d="-2.3840880554564671e-05" /> - <width sOffset="1341.7533648812523" a="3.972400055303611" b="-0.0013831851481722218" c="-0.00017500192268954287" d="-1.4248262867360215e-05" /> - <width sOffset="1343.7788332117907" a="3.9687621120166447" b="-0.0022674682863863438" c="-0.0011267303370138607" d="0.00022156220730564765" /> - <width sOffset="1348.0047653414495" a="3.9557792666493317" b="7.9867457461573355e-05" c="3.6467968576578996e-05" d="-8.7850740853025151e-06" /> - <width sOffset="1351.7664496937989" a="3.9561281150291334" b="-1.8704057895119718e-05" c="-6.3769284170878322e-05" d="-9.3136703214974537e-06" /> - <width sOffset="1356.0062380810357" a="3.9541926810747809" b="-0.0010617027793623968" c="-6.7915330288987054e-05" d="2.1309404509972866e-06" /> - <width sOffset="1361.7795345063455" a="3.9462095293545945" b="-0.0016328146273276323" c="-1.3052911178657031e-06" d="-1.3606243265434237e-05" /> - <width sOffset="1363.0537797520437" a="3.9440986524512489" b="-0.0017024185595278891" c="4.6346352876668634e-06" d="7.8406714021268317e-06" /> - <width sOffset="1368.4576852331884" a="3.9362715891836793" b="-0.00096543386476917676" c="0.00024178522304955713" d="-1.688485005475607e-06" /> - <width sOffset="1371.7926193188923" a="3.9356783876137378" b="0.00059090479534209032" c="0.00023297567567192738" d="4.5923725547684728e-07" /> - <width sOffset="1373.8093709405371" a="3.9378214417680955" b="0.0015362164880732955" c="0.00019448327764668073" d="-7.4670488741463223e-06" /> - <width sOffset="1381.8057041314389" a="3.9587231884894285" b="0.0032141632309385547" c="1.6763650542464734e-05" d="-7.5228146853692301e-06" /> - <width sOffset="1391.372316854955" a="3.984419550225565" b="0.0014694401531211219" c="-0.00011818360734232161" d="-1.3306204810150186e-06" /> - <width sOffset="1391.8187889439855" a="3.9850519374128384" b="0.00136311306201428" c="-0.00012325777068380143" d="-6.5516270290955235e-07" /> - <width sOffset="1394.5951494816109" a="3.9878723169827257" b="0.00066354670917590885" c="-0.00035649382028947148" d="1.2826325711497682e-05" /> - <width sOffset="1401.8318737565321" a="3.9788656071097659" b="-0.0024809973664306501" c="-7.9205307544750258e-05" d="1.3051309856264251e-05" /> - <width sOffset="1409.168525378084" a="3.9615540927654216" b="-0.0015356835555552085" c="9.8208401240060673e-05" d="-1.4179662413159633e-06" /> - <width sOffset="1411.8449585690789" a="3.9581202486777878" b="-0.0010404590359951106" c="8.3701645266239248e-05" d="-4.3992595666601729e-07" /> - <width sOffset="1415.9200382307158" a="3.9552404970766517" b="-0.00038019388471221887" c="0.00092396794843829246" d="-6.9976107828756743e-05" /> - <width sOffset="1421.8580433816255" a="3.97091078356515" b="0.0031908062104005147" c="-0.00031952736452997256" d="-7.1326349394003449e-05" /> - <width sOffset="1423.9022050477843" a="3.9754888809942899" b="0.00099034283955820785" c="-0.00029917854629147645" d="9.4946179511206303e-06" /> - <width sOffset="1429.0789028652362" a="3.9739152921295116" b="-0.0013438549949875925" c="-0.00010947953476653542" d="1.2263475389545737e-05" /> - <width sOffset="1431.8711281941721" a="3.9695763580715857" b="-0.0016684006773447159" c="-7.752709953615939e-06" d="1.2487123694916224e-05" /> - <width sOffset="1437.3288667834508" a="3.962269755381377" b="-0.00063716669787304255" c="6.2415005099378064e-05" d="-3.8525986787565061e-06" /> - <width sOffset="1441.8842130067187" a="3.9602982438745222" b="-0.00030836067922782213" c="4.3388225052034299e-06" d="-3.9665651991769544e-06" /> - <width sOffset="1444.9032619546967" a="3.9592976844354739" b="-0.00039062408261284626" c="-4.1117865977529925e-06" d="4.1089460497047939e-07" /> - <width sOffset="1451.8972978192655" a="3.9565050881416761" b="-0.00038784142420471377" c="1.8840506990719456e-07" d="6.1883414704118962e-07" /> - <width sOffset="1461.9103826318121" a="3.9532617554370795" b="-0.00019793199061860986" c="1.8820405354785202e-05" d="-2.5981218908519349e-06" /> - <width sOffset="1462.9852847714139" a="3.9530675165308486" b="-0.00016647752663060972" c="0.00027074650599755092" d="-8.7021605524941311e-05" /> - <width sOffset="1465.1468344281675" a="3.9530938089964645" b="-0.00021578583045923569" c="-0.00037758249046390685" d="-8.2018422306547831e-05" /> - <width sOffset="1465.9238600046588" a="3.952659686949282" b="-0.00095112881519479001" c="-0.00028393799313408056" d="6.0976230762031771e-06" /> - <width sOffset="1471.9234674443587" a="3.9380496852737692" b="-0.0036997046848384167" c="-0.0001684124640205653" d="6.0836150537416383e-06" /> - <width sOffset="1475.7224977041017" a="3.921897324912317" b="-0.0047159050666122117" c="5.6910475661518402e-05" d="5.1880869366155308e-06" /> - <width sOffset="1479.7007253878137" a="3.9043637079298161" b="-0.0040167748162029263" c="-6.5593556129110232e-05" d="6.2372575756203546e-06" /> - <width sOffset="1481.9365522569055" a="3.8951247099159967" b="-0.0042165477982834161" c="-1.5270375629910637e-05" d="2.7994339528159085e-06" /> - <width sOffset="1483.8693809113997" a="3.8869380119411847" b="-0.0042442032379044481" c="-1.8180000850609356e-05" d="5.8582994469632723e-06" /> - <width sOffset="1491.9496370694521" a="3.8545474100831192" b="-0.0033905267698217324" c="0.0001247845416923067" d="6.0317390189153547e-06" /> - <width sOffset="1497.4722369173569" a="3.840644657001187" b="-0.001460368589038856" c="-2.8629763931507957e-05" d="-4.4123869047506961e-08" /> - <width sOffset="1501.9627218819987" a="3.8335055948804162" b="-0.0017201608393339945" c="-3.3964518936603123e-05" d="8.5477255974532953e-07" /> - <width sOffset="1506.0184871585523" a="3.8260273615150542" b="-0.0019534840160373265" c="-0.00029512785143721398" d="3.15124869792936e-05" /> - <width sOffset="1511.9758066945453" a="3.810578318593083" b="-0.0021147238731067212" c="0.00027732036239327008" d="2.7897643414846346e-05" /> - <width sOffset="1514.4249552917199" a="3.8074723429799331" b="-0.00025430860194629464" c="0.0004101196989202463" d="-2.9184997551086409e-05" /> - <width sOffset="1521.9888915070921" a="3.8163830043878608" b="0.00094063461413163528" c="-0.00025512902636057349" d="-2.4357219747499589e-05" /> - <width sOffset="1523.6829792536773" a="3.8171258958496503" b="-0.00013349808822988424" c="-0.00021312080158086784" d="8.917480015511412e-06" /> - <width sOffset="1532.0019763196387" a="3.8064001392601261" b="-0.0018279790682565686" c="-2.4864214393086825e-05" d="1.6994687989414259e-05" /> - <width sOffset="1534.3200555375875" a="3.8022408201981861" b="-0.0016692910833981092" c="-0.00034333964160363119" d="4.1832090934332101e-05" /> - <width sOffset="1535.4932789213071" a="3.7998773320467913" b="-0.002302179540818244" c="-0.00015645938923600165" d="4.2762560612465211e-05" /> - <width sOffset="1541.4588960690344" a="3.7896540706044606" b="0.00039664427687215707" c="0.00013844748054154415" d="-2.0338387864519169e-05" /> - <width sOffset="1542.0150611321853" a="3.7899139959413004" b="0.00053177039576762428" c="0.00010887655471498599" d="-2.0009099005327887e-05" /> - <width sOffset="1545.1558092878827" a="3.7920382362431755" b="0.00062355086803042028" c="-0.0033515964132230431" d="0.00059579170584399981" /> - <width sOffset="1548.3391308604737" a="3.779278905742967" b="-0.0026024369434367329" c="0.00041770679481670215" d="-2.2209397020917492e-05" /> - <width sOffset="1552.0281459447322" a="3.774247995795426" b="-0.00042731548777023083" c="0.00016908870826171064" d="-2.2597546398362882e-05" /> - <width sOffset="1557.1042702317632" a="3.7734801202165746" b="-0.00045750038559934977" c="-1.6810541457490328e-05" d="8.3199702717721809e-07" /> - <width sOffset="1562.0412307572788" a="3.7709118411741898" b="-0.00056265010839164965" c="-5.4440940886850216e-06" d="7.844511965146054e-07" /> - <width sOffset="1571.1119618723674" a="3.7659457173116753" b="-0.00046778432553087369" c="0.00020870953371171334" d="-1.3483072928596479e-05" /> - <width sOffset="1572.0543155698253" a="3.7656789562938258" b="-0.00011034806357823395" c="0.00017445564549657328" d="-1.3836440563939316e-05" /> - <width sOffset="1582.0674003823719" a="3.7681744547479736" b="-0.00077847182476315272" c="-0.00023808747510051519" d="-1.3691970827798191e-05" /> - <width sOffset="1584.1028314225391" a="3.7654880765439733" b="-0.0019178697631063064" c="3.0360496495448115e-05" d="9.5886503035358991e-07" /> - <width sOffset="1592.0804851949188" a="3.7526070438379264" b="-0.0012503836788225232" c="5.2058192111333564e-05" d="1.0241018889339942e-06" /> - <width sOffset="1599.1252748781512" a="3.7467400059805747" b="-0.00036443000195550412" c="5.3765914829607411e-05" d="-3.3371603841223343e-06" /> - <width sOffset="1602.0935700074654" a="3.7460447129112637" b="-0.00013345271334251504" c="2.6120641541233674e-05" d="-3.8248625038313879e-06" /> - <width sOffset="1609.4020955312517" a="3.7449714367200384" b="-0.00036455583733551686" c="-0.00048054051977298903" d="4.1178414233552188e-05" /> - <width sOffset="1612.106654820012" a="3.7412851201136843" b="-0.0020602405455095139" c="-0.00015167985335957582" d="4.4138523179722564e-05" /> - <width sOffset="1616.9320185161669" a="3.7327711341447762" b="-0.00044087949039608586" c="3.4295810111656945e-05" d="1.0332236861104597e-06" /> - <width sOffset="1621.0588594411774" a="3.7316083987975266" b="-0.00010502285742808147" c="9.5139328860480214e-05" d="-2.0619168691817265e-06" /> - <width sOffset="1622.1197396325588" a="3.7316015963839226" b="8.9878144570344054e-05" c="9.2469763059807993e-05" d="1.2148550064531288e-06" /> - <width sOffset="1622.5684645848978" a="3.7316606558797059" b="0.00017359897266326269" c="0.0006574723701075248" d="-3.6336192521767624e-05" /> - <width sOffset="1632.1328244451054" a="3.7616733892865195" b="0.0027784282452255958" c="-0.00036201685394620379" d="-4.4219265493349071e-05" /> - <width sOffset="1633.8736038791862" a="3.765179734302404" b="0.0011160506066607476" c="-0.0002972881504472774" d="7.4127966580952664e-05" /> - <width sOffset="1636.9124339769469" a="3.7679061005611865" b="0.0013628357823924379" c="0.00034033705883922355" d="-2.1861676778897599e-05" /> - <width sOffset="1642.145909257652" a="3.7812263739832841" b="0.0031288012730283409" c="3.1337794293750579e-05" d="-2.6963247126576939e-05" /> - <width sOffset="1645.2496854663577" a="3.7904331621724801" b="0.0025440868750452894" c="-6.0020882660763081e-05" d="1.4120505148451233e-05" /> - <width sOffset="1649.0173482024302" a="3.7999216176016475" b="0.0026931436676408981" c="0.00013001291679025053" d="-7.3165990653303952e-06" /> - <width sOffset="1652.1589940701986" a="3.8094388687796554" b="0.0032934095991361692" c="7.4417961786736207e-05" d="-4.0008321142127324e-06" /> - <width sOffset="1657.1497355888509" a="3.8272316592214928" b="0.0037372590338528729" c="5.9147783224291258e-05" d="-6.8591057816524532e-06" /> - <width sOffset="1662.1720788827454" a="3.8466244629505049" b="0.0038123391219223569" c="-5.6168051673165999e-05" d="2.7090760188644048e-07" /> - <width sOffset="1663.3597361186144" a="3.8510734422200175" b="0.0036800687055961864" c="-0.00035891769984784286" d="3.8298498468625498e-05" /> - <width sOffset="1668.2615930555239" a="3.8649993703540257" b="0.0029220743790424534" c="9.4266273193338213e-05" d="-1.3871145790426948e-05" /> - <width sOffset="1672.1321097205093" a="3.8769171994524476" b="0.0030283860288551376" c="-0.00020130285393811991" d="2.6078164541886264e-05" /> - <width sOffset="1672.185163695292" a="3.8770773046507467" b="0.003007246404427049" c="-0.00021298045733473091" d="2.5703857530166702e-05" /> - <width sOffset="1676.5041842584371" a="3.8881636154529029" b="0.0026059469972436093" c="-0.0033549823982271217" d="0.00048548532360018763" /> - <width sOffset="1676.9545564536916" a="3.8887011029980356" b="-0.00012061416496545775" c="-0.0029344817948219271" d="0.00046596781460065578" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="170.98913409052579" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="170.98913409052579" color="standard" width="0.27524430384841919" weight="bold" type="solid"> - <type name="solid"> - <line length="1509.2987877128849" space="0" width="0.27524399999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="2" /> - </link> - <width sOffset="0" a="3.6551692970762013" b="-0.0032954389182017667" c="0.00037656089889451065" d="-4.6030705289485639e-05" /> - <width sOffset="1.3036140141764099" a="3.6514112726582919" b="-0.0025483338415226661" c="0.00034162371141268293" d="5.1637260473944484e-05" /> - <width sOffset="4.3588032847111116" a="3.6482869836113281" b="0.00098509103480790244" c="0.00022705734533767108" d="-5.3514632335056688e-06" /> - <width sOffset="10.013084812546658" a="3.6601487960321517" b="0.0030395100606212637" c="0.00014002874613134762" d="-5.3869143982858312e-06" /> - <width sOffset="20.026169625093317" a="3.699215123534338" b="0.0042234431907262155" c="-1.3526154785451484e-05" d="-6.9463424316962096e-06" /> - <width sOffset="22.072164124463363" a="3.7077401498149296" b="0.0040808601976218334" c="-0.0002262346391564677" d="1.3382193728256192e-06" /> - <width sOffset="30.039254437639975" a="3.7265693419165942" b="0.00073082512275055109" c="-0.00019073054291211895" d="1.3198118498902983e-06" /> - <width sOffset="38.601777390847971" a="3.7196718430947024" b="-0.0022451510387428699" c="-0.0011743668035514596" d="0.0008734410524184541" /> - <width sOffset="39.874932233243676" a="3.7167123680422782" b="-0.0009881098688990413" c="0.0021981685132118449" d="-0.00028715237559744306" /> - <width sOffset="40.052339250186634" a="3.7166046505875152" b="-0.00023528168678749444" c="0.0020437280505558051" d="-0.0002858147453872296" /> - <width sOffset="41.439403181111864" a="3.7194475872802313" b="0.0037846045331207702" c="0.00072611888453947551" d="-0.00028769802141972805" /> - <width sOffset="43.806026403060564" a="3.7286577391937525" b="0.0023873958915526725" c="-0.00018660351190288434" d="4.0567016198613483e-06" /> - <width sOffset="50.065424062733292" a="3.7372851428202054" b="0.00052817014735788512" c="-0.00010554127467965853" d="3.2421554295723097e-06" /> - <width sOffset="57.594768315716053" a="3.7366625765173995" b="-0.00050973969019793217" c="-0.00042950291765595021" d="1.540472530223954e-05" /> - <width sOffset="60.078508875279951" a="3.7329829589334524" b="-0.0023581935904351883" c="-0.0003096288180463512" d="1.7869604018063449e-05" /> - <width sOffset="60.581625678088926" a="3.7317204125829266" b="-0.0026561827005301799" c="-0.00023134945956282315" d="1.4460520823962561e-05" /> - <width sOffset="70.091593687826617" a="3.6979742291978059" b="-0.0031330281671164417" c="0.00017417801167266797" d="1.4049698889008353e-05" /> - <width sOffset="78.674208190907606" a="3.6927971381906244" b="0.0029615333529400428" c="-3.1050134544359577e-05" d="-4.6246528942179869e-06" /> - <width sOffset="80.104678500373268" a="3.6969564507405899" b="0.0028443112389650435" c="-4.4478897061631104e-05" d="-7.2763431631204448e-06" /> - <width sOffset="81.475289624124997" a="3.7007526033303515" b="0.0026813772309408805" c="3.2438340145526129e-05" d="-3.924108419075261e-06" /> - <width sOffset="90.117763312919919" a="3.7238161147128728" b="0.0023627695777404568" c="-6.8276075982081204e-05" d="-3.394108240395312e-06" /> - <width sOffset="99.588419636782078" a="3.7371860434137849" b="0.00015624445255295739" c="-2.6777771803381179e-05" d="-1.3544119986123837e-06" /> - <width sOffset="100.13084812546658" a="3.7372626999065299" b="0.00012599887947049393" c="-3.3910973878197018e-05" d="-1.2351193305510808e-06" /> - <width sOffset="110.14393293801325" a="3.7338843857356068" b="-0.00092461414742944564" c="-7.7115327826460242e-05" d="-1.7043251024399131e-06" /> - <width sOffset="118.76624855428869" a="3.7190864767164031" b="-0.0026345602442508103" c="-0.0015631118954592112" d="0.00022859452842889915" /> - <width sOffset="119.78921124112837" a="3.7150004036248285" b="-0.0051149304769777717" c="-0.00098490533978428524" d="0.00023332855087834754" /> - <width sOffset="120.1570177505599" a="3.7129974691387995" b="-0.0057447444683375228" c="-0.00071860789998475904" d="0.00023404681944008362" /> - <width sOffset="123.98424188877459" a="3.6936057536476228" b="-0.00096058757414574651" c="-5.1773454489624524e-05" d="2.9853804807103715e-06" /> - <width sOffset="130.17010256310655" a="3.6863892311734832" b="-0.0012584087179241768" c="1.0755105092831833e-06" d="4.1587016818087862e-06" /> - <width sOffset="138.71232008195562" a="3.6783103164246929" b="-0.00032965932916760566" c="-0.00054709942940180415" d="9.8204661771218591e-05" /> - <width sOffset="139.87781024511833" a="3.6773384137940184" b="-0.0012047433258554848" c="0.00097638004948530745" d="-8.7637804589308673e-05" /> - <width sOffset="140.18318737565323" a="3.6770590694933212" b="-0.00063293309105240793" c="0.00087749273238533175" d="-9.4276546392521048e-05" /> - <width sOffset="143.86261113720616" a="3.6819137145369929" b="0.0019954094427099842" c="-0.00036886503849901876" d="-0.00019486196590985276" /> - <width sOffset="144.78629856636752" a="3.6832885655568823" b="0.0008152096528237573" c="0.00036878755238572275" d="-1.4070512859089506e-05" /> - <width sOffset="150.19627218819988" a="3.6962645356398447" b="0.0035700320291652114" c="0.00014173386287521259" d="-1.4392334717211556e-05" /> - <width sOffset="160.20935700074654" a="3.7317731659316635" b="0.0020794113410124164" c="-0.00028815275170340185" d="-1.4377467383108708e-05" /> - <width sOffset="160.31856064153411" a="3.7319967901500504" b="0.0020159623091576683" c="0.00013486346246164267" d="-1.0894857664811161e-05" /> - <width sOffset="170.22244181329319" a="3.7546072677976792" b="0.0014813785129483125" c="-0.00018989522403803019" d="-1.0458234300314634e-05" /> - <width sOffset="177.57725725126363" a="3.7510697021580381" b="-0.0030090716719058412" c="-0.00071865493581943127" d="3.7710878922920552e-06" /> - <width sOffset="178.12516424543182" a="3.7492058893197937" b="-0.0037931875381417746" c="-0.00067735986101536685" d="3.030059165947754e-05" /> - <width sOffset="180.23552662583984" a="3.738468967611114" b="-0.0062472942600790577" c="-0.00048973075475785741" d="2.8642564090228285e-05" /> - <width sOffset="190.24861143838652" a="3.6555681063575785" b="-0.0074394545316183594" c="0.00037147903277337958" d="2.8812149119025174e-05" /> - <width sOffset="193.64909612995243" a="3.6356987942584835" b="-0.0039135467653816283" c="0.00085731240056076202" d="-7.9275699605424471e-06" /> - <width sOffset="196.93998298777544" a="3.6318218539903846" b="0.0014715242254050229" c="0.00036524673360547764" d="-2.1607111604502754e-05" /> - <width sOffset="200.26169625093317" a="3.6399479639380297" b="0.003182789781101091" c="0.00015081373352914391" d="-2.1780874178428441e-05" /> - <width sOffset="210.27478106347982" a="3.6650718888208784" b="-0.00034836216978465542" c="-0.00050205326045058539" d="-2.1833392787846071e-05" /> - <width sOffset="210.3111477763" a="3.6650585549993706" b="-0.00038496484975254487" c="1.8015197261002366e-05" d="-1.1692743604440601e-07" /> - <width sOffset="215.42997962940208" a="3.6635443437856656" b="-0.00020972267081384612" c="0.00013321760665141417" d="-6.23817127366749e-08" /> - <width sOffset="220.2878658760265" a="3.6656621935022864" b="0.001080172838388319" c="0.00013073506831319927" d="1.6876613023706328e-07" /> - <width sOffset="228.38492541530024" a="3.6830693102237695" b="0.0032305062264278059" c="0.0033096634998854937" d="-0.00056066562522748774" /> - <width sOffset="229.53669335743629" a="3.690323960966289" b="0.0086231492896649241" c="0.0010479443762191189" d="-0.00055163828118589674" /> - <width sOffset="230.30095068857315" a="3.6972801107946078" b="0.0092583296340610442" c="-0.00021791407064558307" d="-0.00055288657163672975" /> - <width sOffset="231.73232708845657" a="3.7084643668779691" b="0.0052361698048516659" c="-0.00087348335390129692" d="3.2042719073208403e-05" /> - <width sOffset="240.3140355011198" a="3.7093225330180748" b="-0.0026763618066426515" c="-4.5316766734079748e-05" d="3.1950157102351829e-05" /> - <width sOffset="246.44646593699755" a="3.6985740771265387" b="0.00037245456593764867" c="0.00091192830049099114" d="-0.0002294909366295543" /> - <width sOffset="249.15779500149029" a="3.7017136181410111" b="0.00025635616418614917" c="-0.0011556449554950476" d="-0.00023783211350054129" /> - <width sOffset="249.40651982336701" a="3.7017022278683323" b="-0.00036265877124900094" c="-0.0002632256146350975" d="9.8784411579659448e-06" /> - <width sOffset="250.32712031366646" a="3.7011529862277408" b="-0.00082219393842693743" c="-0.00023579622988300099" d="1.0576920138804419e-05" /> - <width sOffset="260.34020512621311" a="3.6798974118357188" b="-0.0023629039396425569" c="7.7577193874360514e-05" d="1.0745967392368997e-05" /> - <width sOffset="266.30364290459931" a="3.6708441813539405" b="-0.00029118710026846545" c="0.00027511426784142094" d="7.641410267562636e-06" /> - <width sOffset="266.32987756217847" a="3.67083673164744" b="-0.00027673626528201432" c="0.00027094994354861558" d="-1.0473411605056685e-05" /> - <width sOffset="270.35328993875976" a="3.673427266478952" b="0.0013949244886644159" c="0.00013348472618072223" d="-1.1153903139364421e-05" /> - <width sOffset="280.36637475130647" a="3.6895804471413021" b="0.00071317878274764933" c="-0.00024906326043016327" d="2.635363616134001e-06" /> - <width sOffset="282.17931163238711" a="3.6900704922609533" b="-0.00016390789226353696" c="-0.0001653869658139853" d="-5.9861129873090772e-06" /> - <width sOffset="282.65645013391514" a="3.6899539830611676" b="-0.00032582128643792786" c="-0.00026386779716389835" d="4.5713496999663132e-05" /> - <width sOffset="287.21413967785935" a="3.6873157024073624" b="0.00011767922249713821" c="0.00025598441445481341" d="-1.9634926198767675e-06" /> - <width sOffset="290.37945956385312" a="3.6901906961675088" b="0.001679206167472443" c="0.00019394941392679598" d="-6.1006621633496712e-06" /> - <width sOffset="300.39254437639977" a="3.7203258190553479" b="0.0037282786856783954" c="-2.1654815370704107e-05" d="-4.635329185350441e-06" /> - <width sOffset="304.355851351669" a="3.7344734107341466" b="0.0033381968224134766" c="-0.00011659248461918573" d="1.9224944779435913e-06" /> - <width sOffset="310.40562918894642" a="3.7508271770153145" b="0.0021385683722305515" c="-8.8502525186902526e-05" d="9.3024355218915476e-07" /> - <width sOffset="320.97206174401339" a="3.7646403956949674" b="0.00057984011945255969" c="7.5835724667225242e-05" d="5.5500811029877606e-06" /> - <width sOffset="321.06879147561904" a="3.7646971980649315" b="0.00059466704837705855" c="5.3424630553210159e-05" d="-1.6561936002890153e-06" /> - <width sOffset="330.43179881403972" a="3.7735891575894298" b="0.0011595223246955695" c="4.2957135724156254e-05" d="-2.9924914279642946e-06" /> - <width sOffset="336.53218669388735" a="3.7815819635540837" b="0.0013495384028777008" c="2.05985399690357e-05" d="-6.4539512874171946e-06" /> - <width sOffset="340.44488362658637" a="3.7867910521449204" b="0.0012143156505655464" c="-1.3277298143847864e-05" d="-2.4046390331400987e-06" /> - <width sOffset="350.45796843913303" a="3.7952048003715273" b="0.00022514142566081551" c="-7.3031343230973888e-05" d="-2.0146668343776311e-06" /> - <width sOffset="355.64066164470182" a="3.7941295356407001" b="-0.00069420038733512173" c="-0.00011756025368945336" d="3.3736767500532074e-06" /> - <width sOffset="360.47105325167968" a="3.7884135133743886" b="-0.0015937737215687064" c="-7.5422455602019338e-05" d="4.0579709007665206e-06" /> - <width sOffset="370.48413806422639" a="3.7689668467706534" b="-0.001883617389128634" c="3.8695407344900549e-05" d="3.4723026793933421e-06" /> - <width sOffset="375.71805691015294" a="3.7606660146092521" b="-0.0011932003409539007" c="-1.6761089134133719e-05" d="1.0672336809553997e-06" /> - <width sOffset="380.49722287677304" a="3.7546971790100669" b="-0.0012802801744379632" c="1.6965721233319308e-06" d="1.0003219803584587e-06" /> - <width sOffset="390.51030768931969" a="3.7430519803572722" b="-0.00094542188386901064" c="2.195723576015213e-05" d="7.4978531695787282e-06" /> - <width sOffset="391.57561155530215" a="3.7420788022122364" b="-0.00087311230936704684" c="-2.1634515033176809e-05" d="4.7315612640675668e-06" /> - <width sOffset="400.52339250186634" a="3.7359238810021331" b="-0.00012380821164601559" c="9.6196072517492403e-05" d="4.4096271762555697e-06" /> - <width sOffset="406.26130630273599" a="3.7392136427488287" b="0.0014156644611899882" c="5.9652757628152364e-05" d="2.9515901261734298e-06" /> - <width sOffset="410.53647731441299" a="3.7465867594521658" b="0.0020875553517061525" c="9.8267319291230323e-05" d="2.7911439977449105e-06" /> - <width sOffset="411.14346544400166" a="3.7478907100486172" b="0.002209934606359014" c="0.0001303791086651068" d="-6.8695014596825302e-06" /> - <width sOffset="420.54956212695964" a="3.7744960081888865" b="0.0028393212983735508" c="-6.0822273955764007e-05" d="-6.4115308053549519e-06" /> - <width sOffset="424.01405581049687" a="3.7833361735463029" b="0.0021870171710564649" c="-0.00013654118526494928" d="4.9771927625630213e-06" /> - <width sOffset="430.56264693950629" a="3.7932003618029433" b="0.0010390388686968874" c="-3.8674678183144804e-05" d="4.8272521798224171e-06" /> - <width sOffset="440.575731752053" a="3.8045729767527101" b="0.0017165011580005164" c="0.0001167656523322748" d="1.1327479677716197e-06" /> - <width sOffset="442.04500155564631" a="3.8073506412031168" b="0.0020669576239265232" c="0.00071452207776480652" d="-0.00017653920219027656" /> - <width sOffset="444.37604382750328" a="3.8138152449213889" b="0.0025203060134106336" c="-0.0013905957633045863" d="8.0623564542970955e-05" /> - <width sOffset="445.87648453171175" a="3.8147384798252668" b="-0.0011081780713734968" c="-2.2445809107536619e-05" d="0.00026772557427492418" /> - <width sOffset="446.77087055368463" a="3.8139209282291802" b="-0.00050584627785410822" c="-0.00022318995135405664" d="1.0290889984777825e-05" /> - <width sOffset="450.58881656459965" a="3.8093089787792995" b="-0.0017600786361130793" c="-0.00010572693205235497" d="1.0986408711813459e-05" /> - <width sOffset="460.60190137714631" a="3.7921143741666672" b="-0.00057283054885125923" c="0.00022066156171182932" d="1.0828712438902181e-05" /> - <width sOffset="462.23306423880638" a="3.7918141036183055" b="0.00023347495487503517" c="8.9240229110152731e-05" d="-3.6324290609790131e-06" /> - <width sOffset="470.61498618969296" a="3.797901704250318" b="0.00096387770884234759" c="3.8768129397932772e-06" d="-4.1750948958821931e-06" /> - <width sOffset="477.55904483515269" a="3.8033838695058582" b="0.00041375073438469515" c="-8.8092293240319216e-05" d="7.1757917833685029e-06" /> - <width sOffset="479.30773183297862" a="3.8038763833252589" b="0.00017148773369418842" c="-4.1963061195401453e-05" d="6.0932708336945468e-06" /> - <width sOffset="480.62807100223961" a="3.8040436764139391" b="9.254390225137436e-05" c="-9.5138045860225884e-06" d="1.0129903184721978e-05" /> - <width sOffset="482.55093794485219" a="3.8042584694985084" b="0.00016831977878632785" c="5.1743970980529937e-05" d="-2.5709808145523177e-06" /> - <width sOffset="490.64115581478626" a="3.8076455597932206" b="0.00050073515828194916" c="-1.3861331011839258e-05" d="-2.6058278732180719e-06" /> - <width sOffset="499.85808436021949" a="3.8090429066784632" b="-0.00041889172127749412" c="-0.0003085128565372355" d="1.9451394968639301e-05" /> - <width sOffset="500.65424062733291" a="3.8085236642208828" b="-0.00087315194587178169" c="-0.0002624893080542648" d="1.9417429339152403e-05" /> - <width sOffset="510.66732543987956" a="3.7929568026626299" b="-0.00028932417310236912" c="0.00032175198706957403" d="1.9226897012633993e-05" /> - <width sOffset="513.09154536401854" a="3.7944202238560689" b="0.0016096513038264886" c="0.000184275073404556" d="-5.6782440184986393e-06" /> - <width sOffset="520.68041025242621" a="3.8147665392056407" b="0.0034254835282540117" c="5.7563321466295679e-05" d="-5.7300858415861868e-06" /> - <width sOffset="530.69349506497292" a="3.8490849939896328" b="0.0028547290465153197" c="-0.00010948965906108508" d="-7.7776676611143566e-06" /> - <width sOffset="531.33243248144151" a="3.8508622602905578" b="0.0027052894777451035" c="-0.00045854433986205903" d="1.2075003722036241e-05" /> - <width sOffset="532.08826600446105" a="3.8526502635147635" b="0.0020328178907018124" c="-0.00033319258876645882" d="7.4125768029232154e-06" /> - <width sOffset="540.70657987751952" a="3.8501667343348531" b="-0.0020585838757934665" c="-0.00013799552535709322" d="7.3938418213851368e-06" /> - <width sOffset="548.94264008897028" a="3.8279822541263249" b="-0.0028270302954120623" c="0.00022026979413096722" d="1.3510319708723084e-05" /> - <width sOffset="550.71966469006622" a="3.823729936714213" b="-0.0019161912805435949" c="0.00029276615793915928" d="1.4494919727075099e-05" /> - <width sOffset="552.82333065425019" a="3.8211294624559953" b="-0.00049198896731384475" c="7.8250791554288103e-05" d="-1.8898027389385973e-06" /> - <width sOffset="560.73274950261293" a="3.8211983165209595" b="0.00039117562527111354" c="3.2103834917899737e-05" d="-1.976332283816405e-06" /> - <width sOffset="570.74583431515953" a="3.8263498812543451" b="0.00043964017244295882" c="-2.8193526825986386e-05" d="-1.9292876240824602e-06" /> - <width sOffset="580.75891912770624" a="3.8259884290900592" b="-0.00070527011829648082" c="-9.1236717462691354e-05" d="-1.2999779447372681e-06" /> - <width sOffset="584.45157057239294" a="3.8220745819480713" b="-0.0014322591404737021" c="-0.0022334423305816072" d="0.00044040672212289882" /> - <width sOffset="588.11809724321938" a="3.8085060007690319" b="-4.8496147016480347e-05" c="-3.282671709752109e-06" d="6.8192883109709662e-07" /> - <width sOffset="590.77200394025283" a="3.8083669225864707" b="-5.1511029992528604e-05" c="2.1909799332136766e-07" d="1.1417907290668108e-08" /> - <width sOffset="600.78508875279954" a="3.8078845682346576" b="-4.3688994291290095e-05" c="1.7038869165038053e-06" d="6.9654717409576286e-08" /> - <width sOffset="606.55452360946276" a="3.8077026003952605" b="-1.7072405277602251e-05" c="6.330383513474381e-07" d="-9.9407000728456009e-09" /> - <width sOffset="610.79817356534613" a="3.8076407915069863" b="-1.2236672162538244e-05" c="6.1842489526596249e-07" d="-1.559726665376487e-09" /> - <width sOffset="620.81125837789284" a="3.8075787032483852" b="-3.2113363410431721e-07" c="7.8881927315661629e-08" d="1.6446254725170673e-07" /> - <width sOffset="622.85265431264384" a="3.8075797755119138" b="2.0570178757189515e-06" c="0.00010555703688577801" d="-4.6460060095284827e-06" /> - <width sOffset="622.98283506923758" a="3.8075818219243516" b="2.9303799718142688e-05" c="1.9973655476522161e-05" d="-1.6429386667586347e-06" /> - <width sOffset="630.82434319043944" a="3.8082475998043805" b="3.9481765629743914e-05" c="-2.0074830572692001e-05" d="-1.6216366156855548e-06" /> - <width sOffset="638.86784264127391" a="3.8064224768546806" b="-0.00059821138185630501" c="-0.0026416212589168309" d="0.00036829346256349121" /> - <width sOffset="640.83742800298614" a="3.7978106589549698" b="-0.0067178830361194364" c="-0.00046654297710780419" d="0.00036799828247725255" /> - <width sOffset="642.97990417804147" a="3.7848952705212753" b="-0.0036494357202538552" c="0.0018500110619293498" d="0.00036438218653678001" /> - <width sOffset="643.51263256801008" a="3.7835312350292085" b="-0.0013680944033491415" c="8.2621023617480185e-05" d="-1.1477612812016471e-06" /> - <width sOffset="650.85051281553285" a="3.7774875231975331" b="-0.00034096989940944145" c="5.9053635393138513e-05" d="-1.2585879915694504e-06" /> - <width sOffset="660.86359762807945" a="3.7787306554658864" b="0.00046308307274724181" c="2.153430942539219e-05" d="-1.0535410073823176e-06" /> - <width sOffset="670.87668244062615" a="3.7844689335889843" b="0.00057744283951158509" c="-1.2065230181552245e-05" d="-1.0349607778814237e-06" /> - <width sOffset="673.87642900105925" a="3.7860646101755879" b="0.00047711835423412761" c="-2.0408480993413913e-05" d="2.7073442939178595e-07" /> - <width sOffset="680.88976725317275" a="3.788500366148738" b="0.00023080496622672291" c="-1.5530542156052795e-05" d="2.9215282997733914e-07" /> - <width sOffset="690.90285206571946" a="3.7895476158521806" b="7.6630595943951308e-06" c="-5.2147684034715088e-06" d="-3.6834709080924053e-07" /> - <width sOffset="693.05011926205907" a="3.7895363796318673" b="-1.9827018797653658e-05" c="-0.00017529500105053001" d="7.5300516076345332e-06" /> - <width sOffset="693.3239853917371" a="3.7895179567645676" b="-0.00011414742414576346" c="-0.00013548546773361128" d="5.9301737960145815e-06" /> - <width sOffset="700.91593687826605" a="3.7834372228379429" b="-0.0011459403988704213" c="2.6895782881366023e-06" d="6.009306187886901e-06" /> - <width sOffset="710.92902169081276" a="3.778265412836654" b="0.00071543433381564096" c="0.0001838953051482164" d="6.2240834121368803e-06" /> - <width sOffset="712.91545209188735" a="3.780460992915502" b="0.0015197037226934041" c="5.5980464005547787e-05" d="-2.8825812117681961e-06" /> - <width sOffset="720.94210650335935" a="3.7947751101756895" b="0.0018612256546364056" c="-1.3149317273029549e-05" d="-2.9613829059232908e-06" /> - <width sOffset="729.72620677678401" a="3.8081025156901349" b="0.00094471118652545479" c="-0.00029493419752715333" d="5.9362608541358293e-06" /> - <width sOffset="730.01683304568951" a="3.8083523080845394" b="0.00077478413011211025" c="-0.00021795515115176687" d="5.2802759505763613e-06" /> - <width sOffset="730.95519131590606" a="3.8088917829033777" b="0.00037969219910348082" c="-0.00020255857309853817" d="5.6230216084631591e-06" /> - <width sOffset="740.96827612845277" a="3.7980298956441971" b="-0.0019854562030325686" c="-3.4823415764181243e-05" d="5.695402059988759e-06" /> - <width sOffset="747.75898502800351" a="3.7847248891378533" b="-0.0016704989083449321" c="-2.3075656908606828e-05" d="-2.2315009903476826e-06" /> - <width sOffset="749.8013369062586" a="3.7811978790549539" b="-0.0017926802495947562" c="-0.00034061405808030764" d="1.6668129938434853e-05" /> - <width sOffset="750.98136094099937" a="3.778635570883202" b="-0.002526916851048255" c="-0.00028663875767076118" d="1.4484073769722907e-05" /> - <width sOffset="760.99444575354607" a="3.7391354056227684" b="-0.0039105923794052477" c="0.00014686875950979894" d="1.4575241825595971e-05" /> - <width sOffset="766.19285502601178" a="3.7248229632239056" b="-0.0012020041887673646" c="0.00030693389119465405" d="-1.0291021499797345e-05" /> - <width sOffset="771.00753056609267" a="3.7250021929170423" b="0.0010378983953061641" c="0.00015740215668857673" d="-1.0387829532911346e-05" /> - <width sOffset="781.02061537863938" a="3.7407475319958121" b="0.0010655511209280444" c="-0.00015473723139303717" d="-1.0373771745951453e-05" /> - <width sOffset="782.95132706535423" a="3.7421533379576495" b="0.00035203586229527891" c="-0.00015026610315386373" d="4.2670145837572661e-06" /> - <width sOffset="786.45159326597172" a="3.7417275074041711" b="-0.00054307022125994926" c="-0.00010429354473118227" d="6.9164084017689355e-06" /> - <width sOffset="791.03370019118597" a="3.7377147752292137" b="-0.0010631939803682428" c="-8.8844208437756386e-06" d="6.8929755382238436e-06" /> - <width sOffset="801.04678500373268" a="3.7330982240528501" b="0.00083219290031640199" c="0.00019624473972562246" d="8.1053483738364257e-06" /> - <width sOffset="801.26808721476436" a="3.7332920890501962" b="0.00092024256017825615" c="0.00022629310375557604" d="3.5975900632388113e-06" /> - <width sOffset="802.24054666310508" a="3.7344042963539676" b="0.0013705707724847548" c="0.00028077453363056781" d="-1.1178946020514614e-05" /> - <width sOffset="811.05986981627939" a="3.7606621425313138" b="0.0037145427421357543" c="-1.523185945063884e-05" d="-1.1380471003069286e-05" /> - <width sOffset="818.92145351334375" a="3.7833933764511958" b="0.0013649567665105404" c="-0.00018103144820433412" d="-1.2105171323532104e-06" /> - <width sOffset="821.07295462882598" a="3.7854800398687072" b="0.00056916774557044889" c="-0.00018673386343794388" d="-5.8347752639110053e-07" /> - <width sOffset="821.26541380601475" a="3.7855826605430289" b="0.00049722561718545293" c="-0.00020044119129276769" d="6.959994041283857e-06" /> - <width sOffset="831.08603944137269" a="3.7777263777431012" b="-0.0014259268273347186" c="4.0642906621196006e-06" d="7.0486721396057978e-06" /> - <width sOffset="834.99688618925825" a="3.7726335771883877" b="-0.001070714742928591" c="3.3115453255417489e-05" d="1.8538382179128493e-06" /> - <width sOffset="839.99973150212418" a="3.7683379114016793" b="-0.00060017560886401226" c="-9.0650563218447325e-06" d="1.6149974095741734e-06" /> - <width sOffset="841.09912425391929" a="3.7676692720799858" b="-0.00061425175355611346" c="-3.8187353709363887e-06" d="1.0631290531443732e-06" /> - <width sOffset="851.11220906646599" a="3.7622031514051972" b="-0.0003709524831796737" c="3.3059821332943046e-05" d="7.3042063833402653e-07" /> - <width sOffset="857.31697332016267" a="3.7613487333483153" b="0.00012366592247388722" c="6.2172616443772777e-05" d="-2.2676325303540023e-06" /> - <width sOffset="861.12529387901259" a="3.7625961525883342" b="0.00049854792736925909" c="3.8241681578220297e-05" d="-1.5536170918694051e-06" /> - <width sOffset="871.1383786915593" a="3.7698626139663434" b="0.00079707667654265661" c="-1.0202742329830758e-05" d="-1.6882371960786589e-06" /> - <width sOffset="881.19095971519812" a="3.7751292517446653" b="8.0137572723755664e-05" c="-6.9069835576000832e-05" d="-7.546231039719504e-07" /> - <width sOffset="881.92100173291976" a="3.7751506503753909" b="-2.1916746368980155e-05" c="-9.7399365742744993e-06" d="-9.2143898911900184e-07" /> - <width sOffset="891.1645483166526" a="3.7733881005560983" b="-0.0004381718200771002" c="-3.5080196227438544e-05" d="-9.1227605598563697e-07" /> - <width sOffset="899.25930798161312" a="3.7670586898846188" b="-0.0011854343675308341" c="2.2748435129234266e-05" d="5.6707845432229214e-07" /> - <width sOffset="901.17763312919931" a="3.7648723581398222" b="-0.0010918960797448602" c="2.7359004834227823e-05" d="5.5976464409386035e-07" /> - <width sOffset="911.1907179417459" a="3.7572441398486029" b="-0.000375630862490676" c="4.6029789494174438e-05" d="5.4966254793289455e-07" /> - <width sOffset="915.55479831292462" a="3.7565271880835893" b="5.7529834479547661e-05" c="5.0210641846298768e-05" d="-1.8465114228366038e-06" /> - <width sOffset="921.20380275429261" a="3.7581215940731827" b="0.00044803664261209436" c="1.8676265520883877e-05" d="-1.7710140757829123e-06" /> - <width sOffset="931.2168875668392" a="3.7627023650406564" b="0.00028935516827136932" c="-3.4498122266265526e-05" d="-1.9112071323674777e-06" /> - <width sOffset="934.25548392754683" a="3.7632094551000614" b="2.6764515384801283e-05" c="-1.2325478267565086e-05" d="-4.3410612407716933e-08" /> - <width sOffset="941.22997237938591" a="3.76278184200069" b="-0.0001514982272592202" c="-1.3684252644983535e-05" d="8.6293254297105236e-08" /> - <width sOffset="947.94074892571882" a="3.761174986730623" b="-0.00032350362432756582" c="-0.00021652957260762259" d="4.640214658064877e-05" /> - <width sOffset="949.71737516687392" a="3.7601769989679896" b="-0.00065349654781717914" c="-7.9161753806135794e-06" d="4.6915938569076626e-05" /> - <width sOffset="951.24305719193251" a="3.7593281588917242" b="-0.00035003219612419231" c="0.00020604916284479367" d="4.631845682264037e-05" /> - <width sOffset="951.67379824233512" a="3.7592193172891477" b="-0.00014674304941733829" c="0.00013643642061544889" d="-5.1522940914064857e-06" /> - <width sOffset="961.25614200447922" a="3.7658076312134936" b="0.0010487471091340304" c="-1.0868563865213634e-05" d="-5.1017585767008119e-06" /> - <width sOffset="969.15492735620262" a="3.7708991551228404" b="-7.7858347545045788e-05" c="-7.2690780168698413e-05" d="2.221297852296628e-06" /> - <width sOffset="970.19609113244212" a="3.7707418004816358" b="-0.00022200055462305319" c="-0.00034321628429666816" d="1.6772383791807875e-05" /> - <width sOffset="971.26922681702592" a="3.7701290370214586" b="-0.00090068959123499226" c="-0.00028991812671532173" d="1.6831299346877536e-05" /> - <width sOffset="981.28231162957252" a="3.7489400791141385" b="-0.001644026661172497" c="0.00020961736190569052" d="1.8844807770455496e-05" /> - <width sOffset="982.68112679433705" a="3.7471021235741215" b="-0.00094697477798923136" c="0.00029298828582649566" d="1.4545874309110439e-05" /> - <width sOffset="983.37105262536841" a="3.7465930198595263" b="-0.00052192299876006659" c="0.00015509033977456811" d="-2.7327814604761371e-06" /> - <width sOffset="991.29539644211923" a="3.7508361933563377" b="0.0014212384718478414" c="8.6261973224268285e-05" d="-2.7057771291091791e-06" /> - <width sOffset="1001.3084812546658" a="3.7709995488313339" b="0.0023348765761207146" c="3.0127338930080591e-06" d="-2.8822610812424222e-06" /> - <width sOffset="1011.3215660672125" a="3.791787338295296" b="0.0015282674605310814" c="-7.8524167298951706e-05" d="-3.291251966427978e-06" /> - <width sOffset="1018.5526883622668" a="3.7974880145478611" b="-0.00012365835549185168" c="-0.00029254575389211232" d="5.8828307670974022e-06" /> - <width sOffset="1018.6597484458047" a="3.79747142977395" b="-0.00018609601662228793" c="-0.00028820931904514056" d="8.6358821442817496e-06" /> - <width sOffset="1021.3346508797591" a="3.7950767576110662" b="-0.001542587755103681" c="-0.00021262763778135156" d="1.0376856432812422e-05" /> - <width sOffset="1031.3477356923058" a="3.7687298950719619" b="-0.0026794958832404153" c="9.5419433082212415e-05" d="1.075070656035887e-05" /> - <width sOffset="1035.9147994692478" a="3.7595068456892218" b="-0.0011352055906382057" c="0.00015399393709922526" d="-7.9121978270553918e-07" /> - <width sOffset="1036.3798395906504" a="3.7590121530553047" b="-0.00099249220529390577" c="0.00013117458014796755" d="-3.9356051953080917e-06" /> - <width sOffset="1041.3608205048524" a="3.7568366739646928" b="2.1334842907514643e-05" c="6.9208246398164193e-05" d="-4.2310381711063317e-06" /> - <width sOffset="1051.3739053173992" a="3.7597415809687607" b="0.00013467555970216255" c="-5.8185156049811093e-05" d="-4.3482080693332012e-06" /> - <width sOffset="1052.8949381729037" a="3.7597965119572914" b="-7.2506780656544575e-05" c="-6.6946960213916048e-05" d="1.3682462721932959e-06" /> - <width sOffset="1056.3280698824767" a="3.7588138884702742" b="-0.00048380217836552783" c="-2.0381457760591789e-05" d="1.5276449150964916e-06" /> - <width sOffset="1061.3869901299458" a="3.7560425419974037" b="-0.00057272896181982755" c="3.6163102320462754e-06" d="1.5390661276820585e-06" /> - <width sOffset="1071.4000749424924" a="3.7522154518991675" b="-3.7379187363389271e-05" c="5.3009111953303649e-05" d="3.8829460503503029e-07" /> - <width sOffset="1072.2539236634843" a="3.7522224241411228" b="5.3993604964990439e-05" c="-8.1703817875825967e-06" d="-9.8433126703183686e-07" /> - <width sOffset="1073.1148478361604" a="3.7522622246216057" b="3.773671585360688e-05" c="1.3195539016289076e-05" d="4.5313750218633511e-07" /> - <width sOffset="1081.413159755039" a="3.7537429866900958" b="0.00035034995103734893" c="2.9057263937538969e-05" d="4.7275986603170036e-07" /> - <width sOffset="1089.1642607190179" a="3.7584244884744615" b="0.00088601114700953966" c="3.9916121603096931e-05" d="1.0909481567665381e-06" /> - <width sOffset="1089.5741574126796" a="3.7587944431657085" b="0.00091928400748899144" c="0.00012060251893196903" d="-5.1432634725453097e-06" /> - <width sOffset="1091.4262445675859" a="3.7608780557044081" b="0.00131308907875297" c="9.2155764125287175e-05" d="-4.2508561435663958e-06" /> - <width sOffset="1101.4393293801324" a="3.7789982725412972" b="0.0018800197172414298" c="-3.8913512966402081e-05" d="-4.2936025349024144e-06" /> - <width sOffset="1109.4831128363771" a="3.7893683280850157" b="0.000420576134081742" c="-0.00037965442947570348" d="1.6658068400627073e-05" /> - <width sOffset="1111.2175187123999" a="3.7890426265345454" b="-0.00074604302043612116" c="-0.00033982717703994375" d="1.8540730340211135e-05" /> - <width sOffset="1111.452414192679" a="3.7888488744335156" b="-0.00090262175265464579" c="-0.00032674977146632727" d="1.8232781288860801e-05" /> - <width sOffset="1121.4654990052259" a="3.7653547507277514" b="-0.0019620099977889285" c="0.00022425266007688956" d="1.7824351004912877e-05" /> - <width sOffset="1123.8378372071816" a="3.7622002725431987" b="-0.00059705796320289658" c="0.00017245372120317103" d="-3.405700841674119e-07" /> - <width sOffset="1127.6147852470567" a="3.7623869762787083" b="0.00069106448477880339" c="0.00038739742708453212" d="-1.9188877976303442e-05" /> - <width sOffset="1131.4785838177725" a="3.7697336821410206" b="0.0028253069458128739" c="0.00016351718461579071" d="-1.9019227115943702e-05" /> - <width sOffset="1141.4916686303191" a="3.7953242747480243" b="0.000379220136489564" c="-0.00041178897478838088" d="-1.7905997664060559e-05" /> - <width sOffset="1142.5111451347561" a="3.7952639224213982" b="-0.00051622908019826501" c="-0.00036512519034014067" d="-1.8873617495276863e-05" /> - <width sOffset="1143.1461255607167" a="3.7947840764290288" b="-0.0010027533137086473" c="6.9872032073708474e-05" d="-2.4152785637269493e-06" /> - <width sOffset="1151.5047534428656" a="3.7898736630251459" b="-0.00034092702193633988" c="1.4708885534720375e-05" d="-2.7951887036246924e-06" /> - <width sOffset="1161.5178382554125" a="3.7851284967485483" b="-0.00088711690323461424" c="-6.5052694531874165e-05" d="-1.9517877055375448e-06" /> - <width sOffset="1163.0166572452154" a="3.7836461591816057" b="-0.0010952751604862204" c="-7.5917962146660424e-05" d="3.6027001696650483e-06" /> - <width sOffset="1164.3809167107784" a="3.7820197687203567" b="-0.0012823026787119876" c="0.00021339226501115762" d="-8.6227584303747232e-06" /> - <width sOffset="1171.5309230679591" a="3.7806086121555307" b="0.00044675616889727093" c="2.5115400562439113e-05" d="-8.5217732317443652e-06" /> - <width sOffset="1176.8225597659341" a="3.7824132507779611" b="-3.3059077087812909e-06" c="4.9297585945545555e-05" d="3.1065620716672347e-06" /> - <width sOffset="1180.0745708355939" a="3.7830306908378439" b="0.00041588773253283884" c="1.4184176033388109e-06" d="3.2431191716933525e-06" /> - <width sOffset="1181.5440078805057" a="3.7836551644015044" b="0.0004410643520707453" c="8.1652213755259451e-06" d="8.6241868611730317e-07" /> - <width sOffset="1191.5570926930523" a="3.789756048003746" b="0.00086398558437967145" c="3.7939796671192344e-05" d="8.2188626049623282e-08" /> - <width sOffset="1195.4128642475853" a="3.7936561403774212" b="0.0011602256505273869" c="7.0597447977292877e-05" d="-3.505399278847844e-06" /> - <width sOffset="1201.5701775055991" a="3.802658241836403" b="0.0016309114359167438" c="1.3377272682501752e-05" d="-3.1082374976049032e-06" /> - <width sOffset="1211.5832623181457" a="3.8172094720255751" b="0.00096389387969009774" c="-7.8124167704834123e-05" d="-2.9472132284875827e-06" /> - <width sOffset="1213.7251968486914" a="3.8188866829219892" b="0.00058865576161750495" c="-0.00022320271964581129" d="3.5003740186458245e-06" /> - <width sOffset="1216.4368217667102" a="3.8189114987352033" b="-0.00054461454892117318" c="-0.00012808678383229615" d="6.3263526177987288e-06" /> - <width sOffset="1221.5963471306923" a="3.813560711771868" b="-0.0013611127258620105" c="-3.1691590099327982e-05" d="6.3782848982320562e-06" /> - <width sOffset="1230.7527376001626" a="3.8033372248510529" b="-0.00033721748245295775" c="2.7564739801624846e-05" d="-6.7937770099872618e-07" /> - <width sOffset="1231.6094319432391" a="3.8030681358401162" b="-0.00029148420638227" c="2.4447038325118366e-05" d="-6.7478239950057686e-07" /> - <width sOffset="1241.6225167557857" a="3.8019231507892082" b="-4.8685005681174822e-06" c="1.4667541155901471e-06" d="-6.5211562632784305e-07" /> - <width sOffset="1250.6146090434238" a="3.8015238308780486" b="-0.00013667587924739901" c="0.00023402255541725016" d="-1.1131168308775583e-05" /> - <width sOffset="1251.1946279094152" a="3.8015211145623109" b="0.00012356480929837544" c="0.00011172673361628519" d="-6.0632075508679524e-06" /> - <width sOffset="1251.6356015683323" a="3.8015968095949946" b="0.00021856478892439573" c="0.00010293244944873373" d="-6.9279923989496935e-06" /> - <width sOffset="1261.6486863808789" a="3.8071502935240691" b="0.000196067114441472" c="-0.00010313533867086722" d="-7.0042335901297255e-06" /> - <width sOffset="1266.8607310113891" a="3.8043787796940904" b="-0.0014498434772937335" c="2.34653898737432e-05" d="5.678401672532953e-06" /> - <width sOffset="1269.2396468550342" a="3.8011389678723142" b="-0.0012417927780843517" c="7.0140454851040922e-05" d="-4.8298069850802836e-06" /> - <width sOffset="1271.6617711934257" a="3.7984740526052194" b="-0.00098701986005070882" c="3.9157062590084623e-05" d="-4.3140475839700145e-06" /> - <width sOffset="1281.6748560059723" a="3.7881858949511593" b="-0.0015004572838834722" c="-9.0846402404793993e-05" d="-3.3647106509663545e-06" /> - <width sOffset="1282.7366259619557" a="3.7864863107688058" b="-0.0017047529198119952" c="-0.0013139918444496472" d="0.0001875681509234445" /> - <width sOffset="1283.65013322031" a="3.7839754728296962" b="-0.0036358607545659422" c="0.0013546333494673371" d="-9.592811295870056e-05" /> - <width sOffset="1286.3095568616725" a="3.7820825704762457" b="0.0015338626039692205" c="-0.00015935724588884173" d="-0.00027682659573861559" /> - <width sOffset="1288.178102886319" a="3.7825862671300179" b="-0.0019612605769137939" c="-0.00031799257030316517" d="1.4379852693190874e-05" /> - <width sOffset="1291.6879408185189" a="3.7724069716346138" b="-0.0036620307576633922" c="-0.000175308120240263" d="1.3717950689138867e-05" /> - <width sOffset="1301.7010256310657" a="3.7319338977795384" b="-0.0030466188486651937" c="0.00024054122889705473" d="1.2063969544938566e-05" /> - <width sOffset="1305.0762066456707" a="3.7248550706747339" b="-0.0010105857891470108" c="0.00036554637819930609" d="2.648134532560804e-06" /> - <width sOffset="1305.1028132258643" a="3.7248284412667467" b="-0.00099112828719196116" c="0.00063764764317973406" d="-2.3769997231326693e-05" /> - <width sOffset="1311.7141104436123" a="3.7392779670439671" b="0.0043233215725938211" c="0.0001712379494764427" d="-2.3212495357411876e-05" /> - <width sOffset="1320.2508323809955" a="3.774223100682252" b="0.0021720680194412434" c="-0.00040427949625264749" d="-1.4190430545003828e-05" /> - <width sOffset="1321.3622016804568" a="3.7761182487391571" b="0.0012208788000055621" c="-0.0001397371691547678" d="2.5714785223417224e-06" /> - <width sOffset="1321.7271952561589" a="3.7765453708658399" b="0.0011199001814499892" c="-0.0001388016851872466" d="1.9332469760611606e-06" /> - <width sOffset="1331.7402800687055" a="3.7757833559629153" b="-0.0010782730540957637" c="-8.6588150434419145e-05" d="2.2496256096602212e-06" /> - <width sOffset="1340.2592618301055" a="3.7617044289281578" b="-0.0020637722254563231" c="6.4304777170445023e-05" d="9.3983701790920818e-06" /> - <width sOffset="1340.3043713727952" a="3.7616114648214625" b="-0.002057913333895542" c="-0.00010964279432340313" d="1.7030007118489024e-05" /> - <width sOffset="1341.7533648812523" a="3.7584511677681354" b="-0.0022683890295431123" c="-6.0437578979652244e-05" d="6.713923227843477e-06" /> - <width sOffset="1351.7664496937989" a="3.7364183243501534" b="-0.0014592707954344209" c="0.00014101088945687166" d="6.407183326900408e-06" /> - <width sOffset="1356.0062380810357" a="3.7332544238919345" b="8.1964712931851321e-05" c="0.00010818826615321878" d="-5.0374274456401491e-06" /> - <width sOffset="1357.9101337668485" a="3.7337678743330951" b="0.00043914377443959667" c="0.00010256945400166044" d="-5.3948862956617976e-06" /> - <width sOffset="1361.7795345063455" a="3.7366902486987157" b="0.00099058746219005079" c="4.7087791098402815e-05" d="-4.9042051651247048e-06" /> - <width sOffset="1371.7926193188923" a="3.7464067132946113" b="0.00045846124916262522" c="-9.8088646592692664e-05" d="-5.1349901279950429e-06" /> - <width sOffset="1372.6889497535844" a="3.7467351430323248" b="0.00027024509041503268" c="6.0060952622181257e-05" d="-1.1726402224388242e-05" /> - <width sOffset="1373.8093709405371" a="3.747096835147663" b="0.00036067022484484484" c="6.1916324590352123e-05" d="-3.800116094622681e-06" /> - <width sOffset="1381.8057041314389" a="3.7519969021974875" b="0.00062192375056804579" c="-2.7849443074427724e-05" d="-3.8525055423599644e-06" /> - <width sOffset="1390.0545483377493" a="3.753069749674351" b="-0.00062394076587971535" c="-6.9184543910494898e-06" d="1.2630674932782623e-06" /> - <width sOffset="1391.8187889439855" a="3.7519543698941575" b="-0.00063655833930082936" c="9.0863372957092063e-06" d="2.3166984366247529e-06" /> - <width sOffset="1394.5951494816109" a="3.7503066724684229" b="-0.00053253187208462895" c="0.00025616145363024397" d="-1.1164789977786276e-05" /> - <width sOffset="1401.8318737565321" a="3.7556367796710566" b="0.0014209016243325451" c="1.212942516602304e-05" d="-1.0681434867836158e-05" /> - <width sOffset="1409.168525378084" a="3.7624961615353136" b="-0.00012595102639082725" c="-0.00011312344208898323" d="3.7878412297440625e-06" /> - <width sOffset="1411.8449585690789" a="3.761421346276232" b="-0.00065008542839015853" c="-8.8887043546026734e-05" d="2.7449244076052807e-06" /> - <width sOffset="1421.8580433816255" a="3.7487557183262488" b="-0.0016045186984599454" c="-5.015575780434736e-06" d="2.5395401242417736e-06" /> - <width sOffset="1428.395822184395" a="3.7387610040002484" b="-0.0013444608735363531" c="-2.839129924117106e-05" d="6.265136682665298e-06" /> - <width sOffset="1429.0789028652362" a="3.7378313782485337" b="-0.0013744780459651108" c="-5.7799225198253681e-05" d="3.4962792446250701e-06" /> - <width sOffset="1431.8711281941721" a="3.7336190056520628" b="-0.0016154785099854012" c="-2.6973016055889874e-05" d="4.1249080771778046e-06" /> - <width sOffset="1441.8842130067187" a="3.7188798387260116" b="-0.00091493174402491407" c="9.4413073294634988e-05" d="4.4650743288825227e-06" /> - <width sOffset="1444.0206336638214" a="3.7173996286564597" b="-0.00045037993833742717" c="0.00028192110386716376" d="-1.3875500728673743e-05" /> - <width sOffset="1451.8972978192655" a="3.7245623231738705" b="0.0014082310544575849" c="-5.0582043585582264e-05" d="-1.358463047538845e-05" /> - <width sOffset="1460.4075109984606" a="3.7245105597438939" b="-0.0024042456555194019" c="-0.0006841991712580001" d="0.00012505470007211122" /> - <width sOffset="1461.9103826318121" a="3.7197764273208862" b="-0.0036134183871912784" c="-0.00012385624451510027" d="0.00012167263964781754" /> - <width sOffset="1463.6550041594139" a="3.7137414933774942" b="-0.0029345763280251985" c="0.00016206817516077824" d="-1.90955980049109e-06" /> - <width sOffset="1465.1468344281675" a="3.7097179556035096" b="-0.0024637694151095728" c="0.00023754638963109851" d="-6.9127430174174758e-06" /> - <width sOffset="1471.9234674443587" a="3.7017794220133871" b="-0.0001965966140567146" c="0.00010002665456365776" d="-6.7368420805116966e-06" /> - <width sOffset="1479.7007253878137" a="3.7031315262557083" b="0.00013682091534301857" c="0.00012726638383144711" d="-7.7860127195796515e-06" /> - <width sOffset="1481.9365522569055" a="3.7039866067210587" b="0.00058914711045889414" c="7.7875345188566623e-05" d="-7.4576345120148343e-06" /> - <width sOffset="1491.9496370694521" a="3.7102067668843222" b="-9.4457106281372206e-05" c="-0.00014634934352407682" d="-7.1409067346217872e-06" /> - <width sOffset="1495.3466818833067" a="3.7079170981087533" b="-0.0013359840005280953" c="-0.0001968087010075194" d="-4.7111434526751752e-06" /> - <width sOffset="1497.4722369173569" a="3.704142969822716" b="-0.0022364940659595294" c="2.6496863535650984e-05" d="1.3647194352581216e-06" /> - <width sOffset="1501.9627218819987" a="3.69475789452932" b="-0.0019159700595151371" c="4.1543738953507432e-05" d="1.1562907823931849e-06" /> - <width sOffset="1511.9758066945453" a="3.6808992123525419" b="-0.00073621247685151875" c="8.1214059270297165e-05" d="-1.9655056685967032e-07" /> - <width sOffset="1514.4995796852777" a="3.6795553069128832" b="-0.000330036523638336" c="1.1688831533280441e-05" d="-3.5198448022557647e-07" /> - <width sOffset="1521.9888915070921" a="3.677591325092008" b="-0.0002141821236569727" c="3.9287353150029888e-06" d="2.8096844967560157e-07" /> - <width sOffset="1532.0019763196387" a="3.6761226764812625" b="-5.0993339438382022e-05" c="-8.3115160464176787e-06" d="3.2512882623498031e-06" /> - <width sOffset="1535.2830345971179" a="3.6759807291290612" b="-5.3077237649272989e-07" c="0.000259934386836452" d="-5.1653941275666126e-06" /> - <width sOffset="1535.4932789213071" a="3.6759920593287498" b="0.00010808371388606984" c="0.00021703131189902415" d="-6.0958638132144063e-06" /> - <width sOffset="1542.0150611321853" a="3.6842371270527976" b="0.0021611077227860049" c="8.8744031241088034e-05" d="-6.7677953216918871e-06" /> - <width sOffset="1552.0281459447322" a="3.7079797275698598" b="0.0019026553529490166" c="-0.00011535384178423073" d="-6.8068165930961833e-06" /> - <width sOffset="1552.4082987179781" a="3.7086859828335967" b="0.0018120001028361591" c="-8.3752820891715951e-06" d="4.3475177338878105e-07" /> - <width sOffset="1562.0412307572788" a="3.7257522985249913" b="0.0017716693156018782" c="3.2191622385902016e-06" d="4.8633642910299541e-07" /> - <width sOffset="1568.7084587975287" a="3.7378516559256285" b="0.0018794508714187054" c="0.00010313888478095915" d="-5.0782782314010206e-06" /> - <width sOffset="1571.1119618723674" a="3.7428942274003445" b="0.0022872311199619668" c="-0.00012628507742714978" d="9.1892458979515416e-06" /> - <width sOffset="1572.0543155698253" a="3.7449451530215176" b="0.0020737016923091049" c="-9.9063360108090804e-05" d="8.9771570373368702e-06" /> - <width sOffset="1582.0674003823719" a="3.7647894689534636" b="0.0027900416263755678" c="0.00017265738852070177" d="9.3655587742707595e-06" /> - <width sOffset="1584.1028314225391" a="3.7712626997150798" b="0.0036093099967588272" c="-0.0001222089232340972" d="-5.2852770839077144e-06" /> - <width sOffset="1586.5970847038338" a="3.7794229204443353" b="0.0029010261072498172" c="-0.00012357269844327998" d="2.9754910295868563e-06" /> - <width sOffset="1592.0804851949188" a="3.7921054424936624" b="0.001814227261395558" c="-7.5993956210687469e-05" d="2.9005091003298689e-06" /> - <width sOffset="1602.0935700074654" a="3.8055640677559204" b="0.0011647907808179803" c="1.3454259984671912e-05" d="2.4788257775455956e-06" /> - <width sOffset="1605.97912397338" a="3.8104384648198248" b="0.0013816177241154002" c="1.147920444222117e-05" d="-9.7213608243987056e-07" /> - <width sOffset="1612.106654820012" a="3.8191117179740917" b="0.0014127947688815875" c="-8.733782068168202e-06" d="-4.1483433499754193e-07" /> - <width sOffset="1621.0588594411774" a="3.8307617815829964" b="0.0011566846410215718" c="-6.7926496991127614e-05" d="2.6803062197451935e-06" /> - <width sOffset="1622.1197396325588" a="3.8319156366369826" b="0.0010216106775990136" c="-6.4160921104024091e-05" d="-8.5812030893817175e-07" /> - <width sOffset="1632.1328244451054" a="3.8348507240076346" b="-0.00052139704577909584" c="-8.2838667561479167e-05" d="-1.2245429426597997e-06" /> - <width sOffset="1636.6215592561102" a="3.8307304656030809" b="-0.001339097660199141" c="-0.001561466609447581" d="0.00022483690571866236" /> - <width sOffset="1641.1295850133929" a="3.8135592730842305" b="-0.0017097544460295876" c="5.0860643468624674e-05" d="-1.471883717660147e-05" /> - <width sOffset="1642.145909257652" a="3.8118586914192427" b="-0.0016519825577179694" c="3.5551978651482985e-05" d="-3.6110125797101372e-07" /> - <width sOffset="1652.1589940701986" a="3.7985192371353662" b="-0.0010486266621381113" c="3.0257236707627198e-05" d="8.3907272750234795e-08" /> - <width sOffset="1657.1497355888509" a="3.7940498749186453" b="-0.00074034480576920872" c="-1.3117663024164898e-05" d="2.9421809395497841e-06" /> - <width sOffset="1658.1354396465763" a="3.7933101865467695" b="-0.00075762909386944619" c="0.00012068778373296022" d="-1.4208893889235669e-06" /> - <width sOffset="1662.1720788827454" a="3.7921249942660822" b="0.0001472591321537188" c="0.00010004476486418886" d="-1.505126121377008e-06" /> - <width sOffset="1672.1321097205093" a="3.8020292113951122" b="0.0016922214864866125" c="0.00018957508098310852" d="-4.1454444225701274e-05" /> - <width sOffset="1672.185163695292" a="3.8021195178822698" b="0.0017119868611226051" c="0.00017821829400495345" d="-4.0848311443301561e-05" /> - <width sOffset="1675.6916921339894" a="3.8085527846286236" b="0.0014550610354627591" c="-0.00019316798914861239" d="-3.3597189104738159e-05" /> - <width sOffset="1676.9545564536916" a="3.8100145935133867" b="0.00080642607169241314" c="-8.5007393781621929e-05" d="-1.4079680106344037e-05" /> - <roadMark sOffset="0" color="standard" width="0.14480015053551021" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14480000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.8212742921510543" b="0.00085324239961197474" c="0.00016047064979573801" d="6.9910533313926834e-05" /> - <width sOffset="1.3036140141764099" a="3.8228141742275259" b="0.0016280458484507669" c="0.00028879807268374877" d="-2.775743244947266e-05" /> - <width sOffset="9.6578516207850988" a="3.8403869049013846" b="0.0006415740238231468" c="-0.00011410236875136407" d="2.4530858647898589e-06" /> - <width sOffset="10.013084812546658" a="3.8406005246056205" b="0.00056143679582929679" c="-0.00011277971527590398" d="2.4957788460515153e-06" /> - <width sOffset="16.043916579535537" a="3.8404319936660749" b="-0.00052655277668090753" c="-8.1366612886243336e-05" d="2.2642689271054841e-06" /> - <width sOffset="20.026169625093317" a="3.8371877808413712" b="-0.0010668750257611897" c="-4.4283898884817101e-05" d="3.7013482623402912e-06" /> - <width sOffset="30.039254437639975" a="3.8257809810398697" b="-0.00084039962974690212" c="7.6543385500511574e-05" d="1.9706361029588571e-06" /> - <width sOffset="33.233426017371293" a="3.8239417736872641" b="-0.00029109660001900694" c="-0.00015154596054744697" d="2.5229522811587417e-05" /> - <width sOffset="38.601777390847971" a="3.8219149312025165" b="0.00026308319326880667" c="0.0012723158881804339" d="-0.00084689171775700813" /> - <width sOffset="39.874932233243676" a="3.8225644844262807" b="-0.00061544597207720958" c="-0.0019988151866094923" d="0.00031370171021573176" /> - <width sOffset="40.052339250186634" a="3.8223941423600221" b="-0.0012950340146979872" c="-0.0018340842232421064" d="0.00031514405315477442" /> - <width sOffset="43.387776481577745" a="3.8093643080931381" b="-0.0030119130462139083" c="0.0012359743986048589" d="0.00025120238948287278" /> - <width sOffset="43.806026403060564" a="3.8083391678053156" b="-0.0018461898954694241" c="0.00042127447887274177" d="-4.0552333565852132e-05" /> - <width sOffset="47.411795392328656" a="3.8052583430816318" b="-0.00038988500273230524" c="0.00026389887444064006" d="-2.2836994089494894e-05" /> - <width sOffset="50.065424062733292" a="3.8056553055637949" b="0.00052825736079014154" c="9.5564756959662698e-05" d="-2.8755679093183733e-05" /> - <width sOffset="52.958920695157659" a="3.8072873008486896" b="0.00035903448586068788" c="6.3409605109879076e-05" d="-4.6629816679120069e-06" /> - <width sOffset="60.078508875279951" a="3.811374834750386" b="0.00055285589556469152" c="-3.1676439159057196e-05" d="-2.7452897221448172e-06" /> - <width sOffset="60.581625678088926" a="3.8116446180755568" b="0.00051889728109608211" c="-8.7127907681100225e-05" d="6.6379347547245046e-07" /> - <width sOffset="70.091593687826617" a="3.809270424231852" b="-0.00095817051526855736" c="-8.0700152776822019e-05" d="2.7756156781218034e-06" /> - <width sOffset="71.841599823788883" a="3.8073613497215941" b="-0.0012151208924659988" c="-0.0001039993310756762" d="1.9326387483062564e-05" /> - <width sOffset="76.985666164198705" a="3.8009894116012251" b="-0.00075086892659630752" c="-0.00011176305538137347" d="2.4384355410691643e-05" /> - <width sOffset="80.104678500373268" a="3.7983000667214517" b="-0.00073639918821154227" c="0.00011973923020044783" d="2.5883520500035545e-05" /> - <width sOffset="81.475289624124997" a="3.7975823336837164" b="-0.00026229495436642242" c="0.0001193316057120967" d="2.2531285755989738e-05" /> - <width sOffset="87.424714496102979" a="3.8049903737889972" b="0.0035501428320490721" c="0.0014408665513917617" d="-0.00016600891868256404" /> - <width sOffset="90.117763312919919" a="3.8217586022020091" b="0.007698845765306021" c="0.00010721233462746081" d="-0.00016178092524283638" /> - <width sOffset="94.214388293455315" a="3.8439745691988358" b="0.00043207757218660832" c="-9.3512491116491301e-05" d="1.1163686444247122e-05" /> - <width sOffset="99.588419636782078" a="3.8453285464804763" b="0.00039422837875573375" c="-5.1462090732258e-05" d="9.1239902054632933e-06" /> - <width sOffset="100.13084812546658" a="3.8455287017325697" b="0.00034645298893274897" c="-6.2746571589861324e-05" d="9.0998099528957824e-06" /> - <width sOffset="108.22672640182475" a="3.8490495624143737" b="0.0011197689986113173" c="0.00023948502469298098" d="-2.2994584009494566e-05" /> - <width sOffset="110.14393293801325" a="3.8519146176485322" b="0.0017844912480239582" c="9.0326824969770992e-05" d="-3.0069467025077539e-05" /> - <width sOffset="115.89639975219012" a="3.8594449899068888" b="-0.00016137949999371973" c="-3.5497423284960253e-05" d="-4.5702912848516101e-07" /> - <width sOffset="119.78921124112837" a="3.8582518817708968" b="-0.00045852648696034678" c="8.2489655281953159e-05" d="-5.1910515614259188e-06" /> - <width sOffset="120.1570177505599" a="3.8580941337855803" b="-0.00039995278432757752" c="8.694992412133635e-05" d="-5.1913404407332365e-06" /> - <width sOffset="130.17010256310655" a="3.8575953889713182" b="-0.00022015931666160768" c="-8.5374057139039444e-05" d="8.8558616890811953e-08" /> - <width sOffset="133.40373952549149" a="3.8559937620569986" b="-0.00076951871515621231" c="-0.00074742695606735759" d="4.3966739973108876e-05" /> - <width sOffset="138.70295150047656" a="3.8374696560002288" b="-0.0049870909788836057" c="-0.001888303714471773" d="0.00041328801523983987" /> - <width sOffset="139.87781024511833" a="3.8296743242775202" b="-0.0077126954919804194" c="-0.0016117483752643401" d="0.00059913048155706161" /> - <width sOffset="140.18318737565323" a="3.8271858015951272" b="-0.008529461595920669" c="-0.0011284406692457759" d="0.00058078042788591022" /> - <width sOffset="142.54354141861245" a="3.8084037662455215" b="-0.0041494447593592261" c="0.00019189265614781716" d="0.00017781073006461302" /> - <width sOffset="144.78629856636752" a="3.8020686605808836" b="-0.0006055651282914897" c="0.00011062427766564718" d="-2.980722986253269e-06" /> - <width sOffset="150.19627218819988" a="3.8015583380294178" b="0.00032966597681177061" c="6.3787720048751111e-05" d="-3.2801376555336423e-06" /> - <width sOffset="159.73331690626659" a="3.8076588676361114" b="0.00065132170844878256" c="-1.8421821325792451e-05" d="-1.1560228466569776e-05" /> - <width sOffset="160.20935700074654" a="3.807963501150204" b="0.00062592352252845629" c="-3.7379607974483423e-05" d="-1.1575095750833174e-05" /> - <width sOffset="161.87206823804246" a="3.8088476834631892" b="0.00040561870426116995" c="2.3562669456261713e-05" d="-5.3164121821738831e-06" /> - <width sOffset="170.22244181329319" a="3.8107822068270361" b="-0.00031298726090803197" c="-0.00010979862099207041" d="-4.8530214577796305e-06" /> - <width sOffset="177.57725725126363" a="3.8006101157407972" b="-0.0027156324306893244" c="8.1126710120434835e-05" d="-1.9082343649701033e-05" /> - <width sOffset="178.32524331982219" a="3.7986162638571614" b="-0.0026262978824842277" c="-0.0012891302425466903" d="0.00027806625602912118" /> - <width sOffset="180.23552662583984" a="3.7908334116779088" b="-0.0045073624588218295" c="0.00030330074728651733" d="0.00027287874683566308" /> - <width sOffset="181.49454006068373" a="3.7861839271924405" b="-0.002446010583081964" c="-0.00015954328777378584" d="7.2642128175344714e-05" /> - <width sOffset="188.24742533094403" a="3.7847604119746165" b="0.0053369955730912947" c="3.010995853141706e-05" d="-2.3289804690336246e-05" /> - <width sOffset="190.24861143838652" a="3.7953746659773575" b="0.0051776975894006301" c="-0.00010550695105692503" d="-2.1572844846996415e-05" /> - <width sOffset="196.93998298777544" a="3.8188332699755501" b="0.00086798817151795998" c="-0.00012476325223785971" d="-7.8933032040855186e-06" /> - <width sOffset="198.20405528430439" a="3.8197151700602907" b="0.00051473100509386634" c="-0.00034951116812191114" d="2.9279613183352152e-05" /> - <width sOffset="200.26169625093317" a="3.8195495897612082" b="-0.0005517063269941671" c="-0.00016657751067586905" d="2.8533007602075215e-05" /> - <width sOffset="204.88881974255733" a="3.8162570138625389" b="-0.00026055740796888417" c="6.5873414291660302e-06" d="6.2463700567999462e-06" /> - <width sOffset="210.27478106347982" a="3.816020678308615" b="0.00035399588865695338" c="0.00010610123687824828" d="6.2988884674916405e-06" /> - <width sOffset="210.39075993320031" a="3.8160631713563662" b="0.00037886107262746901" c="0.00010224816175937541" d="-1.6324335881073417e-07" /> - <width sOffset="215.42997962940208" a="3.8205479089018199" b="0.0013969268980494639" c="-1.7217700725373757e-05" d="-2.1778908747337867e-07" /> - <width sOffset="215.92745387840785" a="3.8212385562007931" b="0.0013796344768323744" c="0.00071500533365098911" d="-0.00011288647463134784" /> - <width sOffset="220.28039677690472" a="3.8314811453910673" b="0.0011874326034994763" c="-0.00036192997349461455" d="1.1923484149497222e-05" /> - <width sOffset="220.2878658760265" a="3.8314899942567058" b="0.0011820280174591558" c="-0.00036083105381159238" d="1.1788205754981407e-05" /> - <width sOffset="228.14320309023074" a="3.8242236913994656" b="-0.0023046507057940145" c="-0.00022095286856915432" d="3.4615379251900103e-06" /> - <width sOffset="228.38492541530024" a="3.8236537445563696" b="-0.0024108624183543483" c="-0.0033932715789442638" d="0.00056429592928660961" /> - <width sOffset="230.30095068857315" a="3.8105465223890485" b="-0.009199200803588015" c="-0.00015345381142644338" d="0.00056335717285750035" /> - <width sOffset="231.73232708845657" a="3.7987167358437279" b="-0.0061758177090255302" c="0.00054707758626926933" d="-2.1572117852434903e-05" /> - <width sOffset="240.3140355011198" a="3.7723738815689307" b="-0.0015521794669984194" c="-6.648876467226341e-06" d="-2.1502269112024377e-05" /> - <width sOffset="246.44646593699755" a="3.7576463427936933" b="-0.0040596153600707327" c="-0.00077168110478465597" d="0.00023993882461988898" /> - <width sOffset="249.40651982336701" a="3.7450912491789783" b="-0.0023210770204088482" c="0.00028913085509427113" d="-7.7717300005319681e-06" /> - <width sOffset="250.32712031366646" a="3.7431934408465866" b="-0.0018084887527194187" c="0.00026413423824095151" d="-6.1572592535295284e-06" /> - <width sOffset="252.70325948477546" a="3.7403049272807731" b="-0.00065754168023948278" c="9.1207154524185368e-05" d="-3.7405361863604945e-06" /> - <width sOffset="260.34020512621311" a="3.7389367175929689" b="8.106929373611336e-05" c="6.8651143207698606e-09" d="-4.0129066182074208e-06" /> - <width sOffset="266.32987756217847" a="3.7385602227752104" b="-0.00035075169768868531" c="-6.7335389781761627e-05" d="1.4101916587442845e-05" /> - <width sOffset="269.21876686723522" a="3.7373249739162917" b="-0.00038673036285468126" c="0.00098240999653626633" d="-6.2363529837999252e-05" /> - <width sOffset="270.35328993875976" a="3.7380596521296376" b="0.0016015909828935278" c="0.00072435129916834486" d="-8.6210987659728595e-05" /> - <width sOffset="277.42870435711296" a="3.7551172464584024" b="-0.0010957890456636333" c="-0.00089839330084252877" d="0.00017674922097655601" /> - <width sOffset="280.36637475130647" a="3.7486260434958023" b="-0.0017981676491744356" c="0.00052740815524962288" d="0.00023348073136299986" /> - <width sOffset="281.47825216242222" a="3.7475996595734919" b="0.00024059541538609631" c="0.004008479447090714" d="-0.00055550960848317025" /> - <width sOffset="282.65645013391514" a="3.7525389563083404" b="0.0073727673663522651" c="0.0021348907819204368" d="-0.0006072092184700559" /> - <width sOffset="285.62109311720673" a="3.7773385771014496" b="0.0040206630871126147" c="-0.0014372442640603346" d="0.00010015234748218395" /> - <width sOffset="287.21413967785935" a="3.7805011447753039" b="0.00020396810818373379" c="-0.00085341063570780549" d="0.00014782933710178175" /> - <width sOffset="290.37945956385312" a="3.7772845135819519" b="-0.00075524995536873762" c="0.00036025194620168755" d="0.00023926378800567477" /> - <width sOffset="291.66293848005159" a="3.7774144907185425" b="0.0013519323258675557" c="0.001517155906030198" d="-0.00014214551077941867" /> - <width sOffset="297.91153402037116" a="3.8104193357252965" b="0.003661928108482774" c="-0.00030253230039780184" d="2.560181840747028e-05" /> - <width sOffset="300.39254437639977" a="3.8180333880183408" b="0.0026335258182841846" c="-0.00019796699251811424" d="3.7217531136933072e-06" /> - <width sOffset="310.40562918894642" a="3.8282909467977846" b="-0.00021154500180476689" c="-9.2337163540269604e-05" d="2.9944789631065236e-06" /> - <width sOffset="320.41871400149307" a="3.8199210813095732" b="-0.001160008542800866" c="1.9639851262341439e-05" d="2.0662755472414941e-06" /> - <width sOffset="320.97206174401339" a="3.8192855568926953" b="-0.0011363751662647704" c="-0.00011178022446109282" d="-2.5535625658865945e-06" /> - <width sOffset="330.43179881403972" a="3.7963712698794319" b="-0.0039367273228934421" c="-0.00020778203526214812" d="-1.2949857669288268e-06" /> - <width sOffset="330.75671192976841" a="3.795070195875792" b="-0.0040721596690682935" c="-0.012844683751650364" d="0.021405863382494266" /> - <width sOffset="331.15683325553584" a="3.7927556638824154" b="-0.0040699750850091265" c="0.00042655181964338919" d="-1.039863807953032e-05" /> - <width sOffset="336.53218669388735" a="3.7815879856874783" b="-0.00038562949569431043" c="0.00022645527522047445" d="-6.9371782200619846e-06" /> - <width sOffset="340.44488362658637" a="3.7831304441229872" b="0.0010678643358409887" c="0.00015904813531293627" d="-9.7658150043656908e-06" /> - <width sOffset="350.45796843913303" a="3.7999653230043964" b="0.0013155727232585283" c="-0.00010373178002611622" d="-1.6445233079573829e-05" /> - <width sOffset="352.39639572121121" a="3.8020059116889109" b="0.00072804079235008843" c="9.216466962965482e-05" d="-2.54246135123578e-06" /> - <width sOffset="360.47105325167968" a="3.8125552112595362" b="0.0017191309206230215" c="2.3731385560157881e-05" d="-1.8550704675398054e-06" /> - <width sOffset="370.48413806422639" a="3.8302860060305357" b="0.0016364011852347342" c="-3.980185523756771e-05" d="-2.4361780405597266e-06" /> - <width sOffset="380.49722287677304" a="3.8402350679119976" b="0.00010655520139545623" c="-0.00011474951627116317" d="-2.3547105628073457e-06" /> - <width sOffset="381.2869146770721" a="3.8402464947688255" b="-7.908358811330651e-05" c="-0.00022376237528242863" d="1.9594913851785395e-05" /> - <width sOffset="390.46071380379726" a="3.8358178034081796" b="0.00076265523332283858" c="0.00013698177535794139" d="1.7733949671387733e-07" /> - <width sOffset="390.51030768931969" a="3.8358559633801472" b="0.0007762434588055615" c="0.00014540768590963487" d="-6.1111242907267912e-06" /> - <width sOffset="391.57561155530215" a="3.8368405294458712" b="0.0010652441611614196" c="0.00019343129961007068" d="-3.3448323852146663e-06" /> - <width sOffset="400.52339250186634" a="3.859462563942067" b="0.0037234161784089814" c="7.4819240304848452e-05" d="5.322084016851993e-06" /> - <width sOffset="402.3025652663232" a="3.8663539749957176" b="0.0040401893515950721" c="0.000888631467062857" d="-0.00018402046574606722" /> - <width sOffset="406.74050043828976" a="3.8857013561700509" b="0.0010545695396870507" c="-0.00026122318958241318" d="4.4564034732590833e-06" /> - <width sOffset="410.53647731441299" a="3.8861841536877484" b="-0.00073598199330895107" c="-0.00020339511205197955" d="3.1535434171309083e-06" /> - <width sOffset="411.14346544400166" a="3.885663188803627" b="-0.00097941320715121149" c="-0.00022468183734331254" d="1.2814188872009798e-05" /> - <width sOffset="417.54054304680221" a="3.8735578043382768" b="-0.0022808576580395012" c="-7.6896605111832729e-05" d="1.1772155926895778e-05" /> - <width sOffset="420.54956212695964" a="3.866319146740647" b="-0.0024238621468758697" c="3.96427706221496e-05" d="1.5324699381037924e-05" /> - <width sOffset="423.03203028867154" a="3.8607807366876572" b="-0.0019437161230825696" c="0.00011534218234566811" d="6.0001410887098741e-06" /> - <width sOffset="424.01405581049687" a="3.8589888732374824" b="-0.0016998190470223318" c="0.00014209984477466442" d="-5.3885824798543166e-06" /> - <width sOffset="430.56264693950629" a="3.8524379934948945" b="-0.00053196413435567373" c="3.6368302850515046e-05" d="-5.5232283079047449e-06" /> - <width sOffset="440.575731752053" a="3.8452128076488834" b="-0.0014649538862233648" c="-0.00013281943452931756" d="-2.2579753950728652e-06" /> - <width sOffset="442.04500155564631" a="3.8427665088594409" b="-0.0018698722937848114" c="-0.00073553564800500431" d="0.00017541397476296354" /> - <width sOffset="445.87648453171175" a="3.8346708093377888" b="0.00021911229550266554" c="0.00027551400587921896" d="-1.16880349692593e-05" /> - <width sOffset="450.05889048612789" a="3.8395515538470288" b="0.0019103755917137344" c="-4.558861910617862e-05" d="-2.13836878492496e-06" /> - <width sOffset="450.58881656459965" a="3.8405507912008363" b="0.0018602568946767988" c="-4.8687495917520919e-05" d="-2.5601866870029631e-06" /> - <width sOffset="460.60190137714631" a="3.8517259522858938" b="0.00011516554793163645" c="-0.00012895854010200504" d="-2.4601238326319387e-06" /> - <width sOffset="461.79965653186139" a="3.8516746589667292" b="-0.00020434397381836509" c="-0.00022527443663928942" d="-1.2221656565480097e-05" /> - <width sOffset="462.23306423880638" a="3.8515427836658556" b="-0.00040650255790650527" c="-5.6753803776209379e-05" d="2.2394849254758984e-06" /> - <width sOffset="470.61498618969296" a="3.8454669809067785" b="-0.00088589857065101774" c="5.4937846156522023e-06" d="1.7263335715684815e-06" /> - <width sOffset="477.55904483515269" a="3.8401582085691288" b="-0.00055986908758274884" c="4.6449864070410053e-05" d="-9.6245531144974236e-06" /> - <width sOffset="478.02146914478197" a="3.839908292451784" b="-0.00052308422974605426" c="5.2083598656302078e-05" d="-1.0180424312634117e-05" /> - <width sOffset="480.62807100223961" a="3.8387183979215478" b="-0.00045907062740937078" c="-1.7952567843878994e-05" d="-7.5565562540652094e-06" /> - <width sOffset="482.55093794485219" a="3.8377155636476004" b="-0.00061193065088345489" c="-6.4365732175976299e-05" d="5.144327745210642e-06" /> - <width sOffset="488.81573806662306" a="3.8326206149635169" b="-0.00081269813090427672" c="3.748467818836449e-06" d="7.719496147494569e-06" /> - <width sOffset="490.64115581478626" a="3.8311965461705788" b="-0.00072184553530851392" c="3.2032813980812773e-05" d="2.7559803569286758e-06" /> - <width sOffset="499.85808436021949" a="3.8294225089697695" b="0.0005710190230294955" c="0.00033083617364966636" d="-1.9301242486205534e-05" /> - <width sOffset="500.65424062733291" a="3.8300770942722799" b="0.0010611104743850463" c="0.00028274927761404086" d="-1.9455631661164149e-05" /> - <width sOffset="510.66732543987956" a="3.8495189504212033" b="0.00087152158017972652" c="-0.00030128404420838947" d="-1.9325112893171755e-05" /> - <width sOffset="513.09154536401854" a="3.8495857913950808" b="-0.00092994790467501131" c="-0.00016452142122680497" d="5.5800281379623462e-06" /> - <width sOffset="520.68041025242621" a="3.8354923581411482" b="-0.0024629335483537513" c="-3.9139683607324074e-05" d="5.5997107158456675e-06" /> - <width sOffset="521.20447816224691" a="3.83419167008842" b="-0.0024993434185279651" c="6.4804342289550461e-05" d="-2.1266938182205947e-05" /> - <width sOffset="524.17854857754469" a="3.8267722006322864" b="-0.0026782023193813883" c="-0.00018182531764777821" d="2.1915882469011496e-05" /> - <width sOffset="530.69349506497292" a="3.8076666297909529" b="-0.0022567389046347299" c="0.00026252123668127027" d="1.9319294148954498e-05" /> - <width sOffset="531.33243248144151" a="3.8063369260572339" b="-0.0018976088379950037" c="0.00063369904851014527" d="-5.3337723391355187e-07" /> - <width sOffset="533.04760293144534" a="3.8049437341788575" b="0.00027148764348991971" c="0.00063861286205870349" d="-2.9133592073443333e-05" /> - <width sOffset="540.70657987751952" a="3.8313950405980322" b="0.0049268067914020348" c="-1.2183819415546567e-05" d="-3.5768292849445181e-05" /> - <width sOffset="542.39840610185774" a="3.839522261064233" b="0.0045784448053024169" c="-0.001057980628360707" d="0.0001251333983803305" /> - <width sOffset="547.75112438841541" a="3.8529075026308428" b="0.0040081139168420101" c="-8.2511388485322846e-05" d="-1.9318079247129313e-05" /> - <width sOffset="550.71966469006622" a="3.8635732902612485" b="0.0030075309920247644" c="-0.00025104906614227237" d="-1.8673372099796853e-05" /> - <width sOffset="552.82333065425019" a="3.8686152943221752" b="0.0017033722301983019" c="-6.2903903875847274e-05" d="-2.2886496337806873e-06" /> - <width sOffset="560.73274950261293" a="3.8770203449495888" b="0.00027877932881442723" c="-0.0001188520901523337" d="-2.0591602465937185e-06" /> - <width sOffset="563.22869423787449" a="3.8769437270511551" b="-0.00035300126818113141" c="-0.00033332784327771417" d="2.3604078876534417e-05" /> - <width sOffset="570.74583431515953" a="3.8654810780613906" b="-0.001362930425415155" c="0.00019722994458908872" d="2.3984294493903201e-05" /> - <width sOffset="574.01720570136104" a="3.8639728410438328" b="0.00069752482790381217" c="0.00028815288501822349" d="-2.0660791895830376e-05" /> - <width sOffset="580.75891912770624" a="3.8754413150308613" b="0.0017656708175541353" c="-0.00012572036621409026" d="-2.1260678885841552e-05" /> - <width sOffset="581.49922790953906" a="3.87667092857787" b="0.0015445708376571712" c="-0.0012538191709991122" d="0.00013610387003829742" /> - <width sOffset="584.45157057239294" a="3.8738047732761891" b="-0.0022998592295580956" c="0.002079461132093975" d="-0.00030560283002941703" /> - <width sOffset="586.64809683207875" a="3.8755472365741164" b="0.0024119715009794517" c="-0.00069875078715842063" d="-0.00042541818265193069" /> - <width sOffset="588.11809724321938" a="3.876231552475947" b="-0.0024002163831912402" c="3.9283821779572122e-05" d="1.4306610640093169e-05" /> - <width sOffset="590.77200394025283" a="3.8704057066631448" b="-0.0018894113367302757" c="0.00015476638206623409" d="1.4898186851181131e-05" /> - <width sOffset="591.15901999468019" a="3.8696985188872404" b="-0.0017629227726063479" c="3.9840683573564884e-05" d="-8.3065997209830879e-08" /> - <width sOffset="600.78508875279954" a="3.8563460967984029" b="-0.0010189954385836501" c="3.8692791732088027e-05" d="-4.9572146560624943e-09" /> - <width sOffset="610.79817356534613" a="3.8500172439052989" b="-0.00024561808688435384" c="3.8723402771815874e-05" d="-1.5558678747530558e-08" /> - <width sOffset="615.6086591872604" a="3.8497300590948593" b="0.00012585853813681483" c="0.00037968089103766474" d="-3.3163696235291541e-05" /> - <width sOffset="620.81125837789284" a="3.8559916109174912" b="0.0013835844186314012" c="-0.00013841387402991901" d="-3.3051953021331372e-05" /> - <width sOffset="622.85265431264384" a="3.8579580663546342" b="0.00040525742916992053" c="-0.00044530119700701953" d="-2.8241484617539514e-05" /> - <width sOffset="623.41601792323422" a="3.8580399950273048" b="-0.00012336527609090926" c="-0.00030539973028888479" d="1.2876317355456144e-05" /> - <width sOffset="630.82434319043944" a="3.8456001482889959" b="-0.0025282826346069882" c="-2.0605794825460853e-05" d="1.2866550673813186e-05" /> - <width sOffset="638.86784264127391" a="3.830626476380071" b="-0.00036245224696754221" c="0.0028722860136700641" d="-0.00035704854850663584" /> - <width sOffset="639.82944286001111" a="3.8326163972105958" b="0.0041710678920101954" c="0.0017653983558670366" d="-0.00037938127416790109" /> - <width sOffset="640.83742800298614" a="3.8382259342353504" b="0.0065736656445956904" c="0.00061667969911129725" d="-0.00038063308335684509" /> - <width sOffset="643.51263256801008" a="3.8529377557046471" b="0.0017009017473003825" c="-8.8394142460850972e-05" d="-1.5103135536951306e-05" /> - <width sOffset="645.17357337891588" a="3.8554497940128281" b="0.001282270705443344" c="-0.00028358488338683561" d="8.5269523388509957e-06" /> - <width sOffset="650.85051281553285" a="3.8551499384081267" b="-0.001113107025019525" c="-0.00013662308926507512" d="8.4161994525491036e-06" /> - <width sOffset="660.86359762807945" a="3.838755497310621" b="-0.001317672563179037" c="0.0001145003688946828" d="9.051072958837038e-06" /> - <width sOffset="665.76920743149185" a="3.8361154732839191" b="0.00045915811819919981" c="0.0028378202235232269" d="-0.00035626571488749472" /> - <width sOffset="670.87668244062615" a="3.8650217354072303" b="0.0015663858719208619" c="-0.0026197316026091767" d="-0.00035631713828653086" /> - <width sOffset="671.07586059170762" a="3.8652269798842984" b="0.00048039190603974983" c="-1.5257851665417107e-05" d="4.9244914467654884e-07" /> - <width sOffset="673.87642900105925" a="3.8664634969798297" b="0.00040651769819541447" c="-1.2091048400948068e-05" d="-8.1324606257480356e-07" /> - <width sOffset="680.88976725317275" a="3.8684392807616081" b="0.0001169172826268712" c="-3.5478467122105124e-05" d="2.6422452383597326e-06" /> - <width sOffset="682.12564001050316" a="3.8685345741247037" b="4.1330689920777964e-05" c="-0.00054499802945631856" d="3.5292670448567303e-05" /> - <width sOffset="690.90285206571946" a="3.8507756004902745" b="-0.0013690119425200631" c="0.00038586875273767892" d="3.4027567855641149e-05" /> - <width sOffset="692.44411570959949" a="3.8497068047550274" b="6.2935828315205007e-05" c="0.00017712444161534219" d="-1.01760730369995e-05" /> - <width sOffset="693.3239853917371" a="3.849892372999264" b="0.00035099462913691285" c="0.00011664073212572877" d="-8.5761952071770123e-06" /> - <width sOffset="700.91593687826605" a="3.8555272181451259" b="0.00063911898467335613" c="-6.7367166663722435e-05" d="-1.1612046094978205e-05" /> - <width sOffset="703.12156529954882" a="3.8564845530825376" b="0.00017247437804698666" c="6.8287123727211316e-05" d="-5.8574491087983936e-06" /> - <width sOffset="710.92902169081276" a="3.8592060313576328" b="0.00016762526066109169" c="-6.7878565972638116e-05" d="-5.6234112183193171e-06" /> - <width sOffset="717.71955421822554" a="3.8554535197192781" b="-0.0015321469047219836" c="-4.4935630971464126e-05" d="3.1141604079960792e-06" /> - <width sOffset="720.94210650335935" a="3.8501536642860552" b="-0.0017247415423689379" c="-1.5400304843852176e-05" d="2.8351347383945973e-06" /> - <width sOffset="730.01683304568951" a="3.8353526049312836" b="-0.0013038229864714844" c="-1.0019433797203332e-05" d="3.4911196656656823e-06" /> - <width sOffset="730.95519131590606" a="3.8341232140764849" b="-0.0013134046608844208" c="3.4217920395209037e-07" d="3.599800385576598e-06" /> - <width sOffset="735.70028970580915" a="3.8282832884830293" b="-0.0010669984421532023" c="0.00019707434215725833" d="-2.7545085042556299e-06" /> - <width sOffset="740.96827612845277" a="3.8277288027549345" b="0.00078004475177270011" c="0.00015192004674659902" d="-2.8276639044652214e-06" /> - <width sOffset="749.8013369062586" a="3.8445234637443857" b="0.0028020146182563478" c="0.00038085513582026902" d="-2.1727294834028377e-05" /> - <width sOffset="750.82234652630427" a="3.8477582484008725" b="0.0035117785839794639" c="0.0011000136229360464" d="-0.00017244365569826144" /> - <width sOffset="750.98136094099937" a="3.8483437929472109" b="0.0038485336131243385" c="0.001021621247431762" d="-0.00017044567991570959" /> - <width sOffset="755.44943719323533" a="3.8707310349798552" b="0.002769714862512665" c="-0.00019499078333109132" d="1.4165937979886642e-05" /> - <width sOffset="760.99444575354607" a="3.8825089164775326" b="0.0019139491191382785" c="3.3523736148802815e-05" d="1.6919095945420383e-05" /> - <width sOffset="762.51770750610353" a="3.8855619479183914" b="0.0021338534425715235" c="-1.318977384847083e-05" d="-2.0804515507270077e-05" /> - <width sOffset="766.19285502601178" a="3.8921933052162152" b="0.0011939030844566427" c="-0.0001753296794776093" d="4.0617478181436746e-06" /> - <width sOffset="771.00753056609267" a="3.894330555816814" b="-0.00021194060018566796" c="-0.00011727563907959585" d="4.0561267765118067e-06" /> - <width sOffset="781.02061537863938" a="3.8845221717467915" b="-0.0013404979054426097" c="4.4689420148352895e-06" d="4.0658497120394387e-06" /> - <width sOffset="782.95132706535423" a="3.8819799773882875" b="-0.0012777732633180478" c="-3.6538522594729381e-05" d="-1.0574936609435423e-05" /> - <width sOffset="783.35886979195107" a="3.8814524456570263" b="-0.0013128244893065937" c="-7.1119549181509643e-05" d="1.8519035249012744e-05" /> - <width sOffset="789.21568484218722" a="3.8750444260870878" b="-0.00024015704329887724" c="0.00064262082939306345" d="-4.3666621489642835e-05" /> - <width sOffset="791.03370019118597" a="3.8764694073383477" b="0.0016634539124991705" c="0.00040519570528685698" d="-4.3751790126448002e-05" /> - <width sOffset="797.75345390454027" a="3.8926684033880798" b="0.0011822365446908607" c="-0.00017166918289530854" d="-2.9417354979202209e-06" /> - <width sOffset="801.04678500373268" a="3.8945948931878518" b="-4.4208824907666922e-05" c="-0.00020021412799675687" d="-3.6564959729967425e-06" /> - <width sOffset="802.24054666310508" a="3.8942505794658597" b="-0.0005378569783788781" c="-0.00025729498062566257" d="1.1120040111489215e-05" /> - <width sOffset="809.35758159339957" a="3.8813987801250698" b="-0.0025104486805792537" c="-4.2016010357444427e-05" d="9.1883322672686857e-06" /> - <width sOffset="811.05986981627939" a="3.8770488443374944" b="-0.0025736179601890674" c="2.019311780884868e-06" d="6.9620614647873635e-06" /> - <width sOffset="818.14297542388272" a="3.8613949992122363" b="-0.0014971440497345387" c="0.00014632537487538797" d="8.5850454590220277e-06" /> - <width sOffset="818.92145351334375" a="3.8603222329164324" b="-0.0012537135159047409" c="6.3769197081438875e-05" d="-1.5849084121856845e-06" /> - <width sOffset="821.07295462882598" a="3.8579042673330948" b="-0.0010013239374986687" c="5.6227649232508488e-05" d="-1.1750951535890027e-06" /> - <width sOffset="831.08603944137269" a="3.852335700975321" b="-0.00022875119998558985" c="2.0674769099425699e-05" d="-1.1455623671256002e-06" /> - <width sOffset="839.99973150212418" a="3.8511280554378637" b="-0.00013323236405967005" c="6.0045105662664313e-05" d="-9.0672155915154637e-07" /> - <width sOffset="841.09912425391929" a="3.8510529502766779" b="-4.4938224360939992e-06" c="5.829429486043958e-05" d="-8.8522640607365892e-07" /> - <width sOffset="843.86635599596627" a="3.851468149369409" b="0.00029779777026960877" c="0.00013131079363275127" d="-7.4607868796185722e-06" /> - <width sOffset="851.11220906646599" a="3.8576818116099383" b="0.0010255878507849522" c="-2.7563266329243856e-05" d="-7.2007824406345374e-06" /> - <width sOffset="857.31697332016267" a="3.8612640741869693" b="-0.00014813020625309816" c="-0.0001771172702986108" d="-4.2027292719161741e-06" /> - <width sOffset="860.99816282087033" a="3.8581089845244638" b="-0.0016229901996214192" c="-0.00018041599218759108" d="2.0024031974083856e-05" /> - <width sOffset="861.12529387901259" a="3.8578997772685688" b="-0.0016678922480049376" c="-0.00017454155171369373" d="1.9408455457617365e-05" /> - <width sOffset="866.66506766911164" a="3.8466031533509351" b="-0.0018148499537809623" c="8.1171198572046585e-07" d="4.7561817235275272e-06" /> - <width sOffset="871.1383786915593" a="3.8389267490646852" b="-0.0015220669861615451" c="5.9325666970373725e-05" d="3.8302990309470553e-06" /> - <width sOffset="881.27239416530426" a="3.8335811098509187" b="0.00086044271581492285" c="0.00076826069776880996" d="-0.00011896451714561157" /> - <width sOffset="881.92100173291976" a="3.8344299393473165" b="0.001706899938493022" c="0.00047579422075449572" d="-0.00011879770125916149" /> - <width sOffset="886.49023220497531" a="3.8408299269150978" b="-0.0013858010161408945" c="6.5127128807544341e-06" d="1.9586382286018351e-06" /> - <width sOffset="891.1645483166526" a="3.8346945888061765" b="-0.0011965318406771364" c="3.4407176463930678e-05" d="2.0212917453665921e-06" /> - <width sOffset="899.25930798161312" a="3.8283355997571404" b="-0.0002421599546184014" c="3.5101915183607956e-06" d="5.419372349900026e-07" /> - <width sOffset="901.17763312919931" a="3.8278878013725133" b="-0.00022270963676414952" c="8.500704402450521e-06" d="2.5642980530781649e-07" /> - <width sOffset="907.95648681401849" a="3.8268485968446893" b="-7.2108527302982563e-05" c="3.9095213226266516e-05" d="-1.9218365391651562e-06" /> - <width sOffset="911.1907179417459" a="3.8269593095430041" b="0.00012046870614879605" c="2.6428088635147489e-05" d="-6.9040712705137806e-07" /> - <width sOffset="921.20380275429261" a="3.8301221816058386" b="0.0004420575684189954" c="5.4401099032387844e-06" d="-6.2034483653616691e-07" /> - <width sOffset="931.2168875668392" a="3.8344711939555358" b="0.00036441133677389819" c="-1.314372978555015e-05" d="-7.221034933142902e-07" /> - <width sOffset="939.74309115220944" a="3.8361751649387261" b="-1.7203321623257416e-05" c="-0.00010149867330795053" d="3.7323285323210509e-06" /> - <width sOffset="941.22997237938591" a="3.8359374597605904" b="-0.00029428179298948264" c="-8.3725928044930104e-05" d="4.7045242994503672e-06" /> - <width sOffset="949.71737516687392" a="3.8302848297536123" b="-0.00069882772006206245" c="7.4766066470160141e-05" d="4.1907323118432429e-06" /> - <width sOffset="950.77559535968192" a="3.8296340075610593" b="-0.00052651107451541198" c="3.3946220712234726e-05" d="-4.9965247437487405e-07" /> - <width sOffset="951.24305719193251" a="3.8293952506372695" b="-0.00049510150247539296" c="3.4016589590652011e-05" d="9.782926718662633e-08" /> - <width sOffset="961.25614200447922" a="3.8279465378924309" b="0.00021554612579574779" c="3.764482808867245e-05" d="1.3474381414824182e-07" /> - <width sOffset="969.26103978909748" a="3.8321532981382651" b="0.00084413462716442593" c="7.6954076118137911e-05" d="-2.3823850138765245e-06" /> - <width sOffset="970.19609113244212" a="3.8330079422380492" b="0.00098179774381699147" c="0.00034773482790089399" d="-1.6933470952699563e-05" /> - <width sOffset="971.26922681702592" a="3.8344410757423599" b="0.0016696282675198143" c="0.0002925011193980363" d="-1.6881318923084285e-05" /> - <width sOffset="981.28231162957252" a="3.8635382413187078" b="0.0024496476187008203" c="-0.0002162284323755242" d="-1.7286360878145425e-05" /> - <width sOffset="983.37105262536841" a="3.8675540230481356" b="0.0013201044108822055" c="-0.00015654395496612276" d="-7.7051104068471337e-09" /> - <width sOffset="985.50664077696649" a="3.8696591915713139" b="0.0006513721570809137" c="-0.00041773834546841252" d="1.6441470263870065e-05" /> - <width sOffset="991.29539644211923" a="3.862620849349756" b="-0.0025321524495347117" c="-0.0001406458408177975" d="1.6672011218878337e-05" /> - <width sOffset="997.95577261457277" a="3.8444425111179941" b="-0.0021869190626793945" c="1.977368748388781e-05" d="2.4840782997377973e-06" /> - <width sOffset="1001.3084812546658" a="3.8374262944542257" b="-0.0019705602337711744" c="3.9609923335919726e-05" d="1.1668741535022858e-06" /> - <width sOffset="1011.3215660672125" a="3.8228377332374621" b="-0.00082634624503469343" c="7.6900719676360144e-05" d="1.1425670400592975e-06" /> - <width sOffset="1018.5526883622668" a="3.8213154091677084" b="0.00046504228034099232" c="0.00024431009583925772" d="-8.0315155630430766e-06" /> - <width sOffset="1021.3346508797591" a="3.8243270098303856" b="0.0016378900414576261" c="0.00017680865393876117" d="-8.653361517391364e-06" /> - <width sOffset="1027.1947956283761" a="3.8382556754964923" b="0.002818635691120756" c="0.00010608954375980221" d="-1.8339036611299443e-05" /> - <width sOffset="1031.3477356923058" a="3.8504774769014589" b="0.0027509275180226138" c="-0.00013361807603159227" d="-1.6221028880311031e-05" /> - <width sOffset="1033.4990768547334" a="3.8556157275897358" b="0.0019507855385287385" c="-0.00024204170777218019" d="-4.4421245512454066e-06" /> - <width sOffset="1035.9147994692478" a="3.8588531750050956" b="0.00070360535566241786" c="-0.00018551154647288199" d="7.0998017965531561e-06" /> - <width sOffset="1041.3608205048524" a="3.8583297014101783" b="-0.00068527205778914219" c="-7.1922673619916364e-05" d="7.1306637705947212e-06" /> - <width sOffset="1049.3399319544751" a="3.8519051707657317" b="-0.00047108289998195121" c="-2.9382231674959962e-06" d="1.2036251453411005e-05" /> - <width sOffset="1051.3739053173992" a="3.8510361259057513" b="-0.00033365179824917674" c="7.0034656110294107e-05" d="1.1683906865251609e-05" /> - <width sOffset="1052.8949381729037" a="3.850731773941674" b="-3.950818143469469e-05" c="0.00011226997693181753" d="5.967452524378374e-06" /> - <width sOffset="1054.1270633990664" a="3.8508646979192647" b="0.00026433131217101866" c="0.00017765628482557236" d="-7.7278092746435235e-06" /> - <width sOffset="1061.3869901299458" a="3.8591903591306282" b="0.0016219563579995496" c="1.0196228544464119e-05" d="-7.7335191777705232e-06" /> - <width sOffset="1069.5890536668653" a="3.8689124528035248" b="0.00022842584598914547" c="-0.00032331184666206756" d="5.6629171098299353e-06" /> - <width sOffset="1071.4000749424924" a="3.8682993758076383" b="-0.00088690374627475388" c="-0.00028231645158667063" d="7.9461533708423796e-06" /> - <width sOffset="1072.2539236634843" a="3.8673412157324472" b="-0.0013516352170457662" c="-0.00019978788461410554" d="9.3187792402404961e-06" /> - <width sOffset="1081.413159755039" a="3.8453611349814771" b="-0.0026661419607286398" c="5.9152412243154813e-05" d="9.4042733351885811e-06" /> - <width sOffset="1089.5741574126796" a="3.8326539968370281" b="0.00017837036535761847" c="0.00021005230102340099" d="1.5638484969763358e-05" /> - <width sOffset="1091.4262445675859" a="3.8338042338692842" b="0.0011173713546671639" c="0.00029684685129225047" d="1.5070853335958842e-05" /> - <width sOffset="1091.8043413420628" a="3.8342699593648324" b="0.0013483084883121686" c="1.0933013876236503e-06" d="-5.4733942938355983e-07" /> - <width sOffset="1101.4393293801324" a="3.8468728250612583" b="0.0012169429051931916" c="-2.236555015899599e-05" d="2.8448299420118676e-07" /> - <width sOffset="1105.2058712429384" a="3.8511543964694628" b="0.0010605690853955827" c="-0.00046253258497700632" d="2.3915629345280429e-05" /> - <width sOffset="1109.4831128363771" a="3.8491001957025297" b="-0.0015835634811315179" c="8.1476678124518917e-05" d="2.9639584099416382e-06" /> - <width sOffset="1111.452414192679" a="3.8463202970609873" b="-0.0012281752090127934" c="9.9776445588142083e-05" d="2.8741293628664373e-06" /> - <width sOffset="1119.9151869771267" a="3.8448143557812298" b="0.0010781182688654224" c="-0.00035295427453644181" d="2.504249873250585e-06" /> - <width sOffset="1121.4654990052259" a="3.8456467925606481" b="1.7964031725666019e-06" c="-0.0003316824915718482" d="7.7484278984184e-06" /> - <width sOffset="1123.8378372071816" a="3.8438878020483904" b="-0.0014411054978300257" c="-9.7881711730412948e-05" d="2.5913348987490027e-05" /> - <width sOffset="1131.0666046854833" a="3.8381440726060285" b="0.0012060785485541112" c="-2.4101626998848659e-05" d="8.1773267716863206e-07" /> - <width sOffset="1131.4785838177725" a="3.8386369182868374" b="0.0011866361872652192" c="-2.2280426033263833e-05" d="7.3035254811408798e-07" /> - <width sOffset="1141.4916686303191" a="3.8490181532085552" b="0.00096012412734521133" c="-1.4841803784116647e-06" d="-1.5419392285260464e-07" /> - <width sOffset="1142.5111451347561" a="3.8499952712610459" b="0.0009566171771022479" c="-0.00010338378778981604" d="8.1342590608921573e-07" /> - <width sOffset="1145.2041153890941" a="3.8518375503860853" b="0.00041749535719121968" c="-3.5728001585353059e-05" d="-2.7260448365839617e-07" /> - <width sOffset="1151.5047534428656" a="3.8529815212429255" b="-6.5188646550823229e-05" c="-2.7550242285835172e-05" d="-2.1438819820083314e-06" /> - <width sOffset="1156.8663448450277" a="3.8515095969058306" b="-0.00054550328533862743" c="-0.0006600154289171426" d="8.5838767168829223e-05" /> - <width sOffset="1161.3033980674234" a="3.8435935337513909" b="-0.0013327133874718765" c="2.7982878033255495e-05" d="1.0845342082942666e-05" /> - <width sOffset="1161.5178382554125" a="3.8433091401686585" b="-0.0013192159242515801" c="3.2637544399207279e-05" d="1.0299080134815026e-05" /> - <width sOffset="1163.0166572452154" a="3.8414398705320218" b="-0.0011519710174639148" c="8.1036053233466017e-05" d="4.7445922595727258e-06" /> - <width sOffset="1171.5309230679591" a="3.8404346753812924" b="0.0012597992095986082" c="0.00018871328572974002" d="1.1367758176937263e-05" /> - <width sOffset="1172.8940439030064" a="3.8425313741900085" b="0.0018376444730709418" c="5.7047720883506539e-05" d="-4.6540579103611478e-06" /> - <width sOffset="1180.0745708355939" a="3.8569449471250024" b="0.0019370206483280397" c="3.4978847448232122e-05" d="-4.7906150100246719e-06" /> - <width sOffset="1181.5440078805057" a="3.8598516049096245" b="0.0020087867389743559" c="1.399972253583437e-05" d="-2.4951291569141759e-06" /> - <width sOffset="1189.0716885984075" a="3.8747020873334908" b="0.0017953908275692649" c="0.0002222662441920284" d="-4.4157659183564115e-05" /> - <width sOffset="1191.5570926930523" a="3.8798594004667231" b="0.0020819171778183429" c="-0.00010260587172955264" d="-4.6589799502020873e-05" /> - <width sOffset="1194.6704596605045" a="3.8839406198530986" b="8.8225404740040016e-05" c="-5.8907396852243684e-05" d="-1.5076440772594664e-06" /> - <width sOffset="1195.4128642475853" a="3.883973034219649" b="-1.7337185340365697e-06" c="-9.3972192093737443e-05" d="2.0799438284273844e-06" /> - <width sOffset="1201.5701775055991" a="3.8808851782028095" b="-0.00092239851495880471" c="-4.7532462099464127e-05" d="2.4780220005151633e-06" /> - <width sOffset="1211.5832623181457" a="3.8693711922964544" b="-0.0011289383235008619" c="2.8808323792632469e-05" d="2.6170720291426822e-06" /> - <width sOffset="1216.4368217667102" a="3.864869686060775" b="-0.00066434109313143219" c="2.7383623668203471e-07" d="-2.0890657004593569e-07" /> - <width sOffset="1221.5963471306923" a="3.8614205976967964" b="-0.00067819908174383565" c="-7.2110474267795168e-06" d="1.6446335765976676e-06" /> - <width sOffset="1223.3317420962039" a="3.8602305330270039" b="-0.0006883681983913684" c="-0.0012369929897588776" d="0.00012778794100784971" /> - <width sOffset="1230.0287923596527" a="3.8385239087299339" b="-6.2724321702894675e-05" c="4.3446967886792066e-05" d="4.5090376365631288e-06" /> - <width sOffset="1231.6094319432391" a="3.8385511196807363" b="0.0001084201023921111" c="5.0764430891220847e-05" d="-1.005490645218532e-06" /> - <width sOffset="1241.6225167557857" a="3.8437170331942117" b="0.00082260009692188723" c="1.035453469735527e-05" d="1.5376215075718663e-06" /> - <width sOffset="1244.0255935368587" a="3.8457749374615116" b="0.00089900384937683796" c="0.00012681077699350842" d="-1.0199398636199535e-05" /> - <width sOffset="1250.6146090434238" a="3.8542863236437257" b="0.0012416956906707293" c="-0.00032494866330611471" d="2.7965404836154861e-07" /> - <width sOffset="1251.6356015683323" a="3.8552156484509168" b="0.00057902993397281673" c="-0.00032319306976620507" d="3.1827502035867568e-07" /> - <width sOffset="1254.3596304253338" a="3.8544011757872996" b="-0.0011746594427623929" c="-0.00018351748621312056" d="1.2676660461925065e-05" /> - <width sOffset="1261.6486863808789" a="3.8409979618062269" b="-0.0018294521778212081" c="9.5944909711614159e-05" d="1.2875249148706955e-05" /> - <width sOffset="1266.8607310113891" a="3.835892130231664" b="0.00021997036135864792" c="6.1144166520350822e-05" d="1.9261388604041495e-07" /> - <width sOffset="1271.6617711934257" a="3.8383789044147227" b="0.00082040080469080704" c="6.2162224897499379e-05" d="1.1017771513989656e-07" /> - <width sOffset="1271.9203670762492" a="3.8385952154921332" b="0.00085257269890790443" c="0.00062982505438825636" d="-7.6116538408320261e-05" /> - <width sOffset="1276.1941078572195" a="3.8478009547681626" b="0.0020652169253618374" c="-8.2375121767606682e-05" d="2.1525168677488326e-07" /> - <width sOffset="1281.6748560059723" a="3.8566808930004473" b="0.001181659911229628" c="-7.7462752831641507e-05" d="3.9931072929609052e-07" /> - <width sOffset="1283.65013322031" a="3.8587158383998341" b="0.00088031308603768606" c="-0.0022296870966802369" d="0.00028389557461137448" /> - <width sOffset="1288.178102886319" a="3.8433430608271415" b="-0.0018498830179392968" c="0.00023357017324601495" d="-7.310873820428603e-06" /> - <width sOffset="1291.6879408185189" a="3.8394115090474226" b="-0.00048048324730877771" c="0.00015433242156661343" d="-6.5451315568010644e-06" /> - <width sOffset="1301.7010256310657" a="3.8435031886019764" b="0.00064152266760350422" c="-3.6251404799340426e-05" d="-1.3415467864311788e-05" /> - <width sOffset="1302.9293251376055" a="3.8442116163667168" b="0.00049174696128623046" c="-0.00016270742447205307" d="-6.3410142547765956e-06" /> - <width sOffset="1305.1028132258643" a="3.8444466770189916" b="-0.00030540415074349842" c="-0.00047594367478806158" d="2.0077079601107733e-05" /> - <width sOffset="1311.7141104436123" a="3.8274261889542101" b="-0.0039659520076496179" c="-7.477193535039316e-05" d="2.0280161664936225e-05" /> - <width sOffset="1318.5553900634077" a="3.8032880120949404" b="-0.0021414997233595804" c="0.00035493154912290693" d="1.3434795954846599e-05" /> - <width sOffset="1321.3622016804568" a="3.8003705227499567" b="0.0001684779513276306" c="0.0001562036195508405" d="-3.3271131199443296e-06" /> - <width sOffset="1321.7271952561589" a="3.8004526638351011" b="0.00028117486947043264" c="0.00014839545116115477" d="-3.6922910824148512e-06" /> - <width sOffset="1329.2987860029723" a="3.8094862468983894" b="0.0018933282030731504" c="0.00035094184872360562" d="-4.1200832510935093e-05" /> - <width sOffset="1331.7402800687055" a="3.8156011076552487" b="0.0028701917891523765" c="2.3586994855280703e-05" d="-4.0384496703791038e-05" /> - <width sOffset="1334.7234229054543" a="3.8233010999660233" b="0.0019327565251486449" c="-0.00020161435402954626" d="1.3192255573455196e-05" /> - <width sOffset="1340.2592618301055" a="3.8300600015158381" b="0.0009133976507219385" c="-7.5923116932938685e-05" d="6.0435104308852059e-06" /> - <width sOffset="1341.7533648812523" a="3.8312753824574917" b="0.00072699731083302052" c="-5.3157347509112557e-05" d="1.264604814241498e-05" /> - <width sOffset="1346.1720092555402" a="3.8345408517962793" b="0.00099795067576690343" c="-0.0001007029373576352" d="8.10745870968244e-06" /> - <width sOffset="1351.7664496937989" a="3.8383916137862211" b="0.00063243348931755171" c="3.4817673547979227e-05" d="7.4307395817823757e-06" /> - <width sOffset="1355.5538187524412" a="3.8416899903948925" b="0.0012159314985168814" c="0.00022568577626529913" d="-1.5699269878794832e-05" /> - <width sOffset="1357.9101337668485" a="3.845602775122634" b="0.0020180076431441985" c="9.1555103281361192e-05" d="-1.5341811028689514e-05" /> - <width sOffset="1361.7795345063455" a="3.8538932347896169" b="0.0020374295651875624" c="-7.5234946044669434e-05" d="-1.6800657290540035e-05" /> - <width sOffset="1366.812339338047" a="3.8600998951746606" b="3.5061459826818898e-06" c="-3.1744943268680578e-05" d="1.2230803171965225e-06" /> - <width sOffset="1371.7926193188923" a="3.8594810641727171" b="-0.00022168238926326017" c="-3.5184673143079279e-06" d="2.3559833431756511e-06" /> - <width sOffset="1372.6889497535844" a="3.8592812333237183" b="-0.00022231135858487262" c="-0.00016914079160697487" d="8.9473954396990751e-06" /> - <width sOffset="1377.9206838145524" a="3.8547698490393363" b="-0.0012574120497704216" c="0.00045508368646818124" d="-5.3023884420995902e-05" /> - <width sOffset="1381.8057041314389" a="3.8536443102058255" b="-0.00012232267943387376" c="-0.00015646090194177385" d="-5.4655535563785273e-05" /> - <width sOffset="1383.7801967341063" a="3.8523720759219935" b="-0.001379428128788739" c="-0.00030879112344587775" d="1.7964870883106077e-05" /> - <width sOffset="1390.0545483377493" a="3.8359981491968345" b="-0.0031326607707323952" c="-8.6904516894118565e-05" d="1.284929784741807e-05" /> - <width sOffset="1391.8187889439855" a="3.830271446715515" b="-0.0033193196757770132" c="-1.9511218073575762e-05" d="1.1081164430480599e-05" /> - <width sOffset="1401.8318737565321" a="3.8062033059815361" b="-0.00037699992010905041" c="0.00030440219167475501" d="1.5151617326740451e-05" /> - <width sOffset="1403.9634428199029" a="3.8069295252968036" b="0.0011272367287101157" c="0.00013017477845727338" d="-7.8824347553782791e-06" /> - <width sOffset="1411.0490912143937" a="3.8186482004452684" b="0.0017847358203170293" c="-9.9470312963852528e-05" d="2.3287403538148088e-06" /> - <width sOffset="1411.8449585690789" a="3.8200067823756489" b="0.0016308305768979177" c="-9.1641031657892412e-05" d="2.4473288565474627e-06" /> - <width sOffset="1421.8580433816255" a="3.8296052745709552" b="0.00053173301666056046" c="-1.8186497369946977e-05" d="2.4392650020860988e-06" /> - <width sOffset="1428.395822184395" a="3.8329859216134743" b="0.00060671565385089126" c="0.00010284020594568719" d="-1.2863315568141693e-06" /> - <width sOffset="1431.8711281941721" a="3.8362825303292611" b="0.0012749100453257997" c="8.8534733718753238e-05" d="-1.624862047789754e-06" /> - <width sOffset="1432.6186303898912" a="3.8372843193513262" b="0.0014045461395491275" c="4.7840652499215835e-05" d="-5.4139230825471278e-06" /> - <width sOffset="1441.8842130067187" a="3.8500988687266475" b="0.00089671669941859908" c="-0.00010343011000829644" d="-5.856250178443501e-06" /> - <width sOffset="1444.0206336638214" a="3.8514854416950981" b="0.00037458732321824515" c="-0.0002998545510489549" d="1.2484324879124075e-05" /> - <width sOffset="1448.7408358835089" a="3.8478856635941483" b="-0.0016216970639776284" c="-0.00069798245002805279" d="0.00015327314678949128" /> - <width sOffset="1451.8972978192655" a="3.8406328933318519" b="-0.0014467101978936636" c="0.00073025590968014867" d="0.00016703871142713874" /> - <width sOffset="1453.0098483952281" a="3.840157268768464" b="0.00079844897614100374" c="0.00045104643316905583" d="-1.4928983587518877e-05" /> - <width sOffset="1460.4075109984606" a="3.8647037750701294" b="0.0050208433057796591" c="0.00040652050618167183" d="-0.00015356831417739567" /> - <width sOffset="1460.7002165660531" a="3.866204381947286" b="0.0052193533270527134" c="-0.00060647574794606802" d="-4.0868724590555812e-05" /> - <width sOffset="1461.9103826318121" a="3.8715600500868681" b="0.003571923612045131" c="-0.00076305012523377813" d="-4.6324671780744801e-05" /> - <width sOffset="1463.6550041594139" a="3.8752232167919356" b="0.00048646045724883447" c="-0.00065461348450415822" d="7.7257527667691167e-05" /> - <width sOffset="1469.5250707976595" a="3.8711491030729439" b="0.00078755694422936052" c="0.00014674292971524598" d="-1.0539103231471345e-05" /> - <width sOffset="1471.9234674443587" a="3.8737366865495306" b="0.001309579990068057" c="8.0805947085218474e-05" d="-7.7831060218202716e-06" /> - <width sOffset="1480.2522822559922" a="3.8857525865716998" b="0.0010358930367057092" c="9.6148341677091434e-05" d="-1.0370831128469491e-05" /> - <width sOffset="1481.9365522569055" a="3.8877205098545118" b="0.0012715137258963141" c="5.1449329689711968e-05" d="-7.9029371651560559e-06" /> - <width sOffset="1491.5717536576337" a="3.8976789969651344" b="6.1905586168628512e-05" c="-0.00056477762612886482" d="8.5305236688804444e-05" /> - <width sOffset="1491.9496370694521" a="3.8976263452320348" b="-0.00032839089917869419" c="-0.0004679277330605312" d="8.5102451480090495e-05" /> - <width sOffset="1495.3466818833067" a="3.8944470936165541" b="-0.00056130907906724002" c="0.00037704820819482672" d="8.2672688198207335e-05" /> - <width sOffset="1497.4583520991282" a="3.8957215761280208" b="0.0021370438889405951" c="-7.3487857962168036e-06" d="-5.4564737509934577e-07" /> - <width sOffset="1501.9627218819987" a="3.905148642872283" b="0.00203762810454686" c="-2.2350977643007681e-05" d="-3.9113983858708324e-07" /> - <width sOffset="1506.4420086598659" a="3.9137921605618953" b="0.0018138517263445756" c="8.2050552195323974e-05" d="-1.939098144970767e-05" /> - <width sOffset="1511.7358591577381" a="3.9228170410639951" b="0.0010522902201048105" c="-0.00071504752401930658" d="7.3503970175773288e-06" /> - <width sOffset="1511.9758066945453" a="3.9230284683227952" b="0.0007104120292931134" c="-0.00071358621719154513" d="8.5584507213844739e-06" /> - <width sOffset="1514.4995796852777" a="3.9204138265359756" b="-0.0027279098525938685" c="-0.00058075037617108191" d="8.7138846347661918e-06" /> - <width sOffset="1518.7017022097875" a="3.8993425950874281" b="-0.0071470733486733024" c="-0.0039879771068969073" d="0.0011164307464238661" /> - <width sOffset="1521.8066438055062" a="3.8721235048547187" b="0.00037745011315111628" c="0.00024143078924326178" d="-1.3754211120377115e-05" /> - <width sOffset="1521.9888915070921" a="3.8722002299495841" b="0.00046408001963658258" c="0.00023339119127360205" d="-1.4144056231660022e-05" /> - <width sOffset="1532.0019763196387" a="3.8860476886227975" b="0.00088368313120968549" c="-0.00023330157405907084" d="1.0392883828396825e-06" /> - <width sOffset="1533.797122722136" a="3.886888215319245" b="5.6109646699408869e-05" c="-0.0003768405164574581" d="1.9337534521843218e-05" /> - <width sOffset="1535.2830345971179" a="3.8862029927791637" b="-0.00093570594440275121" c="-0.00052688180401249491" d="2.7754216919166066e-05" /> - <width sOffset="1542.0150611321853" a="3.8644931356300916" b="-0.0042561920900604008" c="1.4380469863701964e-05" d="3.0641920742715775e-05" /> - <width sOffset="1544.7779700796291" a="3.8534897126644538" b="-0.0034749976803207022" c="3.4673577394542793e-05" d="-4.6831125552382196e-06" /> - <width sOffset="1550.3753965974056" a="3.8343037365475121" b="-0.0035270144553435539" c="-0.0025573082732345603" d="0.00035429896051592463" /> - <width sOffset="1552.0281459447322" a="3.8230884969089587" b="-0.0090768053200763928" c="-0.00080819367279467817" d="0.00035286108012615256" /> - <width sOffset="1552.4082987179781" a="3.819540512727031" b="-0.0095382970978928859" c="-0.0005205117685660169" d="0.00034561951175108104" /> - <width sOffset="1554.2990358611337" a="3.8019814309592199" b="-0.0077999469254757025" c="-9.587738224042263e-06" d="5.7527669760806399e-06" /> - <width sOffset="1562.0412307572788" a="3.7436877581844414" b="-0.0069139173443724371" c="0.00012308707443191085" d="5.780732296248881e-06" /> - <width sOffset="1568.7084587975287" a="3.7047757948751214" b="-0.0045017240386348994" c="0.00014851928090107514" d="1.1345346956127705e-05" /> - <width sOffset="1569.6810689720091" a="3.7005483055450363" b="-0.0041806242188691034" c="-3.5393855759044293e-05" d="-2.5785384087118409e-06" /> - <width sOffset="1572.0543155698253" a="3.6903928376492647" b="-0.0043921902155024083" c="-4.5697063045289969e-05" d="-4.7961644063637039e-06" /> - <width sOffset="1575.6149537980436" a="3.6739579734628487" b="-0.0049000310321903563" c="-0.00054955719350809323" d="5.9977545330668438e-05" /> - <width sOffset="1581.6970790705413" a="3.63732045200226" b="-0.0049288697594412449" c="0.00010476594601386149" d="5.5017927546151545e-06" /> - <width sOffset="1582.0674003823719" a="3.6355098332751763" b="-0.0048490121218282894" c="0.00010960212345763394" d="5.3223232101730607e-06" /> - <width sOffset="1586.5970847038338" a="3.6162888178708146" b="-0.0035284751589880802" c="0.00014374277153637071" d="-2.9384449033015624e-06" /> - <width sOffset="1592.0804851949188" a="3.6007783166164988" b="-0.0022171334624103275" c="9.496657513364138e-05" d="-2.8819198821886408e-06" /> - <width sOffset="1602.0935700074654" a="3.5852062498804576" b="-0.0011821567278728587" c="6.6161673054409693e-06" d="-2.5210173553462332e-06" /> - <width sOffset="1602.2423068342173" a="3.5850305577118489" b="-0.0011803559071609621" c="0.00014959266184560451" d="-1.5022255890584632e-05" /> - <width sOffset="1605.97912397338" a="3.5819248019334275" b="-0.00069165849729563007" c="1.2056281537627143e-05" d="-1.1571294030570057e-05" /> - <width sOffset="1608.6511623865013" a="3.5799419884379127" b="-0.00087507860578644656" c="5.3472486509603199e-05" d="-4.6468899781209328e-06" /> - <width sOffset="1612.106654820012" a="3.5773649143576343" b="-0.00067198862575408699" c="1.6905629190427716e-06" d="-2.9399218347870086e-06" /> - <width sOffset="1619.2899811600437" a="3.5715353199975772" b="-0.0011028023592962275" c="-2.2882708574310028e-05" d="5.7983430964527625e-06" /> - <width sOffset="1622.1197396325588" a="3.5683628085185499" b="-0.0010930161649269189" c="1.7230449524237416e-05" d="2.0080258966732938e-06" /> - <width sOffset="1629.2664512781812" a="3.5621643639579812" b="-0.00053905135255195012" c="0.00028447078685937913" d="-1.3360935266014219e-05" /> - <width sOffset="1632.1328244451054" a="3.5626418253745076" b="0.0007624233623056265" c="0.00018704099693494117" d="-9.339637230616696e-06" /> - <width sOffset="1636.6215592561102" a="3.5689880833625067" b="0.0018770324578947864" c="0.0015234095289406102" d="-0.00023540108589196102" /> - <width sOffset="1640.5252300275747" a="3.5855268746721491" b="0.003009229871078014" c="-0.0011747920120563789" d="-0.00023316781507667759" /> - <width sOffset="1641.1295850133929" a="3.586864961994543" b="0.0013337569514064792" c="-0.00016915597319793342" d="6.3879278207967022e-06" /> - <width sOffset="1642.145909257652" a="3.5880524736799955" b="0.0010097168769810285" c="-0.00013036465369982978" d="6.1787290485758555e-06" /> - <width sOffset="1652.1589940701986" a="3.5912952658267878" b="0.00025748494775060271" c="6.0477674622682381e-05" d="6.6598332742899067e-06" /> - <width sOffset="1655.2336267271157" a="3.5928522272821248" b="0.00081825173839355451" c="5.9892220309754057e-06" d="1.6725397644417183e-06" /> - <width sOffset="1658.1354396465763" a="3.5953179412232483" b="0.00089526189680595074" c="-0.00010455567316272277" d="6.0356100935978091e-06" /> - <width sOffset="1662.1720788827454" a="3.5976251039714922" b="0.00034619578665788086" c="-3.6050629622190209e-05" d="6.8388501934456739e-06" /> - <width sOffset="1666.5388917294647" a="3.5990189026003918" b="0.00042257430142920126" c="0.00012786605250523391" d="-2.1000095476192526e-05" /> - <width sOffset="1670.5061891593527" a="3.6013966111993398" b="0.00044554983562457903" c="1.9466796006506952e-05" d="4.3795543002438542e-07" /> - <width sOffset="1672.185163695292" a="3.6022016268824859" b="0.00051462207580281298" c="-4.0178497367796649e-06" d="-6.8589514013143772e-06" /> - <width sOffset="1675.6916921339894" a="3.6036610351707679" b="0.00023343698296035813" c="-0.00013449218900675366" d="-1.4110065968244885e-05" /> - <width sOffset="1675.7483379501134" a="3.603673824282895" b="0.00021806431639195302" c="-8.4291030507828641e-05" d="-3.3553643455188494e-06" /> - <roadMark sOffset="0" color="standard" width="0.14573232133187675" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.145732" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16415335160999631" weight="standard" type="solid"> - <type name="solid"> - <line length="1680.2879218034107" space="0" width="0.16415299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="2.4931880312437293" b="-0.00025019166650750634" c="0.0001865900212072464" d="-2.6880356882332585e-05" /> - <width sOffset="3.8648479382918879" a="2.4934563953417053" b="-1.2447219899200911e-05" c="-0.0002329854961754575" d="2.9794738619152745e-05" /> - <width sOffset="9.6578516207850988" a="2.4913578528104487" b="0.00028781632203215245" c="-7.9585212382680329e-06" d="-4.1577964780030142e-07" /> - <width sOffset="10.013084812546658" a="2.4914590717922405" b="0.00028200465775034007" c="-2.2162073861336385e-07" d="-4.6039188250515309e-07" /> - <width sOffset="16.043916579535537" a="2.4930507483230144" b="0.00022909689768725117" c="5.1905059453137084e-06" d="-2.2888196358124502e-07" /> - <width sOffset="20.026169625093317" a="2.4940309286106093" b="0.00025954765037799208" c="-8.2765610466017551e-07" d="-1.5380270091311584e-06" /> - <width sOffset="30.039254437639975" a="2.4950027465490896" b="-0.00021964351159787935" c="-4.8314475928461976e-05" d="-2.8395435080661259e-07" /> - <width sOffset="33.233426017371293" a="2.4937989739661939" b="-0.00053698429389391735" c="0.0001959375228695878" d="-2.3542841059411697e-05" /> - <width sOffset="36.491439084113395" a="2.4933151059794652" b="-9.9472673761548044e-06" c="0.00025901169297232749" d="-2.832458685473196e-05" /> - <width sOffset="40.052339250186634" a="2.4952850367905413" b="0.0007572141605905287" c="-3.8608491340507784e-05" d="-2.8368608540144054e-05" /> - <width sOffset="43.387776481577745" a="2.4963284722138601" b="-0.00044715259293048523" c="-0.00023910262814463468" d="3.5573055140920164e-05" /> - <width sOffset="47.411795392328656" a="2.4929753325961697" b="-0.00064338514866987828" c="-9.0954124354215155e-05" d="1.7857715664442051e-05" /> - <width sOffset="50.065424062733292" a="2.4909612439892976" b="-0.00074885364639922132" c="4.5784267215635247e-05" d="2.2982648238847825e-05" /> - <width sOffset="52.958920695157659" a="2.4897345204138901" b="9.3354046545745042e-05" c="2.7826683057765888e-05" d="-1.1100491864260862e-06" /> - <width sOffset="60.078508875279951" a="2.4914090603858385" b="0.00032078279016607009" c="-3.9800228326498935e-06" d="-9.7194644631246123e-07" /> - <width sOffset="69.005395664579339" a="2.4932640660095489" b="1.7363145248518348e-05" c="-0.00017970271925240772" d="4.3080566548151438e-05" /> - <width sOffset="70.091593687826617" a="2.4931261166725696" b="-0.00022053959524257014" c="-7.4332949005917421e-05" d="1.0550390894963786e-05" /> - <width sOffset="71.841599823788883" a="2.4925690688709494" b="-0.00038377343288484213" c="1.892800910517723e-05" d="-6.0003809099739272e-06" /> - <width sOffset="76.985666164198705" a="2.4902790072400789" b="-0.0006653753353458346" c="0.00023234131900560278" d="-1.1058348837635598e-05" /> - <width sOffset="80.104678500373268" a="2.4901284271132891" b="0.00046124079842950211" c="0.00012682730438944928" d="-1.0617451245479231e-05" /> - <width sOffset="87.424714496102979" a="2.496136032751787" b="0.00061125932081205949" c="-0.0010257234415665746" d="0.00017792275319297466" /> - <width sOffset="90.117763312919919" a="2.493818187333515" b="-0.0010422266102476253" c="0.00040345302505790385" d="0.00017339330534681699" /> - <width sOffset="90.936140353742047" a="2.4933304990111234" b="-3.3487417501339503e-05" c="-0.00086547027978285565" d="0.00022250700543811254" /> - <width sOffset="94.214388293455315" a="2.491758740032056" b="0.0014658482472156018" c="-0.00046471339676315451" d="4.9562393750940548e-05" /> - <width sOffset="96.973595686070553" a="2.493306482333324" b="3.3355997865774272e-05" c="9.3552204276344634e-05" d="-2.8902401015723736e-06" /> - <width sOffset="100.13084812546658" a="2.4942533843549253" b="0.00053766000150110124" c="4.3691584907303438e-05" d="-8.9286297309312005e-06" /> - <width sOffset="108.22672640182475" a="2.4967321025484628" b="-0.00051053059194086669" c="-0.00025438244865350605" d="2.3165764231152001e-05" /> - <width sOffset="110.14393293801325" a="2.4949815313066948" b="-0.0012304881069187439" c="-0.00011519447313643804" d="2.9380269186315721e-05" /> - <width sOffset="115.89639975219012" a="2.4896839598355074" b="0.00036086352199084996" c="-1.2639879696609067e-06" d="-2.32168710229933e-07" /> - <width sOffset="120.1570177505599" a="2.4911805599569705" b="0.0003374491999354165" c="-3.0049439056375508e-06" d="-8.3560829564136563e-07" /> - <width sOffset="130.17010256310655" a="2.4934192934053723" b="2.5932739001584531e-05" c="-3.5990452623204134e-05" d="1.6331357778169541e-06" /> - <width sOffset="133.40373952549149" a="2.4931820395701676" b="-0.00015559717473203217" c="-2.6604535326974106e-05" d="-4.6065054884084311e-07" /> - <width sOffset="138.70295150047656" a="2.4915418482881684" b="-0.00047637079819590721" c="0.0018059161932617053" d="-0.00036978192581554496" /> - <width sOffset="140.18318737565323" a="2.4935943176106683" b="0.0024393074881132711" c="0.00019081225163029663" d="-0.00035259474701336026" /> - <width sOffset="142.54354141861245" a="2.4957783319528781" b="-0.0025531264592251459" c="0.00048627590941569844" d="5.037495080818404e-05" /> - <width sOffset="144.54907318916219" a="2.4930201869256425" b="5.2050981684209716e-06" c="2.5224071828348202e-06" d="1.4637522993199609e-07" /> - <width sOffset="150.19627218819988" a="2.4931563841789721" b="4.76982631772767e-05" c="5.6786739866429334e-06" d="-1.0882423151517183e-07" /> - <width sOffset="159.73331690626659" a="2.4940333907719658" b="0.00012631940228243236" c="-9.0738278182258869e-06" d="8.1712665513578667e-06" /> - <width sOffset="160.20935700074654" a="2.4940923491094358" b="0.00012323556498467381" c="1.3216672961103947e-05" d="8.2329674544971106e-06" /> - <width sOffset="161.87206823804246" a="2.494371638055938" b="0.0002354693856274554" c="-6.4396587294092994e-05" d="1.9742838858390617e-06" /> - <width sOffset="170.22244181329319" a="2.4929971511192219" b="-0.00042700875967369503" c="-1.4152343953661691e-05" d="1.9274664203404093e-06" /> - <width sOffset="178.32524331982219" a="2.489633404098532" b="-0.00027671033583848061" c="0.0013601382605374938" d="-0.00029522113325815405" /> - <width sOffset="180.23552662583984" a="2.4920102231745416" b="0.0016878412797168328" c="-0.00032542217800843353" d="-0.00029450356793393582" /> - <width sOffset="181.33141764888344" a="2.4930814807427888" b="-8.6489360694649853e-05" c="-0.00072739028999459731" d="-0.00027630632427450881" /> - <width sOffset="181.49454006068373" a="2.4930468180079988" b="-0.00034585331718178618" c="0.00063091250811661732" d="-7.6069705610174896e-05" /> - <width sOffset="188.24742533094403" a="2.4960568279395012" b="-0.0022315625439986763" c="0.00037182115029465079" d="1.9862227255296166e-05" /> - <width sOffset="190.24861143838652" a="2.4932392858727335" b="-0.00050476638743247567" c="0.00048641956139278277" d="1.8081639632243037e-05" /> - <width sOffset="190.75185793096941" a="2.4931107576511256" b="-1.4506038663695143e-06" c="-0.0001582940369385256" d="1.1726010270093723e-05" /> - <width sOffset="198.20405528430439" a="2.4891619713015993" b="-0.00040710683661644492" c="0.00029867438932158427" d="-2.5446906116399808e-05" /> - <width sOffset="200.26169625093317" a="2.4893671562014275" b="0.00049880455650652342" c="0.00014147166863162018" d="-2.4846993379311991e-05" /> - <width sOffset="204.88881974255733" a="2.4922425921255016" b="0.00021207567365995371" c="1.9473745528470347e-05" d="-2.5603558340404807e-06" /> - <width sOffset="210.27478106347982" a="2.4935497015370967" b="0.0001990284979074292" c="-1.732775580125324e-05" d="-2.4637831599225587e-06" /> - <width sOffset="210.39075993320031" a="2.4935725477163704" b="0.00019490976906438791" c="-1.2140307145980771e-05" d="3.9983486663848253e-06" /> - <width sOffset="215.92745387840785" a="2.4949581712726117" b="0.00042818333224630008" c="-0.00067827547635180196" d="0.00011666703421567519" /> - <width sOffset="219.42984840675351" a="2.4931499633993557" b="-2.9611174745181566e-05" c="0.00017664046528268742" d="0.00011531618878886986" /> - <width sOffset="220.28039677690472" a="2.4933235208284552" b="0.00052114179156029401" c="7.3656625694562609e-05" d="-9.4942799061062049e-06" /> - <width sOffset="228.14320309023074" a="2.4973596395889652" b="-8.1477841821586986e-05" c="-1.2375617431785579e-05" d="-1.1676120800276618e-06" /> - <width sOffset="230.30095068857315" a="2.4971144815800477" b="-0.00015119352602534827" c="-1.5649962779381981e-05" d="6.4789127343664588e-07" /> - <width sOffset="240.3140355011198" a="2.4946819113503125" b="-0.0002697259683080137" c="5.7802223588978187e-06" d="6.1039339205077123e-07" /> - <width sOffset="249.65657716333982" a="2.49316424365347" b="-1.890977462708698e-06" c="-0.00012014226133752572" d="4.5806063676113559e-06" /> - <width sOffset="250.32712031366646" a="2.4931103373629755" b="-0.00015683341003549698" c="-0.00010739513715558555" d="2.966135627217743e-06" /> - <width sOffset="252.70325948477546" a="2.4921711153922788" b="-0.00061696425669691634" c="4.2784285016278295e-05" d="5.4941256004363577e-07" /> - <width sOffset="260.34020512621311" a="2.4901994114956878" b="0.00013264832648833351" c="5.5030503199185892e-05" d="7.7157400197566546e-07" /> - <width sOffset="269.21876686723522" a="2.496255144134107" b="0.0012922986607538842" c="-0.0008519468528437248" d="7.723702042697945e-05" /> - <width sOffset="270.35328993875976" a="2.4967374983713544" b="-0.0003425628819555002" c="-0.00056212690056732777" d="0.0001046736901957781" /> - <width sOffset="274.22140033535186" a="2.4930597959641805" b="7.1698700829245579e-06" c="-0.0010829916280457961" d="0.00020656671411082238" /> - <width sOffset="277.42870435711296" a="2.4887575079328554" b="-0.00056506607926497471" c="0.00069738433542957615" d="-5.6393494525286606e-05" /> - <width sOffset="280.36637475130647" a="2.4916862143304535" b="0.0020722926540374274" c="0.00027492786485307973" d="-0.00010937834699368119" /> - <width sOffset="281.47825216242222" a="2.4941798856409889" b="0.002278000860200156" c="-0.0027921835134508168" d="0.00067961199285273058" /> - <width sOffset="283.72934813789357" a="2.4929112041733257" b="3.871962480876158e-05" c="-0.0018028077503280911" d="0.00067633824783690135" /> - <width sOffset="285.62109311720673" a="2.4911115458792343" b="0.00047904777314599582" c="0.00020723010286025274" d="-3.1023318115248327e-05" /> - <width sOffset="290.37945956385312" a="2.4947407185782193" b="0.000343906634261139" c="-0.00015258429779270276" d="-0.00010404336754943894" /> - <width sOffset="291.66293848005159" a="2.4947107819197152" b="-0.00056194840054398561" c="-0.00078883058153668287" d="0.0002773659312358243" /> - <width sOffset="293.91395362334919" a="2.4926124179623281" b="0.00010300951176127685" c="-0.0008764197032916772" d="0.00015022733500831841" /> - <width sOffset="297.91153402037116" a="2.4886155635334903" b="0.00029808400761134786" c="8.0276637516253359e-05" d="-1.7519994178424236e-05" /> - <width sOffset="300.39254437639977" a="2.4895816897754939" b="0.00037288997811877646" c="-2.1144827397557179e-05" d="5.7830042343399383e-07" /> - <width sOffset="310.40562918894642" a="2.4917760223509626" b="0.00012338451918659718" c="-7.7309022619821233e-06" d="1.0473356211758365e-07" /> - <width sOffset="320.41871400149307" a="2.4923415125341828" b="6.6506705265808458e-08" c="6.2267346743339735e-06" d="-5.4067469389815029e-07" /> - <width sOffset="329.92606315890419" a="2.4924403398169224" b="-2.8148262650558016e-05" c="0.00050646679420448268" d="-4.2677277755172122e-06" /> - <width sOffset="330.75671192976841" a="2.4927639631711713" b="0.00080440987062438136" c="0.013131471288550245" d="-0.021411426095979305" /> - <width sOffset="331.15683325553584" a="2.4938165562911054" b="0.0010290531830415004" c="-0.0001464415636270699" d="4.835924594493183e-06" /> - <width sOffset="340.44488362658637" a="2.4946160858293833" b="-0.0004397051723262586" c="2.8708988825925692e-05" d="3.2134368737024443e-07" /> - <width sOffset="346.16290173200059" a="2.4931005818095144" b="-7.986843620422495e-05" c="3.4504363183037511e-05" d="4.6110785366874611e-06" /> - <width sOffset="350.45796843913303" a="2.4937594168179231" b="0.00047171861674593588" c="9.3817530653170236e-05" d="1.6007674795993149e-05" /> - <width sOffset="352.39639572121121" a="2.4951429226151065" b="0.0010158820685405899" c="-0.00010462344374577124" d="2.1049030676556549e-06" /> - <width sOffset="360.47105325167968" a="2.4976325290358901" b="-0.00026199525217458514" c="-5.81058572097714e-05" d="2.4914317002194652e-06" /> - <width sOffset="370.48413806422639" a="2.491684571078725" b="-0.00067624622010499166" c="1.1559511264663264e-05" d="2.1103372339419144e-06" /> - <width sOffset="380.49722287677304" a="2.4881908705972835" b="0.00019000556942106459" c="8.3993700972522656e-05" d="1.4893753813516146e-06" /> - <width sOffset="381.2869146770721" a="2.4883940294740734" b="0.000325450225456552" c="0.00019095651569185445" d="-2.0460249033238513e-05" /> - <width sOffset="388.28917185021328" a="2.4930111637890127" b="-9.8930892630832209e-06" c="0.00012960379994424515" d="-3.1497649339319747e-05" /> - <width sOffset="390.46071380379726" a="2.4932783000594414" b="0.00010739666675879363" c="0.00010294365701745526" d="-1.2080048282227811e-05" /> - <width sOffset="390.51030768931969" a="2.4932838779993576" b="0.00011751828409143445" c="9.9094088461331722e-05" d="-7.3130939759404998e-06" /> - <width sOffset="400.52339250186634" a="2.4970541182144697" b="-9.7680068424411265e-05" c="-0.00010402904224368755" d="-1.6422529804573002e-05" /> - <width sOffset="402.3025652663232" a="2.4964585392453662" b="-0.00062380571877255001" c="-0.00097709010145816816" d="0.00017292001995834435" /> - <width sOffset="406.74050043828976" a="2.4895603814181149" b="0.00092078793964825781" c="2.4975378829323675e-05" d="-1.5556849260945298e-05" /> - <width sOffset="410.53647731441299" a="2.4925646253510827" b="0.00043790338189685475" c="-0.00014040481192169826" d="-2.6710275065583012e-05" /> - <width sOffset="411.7418425802091" a="2.4928416867478056" b="-1.6997295539138884e-05" c="6.8487551798019559e-05" d="-6.5752895014486152e-06" /> - <width sOffset="417.54054304680221" a="2.4937639577224351" b="0.00011399941112636292" c="5.2237998559909715e-05" d="-5.5332565562643679e-06" /> - <width sOffset="420.54956212695964" a="2.4944292077802723" b="0.00027807211465042417" c="-8.0013134469773445e-07" d="-8.5736980017338715e-06" /> - <width sOffset="423.03203028867154" a="2.4949834166369502" b="0.00011558946047015369" c="-2.6222105118543197e-05" d="7.5086029124369618e-07" /> - <width sOffset="430.56264693950629" a="2.4946874804720602" b="-0.0001516034994792165" c="-8.5070431150680937e-06" d="7.4861908679968138e-07" /> - <width sOffset="440.575731752053" a="2.4930680913403727" b="-9.6793144926670348e-05" c="2.7712903156715002e-05" d="-3.0026434865224239e-06" /> - <width sOffset="443.28639900649569" a="2.4929495396024235" b="-1.2739950149480417e-05" c="-2.7894769168090874e-05" d="6.2214808469234618e-07" /> - <width sOffset="450.05889048612789" a="2.491777077791685" b="-0.00030496659493026233" c="0.00015919601250045706" d="-8.9275181293120102e-06" /> - <width sOffset="450.58881656459965" a="2.4916588451805914" b="-0.00014376347878390072" c="0.00014252727632908192" d="-7.8917820792187415e-06" /> - <width sOffset="460.60190137714631" a="2.4965865787850259" b="0.00033677750655778239" c="-9.6804043649095951e-05" d="-8.4426800666361446e-06" /> - <width sOffset="461.79965653186139" a="2.4968365717836773" b="6.8546374552165383e-05" c="-3.9664815829906471e-05" d="1.318852675133684e-06" /> - <width sOffset="470.61498618969296" a="2.4952619426680842" b="-0.00032330620971146779" c="-5.5857619847022624e-06" d="1.6078983949704564e-06" /> - <width sOffset="478.02146914478197" a="2.4932142411979159" b="-0.00014143933788613827" c="1.1155237609601863e-05" d="2.1637695999045362e-06" /> - <width sOffset="480.62807100223961" a="2.4929596788534401" b="-3.918043692019554e-05" c="1.9949553220722631e-05" d="-1.5712915991596049e-06" /> - <width sOffset="488.81573806662306" a="2.4931138017500052" b="-2.8508066583069576e-05" c="9.9242710554730515e-06" d="-4.1464600013559809e-06" /> - <width sOffset="490.64115581478626" a="2.4930696106634063" b="-3.3726065063481928e-05" c="-7.8497905591747157e-06" d="1.79624461582605e-06" /> - <width sOffset="495.31615141792867" a="2.4929239105614247" b="1.0652386896110953e-05" c="-2.6693332711846423e-06" d="3.5341202130796812e-07" /> - <width sOffset="500.65424062733291" a="2.4929584682445114" b="1.2365743513163005e-05" c="8.4484602856315032e-07" d="-5.2777446528182879e-08" /> - <width sOffset="510.66732543987956" a="2.4931140084309966" b="1.3410077342544419e-05" c="-3.0413459336174056e-07" d="-7.6103511203176606e-08" /> - <width sOffset="520.68041025242621" a="2.4931413889281551" b="-1.5571414074486102e-05" c="1.0455929575693046e-05" d="-2.5759098780771997e-06" /> - <width sOffset="521.20447816224691" a="2.4931357293808167" b="-6.7345788657398407e-06" c="-8.873406534565343e-05" d="2.4290739033708711e-05" /> - <width sOffset="523.70453904113003" a="2.4929438481302144" b="5.0578293925998899e-06" c="8.9462235331915635e-05" d="2.7545033660504791e-05" /> - <width sOffset="524.17854857754469" a="2.4929692800402021" b="0.00010843660580960469" c="0.00018551360614727592" d="-1.5637787016507929e-05" /> - <width sOffset="530.69349506497292" a="2.4972255554158851" b="0.00053444358512419097" c="-0.00012620459679328009" d="-1.2643861171560485e-05" /> - <width sOffset="533.04760293144534" a="2.4976193371605939" b="-0.00026996503714561563" c="-0.00022315794809246218" d="1.5956353667966577e-05" /> - <width sOffset="540.70657987751952" a="2.489630043383162" b="-0.00088029253145372355" c="0.0001300050258381994" d="2.2563567336050762e-05" /> - <width sOffset="542.39840610185774" a="2.4886221151333228" b="-0.00024665123745143229" c="0.0011087815320571387" d="-0.00013833812389372395" /> - <width sOffset="547.75112438841541" a="2.4978541427469656" b="-0.00026748376205996439" c="-7.8731234991833679e-05" d="6.1133537338419351e-06" /> - <width sOffset="550.71966469006622" a="2.496526230607949" b="-0.00057330058476067738" c="-2.6669098336104049e-05" d="5.4691907395332153e-06" /> - <width sOffset="558.5006045804048" a="2.493027220674489" b="5.0421775630064771e-06" c="-0.00015559246113004604" d="1.3826520792541754e-05" /> - <width sOffset="560.73274950261293" a="2.4924170136228021" b="-0.00048289695181232884" c="-6.75653041158185e-05" d="1.1635917779871937e-05" /> - <width sOffset="563.22869423787449" a="2.4909717431309462" b="-0.00060270925047007143" c="0.00021861962164782824" d="-1.4027321343261572e-05" /> - <width sOffset="570.74583431515953" a="2.4928362771308663" b="0.00030613722732316306" c="-0.00010118494775685756" d="-1.1465104791475572e-05" /> - <width sOffset="571.97799938006244" a="2.4930384187322483" b="4.5640880374294302e-06" c="0.00027310728141178198" d="-5.9143048584816264e-05" /> - <width sOffset="574.01720570136104" a="2.4936818861106307" b="0.00038059358526828585" c="5.5754309554259106e-05" d="-1.4497962195202153e-05" /> - <width sOffset="580.75891912770624" a="2.4943394096908902" b="-0.00084447484781948747" c="-0.00025778160094093179" d="-9.8484715755186871e-06" /> - <width sOffset="581.49922790953906" a="2.4935689626753845" b="-0.0012423433878447239" c="0.00080122607199665445" d="-0.00016721302049911354" /> - <width sOffset="583.24916602616327" a="2.4929524577210547" b="2.5687722148483305e-05" c="0.0006581759794278189" d="-0.00013360815029757954" /> - <width sOffset="586.64809683207875" a="2.4953971161508282" b="-0.00013073996190735579" c="6.0219401195261787e-05" d="-1.379279767519706e-05" /> - <width sOffset="590.77200394025283" a="2.4949147449060147" b="-0.00033776771449281874" c="-0.00011378803889408976" d="-1.445363330092185e-05" /> - <width sOffset="591.15901999468019" a="2.4947661421975003" b="-0.00043233796763941139" c="1.6538077034333919e-06" d="5.2761958670976992e-07" /> - <width sOffset="600.78508875279954" a="2.4912282881917589" b="-0.00025382904257969206" c="1.7485804976999913e-05" d="5.5603880534837121e-07" /> - <width sOffset="610.79817356534613" a="2.4909980602832844" b="0.00026359312093887665" c="3.4178930753939453e-05" d="5.7136664192920939e-07" /> - <width sOffset="615.6086591872604" a="2.4931206016347636" b="0.00063209322629665678" c="-0.00029875743886588474" d="3.3719504198519951e-05" /> - <width sOffset="620.10841996904378" a="2.4929878748219734" b="-8.3386918349962879e-06" c="-0.0001632283596056527" d="3.8918811243410246e-05" /> - <width sOffset="620.81125837789284" a="2.492914894424282" b="-0.00018010945625631346" c="-8.0391550203478152e-05" d="3.8705778205516462e-05" /> - <width sOffset="623.41601792323422" a="2.4925843498581086" b="0.00018891890241261186" c="3.4434044563337168e-05" d="-2.4120237778951979e-06" /> - <width sOffset="630.82434319043944" a="2.4948930634575461" b="0.00030197675446380114" c="-1.9145340261381893e-05" d="-2.3655417140171676e-06" /> - <width sOffset="639.82944286001111" a="2.4943324507451736" b="-0.00061831288910376911" c="-6.1773862079293849e-06" d="1.9967183949256052e-05" /> - <width sOffset="640.83742800298614" a="2.4937233734405764" b="-0.00056990429990637587" c="5.4969321313863044e-05" d="2.1385845887327674e-05" /> - <width sOffset="643.07922325354514" a="2.4929629640088082" b="-1.0113039928673177e-06" c="-0.00020068262251845564" d="2.2164259365945177e-05" /> - <width sOffset="645.17357337891588" a="2.4922842022345568" b="-0.00054995321993450013" c="5.8511033994777855e-05" d="-1.4658285097598101e-06" /> - <width sOffset="650.85051281553285" a="2.4907796440026786" b="-2.7346613766064589e-05" c="3.4653553122671168e-05" d="-1.5413178200018031e-06" /> - <width sOffset="660.86359762807945" a="2.4924328738933594" b="0.00020302511021702161" c="-1.232919856469188e-05" d="-1.207080741885851e-06" /> - <width sOffset="665.67199327606158" a="2.4929898444573633" b="7.322389658306498e-07" c="0.0020646652361304826" d="-0.00026937053868412368" /> - <width sOffset="665.76920743149185" a="2.4930091804709953" b="0.00039452448013552725" c="-0.00060401140989226488" d="9.5946249971973424e-05" /> - <width sOffset="671.07586059170762" a="2.4924315316237013" b="0.0020896689876881841" c="-0.001893936515510221" d="-0.00026086333751655026" /> - <width sOffset="671.57581569672311" a="2.4929702740630697" b="2.9015834621608878e-07" c="5.9478962261298301e-05" d="-6.0331605289855644e-06" /> - <width sOffset="680.88976725317275" a="2.4932580705480376" b="-0.00046186597730838293" c="-0.00010545188634163694" d="-9.2305018475340149e-06" /> - <width sOffset="682.12564001050316" a="2.4925087737627427" b="-0.00076481169689491808" c="0.00037964093540772517" d="-4.1880927057731795e-05" /> - <width sOffset="686.87517370338401" a="2.4929531060344994" b="7.1644405694069532e-06" c="0.00026847555589773985" d="-3.9905774981953873e-05" /> - <width sOffset="690.90285206571946" a="2.4947298698029527" b="0.00022775326561135152" c="-0.00021585892586326776" d="-3.8864920941144409e-05" /> - <width sOffset="692.44411570959949" a="2.4944258314734826" b="-0.00071460787887230319" c="-2.9481524069758358e-05" d="5.3387199510025448e-06" /> - <width sOffset="700.91593687826605" a="2.4895020023680665" b="-6.4624394655393757e-05" c="9.8609766007383396e-05" d="8.3209218062567754e-06" /> - <width sOffset="703.12156529954882" a="2.489928464375283" b="0.00049180739004449445" c="-5.8821516191105286e-05" d="2.566324820080049e-06" /> - <width sOffset="710.92902169081276" a="2.491404033240519" b="4.2616121619117649e-05" c="1.6007171965009098e-06" d="2.529619966566594e-06" /> - <width sOffset="717.71955421822554" a="2.4925593064710698" b="0.00041428800438048162" c="-8.4367688188639173e-05" d="-6.2079516595873392e-06" /> - <width sOffset="719.71931211522565" a="2.4930007475445493" b="2.3807175226529342e-06" c="6.9695583148320772e-06" d="9.4063229370559971e-07" /> - <width sOffset="720.94210650335935" a="2.4930157995470967" b="2.3644765026635892e-05" c="9.9645813056606625e-06" d="4.2331271260293477e-08" /> - <width sOffset="730.95519131590606" a="2.4942941217726844" b="0.00023592979742263889" c="1.145463906355667e-05" d="4.9936131290173824e-08" /> - <width sOffset="735.70028970580915" a="2.4956768792532023" b="0.00034800965579160638" c="-0.00013332244728060555" d="6.404245021132754e-06" /> - <width sOffset="740.96827612845277" a="2.4947465390395154" b="-0.00052348633478398751" c="-3.1940925047590986e-05" d="6.5080225403208817e-06" /> - <width sOffset="750.82234652630427" a="2.4927137637843844" b="0.00074285716470579152" c="-0.00062525920645829184" d="0.00015722438326815606" /> - <width sOffset="751.82220354645722" a="2.4929885912683414" b="-3.5944169341355168e-05" c="-0.00075242976839989817" d="0.00016426773360929563" /> - <width sOffset="755.44943719323533" a="2.4907979558118134" b="0.00098930362970968974" c="-3.2998270536046322e-05" d="-2.0343884286381497e-05" /> - <width sOffset="758.94894046492936" a="2.4929840402980465" b="1.0922968769992193e-05" c="0.00018150026961311023" d="-3.1227487248281054e-05" /> - <width sOffset="760.99444575354607" a="2.4934985340810085" b="0.00036146646350449847" c="-9.0190079694486445e-06" d="-3.5852648248833703e-05" /> - <width sOffset="762.51770750610353" a="2.4939014951685339" b="8.4420308575465996e-05" c="-4.8827766163577011e-05" d="1.8709632038326486e-06" /> - <width sOffset="771.00753056609267" a="2.4922437282312062" b="-0.000340097100648025" c="-1.4403732868988617e-06" d="1.8711096369505852e-06" /> - <width sOffset="781.02061537863938" a="2.4905723567898388" b="0.0001938605788729484" c="5.4795545948334344e-05" d="1.8453519471454745e-06" /> - <width sOffset="783.35886979195107" a="2.4913488346009993" b="0.00048038045144044371" c="8.9392064031853293e-05" d="-2.7248619919584511e-05" /> - <width sOffset="787.10827463162138" a="2.4929703974206365" b="1.5282338407617392e-06" c="0.00034374921449215425" d="-4.075178803429044e-05" /> - <width sOffset="789.21568484218722" a="2.494118857805085" b="0.00090741163438238614" c="-0.00030224567360370778" d="2.143386870456884e-05" /> - <width sOffset="791.03370019118597" a="2.4948983630661594" b="2.0965457044793898e-05" c="-0.0001847969580296454" d="2.1353322554596968e-05" /> - <width sOffset="796.7144084473382" a="2.4929684509404844" b="-1.1346007406273263e-05" c="0.00018464145093142261" d="3.9111894539939632e-05" /> - <width sOffset="797.75345390454027" a="2.4931998782204134" b="0.00049903313249300904" c="1.4196856411263748e-06" d="-1.6981600894476991e-06" /> - <width sOffset="801.04678500373268" a="2.4947980999647372" b="0.0004531292377927868" c="-1.5106572402764382e-05" d="-1.7357212939632368e-06" /> - <width sOffset="809.35758159339957" a="2.4965242230233384" b="-0.00015762143537932432" c="-3.6236080802650022e-05" d="1.9598654987243104e-07" /> - <width sOffset="811.05986981627939" a="2.4961518683071038" b="-0.00027928616179742106" c="-3.2858059144676057e-05" d="2.2229911804426026e-06" /> - <width sOffset="818.14297542388272" a="2.4933151203425838" b="-0.00041017539731507497" c="1.8011971452895544e-05" d="6.0000718670482733e-07" /> - <width sOffset="821.07295462882598" a="2.4922830358505088" b="-0.00028917320797946459" c="2.1033347227120849e-05" d="-3.0219710165353834e-07" /> - <width sOffset="831.08603944137269" a="2.4911929777532329" b="4.1147634112891594e-05" c="1.1752491366848535e-05" d="-2.7875106995787212e-07" /> - <width sOffset="841.09912425391929" a="2.4925034725112347" b="0.00019266071125036881" c="3.5581518813887783e-06" d="-3.512135211291478e-08" /> - <width sOffset="843.86635599596627" a="2.4930631119182305" b="0.00021154634011046145" c="-7.7098793481418076e-05" d="6.5404391214327331e-06" /> - <width sOffset="849.86797206335575" a="2.4929695565982826" b="-7.1403865461341746e-06" c="-9.0694663723260308e-05" d="-7.860351788828085e-06" /> - <width sOffset="851.11220906646599" a="2.4928051246364245" b="-0.00026933813803741357" c="-9.0545770083638765e-05" d="8.2377219282963004e-06" /> - <width sOffset="860.99816282087033" a="2.4892523133267854" b="0.00035566840648400841" c="0.00011065303714594843" d="-1.5989038603897513e-05" /> - <width sOffset="861.12529387901259" a="2.4892992853827129" b="0.00038302802266830754" c="0.00010595084324780296" d="-1.5300676939456952e-05" /> - <width sOffset="866.66506766911164" a="2.492071431506635" b="0.00014822370929300395" c="-1.1339291404967693e-06" d="-6.4840320534748562e-07" /> - <width sOffset="871.1383786915593" a="2.4926537510842781" b="9.9154234450755637e-05" c="-7.4186052675925658e-06" d="3.2397206453975912e-08" /> - <width sOffset="878.16789840572289" a="2.4929954270956882" b="-3.4158850382493867e-07" c="0.00013087999203477557" d="-2.1758998173346767e-05" /> - <width sOffset="881.151463504106" a="2.4935815668648091" b="0.00019956270762706797" c="-6.2028657050055839e-05" d="-2.151028408293165e-05" /> - <width sOffset="881.27239416530426" a="2.4936047549526625" b="0.0001836166609245171" c="-0.00066231851745594524" d="0.00010128453234162002" /> - <width sOffset="886.49023220497531" a="2.4909191428502977" b="0.0015445426860382111" c="-0.0002360203823457389" d="-1.9471807146139385e-05" /> - <width sOffset="888.99077957519376" a="2.493001124715744" b="-1.0738825477564143e-06" c="2.409972069345696e-05" d="-9.2793607616887533e-07" /> - <width sOffset="891.1645483166526" a="2.493103136613346" b="9.0546309477340168e-05" c="1.8761069328497233e-05" d="-6.3423220932704858e-07" /> - <width sOffset="901.17763312919931" a="2.4952540792248188" b="0.00027549074906060074" c="-3.5287919701288789e-07" d="-5.3849612807588869e-07" /> - <width sOffset="907.95648681401849" a="2.4969376292087357" b="0.00019647020901259599" c="-3.6683647015887252e-05" d="1.6397702165253238e-06" /> - <width sOffset="911.1907179417459" a="2.4972448139714283" b="1.0640646979440311e-05" c="-2.4171089224574204e-05" d="4.9183387396553111e-07" /> - <width sOffset="921.20380275429261" a="2.4954216881953384" b="-0.00032547713779875452" c="-9.5576235172624932e-06" d="5.3746596318305867e-07" /> - <width sOffset="931.2168875668392" a="2.4917439713450875" b="-0.00035521770406824409" c="6.2363729518215575e-06" d="5.1625635944889466e-07" /> - <width sOffset="939.74309115220944" a="2.4894886603003332" b="-0.00013628298774011541" c="8.9326032764812637e-05" d="-3.938175666751133e-06" /> - <width sOffset="941.22997237938591" a="2.4894705614356836" b="0.00010323167192187357" c="7.0370394869968163e-05" d="-4.7972603205872893e-06" /> - <width sOffset="950.77559535968192" a="2.4926954524138836" b="0.00013532667822015155" c="-1.2884121797094075e-05" d="-1.0687552578658905e-07" /> - <width sOffset="951.24305719193251" a="2.4927558861079309" b="0.00012321094436009913" c="-1.0831976971288417e-05" d="-8.5693246758835982e-07" /> - <width sOffset="955.27622873017401" a="2.4930203994635187" b="-5.9813037439282934e-06" c="3.5147560695577628e-05" d="-1.5366438616563025e-06" /> - <width sOffset="961.25614200447922" a="2.4939128934810579" b="0.00024952920989791016" c="9.6772308027749775e-06" d="-1.2452346694829808e-06" /> - <width sOffset="969.26103978909748" a="2.4958917188010235" b="0.00016508180379462437" c="-5.6300114589906655e-05" d="1.271894157737193e-06" /> - <width sOffset="971.26922681702592" a="2.4960064866053644" b="-4.5652573739887172e-05" c="-4.910187788326519e-05" d="1.2952545690174209e-06" /> - <width sOffset="981.28231162957252" a="2.4919266632138664" b="-0.00063938118335015576" c="-9.5471337637343981e-06" d="8.2656150099834485e-07" /> - <width sOffset="985.50664077696649" a="2.4891176471172791" b="-0.00067579179151500569" c="0.00026207289543315093" d="-1.5622613873348639e-05" /> - <width sOffset="991.29539644211923" a="2.490957170020379" b="0.00078783318026527747" c="-1.6978074466039033e-05" d="-1.3373186117472593e-05" /> - <width sOffset="995.25757172602277" a="2.4929803346086796" b="2.3462720409584553e-05" c="-1.7922865363701496e-05" d="-1.5142442807734512e-05" /> - <width sOffset="997.95577261457277" a="2.4926157048239217" b="-0.00040398029766991472" c="3.2211147226108956e-05" d="-9.545098885193932e-07" /> - <width sOffset="1001.3084812546658" a="2.4915873787175205" b="-0.00022017906414601579" c="2.1814883364399741e-05" d="-4.5893739486980583e-07" /> - <width sOffset="1011.3215660672125" a="2.4911091667327847" b="7.8647729686476871e-05" c="1.0222779816208936e-05" d="-5.752361909100306e-07" /> - <width sOffset="1021.3346508797591" a="2.4923441309113414" b="0.00011034808812577135" c="-5.3110489190905213e-06" d="-4.9437059121082981e-07" /> - <width sOffset="1027.1947956283761" a="2.4927089087810632" b="-2.8309238636404273e-06" c="-9.5413041574323604e-05" d="9.1913045027359437e-06" /> - <width sOffset="1031.3477356923058" a="2.4917099026258764" b="-0.00031975537280343538" c="2.7889970648827187e-05" d="6.925762911177453e-06" /> - <width sOffset="1033.4990768547334" a="2.4912200417299859" b="-0.00010359081191900358" c="7.6321737504074429e-05" d="-4.8531414178821644e-06" /> - <width sOffset="1041.3608205048524" a="2.4927646616773762" b="0.00019657853113507363" c="-4.8077567191413635e-05" d="-1.016241073794535e-06" /> - <width sOffset="1043.2493917397071" a="2.4929575905459487" b="4.1088251491686739e-06" c="4.9426833931809876e-05" d="-4.1557361070023587e-06" /> - <width sOffset="1049.3399319544751" a="2.4938771966048678" b="0.00014371396014718589" c="7.5199432639293039e-05" d="-9.0613237893604106e-06" /> - <width sOffset="1051.3739053173992" a="2.4944043627868728" b="0.00033715986131513517" c="1.9699176408608223e-05" d="-8.7539330429836606e-06" /> - <width sOffset="1054.1270633990664" a="2.4952992521835977" b="0.00024656848395768292" c="-9.5932069622175635e-05" d="4.9413287553736328e-06" /> - <width sOffset="1061.3869901299458" a="2.4939238518769047" b="-0.00036503014139911607" c="1.2429749649827356e-05" d="4.7323275083013555e-06" /> - <width sOffset="1065.6271662846063" a="2.492960302150065" b="-4.3726044386465865e-06" c="-0.00014511524851685984" d="1.0411421250451977e-05" /> - <width sOffset="1069.5890536668653" a="2.491312634543899" b="-0.00066396291499287718" c="0.00012184701516005338" d="-2.9850150367209438e-06" /> - <width sOffset="1071.4000749424924" a="2.4904920868378877" b="-0.00025199858093478533" c="0.00010238723280914122" d="-5.3351428489369899e-06" /> - <width sOffset="1081.413159755039" a="2.4928782257728059" b="0.00019369135509236454" c="-2.9148898889455423e-05" d="-1.8874583887408484e-05" /> - <width sOffset="1082.8387932880275" a="2.4930404263990722" b="-4.5038068596800832e-06" c="0.00021958830999693128" d="-1.8548483216555256e-05" /> - <width sOffset="1091.4262445675859" a="2.4974488360305935" b="-0.00033663179604639124" c="-0.00025953067499033652" d="-1.7953153625636127e-05" /> - <width sOffset="1091.8043413420628" a="2.4972834844657852" b="-0.00054058681439029231" c="3.2953509598226445e-05" d="-2.3349608280468607e-06" /> - <width sOffset="1101.4393293801324" a="2.4930456163997103" b="-0.00055585768988700602" c="-3.1822012357638365e-05" d="-3.326820444446439e-06" /> - <width sOffset="1105.2058712429384" a="2.4903227317119265" b="-0.00093716675744609035" c="0.00037396774835894454" d="-2.6957966795528217e-05" /> - <width sOffset="1111.452414192679" a="2.492490019026353" b="0.00057920156027670231" c="-0.00012755676716612733" d="-2.9659974695102019e-05" /> - <width sOffset="1112.9554330658616" a="2.4929717027562992" b="-5.2503940676023805e-06" c="0.00010361707117855901" d="-1.5628132998517696e-05" /> - <width sOffset="1119.9151869771267" a="2.4926856616655737" b="-0.00083394646137722149" c="0.00030301322326938836" d="-1.5258253509212742e-05" /> - <width sOffset="1121.4654990052259" a="2.4920642126842756" b="-4.43451591351611e-06" c="0.00022485764870059847" d="-1.9844970680066834e-05" /> - <width sOffset="1131.0666046854833" a="2.4951856638685488" b="-0.0011746718562204638" c="0.0001414413050493506" d="5.2506456522271041e-06" /> - <width sOffset="1131.4785838177725" a="2.494726097102995" b="-0.0010554565980447871" c="0.0001393753954984844" d="7.3403359879560334e-06" /> - <width sOffset="1134.5663303337558" a="2.4930120376557126" b="1.5207407392980941e-05" c="-1.5925526276661472e-05" d="1.2327153982226733e-06" /> - <width sOffset="1141.4916686303191" a="2.4927629966986347" b="-2.8007666788199421e-05" c="6.3169450315314556e-06" d="6.0541974841271004e-07" /> - <width sOffset="1145.2041153890941" a="2.4927770583639166" b="4.3927136273890638e-05" c="-4.8024480117853324e-05" d="1.6914501380070189e-06" /> - <width sOffset="1151.5047534428656" a="2.4915704201734776" b="-0.0003598008324884952" c="-2.0341892617048358e-05" d="2.9298637345908839e-06" /> - <width sOffset="1156.8663448450277" a="2.4895081272255872" b="-0.00032525925495701237" c="0.00062476563303469584" d="-8.5052785416217373e-05" /> - <width sOffset="1161.3033980674234" a="2.4929352511841998" b="0.0001955623152066501" c="-5.2770345292000001e-05" d="-1.0059360493663624e-05" /> - <width sOffset="1161.5178382554125" a="2.4929746617861248" b="0.0001715424228573249" c="-4.9971121802337544e-05" d="-7.6285834250705032e-06" /> - <width sOffset="1162.8032283277187" a="2.4930963957874344" b="5.2651860145422683e-06" c="0.00014068790911390139" d="-9.7215578237855005e-06" /> - <width sOffset="1171.5309230679591" a="2.4973959151211895" b="0.00023947681030676279" c="-0.00010432863528655931" d="-1.6348605929293272e-05" /> - <width sOffset="1172.8940439030064" a="2.4974870901233563" b="-0.00013608021869236428" c="6.9684375173601826e-06" d="-3.2678984199637341e-07" /> - <width sOffset="1181.5440078805057" a="2.4966198921844454" b="-8.8879839586718983e-05" c="-1.717815956287099e-06" d="-4.2061171508310694e-07" /> - <width sOffset="1189.0716885984075" a="2.4956740738544783" b="-0.00018624530099583983" c="-0.00027583063663471074" d="4.1241918311647604e-05" /> - <width sOffset="1191.5570926930523" a="2.4941404927011099" b="-0.00079306360854483832" c="3.7318472308497858e-05" d="3.9581137708260335e-05" /> - <width sOffset="1193.8210158091479" a="2.4929956033352942" b="-1.5490004114516076e-05" c="0.00031570198046507864" d="4.5854466574678786e-05" /> - <width sOffset="1194.6704596605045" a="2.4932383468788624" b="0.00062011174737985344" c="-4.6297538716831046e-05" d="7.7231114811972207e-07" /> - <width sOffset="1201.5701775055991" a="2.4955665774566382" b="9.1532019182076897e-05" c="-2.6721800093699258e-05" d="7.7699891797644447e-07" /> - <width sOffset="1211.5832623181457" a="2.4945839707246229" b="-0.00020989319458305844" c="-2.1568306390137271e-06" d="8.7010354697315889e-07" /> - <width sOffset="1221.4161652307216" a="2.4931387868300359" b="7.1434479039802178e-08" c="-0.00049633038559758458" d="3.3981409779116637e-05" /> - <width sOffset="1221.5963471306923" a="2.493122884859635" b="-0.00017547839716466472" c="-0.00047285651749365938" d="3.2110704952543412e-05" /> - <width sOffset="1223.3317420962039" a="2.4915621283182352" b="-0.0015265506553396513" c="0.0009326619584662649" d="-9.4032602478709754e-05" /> - <width sOffset="1230.0287923596527" a="2.494924889990485" b="-0.0016866053258919088" c="0.00033040559719015147" d="2.9246300892164413e-05" /> - <width sOffset="1231.6094319432391" a="2.4931999639771512" b="-0.00042289223454249796" c="0.00048452485125752222" d="3.4756233898004295e-05" /> - <width sOffset="1232.0284084581865" a="2.4931103924352547" b="1.420298159482533e-06" c="1.1335019278338378e-05" d="-4.4337054887947045e-07" /> - <width sOffset="1241.6225167557857" a="2.4937758283686096" b="9.6486430800558432e-05" c="4.5279781730926713e-06" d="-3.0277937455193292e-06" /> - <width sOffset="1244.0255935368587" a="2.4939918233337321" b="6.5794078953534127e-05" c="-0.00012267125903743934" d="8.7092263982441977e-06" /> - <width sOffset="1251.6356015683323" a="2.491226616320418" b="-0.00028815248994082908" c="7.5244757351376667e-05" d="9.2234432786586606e-06" /> - <width sOffset="1254.3596304253338" a="2.4911864571150435" b="0.00032710835830085762" c="1.3544921773936359e-05" d="-3.1349421629023278e-06" /> - <width sOffset="1261.6486863808789" a="2.4930763454539617" b="2.4886145581151929e-05" c="-5.8517813900759779e-05" d="-3.2704129863841688e-06" /> - <width sOffset="1261.8579617259873" a="2.4930789606796946" b="-3.622054140246648e-08" c="-6.4359914799518497e-05" d="6.2991646915034651e-06" /> - <width sOffset="1271.6617711934257" a="2.4928283129229696" b="0.00055434569255772995" c="0.00013493580885041799" d="3.44787183424728e-06" /> - <width sOffset="1271.9203670762492" a="2.4929807474645704" b="0.00062482507828467439" c="-0.00042996672978313935" d="7.9674587842753705e-05" /> - <width sOffset="1274.4197755875502" a="2.4931004519940325" b="-3.1308223310972435e-05" c="-0.00012292892006424944" d="7.554191439469588e-05" /> - <width sOffset="1276.1941078572195" a="2.4930798701600221" b="0.00024593390702977837" c="1.5473562455099903e-05" d="-7.8987570046142988e-07" /> - <width sOffset="1281.6748560059723" a="2.4947625357247327" b="0.0003443670233020306" c="2.2718113878507937e-06" d="-7.5914258827580216e-07" /> - <width sOffset="1291.6879408185189" a="2.4976763615272226" b="0.00016152354279804501" c="-2.3804162510488943e-05" d="-6.7030512867814954e-07" /> - <width sOffset="1301.7010256310657" a="2.4962341208555729" b="-0.00051680078533610885" c="-5.3055797288167445e-05" d="6.1758348469949772e-06" /> - <width sOffset="1302.9293251376055" a="2.4955307331884358" b="-0.00061918479390698947" c="4.6722909396643375e-05" d="-8.986187626205601e-07" /> - <width sOffset="1311.7141104436123" a="2.4930878365464908" b="-6.3291803896739149e-06" c="1.7158392767485542e-05" d="-1.4252033357210868e-06" /> - <width sOffset="1311.926779186417" a="2.4930872528589045" b="7.7554994139120495e-07" c="9.2613794048741421e-05" d="-6.3685773380630312e-06" /> - <width sOffset="1318.5553900634077" a="2.4953068480551757" b="0.00038910028989145879" c="-4.7507383412378823e-05" d="4.7678837194113713e-07" /> - <width sOffset="1321.7271952561589" a="2.4960782716185426" b="0.00010212193017781687" c="-4.1795027942760751e-05" d="9.4934832419240684e-07" /> - <width sOffset="1329.2987860029723" a="2.4948675156581492" b="-0.00036751223188403234" c="-0.00030664674552748034" d="3.8457889752775778e-05" /> - <width sOffset="1331.7402800687055" a="2.492702044545223" b="-0.0011771345218776538" c="-6.586454693753021e-06" d="3.7817143016824783e-05" /> - <width sOffset="1334.7234229054543" a="2.4901358175115451" b="-0.00020681090745863903" c="0.00019563854590906235" d="-1.5759609260420831e-05" /> - <width sOffset="1341.7533648812523" a="2.4928752136811845" b="0.00020732069545419162" c="-0.00011738245305820272" d="-1.6202996798224117e-05" /> - <width sOffset="1342.4771672180516" a="2.492957633354747" b="1.193155244017495e-05" c="6.074686131684317e-05" d="-1.3286609900147975e-05" /> - <width sOffset="1346.1720092555402" a="2.4931608300909707" b="-8.3329056180731767e-05" c="0.00012865184522547552" d="-8.7480204674051737e-06" /> - <width sOffset="1351.7664496937989" a="2.4951894444082949" b="0.00053476067921995102" c="-1.8529721578260835e-05" d="-8.3967725559059181e-06" /> - <width sOffset="1355.5538187524412" a="2.496492818609708" b="3.3068833307727755e-05" c="-0.00022037399448326559" d="1.4733236904645318e-05" /> - <width sOffset="1361.7795345063455" a="2.4917123182219658" b="-0.00099774255783770683" c="4.9000657055411827e-05" d="1.5477143033843844e-05" /> - <width sOffset="1366.812339338047" a="2.4899049910415432" b="0.00067154637655149189" c="-1.4472312558362465e-05" d="-2.5465945738892817e-06" /> - <width sOffset="1371.7926193188923" a="2.4925759477778202" b="0.00033790304234796348" c="-5.1051318180352836e-05" d="-4.3046064047719022e-06" /> - <width sOffset="1374.3152808295799" a="2.4930343761751192" b="-1.8485837026480784e-06" c="0.00013583624079410204" d="-1.2571670658605357e-05" /> - <width sOffset="1377.9206838145524" a="2.4942042484261879" b="0.00048738536592802173" c="-0.00048393487359988464" d="4.9399609202037258e-05" /> - <width sOffset="1381.8057041314389" a="2.491690235325648" b="-0.0010359866211941237" c="8.785360678695464e-05" d="5.0955665751013192e-05" /> - <width sOffset="1383.7801967341063" a="2.4903794417676144" b="-9.3083536253349712e-05" c="0.00021826773156252615" d="-2.1664740695871826e-05" /> - <width sOffset="1390.2822846227282" a="2.4930465267773236" b="-2.4618641006899158e-06" c="5.6029384585750156e-05" d="-1.1225962644421584e-05" /> - <width sOffset="1391.8187889439855" a="2.4931342992236232" b="9.0208627810970353e-05" c="2.4187397175333628e-05" d="-2.5013198316079703e-06" /> - <width sOffset="1401.8318737565321" a="2.4939514879993459" b="-0.0001777714458853219" c="-5.3540517857740203e-05" d="-2.8785647769157036e-06" /> - <width sOffset="1403.9634428199029" a="2.4933014110915934" b="-0.00044525909454952938" c="0.00019916947274644661" d="2.0155487306336497e-05" /> - <width sOffset="1404.9637230981268" a="2.4930754807742188" b="1.3691858200028323e-05" c="-0.0001287116419142053" d="8.9711867885390269e-06" /> - <width sOffset="1411.0490912143937" a="2.4904140601199609" b="-0.00055616855466145186" c="9.7155888149432526e-05" d="-1.239988327015087e-06" /> - <width sOffset="1411.8449585690789" a="2.4900323376481461" b="-0.00040387839911844357" c="8.0779994575178583e-05" d="-2.3898379753018048e-06" /> - <width sOffset="1421.8580433816255" a="2.4916881906632788" b="0.00049500661954440155" c="9.7920489510998574e-06" d="-2.4805814796814586e-06" /> - <width sOffset="1431.8711281941721" a="2.4951361714321534" b="-5.5019341826933413e-05" c="-6.4685414974951992e-05" d="-2.14413783258761e-06" /> - <width sOffset="1432.6186303898912" a="2.495058005210514" b="-0.00015531849363455271" c="-3.244334082037053e-05" d="1.6449231993686822e-06" /> - <width sOffset="1441.8842130067187" a="2.49214206509824" b="-0.00033287639358081916" c="1.2755510178406376e-05" d="1.6095060860580415e-06" /> - <width sOffset="1448.7408358835089" a="2.4909781635484451" b="6.9047519904604643e-05" c="0.00062077635192477759" d="-0.00013917931582434009" /> - <width sOffset="1451.7412251347762" a="2.4930144656126343" b="3.5372153844642415e-05" c="3.0808157450320475e-05" d="-0.00018052857438384661" /> - <width sOffset="1451.8972978192655" a="2.4930200503657804" b="3.179646267372372e-05" c="-2.7611091761411055e-05" d="-0.00019449134756487649" /> - <width sOffset="1453.0098483952281" a="2.4927534191735958" b="-0.00075184696577126377" c="0.00015997104630946046" d="-1.2523652550215376e-05" /> - <width sOffset="1460.7002165660531" a="2.4907363770357591" b="-0.0005133871383233258" c="0.00074918190188667712" d="-0.00012522324209463361" /> - <width sOffset="1461.9103826318121" a="2.4909903397024653" b="0.00074971286073052378" c="0.00030522064993894883" d="-0.00011918406301242782" /> - <width sOffset="1464.450483994756" a="2.4929106943753867" b="-6.672180033917563e-06" c="0.00058056730796850003" d="-8.0001105668631175e-05" /> - <width sOffset="1469.5250707976595" a="2.4973729005899941" b="-0.00029482269210284826" c="-7.8186264237020637e-05" d="7.7955252307459578e-06" /> - <width sOffset="1471.9234674443587" a="2.4963235969825162" b="-0.00053533928925147446" c="-2.6648143081848852e-05" d="5.3869316836358091e-06" /> - <width sOffset="1480.2522822559922" a="2.4931286650130762" b="0.00014182652880556168" c="-0.00010186241463280363" d="7.9746567909309276e-06" /> - <width sOffset="1481.9365522569055" a="2.4931166813484245" b="-0.00013343439732670581" c="-6.6248766567401034e-05" d="5.4248124004809294e-06" /> - <width sOffset="1491.5717536576337" a="2.4905331878429084" b="0.00010079683791275459" c="0.00047834649564098088" d="-8.7783361485674886e-05" /> - <width sOffset="1491.9496370694521" a="2.4906348463943146" b="0.00042470994433938111" c="0.00037818710212726448" d="-8.691871939675626e-05" /> - <width sOffset="1495.3217198008228" a="2.4930345567934129" b="1.0223199804725459e-05" c="6.1838882601768133e-05" d="-9.9857057431504013e-05" /> - <width sOffset="1497.4583520991282" a="2.492364686153075" b="-0.0010931244827308245" c="0.00032989479421776134" d="-1.6638721858174691e-05" /> - <width sOffset="1501.9627218819987" a="2.4926135744572937" b="0.00086604539119026916" c="0.00010767765298722896" d="-1.6967514589014082e-05" /> - <width sOffset="1506.4420086598659" a="2.4971283734482759" b="0.00080937441666577119" c="-0.00022998705062840825" d="2.0323270220978645e-06" /> - <width sOffset="1511.7358591577381" a="2.4952692420816085" b="-0.0014547927095819185" c="0.00029142866145167521" d="-2.4709051560269482e-05" /> - <width sOffset="1511.9758066945453" a="2.4949366057532512" b="-0.0013192053882497348" c="0.00028127929031401209" d="-2.5682059528061729e-05" /> - <width sOffset="1518.7017022097875" a="2.4909740658174622" b="-0.0010208847924277837" c="0.0032801519067330504" d="-0.0011333989213170299" /> - <width sOffset="1520.4514758684236" a="2.4931586621294661" b="4.7752867335859248e-05" c="0.0010181974930665999" d="-0.001318994156861087" /> - <width sOffset="1521.8066438055062" a="2.4918106425579012" b="-0.004459509652661996" c="0.0018257706150139816" d="-0.00018880919885512596" /> - <width sOffset="1521.9888915070921" a="2.491057405826135" b="-0.003812838109735144" c="0.0017302329215670644" d="-0.00017772780358832333" /> - <width sOffset="1527.0560576948733" a="2.4930395281320452" b="3.1807815943583548e-05" c="-0.00021326881413581239" d="1.9390053835484413e-05" /> - <width sOffset="1532.0019763196387" a="2.4903257978710869" b="-0.0006548476337397219" c="9.0533059363493269e-05" d="5.9833550995441365e-08" /> - <width sOffset="1533.797122722136" a="2.4894423439966511" b="-0.00032922899215757369" c="0.00023999125611813609" d="-1.8238412588013851e-05" /> - <width sOffset="1541.7959289806395" a="2.4928298743525055" b="9.3278894180376468e-06" c="0.0003828912482172753" d="-6.6827087333915425e-05" /> - <width sOffset="1542.0150611321853" a="2.4928496012224679" b="0.00016750856582262792" c="0.00036287947398592216" d="-6.937214836148591e-05" /> - <width sOffset="1544.7779700796291" a="2.4946193762253506" b="0.00058402305680637409" c="2.156208918173007e-05" d="-3.40471150635287e-05" /> - <width sOffset="1550.3753965974056" a="2.4925929894555665" b="-0.0023748017652186395" c="0.0019631751304722443" d="-0.00039302918813470815" /> - <width sOffset="1552.0281459447322" a="2.4922562315644026" b="0.00089369857911896031" c="2.2026454766215756e-05" d="-0.00039159130773498978" /> - <width sOffset="1552.8748870600039" a="2.4927910246684792" b="8.8721722623303148e-05" c="0.00022317268561473179" d="-0.00034642991274896044" /> - <width sOffset="1554.2990358611337" a="2.4923693680360577" b="-0.0013835032993663324" c="0.00019257236532186877" d="-6.5631679739840184e-06" /> - <width sOffset="1562.0412307572788" a="2.490155276930234" b="0.00041814225836528211" c="3.9403126104782787e-05" d="-6.5056203366580752e-06" /> - <width sOffset="1569.2956586787609" a="2.4927786224850541" b="-3.7271932071097458e-05" c="-0.00030916538221883864" d="-4.8481195754556442e-06" /> - <width sOffset="1569.6810689720091" a="2.4927180561833495" b="-0.00027774340827038283" c="-9.7753991455771754e-05" d="9.0757658094595683e-06" /> - <width sOffset="1572.0543155698253" a="2.4916296371037179" b="-0.00058837977220692556" c="-3.7607695001460239e-05" d="1.0549050101151777e-05" /> - <width sOffset="1575.6149537980436" a="2.4895340420389154" b="-0.0004549674177228251" c="0.00052770426964365109" d="-5.4224659635875803e-05" /> - <width sOffset="1581.6970790705413" a="2.4940877536155854" b="-5.351661141529576e-05" c="-2.1649555423462159e-05" d="2.5109290697869947e-07" /> - <width sOffset="1582.0674003823719" a="2.4940649790516041" b="-6.9447891916739075e-05" c="-1.5565422384453217e-05" d="7.8199430975915083e-07" /> - <width sOffset="1592.0804851949188" a="2.492594041106484" b="-0.00014595105134690423" c="7.2281968031238252e-06" d="7.739530328978202e-07" /> - <width sOffset="1602.0935700074654" a="2.4926343284797854" b="0.00023159597313720371" c="3.8876225316536816e-05" d="-3.0507660393989083e-06" /> - <width sOffset="1602.2423068342173" a="2.4926696253364033" b="0.00024295815292988505" c="-0.00010658645736384279" d="9.4504724941971909e-06" /> - <width sOffset="1603.7417718548868" a="2.4928261453234235" b="-1.2941980873422019e-05" c="-0.0001003139746311724" d="1.222310280158986e-05" /> - <width sOffset="1608.6511623865013" a="2.4917911484758744" b="-0.00011409503284449566" c="-5.4463050537032631e-05" d="5.2986987490357763e-06" /> - <width sOffset="1612.106654820012" a="2.4909652064420245" b="-0.00030068215886448741" c="3.3198657881106303e-07" d="4.2414533553922104e-06" /> - <width sOffset="1619.2899811600437" a="2.490394579908922" b="0.00036066661254472593" c="5.2953235035429466e-05" d="-4.4968115759427824e-06" /> - <width sOffset="1622.1197396325588" a="2.4917373091071848" b="0.00055233124208149958" c="2.1378232162218985e-05" d="-1.445983221131788e-06" /> - <width sOffset="1629.2664512781812" a="2.4962487494839367" b="0.00063633647045503337" c="-0.00023381183436904009" d="1.392297794151955e-05" /> - <width sOffset="1632.1328244451054" a="2.4964795986186665" b="-0.00036086993196492731" c="-0.0001242226807642591" d="1.0242603470767298e-05" /> - <width sOffset="1640.5252300275747" a="2.4907561024301597" b="-0.00028168854108223521" c="7.5074092175960569e-05" d="8.0093326548037892e-06" /> - <width sOffset="1642.145909257652" a="2.490530860112008" b="2.4765470214543677e-05" c="9.1057365028131588e-05" d="-7.0155129207589613e-06" /> - <width sOffset="1651.0197604376885" a="2.4930187043163885" b="-1.6490153409165877e-05" c="0.00010486297358710873" d="-2.5261541484744109e-05" /> - <width sOffset="1652.1589940701986" a="2.4930986642754904" b="0.00012407937660397959" c="3.7506234752367125e-05" d="-9.4188219734982742e-06" /> - <width sOffset="1655.2336267271157" a="2.4935609589690273" b="8.7596451511543112e-05" c="6.6546057080247019e-05" d="-4.4315284636821862e-06" /> - <width sOffset="1662.1720788827454" a="2.4958921395490101" b="0.00037102021504975633" c="-2.4301634887743246e-05" d="-4.9279322778137792e-06" /> - <width sOffset="1666.5388917294647" a="2.496638552383093" b="-0.0001231341944219564" c="-0.00016318445430611739" d="2.2911013391828053e-05" /> - <width sOffset="1670.5061891593527" a="2.4950122431618311" b="-0.00033611655336248433" c="-3.2041658602884876e-05" d="1.4729624861823168e-06" /> - <width sOffset="1672.185163695292" a="2.4943645594825377" b="-0.00043125416405883233" c="-4.7455162424356578e-06" d="8.3803698276963663e-06" /> - <width sOffset="1675.7483379501134" a="2.4931467936431337" b="-0.00014587554166507755" c="3.2237650111001033e-05" d="-2.3743395665032219e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="1680.2879218034107"> - <left> - <lane id="5" type="shoulder" level="false"> - <link> - <predecessor id="4" /> - </link> - <width sOffset="0" a="2.4929268054545783" b="0.0010833544815621668" c="-0.00044855284692540834" d="3.3118022915299978e-05" /> - <width sOffset="1.9103267044279164" a="2.4935903215103661" b="-0.00026783289833918382" c="-0.00031275871517974052" d="2.5428687287539246e-05" /> - <width sOffset="2.8163672508749187" a="2.4931098207326405" b="-0.00077195310200166094" c="0.00042418880792787145" d="-6.4716338316969785e-05" /> - <width sOffset="5.8178015221467376" a="2.4928643562972548" b="2.5384241130534634e-05" c="-8.7256953896970601e-05" d="8.8101545981203335e-06" /> - <width sOffset="11.923411516974738" a="2.4917717966185275" b="-5.4842276788927974e-05" c="6.4673333964717435e-05" d="7.9516262888402981e-06" /> - <width sOffset="15.318793476473957" a="2.4926424393121076" b="0.00065935286743593405" c="-0.00068689072406221069" d="3.1476397510942709e-05" /> - <width sOffset="15.818384338123224" a="2.4928043291155539" b="-3.4071106326978573e-06" c="-1.1606720762111613e-05" d="5.7544026740873245e-07" /> - <width sOffset="21.936496329521333" a="2.492480810364289" b="-8.0811123512047889e-05" c="-1.7130666190101965e-06" d="4.2270364726102971e-07" /> - <width sOffset="31.949581142067927" a="2.4919242515912243" b="1.2025884970963407e-05" c="1.1968700456319958e-05" d="4.0398437603548045e-07" /> - <width sOffset="41.962665954614522" a="2.4936502443261448" b="0.00037322579440265263" c="2.3848237333664609e-05" d="7.0913340961128597e-07" /> - <width sOffset="45.877926289392008" a="2.4955196571983365" b="0.00059258138843185787" c="-0.0016402767747353011" d="0.00029646584119554653" /> - <width sOffset="49.031427652120556" a="2.4903737481466104" b="-0.00090797201789373505" c="0.0004077060836416912" d="-3.2245206751752919e-05" /> - <width sOffset="51.975750767161344" a="2.4904117637336842" b="0.00065426004798122689" c="0.00012780285185915808" d="-3.4788995105915746e-05" /> - <width sOffset="56.024548042518973" a="2.4928467924462892" b="-2.1707152448265099e-05" c="1.1445085208407505e-05" d="-1.0876962266267216e-06" /> - <width sOffset="61.988835579707938" a="2.4928936855057637" b="-1.2605532636045247e-06" c="1.3777225702524027e-05" d="-2.7626512500307437e-06" /> - <width sOffset="66.014720045980539" a="2.4929316440271272" b="-2.4658562427053166e-05" c="2.3445782448193832e-05" d="-1.1417745823740323e-05" /> - <width sOffset="70.524853523312458" a="2.492249861614666" b="-0.00050992686159818945" c="0.00021864329820041729" d="-2.3248704832875229e-05" /> - <width sOffset="72.001920392254533" a="2.4918987651744251" b="-1.6192266565538682e-05" c="0.00011744573113425886" d="-2.7202592337000638e-05" /> - <width sOffset="74.771588315678173" a="2.4921768971070133" b="8.3608949073936401e-06" c="0.0001570791535369456" d="-0.00016887704730084602" /> - <width sOffset="75.581918810744128" a="2.4921969578568968" b="-6.9739047460090631e-05" c="7.7667165667542036e-05" d="-7.3667831995695908e-06" /> - <width sOffset="81.578388666733417" a="2.49298308038132" b="6.7041936026459789e-05" c="-2.8578629530221487e-05" d="2.7197662700010211e-06" /> - <width sOffset="82.015005204801355" a="2.4930071303177552" b="4.3641571247541103e-05" c="-2.0974780882422736e-05" d="1.8573943266331967e-06" /> - <width sOffset="87.8221307537749" a="2.492916973243128" b="-1.2055705875865103e-05" c="-0.00025317725868697488" d="2.5752809241569842e-05" /> - <width sOffset="92.028090017347949" a="2.4903036452756577" b="-0.00077505338214310226" c="9.0568549627138254e-05" d="2.0547010172279196e-05" /> - <width sOffset="94.521920804570527" a="2.4892527326535738" b="6.0029296257351622e-05" c="0.00099836930686826673" d="-0.00019472396356482496" /> - <width sOffset="97.854046045184987" a="2.4933335507190915" b="0.00022731768396461313" c="-0.00016972640367727811" d="2.1191540556125016e-05" /> - <width sOffset="102.04117482989454" a="2.4928653563137999" b="-7.9421652434552223e-05" c="0.00011558886329099443" d="2.5748646892190115e-05" /> - <width sOffset="102.34897437726636" a="2.49285261217784" b="-9.46929045039617e-07" c="0.00070822372293507629" d="-0.0022125516718672655" /> - <width sOffset="103.55126060579369" a="2.4900300223171747" b="-0.007892650058874965" c="0.01726965245350397" d="-0.0074656234739780922" /> - <width sOffset="104.79959581082289" a="2.4925662394111736" b="0.00032202359873012218" c="0.0075999271319707774" d="-0.0043004583908112246" /> - <width sOffset="106.39349988238905" a="2.4949732481871116" b="-0.0082271999125276152" c="0.0075215570688043545" d="0.00095296759403391362" /> - <width sOffset="106.89290398980302" a="2.4928591562130933" b="-1.5838121826109754e-06" c="3.4454567182798048e-06" d="-2.3466641566760441e-07" /> - <width sOffset="112.05425964244114" a="2.4929105013673407" b="1.5228390005303169e-05" c="-2.765931077922313e-07" d="-8.0246213986966385e-08" /> - <width sOffset="122.06734445498796" a="2.4929546911581646" b="-1.4447616302405383e-05" c="-3.2594899729304101e-06" d="-3.1397864364761911e-07" /> - <width sOffset="125.48870693776394" a="2.4928545312522346" b="-4.7777449145911286e-05" c="2.0541822029242153e-05" d="2.4705379480789963e-06" /> - <width sOffset="126.48849408127762" a="2.492829766011539" b="7.0590895034585875e-07" c="-3.7062489776500198e-05" d="1.8830747746698495e-06" /> - <width sOffset="132.08042926753456" a="2.492004050378398" b="-0.00023714640150998182" c="-5.027874169251991e-06" d="1.788956770329272e-06" /> - <width sOffset="142.09351408008115" a="2.4909213677057878" b="0.0002002569773356871" c="6.1320269626474619e-05" d="1.3449994366779793e-06" /> - <width sOffset="142.72158449903645" a="2.4910716655788345" b="0.00027887556788253569" c="-4.4930836282626087e-05" d="5.3434156601968837e-05" /> - <width sOffset="143.4698425777317" a="2.4912775659727266" b="0.00030138761964405977" c="-1.9920974304166309e-05" d="4.2213819876143457e-07" /> - <width sOffset="152.10659889262774" a="2.4926665620287221" b="5.1748791122283901e-05" c="-7.8048401497238033e-06" d="3.5900121990163502e-07" /> - <width sOffset="162.11968370517457" a="2.4927626115182786" b="3.4301365733621159e-06" c="1.3913201624348784e-07" d="1.6589371768229269e-06" /> - <width sOffset="167.52760765935409" a="2.4930476049675026" b="0.00015048501310524259" c="-4.2928164289381205e-05" d="3.0370162368208511e-06" /> - <width sOffset="172.13276851772116" a="2.4931268204249974" b="-5.1674565673231455e-05" c="-1.9059843890823921e-05" d="2.8392145906728995e-07" /> - <width sOffset="179.35704546560373" a="2.4918658211123415" b="-0.00028260801340739179" c="5.5482945873570903e-05" d="-6.2466356467809508e-07" /> - <width sOffset="182.14585333026776" a="2.4914956486256603" b="1.2279670582047921e-05" c="4.5319916562610569e-05" d="-3.0712042316762543e-06" /> - <width sOffset="192.10682152305094" a="2.493079266347813" b="9.5733815529889903e-07" c="6.3833634074239983e-05" d="-5.1413483196382891e-06" /> - <width sOffset="192.15893814281458" a="2.4930794888944749" b="7.5690307208195733e-06" c="7.4114795860509279e-05" d="-4.8863311231308205e-06" /> - <width sOffset="202.17202295536117" a="2.4956806288305504" b="2.2066454006364189e-05" c="-7.4475202059379842e-05" d="-3.1727543750398899e-06" /> - <width sOffset="203.19960365538236" a="2.4956212212996114" b="-0.00014104265087493096" c="-5.1010957725142683e-05" d="2.0638711664693965e-06" /> - <width sOffset="212.18510776790777" a="2.4917325975652531" b="-0.0005578545500060639" c="-5.7262798187341954e-06" d="7.5371085141721361e-06" /> - <width sOffset="213.89789770986067" a="2.4907981829044488" b="-0.00051113667768419785" c="0.0003205760883864545" d="-2.8864731364085464e-05" /> - <width sOffset="220.39803396207412" a="2.4930931570716055" b="-2.3182547188498135e-06" c="-2.1985897813510305e-05" d="-3.0818791423743322e-05" /> - <width sOffset="222.19819258045436" a="2.4928379542701204" b="-0.00038108591155908231" c="-0.00018598108476463121" d="-2.8222916918547174e-05" /> - <width sOffset="223.18287465905587" a="2.4922554330339679" b="-0.00082944511259668604" c="6.0661087270747751e-05" d="-1.0698362907303322e-06" /> - <width sOffset="232.21127739300118" a="2.4889241606020658" b="4.286673037381299e-06" c="3.0650266561366933e-05" d="-1.0154589630178383e-06" /> - <width sOffset="242.22436220554778" a="2.4910206860783255" b="0.00031265867435682109" c="-2.5583992117844911e-07" d="-1.0831174634944656e-06" /> - <width sOffset="252.25211062229482" a="2.493038063488676" b="-1.9213351024827173e-05" c="4.5939448425624658e-05" d="-8.197991586311287e-06" /> - <width sOffset="252.50212969197105" a="2.4930360033151562" b="2.2207673470703819e-06" c="8.3078790641498282e-05" d="-5.3027936979088077e-06" /> - <width sOffset="262.25053183064119" a="2.4960402133841253" b="0.00011019684778967203" c="-7.3243711159709277e-05" d="-5.1671889003838773e-06" /> - <width sOffset="263.60427385214803" a="2.4960423445498385" b="-0.0001165177732326705" c="-5.8269880078359907e-05" d="2.2583417258808377e-06" /> - <width sOffset="272.26361664318779" a="2.4921304288429269" b="-0.00061765554323464211" c="-8.3696659347143126e-07" d="2.5019294129310884e-06" /> - <width sOffset="279.05358194667474" a="2.4886811910252309" b="-0.00028297741651169103" c="0.00013820260517946996" d="-4.9736876541864733e-06" /> - <width sOffset="282.27670145573438" a="2.4890383028214416" b="0.0004529021562169731" c="8.7081378266648461e-05" d="-6.0498475339166908e-06" /> - <width sOffset="292.28978626828098" a="2.496230565171718" b="0.00037710157371661428" c="-9.2493209194426833e-05" d="-6.867527993834242e-06" /> - <width sOffset="295.31896182580135" a="2.496333277316845" b="-0.00037230210760548873" c="-0.0012014103013326493" d="0.00088212416686552647" /> - <width sOffset="296.02288414918894" a="2.4957835820807048" b="-0.00075240602994827558" c="2.9092022437915219e-05" d="3.2710132461302716e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="4" type="driving" level="false"> - <link /> - <width sOffset="0" a="0" b="0" c="0.0021139076944207565" d="-9.7179354838400618e-05" /> - <width sOffset="1.9103267044279164" a="0.0070369043279372434" b="0.0070125847517304987" c="0.0015848208688841185" d="-8.9783702083562664e-05" /> - <width sOffset="2.8163672508749187" a="0.014624805834275278" b="0.0096632958094938961" c="0.0006729485874595756" d="3.6132352086928653e-07" /> - <width sOffset="11.923411516974738" a="0.15871496598974488" b="0.02201034358632268" c="0.00067437400116897512" d="2.0519043391638644e-06" /> - <width sOffset="15.318793476473957" a="0.24130341008701084" b="0.026660825089273997" c="0.0015278354814997927" d="-2.1472866895684195e-05" /> - <width sOffset="21.936496329521333" a="0.47842366952708026" b="0.044061199917069124" c="0.0011014290572112348" d="-2.1570661985470742e-05" /> - <width sOffset="31.949581142067927" a="1.0083880881442884" b="0.05963046048754226" c="0.0004539115100343471" d="-2.1586371387517785e-05" /> - <width sOffset="41.962665954614522" a="1.6293117436779543" b="0.062227699661068309" c="-0.00019281521996947565" d="-2.1861057577916701e-05" /> - <width sOffset="45.877926289392008" a="1.868681614367409" b="0.059712514360405949" c="0.0012228639229983668" d="-0.00031761776536385624" /> - <width sOffset="49.031427652120556" a="2.059185404420055" b="0.057949403348003484" c="-0.001025226800445922" d="1.1093282583370088e-05" /> - <width sOffset="51.975750767161344" a="2.2212025914326539" b="0.052200709699518406" c="-0.00092229383046464001" d="1.1802316185677263e-05" /> - <width sOffset="61.988835579707938" a="2.6632705292984822" b="0.037280663789959811" c="-0.00056270850224999515" d="1.1615531939275607e-05" /> - <width sOffset="70.524853523312458" a="2.9477224303409741" b="0.030213132545858359" c="-0.00061494152385616172" d="2.3446490950007731e-05" /> - <width sOffset="72.001920392254533" a="2.9910831708208256" b="0.028549974537810149" c="-0.00050676714981230566" d="2.7916300239304367e-05" /> - <width sOffset="74.771588315678173" a="3.066862795903841" b="0.026385263975201002" c="-0.00054047037056016971" d="0.00016959075520012819" /> - <width sOffset="75.571190945723629" a="3.08770166601865" b="0.025846231772699714" c="-0.007658877959112298" d="0.0038532124156637785" /> - <width sOffset="75.581918810744128" a="3.0879780642237638" b="0.025683235320439431" c="-0.0078659943929025623" d="0.0036917011232663133" /> - <width sOffset="76.613357902045664" a="3.1101513422643912" b="0.021239079659165636" c="-6.6422008214852472e-05" d="-6.1845665036797806e-06" /> - <width sOffset="81.578388666733417" a="3.2132096582516905" b="0.020122127941408406" c="-0.00018481998212042578" d="-1.627111591201317e-05" /> - <width sOffset="82.015005204801355" a="3.2219587248099391" b="0.019951431536091656" c="-0.00020593721389394114" d="-1.5904930271066203e-05" /> - <width sOffset="91.299620300739207" a="3.3767176039460205" b="0.012014126482032289" c="-0.00019980592495317406" d="-2.3229496433013808e-05" /> - <width sOffset="92.028090017347949" a="3.3853545206655937" b="0.011686039890821304" c="-0.00027453822860402564" d="-1.6037087698176116e-05" /> - <width sOffset="94.521920804570527" a="3.4125413917569594" b="0.010017522934975903" c="-0.0011485980353033796" d="0.00019923388603892438" /> - <width sOffset="97.854046045184987" a="3.4405390940846878" b="0.0089992944722936397" c="6.4580554769500014e-05" d="-1.6681618082001418e-05" /> - <width sOffset="102.04117482989454" a="3.478127948452447" b="0.0086627199121521396" c="-0.00016408383354716633" d="-2.1238724479607483e-05" /> - <width sOffset="102.56629414076565" a="3.4826285883926067" b="0.0084728229796110482" c="9.9864566739769634e-05" d="1.212384964250148e-05" /> - <width sOffset="103.55126060579369" a="3.4910825046293006" b="0.0087048356614212261" c="-0.024406100622834402" d="0.0052651956517562491" /> - <width sOffset="106.39349988238905" a="3.4395550225035283" b="-0.0024292490360650746" c="3.5526653459573478e-06" d="1.1769666873580514e-05" /> - <width sOffset="111.6255062620553" a="3.4286280823791904" b="-0.0014255291748289398" c="8.6540895158507671e-05" d="-4.9017029512326978e-07" /> - <width sOffset="112.05425964244114" a="3.4280327520587681" b="-0.0013515900953749423" c="8.5234243984703349e-05" d="-1.2448457811703282e-07" /> - <width sOffset="122.06734445498796" a="3.4229199364007057" b="0.00031788216371315438" c="7.7196913278370461e-05" d="4.6615948450182829e-07" /> - <width sOffset="125.48870693776394" a="3.4249298415183773" b="0.00086248960840003882" c="5.495759872958703e-05" d="-2.3183571039343316e-06" /> - <width sOffset="132.08042926753456" a="3.4323390716291025" b="0.0012848166345556015" c="9.800828594828297e-06" d="-2.3910288265720016e-06" /> - <width sOffset="139.44395605528257" a="3.4413766230751621" b="0.0010402182618885784" c="-2.5062257752599092e-05" d="-2.1187663496724711e-06" /> - <width sOffset="142.09351408008115" a="3.443917390994053" b="0.00086278822770900808" c="-5.5789701225817088e-05" d="-3.8675935020498551e-06" /> - <width sOffset="142.72158449903645" a="3.444436317036156" b="0.0007881315283902483" c="4.570830455296764e-05" d="-5.595675066035029e-05" /> - <width sOffset="143.4698425777317" a="3.445028191797471" b="0.00076254584374228665" c="1.5035788424214466e-05" d="-2.9447322571481714e-06" /> - <width sOffset="150.67336790724471" a="3.4502006981517006" b="0.00052075387310001296" c="-0.00059602331739601918" d="4.449712105310024e-05" /> - <width sOffset="152.10659889262774" a="3.4498537395808722" b="-0.00091351287511019818" c="-0.00041164778001752817" d="3.7619770426106483e-05" /> - <width sOffset="160.26311173408362" a="3.4354303430724915" b="-0.00012035022504193336" c="-1.1422688259144305e-06" d="1.1989933574391472e-06" /> - <width sOffset="162.11968370517457" a="3.4352106397472255" b="-0.00011219334874029214" c="1.3105110272585375e-05" d="-2.5567455204794532e-06" /> - <width sOffset="167.52760765935409" a="3.4345828037231927" b="-0.00019477145786195294" c="4.160656883426125e-05" d="-3.9348245804531726e-06" /> - <width sOffset="172.13276851772116" a="3.4341839307842967" b="-6.1905027339858185e-05" c="1.1138021168631829e-05" d="7.359009524858495e-07" /> - <width sOffset="176.70578626468387" a="3.4342041383250814" b="8.6132276432104442e-05" c="-4.9882938533065723e-06" d="-9.6607496694748193e-07" /> - <width sOffset="179.35704546560373" a="3.434379429789991" b="3.9309625447886061e-05" c="-8.1061647296721e-05" d="-5.7489943346092606e-08" /> - <width sOffset="182.14585333026776" a="3.4338573569840358" b="-0.00041416246891842046" c="-7.7583628119182838e-05" d="2.6711220099507325e-06" /> - <width sOffset="192.15893814281458" a="3.424613254691816" b="-0.0011644303229444569" c="4.8336278853638024e-06" d="9.3345227602101588e-07" /> - <width sOffset="195.54057011839404" a="3.4207669515178285" b="-0.0010997159237398106" c="-0.00010698115828133639" d="1.0604501369143913e-05" /> - <width sOffset="202.17202295536117" a="3.4118621629792765" b="-0.0011195609740523955" c="0.00010445174739712263" d="8.8184083878524584e-06" /> - <width sOffset="203.19960365538236" a="3.4108315850091859" b="-0.00087696111784683916" c="9.8391598370542812e-05" d="3.5817828463425011e-06" /> - <width sOffset="208.147234881445" a="3.4093350397899869" b="0.0003596855463000357" c="6.7808684561187168e-05" d="-7.3860184055816836e-06" /> - <width sOffset="212.18510776790777" a="3.4114067256632188" b="0.00054601706193970769" c="-9.8616004077167686e-06" d="-1.344583153305083e-05" /> - <width sOffset="213.89789770986067" a="3.4122454461090621" b="0.00039389929572545071" c="-0.00036652517268242579" d="2.2956008345200787e-05" /> - <width sOffset="220.20931019844397" a="3.4059027019884898" b="-0.0014893998854762494" c="2.9582445263412908e-05" d="2.9918750302416467e-05" /> - <width sOffset="222.19819258045436" a="3.4032928593351484" b="-0.0010166832822838573" c="0.0002070537906340101" d="2.8881236384832688e-05" /> - <width sOffset="223.18287465905587" a="3.4025200828945872" b="-0.00052490933232054332" c="-3.7643675249217413e-05" d="1.7281557619666871e-06" /> - <width sOffset="232.21127739300118" a="3.3959843674096195" b="-0.00078203726603569333" c="6.3104495733518803e-06" d="1.6447638580041351e-06" /> - <width sOffset="242.22436220554778" a="3.3904376881348224" b="-0.00016094184465051007" c="5.4381196266050355e-05" d="1.7564150423463206e-06" /> - <width sOffset="246.4694542933421" a="3.3908688339403295" b="0.00039572057593145797" c="0.00026504338915906285" d="-1.9946995241852667e-05" /> - <width sOffset="252.23744701809437" a="3.3981414512276649" b="0.0014623632159687949" c="-7.6911839655316531e-05" d="-2.0822625622827488e-05" /> - <width sOffset="252.25211062229482" a="3.3981628781397211" b="0.0014600941744963146" c="-0.00015660682895870829" d="-1.3708135343128464e-05" /> - <width sOffset="256.66665769399174" a="3.4003772092948985" b="-0.00072404397445237942" c="-0.00024713546116143179" d="1.249524793960509e-05" /> - <width sOffset="262.25053183064119" a="3.3908041047904245" b="-0.0023151982078307063" c="-3.725936378092808e-05" d="1.2471519378717688e-05" /> - <width sOffset="263.60427385214803" a="3.3876325820112241" b="-0.0023475107681920826" c="-2.2568657539695108e-05" d="5.0459887524490032e-06" /> - <width sOffset="270.115054351352" a="3.3727844244426697" b="-0.0019996875524718877" c="-3.1003938026269047e-05" d="-2.7184734755798105e-07" /> - <width sOffset="272.26361664318779" a="3.3683421507706317" b="-0.002136680139734531" c="-3.1327374395290025e-05" d="-1.5076886440169556e-06" /> - <width sOffset="279.05358194667474" a="3.3519178911871643" b="-0.0027706334629930972" c="-0.00015011436519549181" d="5.9679284231928977e-06" /> - <width sOffset="282.27670145573438" a="3.3416281718172227" b="-0.0035523130791077946" c="-8.7353895066507811e-05" d="6.7610610643209431e-06" /> - <width sOffset="284.32761935430426" a="3.3340335614410668" b="-0.0038253079850426941" c="-0.00038866946524873018" d="5.1053520181853396e-05" /> - <width sOffset="291.88196883539422" a="3.3049650240171218" b="-0.00095700102996605684" c="0.002469321696813223" d="-0.00067657404276732342" /> - <width sOffset="292.28978626828098" a="3.3049395382634685" b="0.00071949048613813326" c="0.0016360428979541747" d="-0.000675801992300226" /> - <width sOffset="294.18721351606405" a="3.3075783285586695" b="-0.00037109291350045107" c="-0.0049533099053660845" d="0.00042669133523024454" /> - <width sOffset="295.31896182580135" a="3.3014324105333142" b="-0.0099433049261636406" c="-0.0024580800647645189" d="-0.00046230035962861309" /> - <width sOffset="296.02288414918894" a="3.293053851714645" b="-0.014091118476628915" c="-0.0028020123391242603" d="0.00041655279399077725" /> - <roadMark sOffset="0" color="standard" width="0.27524430384841919" weight="bold" type="solid"> - <type name="solid"> - <line length="103.55126060579369" space="0" width="0.27524399999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="103.55126060579369" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="198.75161047503411" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="3" type="driving" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="3.8729516367967589" b="-0.0041514551732184084" c="-0.0082239700714142622" d="0.34791070747548791" /> - <width sOffset="0.011780922442085284" a="3.8729021562798138" b="-0.0042003673598700426" c="0.00017801241585362521" d="2.8719037167427987e-06" /> - <width sOffset="1.9103267044279164" a="3.8655888612340243" b="-0.0034933827925386464" c="0.00017445237402960104" d="-2.3892872904691749e-06" /> - <width sOffset="11.923411516974738" a="3.8457015652722686" b="-0.00071843317566780938" c="9.5091392193377683e-05" d="-2.6291790119902878e-06" /> - <width sOffset="11.949671679382618" a="3.8456827646274419" b="-0.00071344438403529199" c="0.00024380402707080404" d="-6.8624082622561735e-06" /> - <width sOffset="21.936496329521333" a="3.8560386020333857" b="0.0021029105760472198" c="3.7269410324677968e-05" d="-6.9892102079681834e-06" /> - <width sOffset="29.652592133565349" a="3.8712729558737879" b="0.0014296856459633878" c="-8.9059543367611392e-05" d="5.2541297146511509e-06" /> - <width sOffset="31.949581142067927" a="3.8741507120801235" b="0.0011037129250710803" c="-5.2246402280587952e-05" d="4.9160245064707959e-06" /> - <width sOffset="41.962665954614522" a="3.8848993086924226" b="0.0015360870032410205" c="9.6543134593481583e-05" d="5.0351552402523836e-06" /> - <width sOffset="45.176303063400155" a="3.8909998909404679" b="0.0023125973484800447" c="0.00021712931717770328" d="-3.3319076536633833e-05" /> - <width sOffset="49.845787510452055" a="3.9031404913921364" b="0.0021608853566959822" c="-0.00017585374042978043" d="4.8971660480450562e-06" /> - <width sOffset="51.975750767161344" a="3.9069926162845094" b="0.0014784129036960652" c="-0.00014220447900555061" d="4.4787128831471265e-06" /> - <width sOffset="61.988835579707938" a="3.9120347202835095" b="-2.2265761828852218e-05" c="-3.8751889581164617e-06" d="4.7859188358305404e-06" /> - <width sOffset="65.952192940058922" a="3.912183558847349" b="0.00017255125406460004" c="-2.676899676555412e-05" d="-6.437644189043942e-07" /> - <width sOffset="72.001920392254533" a="3.9121051837528005" b="-0.00022202280763399147" c="-3.8079537165916056e-05" d="-1.7558415015813786e-07" /> - <width sOffset="75.557595712130933" a="3.9108264165627267" b="-0.00049947938871287238" c="6.1976840142591609e-05" d="-1.4437301905235677e-05" /> - <width sOffset="75.571190945723629" a="3.9108196374426925" b="-0.00049780221478619088" c="0.007586611174692723" d="-0.003698058642561365" /> - <width sOffset="76.613357902045664" a="3.9143548840327136" b="0.0032657115234656082" c="-0.00035165021363226044" d="-1.7295279014950124e-07" /> - <width sOffset="80.242339475822291" a="3.9215667651919301" b="0.00070661412301553043" c="-5.4402301666064225e-05" d="1.8862389227836539e-06" /> - <width sOffset="82.015005204801355" a="3.9226589120608812" b="0.00053152156501162697" c="-4.4343496312063935e-05" d="1.7202169139249226e-06" /> - <width sOffset="91.299620300739207" a="3.925148107915212" b="0.00015296611086979689" c="-0.0004455735965542062" d="9.0447830728069799e-06" /> - <width sOffset="92.028090017347949" a="3.925026583881265" b="-0.00048180829804603687" c="-0.00042446413909263383" d="8.8692421896135612e-06" /> - <width sOffset="98.85352283083057" a="3.9047839028305451" b="-0.005036549489979828" c="-5.9162362967314218e-05" d="8.9642233158990819e-05" /> - <width sOffset="102.18208077008399" a="3.8906698125014043" b="-0.0024508811643482232" c="0.0011884081073907456" d="-1.290232501945417e-05" /> - <width sOffset="102.56629414076565" a="3.8899028521027708" b="-0.0015433905153096957" c="0.00087612937665776586" d="-4.6264899159120149e-05" /> - <width sOffset="111.6255062620553" a="3.9134271106249159" b="0.0029399061897291212" c="-0.00027949254236162848" d="-3.4005062055122743e-05" /> - <width sOffset="112.05425964244114" a="3.9146335461842314" b="0.0026814860483633267" c="-0.00032290554534944097" d="-3.4088619198059955e-05" /> - <width sOffset="115.65874361271403" a="3.9185072435080572" b="-0.00097499885733296095" c="-1.2289083622185675e-05" d="2.4315373597672883e-07" /> - <width sOffset="122.06734445498796" a="3.9118181489414026" b="-0.0011025514286445764" c="-8.8436273581819916e-06" d="2.2752702089803075e-07" /> - <width sOffset="132.08042926753456" a="3.9001199507167077" b="-0.0012112185581795161" c="-1.2769762071629958e-06" d="1.0012476149079834e-07" /> - <width sOffset="139.44395605528257" a="3.8911718467971057" b="-0.0012137379028958626" c="-1.702129021416963e-05" d="-1.7213771529025236e-07" /> - <width sOffset="142.09351408008115" a="3.8878332838387011" b="-0.0013075609967898871" c="-5.8108965948150548e-06" d="1.6687757858659266e-06" /> - <width sOffset="148.99424498138774" a="3.8790818239559082" b="-0.0011493581200019366" c="-9.2605654235655748e-05" d="7.020524177410633e-06" /> - <width sOffset="150.67336790724471" a="3.8769240496551975" b="-0.0014009685434706171" c="0.00049018106066869274" d="-4.0421329132419247e-05" /> - <width sOffset="152.10659889262774" a="3.8758040407318015" b="-0.00024497772221829164" c="0.00033151879560644622" d="-3.3295873964499538e-05" /> - <width sOffset="160.26311173408362" a="3.8777936452341049" b="-0.0014822968988764502" c="2.6817035457808508e-05" d="3.1249031044110962e-06" /> - <width sOffset="162.11968370517457" a="3.875154086237699" b="-0.0013504080804149841" c="5.4964290804312459e-05" d="4.7733137113312347e-06" /> - <width sOffset="169.60665199665777" a="3.8701278932244185" b="0.00027532364561131859" c="8.18932773157588e-05" d="-2.9517136033364618e-06" /> - <width sOffset="172.13276851772116" a="3.8712983944256845" b="0.00063256056992442786" c="7.4955244084700493e-05" d="-5.8683061232093066e-06" /> - <width sOffset="176.70578626468387" a="3.8751974011714201" b="0.00094994119028877686" c="2.0669819315170933e-05" d="-4.1663302037051471e-06" /> - <width sOffset="182.14585333026776" a="3.8803060954951771" b="0.00080493234811631958" c="-4.4417480875400675e-05" d="-3.1905892109506306e-06" /> - <width sOffset="188.43984329519549" a="3.8828172475693457" b="-0.00013337297685726631" c="-5.0970962801211358e-08" d="3.5330486305133097e-07" /> - <width sOffset="192.15893814281458" a="3.8823386902591781" b="-0.0001190917234467438" c="-6.8730299177041428e-06" d="2.1986394942076585e-06" /> - <width sOffset="195.54057011839404" a="3.8819423921326499" b="-9.0148643048848197e-05" c="0.00013671650129094487" d="-7.4724095989261163e-06" /> - <width sOffset="202.17202295536117" a="3.8851776953210901" b="0.00073728562647556604" c="-1.2867477353552476e-05" d="-7.8316199205258287e-06" /> - <width sOffset="208.147234881445" a="3.8874529733396406" b="-0.00025532686176416838" c="-6.9507307826245732e-05" d="3.1361813313505851e-06" /> - <width sOffset="212.18510776790777" a="3.8854951907807624" b="-0.00066324938028025659" c="-2.6576174144601606e-05" d="3.5135591138356242e-06" /> - <width sOffset="220.20931019844397" a="3.8802772802019443" b="-0.0004110632982936318" c="9.6551249926621707e-05" d="-3.4491828434581106e-06" /> - <width sOffset="222.19819258045436" a="3.8798145110484192" b="-6.7936451139117215e-05" c="7.7063528677666495e-05" d="-2.4466711361378403e-06" /> - <width sOffset="232.21127739300118" a="3.8844045029212491" b="0.00073942739453493019" c="1.0025480567521678e-06" d="-2.4654832062001024e-06" /> - <width sOffset="242.22436220554778" a="3.8894337954848068" b="1.7922740618179058e-05" c="-7.2620830719821104e-05" d="-2.8015912547101713e-06" /> - <width sOffset="246.4694542933421" a="3.887986871519105" b="-0.00075010229166275883" c="-0.00029659363142119864" d="1.8901819029487959e-05" /> - <width sOffset="252.23744701809437" a="3.8774199457977305" b="-0.002285026290111489" c="2.7714746098214487e-05" d="1.971737452962003e-05" /> - <width sOffset="256.66665769399174" a="3.8695560673091043" b="-0.00087907651958722764" c="0.00019869496939044481" d="-6.4860087531124505e-06" /> - <width sOffset="259.67029216922742" a="3.8685324735441693" b="0.00013899078899645971" c="2.8828834187954663e-05" d="-1.4988570705838959e-06" /> - <width sOffset="262.25053183064119" a="3.869057287181461" b="0.00025782485415479033" c="1.4318792424107215e-05" d="-1.7751151966435661e-06" /> - <width sOffset="270.115054351352" a="3.871107121312515" b="0.0001536693555489561" c="7.9432748093748211e-05" d="3.5427209033154979e-06" /> - <width sOffset="272.26361664318779" a="3.8718391147761082" b="0.00054406476938399133" c="0.00010630751798212636" d="4.376342788715369e-06" /> - <width sOffset="278.23424091068864" a="3.8798086827550442" b="0.0022815375155062025" c="0.0013630846239088175" d="-0.00047878763798117055" /> - <width sOffset="279.58780969828354" a="3.8842069099986318" b="0.0033399650143182101" c="0.00021545395326854632" d="-7.3569810608237907e-06" /> - <width sOffset="282.27670145573438" a="3.8946024488844255" b="0.0043390537479313296" c="0.00015563604556104451" d="-6.851383157751103e-06" /> - <width sOffset="284.32761935430426" a="3.9040970333649128" b="0.0048909910672989831" c="0.00045639588614912761" d="-5.1143842275281112e-05" /> - <width sOffset="291.88196883539422" a="3.9450421988587454" b="0.0030304786605774114" c="-0.002403642249923104" d="0.00067648372069340293" /> - <width sOffset="292.28978626828098" a="3.9459242022917169" b="0.0014075125255731008" c="-0.0015757405475041201" d="0.00067648755541863375" /> - <width sOffset="294.18721351606405" a="3.9475430310094031" b="0.0027343391259580002" c="0.0050175146742380654" d="-0.00042600577211235135" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="75.571190945723629" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="284.32761935430426" color="standard" width="0.14999999999999999" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="2" /> - </link> - <width sOffset="0" a="3.8112366768362893" b="-0.00022962701597545581" c="0.0082702723536082195" d="-0.34789979460445097" /> - <width sOffset="0.011780922442085284" a="3.8112345506078942" b="-0.00017961931833649671" c="-0.00013132444259799568" d="8.0409673201214855e-06" /> - <width sOffset="1.9103267044279164" a="3.8104752057489133" b="-0.00059131982821942607" c="-0.00010522597194742536" d="2.8015944500032623e-06" /> - <width sOffset="11.923411516974738" a="3.7968167240522939" b="-0.0018559137171078989" c="-3.0901473644838886e-05" d="5.0816260044469874e-06" /> - <width sOffset="11.949671679382618" a="3.7967679662391522" b="-0.0018575261597744861" c="-0.00017942090355332197" d="9.314855254667274e-06" /> - <width sOffset="13.951862796031037" a="3.7924043508886554" b="-0.0024639727218136211" c="-0.0001617716554071732" d="8.6738047492584018e-06" /> - <width sOffset="21.936496329521333" a="3.7668322275582211" b="-0.0033883685496778988" c="4.5155406444964562e-05" d="8.5027242792069806e-06" /> - <width sOffset="28.786173089097019" a="3.7484741541757152" b="-0.0015729743910836858" c="0.00027112348190336266" d="2.5481911604412658e-06" /> - <width sOffset="29.652592133565349" a="3.7473164840704301" b="-0.001097422651428117" c="0.00024228759296854701" d="-9.6951487619114683e-06" /> - <width sOffset="31.949581142067927" a="3.7459565658427558" b="-0.00013781820033482994" c="0.00017908110029230467" d="-9.1121239395943123e-06" /> - <width sOffset="41.962665954614522" a="3.7533836461634316" b="0.00070769460254625771" c="-9.2895684972449567e-05" d="-9.1733859004875854e-06" /> - <width sOffset="45.176303063400155" a="3.7543940900724611" b="-0.00017358486166796708" c="-0.00025337818240004658" d="2.9180845876409883e-05" /> - <width sOffset="49.111552512628577" a="3.7515654676247499" b="-0.00081209735148789555" c="0.00018442123667390309" d="3.1793918565474212e-05" /> - <width sOffset="49.845787510452055" a="3.7510812038931451" b="-0.00048985989593919657" c="0.00018068818843360837" d="-6.4223240193951132e-06" /> - <width sOffset="51.975750767161344" a="3.7507954967343671" b="0.00019244919886481429" c="0.00014457330141298715" d="-5.9740172114360006e-06" /> - <width sOffset="61.988835579707938" a="3.7612201974915127" b="0.0012908002905924996" c="-2.4197075122925274e-05" d="-7.2772353746465777e-06" /> - <width sOffset="65.574375213929443" a="3.7652018815039603" b="0.00083661067048081909" c="-0.00033073013317852517" d="1.1345773241045328e-05" /> - <width sOffset="65.952192940058922" a="3.7654713692649926" b="0.00059155795593290438" c="-0.00023807150269674465" d="1.6775456496515737e-05" /> - <width sOffset="72.001920392254533" a="3.7640512476254213" b="-0.00044707247972037342" c="6.8410384765064987e-05" d="1.7265372486267492e-05" /> - <width sOffset="75.557595712130933" a="3.764102647593532" b="0.00069426710503110462" c="0.00015065120718898547" d="3.1527798731818775e-05" /> - <width sOffset="80.242339475822291" a="3.7739029650627223" b="0.0041815968738297491" c="0.00029461934325232693" d="2.9468606930110986e-05" /> - <width sOffset="80.468183409819858" a="3.7748627200099643" b="0.00431918203840538" c="0.00080321069301944679" d="-0.00012701297717339648" /> - <width sOffset="82.015005204801355" a="3.7829954562082042" b="0.0058923339299251686" c="0.00021407588549778083" d="-0.00012829951104068014" /> - <width sOffset="85.759689547903463" a="3.8013252367754959" b="0.0020983255795115037" c="-0.00050403193103073737" d="2.7757468362760551e-05" /> - <width sOffset="92.028090017347949" a="3.8015102891906936" b="-0.00094861274694183276" c="1.4658381702610404e-05" d="2.8348917312069115e-05" /> - <width sOffset="98.85352283083057" a="3.8047326772225412" b="0.0032135201753785841" c="0.00041144674693817086" d="-5.2424073657335105e-05" /> - <width sOffset="102.18208077008399" a="3.8180543069639183" b="0.0042101030513923476" c="-0.00046447532245671671" d="5.0120484567961536e-05" /> - <width sOffset="102.27214838585064" a="3.8184297696228438" b="0.0041276544401079749" c="-0.0003995062840973646" d="7.2191712432676737e-06" /> - <width sOffset="112.05425964244114" a="3.8273357935912777" b="-0.0016159743920554129" c="-0.00018960172545595612" d="8.0823210351430985e-06" /> - <width sOffset="113.81428130932045" a="3.8239483835140482" b="-0.0022082714396350241" c="0.00037327189523807453" d="3.7166430137688071e-05" /> - <width sOffset="115.65874361271403" a="3.8213784134476265" b="-0.00045197438177961205" c="-0.00010030397287170028" d="2.8346572035872958e-06" /> - <width sOffset="122.06734445498796" a="3.8151084776266666" b="-0.0013883311167064588" c="-4.7774238901680286e-05" d="2.7083267588075217e-06" /> - <width sOffset="132.08042926753456" a="3.7991360380584975" b="-0.0015304404330450569" c="3.3723687361971522e-05" d="2.6899331765601686e-06" /> - <width sOffset="133.0274981322998" a="3.7977191386798737" b="-0.00145932500300653" c="-4.3236408132804717e-05" d="1.8697219113694671e-06" /> - <width sOffset="142.09351408008115" a="3.7823284018428334" b="-0.0017822567654626449" c="1.3649823964674115e-05" d="1.5514544573642766e-06" /> - <width sOffset="148.99424498138774" a="3.7711893620447077" b="-0.0013722280528221734" c="0.00016711040865220305" d="-3.8002939340819852e-06" /> - <width sOffset="150.23648957182559" a="3.7697353140591408" b="-0.00097463756778457889" c="4.7936890800084829e-05" d="-3.7250891213223739e-06" /> - <width sOffset="152.10659889262774" a="3.7680559219863694" b="-0.00083442647689008654" c="3.8266394147811702e-05" d="-1.9370144897022172e-07" /> - <width sOffset="162.11968370517457" a="3.7633429362333093" b="-0.00012635978375732525" c="4.1589629415552892e-05" d="-1.2151882241116104e-06" /> - <width sOffset="167.24129291644044" a="3.7636234497800709" b="0.00020402550167789751" c="-0.00012145925127009489" d="-6.665922288486066e-06" /> - <width sOffset="169.60665199665777" a="3.7633382712868273" b="-0.00048244996140835552" c="-8.8477192014929862e-05" d="1.0591050262497563e-06" /> - <width sOffset="172.13276851772116" a="3.7615720226689158" b="-0.00090918206589803889" c="-6.0799366690110878e-05" d="3.5452590566471678e-06" /> - <width sOffset="182.14585333026776" a="3.7499316414775059" b="-0.0010603976153508471" c="4.4441938805846698e-05" d="4.4446997947836476e-06" /> - <width sOffset="187.71846830724598" a="3.7461717205447078" b="-0.00015100436302795377" c="0.00041226170222350821" d="-7.7826972596838007e-06" /> - <width sOffset="188.43984329519549" a="3.7462744017406528" b="0.00043163627418344223" c="0.00029080785345818202" d="-1.1326591333712226e-05" /> - <width sOffset="192.15893814281458" a="3.7513194008731707" b="0.002124723351830581" c="0.00015364137841706094" d="-1.2694765656943867e-05" /> - <width sOffset="202.17202295536117" a="3.7752541440388963" b="0.0013831689221231161" c="-0.00022787943530624185" d="-1.2729069636779202e-05" /> - <width sOffset="203.04424122378623" a="3.7762787601983141" b="0.00095659622835234537" c="-2.7576653886534064e-06" d="-7.5037002070259192e-09" /> - <width sOffset="212.18510776790777" a="3.7847867296154929" b="0.00090430040082623724" c="-8.6306589903952289e-07" d="-1.7492572692832316e-08" /> - <width sOffset="222.19819258045436" a="3.7937374722975137" b="0.00088175498271971518" c="-1.6214091241034175e-06" d="1.5266661099660156e-07" /> - <width sOffset="232.21127739300118" a="3.8025572608963527" b="0.00089520428712185594" c="4.5391630981140567e-07" d="1.3423241556708441e-07" /> - <width sOffset="242.22436220554778" a="3.8117012878718861" b="0.00094466967011426072" c="4.0207542417557864e-06" d="1.6536361236782984e-08" /> - <width sOffset="252.23744701809437" a="3.8215800750862368" b="0.0010301638759563972" c="2.6511612046050111e-06" d="2.6934341766544069e-07" /> - <width sOffset="259.67029216922742" a="3.8294941970563059" b="0.0011142166158872677" c="0.00012007846166367673" d="-4.7178082663159425e-06" /> - <width sOffset="260.43118944616208" a="3.8304094442831853" b="0.0012887570320223305" c="9.4695707484976189e-05" d="-3.401349081373982e-06" /> - <width sOffset="262.25053183064119" a="3.8330470949572795" b="0.0015995493956673572" c="7.1765914542655813e-05" d="-5.0223745127902913e-06" /> - <width sOffset="272.26361664318779" a="3.8512167879606829" b="0.0015260878303417209" c="-7.7013305023862047e-05" d="-5.1519001694786793e-06" /> - <width sOffset="278.23424091068864" a="3.8564865419049728" b="5.548252928684832e-05" c="-0.0013476820961055027" d="0.00047801208060038307" /> - <width sOffset="279.58780969828354" a="3.8552779284326633" b="-0.00096551101654485615" c="-0.00020320073625592467" d="6.5814236800213576e-06" /> - <width sOffset="282.27670145573438" a="3.8513405541324621" b="-0.0019155267644302336" c="-0.00014894381410277333" d="6.8869325308214798e-06" /> - <width sOffset="292.28978626828098" a="3.8241408394169132" b="-0.0028268107003599566" c="5.45747533655846e-05" d="7.7573513805886717e-06" /> - <width sOffset="294.13191123628258" a="3.8191671882163671" b="-0.0025467717124572999" c="0.0004228335442489667" d="-0.00011261382733074977" /> - <width sOffset="296.27115110073214" a="3.814551587149678" b="-0.002283766884055247" c="-0.00048230957359835891" d="7.4232279752409799e-05" /> - <roadMark sOffset="0" color="standard" width="0.14480015053551021" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14480000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="3.6026127935481904" b="-0.00075466833486544788" c="-9.5363886689984513e-05" d="8.9969329413859016e-06" /> - <width sOffset="1.9103267044279164" a="3.6008858360973548" b="-0.001020521872747631" c="-6.2385123486476124e-05" d="4.0724440829865873e-06" /> - <width sOffset="11.923411516974738" a="3.5885008662097126" b="-0.0010449243910702491" c="5.4823536745150638e-05" d="2.8642877956245662e-06" /> - <width sOffset="13.951862796031037" a="3.5866307719079469" b="-0.00078715432353013669" c="0.00011055485465825413" d="3.5053383010070126e-06" /> - <width sOffset="15.876796488200398" a="3.5855502007848798" b="-0.00032256707121218389" c="0.00013402012628557121" d="-4.3763948072477381e-06" /> - <width sOffset="21.936496329521333" a="3.5875429549836628" b="0.00081957324951206778" c="5.3436198796940005e-05" d="-4.5793854994228073e-06" /> - <width sOffset="28.786173089097019" a="3.5941921965106594" b="0.00090704681579283596" c="-9.1911069281109354e-05" d="1.3751476191621884e-06" /> - <width sOffset="31.949581142067927" a="3.5961853204447003" b="0.00036682630994313084" c="-7.8639955133594791e-05" d="1.0457376592336247e-06" /> - <width sOffset="41.962665954614522" a="3.5930236426559565" b="-0.00089348793909811708" c="-4.3789782396826509e-05" d="4.4522256029869397e-07" /> - <width sOffset="44.724443672678035" a="3.5902314033950735" b="-0.001125175536441668" c="-0.00012702499762953014" d="2.2739501124911892e-05" /> - <width sOffset="49.111552512628577" a="3.584770386795177" b="-0.0009267378120879511" c="7.8959305489147556e-05" d="2.0126428436013046e-05" /> - <width sOffset="51.975750767161344" a="3.5832366862439682" b="2.0901813265661665e-05" c="0.00026371949769451314" d="1.4091433545853394e-05" /> - <width sOffset="53.580567984449772" a="3.5840076645417067" b="0.00097621984714111633" c="0.0015760893247088244" d="-0.00023947920291456827" /> - <width sOffset="59.385293835412313" a="3.5959408593883189" b="-0.0049338891203693025" c="-0.0033997661298951678" d="0.0028474775904416714" /> - <width sOffset="60.167347845267159" a="3.5913649452963448" b="-0.0050268663149440913" c="0.0023572287613158657" d="-0.00024344042106710299" /> - <width sOffset="61.988835579707938" a="3.5885582258765396" b="0.0011373875206709249" c="0.0010590523076349564" d="-0.00023571851387137923" /> - <width sOffset="65.506063069301263" a="3.5954036924472317" b="-0.00016089956272427423" c="-0.00057088540287845242" d="9.343598909737661e-05" /> - <width sOffset="65.574375213929443" a="3.5953900667739789" b="-0.00023758830421911382" c="-0.00032348235382160574" d="7.4812980502852956e-05" /> - <width sOffset="70.045132259594538" a="3.5945474978046783" b="0.001356000845924547" c="0.00061932700054557609" d="-4.9411581811278156e-05" /> - <width sOffset="72.001920392254533" a="3.5992020992590312" b="0.0032121905209970001" c="0.00033341800709073028" d="-4.7121585992885833e-05" /> - <width sOffset="80.468183409819858" a="3.6217006211189715" b="-0.0012748883103534826" c="-0.0013520386467428974" d="0.00010935999819809015" /> - <width sOffset="81.389048980564667" a="3.6194654984214174" b="-0.0034867703206693818" c="-0.00093677602415200836" d="0.00015370325425412908" /> - <width sOffset="82.015005204801355" a="3.6169535818440726" b="-0.0044788593086204226" c="-0.00064862928977817104" d="0.00015478962449594699" /> - <width sOffset="85.759689547903463" a="3.599214230032342" b="-0.0028249959877552685" c="0.00036706986605922979" d="-1.2673549074944419e-06" /> - <width sOffset="92.028090017347949" a="3.5956170893277162" b="0.0016274919159803471" c="0.00033105178217207576" d="3.5133870792292566e-07" /> - <width sOffset="97.582200869448116" a="3.6149288902760754" b="0.0053374029526221988" c="0.00097658138166321603" d="-0.00023161002083244635" /> - <width sOffset="101.7219182692445" a="3.6373289537430806" b="0.0015154612874184034" c="-0.00063348461820418524" d="-1.5951020446262149e-05" /> - <width sOffset="102.27214838585064" a="3.6379683595170662" b="0.00080384899017720696" c="-0.00071124115455953828" d="2.6950292850299492e-05" /> - <width sOffset="108.17994185687667" a="3.6234505649776834" b="-0.0047780234292362769" c="9.9609194683803652e-05" d="2.9253462950222383e-05" /> - <width sOffset="112.05425964244114" a="3.6081353814277586" b="-0.0026888749537977586" c="0.000440960137298381" d="2.8902088343644397e-05" /> - <width sOffset="113.81428130932045" a="3.6049264285329112" b="-0.00086808822258486649" c="7.3366602134377598e-05" d="-1.8202075884291534e-07" /> - <width sOffset="122.06734445498796" a="3.6026569433613669" b="0.00030571620996433274" c="6.1628058228532144e-05" d="2.460227208570357e-06" /> - <width sOffset="123.73623605657826" a="3.6033502326108398" b="0.00053197397595927329" c="2.8147023618884548e-05" d="-2.6579875910489778e-06" /> - <width sOffset="132.08042926753456" a="3.6082046698080865" b="0.00044651075651281073" c="-3.7127670738684618e-05" d="-2.8312779807102774e-06" /> - <width sOffset="133.0274981322998" a="3.6085918399043062" b="0.0003685673799414175" c="3.9430834964074085e-05" d="-2.0110667163664041e-06" /> - <width sOffset="142.09351408008115" a="3.6136756361392401" b="0.0005876438581120455" c="-9.1259085976892772e-06" d="-2.4672524855764627e-06" /> - <width sOffset="149.52663496717241" a="3.6165261711257695" b="4.3019275441619209e-05" c="-0.00012952561124449254" d="1.335353531467268e-05" /> - <width sOffset="150.23648957182559" a="3.6164962178767879" b="-0.00012068314634894979" c="3.9224284556821685e-06" d="1.3278330502391148e-05" /> - <width sOffset="152.10659889262774" a="3.6163710900715991" b="3.3302862888005217e-05" c="9.1973171899996484e-05" d="1.2339088413837037e-05" /> - <width sOffset="154.24554602741296" a="3.6169838580321256" b="0.00059611186731138967" c="0.00021760129750067621" d="-1.579768223294929e-05" /> - <width sOffset="162.11968370517457" a="3.627456822181629" b="0.0010844912433762516" c="-0.00014460034618959586" d="-1.7614630256631455e-05" /> - <width sOffset="166.26914797752625" a="3.6282086537481653" b="-0.0010254056486945808" c="-0.00058319187989873259" d="4.7631468478407866e-05" /> - <width sOffset="167.24129291644044" a="3.6267044171253051" b="-0.0020242551045650471" c="-0.00029990008377742431" d="5.3082202543564404e-05" /> - <width sOffset="172.13276851772116" a="3.6158397848349102" b="-0.0011479436883414336" c="0.00055384171729721957" d="1.8815252665077278e-05" /> - <width sOffset="173.43749090265442" a="3.6153266312738777" b="0.00039336332634983765" c="4.1468669325414514e-05" d="-1.3657157429881076e-06" /> - <width sOffset="182.14585333026776" a="3.620995058411276" b="0.00080490220933793688" c="8.7226881533331288e-06" d="-1.0823802911283223e-06" /> - <width sOffset="187.71846830724598" a="3.625564034918912" b="0.00080128173958411329" c="-0.00030288633919466133" d="1.1145016763359075e-05" /> - <width sOffset="192.15893814281458" a="3.6241256734461369" b="-0.0012293688555317281" c="-0.00015517794754872315" d="1.1943171311649612e-05" /> - <width sOffset="202.17202295536117" a="3.6082475829497418" b="-0.000744654777797267" c="0.00020262148587827638" d="1.1475743426139111e-05" /> - <width sOffset="203.04424122378623" a="3.6077598434869262" b="-0.0003650034328997026" c="-2.5779806091209161e-05" d="-1.2458225104055999e-06" /> - <width sOffset="207.12306703319541" a="3.6057576241867033" b="-0.00063748568430202338" c="7.2514757333935602e-06" d="-2.1806435618699561e-07" /> - <width sOffset="212.18510776790777" a="3.6026881740062575" b="-0.00058083436412862505" c="8.3524343017803864e-06" d="9.4330994977810894e-08" /> - <width sOffset="221.26120252238479" a="3.5981750285606555" b="-0.00040590770632558532" c="6.7576021133666694e-05" d="-3.3746269470588005e-06" /> - <width sOffset="222.19819258045436" a="3.5978512493960655" b="-0.00028815985131223703" c="5.8273869836463765e-05" d="-3.5097839247608219e-06" /> - <width sOffset="226.60732692480656" a="3.5974127417426325" b="2.1019288779058768e-05" c="-1.6691572207962077e-05" d="4.5253799752390935e-06" /> - <width sOffset="232.21127739300118" a="3.5978027585276435" b="0.00026029044056255458" c="5.0429958797964961e-05" d="4.7556261409704908e-06" /> - <width sOffset="236.64653559806766" a="3.6003641676059281" b="0.0009882813354732318" c="0.0036507591813704702" d="-0.00049929468210126789" /> - <width sOffset="241.68548578528612" a="3.6341587650305249" b="-0.00025253360703616221" c="-0.00087012768157571508" d="9.2932546939716943e-05" /> - <width sOffset="242.22436220554778" a="3.6337845485408016" b="-0.0011093567549434857" c="-0.0007195199329982151" d="9.3025821678801901e-05" /> - <width sOffset="246.52646436471218" a="3.6231021045673062" b="-0.0021350643866273728" c="4.2389595148497796e-05" d="-1.9448901405745459e-06" /> - <width sOffset="251.91441821118315" a="3.6125248428883081" b="-0.001847658776706063" c="-4.1282286987966644e-05" d="3.8824844471001207e-06" /> - <width sOffset="252.23744701809437" a="3.6119238190381093" b="-0.0018731141286037188" c="-3.6092354586020925e-05" d="3.6901362758213018e-06" /> - <width sOffset="260.43118944616208" a="3.5961828255787478" b="-0.0017213384113840483" c="6.9229175711506743e-05" d="2.3736770921180863e-06" /> - <width sOffset="262.25053183064119" a="3.5932945650528776" b="-0.00144586460283298" c="8.3235579870691244e-05" d="3.5059437244558837e-06" /> - <width sOffset="268.16395378407447" a="3.588380158396967" b="-9.3656990169232847e-05" c="0.0027987734711666925" d="-0.00047084909089849318" /> - <width sOffset="271.86892146183413" a="3.6025052135019973" b="0.0012553400945622148" c="-3.4789336473828829e-05" d="-3.1530868024869354e-07" /> - <width sOffset="272.26361664318779" a="3.6029952511688523" b="0.0012277303672150049" c="-3.657145009863901e-05" d="-2.5109623324773608e-07" /> - <width sOffset="282.27670145573438" a="3.6113698143923072" b="0.00041981817232819341" c="-4.4153592119015944e-05" d="-3.3719853714869824e-09" /> - <width sOffset="288.26452143656275" a="3.612299803743285" b="-0.00010931204727398297" c="-0.00057316724162679872" d="5.0607123917549722e-05" /> - <width sOffset="292.28978626828098" a="3.6058735205339039" b="-0.0022636871394272366" c="3.229854442109998e-05" d="5.0774294077448752e-05" /> - <width sOffset="294.13191123628258" a="3.6021305243926278" b="-0.0016277950443082953" c="-1.2492429935461325e-05" d="0.00017114547297683531" /> - <width sOffset="294.30789408622513" a="3.6018446062655585" b="-0.001616290844024164" c="-4.0678003305018903e-05" d="9.1570135804989764e-05" /> - <width sOffset="296.27115110073214" a="3.599207547089232" b="-0.00071717581511453253" c="0.00068106828271490298" d="-9.5275971278208738e-05" /> - <width sOffset="301.17311237474382" a="3.6008349337440944" b="-0.00090825818331624836" c="-0.0084507552597373418" d="0.0052239627266587544" /> - <roadMark sOffset="0" color="standard" width="0.14573232133187675" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.145732" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16415335160999631" weight="standard" type="solid"> - <type name="solid"> - <line length="302.3028710808278" space="0" width="0.16415299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="2.4929268054465687" b="-5.2571648139988249e-05" c="2.7556744011204078e-06" d="2.7755162069551445e-06" /> - <width sOffset="1.9103267044279164" a="2.4928557822030077" b="-1.1656696808053611e-05" c="-6.3154047052865048e-07" d="4.4875115719902014e-07" /> - <width sOffset="7.9953048146619494" a="2.4928625747653355" b="3.0505154875154483e-05" c="7.0210569778177975e-05" d="-2.4554876652995626e-06" /> - <width sOffset="11.923411516974738" a="2.493916923915922" b="0.00046842968627515847" c="3.2511585224835187e-05" d="-6.7993529077458523e-06" /> - <width sOffset="15.876796488200398" a="2.4958568170832764" b="0.00040668489611238659" c="-5.1352433806279126e-05" d="1.0823802005823565e-06" /> - <width sOffset="21.936496329521333" a="2.4966763885850698" b="-9.6440893816515313e-05" c="-3.2120688934427651e-05" d="1.10981428800127e-06" /> - <width sOffset="31.949581142067927" a="2.4936044139835971" b="-0.00040587909973462642" c="2.2015891935839245e-06" d="1.0911464615449559e-06" /> - <width sOffset="41.962665954614522" a="2.490856482880841" b="-3.3588555368455411e-05" c="3.3829546429516866e-05" d="1.7334500195911274e-06" /> - <width sOffset="44.724443672678035" a="2.4910582663062009" b="0.00019293605380844674" c="0.00013511578982048877" d="-2.0560828545041667e-05" /> - <width sOffset="49.72494761007124" a="2.4928307387325193" b="1.8571341594275648e-06" c="0.00056604710570603656" d="-7.2979345827051722e-05" /> - <width sOffset="51.975750767161344" a="2.4948704075479293" b="0.0014408131159868928" c="7.1785710398506125e-05" d="-6.575752712871866e-05" /> - <width sOffset="53.580567984449772" a="2.4970957459678669" b="0.0011631556421722485" c="-0.0014893280262110278" d="0.00018781310933168704" /> - <width sOffset="59.385293835412313" a="2.4903991113982507" b="0.0028578731023432202" c="0.0025868049012754335" d="-0.0028991436840245456" /> - <width sOffset="60.167347845267159" a="2.4928295424084341" b="0.0015844928575083914" c="-0.003291407016886609" d="0.00019177432736484007" /> - <width sOffset="60.417435972322664" a="2.4930229469081997" b="-2.5807733334918051e-05" c="-0.00032888584341335381" d="5.4626313496932571e-05" /> - <width sOffset="61.988835579707938" a="2.4923822397668332" b="-0.00065476417253192143" c="-5.4599242902231325e-05" d="6.3039131958273251e-05" /> - <width sOffset="65.506063069301263" a="2.4921467543062104" b="0.0013007102640972146" c="-0.00024671953942274687" d="-0.00026611537103383092" /> - <width sOffset="66.506524565049631" a="2.4929346335561355" b="7.9603154093969494e-06" c="0.00064501063084926877" d="-9.9640434287350928e-05" /> - <width sOffset="70.045132259594538" a="2.4966244383323373" b="0.00082982332327723174" c="-0.00035215196681851943" d="2.4584128026792225e-05" /> - <width sOffset="72.001920392254533" a="2.497084028469521" b="-0.00026595091719627297" c="-0.00020865032653747819" d="2.3299171880407156e-05" /> - <width sOffset="78.549914080039571" a="2.4929377636440728" b="-1.4916080222689837e-06" c="-0.00024884979735628331" d="4.5297250294776181e-05" /> - <width sOffset="81.389048980564667" a="2.4919642731287466" b="-0.00031914702984722765" c="2.3820164141078251e-05" d="9.5399424804533997e-07" /> - <width sOffset="82.015005204801355" a="2.4917740682835481" b="-0.00028820488432731127" c="2.4164403964434191e-05" d="-8.2054758263636488e-08" /> - <width sOffset="92.028090017347949" a="2.4912286393197522" b="0.00017103467846113496" c="1.7952909157398895e-05" d="3.6611567771034024e-07" /> - <width sOffset="97.582200869448116" a="2.4927951269451674" b="0.00040434154474380986" c="-0.0006156222267758144" d="0.00023232747522262585" /> - <width sOffset="98.082633186098064" a="2.4928724170344649" b="-3.7265915714072145e-05" c="-0.0010436855732984243" d="0.00021326479277635038" /> - <width sOffset="101.7219182692445" a="2.4891932020663861" b="0.00083988545917078675" c="1.8374464342012795e-05" d="-2.3942077029283304e-06" /> - <width sOffset="102.04117482989454" a="2.4894631359142627" b="0.00085088570866527491" c="-6.8719684485275172e-06" d="-6.7801145758051393e-06" /> - <width sOffset="108.17994185687667" a="2.4928590731942117" b="0" c="4.1736044283825049e-05" d="-2.0472020339512156e-06" /> - <width sOffset="112.05425964244114" a="2.4933664906712272" b="0.00023120981201798802" c="1.7833309553692395e-05" d="-1.8876109952109683e-06" /> - <width sOffset="122.06734445498796" a="2.4955745846416422" b="2.0576483844933968e-05" c="-3.3727073702346131e-05" d="-4.5684123373187516e-06" /> - <width sOffset="123.73623605657826" a="2.4954937530710284" b="-0.00013016899110839236" c="-1.0801036460618132e-05" d="5.4980246229940269e-07" /> - <width sOffset="132.08042926753456" a="2.4939749879003488" b="-0.0001955799477753894" c="3.431500682263134e-06" d="4.8523071586428718e-07" /> - <width sOffset="141.4898271554348" a="2.4928427472155157" b="-2.1209583882576301e-06" c="4.0707128690654828e-05" d="-6.6338328180081872e-07" /> - <width sOffset="142.09351408008115" a="2.4928561560927163" b="4.6302478229699566e-05" c="2.8639310051437393e-05" d="1.8983588243601508e-08" /> - <width sOffset="149.52663496717241" a="2.4947904830849144" b="0.00047520798869701061" c="9.4444176664546699e-05" d="-1.580180421249546e-05" /> - <width sOffset="152.10659889262774" a="2.4963737820991128" b="0.0006469925617488576" c="-4.1845423659886283e-05" d="-1.7645034969507993e-05" /> - <width sOffset="154.24554602741296" a="2.497393545902332" b="0.00022579913805776167" c="-0.00020152096680821962" d="1.0491735677274166e-05" /> - <width sOffset="162.11968370517457" a="2.4917990054081596" b="-0.00099628136055465331" c="4.3402288331794952e-05" d="1.2279257261782055e-05" /> - <width sOffset="166.26914797752625" a="2.4892895745471986" b="-1.8141364736669417e-06" c="0.00041557700317902837" d="-5.2966841474044741e-05" /> - <width sOffset="171.51934102205405" a="2.4930699205171543" b="-1.8112949874072009e-05" c="-0.00011822476112833424" d="-5.895547843716864e-05" /> - <width sOffset="172.13276851772116" a="2.4930007137374446" b="-0.00022971124142630956" c="-0.00031530362854144736" d="-2.5909757427631007e-05" /> - <width sOffset="173.43749090265442" a="2.4921067164762034" b="-0.0011847972250506789" c="0.00016930034190925023" d="-5.7287890195669659e-06" /> - <width sOffset="182.14585333026776" a="2.4908447484487342" b="0.00046052219970081805" c="1.5135984630840833e-05" d="-4.914970866188627e-06" /> - <width sOffset="188.68772055739396" a="2.4931291591721765" b="2.7533728327064399e-05" c="-6.8389475207152991e-05" d="6.2321621771025932e-06" /> - <width sOffset="192.15893814281458" a="2.4926613518290379" b="-0.0002219752311619635" c="-2.5282163430153877e-05" d="1.5728660233966891e-06" /> - <width sOffset="202.17202295536117" a="2.4894829063969706" b="-0.00025518467017866163" c="2.0812384372809307e-05" d="1.636936986591307e-06" /> - <width sOffset="207.12306703319541" a="2.4889283118897749" b="7.1279305466665681e-05" c="-3.1497349604000133e-06" d="6.091788323539306e-07" /> - <width sOffset="212.18510776790777" a="2.4892874382349888" b="8.6220395903201903e-05" c="4.7556578864705886e-06" d="2.4743535794922264e-07" /> - <width sOffset="221.26120252238479" a="2.4906467268979053" b="0.00023369383010960959" c="-4.516221753695103e-05" d="3.7163933016136468e-06" /> - <width sOffset="222.19819258045436" a="2.4908291027272753" b="0.00015884915905211026" c="-3.5266233036550835e-05" d="4.1246119233436383e-06" /> - <width sOffset="226.60732692480656" a="2.4911974417057179" b="8.8415169946410947e-05" c="4.7831786740971419e-05" d="-3.9105519766341454e-06" /> - <width sOffset="232.21127739300118" a="2.4925068279290805" b="0.00025608511432483039" c="-1.9720934610545745e-05" d="-2.6262309179339061e-06" /> - <width sOffset="235.85702164498707" a="2.4930510690437115" b="7.5708864539635479e-06" c="0.0017983336066155202" d="-0.00019702032219119992" /> - <width sOffset="236.64653559806766" a="2.4940810462358378" b="0.0024787624547357836" c="-0.0022053692065983239" d="0.00030702998604952773" /> - <width sOffset="241.68548578528612" a="2.4898575044317468" b="0.0036406839199614911" c="-0.00059091902213987508" d="-0.00028519724299349566" /> - <width sOffset="243.18541154226273" a="2.4930264260497585" b="-5.6876233003395199e-05" c="0.00045397474398275138" d="-9.2501599366256077e-05" /> - <width sOffset="246.52646436471218" a="2.4944541109501088" b="-0.000121053517581164" c="-3.4473208187648212e-05" d="2.469112453134001e-06" /> - <width sOffset="251.91441821118315" a="2.4931873215212912" b="-0.00027749827778235868" c="5.767213081561502e-05" d="-3.3582621696310319e-06" /> - <width sOffset="252.23744701809437" a="2.4931035863348256" b="-0.00024129003844790687" c="5.0834546739652861e-05" d="-2.8033070579292019e-06" /> - <width sOffset="260.91381801421767" a="2.4930058733643801" b="7.7348005087219361e-06" c="-0.00037401873067443258" d="5.3122577522073381e-05" /> - <width sOffset="262.25053183064119" a="2.4924747948536883" b="-0.00070741833482304128" c="-0.00016947439757886574" d="4.7519997149355122e-05" /> - <width sOffset="268.16395378407447" a="2.4921916239935635" b="0.0022733519192105677" c="-0.001979798532002682" d="0.00052187503177263497" /> - <width sOffset="269.16386831067484" a="2.4930070627193208" b="-0.00012054923641444896" c="-0.0015817061909420584" d="0.00047252267465964874" /> - <width sOffset="271.86892146183413" a="2.4904601132847439" b="0.0016950404247362051" c="-0.00014698852171692663" d="1.9888924338994559e-06" /> - <width sOffset="272.26361664318779" a="2.4911063613622986" b="0.0015799386168453518" c="-0.00013739438555150521" d="2.5372208545227177e-06" /> - <width sOffset="282.27670145573438" a="2.4956981966671217" b="-0.00040838515062089969" c="-5.9916851802292838e-05" d="2.5270323801848093e-06" /> - <width sOffset="288.26452143656275" a="2.4916471233823998" b="-0.00085411522860519523" c="0.00051443047011556602" d="-4.8083463522671926e-05" /> - <width sOffset="292.28978626828098" a="2.4934082531361392" b="0.00095006851028807361" c="-6.0988221124512905e-05" d="-4.9072661066551394e-05" /> - <width sOffset="294.30789408622513" a="2.4946738621786402" b="0.0001043235082748646" c="-0.00023954840640117719" d="3.0502675917283844e-05" /> - <width sOffset="299.3073390247805" a="2.4930196060372367" b="-3.7018313591801171e-06" c="-0.0017013656448067278" d="0.0004865123153753609" /> - <width sOffset="301.17311237474382" a="2.4902499372760811" b="-0.0012716182477517817" c="0.0087525056703649969" d="-0.0048327263825609611" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276663849" type="pole" s="249.84342350018582" t="-8.3244451556817634" height="2.0891796831336649" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5172898" s="1755.6927093190156" t="-7.4315263448672084" orientation="none" validLength="9.1357137580498602" length="0" roll="0" pitch="0" hdg="0" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="9.1357137580498602" s="1755.6927093190156" distance="0" tStart="-7.4315263448672084" tEnd="-7.5683409269851767" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="273608354" s="1764.8284230770655" t="-7.5683409269851767" orientation="none" validLength="8.0053189924344679" length="0" roll="0" pitch="0" hdg="0" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="8.0053189924344679" s="1764.8284230770655" distance="0" tStart="-7.5683409269851767" tEnd="-7.7927796288882645" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="542043810" s="1772.8337420695" t="-7.7927796288882645" orientation="none" validLength="8.1520004278427223" length="0" roll="0" pitch="0" hdg="0" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="8.1520004278427223" s="1772.8337420695" distance="0" tStart="-7.7927796288882645" tEnd="-7.9015405142129298" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5172904" s="0" t="-6.7417376166212444" orientation="none" validLength="20.16507870068757" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="20.16507870068757" s="0" distance="0" tStart="-6.7417376166212444" tEnd="-6.755214047575258" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273608360" s="20.16507870068757" t="-6.755214047575258" orientation="none" validLength="66.290470304133208" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="66.290470304133208" s="20.16507870068757" distance="0" tStart="-6.755214047575258" tEnd="-7.1666477244601472" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542043816" s="86.455549004820782" t="-7.1666477244601472" orientation="none" validLength="65.536332037122335" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="65.536332037122335" s="86.455549004820782" distance="0" tStart="-7.1666477244601472" tEnd="-7.2069588344041859" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810479272" s="151.99188104194312" t="-7.2069588344041859" orientation="none" validLength="51.699123208892672" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="51.699123208892672" s="151.99188104194312" distance="0" tStart="-7.2069588344041859" tEnd="-7.0108787781366466" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078914728" s="203.69100425083579" t="-7.0108787781366466" orientation="none" validLength="34.736133111664969" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="34.736133111664969" s="203.69100425083579" distance="0" tStart="-7.0108787781366466" tEnd="-7.0028512665783209" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742066" s="238.42713736250076" t="-7.0028512665783209" orientation="none" validLength="28.020679131225421" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="28.020679131225421" s="238.42713736250076" distance="0" tStart="-7.0028512665783209" tEnd="-7.106605571680717" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742067" s="266.44781649372618" t="-7.106605571680717" orientation="none" validLength="74.97319784442908" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="74.97319784442908" s="266.44781649372618" distance="0" tStart="-7.106605571680717" tEnd="-7.1810830534240591" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742068" s="341.42101433815526" t="-7.1810830534240591" orientation="none" validLength="35.520199222290785" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="35.520199222290785" s="341.42101433815526" distance="0" tStart="-7.1810830534240591" tEnd="-7.3659351712545984" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742069" s="376.94121356044604" t="-7.3659351712545984" orientation="none" validLength="49.958640231585719" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="49.958640231585719" s="376.94121356044604" distance="0" tStart="-7.3659351712545984" tEnd="-7.450284333819031" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742070" s="426.89985379203176" t="-7.450284333819031" orientation="none" validLength="302.59870889227204" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="302.59870889227204" s="426.89985379203176" distance="0" tStart="-7.450284333819031" tEnd="-7.2270235317410014" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742071" s="729.49856268430381" t="-7.2270235317410014" orientation="none" validLength="180.44793901405785" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="180.44793901405785" s="729.49856268430381" distance="0" tStart="-7.2270235317410014" tEnd="-7.6072727892768812" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742072" s="909.94650169836166" t="-7.6072727892768812" orientation="none" validLength="159.1941607144912" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="159.1941607144912" s="909.94650169836166" distance="0" tStart="-7.6072727892768812" tEnd="-7.3668501234578034" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742073" s="1069.1406624128529" t="-7.3668501234578034" orientation="none" validLength="62.106737384351391" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="62.106737384351391" s="1069.1406624128529" distance="0" tStart="-7.3668501234578034" tEnd="-7.0671685335327341" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742074" s="1131.2473997972043" t="-7.0671685335327341" orientation="none" validLength="28.841535403690159" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="28.841535403690159" s="1131.2473997972043" distance="0" tStart="-7.0671685335327341" tEnd="-7.0598644555273307" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742075" s="1160.0889352008944" t="-7.0598644555273307" orientation="none" validLength="11.998177979398406" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="11.998177979398406" s="1160.0889352008944" distance="0" tStart="-7.0598644555273307" tEnd="-7.143834050006979" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742076" s="1172.0871131802928" t="-7.143834050006979" orientation="none" validLength="106.01607024368764" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="106.01607024368764" s="1172.0871131802928" distance="0" tStart="-7.143834050006979" tEnd="-7.1352398094312131" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742077" s="1278.1031834239805" t="-7.1352398094312131" orientation="none" validLength="57.815039557787713" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="57.815039557787713" s="1278.1031834239805" distance="0" tStart="-7.1352398094312131" tEnd="-7.3312776369710564" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742078" s="1335.9182229817682" t="-7.3312776369710564" orientation="none" validLength="34.459428493553105" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="34.459428493553105" s="1335.9182229817682" distance="0" tStart="-7.3312776369710564" tEnd="-7.3515667849971713" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742079" s="1370.3776514753213" t="-7.3515667849971713" orientation="none" validLength="60.394975033856554" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="60.394975033856554" s="1370.3776514753213" distance="0" tStart="-7.3515667849971713" tEnd="-7.2343426476277317" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742080" s="1430.7726265091778" t="-7.2343426476277317" orientation="none" validLength="150.10264872040852" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="150.10264872040852" s="1430.7726265091778" distance="0" tStart="-7.2343426476277317" tEnd="-6.7343241872322483" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742081" s="1580.8752752295864" t="-6.7343241872322483" orientation="none" validLength="91.940445855221924" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="91.940445855221924" s="1580.8752752295864" distance="0" tStart="-6.7343241872322483" tEnd="-6.8513866297979478" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742082" s="1672.8157210848083" t="-6.8513866297979478" orientation="none" validLength="82.204422058422324" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="82.204422058422324" s="1672.8157210848083" distance="0" tStart="-6.8513866297979478" tEnd="-7.4244250407309851" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742083" s="1755.0201431432306" t="-7.4244250407309851" orientation="none" validLength="2.9204758166335978" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="2.9204758166335978" s="1755.0201431432306" distance="0" tStart="-7.4244250407309851" tEnd="-7.5714565065129236" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742084" s="1757.9406189598642" t="-7.5714565065129236" orientation="none" validLength="0.92800742835470373" length="0" roll="0" pitch="0" hdg="0" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="0.92800742835470373" s="1757.9406189598642" distance="0" tStart="-7.5714565065129236" tEnd="-7.9993197416089084" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5173308" s="1780.9857424973427" t="-7.9015405142129298" orientation="none" validLength="14.714871503646236" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.714871503646236" s="1780.9857424973427" distance="0" tStart="-7.9015405142129298" tEnd="-7.9363239317106604" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273608764" s="1795.7006140009889" t="-7.9363239317106604" orientation="none" validLength="13.487077905210299" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.487077905210299" s="1795.7006140009889" distance="0" tStart="-7.9363239317106604" tEnd="-7.861262276492627" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542044220" s="1809.1876919061992" t="-7.861262276492627" orientation="none" validLength="14.315059380605362" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.315059380605362" s="1809.1876919061992" distance="0" tStart="-7.861262276492627" tEnd="-7.9193101263799779" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810479676" s="1823.5027512868046" t="-7.9193101263799779" orientation="none" validLength="52.078773784362966" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="52.078773784362966" s="1823.5027512868046" distance="0" tStart="-7.9193101263799779" tEnd="-7.8413056351645638" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078915132" s="1875.5815250711676" t="-7.8413056351645638" orientation="none" validLength="51.137945553277405" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="51.137945553277405" s="1875.5815250711676" distance="0" tStart="-7.8413056351645638" tEnd="-7.9047157342157277" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742085" s="1926.719470624445" t="-7.9047157342157277" orientation="none" validLength="6.6594992458451543" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.6594992458451543" s="1926.719470624445" distance="0" tStart="-7.9047157342157277" tEnd="-8.070193217646537" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742086" s="1933.3789698702901" t="-8.070193217646537" orientation="none" validLength="1.997234609723364" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.997234609723364" s="1933.3789698702901" distance="0" tStart="-8.070193217646537" tEnd="-7.9583458782239482" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742087" s="1935.3762044800135" t="-7.9583458782239482" orientation="none" validLength="25.329121987651433" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="25.329121987651433" s="1935.3762044800135" distance="0" tStart="-7.9583458782239482" tEnd="-8.0842446437930437" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742088" s="1960.7053264676649" t="-8.0842446437930437" orientation="none" validLength="16.08576795797353" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.08576795797353" s="1960.7053264676649" distance="0" tStart="-8.0842446437930437" tEnd="-8.0717150214340325" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742089" s="1976.7910944256384" t="-8.0717150214340325" orientation="none" validLength="5.7996984586000053" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.7996984586000053" s="1976.7910944256384" distance="0" tStart="-8.0717150214340325" tEnd="-7.9330545926793752" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5173685" s="1864.1354483218788" t="8.8950158023836803" orientation="none" validLength="116.28772722271037" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="116.28772722271037" s="1864.1354483218788" distance="0" tStart="8.8950158023836803" tEnd="8.766176326203917" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5173709" s="245.50223665432307" t="9.387014016372321" orientation="none" validLength="3.9628346543761381" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.9628346543761381" s="245.50223665432307" distance="0" tStart="9.387014016372321" tEnd="9.2948188001438403" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273609165" s="249.46507130869921" t="9.2948188001438403" orientation="none" validLength="52.137041008921159" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="52.137041008921159" s="249.46507130869921" distance="0" tStart="9.2948188001438403" tEnd="9.2178055395545773" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542044621" s="301.60211231762037" t="9.2178055395545773" orientation="none" validLength="32.956159991321272" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="32.956159991321272" s="301.60211231762037" distance="0" tStart="9.2178055395545773" tEnd="9.0459545988782555" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810480077" s="334.55827230894164" t="9.0459545988782555" orientation="none" validLength="17.398062259729784" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.398062259729784" s="334.55827230894164" distance="0" tStart="9.0459545988782555" tEnd="8.7522727396487685" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078915533" s="351.95633456867142" t="8.7522727396487685" orientation="none" validLength="17.620605035553183" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.620605035553183" s="351.95633456867142" distance="0" tStart="8.7522727396487685" tEnd="8.7607605783954927" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742090" s="369.57693960422461" t="8.7607605783954927" orientation="none" validLength="7.9956149539256671" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.9956149539256671" s="369.57693960422461" distance="0" tStart="8.7607605783954927" tEnd="8.6708913330071749" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742091" s="377.57255455815027" t="8.6708913330071749" orientation="none" validLength="17.324493235333193" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.324493235333193" s="377.57255455815027" distance="0" tStart="8.6708913330071749" tEnd="8.7429554857500431" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742092" s="394.89704779348347" t="8.7429554857500431" orientation="none" validLength="8.9765910185611233" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.9765910185611233" s="394.89704779348347" distance="0" tStart="8.7429554857500431" tEnd="8.6819835435324393" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742093" s="403.87363881204459" t="8.6819835435324393" orientation="none" validLength="7.3920792595174021" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.3920792595174021" s="403.87363881204459" distance="0" tStart="8.6819835435324393" tEnd="8.5152904120354656" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742094" s="411.26571807156199" t="8.5152904120354656" orientation="none" validLength="9.4600510724441733" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.4600510724441733" s="411.26571807156199" distance="0" tStart="8.5152904120354656" tEnd="8.6229991799141192" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742095" s="420.72576914400616" t="8.6229991799141192" orientation="none" validLength="8.7095306360457698" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.7095306360457698" s="420.72576914400616" distance="0" tStart="8.6229991799141192" tEnd="8.5897772975830637" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742096" s="429.43529978005193" t="8.5897772975830637" orientation="none" validLength="25.830477793147963" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="25.830477793147963" s="429.43529978005193" distance="0" tStart="8.5897772975830637" tEnd="8.7064922817970345" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742097" s="455.2657775731999" t="8.7064922817970345" orientation="none" validLength="16.983257584732144" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.983257584732144" s="455.2657775731999" distance="0" tStart="8.7064922817970345" tEnd="8.5731791966304201" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742098" s="472.24903515793204" t="8.5731791966304201" orientation="none" validLength="107.19797064760013" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="107.19797064760013" s="472.24903515793204" distance="0" tStart="8.5731791966304201" tEnd="8.7052288741935193" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742099" s="579.44700580553217" t="8.7052288741935193" orientation="none" validLength="16.610352086599505" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.610352086599505" s="579.44700580553217" distance="0" tStart="8.7052288741935193" tEnd="8.6631835737570579" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742100" s="596.05735789213168" t="8.6631835737570579" orientation="none" validLength="35.532221504262793" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="35.532221504262793" s="596.05735789213168" distance="0" tStart="8.6631835737570579" tEnd="8.7813455146986605" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742101" s="631.58957939639447" t="8.7813455146986605" orientation="none" validLength="18.403021246520666" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.403021246520666" s="631.58957939639447" distance="0" tStart="8.7813455146986605" tEnd="8.7342556761470806" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742102" s="649.99260064291514" t="8.7342556761470806" orientation="none" validLength="15.901816768559684" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.901816768559684" s="649.99260064291514" distance="0" tStart="8.7342556761470806" tEnd="8.7968369054278934" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742103" s="665.89441741147482" t="8.7968369054278934" orientation="none" validLength="10.440201809619907" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.440201809619907" s="665.89441741147482" distance="0" tStart="8.7968369054278934" tEnd="8.7404180336735511" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742104" s="676.33461922109473" t="8.7404180336735511" orientation="none" validLength="8.0005753933869528" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.0005753933869528" s="676.33461922109473" distance="0" tStart="8.7404180336735511" tEnd="8.8367249253116693" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742105" s="684.33519461448168" t="8.8367249253116693" orientation="none" validLength="9.1654677354827072" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.1654677354827072" s="684.33519461448168" distance="0" tStart="8.8367249253116693" tEnd="8.7562749120997214" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742106" s="693.50066234996439" t="8.7562749120997214" orientation="none" validLength="45.927206412385658" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="45.927206412385658" s="693.50066234996439" distance="0" tStart="8.7562749120997214" tEnd="8.7463999745635395" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742107" s="739.42786876235004" t="8.7463999745635395" orientation="none" validLength="136.33497490684363" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="136.33497490684363" s="739.42786876235004" distance="0" tStart="8.7463999745635395" tEnd="8.4316344553865719" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742108" s="875.76284366919367" t="8.4316344553865719" orientation="none" validLength="67.894241933931312" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="67.894241933931312" s="875.76284366919367" distance="0" tStart="8.4316344553865719" tEnd="8.4103429907703617" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742109" s="943.65708560312498" t="8.4103429907703617" orientation="none" validLength="71.637446839363292" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="71.637446839363292" s="943.65708560312498" distance="0" tStart="8.4103429907703617" tEnd="8.5583688107354554" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742110" s="1015.2945324424883" t="8.5583688107354554" orientation="none" validLength="15.553922264804555" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.553922264804555" s="1015.2945324424883" distance="0" tStart="8.5583688107354554" tEnd="8.6855823493085875" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742111" s="1030.8484547072928" t="8.6855823493085875" orientation="none" validLength="169.38508929086493" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="169.38508929086493" s="1030.8484547072928" distance="0" tStart="8.6855823493085875" tEnd="8.9060994481970805" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742112" s="1200.2335439981578" t="8.9060994481970805" orientation="none" validLength="30.957271994180473" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="30.957271994180473" s="1200.2335439981578" distance="0" tStart="8.9060994481970805" tEnd="8.7666872604117767" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742113" s="1231.1908159923382" t="8.7666872604117767" orientation="none" validLength="16.003839859062282" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.003839859062282" s="1231.1908159923382" distance="0" tStart="8.7666872604117767" tEnd="8.9389496836755171" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742114" s="1247.1946558514005" t="8.9389496836755171" orientation="none" validLength="57.652954964587025" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="57.652954964587025" s="1247.1946558514005" distance="0" tStart="8.9389496836755171" tEnd="8.8754647581161521" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742115" s="1304.8476108159875" t="8.8754647581161521" orientation="none" validLength="35.486974327847747" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="35.486974327847747" s="1304.8476108159875" distance="0" tStart="8.8754647581161521" tEnd="8.7233502202000111" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742116" s="1340.3345851438353" t="8.7233502202000111" orientation="none" validLength="7.9941615789132356" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.9941615789132356" s="1340.3345851438353" distance="0" tStart="8.7233502202000111" tEnd="8.8118882432428958" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742117" s="1348.3287467227485" t="8.8118882432428958" orientation="none" validLength="9.1005373727223287" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.1005373727223287" s="1348.3287467227485" distance="0" tStart="8.8118882432428958" tEnd="8.7263892081894738" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742118" s="1357.4292840954708" t="8.7263892081894738" orientation="none" validLength="23.504327055750991" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="23.504327055750991" s="1357.4292840954708" distance="0" tStart="8.7263892081894738" tEnd="8.7041990559311717" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742119" s="1380.9336111512218" t="8.7041990559311717" orientation="none" validLength="7.9957556091146671" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.9957556091146671" s="1380.9336111512218" distance="0" tStart="8.7041990559311717" tEnd="8.7718677952804232" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742120" s="1388.9293667603365" t="8.7718677952804232" orientation="none" validLength="33.163855891836647" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="33.163855891836647" s="1388.9293667603365" distance="0" tStart="8.7718677952804232" tEnd="8.7827075329001207" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742121" s="1422.0932226521732" t="8.7827075329001207" orientation="none" validLength="10.03625027895464" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.03625027895464" s="1422.0932226521732" distance="0" tStart="8.7827075329001207" tEnd="8.9107535824720845" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742122" s="1432.1294729311278" t="8.9107535824720845" orientation="none" validLength="9.950678756350726" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.950678756350726" s="1432.1294729311278" distance="0" tStart="8.9107535824720845" tEnd="8.8440016335165783" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742123" s="1442.0801516874785" t="8.8440016335165783" orientation="none" validLength="8.4974641768510537" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.4974641768510537" s="1442.0801516874785" distance="0" tStart="8.8440016335165783" tEnd="8.9476135111421584" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742124" s="1450.5776158643296" t="8.9476135111421584" orientation="none" validLength="31.316329429057078" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="31.316329429057078" s="1450.5776158643296" distance="0" tStart="8.9476135111421584" tEnd="8.942813589057403" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742125" s="1481.8939452933867" t="8.942813589057403" orientation="none" validLength="12.541445582536426" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.541445582536426" s="1481.8939452933867" distance="0" tStart="8.942813589057403" tEnd="9.0501990267999854" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742126" s="1494.4353908759231" t="9.0501990267999854" orientation="none" validLength="6.8277759630345827" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.8277759630345827" s="1494.4353908759231" distance="0" tStart="9.0501990267999854" tEnd="8.997437659835601" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742127" s="1501.2631668389577" t="8.997437659835601" orientation="none" validLength="16.444219372138832" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.444219372138832" s="1501.2631668389577" distance="0" tStart="8.997437659835601" tEnd="8.6886621745965726" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742128" s="1517.7073862110965" t="8.6886621745965726" orientation="none" validLength="57.854884411426156" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="57.854884411426156" s="1517.7073862110965" distance="0" tStart="8.6886621745965726" tEnd="8.9015432840044557" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742129" s="1575.5622706225226" t="8.9015432840044557" orientation="none" validLength="21.615896620709009" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="21.615896620709009" s="1575.5622706225226" distance="0" tStart="8.9015432840044557" tEnd="8.8667711415186208" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742130" s="1597.1781672432317" t="8.8667711415186208" orientation="none" validLength="30.914946254731149" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="30.914946254731149" s="1597.1781672432317" distance="0" tStart="8.8667711415186208" tEnd="8.9549701958805503" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742131" s="1628.0931134979628" t="8.9549701958805503" orientation="none" validLength="16.010883822914366" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.010883822914366" s="1628.0931134979628" distance="0" tStart="8.9549701958805503" tEnd="8.8252542857304164" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742132" s="1644.1039973208772" t="8.8252542857304164" orientation="none" validLength="8.1271046910555924" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.1271046910555924" s="1644.1039973208772" distance="0" tStart="8.8252542857304164" tEnd="8.8508214174067099" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742133" s="1652.2311020119328" t="8.8508214174067099" orientation="none" validLength="27.50011657988307" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="27.50011657988307" s="1652.2311020119328" distance="0" tStart="8.8508214174067099" tEnd="8.6733694797895442" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742134" s="1679.7312185918158" t="8.6733694797895442" orientation="none" validLength="14.985364421435179" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.985364421435179" s="1679.7312185918158" distance="0" tStart="8.6733694797895442" tEnd="8.470070333576972" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742135" s="1694.716583013251" t="8.470070333576972" orientation="none" validLength="14.571757400879278" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.571757400879278" s="1694.716583013251" distance="0" tStart="8.470070333576972" tEnd="8.4722800534834732" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742136" s="1709.2883404141303" t="8.4722800534834732" orientation="none" validLength="16.789170590137701" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.789170590137701" s="1709.2883404141303" distance="0" tStart="8.4722800534834732" tEnd="8.6433188590930552" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742137" s="1726.077511004268" t="8.6433188590930552" orientation="none" validLength="35.72704938452307" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="35.72704938452307" s="1726.077511004268" distance="0" tStart="8.6433188590930552" tEnd="9.6962214593311966" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742138" s="1761.8045603887911" t="9.6962214593311966" orientation="none" validLength="22.150039321073564" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="22.150039321073564" s="1761.8045603887911" distance="0" tStart="9.6962214593311966" tEnd="9.936349730702231" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742139" s="1783.9545997098646" t="9.936349730702231" orientation="none" validLength="56.256839312952025" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="56.256839312952025" s="1783.9545997098646" distance="0" tStart="9.936349730702231" tEnd="9.9269221467441753" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742140" s="1840.2114390228166" t="9.9269221467441753" orientation="none" validLength="3.9984509054027058" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.9984509054027058" s="1840.2114390228166" distance="0" tStart="9.9269221467441753" tEnd="9.808633727446173" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5174939" s="828.4645962210418" t="10.302768018684013" orientation="none" validLength="91.562157770243971" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="91.562157770243971" s="828.4645962210418" distance="0" tStart="10.302768018684013" tEnd="10.1313216952902" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273610395" s="920.02675399128577" t="10.1313216952902" orientation="none" validLength="20.28949904984438" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="20.28949904984438" s="920.02675399128577" distance="0" tStart="10.1313216952902" tEnd="10.317475675605014" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542045851" s="940.31625304113015" t="10.317475675605014" orientation="none" validLength="12.906285219515098" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.906285219515098" s="940.31625304113015" distance="0" tStart="10.317475675605014" tEnd="10.584991535229969" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810481307" s="953.22253826064525" t="10.584991535229969" orientation="none" validLength="7.9949125001088532" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.9949125001088532" s="953.22253826064525" distance="0" tStart="10.584991535229969" tEnd="10.844373708805984" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078916763" s="961.2174507607541" t="10.844373708805984" orientation="none" validLength="16.479871584828288" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.479871584828288" s="961.2174507607541" distance="0" tStart="10.844373708805984" tEnd="11.60755859990217" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742141" s="977.69732234558239" t="11.60755859990217" orientation="none" validLength="11.093297001872202" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.093297001872202" s="977.69732234558239" distance="0" tStart="11.60755859990217" tEnd="12.251622138991623" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742142" s="988.79061934745459" t="12.251622138991623" orientation="none" validLength="42.708946553319947" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="42.708946553319947" s="988.79061934745459" distance="0" tStart="12.251622138991623" tEnd="15.155205342584495" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742143" s="1031.4995659007745" t="15.155205342584495" orientation="none" validLength="10.410056866172226" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.410056866172226" s="1031.4995659007745" distance="0" tStart="15.155205342584495" tEnd="15.718359045477833" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742144" s="1041.9096227669468" t="15.718359045477833" orientation="none" validLength="14.0440636201281" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.0440636201281" s="1041.9096227669468" distance="0" tStart="15.718359045477833" tEnd="16.314173462296768" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742145" s="1055.9536863870749" t="16.314173462296768" orientation="none" validLength="21.13127643398002" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="21.13127643398002" s="1055.9536863870749" distance="0" tStart="16.314173462296768" tEnd="16.778813767846398" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742146" s="1077.0849628210549" t="16.778813767846398" orientation="none" validLength="72.963342395394193" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="72.963342395394193" s="1077.0849628210549" distance="0" tStart="16.778813767846398" tEnd="16.942181186132828" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742147" s="1150.0483052164491" t="16.942181186132828" orientation="none" validLength="148.26278520201549" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="148.26278520201549" s="1150.0483052164491" distance="0" tStart="16.942181186132828" tEnd="16.926880764780694" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412689" s="1920.4578454796435" t="8.9037693850125219" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848145" s="1870.8323750124703" t="8.8656611853824163" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283601" s="1823.3553782072304" t="9.7669791686039069" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719057" s="1779.1405458561937" t="10.110809379513261" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154513" s="1735.3715753132692" t="8.9289762962064341" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412690" s="1687.6425255225458" t="8.7158563373615383" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848146" s="1636.0869700971639" t="8.7577043487467812" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412691" s="1595.2593999518331" t="9.0695520755503711" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848147" s="1547.7905944602794" t="8.7693997882947503" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283603" s="1495.4733315362271" t="9.2380171500704424" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719059" s="1447.9915186857165" t="8.7318891183690486" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154515" s="1396.3341818373842" t="8.5489020107069962" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742148" s="1348.9491763159763" t="8.4441712331055712" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742149" s="1200.8161846105638" t="8.6512196718691516" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742150" s="1150.5474558185203" t="8.8502526951582148" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742151" s="1100.2506270234694" t="8.924953008781646" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742152" s="1051.7338454060375" t="8.8646290388986735" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742153" s="999.62904665896724" t="8.5902488567696391" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742154" s="952.23861266403867" t="8.4371629819759111" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742155" s="902.06623981416362" t="8.6326990152767635" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742156" s="851.57922758240181" t="8.9341686607581963" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742157" s="804.99295833738188" t="8.8454711445564538" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742158" s="751.23715937178781" t="9.1784750749714625" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742159" s="701.29576690195427" t="9.2339942844773581" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742160" s="651.34779360854304" t="9.2264853185218598" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742161" s="601.82252367453157" t="8.9363440062252764" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742162" s="552.18757086352525" t="8.6565493646405987" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742163" s="501.7083843965363" t="9.0352303700353023" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742164" s="451.69292684574191" t="8.8793602351912639" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742165" s="400.17021042694023" t="8.7821109770541419" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742166" s="351.197704634758" t="9.1918916779907729" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742167" s="301.66977676505081" t="9.6144400343913237" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742168" s="253.69577047130565" t="9.0469143744208207" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8228393" type="B1" subtype="-1" country="FRA" zOffset="2.0891796831336649" s="249.84342350018582" t="-8.3244451556817634" orientation="+" /> - </signals> - </road> - <road name="" length="829.83353634125024" id="33781969" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554597" /> - <successor elementType="junction" elementId="33554492" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="660.79479631654954" y="-254.13038568642784" hdg="3.1844491016353915" length="161.0036568123362"> - <paramPoly3 aU="0" bU="160.76109696756919" cU="0.48730084414051639" dU="-0.30007875753282426" aV="0" bV="-2.6645352591003757e-15" cV="-6.0697572673970734" dV="2.1956172330191595" /> - </geometry> - <geometry s="161.0036568123362" x="499.82827846810233" y="-257.15536487918484" hdg="3.1499389366437924" length="251.50146187283076"> - <paramPoly3 aU="0" bU="251.8906248587534" cU="-1.4934659270750785" dU="0.62652438445536274" aV="0" bV="8.9706020389712648e-14" cV="-23.527089358868043" dV="9.2281159512933471" /> - </geometry> - <geometry s="412.50511868516696" x="248.69399641757002" y="-244.9519798949774" hdg="3.0728546444887881" length="167.50008125637234"> - <paramPoly3 aU="-0" bU="167.51862151727394" cU="0.078422961246289252" dU="-0.098047168877246987" aV="-0" bV="-1.7763568394002505e-15" cV="-2.039310373413779" dV="1.6034142183067561" /> - </geometry> - <geometry s="580.00519994153933" x="81.620491539031889" y="-233.01263013065096" hdg="3.0772256054948781" length="107.99776249904149"> - <paramPoly3 aU="-0" bU="108.53520111621573" cU="-1.9271944299875887" dU="1.3838654644897996" aV="-0" bV="1.3322676295501878e-14" cV="3.6347144284267543" dV="-2.7226496036318388" /> - </geometry> - <geometry s="688.00296244058086" x="-26.206412755923616" y="-226.97648707169844" hdg="3.0689697968510199" length="141.83057390066941"> - <paramPoly3 aU="-0" bU="141.7402334671834" cU="0.15525003111723301" dU="-0.065222244101196078" aV="-0" bV="1.9539925233402755e-14" cV="-0.98564779499154032" dV="0.88691492199649202" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.34877670074601" b="0.015030110940169303" c="5.4316860048866393e-05" d="-1.3655502848758241e-07" /> - <elevation s="10.119921174893296" a="165.50630145375422" b="0.016087520674150556" c="0.00011101476395889351" d="-5.9130237025662387e-06" /> - <elevation s="20.239842349786592" a="165.67434691420709" b="0.016517733972286473" c="1.0201929835764733e-05" d="-1.3655502848748336e-07" /> - <elevation s="30.359763524679888" a="165.84240836131107" b="0.016682264473482741" c="-8.7622104603418167e-06" d="-1.3655502848730035e-07" /> - <elevation s="40.479684699573184" a="166.0101926733237" b="0.016462963764786637" c="-0.00023912558643701933" d="1.1010499353278426e-05" /> - <elevation s="50.599605874466477" a="166.16371843320957" b="0.015005947949487624" c="-9.3728821780494085e-05" d="7.3805075066105378e-06" /> - <elevation s="60.719527049359776" a="166.3136276402702" b="0.015376466792080403" c="8.9693171580282463e-05" d="-3.6369391201847687e-06" /> - <elevation s="70.839448224253076" a="166.47465264311776" b="0.016074435038497113" c="5.6894275129001403e-05" d="-4.305965379826538e-06" /> - <elevation s="80.959369399146368" a="166.63868861745101" b="0.015903008224718015" c="-6.3359808600664278e-05" d="2.9978663376213206e-06" /> - <elevation s="91.079290574039661" a="166.79624396861317" b="0.015541675385557683" c="-0.00014379706656716644" d="1.3671030177643726e-05" /> - <elevation s="99.003399838599066" a="166.91717091821161" b="0.015838021838150248" c="0.00011167383488162648" d="1.3770486641960848e-05" /> - <elevation s="101.19921174893295" a="166.95263247297632" b="0.016527638231376963" c="-3.8904672898279041e-05" d="-3.7098564095987647e-08" /> - <elevation s="111.31913292382626" a="167.11586808311736" b="0.015728815681260225" c="0.00012768823173894364" d="-8.165028920437958e-06" /> - <elevation s="121.43905409871955" a="167.27965705429091" b="0.01580459482777459" c="-5.0312907997731415e-05" d="1.1849274623416134e-06" /> - <elevation s="131.55897527361284" a="167.4356736922245" b="0.015150324735689507" c="7.2472332144051188e-05" d="-9.8373655759042646e-06" /> - <elevation s="141.67889644850615" a="167.58622033988007" b="0.013594736717906506" c="-8.3163077076525422e-05" d="-4.3698154854563875e-06" /> - <elevation s="151.79881762339943" a="167.71075212157248" b="0.01056895397038702" c="-0.00014868965061456312" d="-3.7098564096183126e-08" /> - <elevation s="161.91873879829274" a="167.80244292921685" b="0.0075481007789177943" c="-0.00016595306193105795" d="4.1651182436511104e-06" /> - <elevation s="172.03865997318604" a="167.86615016377442" b="0.0054689212902633566" c="-0.00011354271756346514" d="3.0771112368634843e-06" /> - <elevation s="182.15858114807932" a="167.9130561353459" b="0.0041162413621838277" c="5.5332298707785156e-06" d="-6.0608167377767797e-06" /> - <elevation s="192.27850232297263" a="167.94899735895387" b="0.0023661173418600594" c="-0.00024087286016702202" d="1.0097397815199898e-05" /> - <elevation s="202.39842349786591" a="167.95873885390466" b="0.00059319711356448231" c="6.5638741173568019e-05" d="-8.151462651925912e-06" /> - <elevation s="212.51834467275921" a="167.96301595609768" b="-0.00058272756803067209" c="-5.9348294178447554e-05" d="-4.0265286683197513e-06" /> - <elevation s="222.63826584765252" a="167.94686764118561" b="-0.0030210319669375305" c="-0.00021998415548585187" d="8.498728210215138e-06" /> - <elevation s="232.7581870225458" a="167.90257400422308" b="-0.0048623408191538833" c="0.00014084537148455781" d="-1.306788271429085e-05" /> - <elevation s="235.00234131325382" a="167.89222379650781" b="-0.0044276218590300542" c="0.00016555065067527807" d="-1.308754838230987e-05" /> - <elevation s="242.8781081974391" a="167.86122813230838" b="-0.0042553169265243176" c="-5.3638829069951028e-06" d="-6.9297455829699919e-07" /> - <elevation s="252.99802937233241" a="167.81689712472357" b="-0.0045767894750105452" c="-0.00014082353514205051" d="6.3321419933627275e-06" /> - <elevation s="263.11795054722569" a="167.76272093499549" b="-0.0054815583636930792" c="-6.54452584671409e-05" d="5.1022511992486329e-06" /> - <elevation s="273.237871722119" a="167.70583358563667" b="-0.0052385525125562106" c="-4.6852555373394379e-05" d="8.2537360032964765e-06" /> - <elevation s="283.3577928970123" a="167.65657579602569" b="-0.0036509760897669272" c="0.00019437568098123957" d="-1.0786439388978794e-05" /> - <elevation s="293.47771407190561" a="167.62835559605978" b="-0.0030308514780426157" c="-4.5575383117090261e-05" d="3.6662151268788015e-06" /> - <elevation s="303.59763524679886" a="167.59681581542623" b="-0.0028268879272852383" c="0.00027918971187080997" d="-1.5655285041793664e-05" /> - <elevation s="313.71755642169217" a="167.58057524754153" b="-0.0019860371165102537" c="-7.0805750264727729e-05" d="3.160702671451387e-06" /> - <elevation s="323.83747759658547" a="167.55650107531267" b="-0.0024480450641887973" c="-1.9363148028893929e-05" d="1.1245761993500312e-06" /> - <elevation s="333.95739877147878" a="167.53090953940259" b="-0.0024944391200507066" c="3.112311934673196e-05" d="-2.8531765166696295e-06" /> - <elevation s="344.07731994637209" a="167.50589635879712" b="-0.0027411175181928714" c="-0.00031560269189199834" d="1.7054754785989277e-05" /> - <elevation s="354.19724112126534" a="167.46351041881627" b="-0.0038889904397734557" c="0.00014535664047636091" d="-1.1553714818648706e-05" /> - <elevation s="364.31716229615864" a="167.42706614342171" b="-0.004496739965933097" c="-0.0005282768116790838" d="4.0339876397408713e-05" /> - <elevation s="374.43708347105195" a="167.36926581105945" b="-0.0027950197158255058" c="2.7768706966095919e-06" d="-4.2729781728659036e-07" /> - <elevation s="379.00522261791821" a="167.35651498631509" b="-0.002796399870663551" c="-1.0263649451518697e-05" d="-3.3101115071023743e-07" /> - <elevation s="384.55700464594526" a="167.34061699249" b="-0.0029409705185693222" c="-0.00023262760321447225" d="7.6799603522359659e-06" /> - <elevation s="394.67692582083856" a="167.29499014133833" b="-0.0052897376974924137" c="-0.00025632267306514373" d="1.7780393881242898e-05" /> - <elevation s="404.79684699573181" a="167.23363545828119" b="-0.0050148481789384549" c="7.8683266166903763e-05" d="3.9522437495824611e-08" /> - <elevation s="414.91676817062512" a="167.19098472539849" b="-0.003410168465149951" c="0.00075482272329524687" d="-4.1655269065228451e-05" /> - <elevation s="425.03668934551843" a="167.19060568440727" b="-0.00093077433588776605" c="-0.00026248274565781248" d="1.7293545563701415e-05" /> - <elevation s="435.15661052041173" a="167.17222792243703" b="-0.00093014222029490917" c="0.00023115065275578899" d="-1.4112247730303546e-05" /> - <elevation s="445.27653169530504" a="167.17186167536576" b="-0.00058751405668815235" c="-0.00010166032444764108" d="4.7412657683722144e-06" /> - <elevation s="455.39645287019835" a="167.16041865341157" b="-0.0011884040228560115" c="2.7275328777862444e-05" d="-3.1792000229049516e-06" /> - <elevation s="465.5163740450916" a="167.14789048815547" b="-0.0016131280404106962" c="-4.7557112670586096e-05" d="1.1152124503309938e-06" /> - <elevation s="475.6362952199849" a="167.12785111904375" b="-0.0022330403992313532" c="-2.1666010374985971e-05" d="-2.4895946980651969e-07" /> - <elevation s="485.75621639487821" a="167.10277602537445" b="-0.0027480469461633383" c="1.5758279269027666e-05" d="-4.116955205496389e-06" /> - <elevation s="495.87613756977152" a="167.07231300494374" b="-0.0036939886449044246" c="-2.0459348793829385e-05" d="3.9522437495856295e-08" /> - <elevation s="505.99605874466482" a="167.03287579317646" b="-0.0040959398280667443" c="-0.0001810041003232893" d="9.9403705726242558e-06" /> - <elevation s="516.11597991955807" a="166.98319036201516" b="-0.0047053705963737077" c="3.2510112118864267e-05" d="-1.1386206523202034e-06" /> - <elevation s="526.23590109445138" a="166.93772175696867" b="-0.004397199055405151" c="5.4208448613165001e-05" d="-4.3423175269681199e-06" /> - <elevation s="536.35582226934469" a="166.89427366921328" b="-0.0046341553504681329" c="-8.5929732743415094e-05" d="5.2421640609053173e-06" /> - <elevation s="546.47574344423799" a="166.84400910611095" b="-0.0047627654236215549" c="3.936251812652904e-05" d="-1.8173806379969837e-06" /> - <elevation s="556.5956646191313" a="166.79795797075028" b="-0.0045244434066629815" c="1.1051328634012295e-05" d="-7.5814624178445735e-07" /> - <elevation s="566.71558579402461" a="166.75251700769968" b="-0.0045336979060774567" c="-0.00021899684820797391" d="2.1294962738349324e-05" /> - <elevation s="576.83550696891791" a="166.70627856272986" b="-0.0024235290161373924" c="0.00011932871159690128" d="-6.9883890221544328e-06" /> - <elevation s="586.95542814381122" a="166.68673059530366" b="-0.0021554362635046332" c="-8.901261591509629e-05" d="6.8154878886754625e-06" /> - <elevation s="597.07534931870441" a="166.66286535504122" b="-0.0018630578888637036" c="0.00020893633210704155" d="-9.0771861550939486e-06" /> - <elevation s="607.19527049359772" a="166.65600142976012" b="-0.00042307974155313273" c="6.4009607466787366e-05" d="-3.7543932959252682e-06" /> - <elevation s="617.31519166849102" a="166.65438421063095" b="-0.00028102921841799129" c="1.9612594556306753e-05" d="-3.0426509339276157e-06" /> - <elevation s="627.43511284338433" a="166.6503953655438" b="-0.00081889264308777508" c="1.7592116365828303e-05" d="3.9522437668315009e-08" /> - <elevation s="635.00550471783572" a="166.6452213935988" b="-0.00054573902202993522" c="-1.7167237401461398e-05" d="5.9924302832393635e-08" /> - <elevation s="637.55503401827764" a="166.64371942029507" b="-0.00063210722973500752" c="-0.00023025633188583235" d="1.1932849441039974e-05" /> - <elevation s="647.67495519317094" a="166.6261086668726" b="-0.0016262293532643092" c="4.1419757112218579e-05" d="-2.8601249540588769e-06" /> - <elevation s="657.79487636806425" a="166.61092900679509" b="-0.0016666402531817326" c="-2.5766372048361774e-05" d="1.0385959782035426e-06" /> - <elevation s="667.91479754295756" a="166.59250034312905" b="-0.0018690509804876632" c="-7.0429373358228285e-06" d="3.4688438111317536e-07" /> - <elevation s="678.03471871785086" a="166.57322392184093" b="-0.0019050227148334515" c="-1.113579913305883e-05" d="1.2180535019771925e-06" /> - <elevation s="688.15463989274417" a="166.55406719594271" b="-0.0017561767079054059" c="5.99212268038069e-05" d="-3.1677385257218792e-06" /> - <elevation s="698.27456106763748" a="166.53914845264842" b="-0.0015166314838339571" c="-9.7467274892324744e-06" d="6.686103826686637e-07" /> - <elevation s="708.39448224253067" a="166.52349502604184" b="-0.0015084809182489981" c="-2.7751991313726489e-05" d="3.2362594964308195e-06" /> - <elevation s="718.51440341742398" a="166.50874124891004" b="-0.0010758736131382795" c="7.5224027238709467e-05" d="-3.583207563848455e-06" /> - <elevation s="728.63432459231728" a="166.50184372595828" b="-0.00065425016899379454" c="2.936240005546931e-05" d="-2.5147498813050714e-06" /> - <elevation s="738.75424576721059" a="166.49562354086694" b="-0.00083258758539042307" c="-3.400072522586575e-05" d="1.351575999501032e-06" /> - <elevation s="748.8741669421039" a="166.48511649672224" b="-0.0011055008375800632" c="-3.9096508285864136e-06" d="-1.5044887949951482e-07" /> - <elevation s="758.9940881169972" a="166.47337259043144" b="-0.0012308552290824881" c="-6.5602956848378872e-06" d="8.0874315279489921e-08" /> - <elevation s="769.11400929189051" a="166.46032839316487" b="-0.0013387868831713436" c="8.1733163923138472e-07" d="-4.4742299985996549e-07" /> - <elevation s="779.23393046678382" a="166.44639996721074" b="-0.0014597097524017013" c="-6.618882953854175e-05" d="3.087622933290055e-06" /> - <elevation s="789.35385164167712" a="166.42804927768336" b="-0.0018507248552713262" c="-1.8679295431216412e-05" d="1.6004399105874357e-06" /> - <elevation s="799.47377281657043" a="166.40906580014183" b="-0.0017370742305601007" c="-3.36634571003311e-06" d="1.8075793166304756e-06" /> - <elevation s="809.59369399146362" a="166.39301538134157" b="-0.001249850735042453" c="4.3340106773207004e-05" d="-8.8029081291767336e-07" /> - <elevation s="819.71361516635693" a="166.38389323053846" b="-0.00064311295953653415" c="2.6129588718722992e-05" d="5.9924302829381163e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028184898499840075" b="7.914660801911565e-05" c="-3.9104359930921524e-06" d="0" /> - <superelevation s="10.119921174893296" a="0.028585377217046889" b="0" c="-2.8215112763443877e-05" d="1.8587175582252085e-06" /> - <superelevation s="20.239842349786592" a="0.02762218094044154" b="0" c="3.4052201129306452e-05" d="-2.2432454786167882e-06" /> - <superelevation s="30.359763524679888" a="0.028784641413768429" b="0" c="-8.1977949898147449e-06" d="5.4004340206080152e-07" /> - <superelevation s="40.479684699573184" a="0.028504788354992285" b="0" c="4.1798167980373245e-05" d="-2.2956084506220568e-06" /> - <superelevation s="50.599605874466477" a="0.030406265535624553" b="0.00014068923145370277" c="-9.1549216560795604e-08" d="-4.5188454153571202e-07" /> - <superelevation s="60.719527049359776" a="0.031352316219927866" b="0" c="-1.6897739349885749e-05" d="1.1131667304423761e-06" /> - <superelevation s="70.839448224253076" a="0.03077546792726589" b="0" c="3.4264005486782047e-06" d="-2.2571984435207496e-07" /> - <superelevation s="80.959369399146368" a="0.030892437023874335" b="0" c="-4.9083375098464412e-05" d="3.1134595857120855e-06" /> - <superelevation s="91.079290574039661" a="0.029092490044222992" b="-3.6865389574039708e-05" c="5.4642801465934331e-06" d="-3.5996855786781143e-07" /> - <superelevation s="101.19921174893295" a="0.028905952625937485" b="-3.6865389574039708e-05" c="-3.6135310337024293e-05" d="2.5004632873177555e-06" /> - <superelevation s="111.31913292382626" a="0.02742366324282278" b="0" c="1.0731235618655188e-05" d="-5.9852681149343547e-07" /> - <superelevation s="121.43905409871955" a="0.027902360299954441" b="3.330808898502192e-05" c="-8.5721928708841838e-07" d="-5.1940463954223715e-08" /> - <superelevation s="131.55897527361284" a="0.028097813712852287" b="0" c="-2.961813767619795e-06" d="1.5532462083693469e-07" /> - <superelevation s="141.67889644850615" a="0.027955465972376345" b="-1.222495360252579e-05" c="1.3899408482299338e-06" d="-1.1936938600537645e-07" /> - <superelevation s="151.79881762339943" a="0.027850382579203709" b="-2.0767630766401472e-05" c="-1.2545132001826674e-05" d="7.0071954285329291e-07" /> - <superelevation s="161.91873879829274" a="0.027081666038502334" b="-5.9391163905047494e-05" c="7.5060588742636116e-06" d="-5.7991931912325657e-07" /> - <superelevation s="172.03865997318604" a="0.026648314784795211" b="-8.5643207336877708e-05" c="-5.689238696340784e-05" d="4.0266323967975737e-06" /> - <superelevation s="182.15858114807932" a="0.024128343477013175" b="0" c="1.3215571631048035e-05" d="-8.7059779766103206e-07" /> - <superelevation s="192.27850232297263" a="0.024579491395327682" b="0" c="-9.3254752995280981e-06" d="4.6658968621253668e-07" /> - <superelevation s="202.39842349786591" a="0.024108021303728615" b="-4.5391874831417933e-05" c="-4.1307188882384372e-06" d="4.198595232371829e-07" /> - <superelevation s="212.51834467275921" a="0.023660767004778538" b="0" c="1.0634378983305194e-05" d="-7.0055743185617452e-07" /> - <superelevation s="222.63826584765252" a="0.024023799197015631" b="0" c="-5.9533698570823658e-05" d="3.9218815734469078e-06" /> - <superelevation s="232.7581870225458" a="0.021991461517676041" b="0" c="2.7979214965128113e-05" d="-1.3864078886688458e-06" /> - <superelevation s="242.8781081974391" a="0.023420005072216692" b="0.00014033713942856508" c="6.9478866496340909e-07" d="-7.6705221866647324e-08" /> - <superelevation s="252.99802937233241" a="0.024831863095530222" b="0.00013083276178056525" c="1.0355100415397411e-05" d="-1.1079941389502707e-06" /> - <superelevation s="263.11795054722569" a="0.026068039544842516" b="0" c="-3.5151798951729383e-05" d="1.721634917760926e-06" /> - <superelevation s="273.237871722119" a="0.024252364028968076" b="-0.00018251448789086759" c="1.7728989292044826e-05" d="-1.7821451978449338e-06" /> - <superelevation s="283.3577928970123" a="0.022373975083379318" b="-0.00037122600327142604" c="-8.9306334146830392e-05" d="5.0859385586864865e-06" /> - <superelevation s="293.47771407190561" a="0.014742200132952212" b="-0.00061617643199833052" c="6.0273063603416876e-05" d="-4.6088109102513611e-06" /> - <superelevation s="303.59763524679886" a="0.0099026612400791164" b="-0.00081226288010344131" c="-7.4250737095419547e-05" d="4.0753474006982692e-06" /> - <superelevation s="313.71755642169217" a="-0.001697872506925056" b="-0.0010629828223662015" c="1.3459955820607638e-06" d="6.8060374327351945e-07" /> - <superelevation s="323.83747759658547" a="-0.011611943505144027" b="-0.00082663246950055876" c="9.4224594804208817e-06" d="5.6313171512728927e-07" /> - <superelevation s="333.95739877147878" a="-0.018428783370831155" b="-0.00046290768017696752" c="4.7577900110303792e-05" d="-2.6440663945017096e-06" /> - <superelevation s="344.07731994637209" a="-0.020981121974431291" b="-0.00031229724752849147" c="-4.2280480026546055e-05" d="3.5912229474603484e-06" /> - <superelevation s="354.19724112126534" a="-0.024749630427080085" b="-6.4685855909465408e-05" c="7.3094436287098747e-06" d="-4.064732488129325e-07" /> - <superelevation s="364.31716229615864" a="-0.025076938308547233" b="-4.1628065400137327e-05" c="-6.8660097776980705e-06" d="5.878009154642767e-07" /> - <superelevation s="374.43708347105195" a="-0.025592175908105471" b="0" c="3.13266436030684e-05" d="-1.5213856662684585e-06" /> - <superelevation s="384.55700464594526" a="-0.023960705050905522" b="0.00016661820905533107" c="-1.9679823864380438e-06" d="2.4723709876467391e-07" /> - <superelevation s="394.67692582083856" a="-0.022219849624221782" b="0.00020274728985329653" c="2.9142645775268993e-05" d="-2.5797224907699785e-06" /> - <superelevation s="404.79684699573181" a="-0.019857131867428324" b="0" c="-6.8116156078443243e-05" d="3.2999290357790098e-06" /> - <superelevation s="414.91676817062512" a="-0.023413020614991516" b="-0.00036479529803390502" c="2.0414068080378168e-06" d="-3.327614295242754e-07" /> - <superelevation s="425.03668934551843" a="-0.027240531189577984" b="-0.0004257146398343745" c="-5.614788787369546e-05" d="5.0844522322689894e-06" /> - <superelevation s="435.15661052041173" a="-0.032029417811235444" b="0" c="9.7563531585017759e-05" d="-6.2107998085115021e-06" /> - <superelevation s="445.27653169530504" a="-0.028474594900743919" b="6.6474217032618413e-05" c="-6.5859739319561432e-06" d="3.2625245124416635e-07" /> - <superelevation s="455.39645287019835" a="-0.028138237982477495" b="3.3412428534989881e-05" c="3.3536218320780574e-06" d="-3.2967624223181656e-07" /> - <superelevation s="465.5163740450916" a="-0.027798332614672214" b="0" c="-1.1691550601446654e-05" d="5.7924351784622857e-07" /> - <superelevation s="475.6362952199849" a="-0.028395363611392076" b="-5.8669281395061769e-05" c="-5.7006643321880728e-06" d="5.6649761544661107e-07" /> - <superelevation s="485.75621639487821" a="-0.028985789620883533" b="0" c="3.6712938563074716e-05" d="-2.4185259897186113e-06" /> - <superelevation s="495.87613756977152" a="-0.027732497953270208" b="0" c="-5.655503550934893e-06" d="8.0628974240060306e-08" /> - <superelevation s="505.99605874466482" a="-0.028228129297607225" b="-8.9694182131116557e-05" c="-2.09338879811772e-05" d="1.6709914895028385e-06" /> - <superelevation s="516.11597991955807" a="-0.029547894059297045" b="0" c="1.84589845641588e-05" d="-1.0293441533482661e-06" /> - <superelevation s="526.23590109445138" a="-0.028724279749566033" b="5.7352872629758996e-05" c="-8.0421028704371089e-06" d="5.6001661961681116e-07" /> - <superelevation s="536.35582226934469" a="-0.028387080958963331" b="6.6640596260623895e-05" c="2.1301311334832716e-05" d="-1.6201612729102935e-06" /> - <superelevation s="546.47574344423799" a="-0.027210306893106086" b="0" c="-6.6626341470549706e-06" d="4.3891212404463655e-07" /> - <superelevation s="556.5956646191313" a="-0.027437753242749659" b="0" c="7.2065764689369763e-06" d="-4.7474523067866714e-07" /> - <superelevation s="566.71558579402461" a="-0.027191738006867094" b="0" c="-1.9820762197638456e-05" d="1.3057257301444934e-06" /> - <superelevation s="576.83550696891791" a="-0.02786837128876489" b="0" c="2.3061106289046929e-05" d="-1.5191887954133922e-06" /> - <superelevation s="586.95542814381122" a="-0.027081120431458761" b="0" c="-2.4075972889956177e-06" d="1.5860448234641481e-07" /> - <superelevation s="597.07534931870441" a="-0.027163310028352036" b="0" c="7.6229631014239943e-05" d="-5.0217539377256193e-06" /> - <superelevation s="607.19527049359772" a="-0.02456101326010925" b="0" c="-4.9677306541756848e-05" d="3.2725753282876178e-06" /> - <superelevation s="617.31519166849102" a="-0.026256877355850066" b="0" c="1.2886345237823018e-05" d="-8.4890946053302052e-07" /> - <superelevation s="627.43511284338433" a="-0.0258169684369602" b="0" c="-5.6803591224559515e-06" d="3.7420312037926778e-07" /> - <superelevation s="637.55503401827764" a="-0.02601088227322243" b="0" c="1.4647802712451288e-05" d="-9.6494840617212526e-07" /> - <superelevation s="647.67495519317094" a="-0.025510841420953983" b="0" c="-2.6145932055958328e-06" d="1.6197664945118874e-07" /> - <superelevation s="657.79487636806425" a="-0.025610735104148418" b="-3.1535054468378219e-06" c="1.5580681866673223e-07" d="0" /> - <superelevation s="667.91479754295756" a="-0.025626691717421716" b="0" c="5.0630143475407747e-06" d="-3.3353450486694159e-07" /> - <superelevation s="678.03471871785086" a="-0.025453852551091356" b="0" c="-8.4452972794493309e-06" d="5.5634802771662261e-07" /> - <superelevation s="688.15463989274417" a="-0.025742154744408483" b="0" c="2.4493924017773447e-06" d="-1.613578050294252e-07" /> - <superelevation s="698.27456106763748" a="-0.025658538362609219" b="0" c="-3.6311903931829675e-05" d="2.0815267469825918e-06" /> - <superelevation s="708.39448224253067" a="-0.027220028168837489" b="-9.542223506271942e-05" c="4.7145740274861076e-06" d="-1.0461136860739839e-22" /> - <superelevation s="718.51440341742398" a="-0.02770286091742092" b="0" c="2.9559856958820491e-05" d="-1.6453945341087248e-06" /> - <superelevation s="728.63432459231728" a="-0.026380855605481698" b="9.2758438062852562e-05" c="-6.4284481435425661e-06" d="2.6539526172050311e-07" /> - <superelevation s="738.75424576721059" a="-0.025825444754416338" b="4.4187280313713602e-05" c="1.1956963988015349e-06" d="-2.2258931130107381e-07" /> - <superelevation s="748.8741669421039" a="-0.025486512018066305" b="0" c="-1.4467220276393013e-05" d="8.0525142584588005e-07" /> - <superelevation s="758.9940881169972" a="-0.026133570385681242" b="-4.5410086880446062e-05" c="1.0056272178112652e-06" d="8.1553443213038125e-08" /> - <superelevation s="769.11400929189051" a="-0.026405605017616646" b="0" c="1.1096487824956323e-05" d="-7.309996216496032e-07" /> - <superelevation s="779.23393046678382" a="-0.02602679753788039" b="0" c="-1.6432267258384926e-06" d="1.4148153570821659e-08" /> - <superelevation s="789.35385164167712" a="-0.026180421714538608" b="-2.8911793615217916e-05" c="-6.9275298390286633e-06" d="5.5046471358143641e-07" /> - <superelevation s="799.47377281657043" a="-0.026611967682701968" b="0" c="1.1184186227843937e-05" d="-6.2844710693390674e-07" /> - <superelevation s="809.59369399146362" a="-0.026117892362072192" b="3.3283073796936267e-05" c="-1.317585523628145e-06" d="-2.1531651707942605e-08" /> - <superelevation s="819.71361516635693" a="-0.025938323516135672" b="0" c="-1.5444820021441493e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-3.6903153136327158" b="0.0011219134238446414" c="-0.00022746296468332408" d="4.7113501780946405e-05" /> - <laneOffset s="2.457955920830897" a="-3.6882322993888352" b="0.00085764089188970153" c="-4.4375247138487783e-05" d="2.6724477107476735e-06" /> - <laneOffset s="10.119921174893296" a="-3.6830640951542146" b="0.000648301521813149" c="1.9027781246883561e-05" d="2.3430118374882005e-06" /> - <laneOffset s="19.740416978935276" a="-3.67297976458357" b="0.0016649798287787026" c="0.0003996421057345308" d="-5.740811984501346e-05" /> - <laneOffset s="25.940594749121413" a="-3.6609766094660148" b="-0" c="-1.0869785842076657e-05" d="1.1421288053636884e-06" /> - <laneOffset s="30.359763524679888" a="-3.6610903178807312" b="-2.9156755603927246e-05" c="-1.9877714061313592e-06" d="-1.1697866757414118e-07" /> - <laneOffset s="37.831721412823981" a="-3.6614679524028566" b="-7.8454655395477694e-05" c="-0.0048938534051130231" d="0.00056823027187891193" /> - <laneOffset s="40.479684699573184" a="-3.6854397870710289" b="-0.014043146047905793" c="-0.00038947836584273351" d="0.00057235147019426213" /> - <laneOffset s="42.653471949611045" a="-3.7119278793729915" b="-0.0076227474690038653" c="0.0012486186745326868" d="-0.00014306349645126131" /> - <laneOffset s="47.301577334049462" a="-3.7347496421305215" b="-0.0052879356931385471" c="0.00038548245055685824" d="-5.9324042352016964e-05" /> - <laneOffset s="50.599605874466477" a="-3.7501246248117877" b="-0.0046810728929157584" c="-0.00023295260100473128" d="-6.2097584064510012e-05" /> - <laneOffset s="55.055479990715078" a="-3.7811019345133841" b="-0.010455895793580887" c="-0.0014406186398055235" d="9.2577332639188131e-05" /> - <laneOffset s="60.719527049359776" a="-3.8697194309135932" b="-0.017865319937274225" c="0.00013318515464270402" d="9.1242407220615198e-05" /> - <laneOffset s="64.356619854353966" a="-3.9285454720224449" b="-0.013275521159132019" c="0.00070018937161377506" d="-0.00013247221418784364" /> - <laneOffset s="67.528686867124506" a="-3.9678391672275639" b="-0.012832235829636015" c="-0.0017891341558150576" d="0.00087801191361456252" /> - <laneOffset s="69.414790256920725" a="-3.9925156247239446" b="-0.010210937961724738" c="0.00024527131243863641" d="0.00054460759826317827" /> - <laneOffset s="71.769116810952909" a="-4.0080890453277718" b="-0" c="0.0038320620514356563" d="-0.00035214734075993668" /> - <laneOffset s="78.487002181449611" a="-3.9419114938315096" b="0.0038094957832036356" c="-0.0014354531626213569" d="0.00025526029005620003" /> - <laneOffset s="80.959369399146368" a="-3.9374097274884492" b="0.0013924729855654696" c="0.00047354851801777994" d="0.0002438605202313196" /> - <laneOffset s="81.964354221812258" a="-3.9352845063427897" b="0.0030831844804310158" c="0.00072370837221409428" d="-4.7122468385608565e-05" /> - <laneOffset s="90.067606828618338" a="-3.8878530280397392" b="0.0055294020760615244" c="-0.00035014652511867843" d="8.6109148267493804e-06" /> - <laneOffset s="91.079290574039661" a="-3.8826084819286009" b="0.0048473668974292955" c="-0.00029665349219146745" d="2.6191419298716411e-05" /> - <laneOffset s="101.19921174893295" a="-3.8367895911123959" b="0.0068901571023730172" c="0.00051625788285020299" d="1.9972729593817983e-05" /> - <laneOffset s="103.02544165767443" a="-3.8223631527117865" b="0.008975602365838593" c="0.00048275621142961176" d="-3.6990262100228263e-05" /> - <laneOffset s="107.76885264707556" a="-3.7728740334467612" b="0.011058587702146934" c="0.00025717993791943375" d="-1.9678040369997137e-05" /> - <laneOffset s="111.31913292382626" a="-3.7312519075966417" b="0.012140614432733291" c="5.443110519661331e-05" d="-1.7177813875881638e-05" /> - <laneOffset s="113.99770718703763" a="-3.6986719655374309" b="0.012062469867772143" c="0.00012552880510469154" d="-1.3777994923831833e-05" /> - <laneOffset s="121.35438506901221" a="-3.6086242420205772" b="0.011672395255294503" c="-0.00028961703258053673" d="2.0844388812558222e-05" /> - <laneOffset s="131.4990663054981" a="-3.4982550422294465" b="0.012231823449044466" c="0.00066825070603447449" d="-0.0001096308632870412" /> - <laneOffset s="136.37848494279717" a="-3.43539677486035" b="0.01092265971415253" c="-0.00041593942458414599" d="3.3702353751455254e-06" /> - <laneOffset s="140.80430598058902" a="-3.3949102400339628" b="0.0074389602208084988" c="-0.00021450305496139348" d="-1.6487521614024376e-08" /> - <laneOffset s="151.79881762339943" a="-3.3390733935210388" b="0.002716268550890545" c="-0.00021162728370803128" d="-3.317305548633698e-07" /> - <laneOffset s="158.12237248476177" a="-3.3304432158660693" b="-0" c="-0.0010337097834520184" d="5.1954987802200243e-05" /> - <laneOffset s="161.91873879829274" a="-3.3424987482342674" b="-0.0056022942396513889" c="-0.00043484679805665252" d="5.2892214928980654e-05" /> - <laneOffset s="170.0701750589788" a="-3.3884112946384302" b="-0.0021481316022754198" c="0.00012636427559642213" d="-6.1113791925867875e-06" /> - <laneOffset s="172.03865997318604" a="-3.3921968222612513" b="-0.0017216828139752717" c="0.00010603610362848051" d="-3.350928511168312e-06" /> - <laneOffset s="182.15858114807932" a="-3.402233596042215" b="-0.00060506275353760272" c="7.8920917222024363e-06" d="-2.1015731621306842e-06" /> - <laneOffset s="184.39301381705948" a="-3.4035696100523296" b="-0.00060127156424493659" c="0.00010394081408610132" d="-9.4355991243538816e-06" /> - <laneOffset s="191.97126540562888" a="-3.4062634315315652" b="-0.00065154874680219978" c="1.5129184898947196e-06" d="-2.5336476688783531e-06" /> - <laneOffset s="202.39842349786591" a="-3.4157651348721934" b="-0.0014464151519311408" c="-7.4338662162644396e-05" d="-2.7307080142169324e-06" /> - <laneOffset s="208.22982605135289" a="-3.4272691639538619" b="-0.0025919877537783054" c="-0.00039745124132781266" d="1.0317944811757408e-05" /> - <laneOffset s="212.51834467275921" a="-3.4448808381117204" b="-0.0054316577508938405" c="-0.00026494647780314921" d="1.0883305050358023e-05" /> - <laneOffset s="216.65853509005876" a="-3.4711380663578826" b="-0.007065857523323324" c="-0.00057823970277682808" d="3.0828589792412226e-05" /> - <laneOffset s="222.63826584765252" a="-3.5274744960881095" b="-0.010674262698343573" c="-1.74161395554854e-05" d="2.9538289212406181e-05" /> - <laneOffset s="228.26757787096005" a="-3.582845873843747" b="-0.0080622142914793336" c="0.00015201943735288425" d="-2.2642475016100498e-06" /> - <laneOffset s="232.7581870225458" a="-3.6161896089415242" b="-0.0068338740665129082" c="0.00012641238057620053" d="2.405927906484459e-09" /> - <laneOffset s="237.3516736906987" a="-3.6449133687972162" b="-0.0056723746006785893" c="0.00021394549079020137" d="-5.9151483817166157e-06" /> - <laneOffset s="242.8781081974391" a="-3.6707255551071287" b="-0.0038496352437909207" c="0.00010325328323571668" d="-6.5041983720919962e-06" /> - <laneOffset s="250.99122217709396" a="-3.6986350968341926" b="-0.0034585940357081684" c="-3.623920069070886e-05" d="8.4429689218036468e-06" /> - <laneOffset s="252.99802937233241" a="-3.7056535376850612" b="-0.0035020377370958899" c="-7.133567571050866e-06" d="2.5923076309737966e-06" /> - <laneOffset s="263.11795054722569" a="-3.739137759916793" b="-0.0028499635356121242" c="7.3270069597889865e-05" d="2.0216480195809474e-06" /> - <laneOffset s="273.03738546498022" a="-3.7582251870237173" b="-0.00079960684455570013" c="7.7926109871125828e-05" d="-8.003070353990784e-07" /> - <laneOffset s="278.6538861022679" a="-3.7603997868171049" b="-0" c="0.00075937653962596444" d="-0.00010292436017655531" /> - <laneOffset s="283.57255672163274" a="-3.754275840108364" b="-0" c="-1.5765945984730595e-05" d="1.8121637517558572e-06" /> - <laneOffset s="289.37260136237683" a="-3.754452631637391" b="-0" c="0.00062213165446182636" d="-3.6605184561236654e-05" /> - <laneOffset s="293.47771407190561" a="-3.7465008156386359" b="0.0032572348642554683" c="0.00022199013319114126" d="-3.2954663249573464e-05" /> - <laneOffset s="298.0268947907756" a="-3.7301915030247894" b="0.0032309865938599312" c="6.3057104390981539e-05" d="-9.9623651187080204e-07" /> - <laneOffset s="303.89566102764468" a="-3.7092591326617761" b="0.0038681830238040558" c="-8.3620370981116858e-06" d="5.736314172295688e-06" /> - <laneOffset s="313.71755642169217" a="-3.6666376847915378" b="0.005364061218837461" c="0.00014610943363064548" d="1.5136351501114716e-05" /> - <laneOffset s="315.17285994767627" a="-3.6584752479413387" b="0.0058855005825439993" c="0.00043842129752814533" d="-3.5211274459857353e-05" /> - <laneOffset s="324.19109110126675" a="-3.595567626973168" b="0.0052020301100419043" c="-0.00031163933322663498" d="8.7615929206819444e-06" /> - <laneOffset s="333.95739877147878" a="-3.5663258179209829" b="0.0016219612087447037" c="-9.0909423526708136e-05" d="1.3826398075675412e-05" /> - <laneOffset s="336.80090946283781" a="-3.5621309192018509" b="0.0014403395987280531" c="-6.005136178888963e-05" d="-6.9429560938780955e-06" /> - <laneOffset s="342.71914941474" a="-3.5571491799046271" b="-0" c="-8.7834522305816517e-05" d="2.279616264740473e-05" /> - <laneOffset s="344.07731994637209" a="-3.5572540902096121" b="-0.00011243725516691228" c="-4.8514055023040889e-05" d="1.5073442655240825e-06" /> - <laneOffset s="354.19724112126534" a="-3.5617981808745758" b="-0.00063124001945472226" c="-1.7239693428047156e-05" d="2.4534116288082341e-06" /> - <laneOffset s="356.58415026628757" a="-3.5633697497652137" b="-0.00067160545746803831" c="6.5763774612342951e-05" d="-1.0569078075770602e-05" /> - <laneOffset s="364.52656334479042" a="-3.5698507603445502" b="-0.0016271127179641803" c="-0.00235551574307835" d="0.00041201337920519429" /> - <laneOffset s="367.86696045255178" a="-3.5862124303541099" b="-0.0035717802960321542" c="0.00073422926509775959" d="-8.7792910473199034e-05" /> - <laneOffset s="371.74227936744023" a="-3.5941370318525916" b="-0.0018364824333361454" c="0.00010724454966253293" d="-2.6028834854520181e-06" /> - <laneOffset s="374.43708347105195" a="-3.598358122986018" b="-0.0013151825070653726" c="8.787952868503476e-05" d="-3.5251278558304356e-06" /> - <laneOffset s="384.55700464594526" a="-3.6063211533225128" b="-0.00061956939142700999" c="-7.9363393330337636e-06" d="-4.0152192562158042e-06" /> - <laneOffset s="390.55269190838925" a="-3.6111866137782203" b="-0.0011477575153150438" c="9.1110775413178721e-05" d="-9.2027929175346258e-06" /> - <laneOffset s="394.67692582083856" a="-3.6150160824262083" b="-0.00086583256064338878" c="-4.442918920017838e-06" d="-8.0262075695253334e-06" /> - <laneOffset s="402.97758268341551" a="-3.6270995533659707" b="-0.0025986297316183881" c="-0.0023484347188994577" d="0.00026718991751528362" /> - <laneOffset s="404.79684699573181" a="-3.6379909952134817" b="-0.0084905031234228188" c="-0.00089344843811791296" d="0.00027373261001778406" /> - <laneOffset s="407.6639700832871" a="-3.6632272395824392" b="-0.0068631860410806027" c="0.00022107234298430987" d="-1.7332673625920652e-06" /> - <laneOffset s="414.91676817062512" a="-3.7020367313392506" b="-0.0039299255140652738" c="0.00015867089577029184" d="-2.3374155505677608e-06" /> - <laneOffset s="425.03668934551843" a="-3.727979856027531" b="-0.0014365954442254227" c="-6.4394480046870196e-05" d="8.7691286973385022e-05" /> - <laneOffset s="426.07675877598251" a="-3.7294450128735561" b="-0.0012859662234519088" c="9.354183383348741e-05" d="-2.9765302987721195e-06" /> - <laneOffset s="435.15661052041173" a="-3.7356376209838689" b="-0.00032346283897556047" c="1.074180950740411e-05" d="-5.5173405464456207e-06" /> - <laneOffset s="443.45893737886382" a="-3.7407400945599067" b="-0.0012860070080735473" c="-0.00054231330415648775" d="9.2658661444917142e-05" /> - <laneOffset s="445.27653169530504" a="-3.7443127595551058" b="-0.0023390830565683408" c="6.625583230370112e-06" d="0.00010479461895060451" /> - <laneOffset s="447.89974593853231" a="-3.7485114354813298" b="-0.00014096756058626708" c="1.8779832913697395e-05" d="-1.0824512934958053e-06" /> - <laneOffset s="455.39645287019835" a="-3.7489688476935821" b="-4.1897038046071314e-05" c="-1.4868626633954726e-06" d="-1.4176669169701202e-06" /> - <laneOffset s="459.88587057614768" a="-3.7493151841813281" b="-0.00014096601611829045" c="-9.8576433638763054e-05" d="3.8664855002097038e-06" /> - <laneOffset s="465.5163740450916" a="-3.7525438468669123" b="-0.00088330334552329476" c="-3.360842760962911e-05" d="4.1664216440338684e-06" /> - <laneOffset s="475.6362952199849" a="-3.7606066214130176" b="-0.00028344784500602998" c="7.6222868732218096e-05" d="1.099006327526366e-05" /> - <laneOffset s="477.05830136509667" a="-3.7608239543394877" b="-0" c="0.00022400753785261176" d="-1.3179631899832571e-05" /> - <laneOffset s="483.80854352404407" a="-3.7546706694368854" b="0.001222590055828181" c="0.00027876569045291218" d="-2.739069471307167e-05" /> - <laneOffset s="485.75621639487821" a="-3.7514343582396945" b="0.0019967647838204918" c="0.00012216888241919595" d="-2.9268564155087478e-05" /> - <laneOffset s="492.11512502632377" a="-3.7413228661611662" b="-0" c="-0.00017959308113135175" d="1.1322699214705161e-05" /> - <laneOffset s="495.87613756977152" a="-3.7432608776079612" b="-0.00087041760542970546" c="-4.4797825479657623e-05" d="1.3037372546396707e-05" /> - <laneOffset s="501.87601979650935" a="-3.7472800324904179" b="-0" c="3.9281106524223496e-05" d="2.6358919210596337e-07" /> - <laneOffset s="505.99605874466482" a="-3.7465948121606441" b="0.00033710243654460682" c="3.2602553351398974e-05" d="-3.9205494470032706e-07" /> - <laneOffset s="516.11597991955807" a="-3.7402507726225807" b="0.00087651863726181673" c="1.9992590452065219e-05" d="-9.7168148280987076e-07" /> - <laneOffset s="523.74287830494598" a="-3.7328337833335996" b="0.0010119146406628761" c="0.00018481397846913431" d="-2.2662988035991755e-05" /> - <laneOffset s="526.23590109445138" a="-3.7295135607627543" b="0.0015108430920409486" c="2.7792820779480478e-05" d="-2.0006318546875236e-05" /> - <laneOffset s="531.7375393907239" a="-3.7236917413646005" b="-0" c="-0.0011086715468698418" d="0.00010257395635934074" /> - <laneOffset s="537.32208340142711" a="-3.7404031405613822" b="-0.0027858876028365571" c="0.00012741353798959715" d="-1.1619946414227498e-05" /> - <laneOffset s="544.86729546359823" a="-3.7591609271087791" b="-0.0028477417691416362" c="-4.0185243395500907e-05" d="-3.016886657190538e-06" /> - <laneOffset s="546.47574344423799" a="-3.7638578889872387" b="-0.0030004285231437903" c="-4.7992066001963739e-05" d="2.9380795924697577e-07" /> - <laneOffset s="554.14308408335182" a="-3.7895521260194021" b="-0.0036845543131042049" c="7.1696582273574001e-05" d="-8.9506529732077332e-06" /> - <laneOffset s="556.5956646191313" a="-3.7982895722093626" b="-0.0034943896239594957" c="4.8632982670108076e-06" d="-9.4755332170047619e-06" /> - <laneOffset s="566.62059819142337" a="-3.8423784257821212" b="-0.0062537343108053211" c="-0.00017596883696154782" d="2.604408410366115e-06" /> - <laneOffset s="571.55065054613738" a="-3.877174580790907" b="-0.007798901777578509" c="-0.00012323324617376897" d="-9.2785153639577604e-07" /> - <laneOffset s="576.83550696891791" a="-3.9219694805056773" b="-0.0091791856684542723" c="-0.00013959287775092632" d="-1.621320544251813e-06" /> - <laneOffset s="586.95542814381122" a="-4.0308385660612078" b="-0.012502655459495637" c="-0.00018674254503646219" d="-1.414685931616008e-06" /> - <laneOffset s="593.95561222360527" a="-4.1279955972910161" b="-0.015325089610590259" c="-0.00014526027832834017" d="-7.9822492900274475e-06" /> - <laneOffset s="597.07534931870441" a="-4.1774620014264441" b="-0.016464505306927116" c="-0.0001976541183514127" d="-1.6789378372026945e-05" /> - <laneOffset s="598.83888561202775" a="-4.207204555078162" b="-0.017318293664688227" c="-0.00014332908312129331" d="-9.5616289231505077e-06" /> - <laneOffset s="605.77005489185979" a="-4.3373101092379649" b="-0.020683223671735761" c="-0.00061299832947852857" d="3.9475958674563607e-05" /> - <laneOffset s="607.19527049359772" a="-4.3679190276423965" b="-0.022189977856726412" c="-0.00043223510038300372" d="5.1020329297342584e-05" /> - <laneOffset s="613.07851572110133" a="-4.5030393913754505" b="-0.021978033207488666" c="0.00036838419825631309" d="-3.35451996706553e-05" /> - <laneOffset s="617.31519166849102" a="-4.5920918867370686" b="-0.0206629352070829" c="-6.7102489879042668e-05" d="-3.6146405459212906e-05" /> - <laneOffset s="621.16564900424282" a="-4.6747119887009818" b="-0.022787407930428889" c="-0.00036999780744447082" d="3.7417606628982715e-05" /> - <laneOffset s="625.91624817080969" a="-4.7873043787812195" b="-0.02376948724048775" c="-4.777243505245576e-05" d="1.9689467650704571e-06" /> - <laneOffset s="627.43511284338433" a="-4.8235103227694003" b="-0.023900980183746728" c="-3.5437949261001123e-05" d="3.9381289010337993e-06" /> - <laneOffset s="636.02483137897116" a="-5.0289318454662046" b="-0.023638080183742756" c="-3.3155254346406252e-05" d="1.1773896398987336e-05" /> - <laneOffset s="637.55503401827764" a="-5.0651383459726542" b="-0.023656842253326493" c="2.3295323864129765e-05" d="1.0108641085452947e-05" /> - <laneOffset s="641.27188263044252" a="-5.1522263634193193" b="-0.023064720342879718" c="0.00010946513157815225" d="-2.4371099810368354e-06" /> - <laneOffset s="647.67495519317094" a="-5.2960632378057912" b="-0.02196265367106013" c="6.5274471595486999e-05" d="-1.9695638402988136e-06" /> - <laneOffset s="652.23310055761124" a="-5.3950025423587098" b="-0.021490355657914306" c="-0.00025216633650647499" d="9.9057861661485771e-05" /> - <laneOffset s="655.38246009807654" a="-5.4620902500910224" b="-0.020131174618560947" c="0.00050677349451695231" d="-2.5259295632004259e-05" /> - <laneOffset s="657.79487636806425" a="-5.5080603591347144" b="-0.018127085900316319" c="0.00032221867052357724" d="-2.5545176266458376e-05" /> - <laneOffset s="660.72482549690676" a="-5.5590482033547275" b="-0.016896802780276145" c="0.00033623549655295608" d="-1.217085647782917e-05" /> - <laneOffset s="667.91479754295756" a="-5.6676776075531752" b="-0.013949297901541497" c="7.5681116883685276e-05" d="-1.3316015977714764e-05" /> - <laneOffset s="669.10661160350469" a="-5.6842176202806911" b="-0.013825645299505961" c="-0.00012195461588112265" d="3.224012556758153e-05" /> - <laneOffset s="677.00075514716082" a="-5.7850988418797611" b="-0.0097237274902050568" c="0.00039532151288802656" d="-1.9259104132600294e-06" /> - <laneOffset s="678.03471871785086" a="-5.7947323201728622" b="-0.0089124082648916452" c="0.00038988073955934194" d="-4.6486241304809682e-07" /> - <laneOffset s="686.98793291106517" a="-5.8436077900832393" b="-0.0020428268977202243" c="0.00077046377254253947" d="-0.00036346264834153779" /> - <laneOffset s="688.06148697599804" a="-5.8453626105510885" b="-0.0016452499617412963" c="-0.00010626926021956665" d="4.1894875136522232e-06" /> - <laneOffset s="698.27456106763748" a="-5.8687872499694143" b="-0.0025049444740891853" c="1.5335975410594517e-05" d="4.6819502494000338e-06" /> - <laneOffset s="708.39448224253067" a="-5.8877140725793495" b="-0.00075607178157832309" c="0.00013255825170138094" d="9.3915433289647039e-06" /> - <laneOffset s="710.6875372455587" a="-5.8886375471307577" b="-0" c="2.0740142981058177e-05" d="1.955536449758613e-07" /> - <laneOffset s="718.51440341742398" a="-5.8872732468135673" b="0.00036059939852599592" c="2.8923237554992076e-05" d="-3.7470832903710912e-07" /> - <laneOffset s="728.991369391783" a="-5.8807513707595742" b="0.00084326332933709635" c="0.00015482948238458648" d="-9.8045922631893467e-07" /> - <laneOffset s="734.40476335530866" a="-5.8718047405230136" b="0.0024333727147559676" c="0.00024630378030399792" d="-1.0845458027396915e-05" /> - <laneOffset s="738.75424576721059" a="-5.8574536566653839" b="0.0039604376001321964" c="0.0001131572374032901" d="-1.0686871211879234e-05" /> - <laneOffset s="743.83484311661073" a="-5.8358129059873818" b="0.0042826867116918521" c="0.00025831710026876165" d="-2.4496334322041453e-05" /> - <laneOffset s="748.8741669421039" a="-5.8108060118810361" b="0.0050199363453960364" c="-0.00011522564744054387" d="-2.3236421698115286e-05" /> - <laneOffset s="752.34451421053325" a="-5.7957439416033996" b="0.0033806600228982356" c="-0.00036127440641638457" d="3.7297983882505875e-05" /> - <laneOffset s="757.78577751247269" a="-5.7820365005621879" b="0.0027619646614268131" c="9.7790308747555812e-05" d="5.3902625895395477e-06" /> - <laneOffset s="758.9940881169972" a="-5.7785469048648013" b="0.0030218963804850758" c="9.5256868045806971e-05" d="-6.1868445625948766e-06" /> - <laneOffset s="770.02950828373093" a="-5.7419130737656392" b="0.0028639844653880887" c="2.7263564302667308e-07" d="-2.7208261790450664e-06" /> - <laneOffset s="779.23393046678382" a="-5.7176503848782199" b="0.0021774668635764255" c="-7.3600828343885658e-05" d="-2.436671708088757e-06" /> - <laneOffset s="782.58773940257174" a="-5.7112673621155654" b="0.0016015573305933897" c="-2.857424963545176e-05" d="-4.0820796430163598e-06" /> - <laneOffset s="789.35385164167712" a="-5.7030036249092158" b="0.00065424798639708852" c="-0.00012035148596211532" d="-2.2195960678990672e-06" /> - <laneOffset s="791.89349684897525" a="-5.7021546673161421" b="-0" c="-5.8083022247578372e-05" d="2.2337015386294866e-07" /> - <laneOffset s="799.47377281657043" a="-5.7053948589940191" b="-0.00084206573704003981" c="-5.3253353318012305e-05" d="-1.5670503023766167e-07" /> - <laneOffset s="809.21013998079536" a="-5.7187864052182471" b="-0.0019236195659484761" c="-5.8778571165790898e-05" d="-2.6983186097360307e-06" /> - <laneOffset s="819.71361516635693" a="-5.7486024669739981" b="-0.0040514378321924631" c="-0.00014371240099162046" d="-2.5454504370046948e-06" /> - <laneOffset s="824.19367565736911" a="-5.76986648124835" b="-0.0054923870959748371" c="-0.0018688943642119781" d="0.00045642747928312482" /> - <laneOffset s="827.98218401750569" a="-5.7926797371344412" b="-0" c="0.011388955258804638" d="-0.0058231082325740117" /> - <laneOffset s="829.28606444286538" a="-5.786225600382787" b="-0" c="-0.072639786587206615" d="0.088547085376197904" /> - <laneSection s="0"> - <left> - <lane id="3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - <successor id="4" /> - </link> - <width sOffset="0" a="2.4931628724514141" b="-0.00010578043338082968" c="9.0710317744997133e-06" d="-1.4575601420548061e-07" /> - <width sOffset="10.119921174893296" a="2.4928703096890499" b="3.3033973084780309e-05" c="3.4986890742479003e-06" d="3.9202505856906805e-08" /> - <width sOffset="20.239842349786592" a="2.493603551303107" b="0.00011589140409382559" c="2.4724823731798377e-06" d="1.5539518334639245e-07" /> - <width sOffset="26.785382731543816" a="2.4945116331279471" b="0.00016823217033394176" c="-7.6055547990292659e-05" d="5.0500290810039394e-06" /> - <width sOffset="30.359763524679888" a="2.494371877884682" b="-0.00018191029440515214" c="-2.6122339547743283e-05" d="4.0136846312479181e-06" /> - <width sOffset="37.020988659436355" a="2.4931873642789153" b="4.3608196984975742e-06" c="-0.00016413913264227449" d="9.9744111383943727e-06" /> - <width sOffset="40.479684699573184" a="2.4916516102874668" b="-0.00077309489384288794" c="-6.606023569528458e-05" d="1.3892461234959692e-05" /> - <width sOffset="42.123446263280066" a="2.4902640365154625" b="-0.0008776591529732064" c="0.0003083431038673933" d="-1.9183145417509342e-05" /> - <width sOffset="50.599605874466477" a="2.4932958547462394" b="0.00021481611143988298" c="-0.0001935350888467352" d="-1.9362733579382639e-05" /> - <width sOffset="51.112613093937576" a="2.493352508903198" b="9.5887185578864137e-07" c="0.000298449875174291" d="-3.5568846162564572e-05" /> - <width sOffset="57.990291318280072" a="2.4959048650612545" b="-0.00094123824232951068" c="0.00014303891224057348" d="-5.8680731865543726e-06" /> - <width sOffset="60.719527049359776" a="2.494282167905026" b="-0.00029159345933122923" c="9.4730334496076111e-05" d="-6.4943300088563548e-06" /> - <width sOffset="70.839448224253076" a="2.4943020789362191" b="-0.00036957407373130091" c="-0.00010315362295263938" d="-6.5039037415461783e-06" /> - <width sOffset="72.124415756590466" a="2.4936430679230055" b="-0.00066688878369696174" c="0.00049295056386313178" d="-9.9365003380814422e-05" /> - <width sOffset="73.123542010307716" a="2.4933697465721809" b="2.0576597687864927e-05" c="0.00057833387157213683" d="-8.9002957082264013e-05" /> - <width sOffset="78.159221456212777" a="2.4967735516303295" b="-0.00092564439776445396" c="3.6766576503128337e-05" d="-1.716774895817623e-07" /> - <width sOffset="80.959369399146368" a="2.4944661215333643" b="-0.00072377897189656974" c="3.1368901863746012e-05" d="-6.3227625586413435e-08" /> - <width sOffset="91.079290574039661" a="2.4902885828939429" b="-0.00010830329887919453" c="2.520297339188855e-05" d="-3.1702447563768573e-07" /> - <width sOffset="98.784500273063486" a="2.4908053641557619" b="0.00022361961785551934" c="-7.2398420818176021e-06" d="-1.0360345711211719e-06" /> - <width sOffset="101.19921174893295" a="2.4912885395794286" b="0.00017053252926419273" c="-1.3772328989209411e-05" d="-1.0135307109026514e-07" /> - <width sOffset="109.74319107291149" a="2.4916769771023404" b="-8.700465467099093e-05" c="0.00011806047511837107" d="-1.3176844828251079e-05" /> - <width sOffset="111.31913292382626" a="2.4917815028216381" b="0.00018693048512308718" c="6.1690778586401745e-05" d="-9.260820617666521e-06" /> - <width sOffset="116.99050130195478" a="2.4931365781740782" b="-6.9340047623587999e-06" c="-9.7034140129012038e-05" d="1.1497052208575521e-05" /> - <width sOffset="121.43905409871955" a="2.492197607975263" b="-0.00018769004419769272" c="6.1292367957376762e-05" d="1.2459814756652865e-05" /> - <width sOffset="126.38564324376526" a="2.494277026120673" b="0.0013333143388797892" c="-0.0015648496533318386" d="0.00034186884147083783" /> - <width sOffset="128.88497375067746" a="2.4931717568876759" b="-8.223056084737633e-05" c="-0.0011534236421230969" d="0.00040574799011100287" /> - <width sOffset="131.32469686459007" a="2.4919978795638054" b="0.0015350398495552137" c="-0.00061660365235770374" d="6.7440068317401938e-05" /> - <width sOffset="131.55897527361284" a="2.492324530310607" b="0.0012572306264464134" c="-0.00056943894854810813" d="6.839461491114278e-05" /> - <width sOffset="133.07440124142806" a="2.4931600715940525" b="2.5534414703958039e-06" c="0.00011920699033900328" d="-1.5871957077274174e-05" /> - <width sOffset="138.43065254723237" a="2.4941547203298984" b="-8.6513474989079729e-05" c="-8.0042296708682299e-05" d="7.8899072217522528e-06" /> - <width sOffset="141.67889644850615" a="2.4932995770244681" b="-0.00035676595255585992" c="-2.4901232863680444e-06" d="8.109501957930272e-06" /> - <width sOffset="146.51606037725495" a="2.4924334165329078" b="0.00018838592664444402" c="-1.5446701281234778e-05" d="3.698123634959705e-07" /> - <width sOffset="151.79881762339943" a="2.4930520554101991" b="5.6145222761863492e-05" c="-1.3292254662162015e-05" d="1.230348163263369e-06" /> - <width sOffset="156.016470074854" a="2.4931447141727183" b="9.6794870637961284e-06" c="-0.00085074390495576153" d="5.0581211183677258e-05" /> - <width sOffset="157.83275974169268" a="2.4906588400450853" b="-0.0025801269303112996" c="0.0014229592347284521" d="-0.00013957281170647956" /> - <width sOffset="161.91873879829274" a="2.4943519735714266" b="0.0020576379091140845" c="-0.00028686239678425512" d="-0.00014020613783618166" /> - <width sOffset="164.91872963615214" a="2.4941575916071606" b="-0.0034490738140672997" c="0.00047579102372892728" d="4.9939284624656801e-05" /> - <width sOffset="169.24112182285262" a="2.4921714565050279" b="0.0034630950756266328" c="-0.0025308764812031845" d="0.00052113551011514461" /> - <width sOffset="171.48492650703085" a="2.4930870239498057" b="-2.3270452584184254e-05" c="-0.00056285731903830342" d="0.00017905679152473359" /> - <width sOffset="172.03865997318604" a="2.4929319559543872" b="-0.0004819087370739987" c="-0.00023277911393749178" d="0.00017350077331171744" /> - <width sOffset="174.42458341193017" a="2.4928135519742973" b="0.0013703324376855954" c="-0.0024538160341916158" d="-0.00030604573422478038" /> - <width sOffset="174.67391768564704" a="2.492997931148194" b="8.961319222504759e-05" c="9.5823780331090984e-05" d="-1.1070586428611106e-05" /> - <width sOffset="181.84358438626828" a="2.4944860958424067" b="-0.00024355895344085508" c="-9.0759614908585492e-05" d="1.1343495494573212e-05" /> - <width sOffset="182.15858114807932" a="2.4944007246630697" b="-0.00029736031745218312" c="-9.4965518132860113e-05" d="9.6952728685560056e-06" /> - <width sOffset="188.85306343049373" a="2.4910628487999262" b="-0.00026533752214168572" c="0.00053521377881483412" d="-6.807637434133281e-05" /> - <width sOffset="192.27850232297263" a="2.4936977699539034" b="0.0010049973725451162" c="-0.0001656688122711056" d="-6.9040158363107678e-05" /> - <width sOffset="194.28854410192582" a="2.4944878277275278" b="-0.00049782731366877938" c="2.384195572958838e-05" d="2.6377723307625738e-06" /> - <width sOffset="199.27670168239808" a="2.4929251996769715" b="-6.3075542860241448e-05" c="-3.5567820588948232e-05" d="-1.7471561647567458e-06" /> - <width sOffset="202.39842349786591" a="2.4923285303825176" b="-0.00033622010724728845" c="-5.4105907694769592e-05" d="-4.9843711894674094e-06" /> - <width sOffset="204.77679566691015" a="2.4911557575480656" b="-0.00067817266962003932" c="0.00011165574034492297" d="-4.2180133621869699e-06" /> - <width sOffset="212.51834467275921" a="2.4906403523612104" b="0.00029222747315777679" c="1.3664937401420765e-05" d="-4.2459557709332278e-06" /> - <width sOffset="221.83301054617255" a="2.4911165174962986" b="-0.0005583794605978085" c="0.00090964354475939853" d="-0.00017452048989878745" /> - <width sOffset="222.63826584765252" a="2.4911655981615088" b="0.00056711495534141933" c="0.00046705620301031866" d="-0.00016818941415791015" /> - <width sOffset="225.06018859915343" a="2.4928893743178864" b="-0.00013018784788897814" c="-1.433253858536409e-05" d="1.5915872334552581e-06" /> - <width sOffset="232.7581870225458" a="2.4917638995942859" b="-6.7903105001760125e-05" c="1.6907157757385039e-05" d="3.5055979974045186e-06" /> - <width sOffset="234.3038462939499" a="2.4917122818286259" b="9.4875843019565087e-06" c="0.00042320438944040987" d="-6.2430146100419357e-05" /> - <width sOffset="238.37169803648104" a="2.4945514901525208" b="0.00035337987799694513" c="-0.00026006497341559754" d="2.5805765306078795e-05" /> - <width sOffset="242.8781081974391" a="2.4932242487986698" b="-0.00041836926004013876" c="0.00012230862343144276" d="6.5395631924816453e-06" /> - <width sOffset="244.36193105744582" a="2.4928941181336568" b="-1.2205534295422517e-05" c="-0.00013123508671602992" d="1.0892665726909732e-05" /> - <width sOffset="252.99802937233241" a="2.4900168660825881" b="0.00015827297189546265" c="0.00013575655772230785" d="2.1064198487815949e-05" /> - <width sOffset="254.58511700573359" a="2.4906942160748127" b="0.0007483605690945601" c="-1.3567903771865737e-05" d="3.3320787358949906e-07" /> - <width sOffset="260.25765198931344" a="2.494563554336279" b="0.00062659729363511102" c="-0.00011759048038537684" d="5.0064103855708324e-06" /> - <width sOffset="263.11795054722569" a="2.4955109206769333" b="7.6786484310747017e-05" c="-7.7945191981921517e-05" d="4.2991863510275493e-06" /> - <width sOffset="273.237871722119" a="2.4927611257488129" b="-0.00017993671838642099" c="5.6154967780079103e-05" d="2.1486686356828851e-07" /> - <width sOffset="275.50616326038886" a="2.4926444099941976" b="7.8131522584435741e-05" c="1.1219866640215472e-06" d="-1.494135840128648e-06" /> - <width sOffset="279.2521584455593" a="2.4928742944066702" b="2.3638142308358111e-05" c="-1.549653107935286e-05" d="3.0849410018150488e-06" /> - <width sOffset="283.3577928970123" a="2.4929236258159038" b="5.2393423064696961e-05" c="-6.9999002838884664e-06" d="1.8907782145885271e-07" /> - <width sOffset="293.47771407190561" a="2.4929329257597419" b="-3.119148520337213e-05" c="-1.2268914848354937e-05" d="-1.1827011033379793e-06" /> - <width sOffset="297.81304327274904" a="2.4924707353121356" b="-0.00020425793781746714" c="0.00010246137769698837" d="-1.5011379507023444e-05" /> - <width sOffset="300.06105325403314" a="2.4923588193084627" b="2.8828241596143972e-05" c="8.5366598869283681e-05" d="-1.1642910865420193e-05" /> - <width sOffset="303.59763524679886" a="2.4930134814214422" b="0.00019577213837568015" c="-7.851284534744757e-05" d="-1.7167848584293559e-05" /> - <width sOffset="304.12709358343989" a="2.4930925773407089" b="9.8195787700357771e-05" c="-4.952876864473173e-05" d="2.4899849517946863e-06" /> - <width sOffset="313.71755642169217" a="2.4916752341253448" b="-0.00016474797322200106" c="2.1627334571785554e-05" d="2.4673857363826876e-06" /> - <width sOffset="319.75659274299016" a="2.4920124886025694" b="0.00036642491983850415" c="-0.00011646807514510652" d="1.1637612129383423e-05" /> - <width sOffset="323.83747759658547" a="2.4923591210024383" b="-2.7355359179881758e-06" c="-1.4346168665711568e-05" d="1.0321111388545762e-05" /> - <width sOffset="324.0041062717371" a="2.4923583146109314" b="-6.6568015311253923e-06" c="-0.0001834734722207575" d="1.7540939830035429e-05" /> - <width sOffset="329.40814951027596" a="2.4897325152569296" b="-0.00045287379953805286" c="0.00013344458807547575" d="-6.4250324355664375e-06" /> - <width sOffset="333.95739877147878" a="2.4898290892250641" b="0.00036236055716219306" c="4.3429733948127799e-05" d="-8.2511579555155287e-06" /> - <width sOffset="340.89688303807782" a="2.4916777269186117" b="-0.00022691875770648349" c="0.00016974474025368435" d="-1.0548131166425755e-05" /> - <width sOffset="344.07731994637209" a="2.4923336839051968" b="0.00053271741377308875" c="5.8280083493775984e-05" d="-1.1226238064020759e-05" /> - <width sOffset="348.58617771846662" a="2.4948914095158647" b="0.00037358915841278296" c="-0.00037810299119518643" d="4.511831515274915e-05" /> - <width sOffset="353.58499354917768" a="2.4929465982483356" b="-2.4274283076235539e-05" c="0.00013443149671943703" d="-2.6972220531254742e-05" /> - <width sOffset="354.19724112126534" a="2.4929759375291565" b="0.00011000505678588962" c="6.9717139969374724e-05" d="-2.8401052342693569e-05" /> - <width sOffset="359.85359148290746" a="2.4906889498143889" b="-0.0018273211204009087" c="0.0022230657611559037" d="-0.00045750397077182919" /> - <width sOffset="362.60316178159553" a="2.4929610898141528" b="2.1252203027654834e-05" c="0.0019104280131498463" d="-0.00051734872137125434" /> - <width sOffset="364.31716229615864" a="2.4960049162827591" b="0.0020106036477363929" c="-0.00074829104047118835" d="-0.00050863443991356662" /> - <width sOffset="365.45464046913662" a="2.4965751783366654" b="-0.0016660258754629255" c="-0.12100371651532958" d="0.21088344374440776" /> - <width sOffset="365.83944095954382" a="2.4900326061104865" b="-0.0011131735124305425" c="0.0011117181664740674" d="-0.00016203999799213278" /> - <width sOffset="369.83922075519422" a="2.4929968422285107" b="3.0186477128842266e-06" c="0.00036491901765639919" d="-4.6620098668868294e-05" /> - <width sOffset="373.96021997488447" a="2.4959438410341948" b="0.00063548432398951985" c="-0.00051298075259857104" d="7.328163391322247e-05" /> - <width sOffset="374.43708347105195" a="2.4961381756335146" b="0.00019623319920947994" c="-0.00041133259760950218" d="7.4259666139124122e-05" /> - <width sOffset="377.98153427882102" a="2.4949728275324037" b="7.9138742441629741e-05" c="-0.00013433538379391561" d="9.2613022831160881e-06" /> - <width sOffset="384.55700464594526" a="2.4923179786053757" b="-0.00048621041159060312" c="5.0524988337960449e-05" d="8.727876461916532e-06" /> - <width sOffset="389.01593408540884" a="2.4919282906355051" b="0.00048494857861487847" c="-0.00021154534054157356" d="2.2504292672614998e-05" /> - <width sOffset="394.67692582083856" a="2.4919768808399816" b="0.00025340928071258752" c="0.00012273139222384151" d="3.3492259875479321e-05" /> - <width sOffset="395.57177110694317" a="2.4923259186008351" b="0.00055351708526883172" c="-0.00018217979431914017" d="1.0258080435341174e-06" /> - <width sOffset="397.07206472130099" a="2.4927497558601512" b="1.3797636391607668e-05" c="3.4110362788899586e-05" d="-1.1738269306536087e-06" /> - <width sOffset="404.79684699573181" a="2.4943507004172023" b="0.00033065316649991583" c="7.2559195706772858e-06" d="-2.0743374140506036e-06" /> - <width sOffset="414.91676817062512" a="2.4962901204492232" b="-0.0001598043019790552" c="-0.00010279117935243533" d="3.4752148325427402e-05" /> - <width sOffset="416.14471036652014" a="2.4960032422346825" b="-0.000255045304657072" c="-2.7103562069707263e-05" d="2.2376867330271087e-06" /> - <width sOffset="423.77925294137697" a="2.4934720687619913" b="-0.00027761286166500031" c="-1.2062212410707532e-05" d="3.8936030474278511e-05" /> - <width sOffset="425.03668934551843" a="2.4931813283835109" b="-0.00012325710887355523" c="0.00023594205206472856" d="-0.00010659758326223561" /> - <width sOffset="426.27833943070476" a="2.4931879828905155" b="-3.0365033076993047e-05" c="-0.00018828988568051627" d="2.3412317259239454e-05" /> - <width sOffset="434.71692753770247" a="2.4935923590735203" b="0.00179339051516203" c="-0.0013395079798704812" d="0.00024008100867085124" /> - <width sOffset="435.15661052041173" a="2.4941423340622877" b="0.00075471097952433536" c="-0.0010412165678070409" d="0.00025541516596851242" /> - <width sOffset="437.46604809251897" a="2.4934780095411169" b="3.2233473268224525e-05" c="-0.00065988898019930483" d="0.00022880891322773814" /> - <width sOffset="439.96816535046185" a="2.4930115969650819" b="0.0010274311743563272" c="-8.1017200871676294e-05" d="6.1434262162819999e-07" /> - <width sOffset="445.27653169530504" a="2.4962745096219243" b="0.00021922743687640398" c="-7.7470219980629038e-05" d="9.0830957335513905e-07" /> - <width sOffset="452.32791374485078" a="2.4942868538986591" b="-0.00073782792489140037" c="9.9000817618553205e-05" d="8.609183772288472e-06" /> - <width sOffset="455.07736977542083" a="2.4931855638709837" b="1.8124579586054068e-06" c="0.00031905518465527398" d="-3.0828014310097639e-05" /> - <width sOffset="455.39645287019835" a="2.4932176249732643" b="0.00019600651707795281" c="0.00029594040547206875" d="-3.1238430632949704e-05" /> - <width sOffset="458.23904966552777" a="2.4954485748379258" b="0.0011212320416157835" c="-0.00047431051856548361" d="3.1228037247096703e-05" /> - <width sOffset="465.5163740450916" a="2.4905243021422909" b="-0.00082073191555918825" c="0.00020834160584340947" d="3.1445958956291146e-05" /> - <width sOffset="468.30954803214183" a="2.4905425644132309" b="0.0010791440136504282" c="0.00015568897339572667" d="-7.4477067655482357e-05" /> - <width sOffset="471.30929674770141" a="2.4931703157532072" b="2.6556374909632915e-06" c="0.00035237752095781212" d="-5.7139405356099696e-05" /> - <width sOffset="475.17185610534608" a="2.4951450534582569" b="0.00016736292208707542" c="1.5611541423929355e-06" d="-1.8439040490015569e-06" /> - <width sOffset="475.6362952199849" a="2.4952229353677495" b="0.0001676198334627085" c="1.0425548970006222e-05" d="-7.3036228842472288e-07" /> - <width sOffset="482.37142253069175" a="2.4966016602644712" b="0.00020866268197711245" c="-0.00020524840099255136" d="1.4017603186781693e-05" /> - <width sOffset="485.75621639487821" a="2.4955000332151296" b="-0.00069899250539251761" c="-6.1889568729271295e-05" d="1.3147049942675773e-05" /> - <width sOffset="491.01056769453169" a="2.4920257743917769" b="-0.0002604721255145331" c="-0.00032017960553995393" d="6.2988212051079455e-05" /> - <width sOffset="495.61402971922729" a="2.4901863725476252" b="0.00079617117215451008" c="3.9439206579821391e-05" d="-1.4776224222451558e-05" /> - <width sOffset="495.87613756977152" a="2.4903974986817508" b="0.00081380042040332234" c="2.4242346267380332e-05" d="-1.5557108460096421e-05" /> - <width sOffset="500.61469543687826" a="2.4931428103593904" b="-4.4067622476260055e-06" c="-0.00023020031376384334" d="3.1935025142991088e-05" /> - <width sOffset="505.99605874466482" a="2.4914294401296249" b="0.00029243618022778189" c="0.00029094611687322794" d="3.4390797441604328e-05" /> - <width sOffset="508.68986994339502" a="2.4950007630052524" b="0.0026086267150907394" c="-0.0028655865378907669" d="0.0006159675237663888" /> - <width sOffset="511.19031048942429" a="2.4932368319751768" b="-0.00016836895994255634" c="-0.0018505552407974515" d="0.0007426559564761827" /> - <width sOffset="513.10603360194625" a="2.4913441421261941" b="0.00091795918712975167" c="0.00013133421704481516" d="-4.0840365133743901e-05" /> - <width sOffset="516.11597991955807" a="2.4941833147333115" b="0.00059856329116572075" c="-0.00023698314261198105" d="-4.0504660842640528e-05" /> - <width sOffset="518.58602733977261" a="2.4936055195543299" b="-0.0013135290305612726" c="0.0011702641664337191" d="0.00017134769057905002" /> - <width sOffset="519.08619216681177" a="2.4932627371488838" b="-1.4283571688094988e-05" c="-2.0181535100550535e-06" d="2.8402507522166091e-07" /> - <width sOffset="526.23590109445138" a="2.493161254951592" b="4.1467714941581741e-07" c="1.2779351602528018e-07" d="4.7356022067902917e-09" /> - <width sOffset="536.35582226934469" a="2.4931834471672016" b="4.4561566771212681e-06" c="-7.8245791484962315e-06" d="1.3891453143609807e-06" /> - <width sOffset="539.80051298004958" a="2.4931627320123768" b="0" c="0.00056472700145839255" d="-0.00013391272512520785" /> - <width sOffset="543.90917572197691" a="2.4934079263648909" b="-0.0021412405591486952" c="0.0039870647754409088" d="0.0007754846822740322" /> - <width sOffset="544.15928670255187" a="2.4931339245222142" b="-1.2906957543127473e-06" c="-0.0003147639027269389" d="4.7673919961396412e-05" /> - <width sOffset="546.47574344423799" a="2.4920345092543243" b="-0.00069211388928711905" c="5.8001104176093061e-06" d="4.4197728489853887e-05" /> - <width sOffset="547.36432582234465" a="2.4914550980687955" b="-0.00057711339005862622" c="7.0641302645330539e-05" d="-2.6087414272838837e-06" /> - <width sOffset="556.5956646191313" a="2.4900952266202663" b="6.0182030039083404e-05" c="-1.0918152839830316e-06" d="-2.7718996882814049e-06" /> - <width sOffset="560.28494235712151" a="2.4901632064710442" b="-6.1057058860836122e-05" c="0.00031211438566701764" d="-3.7023164181396961e-05" /> - <width sOffset="565.78796390982768" a="2.4931091584576106" b="1.0542534524905778e-05" c="0.00044782820263781554" d="-6.1189505734898377e-05" /> - <width sOffset="566.71558579402461" a="2.4934554446097863" b="0.00068341554586650883" c="0.00027427090000199639" d="-6.0061134942206958e-05" /> - <width sOffset="569.66432190069418" a="2.4963155234359293" b="0.0007342178115834026" c="-0.00035699326209938679" d="2.6914556002975194e-05" /> - <width sOffset="576.83550696891791" a="2.4931477112325293" b="-0.00023359627389447565" c="0.00021445050804413441" d="3.2062403930712194e-05" /> - <width sOffset="577.45657979361124" a="2.4930930323453455" b="6.9884924702078022e-05" c="2.2262528262850887e-05" d="-5.5972186276690645e-05" /> - <width sOffset="578.20751656325456" a="2.4931343636215182" b="8.6312664241226106e-06" c="-4.9636437485913799e-05" d="-1.3203091888108053e-05" /> - <width sOffset="582.23335854920811" a="2.4915031527240998" b="-0.0010329891624972654" c="0.00034019072949998633" d="-3.0042148534198621e-05" /> - <width sOffset="586.95542814381122" a="2.4910476480761803" b="0.0001701852480955994" c="-8.5649974978776322e-05" d="-2.973757256683052e-05" /> - <width sOffset="589.70238782806678" a="2.4902524439473948" b="-0.00097354901903604421" c="0.0012362344434115663" d="-0.00020720798541128328" /> - <width sOffset="593.20753609453993" a="2.4931051626698797" b="5.550907332318479e-05" c="0.001392165408985422" d="-0.00028679614417923991" /> - <width sOffset="594.91633351675512" a="2.4958341057542488" b="0.0023010419571262331" c="-0.0017836832258617359" d="0.00025998022003763117" /> - <width sOffset="597.07534931870441" a="2.4951041431293124" b="-0.001765382785633646" c="-0.00011312317523190507" d="0.00026511220921229128" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="2" /> - </link> - <width sOffset="0" a="3.7089786428962261" b="0.0062787185656241959" c="-0.00027818012140349711" d="1.6230129818068966e-05" /> - <width sOffset="2.7519023404113181" a="3.7244886514214146" b="0.0051164001991101478" c="-1.81101849394935e-05" d="-1.4997629706507442e-05" /> - <width sOffset="10.119921174893296" a="3.7552042801266357" b="0.0024069672954696725" c="-0.00035117163824835516" d="-1.4762929835694369e-05" /> - <width sOffset="14.377115840753714" a="3.7579476260077382" b="-0.0013857217736928009" c="-0.00027489947952169362" d="3.5314763503017497e-05" /> - <width sOffset="18.998283687442715" a="3.749158512066975" b="-0.0016639743519266117" c="0.00061038587223415672" d="-3.7375448011685185e-05" /> - <width sOffset="20.239842349786592" a="3.7479619505464141" b="-0.00032115377926315446" c="0.00047470956841243618" d="-3.8001098462829427e-05" /> - <width sOffset="26.785382731543816" a="3.7555413855405599" b="0.0010089390587165602" c="-0.0001899241384994728" d="-4.2895732360506693e-05" /> - <width sOffset="30.359763524679888" a="3.7547622902464912" b="-0.0019929164438658997" c="-0.00064204194818189876" d="-4.1198783782161705e-05" /> - <width sOffset="30.460500601070677" a="3.7545549721388465" b="-0.0021235255520776022" c="-0.00012898859076908095" d="-3.1899733373942186e-07" /> - <width sOffset="40.479684699573184" a="3.7200097447886669" b="-0.0048043131600208223" c="-0.00012731690370692923" d="-5.3920818592457623e-06" /> - <width sOffset="42.123446263280066" a="3.7117446471001334" b="-0.0052665778658262385" c="-0.00045980245258533004" d="2.7683524793216695e-05" /> - <width sOffset="43.290019071586357" a="3.7050190088389559" b="-0.0062263410705914249" c="-0.00045070955151622585" d="2.5699240002731457e-05" /> - <width sOffset="50.599605874466477" a="3.6454624710228996" b="-0.0086960065035353497" c="0.00012626806705341414" d="2.5845441001568411e-05" /> - <width sOffset="57.990291318280072" a="3.5985237600781845" b="-0.002594384401561357" c="0.00012083236763309153" d="-3.8553319744420583e-06" /> - <width sOffset="60.719527049359776" a="3.5922647445398832" b="-0.0020209763250638156" c="9.1824106043278386e-05" d="-2.6713118222117829e-06" /> - <width sOffset="65.416524520914152" a="3.5845212151433867" b="-0.0013351828604923335" c="6.4877522235327149e-05" d="-6.705785280146874e-06" /> - <width sOffset="70.839448224253076" a="3.5781191206277478" b="-0.0012231443965154162" c="-4.4919855602596329e-05" d="-7.3790559692183423e-06" /> - <width sOffset="72.124415756590466" a="3.5764575948782467" b="-0.001375137106465038" c="-0.00069454149986692597" d="8.54820436718259e-05" /> - <width sOffset="78.159221456212777" a="3.5616518035874849" b="-0.00041850228162343292" c="5.0057283488249374e-05" d="-3.3492359208747071e-06" /> - <width sOffset="80.959369399146368" a="3.5607988917779969" b="-0.00021694903625341653" c="1.7474907276971253e-05" d="-2.7830411728937656e-06" /> - <width sOffset="87.455658477374811" a="3.5593640157722608" b="-0.00034225274304497811" c="-0.0072907783853579577" d="0.0010719614316970075" /> - <width sOffset="91.079290574039661" a="3.5133955717268535" b="-0.010953607180820835" c="0.0043571208770546571" d="0.0010715584978562515" /> - <width sOffset="92.536107442156421" a="3.5099984278983811" b="0.0085640024643636771" c="-0.00011596136871580639" d="-9.4613152605229448e-06" /> - <width sOffset="98.784500273063486" a="3.5566741579208112" b="0.0060066803615689817" c="-0.00026820081676984519" d="-8.7423051650605799e-06" /> - <width sOffset="101.19921174893295" a="3.5694916344514933" b="0.0045585004560618351" c="-0.00034040837167056466" d="-9.3834870513015486e-06" /> - <width sOffset="104.55480344384314" a="3.5806005587631708" b="0.0019569833769734661" c="-0.00050341734337906046" d="1.9778566646164221e-05" /> - <width sOffset="109.74319107291149" a="3.579964906247147" b="-0.0016695858215666874" c="-0.00032999141159480258" d="3.2854058402731132e-05" /> - <width sOffset="111.31913292382626" a="3.5766427625197417" b="-0.002464892072950801" c="-0.00018413040868417083" d="2.8029479630711194e-05" /> - <width sOffset="121.43905409871955" a="3.5618909567154455" b="0.002420070343685899" c="0.00067014187605105426" d="2.7882749125023226e-05" /> - <width sOffset="121.74398818584089" a="3.5626920222571026" b="0.0028365465614591909" c="0.00020017625328923983" d="7.4824679491041965e-06" /> - <width sOffset="126.38564324376526" a="3.5809193614792663" b="0.0051784732542054955" c="0.0021154121334576331" d="-0.00032192655876508937" /> - <width sOffset="131.32469686459007" a="3.6193128480448808" b="0.0025152696538442657" c="-0.00022170721374029166" d="1.6381362947084575e-05" /> - <width sOffset="131.55897527361284" a="3.6198901633557341" b="0.0024140845680232447" c="-0.00021020737419920929" d="1.6376147853108907e-05" /> - <width sOffset="138.43065254723237" a="3.6318667285290314" b="0.0018449726733095486" c="7.1594149481469418e-05" d="-7.3857164459196776e-06" /> - <width sOffset="141.67889644850615" a="3.6383619189352143" b="0.0020763011498599977" c="-2.4702014489414532e-06" d="-7.6644758257904409e-06" /> - <width sOffset="144.27693991753924" a="3.6436051591964356" b="0.0019082640448455314" c="0.0001144156742192845" d="-1.6073412831466027e-05" /> - <width sOffset="146.51606037725495" a="3.648271190419718" b="0.0021788850971424744" c="0.00013708230068206623" d="-8.3337232370161722e-06" /> - <width sOffset="151.79881762339943" a="3.6623787092911582" b="0.0029295093848539303" c="6.5838672384266282e-07" d="-8.0233008483409896e-06" /> - <width sOffset="157.83275974169268" a="3.6783165591162659" b="0.0020611066960953615" c="-0.0021426707580823232" d="0.00018213072204196758" /> - <width sOffset="159.27258753427179" a="3.6773858626810894" b="-0.0029763192949123535" c="-0.0011881892673065071" d="0.00018762140822504907" /> - <width sOffset="161.91873879829274" a="3.6646666051089145" b="-0.0053233354764135122" c="0.00029091949166836666" d="0.00018766751318170035" /> - <width sOffset="164.91872963615214" a="3.6563818833164645" b="0.0014891680488098588" c="-4.4582855278605758e-05" d="-2.4779092791315217e-06" /> - <width sOffset="169.24112182285262" a="3.6617856018752177" b="0.00096487398928984036" c="0.0035775246835440832" d="-0.00047367413476978289" /> - <width sOffset="172.03865997318604" a="3.6821126761344911" b="0.0098601640228365515" c="-0.00042870238298659284" d="-0.00046879184341393486" /> - <width sOffset="173.70169187069925" a="3.6951686279478295" b="0.0045446947737494484" c="-0.002714461322589734" d="-0.00046299632349748891" /> - <width sOffset="174.42458341193017" a="3.696860544501074" b="-0.0001056744792835638" c="-0.00025563409494250717" d="1.6550184022546783e-05" /> - <width sOffset="181.84358438626828" a="3.6887643677135507" b="-0.0011659290700643679" c="6.118954985510066e-05" d="-5.8638978916736639e-06" /> - <width sOffset="182.15858114807932" a="3.6884029919646268" b="-0.001129125549859448" c="5.6073884686612254e-05" d="-5.8201490174997272e-06" /> - <width sOffset="188.85306343049373" a="3.6816109291536208" b="-0.0011608633142200489" c="-0.00049627956837245205" d="7.1951498192445769e-05" /> - <width sOffset="192.27850232297263" a="3.6747032360938792" b="-0.0020280568644193658" c="0.00024370475955487529" d="7.3289137631485943e-05" /> - <width sOffset="194.28854410192582" a="3.6722065785531472" b="-0.00016002010528961728" c="7.9815869096190584e-05" d="1.6112069376057408e-06" /> - <width sOffset="195.39813795654356" a="3.6721294915264222" b="2.3057437212250263e-05" c="0.00029696930195921437" d="-6.9354417954642001e-06" /> - <width sOffset="202.39842349786591" a="3.6844644354891387" b="0.0031612041381070023" c="0.00014340551514401841" d="-5.3366588999447833e-06" /> - <width sOffset="204.77679566691015" a="3.6927223534095792" b="0.0037527846087867397" c="-9.5997885057242782e-05" d="-6.1030167272222962e-06" /> - <width sOffset="210.32262953259135" a="3.7095411496278072" b="0.0021248898141948704" c="-1.0896765863562414e-05" d="-4.9416059429161424e-06" /> - <width sOffset="212.51834467275921" a="3.7141019558873545" b="0.0020055645341207863" c="-4.374470846620605e-05" d="-5.120527005600725e-06" /> - <width sOffset="221.83301054617255" a="3.7248494493513777" b="-0.00014218701094577228" c="-0.0012014602882429372" d="0.00016515400712089354" /> - <width sOffset="222.63826584765252" a="3.7240421185388217" b="-0.0017558760830875611" c="-0.00080234305671045704" d="0.00016513048193939723" /> - <width sOffset="225.06018859915343" a="3.7174291032760185" b="-0.0027364794245727572" c="-0.0002605538440286334" d="6.2707081344885288e-06" /> - <width sOffset="228.8814602179153" a="3.7035175315327562" b="-0.0044530766057634015" c="0.00019689371903754016" d="-5.774652679743074e-06" /> - <width sOffset="232.7581870225458" a="3.6888768371876166" b="-0.0031868322402961568" c="0.00012863938136051305" d="-9.1412036333151723e-06" /> - <width sOffset="234.3038462939499" a="3.684224652411781" b="-0.0028546836580597389" c="-0.00030379002862586634" d="5.6794540464508351e-05" /> - <width sOffset="238.37169803648104" a="3.6714082612216754" b="-0.0025068202833364297" c="0.00031070490961163707" d="-3.1441370942011414e-05" /> - <width sOffset="242.8781081974391" a="3.6635438568384964" b="-0.0016220016150989098" c="-0.00010079924520514622" d="-3.0263052408929096e-05" /> - <width sOffset="245.95352554194687" a="3.6567218580837824" b="-0.0031007023754393796" c="-0.00041093053550891087" d="0.00011304474459250037" /> - <width sOffset="248.51165737139968" a="3.6479931344403491" b="-0.0029838238727206922" c="0.00024405863118150305" d="-1.6126280565897878e-05" /> - <width sOffset="252.99802937233241" a="3.6380626921479431" b="-0.0017676950218082038" c="5.514119455922134e-05" d="-2.610017283971145e-05" /> - <width sOffset="254.58511700573359" a="3.6352917586157685" b="-0.0017898942442504243" c="0.00018048805820528393" d="-5.3691822254829981e-06" /> - <width sOffset="260.25765198931344" a="3.6299661723036465" b="-0.00026054764556529076" c="0.00019881041275635487" d="-1.0042384737415974e-05" /> - <width sOffset="263.11795054722569" a="3.6306124557627086" b="0.00063028710528022528" c="0.00011338792071656979" d="-8.4228445296348742e-06" /> - <width sOffset="273.237871722119" a="3.6398737703831316" b="0.00033741935233673167" c="-0.00016429466343484238" d="-3.7578984573544552e-06" /> - <width sOffset="275.50616326038886" a="3.6397499584554209" b="-0.0004659218516836496" c="-0.00013337156807075818" d="-2.0488957536230911e-06" /> - <width sOffset="283.3577928970123" a="3.6268778671684898" b="-0.0029392216816417674" c="-0.00020454727727906808" d="-9.3582484444731717e-07" /> - <width sOffset="285.6478013263573" a="3.6190631120338232" b="-0.0038907744455660524" c="-5.3513253940614468e-05" d="1.5226570706490925e-06" /> - <width sOffset="293.47771407190561" a="3.5860488470898106" b="-0.0044487316151632737" c="-4.7641730294949731e-05" d="2.7414803057567938e-06" /> - <width sOffset="297.81304327274904" a="3.5660900845590375" b="-0.0047072377651444933" c="-0.00014209855985840541" d="1.6570158709422695e-05" /> - <width sOffset="303.59763524679886" a="3.537313142153268" b="-0.0046878148318750734" c="0.00014499641366183226" d="1.6566113765089475e-05" /> - <width sOffset="304.12709358343989" a="3.5348742445527228" b="-0.0045203439681930817" c="0.00011505655641420221" d="-3.0917197641753643e-06" /> - <width sOffset="313.71755642169217" a="3.4993773964843418" b="-0.0031665538281291242" c="2.9643707605919115e-05" d="-4.3632369560140665e-06" /> - <width sOffset="319.75659274299016" a="3.4803745935332882" b="-0.0032858962019800425" c="0.00013339177419763551" d="-1.3533463349036217e-05" /> - <width sOffset="323.83747759658547" a="3.4682669309582428" b="-0.0028733267760874472" c="1.1002344931613458e-05" d="-1.3454286258016108e-05" /> - <width sOffset="325.26409124086035" a="3.4641511317625171" b="-0.0029240821446809163" c="-0.00012556226864149573" d="-8.1009650903303736e-06" /> - <width sOffset="329.40814951027596" a="3.44930073671628" b="-0.0043821158014326188" c="-0.00025881695119791989" d="1.5865007175265852e-05" /> - <width sOffset="333.95739877147878" a="3.4255026962891852" b="-0.0057519506455237131" c="-1.3078802024266738e-05" d="1.8342378399385293e-05" /> - <width sOffset="340.89688303807782" a="3.3910869686988501" b="-0.0032835598889270736" c="7.0689788173679724e-05" d="2.0639351610255218e-05" /> - <width sOffset="343.51052413570164" a="3.3833563089904137" b="-0.002491074768282316" c="0.00019814590635542224" d="1.1067666011741682e-05" /> - <width sOffset="344.07731994637209" a="3.3820100493869414" b="-0.0022557915171881071" c="0.00025249508797469143" d="1.1173426752744712e-05" /> - <width sOffset="348.58617771846662" a="3.3779963833946733" b="0.00070259790273555006" c="0.00068816380658972816" d="-4.5171126464018116e-05" /> - <width sOffset="354.19724112126534" a="3.3956249948027111" b="0.004158751760957943" c="-5.6659948970875216e-05" d="-4.3754611611442191e-05" /> - <width sOffset="357.2437376593424" a="3.4065315885751031" b="0.0025952449043402052" c="-0.0046602360226648317" d="0.00087551012434193424" /> - <width sOffset="359.85359148290746" a="3.397125948355662" b="-0.0038396412407206704" c="-0.00044066321516840002" d="0.0013046130427709817" /> - <width sOffset="360.39018610157837" a="3.3951403032684557" b="-0.0031856297472709284" c="-0.0024001047565639392" d="0.00038261808600897527" /> - <width sOffset="364.31716229615864" a="3.3687888159016164" b="-0.0043347146883342368" c="0.0021196211732338118" d="0.00037668494957509744" /> - <width sOffset="365.45464046913662" a="3.3671550382992765" b="0.0019494598683454105" c="0.12192477765250535" d="-0.21101539323474619" /> - <width sOffset="365.83944095954382" a="3.3739355406810292" b="0.0020468432156876925" c="-0.00034297971507204952" d="3.0090507653697147e-05" /> - <width sOffset="373.96021997488447" a="3.384053714707008" b="0.0024294590722223038" c="0.00069163097380691612" d="-8.9811224916480688e-05" /> - <width sOffset="374.43708347105195" a="3.3853597721371793" b="0.0030278173079818058" c="0.00056289888746785229" d="-8.964811659623319e-05" /> - <width sOffset="375.63946776359012" a="3.3896583336145301" b="0.0039926384957193395" c="0.00087973492352824722" d="-0.00024692592206427037" /> - <width sOffset="377.98153427882102" a="3.4006627192756556" b="0.0040500637314703474" c="-0.00034258389082062374" d="-0.0001819275582082887" /> - <width sOffset="378.77292442013265" a="3.4035631683277439" b="0.0031660059122123455" c="0.0002149087850838034" d="-1.5507507030141975e-05" /> - <width sOffset="384.55700464594526" a="3.4260646451358729" b="0.0040956671055649534" c="-7.0517980524516401e-05" d="-1.5003215398834967e-05" /> - <width sOffset="389.01593408540884" a="3.4415948185879066" b="0.0025719135920676023" c="0.00010760846776957259" d="-2.8779631609525139e-05" /> - <width sOffset="394.67692582083856" a="3.4543818007757054" b="0.0010233672225314974" c="-0.00038180625475830207" d="-2.8729007611603709e-05" /> - <width sOffset="395.57177110694317" a="3.4549712398375574" b="0.00027103807440213867" c="-6.4107946711100465e-05" d="3.737444220263835e-06" /> - <width sOffset="399.95619360287316" a="3.4552422288964575" b="-7.557810135909481e-05" c="0.0005398465436351849" d="-1.9701708270223022e-05" /> - <width sOffset="404.79684699573181" a="3.4652913427867373" b="0.0037658950371569936" c="0.00025607041254876176" d="-2.0656690217019783e-05" /> - <width sOffset="412.98713879546108" a="3.5019635175225559" b="0.0038034709789053697" c="0.00031076644504559323" d="-5.643560430758816e-05" /> - <width sOffset="414.91676817062512" a="3.510054451152536" b="0.0043723903428797622" c="6.5709534180299146e-05" d="-9.2919820359625563e-05" /> - <width sOffset="416.14471036652014" a="3.5153505283192512" b="0.0041134401287891732" c="-0.00022425769988573566" d="-6.0405358767228791e-05" /> - <width sOffset="417.70795186502301" a="3.521002048342758" b="0.0029694601714501112" c="-0.00019355782815972598" d="3.3409981554477959e-06" /> - <width sOffset="423.77925294137697" a="3.5326435486238248" b="0.00098861903021320785" c="-9.649541683094639e-05" d="-3.335734558579092e-05" /> - <width sOffset="425.03668934551843" a="3.5336677800379648" b="0.00058771679860027191" c="-0.00011675808753525568" d="1.2379222886207042e-05" /> - <width sOffset="433.05405432187627" a="3.5372542523168962" b="0.001102672703722456" c="0.00012599484617819098" d="3.5344774086730884e-06" /> - <width sOffset="434.71692753770247" a="3.5394525033777144" b="0.0015510196661333731" c="0.0018875458097564644" d="-0.00021313421400398513" /> - <width sOffset="435.15661052041173" a="3.5404812464006228" b="0.0030872531711380012" c="0.0016076767159639233" d="-0.00021241386319529663" /> - <width sOffset="439.96816535046185" a="3.5688938230082772" b="0.0038052843066762533" c="-0.00031979771997019287" d="1.5780707410796016e-05" /> - <width sOffset="445.27653169530504" a="3.5824426929642108" b="0.0017441193797498701" c="-9.1523221933266887e-05" d="1.3275658475466911e-05" /> - <width sOffset="452.32791374485078" a="3.5948449903163096" b="0.0024336653976700694" c="3.2055473540009224e-05" d="5.5747842766183583e-06" /> - <width sOffset="453.02277807678939" a="3.5965534055203152" b="0.0024862889350611549" c="-0.00011127377392684091" d="1.3775244558857407e-05" /> - <width sOffset="455.39645287019835" a="3.6020123246178786" b="0.0021908763350908028" c="-1.9912148590578422e-05" d="1.4115923728753293e-05" /> - <width sOffset="458.23904966552777" a="3.6084034368201792" b="0.0024198570054408263" c="0.00060432162568528191" d="-4.8350544151289291e-05" /> - <width sOffset="465.5163740450916" a="3.639383612713142" b="0.0035336913102873148" c="-0.00044952417710844578" d="-4.9162692666965792e-05" /> - <width sOffset="468.30954803214183" a="3.6446753745370404" b="-0.00012818273849391241" c="-0.00054532930386919564" d="5.6760333944827871e-05" /> - <width sOffset="472.62472634471413" a="3.6385285965741594" b="-0.0016638067824401195" c="2.9889772021490699e-05" d="5.2883807989265638e-05" /> - <width sOffset="475.17185610534608" a="3.6353585143141478" b="-0.00048223070993744276" c="0.00012269886782685302" d="-2.4116933036545799e-06" /> - <width sOffset="475.6362952199849" a="3.6351607725024651" b="-0.00036981903629877862" c="0.00011987603535151164" d="-2.3210977871850346e-06" /> - <width sOffset="482.37142253069175" a="3.6373986655455477" b="0.00092907318797855187" c="0.00027389406903527593" d="-1.7069063262350025e-05" /> - <width sOffset="485.75621639487821" a="3.643019423112265" b="0.0021965510738744818" c="9.5910320615311096e-05" d="-1.5490962180460838e-05" /> - <width sOffset="488.88475683068953" a="3.6503558144206139" b="0.0023418040020355036" c="-9.0443695407572226e-05" d="-1.7953640056788175e-05" /> - <width sOffset="491.01056769453169" a="3.6547528501630238" b="0.0017138702544914875" c="0.00026058586902707738" d="-6.779480216519219e-05" /> - <width sOffset="495.61402971922729" a="3.6615511014322779" b="-0.0001970298410742101" c="-0.0001654138083129379" d="9.9696341289886504e-06" /> - <width sOffset="495.87613756977152" a="3.6614882738712886" b="-0.00028168759926333218" c="-0.00015780091881666762" d="9.9385576794283788e-06" /> - <width sOffset="505.99605874466482" a="3.6527771986002957" b="-0.00042204662229235765" c="0.00016036974185463756" d="6.338654196651156e-06" /> - <width sOffset="508.68986994339502" a="3.6529279345268861" b="0.00057995658194407275" c="0.0036460547554428187" d="-0.000575238072128162" /> - <width sOffset="513.10603360194625" a="3.6770532146769295" b="-0.00087263842494999491" c="-0.0016887015684213733" d="0.00020825824948181627" /> - <width sOffset="516.11597991955807" a="3.6648064467516428" b="-0.0053781207667799704" c="0.00019468238254316327" d="0.00021132855939669408" /> - <width sOffset="518.58602733977261" a="3.6558947573868323" b="-0.00054833959289980435" c="5.3264463313838518e-05" d="-5.2379202222361218e-07" /> - <width sOffset="526.23590109445138" a="3.6545826068254224" b="0.00017463542633323534" c="3.6008663331371573e-05" d="-6.5754719531838089e-07" /> - <width sOffset="527.81692844382667" a="3.6549461205413927" b="0.00028356588084769058" c="3.4134849417090588e-05" d="-7.9377332263586004e-07" /> - <width sOffset="536.35582226934469" a="3.6593621253856505" b="0.00069288510378189754" c="2.0839147008571279e-06" d="1.1826723089505582e-06" /> - <width sOffset="539.80051298004958" a="3.6618219687217057" b="0.00074934238009750822" c="-0.0052845123819758501" d="0.0008625588820470215" /> - <width sOffset="543.22090715272293" a="3.6370767386793772" b="-0.0051274100660638859" c="0.0036158829791113865" d="0.00086338710374091524" /> - <width sOffset="543.90917572197691" a="3.6355420971460184" b="0.0010769818431707928" c="0.0003256651517283611" d="-4.6010303601558791e-05" /> - <width sOffset="546.47574344423799" a="3.6396736070104252" b="0.0018394183162735024" c="-2.8832319890059657e-05" d="-4.6065627548333638e-05" /> - <width sOffset="547.36432582234465" a="3.6412529964228377" b="0.0016790612265018055" c="-9.8652858681770887e-05" d="7.4084236817846701e-07" /> - <width sOffset="556.5956646191313" a="3.6489288184932702" b="4.7063764277948186e-05" c="-7.8986537177001793e-05" d="1.0865897734685036e-06" /> - <width sOffset="560.28494235712151" a="3.6480819441052939" b="-0.00049137481092124003" c="-0.00041084546717895656" d="3.5337854266570484e-05" /> - <width sOffset="562.02562284681278" a="3.6461681478715922" b="-0.001600458425935156" c="4.5903458674706964e-05" d="1.6187597754282913e-05" /> - <width sOffset="566.71558579402461" a="3.6413416389385937" b="-0.0001017122065615399" c="0.0002769828154673294" d="1.5039917954726866e-05" /> - <width sOffset="569.66432190069418" a="3.6438357087766486" b="0.0019241045246280513" c="0.00050997991327712984" d="-7.1935772990453908e-05" /> - <width sOffset="577.45657979361124" a="3.6557587280288404" b="-0.0032317711555879466" c="-0.00091971912821647806" d="1.6098817215448318e-05" /> - <width sOffset="577.67887458295468" a="3.6549950510849092" b="-0.003638282127439735" c="-0.0013482034046731928" d="0.00017797604893288581" /> - <width sOffset="582.23335854920811" a="3.6272726448510277" b="-0.0048435790591635913" c="0.00053427592706431926" d="0.00019481510557878954" /> - <width sOffset="582.7413221758834" a="3.6249756746005071" b="-0.0041499908854093753" c="0.00036358872911993368" d="3.5247514236567333e-05" /> - <width sOffset="586.95542814381122" a="3.6165818505912539" b="0.00079226092267172324" c="0.00080502119982689521" d="3.4444787911764069e-05" /> - <width sOffset="589.70238782806678" a="3.6255466489883039" b="0.0059947216353726327" c="-0.00047807162623037349" d="0.00021191520075621858" /> - <width sOffset="594.91633351675512" a="3.6738436653386302" b="0.018292332839648932" c="0.0045422905150434446" d="-0.00033486116346034979" /> - <width sOffset="597.07534931870441" a="3.7311402852147442" b="0.033223372355255659" c="0.0023533052081103254" d="-0.00032691458804337607" /> - <roadMark sOffset="0" color="standard" width="0.30015685778938728" weight="bold" type="solid"> - <type name="solid"> - <line length="598.83888561202775" space="0" width="0.30015700000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.9453453415765947" b="-0.0080028244762301894" c="0.00048352658689918265" d="-6.3582486956893444e-05" /> - <width sOffset="2.457955920830897" a="3.9276518096840145" b="-0.0067782602108081421" c="0.00017899875048426429" d="-1.9141432889753556e-05" /> - <width sOffset="2.7519023404113181" a="3.9256743445014517" b="-0.0066779898448544629" c="3.6040343726968181e-05" d="1.2086326637880869e-05" /> - <width sOffset="10.119921174893296" a="3.8832617806957659" b="-0.0041784813022030234" c="0.00030096499035992452" d="1.2474353528964474e-05" /> - <width sOffset="14.377115840753714" a="3.8718902465595235" b="-0.00093770363553289564" c="0.00019546408709706338" d="-3.7603339809747776e-05" /> - <width sOffset="18.998283687442715" a="3.8680202133506181" b="-0.0015402385811683808" c="-0.00072154895038732474" d="3.5086871704208635e-05" /> - <width sOffset="19.740416978935276" a="3.8664940907696321" b="-0.0025532360480175036" c="-0.00095642306146212172" d="9.4838003387459884e-05" /> - <width sOffset="20.239842349786592" a="3.864992197341742" b="-0.0034375948258971584" c="-0.00081458994895024001" d="9.4604130752239037e-05" /> - <width sOffset="25.940594749121413" a="3.8364492670876005" b="-0.0035016468938039429" c="0.00014604447327110358" d="3.6053882101860558e-05" /> - <width sOffset="30.359763524679888" a="3.8269385372959488" b="-9.8562054321479629e-05" c="0.00063028880876907797" d="3.7312989521562404e-05" /> - <width sOffset="30.460500601070677" a="3.8269350427316269" b="2.9560801447913766e-05" c="0.00011606112071579219" d="-3.5667968268281983e-06" /> - <width sOffset="37.831721412823981" a="3.8320305569676747" b="0.0011591804917073381" c="0.0049264296343852773" d="-0.00057191404737331206" /> - <width sOffset="40.479684699573184" a="3.8590241332950512" b="0.015218904510843899" c="0.00039328547901137359" d="-0.00057616421943723867" /> - <width sOffset="42.653471949611045" a="3.8880469000903339" b="0.0087610079046323164" c="-0.0012696758784401701" d="0.00013925074720825693" /> - <width sOffset="43.290019071586357" a="3.8931451477494972" b="0.007313860818027788" c="-0.00091596525061866279" d="0.00014123503199878489" /> - <width sOffset="47.301577334049462" a="3.9168624898317104" b="0.0067834813773420127" c="-0.00034803397246603704" d="5.7495577899529965e-05" /> - <width sOffset="50.599605874466477" a="3.937511559838681" b="0.0063639662951406701" c="0.00025296493889423016" d="6.0302506779559438e-05" /> - <width sOffset="55.055479990715078" a="3.9762261604619411" b="0.012210211335042572" c="0.0014366350624629913" d="-9.4372409924138562e-05" /> - <width sOffset="60.719527049359776" a="4.0743261989975501" b="0.019401743205831722" c="-0.00016773437297768986" d="-9.299410906817986e-05" /> - <width sOffset="64.356619854353966" a="4.1381990419504682" b="0.014491110131076092" c="-0.00075385189650762404" d="0.00013072051234025829" /> - <width sOffset="65.416524520914152" a="4.152867009781402" b="0.01333364129308004" c="-0.00034889290418952296" d="0.00013475498579816481" /> - <width sOffset="67.528686867124506" a="4.1807431083250028" b="0.013663323248524817" c="0.0017336716219385013" d="-0.00087572914200418706" /> - <width sOffset="69.414790256920725" a="4.2068050974573437" b="0.010857171333594319" c="-0.00028781721649790489" d="-0.00054232482665278069" /> - <width sOffset="70.839448224253076" a="4.2201205213712001" b="0.0067348998721584417" c="-0.0026058909961638749" d="-0.00054235284292655946" /> - <width sOffset="71.769116810952909" a="4.223693738061379" b="0.00048342973855267167" c="-0.0038587545477348764" d="0.00035440209609446444" /> - <width sOffset="78.487002181449611" a="4.160242772550701" b="-0.0033794290899256123" c="0.0014542022299497237" d="-0.00025300553472166793" /> - <width sOffset="80.959369399146368" a="4.1569529697392884" b="-0.00082834988336933767" c="-0.00043863623512449562" d="-0.00024154475374456164" /> - <width sOffset="81.964354221812258" a="4.155432295533398" b="-0.0024418720151685681" c="-0.00068181415880472164" d="4.9438234872366669e-05" /> - <width sOffset="87.455658477374811" a="4.1296498555304915" b="-0.005457625743479513" c="0.0073866419825293949" d="-0.0010253062379975226" /> - <width sOffset="90.067606828618338" a="4.1475181454104781" b="0.012144668099839769" c="-0.00071917972806444014" d="-0.0010810396212098921" /> - <width sOffset="91.079290574039661" a="4.1579492495532522" b="0.0073701580861708282" c="-0.0040289406062503407" d="-0.0010985514324258466" /> - <width sOffset="92.536107442156421" a="4.1567390089070875" b="-0.011363117011582567" c="0.00032617035231723612" d="-1.7531619309070564e-05" /> - <width sOffset="101.19921174893295" a="4.0713796547909515" b="-0.009659032724125825" c="-0.00014801975213513319" d="-1.1163904517759774e-05" /> - <width sOffset="103.02544165767443" a="4.0531783814850924" b="-0.010311367660000001" c="-6.6257261270236199e-05" d="4.5799087176280151e-05" /> - <width sOffset="104.55480344384314" a="4.0374174253410136" b="-0.010192665329236603" c="0.00021242037808879584" d="1.6637033478822545e-05" /> - <width sOffset="107.76885264707556" a="4.0074043981036125" b="-0.008311618963776031" c="7.2033336948108026e-05" d="-6.7518825141135282e-07" /> - <width sOffset="111.31913292382626" a="3.9787735503889912" b="-0.0078256731036828106" c="5.7667730654428672e-05" d="-3.2255601522350012e-06" /> - <width sOffset="113.99770718703763" a="3.9581636667262425" b="-0.0075861663660678497" c="-0.00017738582691681685" d="-6.6253791042847688e-06" /> - <width sOffset="121.35438506901221" a="3.8901165520226231" b="-0.011271817797656094" c="-0.00021254314052159625" d="-4.1247762840989277e-05" /> - <width sOffset="121.74398818584089" a="3.8856903153141551" b="-0.011456215804277662" c="0.00023471891329896008" d="-2.084748166081986e-05" /> - <width sOffset="131.4990663054981" a="3.776917359373495" b="-0.012828449083814624" c="-0.00069887622170366321" d="0.00010962777061916946" /> - <width sOffset="131.55897527361284" a="3.776146335472566" b="-0.012911006600396097" c="-0.00067915960248229629" d="0.00010963298552928466" /> - <width sOffset="136.37848494279717" a="3.7104192907015427" b="-0.011817881580445585" c="0.00038535759695811474" d="-3.3681131329101337e-06" /> - <width sOffset="140.80430598058902" a="3.6653718145559417" b="-0.0086047567685101668" c="0.00018394940532844394" d="1.8609763705868997e-08" /> - <width sOffset="141.67889644850615" a="3.6579868932182835" b="-0.0082829532712528318" c="0.00018388465506978617" d="3.7381629386162705e-08" /> - <width sOffset="144.27693991753924" a="3.6377092662418584" b="-0.0073267156580182867" c="7.5522126078924983e-06" d="8.4463186350380765e-06" /> - <width sOffset="151.79881762339943" a="3.586620465400217" b="-0.0057794582476176828" c="0.00019450427360716147" d="8.7762475731917111e-06" /> - <width sOffset="158.12237248476177" a="3.5600706348709785" b="-0.0022667248106670894" c="0.0011767848732804865" d="-4.3510470783859245e-05" /> - <width sOffset="159.27258753427179" a="3.5589540828663928" b="0.00026769417037979422" c="0.00085887481401979941" d="-4.900115696696374e-05" /> - <width sOffset="161.91873879829274" a="3.5647684579002186" b="0.0037837840889586097" c="0.00046212754256872584" d="-5.0069021057328418e-05" /> - <width sOffset="170.0701750589788" a="3.5991993541405405" b="0.0013371450357337344" c="-3.0044276395336251e-05" d="8.9345730642371511e-06" /> - <width sOffset="172.03865997318604" a="3.6017832350794623" b="0.0013227242382498686" c="5.1898255319335779e-06" d="6.8478492400024299e-06" /> - <width sOffset="173.70169187069925" a="3.6040288170886638" b="0.0013968027072876177" c="-1.3734026392988246e-05" d="1.0523293223419713e-06" /> - <width sOffset="182.15858114807932" a="3.6154956577251922" b="0.0013902929736464239" c="8.949224639292145e-06" d="-2.4077490047537341e-07" /> - <width sOffset="184.39301381705948" a="3.6186441684201052" b="0.0014266795105932657" c="-0.00010280095482423486" d="7.0932510617477223e-06" /> - <width sOffset="191.97126540562888" a="3.6266391684509349" b="0.0010906705487722756" c="-5.3625768006583536e-05" d="1.9129960543585808e-07" /> - <width sOffset="192.27850232297263" a="3.6269692062773373" b="0.001057773090372235" c="-5.3508116370448315e-05" d="2.2329780939798313e-07" /> - <width sOffset="195.39813795654356" a="3.6297551046209886" b="0.00073044092491875373" c="-0.00026320836987471903" d="8.7699465424834213e-06" /> - <width sOffset="202.39842349786591" a="3.6249785971189028" b="-0.0016653392475196437" c="-8.2655386920379173e-05" d="8.9623272418465965e-06" /> - <width sOffset="208.22982605135289" a="3.6142338305791193" b="-0.0017150342265377168" c="0.00034947443307385765" d="-4.0863255841307529e-06" /> - <width sOffset="210.32262953259135" a="3.6121377825971974" b="-0.00030596379640905613" c="0.00013717873411050828" d="-5.2477363684081771e-06" /> - <width sOffset="212.51834467275921" a="3.6120717825272188" b="0.00022054644202059402" c="0.00010278911426726988" d="-5.8441108310579477e-06" /> - <width sOffset="216.65853509005876" a="3.6143320698510908" b="0.00077115464472587297" c="0.0004786720100939209" d="-2.5789395573112216e-05" /> - <width sOffset="222.63826584765252" a="3.6305450832503872" b="0.0037293459542041534" c="8.1037087242170038e-06" d="-2.4475569811575323e-05" /> - <width sOffset="228.26757787096005" a="3.6474293836949614" b="0.0014937522717148868" c="-7.5832986602989832e-05" d="7.3269669024374882e-06" /> - <width sOffset="228.8814602179153" a="3.6483194891066977" b="0.0014089307443220754" c="-0.0004479006256832153" d="1.9372327716665996e-05" /> - <width sOffset="232.7581870225458" a="3.6481787224574713" b="-0.0011904052158268601" c="-0.00022767285189823584" d="1.7082236072125617e-05" /> - <width sOffset="237.3516736906987" a="3.6395623511225756" b="-0.0022007179544081788" c="-7.9771736340297891e-05" d="2.2999790381748638e-05" /> - <width sOffset="242.8781081974391" a="3.6288459113775073" b="-0.00097508170665599808" c="0.00031401166818969682" d="2.3623412831240317e-05" /> - <width sOffset="245.95352554194687" a="3.6295042659518821" b="0.0016266564664264387" c="0.00056288397033803434" d="-0.00011968438417019979" /> - <width sOffset="248.51165737139968" a="3.6353454239854401" b="0.0021568616299614228" c="-0.00014306041637184239" d="9.4866409882120479e-06" /> - <width sOffset="250.99122217709396" a="3.6399585556630227" b="0.0016223849659480166" c="-9.1307617306753822e-05" d="-5.4605263056851663e-06" /> - <width sOffset="252.99802937233241" a="3.6428025168100246" b="0.0011899382739855593" c="-0.0001026604565509547" d="3.7559720227971364e-07" /> - <width sOffset="263.11795054722569" a="3.644720125582543" b="-0.00077249529352228221" c="-9.2864343794655827e-05" d="9.3165317462287296e-07" /> - <width sOffset="273.03738546498022" a="3.6288293206134012" b="-0.0023398083515809454" c="-9.6351471028471408e-06" d="3.7536082281933185e-06" /> - <width sOffset="273.237871722119" a="3.6283598641607697" b="-0.0023432191548274175" c="-7.0441015062758195e-06" d="3.7510995016662712e-06" /> - <width sOffset="278.6538861022679" a="3.6160582631908125" b="-0.0020894256768209571" c="-0.00064103127965697707" d="0.00010587515264282724" /> - <width sOffset="283.3577928970123" a="3.6030655778405607" b="-0.001092112811078" c="0.00085560981543008892" d="0.0001051945318785714" /> - <width sOffset="283.57255672163274" a="3.6028715372571658" b="-0.00071004891831613799" c="0.00017977516174248179" d="4.5800796056218738e-07" /> - <width sOffset="285.6478013263573" a="3.6021763323724669" b="4.2023377065646123e-05" c="2.5163433704789018e-05" d="-2.0004739545276587e-06" /> - <width sOffset="289.37260136237683" a="3.602578600680324" b="0.00014621635562806284" c="-0.00060355637114590382" d="3.641687435846278e-05" /> - <width sOffset="293.47771407190561" a="3.5955270219129054" b="-0.0029680314279479621" c="-0.00020462367580281805" d="3.2821608123266719e-05" /> - <width sOffset="298.0268947907756" a="3.5808802210746982" b="-0.0027920375969045447" c="-4.7506522448082011e-05" d="8.6318138556381697e-07" /> - <width sOffset="303.59763524679886" a="3.564001452021897" b="-0.003240968899709467" c="-3.2620996335374429e-05" d="8.6722634522024847e-07" /> - <width sOffset="303.89566102764468" a="3.5630326853145307" b="-0.0032601816160354388" c="2.2033474957423052e-05" d="-5.8653243606112053e-06" /> - <width sOffset="313.71755642169217" a="3.5275796031730571" b="-0.0045248376410510866" c="-0.0001362952545018967" d="-1.523503771724567e-05" /> - <width sOffset="315.17285994767627" a="3.520658972716046" b="-0.0050183388108605417" c="-0.00042903797359430208" d="3.5112588243726426e-05" /> - <width sOffset="323.83747759658547" a="3.4678074892347954" b="-0.00454494302227261" c="0.00048073075293402612" d="3.6349912168211333e-05" /> - <width sOffset="324.19109110126675" a="3.4662620550583294" b="-0.0041913213967235997" c="0.00031672260632899468" d="-7.6229552039825133e-06" /> - <width sOffset="325.26409124086035" a="3.4621200014113525" b="-0.0035379641901435201" c="0.00037116671885905998" d="-1.2976276371671084e-05" /> - <width sOffset="333.95739877147878" a="3.4508885816982766" b="-2.6622923156310527e-05" c="6.8119808031557168e-05" d="-1.8062960874002053e-05" /> - <width sOffset="336.80090946283781" a="3.4509483734795952" b="-7.737120355489225e-05" c="1.1216114587702929e-06" d="2.7063932955514658e-06" /> - <width sOffset="342.71914941474" a="3.4510907646409339" b="0.0002202835837255257" c="-4.631421365975027e-05" d="-2.7032725445690042e-05" /> - <width sOffset="343.51052413570164" a="3.4512226882267218" b="9.6190112752984886e-05" c="-7.6117805720695895e-05" d="-1.7461039847884572e-05" /> - <width sOffset="344.07731994637209" a="3.4512495755290242" b="-6.9248636033954913e-06" c="-5.2245576685607774e-05" d="3.8277785359054932e-06" /> - <width sOffset="354.19724112126534" a="3.4497960264952994" b="0.00011167350639502169" c="7.8076047358196685e-05" d="2.8940281336786894e-06" /> - <width sOffset="356.58415026628757" a="3.4505467623783073" b="0.00053385911493406305" c="3.3364137932486682e-05" d="1.5916517838221693e-05" /> - <width sOffset="357.2437376593424" a="3.450917971731339" b="0.00059864595172236365" c="0.0042685403967511549" d="-0.00090334821811512676" /> - <width sOffset="360.39018610157837" a="3.4669211747340496" b="0.00063031499445850565" c="-0.00019888882831186721" d="1.8646738646899427e-05" /> - <width sOffset="364.31716229615864" a="3.4674585315750122" b="-6.9086378471778761e-05" c="2.0688716753551709e-05" d="1.86406129326154e-05" /> - <width sOffset="364.52656334479042" a="3.4674451431481192" b="-5.7969795037990249e-05" c="0.0022018463743040703" d="-0.00040394184431408344" /> - <width sOffset="367.86696045255178" a="3.476764137018463" b="0.0011302570343258819" c="-0.00080701223845565341" d="9.5864445364309832e-05" /> - <width sOffset="371.74227936744023" a="3.4746037581462224" b="-0.00080549802069656922" c="-8.6188207513316815e-05" d="1.0674418376562579e-05" /> - <width sOffset="374.43708347105195" a="3.4720160966000573" b="-0.0010374668002229486" c="-1.3205682823415072e-06" d="1.143355442661147e-05" /> - <width sOffset="375.63946776359012" a="3.4707866288163669" b="-0.00099105303246842442" c="-0.00060028848734420778" d="0.00016871135989464966" /> - <width sOffset="378.77292442013265" a="3.4669778183658582" b="0.00021649413559221532" c="-3.7589901567024523e-06" d="2.2913087165355504e-06" /> - <width sOffset="384.55700464594526" a="3.4685476692540602" b="0.00040298074843423564" c="2.5308618321551114e-05" d="2.8113021576365171e-06" /> - <width sOffset="390.55269190838925" a="3.4724795495025464" b="0.0010096501806258239" c="-9.5393427663632236e-05" d="7.9988758189556064e-06" /> - <width sOffset="394.67692582083856" a="3.4755821310466866" b="0.00063096652597088702" c="-1.408448805252167e-05" d="6.7716664739961469e-06" /> - <width sOffset="399.95619360287316" a="3.4795169890065916" b="0.0010484475686646784" c="-0.0004616310529085675" d="3.0210818964506484e-05" /> - <width sOffset="402.97758268341551" a="3.4793038868934261" b="-0.00091372163107402652" c="0.0019563282778442218" d="-0.00024500530612032935" /> - <width sOffset="404.79684699573181" a="3.4826412490093821" b="0.0037717359826999397" c="0.0006222486482306206" d="-0.00025146559280874543" /> - <width sOffset="407.6639700832871" a="3.4926436465613815" b="0.0011384235598818635" c="-0.00030074529547852483" d="2.4000284571630688e-05" /> - <width sOffset="412.98713879546108" a="3.4938018652275771" b="-2.3187133640435557e-05" c="-0.00047972159771303413" d="5.9779198662275315e-05" /> - <width sOffset="414.91676817062512" a="3.4924004024349036" b="-0.0012067988339027778" c="-0.00011402533887750849" d="5.9818735517579123e-05" /> - <width sOffset="417.70795186502301" a="3.489444443181851" b="-0.00044523954739040259" c="7.2885536314296377e-05" d="-3.9276214050949854e-06" /> - <width sOffset="425.03668934551843" a="3.4885500830847569" b="-9.7838921972522464e-06" c="0.00013620838482686343" d="-9.3920833687080317e-05" /> - <width sOffset="426.07675877598251" a="3.4885815804925313" b="-3.1246551076388263e-05" c="-4.1165412361183892e-05" d="-3.2530164149230326e-06" /> - <width sOffset="433.05405432187627" a="3.4852545598929083" b="-0.0010807894570095766" c="-5.426387289505644e-05" d="5.5917290625935227e-06" /> - <width sOffset="435.15661052041173" a="3.4827942270450039" b="-0.001234816357545123" c="-1.8537803241513971e-05" d="7.4121885025503935e-06" /> - <width sOffset="443.45893737886382" a="3.4755063511180304" b="-9.8941365748470098e-06" c="0.00058171225165836642" d="-9.0763813488813365e-05" /> - <width sOffset="445.27653169530504" a="3.4768651318372927" b="0.0012051842562558902" c="4.4023558668467765e-05" d="-0.00010285466273678321" /> - <width sOffset="447.89974593853231" a="3.4784728959892197" b="-0.00068715615050359284" c="4.7136071299152757e-05" d="3.0224075073160317e-06" /> - <width sOffset="453.02277807678939" a="3.476596062549425" b="3.3776476272278909e-05" c="0.00024853814740662182" d="-5.1780527749333749e-06" /> - <width sOffset="455.39645287019835" a="3.4780073317129556" b="0.0011261493419424456" c="0.00020792425412800351" d="-4.7731000112663938e-06" /> - <width sOffset="459.88587057614768" a="3.4868218856531219" b="0.0027044633480614922" c="0.00022163500912027732" d="-1.0057252428446132e-05" /> - <width sOffset="465.5163740450916" a="3.5072805412499068" b="0.0042437744967866644" c="5.2024359830822028e-05" d="-1.033846286590682e-05" /> - <width sOffset="472.62472634471413" a="3.5363621836365695" b="0.0034162230421710929" c="-8.8701387627225595e-06" d="-6.46193691035875e-06" /> - <width sOffset="475.6362952199849" a="3.5463934279415987" b="0.0031869764512229481" c="-5.1128985100021483e-05" d="-1.3376174058029873e-05" /> - <width sOffset="477.05830136509667" a="3.5507834776476455" b="0.0029604210452638651" c="-0.00020909284680844896" d="1.079352111706645e-05" /> - <width sOffset="483.80854352404407" a="3.5645594311649069" b="0.0016130116223124751" c="-0.00031217147621400961" d="2.5004583930311829e-05" /> - <width sOffset="485.75621639487821" a="3.5667015924864862" b="0.00068155517910762665" c="-0.00016916589568345634" d="2.6778894297485444e-05" /> - <width sOffset="488.88475683068953" a="3.5679981170998825" b="0.0004093870828941761" c="0.00012313237653378768" d="2.9241572173829648e-05" /> - <width sOffset="492.11512502632377" a="3.5715912361019622" b="0.0021203447728790816" c="0.00014992909859882646" d="-1.1349691195982366e-05" /> - <width sOffset="495.87613756977152" a="3.5810828514324942" b="0.0027664837353580428" c="1.5055760025910809e-05" d="-1.3033288079882554e-05" /> - <width sOffset="501.87601979650935" a="3.5954083896585365" b="0.0015396094551897437" c="-6.894965302383941e-05" d="-2.5950472559167687e-07" /> - <width sOffset="505.99605874466482" a="3.6005630906050738" b="0.00095824388245573143" c="-6.2438424465974983e-05" d="4.0231962805911421e-07" /> - <width sOffset="516.11597991955807" a="3.6042829168868176" b="-0.0001818919409561627" c="-4.9582064310687378e-05" d="9.6554621565525341e-07" /> - <width sOffset="523.74287830494598" a="3.6004398456571609" b="-0.00076971042287278871" c="-0.00021454383150522176" d="2.2656852768836494e-05" /> - <width sOffset="526.23590109445138" a="3.5975385727862701" b="-0.0014169876715955094" c="-5.714395818016989e-05" d="1.9866896418688284e-05" /> - <width sOffset="527.81692844382667" a="3.5952339509664735" b="-0.0014486992803905666" c="3.5841375191557413e-05" d="2.0003122546009783e-05" /> - <width sOffset="531.7375393907239" a="3.5913105666135978" b="-0.0002452437009731095" c="0.0010773765416642101" d="-0.00010257715236020922" /> - <width sOffset="536.35582226934469" a="3.6030528527375352" b="0.0031425538808775993" c="-0.00034354500568784056" d="-0.00010259596129521289" /> - <width sOffset="537.32208340142711" a="3.6056760680157218" b="0.0021912760958795849" c="-0.00015854723875034638" d="1.1597941478430722e-05" /> - <width sOffset="543.22090715272293" a="3.6154657397552934" b="0.0015314818082729803" c="-2.8258406374946876e-06" d="1.0769719785500098e-05" /> - <width sOffset="544.86729546359823" a="3.6180275557268597" b="0.0016097539749735919" c="-4.5058516493196629e-05" d="2.1666600283399175e-06" /> - <width sOffset="546.47574344423799" a="3.6205092061051163" b="0.0014816215456162842" c="-4.1122538526655415e-05" d="-1.0887106412454348e-06" /> - <width sOffset="554.14308408335182" a="3.6289610521024649" b="0.00065901079306413023" c="-0.00017909555571567627" d="8.1557502912083711e-06" /> - <width sOffset="556.5956646191313" a="3.6296203611565137" b="-7.2307539400157973e-05" c="-0.00011806854488870743" d="8.6704973896527668e-06" /> - <width sOffset="562.02562284681278" a="3.6271346892275074" b="-0.00058758762744518314" c="-0.00024904041441724419" d="2.7820753901948927e-05" /> - <width sOffset="566.62059819142337" a="3.6218756461998618" b="-0.0011140513864306752" c="3.0323982362531694e-05" d="1.5740812309620042e-05" /> - <width sOffset="566.71558579402461" a="3.621770112222503" b="-0.0011078645103910047" c="3.4763001482933885e-05" d="1.5760121282869325e-05" /> - <width sOffset="571.55065054613738" a="3.6190076203256303" b="0.00033361152461256361" c="0.0002491506408552016" d="1.9292381229637232e-05" /> - <width sOffset="576.83550696891791" a="3.63057705599567" b="0.0045835539426629223" c="0.00055667198053442981" d="1.9985850237387913e-05" /> - <width sOffset="577.67887458295468" a="3.634850609169153" b="0.0055651581257966567" c="0.0010464585630251706" d="-0.00014189138147772886" /> - <width sOffset="582.7413221758834" a="3.6714336482703391" b="0.0052511045227675596" c="-0.00064093032420565208" d="1.7676209864692995e-05" /> - <width sOffset="586.95542814381122" a="3.6835031112878842" b="0.0007909268610792608" c="-0.00041913161977272641" d="1.7540710778664995e-05" /> - <width sOffset="593.95561222360527" a="3.6745181538312153" b="-0.0024984500234182319" c="-0.0001219584592668268" d="2.4108274137078821e-05" /> - <width sOffset="597.07534931870441" a="3.6662686694763744" b="-0.0025554865768038018" c="8.4256413154202244e-05" d="3.1821746939731332e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="92.536107442156421" color="standard" width="0.17551168402094131" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.175512" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15327851038223128" weight="standard" type="solid"> - <type name="solid"> - <line length="598.83888561202775" space="0" width="0.153279" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="9.7204523541449817e-07" b="0.00011608382369719325" c="-6.6689377232553176e-05" d="3.9184034052443167e-05" /> - <width sOffset="2.457955920830897" a="0.00046527124098361128" b="0.00049844131087312549" c="5.792749385535169e-05" d="-5.2570200177549273e-06" /> - <width sOffset="10.119921174893296" a="0.0053203724883008618" b="0.0004602668988271552" c="-6.693055921336268e-05" d="-3.8186392168859669e-06" /> - <width sOffset="12.974771749398599" a="0.0060000198779150971" b="-1.5254289029493833e-05" c="-0.00011315484111112446" d="8.3834625993024863e-06" /> - <width sOffset="19.740416978935276" a="0.0033135475291969918" b="-0.00039515258230506784" c="0.00036999527793727738" d="-5.1367669075215348e-05" /> - <width sOffset="20.239842349786592" a="0.0032020857897765431" b="-6.4019775116796497e-05" c="0.00029199205778863979" d="-5.2017420021059959e-05" /> - <width sOffset="25.940594749121413" a="0.0026893742068692106" b="-0.0018063474600913266" c="5.9686515708787602e-05" d="6.5328286293259187e-06" /> - <width sOffset="30.359763524679888" a="-0.0035637616270753902" b="-0.0008960780239091903" c="0.00014229315269306873" d="5.614890080207777e-06" /> - <width sOffset="37.831721412823981" a="2.7340555296628821e-05" b="0.0021707794105829095" c="-0.0046210876353025834" d="0.00057396214062996711" /> - <width sOffset="38.082022625450648" a="0.00029017552605337116" b="-3.4670882399270072e-05" c="-0.00010820529084926232" d="3.6062742440382402e-05" /> - <width sOffset="40.084428892121814" a="7.6431572582524865e-05" b="-3.4217932755275376e-05" c="-0.0021411672166281323" d="0.00061164222436685823" /> - <width sOffset="40.479684699573184" a="-0.00023383300558199593" b="-0.0014401701162558254" c="-0.0014254854486423615" d="0.00061576342267306112" /> - <width sOffset="42.653471949611045" a="-0.0037753104560800388" b="0.001091520627839058" c="0.00049571663812604007" d="-9.9651543972461637e-05" /> - <width sOffset="47.301577334049462" a="0.0020009077127491892" b="-0.00075907306614360001" c="0.00023793040434727961" d="-1.5912089873230548e-05" /> - <width sOffset="50.599605874466477" a="0.0015146217146408958" b="0.00029110242733823826" c="6.0068315957618801e-05" d="-1.8803437242647988e-05" /> - <width sOffset="55.055479990715078" a="0.0023408322547848748" b="-0.00029360011902805974" c="-0.00056885791821751101" d="0.00013587147946104305" /> - <width sOffset="58.058334169293062" a="8.7368298444800985e-06" b="-3.4481180099462522e-05" c="-0.00045509532605012785" d="6.5880884208921155e-05" /> - <width sOffset="60.719527049359776" a="-0.0020643661020702808" b="-0.0010569791644319919" c="7.3769094395259897e-05" d="6.5853212809660567e-05" /> - <width sOffset="64.356619854353966" a="-0.0017644462623445101" b="0.0020930375483500085" c="0.00036374474241627033" d="-0.00015786140859879987" /> - <width sOffset="67.528686867124506" a="0.0034962914681497814" b="-0.00036452586012271186" c="-0.0023671874632278924" d="0.00085262271920360003" /> - <width sOffset="69.414790256920725" a="0.00010851398430133941" b="-0.00019472209141802553" c="-0.00047644193190213844" d="0.00051921840385183934" /> - <width sOffset="70.165509362742696" a="-8.6504426040523441e-05" b="-3.2208173224067618e-05" c="0.0026445649397028809" d="0.00017840291874833471" /> - <width sOffset="71.769116810952909" a="0.007398187584614746" b="0.0098257996381501504" c="0.0032430680362053187" d="-0.00071835202027448284" /> - <width sOffset="74.271288376525476" a="0.041034902476999591" b="0.012562715118489654" c="-0.00092468674214978702" d="2.3233037459637442e-05" /> - <width sOffset="78.024547252734877" a="0.076388383229296419" b="0.0066033857370102981" c="-0.00097279256159924507" d="-0.00049471414623198989" /> - <width sOffset="78.487002181449611" a="0.07918517708049988" b="0.0053862348363035474" c="0.00017039964491406801" d="0.0001126934845941125" /> - <width sOffset="80.959369399146368" a="0.095246602870420194" b="0.0082953662948422099" c="0.0010111577385096301" d="0.00010296074343827039" /> - <width sOffset="81.964354221812258" a="0.10470909199801737" b="0.010639732007735705" c="0.00083651118112368329" d="-0.00018802224517863299" /> - <width sOffset="86.467737173494072" a="0.15241651220410457" b="0.0067344606470729606" c="0.0042197524097527146" d="-0.00081246047517753326" /> - <width sOffset="90.067606828618338" a="0.19344168518223537" b="0.0055294020760615244" c="0.0033251308501593842" d="-0.00055344001797547179" /> - <width sOffset="91.079290574039661" a="0.20186590980498975" b="0.010558019523347036" c="0.0016421473998046291" d="-0.00055384961886419234" /> - <width sOffset="94.320231920976866" a="0.23447837549805728" b="0.0037498142569618058" c="0.0026152834369548043" d="-0.00026887992933870958" /> - <width sOffset="100.32393775957364" a="0.29307195352806747" b="0.0060776843683432395" c="0.0066350370366103101" d="-0.0015051282877357071" /> - <width sOffset="101.19921174893295" a="0.30246545880961051" b="0.014233378123681207" c="0.0027005841926564952" d="-0.0015113469774401481" /> - <width sOffset="103.02544165767443" a="0.32826049742234709" b="0.008975602365838593" c="0.001953968405006569" d="-0.00015245002269298068" /> - <width sOffset="107.76885264707556" a="0.39852919815972632" b="0.017222200111664462" c="8.5372839808447863e-05" d="-0.00013513780096276374" /> - <width sOffset="111.31913292382626" a="0.45470157135340905" b="0.012718365930148343" c="-0.0013471195253406433" d="-0.00013263757422963794" /> - <width sOffset="111.52024646253456" a="0.45720384152981142" b="0.012160423741739323" c="0.012535839325802912" d="-0.0041795549899942544" /> - <width sOffset="113.52098975014204" a="0.49824062975715755" b="0.012130470368597901" c="0.0026245704896111013" d="-0.00030442543652656293" /> - <width sOffset="113.99770718703763" a="0.50458691409774703" b="0.014425276671274275" c="0.0023983295984799252" d="-0.0003010256175779597" /> - <width sOffset="119.74931781509898" a="0.60961879409281217" b="0.012139084910903871" c="0.012959417825656376" d="-0.0042822433179876612" /> - <width sOffset="121.35438506901221" a="0.6447821769446036" b="0.020644288269536806" c="-0.00090008650426663477" d="0.00010046487961412205" /> - <width sOffset="128.60575474476778" a="0.78545953885504805" b="0.023438610361396717" c="-0.0012522953533694559" d="0.00013867049653580715" /> - <width sOffset="131.4990663054981" a="0.8461501495820154" b="0.01967458604066916" c="0.00027484419589406681" d="8.1952553089858246e-06" /> - <width sOffset="131.55897527361284" a="0.84732982193096085" b="0.019707605545447836" c="0.00027634955237623341" d="8.4882955225386276e-06" /> - <width sOffset="136.37848494279717" a="0.94968000527807384" b="0.022962834294620378" c="0.00091969232139456456" d="0.00012148939420745139" /> - <width sOffset="136.62850185193142" a="0.95548048933631557" b="0.023445493900672562" c="-0.00027895383866509676" d="2.5040704540214476e-05" /> - <width sOffset="140.80430598058902" a="1.0503434034217785" b="0.022425710564072721" c="0.00019142958729111612" d="2.1653981642004639e-05" /> - <width sOffset="141.67889644850615" a="1.0701176283501139" b="0.022810245491699261" c="0.00024338641153288628" d="2.3620286264291728e-05" /> - <width sOffset="142.80427591082525" a="1.0961297191908157" b="0.023447793414515212" c="-0.00031973134089714826" d="1.0893109894441499e-05" /> - <width sOffset="151.79881762339943" a="1.2890916779738069" b="0.020339935610306024" c="-2.7410139943915272e-05" d="1.1053652347938464e-05" /> - <width sOffset="157.80404923703711" a="1.4126430555665657" b="0.021206604317421485" c="-7.3084523592920276e-05" d="1.7487389709427584e-05" /> - <width sOffset="158.12237248476177" a="1.4193867691601523" b="0.021165391286934891" c="-0.00087217394619625542" d="6.9774108070347403e-05" /> - <width sOffset="161.91873879829274" a="1.4909859024505803" b="0.017560044185711429" c="-7.0367236977893037e-05" d="7.0711335089600227e-05" /> - <width sOffset="162.12965661243294" a="1.4946871616882191" b="0.017539797840240956" c="1.7491247771969241e-05" d="-4.4251041056399878e-06" /> - <width sOffset="169.64331451006339" a="1.6255856133817472" b="0.017053185857134456" c="-0.0073671383810506117" d="0.0012210446427593864" /> - <width sOffset="170.0701750589788" a="1.6316175505929125" b="0.011431163760720902" c="-0.0065357225040622562" d="0.0011620410486447481" /> - <width sOffset="172.03865997318604" a="1.6376578931051364" b="-0.00079128542132432761" c="0.00029950023591849201" d="0.0011701397500927782" /> - <width sOffset="174.58070564588525" a="1.6568033011369443" b="0.023415716999090775" c="0.0096547603448964119" d="-0.0075888627400521012" /> - <width sOffset="176.08421623321317" a="1.6880414287933285" b="0.00098290942823382179" c="0.066917412577302174" d="-0.044472109214581036" /> - <width sOffset="177.0865559852277" a="1.7114725559150687" b="0.0010894946184967537" c="0.028681119179964853" d="-0.010913373352095334" /> - <width sOffset="178.84065198850431" a="1.7427307008941693" b="0.00097183796673514389" c="0.24002940096739561" d="-0.47804351903783215" /> - <width sOffset="179.09123640741473" a="1.7505243508990653" b="0.031214377743240172" c="-0.017545423024220783" d="0.0058335391295385669" /> - <width sOffset="181.09591677055124" a="1.7895853661029122" b="0.031198937641524219" c="-0.013844625640055239" d="0.0040982397548666579" /> - <width sOffset="182.15858114807932" a="1.8120232133521532" b="0.015658436990797789" c="-0.00079430368445154492" d="0.0040824471348977686" /> - <width sOffset="183.35118279075672" a="1.8364925466851871" b="0.031183238723415812" c="-0.0083582276436754491" d="0.001773857587848573" /> - <width sOffset="184.39301381705948" a="1.8619139987989168" b="0.019543615292290862" c="-0.0027039118363335513" d="0.0017665235618858858" /> - <width sOffset="185.89633792973868" a="1.8911853328418538" b="0.023390845279913548" c="-0.00043745343855115934" d="-9.0110592072351236e-06" /> - <width sOffset="191.97126540562888" a="2.0151186922417086" b="0.017078196958122013" c="-0.00048958989546615047" d="-2.1091077352611742e-06" /> - <width sOffset="192.27850232297263" a="2.0203194690568256" b="0.016776759512958081" c="-0.00049205018686494285" d="1.6529374741490957e-07" /> - <width sOffset="193.47439406041229" a="2.0396792308008718" b="0.015600591195255031" c="-3.1133417188454653e-06" d="3.9913889093081251e-07" /> - <width sOffset="198.98586600187377" a="2.125633702705489" b="0.01560264611977176" c="0.0097154162205164343" d="-0.0064676924321103915" /> - <width sOffset="200.48899379437012" a="2.1490721219970998" b="0.00097049025579238344" c="0.079028374575171298" d="-0.070006895420327106" /> - <width sOffset="201.24055935293796" a="2.1647212536035045" b="0.0011301489122241507" c="0.016797613582008541" d="-0.0049449004147109361" /> - <width sOffset="202.39842349786591" a="2.1808736040074392" b="0.020140724888767274" c="-0.00041140190304857829" d="-0.0049441164923973305" /> - <width sOffset="203.49525126917257" a="2.1959457304547878" b="0.0013944722281667924" c="0.077273721403432846" d="-0.068415953372715693" /> - <width sOffset="204.24681616266344" a="2.2115977845424841" b="0.00161269411390424" c="0.0068089819454436153" d="-0.00099162715483500758" /> - <width sOffset="208.22982605135289" a="2.2633824839566152" b="0.0086585653199504637" c="-0.0053153413514641281" d="-0.00097857850200567869" /> - <width sOffset="208.73079656613729" a="2.2662631349305942" b="0.0025961209173719973" c="0.051886910083825614" d="-0.051778388059238893" /> - <width sOffset="209.23176790289421" a="2.274075800713427" b="0.015599009970119586" c="-0.00077481500520277624" d="2.2403176033301673e-05" /> - <width sOffset="212.51834467275921" a="2.3177692311577096" b="0.011232001531910556" c="-0.00055405639555630628" d="2.1931634833092362e-05" /> - <width sOffset="216.65853509005876" a="2.3563311161533971" b="0.0077720056562807088" c="-0.00073012305324117151" d="4.1876919575287394e-05" /> - <width sOffset="217.1594505731847" a="2.3600462977518353" b="0.0070720685801748994" c="0.00617678961742799" d="-0.0026344762754951364" /> - <width sOffset="218.66219661731702" a="2.3756822502611561" b="0.0077884769557273574" c="-5.8993424112344388e-05" d="8.1735670386970548e-06" /> - <width sOffset="222.63826584765252" a="2.4062309148907848" b="0.0077070039453289666" c="3.8874411569477332e-05" d="8.2669930717915258e-06" /> - <width sOffset="228.26757787096005" a="2.4523226755477334" b="0.0089305983763521436" c="-0.0001509183008694956" d="-2.353554364220059e-05" /> - <width sOffset="231.27288591162352" a="2.4771599605175068" b="0.0073857760452709651" c="0.018117911328327432" d="-0.011214919975996857" /> - <width sOffset="232.52509821627757" a="2.4927974038837628" b="4.5358429987150603e-06" c="-5.9179761907235515e-05" d="7.0087776621559864e-07" /> - <width sOffset="232.7581870225458" a="2.4927952547541334" b="-2.2938200221528718e-05" c="-5.379316672706128e-05" d="2.9675312121466651e-06" /> - <width sOffset="237.3516736906987" a="2.4918424685568543" b="-0.00032928879662066837" c="7.4600733874698774e-05" d="-2.9500230974767101e-06" /> - <width sOffset="242.8781081974391" a="2.4918031712234288" b="0.00022496914344944654" c="2.4798299417540636e-05" d="-3.5870566355812724e-06" /> - <width sOffset="250.99122217709396" a="2.4933450775639745" b="-8.0976378012115498e-05" c="-4.3692874298874171e-05" d="1.1360110658225819e-05" /> - <width sOffset="252.99802937233241" a="2.4930984223735648" b="-0.00011909185405697487" c="4.335365759725147e-05" d="-5.4920815042163679e-06" /> - <width sOffset="254.99709226844163" a="2.4929897275066728" b="-1.1601710137689077e-05" c="-4.8465508814969424e-05" d="1.8840841504698405e-06" /> - <width sOffset="263.11795054722569" a="2.4907083265231638" b="-0.00042600810530902871" c="-2.400207583083268e-06" d="2.4240728724403327e-06" /> - <width sOffset="273.03738546498022" a="2.4886123529051107" b="0.00024192581480908548" c="1.4231314020072321e-05" d="-3.9788195709571501e-07" /> - <width sOffset="273.237871722119" a="2.4886614245238583" b="0.00024758420229459895" c="-2.3778014115265721e-06" d="-4.1982890688785371e-07" /> - <width sOffset="278.6538861022679" a="2.4898658977322197" b="0.00018488299832501921" c="0.0006857360050756034" d="-0.00010254388204803972" /> - <width sOffset="283.3577928970123" a="2.49523568733458" b="-0.00017072567780758842" c="-0.00079525913542430522" d="-0.00010136480348563641" /> - <width sOffset="283.57255672163274" a="2.49516133741482" b="-0.00052633736341968333" c="-0.00011695702038593952" d="3.3717204323692325e-06" /> - <width sOffset="289.37260136237683" a="2.488831940787918" b="-0.0015427699779785753" c="0.00054807707516270527" d="-3.5045627880604091e-05" /> - <width sOffset="293.47771407190561" a="2.4893104368623371" b="0.0011853048122040092" c="0.00013035486779434306" d="-3.2386158737454846e-05" /> - <width sOffset="298.0268947907756" a="2.4943512914139783" b="0.00036062145653133724" c="-2.0819471710502952e-05" d="-4.2773199974052923e-07" /> - <width sOffset="303.59763524679886" a="2.4956401808886768" b="8.884009693667632e-05" c="-4.57294970343793e-05" d="-7.2861131129267567e-07" /> - <width sOffset="303.89566102764468" a="2.495662576576323" b="6.1388814428610383e-05" c="-0.00010026003576599985" d="6.0039393945390753e-06" /> - <width sOffset="313.71755642169217" a="2.4922823028929999" b="-0.00017050493240635626" c="6.2097195774002273e-05" d="1.5403976724624453e-05" /> - <width sOffset="314.65456869830632" a="2.4921897312062802" b="-1.3559557541356626e-05" c="-0.00021994615552758012" d="4.4864115754052762e-05" /> - <width sOffset="315.17285994767627" a="2.4921298664598952" b="-0.00020539691349273029" c="7.6039787059297315e-05" d="-5.4835102006273666e-06" /> - <width sOffset="324.19109110126675" a="2.4924399298526345" b="-0.00017180502554911548" c="0.00013025470560002139" d="3.848935718214854e-05" /> - <width sOffset="324.69136538249342" a="2.4923913987212618" b="-1.2580169800105283e-05" c="-8.7527521805302937e-05" d="5.2058030492424409e-06" /> - <width sOffset="333.95739877147878" a="2.4889013832499445" b="-0.00029374506392054094" c="5.0065934818618337e-05" d="1.1117040148298288e-05" /> - <width sOffset="336.80090946283781" a="2.4887265226260316" b="0.00026064323163405879" c="5.7811731856750027e-05" d="-9.6523140212534346e-06" /> - <width sOffset="342.71914941474" a="2.4902931351243609" b="-6.9302597252503674e-05" c="-1.8075319651704661e-05" d="2.0086804721057684e-05" /> - <width sOffset="344.07731994637209" a="2.4902159919922204" b="-7.2433316283684413e-06" c="3.4394317709225237e-05" d="-1.6212604505044114e-06" /> - <width sOffset="354.19724112126534" a="2.4919848188369031" b="0.00019077874743308261" c="-1.1459722044470573e-05" d="4.980130799765077e-08" /> - <width sOffset="356.58415026628757" a="2.4923755777443426" b="0.00013692332098293105" c="5.433214762834328e-05" d="-1.297268839657012e-05" /> - <width sOffset="360.33480724925812" a="2.4929689774837449" b="-2.9912535347884723e-06" c="0.00029489917160945646" d="-2.7099710543133052e-05" /> - <width sOffset="364.31716229615864" a="2.4959223856905082" b="0.0010564598920564405" c="-2.275365058158912e-05" d="-2.6780456039756757e-05" /> - <width sOffset="364.52656334479042" a="2.4961423658817536" b="0.0010434077429639613" c="-0.0022090247831946593" d="0.00039580200118218104" /> - <width sOffset="367.86696045255178" a="2.4897316312446915" b="-0.00046525584216386634" c="0.00071826290419864315" d="-0.00010400428849620119" /> - <width sOffset="371.74227936744023" a="2.492662517560424" b="0.00041590041175906443" c="-9.7194590902525659e-05" d="-1.881426150877361e-05" /> - <width sOffset="373.24215641197088" a="2.4930041825426676" b="-2.6349059251678381e-06" c="3.5451195665684308e-05" d="-3.6875577011241545e-06" /> - <width sOffset="374.43708347105195" a="2.4930453614083499" b="6.6292434758501682e-05" c="2.1492258203664264e-05" d="-1.4530877770601551e-06" /> - <width sOffset="384.55700464594526" a="2.4944113240715322" b="5.4847968866055538e-05" c="-2.661716989766477e-05" d="-1.8275998920770212e-06" /> - <width sOffset="390.55269190838925" a="2.4933894233059926" b="-0.00046142562397906775" c="0.00011177878951860568" d="-7.0151735533842695e-06" /> - <width sOffset="393.55185241846857" a="2.4928217292347417" b="1.9755743038462671e-05" c="-0.00031980667410494174" d="6.6470854748393787e-05" /> - <width sOffset="394.67692582083856" a="2.4925338093534557" b="-0.00044744176108894916" c="-0.00015602148457119903" d="2.5664748410719798e-05" /> - <width sOffset="402.97758268341551" a="2.4927479813057434" b="0.0022673697519415819" c="-0.0016610420896584612" d="0.00030088087349553107" /> - <width sOffset="404.79684699573181" a="2.4931870196236705" b="-0.00078888272289010485" c="-2.2177547287834803e-05" d="0.00030742356599728114" /> - <width sOffset="405.72643055393286" a="2.4926814692910297" b="-3.3156776937350724e-05" c="-0.00050019339230620988" d="0.00027858179545892" /> - <width sOffset="407.6639700832871" a="2.4927657742880696" b="0.0011659921302104252" c="-0.00012085814661948026" d="3.1159180785180824e-06" /> - <width sOffset="414.91676817062512" a="2.4960537525787161" b="-9.5406674302831156e-05" c="-4.3479499553078152e-05" d="2.556851189725083e-06" /> - <width sOffset="425.03668934551843" a="2.493285331951931" b="-0.0001898619869577223" c="6.718369002004197e-05" d="2.1254510732077639e-05" /> - <width sOffset="426.07675877598251" a="2.4931844511077599" b="1.8865262639273465e-05" c="1.7823423826241554e-05" d="-6.9413306539706915e-05" /> - <width sOffset="426.57694475851179" a="2.4931896600699419" b="-1.5403399944998331e-05" c="8.7554832307226133e-05" d="-4.9152472335480342e-06" /> - <width sOffset="435.15661052041173" a="2.4963982249721943" b="0.00040153514772842033" c="-2.9704921913981024e-05" d="-3.7814278378324547e-06" /> - <width sOffset="443.45893737886382" a="2.4955203911577102" b="-0.00087365072960383493" c="-0.00053952369146444145" d="9.439457415350205e-05" /> - <width sOffset="445.27653169530504" a="2.4927168621163904" b="-0.0018993814703801924" c="-2.5048524731140363e-06" d="0.00010535080016166109" /> - <width sOffset="447.89974593853231" a="2.4896188284435405" b="0.00026231351845781392" c="1.4026344634217531e-05" d="-5.2627008244424691e-07" /> - <width sOffset="455.39645287019835" a="2.492151877339388" b="0.00038388620196567634" c="2.7885217682381999e-06" d="-8.615913425404701e-07" /> - <width sOffset="459.88587057614768" a="2.4938535452313921" b="0.00035682809199901171" c="-8.6811682618060878e-05" d="4.4225610746366298e-06" /> - <width sOffset="465.5163740450916" a="2.493899947116351" b="-0.00020013922121315663" c="-9.5484147160025508e-06" d="3.9727598683560224e-06" /> - <width sOffset="470.38708275485294" a="2.4931576618531768" b="-1.0407393211494002e-05" c="-0.00011449966367633473" d="6.8752313510189436e-06" /> - <width sOffset="475.6362952199849" a="2.4909425008134849" b="-0.00064414836798869625" c="-1.2367693806529181e-05" d="1.4437488173145167e-05" /> - <width sOffset="477.05830136509667" a="2.4900430232854047" b="-0.00059174004270985583" c="0.00015012375348267127" d="-9.7322070019516323e-06" /> - <width sOffset="483.80854352404407" a="2.489895707006367" b="0.00010463684262457685" c="0.00027469476473850074" d="-2.3943269814845987e-05" /> - <width sOffset="485.75621639487821" a="2.4909646391052078" b="0.00090218659854997382" c="0.00013484984668742805" d="-2.5189036481797217e-05" /> - <width sOffset="492.11512502632377" a="2.4956775293064801" b="-0.00043842809524738879" c="-8.9088085661624561e-05" d="1.5402226888024647e-05" /> - <width sOffset="495.87613756977152" a="2.4935878291735381" b="-0.00045494746184340752" c="8.8103323595042411e-05" d="1.5590857724063227e-05" /> - <width sOffset="497.61455796805052" a="2.4931451062932819" b="-7.2745823077763642e-06" c="-6.0030655332372941e-05" d="1.4084962487743613e-05" /> - <width sOffset="501.87601979650935" a="2.4931139583819042" b="0.00024843988650690037" c="-3.0552232811871352e-05" d="1.3111791334536406e-06" /> - <width sOffset="505.99605874466482" a="2.4937106240590841" b="6.3457807888686016e-05" c="-1.3741675250117549e-05" d="4.8073616341900127e-07" /> - <width sOffset="516.11597991955807" a="2.4934437281022017" b="-6.6970916510879631e-05" c="-6.2811395598305869e-07" d="1.5735343786813965e-06" /> - <width sOffset="520.37187687875519" a="2.493268626825937" b="1.3185381473881539e-05" c="-0.00023879584517925984" d="1.9606449954006961e-05" /> - <width sOffset="523.74287830494598" a="2.4913505441859489" b="-0.00092837434660499474" c="0.00014653840290823682" d="-2.0848565992629156e-06" /> - <width sOffset="526.23590109445138" a="2.4899145418898385" b="-0.00023660035909860546" c="0.00013248552610580953" d="-2.7760732045128134e-07" /> - <width sOffset="531.7375393907239" a="2.4925766991659728" b="0.0011959666540863885" c="-0.00067835814188471676" d="0.00012230266758557365" /> - <width sOffset="533.98665368999491" a="2.4932265392504394" b="5.6634390516738589e-07" c="-0.00049092691040728519" d="0.00010771929755226625" /> - <width sOffset="536.35582226934469" a="2.491904784400687" b="-0.00051173863112265834" c="0.00025781076429844731" d="0.00010504898531336955" /> - <width sOffset="537.32208340142711" a="2.4917457899828483" b="0.00028072669903973302" c="7.9923782656833359e-05" d="-9.1449174597618462e-06" /> - <width sOffset="544.86729546359823" a="2.4944858064207165" b="-7.5056150551497478e-05" c="-3.1651143764096045e-05" d="-5.4185770248719041e-07" /> - <width sOffset="546.47574344423799" a="2.4942809428865114" b="-0.00018108011525971206" c="-3.2352790949635809e-05" d="2.2992729265307902e-06" /> - <width sOffset="554.14308408335182" a="2.4920269742322501" b="-0.00027169010667882267" c="0.00013346560645743102" d="-6.9451880059069169e-06" /> - <width sOffset="556.5956646191313" a="2.4920609883000195" b="0.00025765112084413398" c="8.1285289635334236e-05" d="-7.3130026033106336e-06" /> - <width sOffset="566.62059819142337" a="2.4954451969299565" b="-0.00031744439800485483" c="-3.4509168106085832e-05" d="4.7669384183290438e-06" /> - <width sOffset="566.71558579402461" a="2.4954147363691237" b="-0.00032387125315131663" c="-2.9347772552151499e-05" d="4.2563958961058079e-06" /> - <width sOffset="571.55065054613738" a="2.493643825032775" b="-0.00030915184521694301" c="4.6608058092179543e-05" d="7.2413594935562418e-07" /> - <width sOffset="574.54563224979302" a="2.4931554449695756" b="-1.048496813739648e-05" c="1.425462669373158e-05" d="-2.352591781010595e-06" /> - <width sOffset="576.83550696891791" a="2.4931779326028463" b="1.7790020323813979e-05" c="1.3318677135157092e-06" d="-1.5600929323056894e-07" /> - <width sOffset="586.95542814381122" a="2.4933326769989943" b="-3.1852349075649211e-06" c="-4.9845206458669735e-06" d="-2.4748743030163637e-07" /> - <width sOffset="593.95561222360527" a="2.4929812305250785" b="-0.00010935292474088462" c="6.1009559162900957e-05" d="-6.8150507886992714e-06" /> - <width sOffset="597.07534931870441" a="2.4930269396948601" b="7.2326893220602678e-05" c="-1.6629258454170764e-05" d="-1.7693109293465037e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="598.83888561202775"> - <left> - <lane id="4" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="2.4930930686561963" b="-3.916259838392111e-05" c="8.8480858773637427e-05" d="-6.6279302980916567e-06" /> - <width sOffset="7.6809764915433334" a="2.4950089050026643" b="0.00014698423180550119" c="-0.0016557244546995804" d="0.00053320980611432783" /> - <width sOffset="8.3563848815699657" a="2.4945171616474653" b="-0.001359882806082284" c="-0.0005702794261956013" d="0.00052172201886897514" /> - <width sOffset="9.6786755591643896" a="2.4929280965304499" b="-0.00013141442631141309" c="-0.0013304102074180237" d="0.00042711363173489727" /> - <width sOffset="12.456291021994275" a="2.4914516893231062" b="0.0023635838540964765" c="-0.00089058005628775546" d="7.3466960329558501e-05" /> - <width sOffset="18.476306056463272" a="2.4894335626817554" b="-0.00037157081910577094" c="0.00043843942974658093" d="7.2412008825883665e-05" /> - <width sOffset="21.013557714834405" a="2.4924960843699209" b="0.0032517801534433927" c="-0.00058394035422776596" d="2.6526086116982513e-05" /> - <width sOffset="28.596227231356579" a="2.4951433500510802" b="-0.0010283719614737757" c="2.0161476237079597e-05" d="2.6495394885020614e-05" /> - <width sOffset="32.325761889539876" a="2.4929629028647646" b="0.00022762131068606445" c="-0.00017984541869549829" d="-5.7550855108364952e-05" /> - <width sOffset="32.825287729491947" a="2.4930245560615258" b="4.8651278029207545e-06" c="0.0002413320694065425" d="-2.5360357440296441e-05" /> - <width sOffset="38.716148406249886" a="2.4962436612216932" b="0.00020798872913514732" c="-0.00020775486709907059" d="-2.4930493385188804e-05" /> - <width sOffset="39.620031007234616" a="2.4962435115502588" b="-0.00022868821038173406" c="-0.00022145952688504777" d="3.2259204466811345e-05" /> - <width sOffset="43.437058054570457" a="2.4939380332106724" b="-0.00050930186186849864" c="0.00014674560841174264" d="-2.63790516796803e-05" /> - <width sOffset="48.109253990293155" a="2.4920714120235843" b="-0.00086557117978504393" c="0.0012053709878832538" d="-0.00052319390198085701" /> - <width sOffset="48.836069581143192" a="2.4918781723732364" b="5.7445024244806022e-05" c="6.270234699804378e-05" d="-0.0005235307164318737" /> - <width sOffset="50.424905472869341" a="2.4900279222770161" b="-0.0037081095189387243" c="0.0028225922913174047" d="-0.00043440201586813083" /> - <width sOffset="53.919028565140934" a="2.4930007441204234" b="0.00010615294988790269" c="-0.0007519400312919496" d="-0.00042089061995659392" /> - <width sOffset="54.713689000016757" a="2.4923990508862106" b="-0.0018862796351416505" c="0.00026176065330691501" d="-8.0153977582532739e-06" /> - <width sOffset="58.955990756036499" a="2.4884958530036796" b="-9.8106603421356867e-05" c="0.0001598391019600742" d="-7.945389103912718e-06" /> - <width sOffset="62.392355444597342" a="2.4897237860448751" b="0.00071895246873900087" c="0.0010104241620306983" d="-0.00017628942701619304" /> - <width sOffset="66.484142646199302" a="2.4975056621955787" b="0.00013313890717557564" c="-0.00086786863886543315" d="0.00013915984658795331" /> - <width sOffset="69.075911930929806" a="2.4944437397777843" b="-0.0015611696919470303" c="0.00021338209413837892" d="0.00013917730285690306" /> - <width sOffset="70.342363629345641" a="2.4930915428231755" b="-0.00035101407263535972" c="0.00035159688720121449" d="4.6909023955311877e-06" /> - <width sOffset="70.840830896597026" a="2.493004515928245" b="3.0016466104742373e-06" c="-2.6366476553207186e-05" d="9.7033496825284659e-07" /> - <width sOffset="79.195833105823112" a="2.4917549830684722" b="-0.0002343765044725641" c="-3.2923184755494618e-06" d="1.9219183007194919e-06" /> - <width sOffset="80.849334546343243" a="2.4913671283383731" b="-0.00022950025086890952" c="0.00060851643067153264" d="-9.0772402350364185e-05" /> - <width sOffset="85.939346289942932" a="2.4939941047683858" b="-0.0010900426818036902" c="0.00027345050547749271" d="1.4122274743162877e-05" /> - <width sOffset="87.687520964767259" a="2.49299966584549" b="-4.4863107621995538e-06" c="4.9885542870995499e-06" d="-1.3196225912448945e-06" /> - <width sOffset="89.315754280716419" a="2.4929998900700987" b="1.2632223372385093e-06" c="7.1118247957791675e-08" d="-1.1930061116187865e-08" /> - <width sOffset="97.926818619089431" a="2.4930084236950956" b="-1.6582749687537972e-07" c="-0.00024775565026915677" d="2.7717606733956061e-05" /> - <width sOffset="99.435675455609726" a="2.4925393346291225" b="-0.00055851165982457392" c="-0.00012514305771418307" d="2.8697303492326261e-05" /> - <width sOffset="102.90984489403525" a="2.4902918680036112" b="-0.00038893130426289647" c="0.00025832393895905745" d="-1.3015867596231016e-05" /> - <width sOffset="107.58554799767182" a="2.4927903731822489" b="0.0011730942993216809" c="-0.0010010053481872307" d="0.00025098176567252143" /> - <width sOffset="109.33502870406699" a="2.4931228275509838" b="-2.4858111691455995e-05" c="-0.00070519756286519398" d="0.00024423479210795423" /> - <width sOffset="109.55559663050292" a="2.4930856574436016" b="-0.00030029981813969138" c="-0.00058672768395769191" d="0.00023867462782658664" /> - <width sOffset="111.90927773264298" a="2.4922405530369183" b="0.00090440011533434372" c="-0.00025687445586379759" d="1.6143701069114824e-05" /> - <width sOffset="119.06625742749429" a="2.4914738493621922" b="-0.00029173509025786346" c="0.0011104724519577815" d="-0.00017761959379356722" /> - <width sOffset="119.67551780539623" a="2.4916681423142544" b="0.00086360241639231753" c="0.00077944602956180856" d="-0.00017671779169955965" /> - <width sOffset="123.32191243070247" a="2.4966130043165897" b="-0.00050108395745233447" c="-0.00022788503210905727" d="3.7291735121045165e-05" /> - <width sOffset="128.32130210579783" a="2.4930719153977279" b="1.6541262789001622e-05" c="-0.00020576122611428669" d="4.21891034610305e-05" /> - <width sOffset="129.79543898028953" a="2.4927843132525407" b="-0.00031505832802897335" c="-5.4339104800768754e-05" d="2.0816765029148912e-05" /> - <width sOffset="134.16648075213504" a="2.4921074505111136" b="0.00040308040144882568" c="3.3095228861999841e-06" d="-1.7980818865904416e-06" /> - <width sOffset="138.77719560776791" a="2.4938600514649503" b="0.00031892432987412232" c="-2.2256077013531621e-06" d="-8.0014452638127947e-06" /> - <width sOffset="139.91536015518284" a="2.4942083594105284" b="0.00028276245275672251" c="-1.8882981754725695e-05" d="3.0510410290198649e-07" /> - <width sOffset="150.03528133007615" a="2.4954522468168978" b="-5.6864204458612587e-06" c="-9.0349043845580926e-06" d="1.8278125771061967e-07" /> - <width sOffset="160.15520250496945" a="2.4946588470267193" b="-0.00013239403715055919" c="-1.7424843108801145e-06" d="2.2882262592657291e-07" /> - <width sOffset="170.27512367986276" a="2.4933777310470511" b="-9.7358544278378523e-05" c="3.4015475820013743e-06" d="5.8842264822455346e-07" /> - <width sOffset="176.2833047496157" a="2.4930431930698589" b="7.238748822762384e-06" c="-6.3262955066214474e-05" d="1.4145366487378471e-06" /> - <width sOffset="179.73550997749589" a="2.4923724299311747" b="-0.00037898050050070718" c="-0.00041139342973098373" d="9.2587385579996845e-05" /> - <width sOffset="180.39504485475607" a="2.4919700908522087" b="-0.00080081441071593517" c="-0.00023209097989296843" d="9.1754046574546401e-05" /> - <width sOffset="183.66290488928155" a="2.490076620477196" b="0.00062180331190125567" c="0.00019387824323907954" d="-2.1134653557448758e-05" /> - <width sOffset="190.51496602964937" a="2.4966407663997945" b="0.00030187147367491981" c="-0.00023716341953757057" d="-2.1242191773912804e-05" /> - <width sOffset="190.88941834271236" a="2.49671943382008" b="0.00011532329952645585" c="-9.7294197673264971e-05" d="4.6667623660905148e-06" /> - <width sOffset="199.14002523177544" a="2.4936688987232447" b="-0.0005371143156205245" c="0.00061641931512130838" d="-9.8660516387426601e-05" /> - <width sOffset="200.63488720454268" a="2.4939138759150259" b="0.00064440525574025592" c="0.00017405965185145973" d="-0.00010146347603481338" /> - <width sOffset="202.38619640513616" a="2.4950312821656793" b="0.00032047880897039037" c="-0.00010752346444187589" d="5.6294931055155652e-06" /> - <width sOffset="210.75480837943587" a="2.4934823416245475" b="-0.0002964033690626474" c="2.801275453556939e-05" d="7.233739490927057e-06" /> - <width sOffset="213.39329990884494" a="2.4930281694206107" b="2.4954794656869162e-06" c="-0.00021620866673300771" d="2.4460400551283141e-05" /> - <width sOffset="218.67244967381146" a="2.4906145145826963" b="-0.00023520869142947508" c="0.0015153243183023519" d="-0.00028827416647512138" /> - <width sOffset="220.87472955432918" a="2.4943668015211227" b="0.0022447069887837228" c="-0.00038926566768246435" d="-0.00028798324864897382" /> - <width sOffset="222.66685005067211" a="2.495481825553175" b="-0.0019252588082637623" c="7.6360460111362185e-05" d="1.9428745943760324e-05" /> - <width sOffset="229.95793215513004" a="2.493034364918417" b="0.0022867312671403062" c="-0.0043258682503961986" d="0.0020468324054151114" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="3" type="driving" level="false"> - <link /> - <width sOffset="0" a="0" b="0" c="0.0062382978511284926" d="-5.7197541183496333e-05" /> - <width sOffset="7.6809764915433334" a="0.34212384993408129" b="0.085708919658266755" c="0.0065117773265635087" d="-0.00059703527759274815" /> - <width sOffset="8.3563848815699657" a="0.40279894330601973" b="0.093688077361004068" c="0.0053070110498621434" d="-0.00059607182476838043" /> - <width sOffset="12.456291021994275" a="0.83503899333488896" b="0.10714604590083471" c="0.0010947375789033748" d="-0.00024242515336303345" /> - <width sOffset="18.225626967850189" a="1.4430853244579342" b="0.095570327391689733" c="-0.00038532360413088098" d="-0.00011763052637827671" /> - <width sOffset="18.476306056463272" a="1.4670167402940586" b="0.095354966543110348" c="-0.00046832568369529451" d="-0.00011564434782801294" /> - <width sOffset="21.013557714834405" a="1.7040524458921626" b="0.090745014195895729" c="0.00022498012879383449" d="-6.975842511911197e-05" /> - <width sOffset="28.596227231356579" a="2.3746642882210582" b="0.082124239359061255" c="-0.0013620105351890397" d="-7.0181375094689993e-05" /> - <width sOffset="32.325761889539876" a="2.6583639889434298" b="0.069036359854602242" c="-0.0016507887720450373" d="1.3864874893782782e-05" /> - <width sOffset="38.716148406249886" a="3.0357379249919076" b="0.049636604577925229" c="-0.0013833779188948052" d="1.3415555046383598e-05" /> - <width sOffset="39.620031007234616" a="3.0794832703441037" b="0.047168663791574458" c="-0.0014008977163613226" d="-4.3774142807209652e-05" /> - <width sOffset="41.786661501738536" a="3.1746589013041056" b="0.040481743107239399" c="0.0037065790091224335" d="-0.00093523737394193981" /> - <width sOffset="43.437058054570457" a="3.2473616100300573" b="0.045074170230079473" c="-0.00092276097234870579" d="-0.00087659911779544662" /> - <width sOffset="47.484934829269264" a="3.3565555244735332" b="-0.0054863105478794669" c="0.008394753064565769" d="-0.00067948442481822839" /> - <width sOffset="48.109253990293155" a="3.3562370274281768" b="0.0042011629004744498" c="0.0056937379528669832" d="-0.00018266957452203801" /> - <width sOffset="48.836069581143192" a="3.3622281416115865" b="0.012188266345973312" c="0.0052972452676641017" d="-0.00018162489603001984" /> - <width sOffset="50.424905472869341" a="3.3942371884987903" b="0.027645691777871743" c="-0.00082377431565021537" d="-0.00027075359659372558" /> - <width sOffset="54.462471195143621" a="3.4746083288821223" b="0.0077521817068926663" c="0.00055301137139095971" d="0.00049891113431722585" /> - <width sOffset="54.713689000016757" a="3.4765986256772132" b="0.0081244937345048129" c="-0.0010880786025006944" d="8.6035912123320205e-05" /> - <width sOffset="58.394284012464027" a="3.4960514043413329" b="0.003611469008917019" c="-0.0008724896304387695" d="7.7748205731198789e-05" /> - <width sOffset="58.955990756036499" a="3.497818486788602" b="0.0027048944414776073" c="-0.00074020603778889081" d="7.7839530021142452e-05" /> - <width sOffset="62.392355444597342" a="3.5015313159580588" b="0.00037518681380570643" c="-0.00087024582450379723" d="0.00024618356793343078" /> - <width sOffset="66.484142646199302" a="3.5053616758049091" b="0.0056188148481672185" c="0.0018660228302068702" d="-6.926570563168982e-05" /> - <width sOffset="66.74088398543779" a="3.50692608661927" b="0.006563288070403045" c="0.0023459098547182521" d="-0.00046735799728945821" /> - <width sOffset="69.075911930929806" a="3.5290921594276869" b="0.0098742123574431725" c="-0.00092973605067827767" d="-0.00046638074004069991" /> - <width sOffset="69.703892904345139" a="3.5348108266215603" b="0.0081547333871923727" c="-0.00074142538267698915" d="-0.00013017487325409535" /> - <width sOffset="70.342363629345641" a="3.5396812663832846" b="0.0070487812274122076" c="-0.0006001947181107194" d="4.3115272207120356e-06" /> - <width sOffset="79.195833105823112" a="3.5580338890692955" b="-0.0025649667689163075" c="-0.00048418300109006392" d="3.3152867453291061e-06" /> - <width sOffset="80.849334546343243" a="3.5524839117445137" b="-0.0041389687000767082" c="-0.0010700125719737257" d="9.6009607396063169e-05" /> - <width sOffset="81.662956371309747" a="3.5484597399912872" b="-0.0056894704069118413" c="-0.00048902170196529933" d="0.00013218382784069066" /> - <width sOffset="85.939346289942932" a="3.5255237301496196" b="-0.0026200258471060153" c="0.00015575520770734944" d="2.7289150746843491e-05" /> - <width sOffset="89.315754280716419" a="3.5195034838614019" b="-0.00063493991764864387" c="0.00043437868114020773" d="2.7806581072414406e-05" /> - <width sOffset="90.248453688057907" a="3.519311715779482" b="0.00024791874503910481" c="0.0011835253130041269" d="-0.00028120921880010237" /> - <width sOffset="93.649189780355869" a="3.522782472004403" b="-0.0014589256410681094" c="-9.703576900671926e-06" d="3.5316956821510063e-07" /> - <width sOffset="99.435675455609726" a="3.5140839378408981" b="-0.0015357488873257354" c="4.0376304389591384e-06" d="-9.6575142071820992e-07" /> - <width sOffset="102.18851814190907" a="3.5098667135280754" b="-0.0015354747711653909" c="-8.3584501530804318e-05" d="-4.3853090344068517e-06" /> - <width sOffset="102.90984489403525" a="3.5087139985825733" b="-0.0016629034356697829" c="-0.00017744333609571563" d="3.7327862055763819e-05" /> - <width sOffset="107.58554799767182" a="3.5008751513513801" b="-0.000874040647264321" c="0.0014229129548994916" d="-0.00022666977121266451" /> - <width sOffset="109.55559663050292" a="3.5029426010120619" b="0.0020931963498389558" c="0.00012303155124972638" d="-0.00022132674905676517" /> - <width sOffset="111.90927773264298" a="3.5056650196865107" b="-0.0010059771299557507" c="-8.4327553575991098e-05" d="1.2041777007089056e-06" /> - <width sOffset="119.06625742749429" a="3.4945872540141827" b="-0.0020279958421579691" c="-0.0010791992130779761" d="0.00019496747255510132" /> - <width sOffset="119.67551780539623" a="3.4929951728209656" b="-0.003125907753599123" c="-0.00072177626324362973" d="0.00019481759914731611" /> - <width sOffset="123.32191243070247" a="3.481445377215473" b="-0.00061867228714374022" c="0.00048355192021697741" d="-1.9191927673278001e-05" /> - <width sOffset="129.28792267478468" a="3.4908901668451859" b="0.0031017682674976624" c="8.9784493687255118e-05" d="-2.1324876835265804e-05" /> - <width sOffset="129.79543898028953" a="3.4924847032213115" b="0.0031764243318252077" c="4.1503040730514297e-05" d="-2.1362825319272789e-05" /> - <width sOffset="134.16648075213504" a="3.5053778671550297" b="0.0023147725640541811" c="-2.3306143970673142e-05" d="1.2520215964696912e-06" /> - <width sOffset="138.77719560776791" a="3.5156778856374027" b="0.0021797056181242077" c="-2.5324198253515184e-05" d="7.4553849708118905e-06" /> - <width sOffset="139.19159263845631" a="3.5165773309201933" b="0.0021625578986949161" c="-0.00061211723922574915" d="4.275181661445026e-05" /> - <width sOffset="139.91536015518284" a="3.5178380777781193" b="0.0013436820105649588" c="-0.00053502625236142947" d="3.4362165808403527e-05" /> - <width sOffset="149.68022435197565" a="3.5119376022510003" b="0.00072432736706712895" c="2.1458117476942708e-05" d="1.9737315828212904e-05" /> - <width sOffset="150.03528133007615" a="3.5121983683150626" b="0.00074702965702756383" c="4.3664403035055661e-05" d="1.9492206497867507e-05" /> - <width sOffset="154.1645037217105" a="3.5173998717906709" b="0.0021046840069221715" c="2.7668861736311245e-05" d="-8.5163224181957488e-07" /> - <width sOffset="160.15520250496945" a="3.5308182944789408" b="0.0023445043002292406" c="1.4081227252818746e-05" d="-9.0304042316669023e-07" /> - <width sOffset="170.27512367986276" a="3.5550506714842092" b="0.0023520574127443451" c="-1.3824216503437103e-05" d="-7.6556608774793373e-07" /> - <width sOffset="179.73550997749589" a="3.575416590503945" b="0.0018849405673415811" c="0.0003272284178222373" d="-9.1938415017004378e-05" /> - <width sOffset="180.39504485475607" a="3.5767757383297361" b="0.0021966018357807513" c="0.00014557042101288306" d="-9.1891849825769399e-05" /> - <width sOffset="183.66290488928155" a="3.5823016925101983" b="0.000204095194881485" c="-0.00028174976733098822" d="2.0996850306229958e-05" /> - <width sOffset="186.94621434902922" a="3.5806776760655246" b="-0.00096700239654413662" c="-0.00035816671272058143" d="3.5136079506677762e-05" /> - <width sOffset="190.51496602964937" a="3.574262067831282" b="-0.0021809403927687296" c="1.6759938867843719e-05" d="3.501713941992334e-05" /> - <width sOffset="190.88941834271236" a="3.5734495981714605" b="-0.0021536590612811568" c="-0.00010763509993233435" d="9.1081853484764045e-06" /> - <width sOffset="199.14002523177544" a="3.5534691291829308" b="-0.0020697176303136763" c="-0.00048039357719639042" d="0.00011243546410180804" /> - <width sOffset="200.63488720454268" a="3.5496772771799656" b="-0.0027522127922785852" c="2.3384022041748491e-05" d="0.00011559398773696922" /> - <width sOffset="201.06581657527499" a="3.5485048605203366" b="-0.0026676616154016233" c="-1.5639007914057143e-05" d="0.00010230648628262551" /> - <width sOffset="202.38619640513616" a="3.5451907736659569" b="-0.0021738762035019852" c="0.00013811261391917957" d="-4.7864828586983737e-06" /> - <width sOffset="209.43002362444599" a="3.5350580974522128" b="-0.00094064467303962482" c="0.00080814124287769426" d="-5.0421287896924979e-05" /> - <width sOffset="210.75480837943587" a="3.5351130447675665" b="0.00093510537694187104" c="0.000608047332262427" d="-4.8641262475190817e-05" /> - <width sOffset="218.67244967381146" a="3.5564917199381556" b="0.0014158840287646374" c="-0.0018914675044615229" d="0.00026409330455122953" /> - <width sOffset="220.87472955432918" a="3.5532570231661316" b="-0.0030726109948772317" c="-0.00014676602458018467" d="0.00026375404823513393" /> - <width sOffset="222.05700076790549" a="3.549855082669501" b="-0.0023136467791499736" c="0.0012938277310543176" d="0.00030737713854381515" /> - <width sOffset="222.66685005067211" a="3.5489950193343658" b="-0.00039261138776815408" c="-0.0001577392618255746" d="-3.4856052932135566e-08" /> - <width sOffset="226.00351999094505" a="3.5459275408928193" b="-0.001446423290050207" c="-0.0017919379302343517" d="0.0002939385802688597" /> - <width sOffset="229.95793215513004" a="3.5303627513233815" b="-0.0018292616701540685" c="0.019048583795775825" d="-0.011681953947662074" /> - <roadMark sOffset="0" color="standard" width="0.30015685778938728" weight="bold" type="solid"> - <type name="solid"> - <line length="230.99465072922249" space="0" width="0.30015700000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="2" /> - </link> - <width sOffset="0" a="3.7952567993580146" b="0.03847347843882145" c="-0.0055174826165863286" d="0.00032860582009831547" /> - <width sOffset="2.0473913785389186" a="3.8537190072804601" b="0.020012946682438665" c="-0.0037044014499217361" d="0.00012383166393065695" /> - <width sOffset="8.3563848815699657" a="3.8636293202220111" b="-0.011942379285205838" c="-0.0013663674505952352" d="0.0001225380264418615" /> - <width sOffset="17.218603550703506" a="3.735770349933385" b="-0.0072884608730521237" c="0.0023483073394089888" d="0.00011953943262449501" /> - <width sOffset="18.225626967850189" a="3.730934184510962" b="-0.002195186470425603" c="-6.3909081844591123e-06" d="-5.2551943985553346e-06" /> - <width sOffset="18.476306056463272" a="3.730383412779144" b="-0.0021993813138374285" c="-7.3352767218112336e-06" d="-3.4238832013508494e-06" /> - <width sOffset="28.596227231356579" a="3.7038260758780628" b="-0.0033997946019551292" c="-0.00011183473973046662" d="-3.5531017082202707e-06" /> - <width sOffset="35.735722736948219" a="3.6725597381500847" b="-0.0055400121679962562" c="-0.00039757799398112487" d="4.8367165964459697e-05" /> - <width sOffset="38.716148406249886" a="3.6537970008603322" b="-0.0066209879965240977" c="3.3111568241289094e-05" d="4.897724327559602e-05" /> - <width sOffset="41.786661501738536" a="3.6351971879709581" b="-0.0050323691949562578" c="-0.004907736534697389" d="0.00094044047441020813" /> - <width sOffset="47.484934829269264" a="3.6211703681265215" b="0.030645588791335401" c="-0.0087936855861628204" d="0.00074332578143316999" /> - <width sOffset="48.095519656328293" a="3.6367728986157246" b="0.020738373202507199" c="-0.0055112311459958822" d="0.00046481928697540193" /> - <width sOffset="48.836069581143192" a="3.6492970381287826" b="0.013340430060780664" c="-0.0044803740809405152" d="0.00046377460847763874" /> - <width sOffset="54.462471195143621" a="3.6651267972805859" b="0.0069679589007159391" c="-0.001308569473335742" d="-0.00030589012243929082" /> - <width sOffset="54.66250889444234" a="3.6664658407291784" b="0.0064077117928684549" c="-0.00013755817884159233" d="-5.3778813401238724e-05" /> - <width sOffset="58.394284012464027" a="3.6856674807010954" b="0.0031342446688971091" c="-5.2284169386884608e-06" d="-4.549110699723801e-05" /> - <width sOffset="58.955990756036499" a="3.6874182951920789" b="0.0030853116878251687" c="-8.1528747964520814e-05" d="-4.5440421008181197e-05" /> - <width sOffset="66.74088398543779" a="3.6850573102937112" b="-0.0064457640259877741" c="-0.0016760123601284056" d="0.00035265187061042473" /> - <width sOffset="69.075911930929806" a="3.6653578088413146" b="-0.0085044853162536318" c="0.00079380738327721335" d="0.00035273101534295711" /> - <width sOffset="69.703892904345139" a="3.6604175538975974" b="-0.0070901843311454819" c="0.0003913871210521242" d="1.6525148548642593e-05" /> - <width sOffset="73.869753023358044" a="3.6388678242383552" b="-0.0029689046892758426" c="0.00038921382351474908" d="4.8073622555922597e-06" /> - <width sOffset="79.195833105823112" a="3.6348224020793634" b="0.0015861764936170673" c="0.00046653266404413687" d="4.4801201957546659e-06" /> - <width sOffset="81.662956371309747" a="3.6416426143907872" b="0.0039699710780109997" c="0.00015304735629013294" d="-3.1694100248521959e-05" /> - <width sOffset="89.315754280716419" a="3.6667823354233429" b="0.00074392708035663771" c="-0.00057441682767964543" d="-3.1620084819850903e-05" /> - <width sOffset="90.248453688057907" a="3.6669508384303562" b="-0.00041011099807068858" c="-0.0013342340175991618" d="0.00027739571505257157" /> - <width sOffset="93.649189780355869" a="3.661035578766092" b="0.00013938274494267879" c="-0.00017991128717832969" d="-4.1666733477316165e-06" /> - <width sOffset="93.915380095013234" a="3.661059854487922" b="4.2715743188658008e-05" c="5.7336952393834771e-05" d="-3.9999187153182513e-06" /> - <width sOffset="99.435675455609726" a="3.6623700440884948" b="0.00031007306847609948" c="-3.2511946264511942e-06" d="-5.0516534540893351e-06" /> - <width sOffset="102.18851814190907" a="3.6630936037090773" b="0.00017732655918293363" c="3.4676030344278432e-05" d="-1.6320958420132882e-06" /> - <width sOffset="109.55559663050292" a="3.6656294072225051" b="0.00042250828111925487" c="8.6317647957623199e-06" d="-1.9698543272299097e-06" /> - <width sOffset="113.16438573194239" a="3.6671739847651215" b="0.00040784635962600184" c="3.2380008673564435e-05" d="-4.6277558217964699e-06" /> - <width sOffset="119.67551780539623" a="3.6699248332431282" b="0.00024092847059103723" c="-6.133975071061069e-05" d="-4.1095698262290242e-06" /> - <width sOffset="127.13519575825183" a="3.6666028095958225" b="-0.0013602742723795376" c="-0.0020249564919502944" d="0.00032410177451576108" /> - <width sOffset="129.28792267478468" a="3.6575237065986785" b="-0.0055727413737205606" c="0.00011842106435417139" d="0.00032623472368180638" /> - <width sOffset="129.79543898028953" a="3.6547685977150701" b="-0.0052004525575161022" c="0.00059505414004126344" d="0.00032960743377602052" /> - <width sOffset="131.11564501037503" a="3.649698516489666" b="-0.0019058025702311829" c="5.9078979414286922e-05" d="-2.7259898509856538e-07" /> - <width sOffset="139.19159263845631" a="3.6380169571694907" b="-0.0010049025609409944" c="0.00064853600318877066" d="-3.5569030623122891e-05" /> - <width sOffset="139.91536015518284" a="3.6376158844915141" b="-0.00012202135679995106" c="0.00056977157891686188" d="-3.5606586945477177e-05" /> - <width sOffset="149.68022435197565" a="3.6576000800281232" b="0.00081992380613981188" c="-2.3167601129136537e-05" d="-2.0981736987019678e-05" /> - <width sOffset="150.03528133007615" a="3.6578873399113929" b="0.00079553695240943691" c="-4.5009984237769603e-05" d="-2.1088231960277567e-05" /> - <width sOffset="154.1645037217105" a="3.6589201257041628" b="-0.00065486879454318501" c="-4.8785475170040069e-05" d="-7.4439322059320258e-07" /> - <width sOffset="160.15520250496945" a="3.6530861255302902" b="-0.00131953237359242" c="-5.7263359291397317e-05" d="-9.3382397435685561e-07" /> - <width sOffset="163.55515712227555" a="3.6479011270343005" b="-0.0017413021701387071" c="-0.0001067988885952558" d="4.527577277330797e-06" /> - <width sOffset="170.27512367986276" a="3.6327507539825517" b="-0.0025633037574331941" c="-1.576345180012974e-05" d="4.6670403957845241e-06" /> - <width sOffset="180.39504485475607" a="3.6100329077496061" b="-0.0014484594486101655" c="0.00012531484524639554" d="4.5377622143876052e-06" /> - <width sOffset="184.61142906142106" a="3.6064936240368293" b="-0.00014969278875368326" c="4.6954697583596273e-05" d="6.1835255136500208e-07" /> - <width sOffset="186.94621434902922" a="3.6064079540534961" b="7.967781717550538e-05" c="0.0003345202759977342" d="-1.3520876649100008e-05" /> - <width sOffset="190.51496602964937" a="3.6103382055905513" b="0.0019507122206237097" c="0.00019232453633902561" d="-1.3380933181931938e-05" /> - <width sOffset="200.63488720454268" a="3.6359076282567995" b="0.0017321938307005864" c="-0.00021475694610461197" d="-1.3020832886238497e-05" /> - <width sOffset="201.06581657527499" a="3.6366131590886344" b="0.0015398497686226484" c="-4.3128560927484445e-05" d="2.6666856981542834e-07" /> - <width sOffset="203.93556378281687" a="3.6406832579501711" b="0.0012989020402964496" c="2.8968555930044462e-05" d="2.4439036685910111e-06" /> - <width sOffset="209.43002362444599" a="3.6490999343507768" b="0.0018385728504700558" c="-0.0007019217560688476" d="4.8078708706244402e-05" /> - <width sOffset="210.75480837943587" a="3.6504155229401318" b="0.00023192465061553985" c="-0.00051659560529077032" d="4.6060110316251288e-05" /> - <width sOffset="220.50709759604911" a="3.6462667088276985" b="0.0032978819157434358" c="0.0079036636748658073" d="-0.0057883719653797914" /> - <width sOffset="220.87472955432918" a="3.6482597166512369" b="0.0067622086573126718" c="0.0015196627321297158" d="-0.0057884845351622045" /> - <width sOffset="221.15141049828287" a="3.6501244212402533" b="0.0062737659046575352" c="0.00078792500175948554" d="1.1553024270732386e-05" /> - <width sOffset="222.05700076790549" a="3.6564606350280426" b="0.007729264022751983" c="0.00031420462129184041" d="-3.2070066033802107e-05" /> - <width sOffset="226.00351999094505" a="3.6898868117409447" b="0.0087108179983058018" c="0.0015683589840091755" d="-0.00032604350235561705" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="47.484934829269264" color="standard" width="0.29356967890012498" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29357" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="3.6621985515402544" b="-0.0019614054402406905" c="0.00068355579186105326" d="-0.00018273279209102413" /> - <width sOffset="2.0473913785389186" a="3.6594798602139451" b="-0.0014603372045512257" c="-0.00023354783509312228" d="2.204136407664933e-05" /> - <width sOffset="6.9311692798320337" a="3.6493449560678757" b="-0.0021643840421728781" c="0.0003602369856679174" d="-2.6996223521073345e-05" /> - <width sOffset="8.3563848815699657" a="3.6469138169297732" b="-0.0013020606852047929" c="0.00023359655642924917" d="-3.8210409478997688e-05" /> - <width sOffset="14.239630109073573" a="3.6395579042277411" b="-0.002521130957292575" c="-0.00034093104330215873" d="4.6355119489006328e-05" /> - <width sOffset="17.218603550703506" a="3.6302474592326552" b="-0.0033182746901585826" c="-0.00038345746694827163" d="4.9353713306548485e-05" /> - <width sOffset="18.476306056463272" a="3.6255656847540423" b="-0.0040486201043804723" c="-0.00019112206740103379" d="5.0123607898049269e-05" /> - <width sOffset="22.326763392215071" a="3.6100044704551761" b="-0.0032910337429776365" c="0.00027322911515612123" d="-2.3440404190146717e-05" /> - <width sOffset="27.077362558781942" a="3.5980232727112709" b="-0.0022820523874928014" c="0.00015020400153493638" d="1.2008255673748219e-05" /> - <width sOffset="28.596227231356579" a="3.5949457333280641" b="-0.0017426659518240614" c="0.00020159520993149959" d="1.0092078201165295e-05" /> - <width sOffset="35.735722736948219" a="3.5964524492518883" b="0.0026791624605352338" c="0.00062739344402888665" d="-4.182818947125848e-05" /> - <width sOffset="37.185945766943405" a="3.6015297555749712" b="0.0042349708302149361" c="0.00054461239454212671" d="-4.9663956969557087e-05" /> - <width sOffset="38.716148406249886" a="3.6091073940238148" b="0.0055528380142170694" c="0.00031439294659623676" d="-4.8159459117041359e-05" /> - <width sOffset="42.432997018414767" a="3.6316168813198164" b="0.0058939764637537806" c="-0.00019606425169513806" d="-3.561370805054956e-05" /> - <width sOffset="48.095519656328293" a="3.6522388514691846" b="0.00024776875651121716" c="-0.0027219186449257094" d="0.00024289278641523212" /> - <width sOffset="48.836069581143192" a="3.6510282433741148" b="-0.0033840469862037037" c="-0.0021849202569495479" d="0.000242425240270472" /> - <width sOffset="53.394214945583485" a="3.6131662948613048" b="-0.0081920336806118738" c="0.0014206163317733948" d="0.00014139781476858921" /> - <width sOffset="54.66250889444234" a="3.6053500194741819" b="-0.0039061708322560562" c="0.00060403834683966028" d="-0.00011071349426810779" /> - <width sOffset="56.543574486048783" a="3.5994026834194486" b="-0.0028089477934931453" c="0.00015622694707961003" d="1.3603663025315086e-05" /> - <width sOffset="58.955990756036499" a="3.5937265250613439" b="-0.0018176690897082244" c="0.00025606940416411428" d="1.383885766794686e-05" /> - <width sOffset="61.885939884879008" a="3.5909471821203098" b="3.9274816989776778e-05" c="0.00013915582419574721" d="4.6453787931860238e-07" /> - <width sOffset="69.075911930929806" a="3.5985959887964327" b="0.0021123716188030609" c="0.00014774206871737448" d="1.5305526465737189e-06" /> - <width sOffset="70.267725991476937" a="3.6013259899316314" b="0.0024710558547050461" c="0.00030323955875779618" d="-4.4025588898732099e-05" /> - <width sOffset="73.869753023358044" a="3.6121036819837018" b="0.002941966979719152" c="3.6193144270795814e-05" d="-3.2307802605676264e-05" /> - <width sOffset="78.161869535133064" a="3.6228431124587948" b="0.0014671087428085004" c="-0.00013356500628021743" d="1.8582333757085895e-06" /> - <width sOffset="79.195833105823112" a="3.6242193117607471" b="0.0011968658453056537" c="-0.0001282744781027102" d="4.963365347684954e-07" /> - <width sOffset="88.14904729903742" a="3.6250088359665953" b="-0.00098071283466858112" c="-0.0005080121274248302" d="0.00036349412246264079" /> - <width sOffset="89.222601363970284" a="3.6238202423387156" b="-0.00081466888621413371" c="0.00036882227291223181" d="-4.1580140143678055e-06" /> - <width sOffset="89.315754280716419" a="3.6237475506374257" b="-0.0007460633883187729" c="0.0003674788312273263" d="-4.2320288207847983e-06" /> - <width sOffset="93.915380095013234" a="3.6276786970478545" b="0.0023658613633864736" c="6.8505960366277235e-05" d="-4.3987834212112179e-06" /> - <width sOffset="99.435675455609726" a="3.6420865987385729" b="0.002720066531121469" c="-7.9209408764001116e-09" d="-4.6815877355481483e-06" /> - <width sOffset="109.55559663050292" a="3.6647606043685501" b="0.0012815426227873149" c="-0.0001238750693249048" d="-8.8362802473265029e-06" /> - <width sOffset="111.84865163353095" a="3.6669413643844551" b="0.00057405175929593657" c="-8.2372142429516257e-06" d="3.5970943659608615e-07" /> - <width sOffset="113.16438573194239" a="3.6676832232787886" b="0.00055424393166967256" c="-5.1891978688861976e-05" d="3.0176109312234465e-06" /> - <width sOffset="119.67551780539623" a="3.6699250030574344" b="0.0002622862838603427" c="5.7197228181830244e-06" d="3.2195603186583889e-06" /> - <width sOffset="127.13519575825183" a="3.6735363210862766" b="0.00088509550494264414" c="0.0019494189111532916" d="-0.00032499178402335265" /> - <width sOffset="129.79543898028953" a="3.6835683418051333" b="0.0043571551759576683" c="-0.00062417741149016037" d="-0.00032836449411261502" /> - <width sOffset="130.15248377975524" a="3.6850295246699902" b="0.0037858558873301021" c="-0.0011135835803940237" d="-0.00032775874322099786" /> - <width sOffset="131.11564501037503" a="3.6873500114934927" b="0.00072856956762430746" c="-0.00021921279827270861" d="2.1212895398174492e-06" /> - <width sOffset="135.56587774328091" a="3.6864378598727359" b="-0.0010964926827581102" c="-0.00029828923592544029" d="1.1986288340915533e-05" /> - <width sOffset="139.91536015518284" a="3.6770119230014386" b="-0.0030110305437280388" c="-0.00014872333150247127" d="1.1865257846988358e-05" /> - <width sOffset="144.99595750458298" a="3.6594312154612374" b="-0.0036034224551304552" c="-0.00027592247032322726" d="2.5674720957150783e-05" /> - <width sOffset="150.03528133007615" a="3.6375510704606633" b="-0.004428335785992131" c="0.00011492833963436743" d="2.4521303309409037e-05" /> - <width sOffset="153.5056285985055" a="3.6245921799422978" b="-0.0027447003028558785" c="0.0003743540547802407" d="-3.6013102271213066e-05" /> - <width sOffset="158.94689190044494" a="3.6149394130501484" b="-0.0018695395155541915" c="-6.3736522906903935e-05" d="-4.1053809783188265e-06" /> - <width sOffset="160.15520250496945" a="3.6125801298671596" b="-0.0020415482960867148" c="-5.9661818656246807e-05" d="7.8046307896200836e-06" /> - <width sOffset="163.55515712227555" a="3.6052560270246428" b="-0.0021765858774702453" c="5.9955004716122523e-05" d="2.3432295379290695e-06" /> - <width sOffset="170.27512367986276" a="3.594047964097669" b="-0.0010533482934672136" c="0.00010731533195792232" d="2.2526042724470255e-06" /> - <width sOffset="171.19062267170318" a="3.5931752983547414" b="-0.00085119015458793744" c="3.6630474136344987e-06" d="-1.2134141131134994e-06" /> - <width sOffset="180.39504485475607" a="3.584704689090783" b="-0.0010921640674845157" c="-3.074054570584639e-05" d="-1.4148555923350168e-06" /> - <width sOffset="183.74885379054399" a="3.5806426350967562" b="-0.0013461029342685127" c="-0.00011451898444369581" d="2.3055234344726769e-07" /> - <width sOffset="184.61142906142106" a="3.5793964617008047" b="-0.0015431508045275" c="2.1836616269800591e-05" d="4.1499620056172856e-06" /> - <width sOffset="190.51496602964937" a="3.5719013069612231" b="-0.00085142396246556072" c="0.00010293975050772145" d="2.2664750238385672e-06" /> - <width sOffset="193.05461123694749" a="3.570440058059452" b="-0.00028470815770576593" c="4.1028454540526787e-05" d="-1.7649119792573201e-07" /> - <width sOffset="200.63488720454268" a="3.5705625368457774" b="0.00030688199640002375" c="3.8104367178074688e-05" d="-1.565163068748021e-07" /> - <width sOffset="203.93556378281687" a="3.5719849536046384" b="0.00055330689625759065" c="-3.3246764653322465e-05" d="-2.3337514056479525e-06" /> - <width sOffset="210.37125436876761" a="3.5735467761719697" b="-0.00016460362485551426" c="-7.7356665793331053e-05" d="2.0786216653712639e-07" /> - <width sOffset="210.75480837943587" a="3.5734722732966189" b="-0.00022385280558094014" c="-7.5365175448674192e-05" d="3.2636189314484401e-07" /> - <width sOffset="220.50709759604911" a="3.5644241340256149" b="-0.0016007007376070076" c="-0.0071385015773909192" d="0.0058347584375507923" /> - <width sOffset="220.87472955432918" a="3.5631607831802712" b="-0.0044836235502487302" c="-0.00070346190376048448" d="0.0058346055694169351" /> - <width sOffset="221.15141049828287" a="3.5619899786267779" b="-0.0035329343463525401" c="6.6558260491317978e-05" d="3.4568009983888186e-05" /> - <width sOffset="225.35479004534136" a="3.5508829546355711" b="-0.0011411108416359179" c="0.0021934363063539275" d="-0.0004244049197362646" /> - <width sOffset="229.14329840547794" a="3.5549644809316989" b="-0.0027955984607737202" c="-0.010700460112993988" d="0.0058551307921208768" /> - <width sOffset="230.44717883083763" a="3.5461067169836746" b="-0.00083684271317062918" c="0.073453542498708904" d="-0.088515062816657247" /> - <roadMark sOffset="0" color="standard" width="0.17551168402094131" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.175512" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15327851038223128" weight="standard" type="solid"> - <type name="solid"> - <line length="230.99465072922249" space="0" width="0.153279" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="2.493093068653244" b="-1.2993571376702234e-05" c="-1.9668665949998192e-05" d="3.9754392733437604e-06" /> - <width sOffset="4.4927468625066922" a="2.4929981972772266" b="5.1003788418248208e-05" c="0.00023175182005850687" d="-3.0810082486468243e-05" /> - <width sOffset="6.9311692798320337" a="2.4940538362633804" b="0.00063164008750251494" c="-0.00026448160777271942" d="1.8227505111806084e-05" /> - <width sOffset="8.3563848815699657" a="2.4944696018722716" b="-1.1173254303060987e-05" c="-0.00019090302006409337" d="2.3692085137306625e-05" /> - <width sOffset="14.239630109073573" a="2.4926207421911402" b="0.00020270036129304767" c="0.0001273799924835298" d="-6.0873443830695826e-05" /> - <width sOffset="16.23786335831096" a="2.4930487068535099" b="-1.7421083733617365e-05" c="0.00035633245285297642" d="-4.3550633415791391e-05" /> - <width sOffset="18.476306056463272" a="2.4943066954656228" b="0.00092319069985161498" c="7.5765018547948757e-05" d="-3.9002680283728164e-05" /> - <width sOffset="22.326763392215071" a="2.4967581510718349" b="-0.00022811310930847054" c="-0.00026012419207033672" d="3.4561331804461873e-05" /> - <width sOffset="27.077362558781942" a="2.4935093488807398" b="-0.00035964428783504671" c="2.1394129917809657e-05" d="-8.8732805971029027e-07" /> - <width sOffset="28.596227231356579" a="2.4930093439145473" b="-0.00030079577568425594" c="1.9412087649284189e-05" d="8.5063595554792787e-07" /> - <width sOffset="37.185945766943405" a="2.4923969939705959" b="0.00022098105566466936" c="-5.7867303581608968e-05" d="8.6864034534042144e-06" /> - <width sOffset="38.716148406249886" a="2.4926307656955959" b="0.00010490181961941847" c="-1.741371442269616e-05" d="7.2842101642348387e-06" /> - <width sOffset="42.432997018414767" a="2.4931541306053875" b="0.00027734683399751464" c="3.7262146842286198e-05" d="-5.2615409022573979e-06" /> - <width sOffset="48.836069581143192" a="2.4950764570094313" b="0.00010737220874396103" c="-6.3472651371465776e-05" d="-5.0238507392936168e-06" /> - <width sOffset="53.394214945583485" a="2.49377134900947" b="-0.00078439989013238606" c="-0.00042267911048437373" d="9.6003574762498021e-05" /> - <width sOffset="56.543574486048783" a="2.4901075093585305" b="-0.00059011243161869939" c="0.00030740357778477622" d="-2.8313582530787809e-05" /> - <width sOffset="58.955990756036499" a="2.4900754119790456" b="0.00039872424563830444" c="0.00010148260342534719" d="-2.8573078298648617e-05" /> - <width sOffset="61.885939884879008" a="2.491396158651856" b="0.00025753647008741262" c="8.8884632690744588e-05" d="-1.519875851005074e-05" /> - <width sOffset="66.898903296632398" a="2.4930061725473465" b="2.8619095270698142e-06" c="0.00022681046729509583" d="-2.8827015308275976e-05" /> - <width sOffset="69.075911930929806" a="2.4937899140771655" b="0.0005805332207766134" c="3.9375627178082121e-05" d="-2.985445607696715e-05" /> - <width sOffset="70.267725991476937" a="2.4944871917555762" b="0.00054717240588694586" c="-0.0002173923419361467" d="1.5701685468327618e-05" /> - <width sOffset="78.161869535133064" a="2.4929836406006496" b="5.0389161102806085e-05" c="-9.1786673586568039e-05" d="-1.8464350505919846e-05" /> - <width sOffset="78.412870616139116" a="2.4929902136473459" b="8.2220483040365555e-07" c="-0.00013520969022013654" d="1.0698034993506599e-05" /> - <width sOffset="79.195833105823112" a="2.492913104610917" b="-0.00019123136900641921" c="-0.00010954801958871824" d="1.2159082989677576e-05" /> - <width sOffset="88.14904729903742" a="2.4911460479349676" b="0.00077117275991950675" c="0.00061010967485976525" d="-0.00035083870294119437" /> - <width sOffset="89.222601363970284" a="2.4922430166921004" b="0.00086810009453155697" c="-0.0002259658941692038" d="1.6813430177371192e-05" /> - <width sOffset="89.315754280716419" a="2.4923219355274115" b="0.00082643902424528633" c="-0.00022069732654892121" d="1.7016032827813324e-05" /> - <width sOffset="95.225295731068286" a="2.493010187299622" b="7.3544157715545525e-07" c="-7.1435748602845874e-05" d="3.9798051284383764e-06" /> - <width sOffset="99.435675455609726" a="2.4920439683222488" b="-0.0003891542458581798" c="-1.8933666345246938e-05" d="3.6247087158779663e-06" /> - <width sOffset="109.55559663050292" a="2.4899233907408416" b="0.0003412810884120802" c="7.957037189049e-05" d="8.7868592858310597e-06" /> - <width sOffset="111.84865163353095" a="2.4912303002958751" b="0.00084480615442641429" c="-3.6407458140907744e-05" d="-4.0913039816018259e-07" /> - <width sOffset="119.67551780539623" a="2.4954160033787947" b="0.00019970376845749606" c="-4.7943403999408314e-05" d="-1.8645011416953134e-07" /> - <width sOffset="129.79543898028953" a="2.4923337326375217" b="-0.00082794780752482348" c="-6.5934877103587686e-05" d="-5.3073569191090118e-07" /> - <width sOffset="130.15248377975524" a="2.4920296885780928" b="-0.00087523419359876887" c="7.1180297726807325e-05" d="-1.1364865730074445e-06" /> - <width sOffset="135.56587774328091" a="2.4891973372481297" b="-0.00020449385731857598" c="0.00016012068315601069" d="-1.10014853741014e-05" /> - <width sOffset="139.91536015518284" a="2.4904318167750068" b="0.00056401212281418202" c="1.8793712010493392e-05" d="-1.0886644924908532e-05" /> - <width sOffset="144.99595750458298" a="2.4923547426844603" b="-8.8054878187053195e-05" c="0.00016090866548549936" d="-2.4696108035111e-05" /> - <width sOffset="148.99558491540404" a="2.4929965057442365" b="1.3902180134801705e-05" c="0.00023756155515303963" d="-3.2875415678716037e-05" /> - <width sOffset="150.03528133007615" a="2.4932308083846788" b="0.00040127409484693247" c="0.00013247754784816672" d="-3.4054162752295645e-05" /> - <width sOffset="153.5056285985055" a="2.4947955614086332" b="9.038575430032501e-05" c="-0.0002261951654813316" d="2.6480242828309517e-05" /> - <width sOffset="158.94689190044494" a="2.4928563388142218" b="-1.9159991472159944e-05" c="5.6283017459531064e-05" d="-5.4274784659219236e-06" /> - <width sOffset="160.15520250496945" a="2.4929057867242053" b="9.3082150184867554e-05" c="3.4307908832419968e-05" d="-2.2588656014890815e-05" /> - <width sOffset="161.94612322235048" a="2.49305277494277" b="-1.384724108245694e-06" c="8.2192945202065246e-05" d="-5.8126689742789209e-06" /> - <width sOffset="170.27512367986276" a="2.4953845822073566" b="0.00015807168056610268" c="-6.3613883019964131e-05" d="-5.5088849972090177e-06" /> - <width sOffset="171.19062267170318" a="2.495471752383823" b="2.7743164780937371e-05" c="3.1095036355125737e-05" d="-2.0428666142440215e-06" /> - <width sOffset="180.39504485475607" a="2.4967684761000557" b="8.0943366120381829e-05" c="-2.5488834670955003e-05" d="-1.9798768493422755e-06" /> - <width sOffset="183.74885379054399" a="2.4966785570004699" b="-0.00015683516544065198" c="2.4133752074861071e-05" d="-3.625284784279147e-06" /> - <width sOffset="190.51496602964937" a="2.4955992942753538" b="-0.00032815141617121711" c="-5.4672071208778302e-05" d="-1.8794504605628234e-06" /> - <width sOffset="193.05461123694749" a="2.4943824965298447" b="-0.00064221296962723676" c="1.018793999008281e-05" d="5.6351576120750325e-07" /> - <width sOffset="200.63488720454268" a="2.4903451988848833" b="-0.00039061834253037187" c="2.2357857514594376e-05" d="5.6971151024861101e-07" /> - <width sOffset="210.37125436876761" a="2.4891872802071235" b="0.0002067708391516568" c="3.8050614071834597e-05" d="-1.9719019761967802e-06" /> - <width sOffset="210.75480837943587" a="2.4892720744909775" b="0.00023508948915861635" c="3.1526384705269508e-05" d="-2.1038722393748367e-06" /> - <width sOffset="220.87472955432918" a="2.4926993938703257" b="0.0002267881758759218" c="-3.238860689400005e-05" d="-2.2668115645260567e-06" /> - <width sOffset="223.61038333902934" a="2.4930310092551791" b="-1.3129584296150271e-06" c="0.0009681800985770195" d="-0.0001962613718333473" /> - <width sOffset="225.35479004534136" a="2.4949330622229411" b="0.0015848433301994371" c="-0.0017498695084863206" d="0.00026271155788705383" /> - <width sOffset="229.14329840547794" a="2.490106856263103" b="-0.0003620113216471401" c="0.0093062969514329449" d="-0.0060168241539694791" /> - <width sOffset="230.14233645692661" a="2.4930341171572543" b="0.00021691631031540461" c="0.030459569528702463" d="-0.031392085711583875" /> - <width sOffset="230.44717883083763" a="2.4950415202392886" b="0.010035957844731425" c="-0.05950017559069562" d="0.062978107897226007" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5174682" s="0" t="7.3674047067367345" orientation="none" validLength="8.4830206233871994" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.4830206233871994" s="0" distance="0" tStart="7.3674047067367345" tEnd="7.4315314478239829" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273610138" s="8.4830206233871994" t="7.4315314478239829" orientation="none" validLength="71.501792824757345" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="71.501792824757345" s="8.4830206233871994" distance="0" tStart="7.4315314478239829" tEnd="7.0484520376422122" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542045594" s="79.98481344814455" t="7.0484520376422122" orientation="none" validLength="14.773419478122833" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.773419478122833" s="79.98481344814455" distance="0" tStart="7.0484520376422122" tEnd="7.0644956938587491" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810481050" s="94.758232926267382" t="7.0644956938587491" orientation="none" validLength="7.9906324618417699" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.9906324618417699" s="94.758232926267382" distance="0" tStart="7.0644956938587491" tEnd="7.1550278812772605" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078916506" s="102.74886538810915" t="7.1550278812772605" orientation="none" validLength="43.471307284505997" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="43.471307284505997" s="102.74886538810915" distance="0" tStart="7.1550278812772605" tEnd="7.2038641016864755" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742169" s="146.22017267261515" t="7.2038641016864755" orientation="none" validLength="9.9998157351905377" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.9998157351905377" s="146.22017267261515" distance="0" tStart="7.2038641016864755" tEnd="7.334351653047972" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742170" s="156.21998840780569" t="7.334351653047972" orientation="none" validLength="13.528823070973658" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.528823070973658" s="156.21998840780569" distance="0" tStart="7.334351653047972" tEnd="7.3812938892775923" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742171" s="169.74881147877934" t="7.3812938892775923" orientation="none" validLength="49.598642885549339" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="49.598642885549339" s="169.74881147877934" distance="0" tStart="7.3812938892775923" tEnd="7.2009972999026006" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742172" s="219.34745436432868" t="7.2009972999026006" orientation="none" validLength="28.273249847084287" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="28.273249847084287" s="219.34745436432868" distance="0" tStart="7.2009972999026006" tEnd="6.8719998937990843" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742173" s="247.62070421141297" t="6.8719998937990843" orientation="none" validLength="117.42005713484028" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="117.42005713484028" s="247.62070421141297" distance="0" tStart="6.8719998937990843" tEnd="6.5126404596648806" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742174" s="365.04076134625325" t="6.5126404596648806" orientation="none" validLength="34.16153668112554" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="34.16153668112554" s="365.04076134625325" distance="0" tStart="6.5126404596648806" tEnd="6.5362957210122223" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742175" s="399.20229802737879" t="6.5362957210122223" orientation="none" validLength="36.988859448961136" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="36.988859448961136" s="399.20229802737879" distance="0" tStart="6.5362957210122223" tEnd="6.3773967483085015" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742176" s="436.19115747633992" t="6.3773967483085015" orientation="none" validLength="25.200780792927901" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="25.200780792927901" s="436.19115747633992" distance="0" tStart="6.3773967483085015" tEnd="6.7011546468197283" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742177" s="461.39193826926783" t="6.7011546468197283" orientation="none" validLength="19.175102591045402" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.175102591045402" s="461.39193826926783" distance="0" tStart="6.7011546468197283" tEnd="6.8467467560511173" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742178" s="480.56704086031323" t="6.8467467560511173" orientation="none" validLength="60.833645584642568" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="60.833645584642568" s="480.56704086031323" distance="0" tStart="6.8467467560511173" tEnd="6.9205851712398481" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742179" s="541.4006864449558" t="6.9205851712398481" orientation="none" validLength="35.645249765982044" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="35.645249765982044" s="541.4006864449558" distance="0" tStart="6.9205851712398481" tEnd="6.7707664566803496" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742180" s="577.04593621093784" t="6.7707664566803496" orientation="none" validLength="16.919834162770712" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.919834162770712" s="577.04593621093784" distance="0" tStart="6.7707664566803496" tEnd="6.6086686011767943" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742181" s="593.96577037370855" t="6.6086686011767943" orientation="none" validLength="5.186756620776805" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.186756620776805" s="593.96577037370855" distance="0" tStart="6.6086686011767943" tEnd="6.6538183144416889" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742182" s="599.15252699448536" t="6.6538183144416889" orientation="none" validLength="15.627514491847364" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.627514491847364" s="599.15252699448536" distance="0" tStart="6.6538183144416889" tEnd="7.3789070827731154" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742183" s="614.78004148633272" t="7.3789070827731154" orientation="none" validLength="7.4885224628865217" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.4885224628865217" s="614.78004148633272" distance="0" tStart="7.3789070827731154" tEnd="7.9132372742867805" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742184" s="622.26856394921924" t="7.9132372742867805" orientation="none" validLength="9.2521634287440975" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.2521634287440975" s="622.26856394921924" distance="0" tStart="7.9132372742867805" tEnd="8.4570683002397509" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742185" s="631.52072737796334" t="8.4570683002397509" orientation="none" validLength="10.018044783682626" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.018044783682626" s="631.52072737796334" distance="0" tStart="8.4570683002397509" tEnd="8.7391567295169832" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742186" s="641.53877216164597" t="8.7391567295169832" orientation="none" validLength="56.644349047273636" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="56.644349047273636" s="641.53877216164597" distance="0" tStart="8.7391567295169832" tEnd="8.410759701463693" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742187" s="698.1831212089196" t="8.410759701463693" orientation="none" validLength="79.352945346269848" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="79.352945346269848" s="698.1831212089196" distance="0" tStart="8.410759701463693" tEnd="8.5019013244624517" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742188" s="777.53606655518945" t="8.5019013244624517" orientation="none" validLength="52.297469691295419" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="52.297469691295419" s="777.53606655518945" distance="0" tStart="8.5019013244624517" tEnd="8.3724170530536917" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5174741" s="246.31927475166327" t="-4.8145468153789697" orientation="none" validLength="1.6028176081478591" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.6028176081478591" s="246.31927475166327" distance="0" tStart="-4.8145468153789697" tEnd="-4.6645816084196499" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273610197" s="247.92209235981113" t="-4.6645816084196499" orientation="none" validLength="3.0787016845926587" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.0787016845926587" s="247.92209235981113" distance="0" tStart="-4.6645816084196499" tEnd="-4.5540636794850258" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542045653" s="251.00079404440379" t="-4.5540636794850258" orientation="none" validLength="17.640136959468407" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.640136959468407" s="251.00079404440379" distance="0" tStart="-4.5540636794850258" tEnd="-4.8938732336301447" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810481109" s="268.6409310038722" t="-4.8938732336301447" orientation="none" validLength="16.104584941831433" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.104584941831433" s="268.6409310038722" distance="0" tStart="-4.8938732336301447" tEnd="-5.0671872109430129" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078916565" s="284.74551594570363" t="-5.0671872109430129" orientation="none" validLength="18.387488877920589" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.387488877920589" s="284.74551594570363" distance="0" tStart="-5.0671872109430129" tEnd="-5.1418442289577664" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742189" s="303.13300482362422" t="-5.1418442289577664" orientation="none" validLength="8.433848200290754" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.433848200290754" s="303.13300482362422" distance="0" tStart="-5.1418442289577664" tEnd="-4.4618583850482887" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742190" s="311.56685302391497" t="-4.4618583850482887" orientation="none" validLength="28.409093016403006" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="28.409093016403006" s="311.56685302391497" distance="0" tStart="-4.4618583850482887" tEnd="-4.4120326513739547" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742191" s="339.97594604031798" t="-4.4120326513739547" orientation="none" validLength="66.844657273200653" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="66.844657273200653" s="339.97594604031798" distance="0" tStart="-4.4120326513739547" tEnd="-4.5386357788193274" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742192" s="406.82060331351863" t="-4.5386357788193274" orientation="none" validLength="16.093921025041368" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.093921025041368" s="406.82060331351863" distance="0" tStart="-4.5386357788193274" tEnd="-4.2537983969270563" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742193" s="422.91452433856" t="-4.2537983969270563" orientation="none" validLength="5.4142489913614327" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.4142489913614327" s="422.91452433856" distance="0" tStart="-4.2537983969270563" tEnd="-4.2574806117069901" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742194" s="428.32877332992143" t="-4.2574806117069901" orientation="none" validLength="33.179172730257278" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="33.179172730257278" s="428.32877332992143" distance="0" tStart="-4.2574806117069901" tEnd="-4.8060505256647561" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742195" s="461.50794606017871" t="-4.8060505256647561" orientation="none" validLength="11.041488690347705" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.041488690347705" s="461.50794606017871" distance="0" tStart="-4.8060505256647561" tEnd="-4.8748491523531863" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742196" s="472.54943475052642" t="-4.8748491523531863" orientation="none" validLength="58.01186203944178" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="58.01186203944178" s="472.54943475052642" distance="0" tStart="-4.8748491523531863" tEnd="-4.8024924591317326" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742197" s="530.5612967899682" t="-4.8024924591317326" orientation="none" validLength="46.018585237315733" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="46.018585237315733" s="530.5612967899682" distance="0" tStart="-4.8024924591317326" tEnd="-4.9826474438713682" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742198" s="576.57988202728393" t="-4.9826474438713682" orientation="none" validLength="26.088564983582614" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="26.088564983582614" s="576.57988202728393" distance="0" tStart="-4.9826474438713682" tEnd="-5.30859197018128" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742199" s="602.66844701086654" t="-5.30859197018128" orientation="none" validLength="28.900053857342982" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="28.900053857342982" s="602.66844701086654" distance="0" tStart="-5.30859197018128" tEnd="-6.0018214724775349" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742200" s="631.56850086820953" t="-6.0018214724775349" orientation="none" validLength="34.116579580688835" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="34.116579580688835" s="631.56850086820953" distance="0" tStart="-6.0018214724775349" tEnd="-6.7088601358876838" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742201" s="665.68508044889836" t="-6.7088601358876838" orientation="none" validLength="19.791771235827014" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.791771235827014" s="665.68508044889836" distance="0" tStart="-6.7088601358876838" tEnd="-6.9663138236885578" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742202" s="685.47685168472537" t="-6.9663138236885578" orientation="none" validLength="21.219899466458628" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="21.219899466458628" s="685.47685168472537" distance="0" tStart="-6.9663138236885578" tEnd="-6.9660505847490874" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742203" s="706.696751151184" t="-6.9660505847490874" orientation="none" validLength="45.21652944471964" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="45.21652944471964" s="706.696751151184" distance="0" tStart="-6.9660505847490874" tEnd="-6.7357573542923861" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742204" s="751.91328059590364" t="-6.7357573542923861" orientation="none" validLength="36.999394330334098" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="36.999394330334098" s="751.91328059590364" distance="0" tStart="-6.7357573542923861" tEnd="-6.7588385639687187" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742205" s="788.91267492623774" t="-6.7588385639687187" orientation="none" validLength="40.920861140613397" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="40.920861140613397" s="788.91267492623774" distance="0" tStart="-6.7588385639687187" tEnd="-6.9121239899649272" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412692" s="797.52296997787448" t="8.7084521743153598" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848148" s="750.30941828928758" t="8.3190571617366373" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283604" s="697.84284580331735" t="8.4839214291530087" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719060" s="650.29070156088756" t="8.7852841117874565" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154516" s="597.88155777752081" t="7.161316582739528" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742206" s="549.933866723233" t="7.3129395987159747" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742207" s="499.22692588584084" t="6.6610808693746373" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742208" s="448.82260030253076" t="6.802793390520594" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742209" s="399.21015373125397" t="6.8918984042396447" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742210" s="350.36589661474937" t="6.6410945279549889" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742211" s="302.78080899864403" t="6.504628901402663" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742212" s="250.73210144534579" t="7.5457246285252637" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412693" s="203.54543831588359" t="7.3109967015580626" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848149" s="148.40461143577593" t="7.0157822313986049" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283605" s="99.925142488034325" t="7.3101498903219566" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719061" s="52.207482490876558" t="7.4558617505502127" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154517" s="4.7465704411836693" t="7.300751294657517" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="334.95031298650423" id="33782019" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554629" /> - <successor elementType="junction" elementId="33556587" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1447.2814115929436" y="-35.930965995143595" hdg="0.419449658125435" length="3.0001156700595044"> - <paramPoly3 aU="0" bU="2.4071242333719178" cU="0.54406909892086042" dU="0.048921308317256655" aV="-0" bV="-0" cV="0.0018303540248663375" dV="0.00038228309407738886" /> - </geometry> - <geometry s="3.0001156700595044" x="1450.0205548108543" y="-34.707124835376554" hdg="0.42076968002244941" length="331.9501973164447"> - <paramPoly3 aU="0" bU="331.93743358147157" cU="0.023593131129049649" dU="-0.010908241292159906" aV="-0" bV="7.1054273576010019e-14" cV="0.22322311628930183" dV="-0.34964728880941859" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.22772043980953" b="-0.0066739870371866905" c="0.00013308285974209452" d="-2.8157037410632744e-07" /> - <elevation s="10.150009484439522" a="156.17339552974721" b="-0.0040594268742244009" c="0.00013688444448618743" d="-1.5008215153212283e-06" /> - <elevation s="20.300018968879044" a="156.14472513150676" b="-0.0017445260751753327" c="9.1128409966489575e-05" d="9.4319570528603817e-07" /> - <elevation s="30.450028453318566" a="156.13739275157621" b="0.00039689405918401323" c="0.0002159243711826052" d="-1.0971906441427896e-05" /> - <elevation s="40.600037937758088" a="156.15219322268359" b="0.0013890968585460646" c="0.00019022201259368267" d="-1.9974703919544946e-05" /> - <elevation s="50.750047422197611" a="156.1650025784011" b="-0.00092293601859944692" c="-0.00025306319058765356" d="9.4894558543178573e-06" /> - <elevation s="60.900056906637133" a="156.13948646437728" b="-0.0031272357094647516" c="-0.00023967880439903786" d="1.7097113454819076e-05" /> - <elevation s="71.050066391076655" a="156.10093076842557" b="-0.0027085479971683691" c="0.00015864571122250641" d="-5.6126718106437464e-06" /> - <elevation s="81.200075875516177" a="156.0839140229034" b="-0.0012227347367503539" c="9.9899743433478841e-05" d="-6.0007097000188524e-06" /> - <elevation s="91.350085359955699" a="156.07552036432239" b="-0.0010493958613009067" c="-7.5641954992624453e-05" d="4.7301723044843601e-06" /> - <elevation s="101.50009484439522" a="156.06202240125992" b="-0.0011229837216180623" c="1.6093480712165532e-05" d="-1.4076165499803686e-07" /> - <elevation s="111.65010432883474" a="156.05213490771854" b="-0.00083979069199622137" c="5.2732965677466603e-06" d="2.2136294023732687e-07" /> - <elevation s="121.80011381327427" a="156.04438576852931" b="-0.00066432645325082134" c="2.1348237885290581e-05" d="-1.7041514767419603e-06" /> - <elevation s="123.00011428198167" a="156.04361637318337" b="-0.00062045260241372162" c="5.0537952515607087e-05" d="-1.4598617428534256e-06" /> - <elevation s="131.95012329771379" a="156.04106493788382" b="-6.6638773666668539e-05" c="1.3133354031127944e-05" d="1.2086770360399144e-06" /> - <elevation s="142.10013278215331" a="156.04300547817533" b="0.00057353205026153655" c="3.0279810067032854e-05" d="-3.7280672562919379e-08" /> - <elevation s="152.25014226659283" a="156.0519073577853" b="0.0011766905031956073" c="0.00020971504626179409" d="-1.455065822904447e-05" /> - <elevation s="162.40015175103235" a="156.07024083497882" b="0.00093676595366561121" c="-0.00026647129888842589" d="1.4719556171687866e-05" /> - <elevation s="172.55016123547188" a="156.06768839232495" b="7.6738460716325139e-05" c="5.8167718833492066e-05" d="-2.6195587919535448e-06" /> - <elevation s="182.7001707199114" a="156.07172065978224" b="0.00044792225641646468" c="-5.5531821596905141e-05" d="5.8882357691458721e-06" /> - <elevation s="192.85018020435092" a="156.07670325522204" b="0.0011404909342638786" c="1.2696082362653642e-05" d="-3.7280672562881282e-08" /> - <elevation s="203.00018968879044" a="156.089548249909" b="0.0013866993812554592" c="0.00015246319270412109" d="-7.4921798300303982e-06" /> - <elevation s="213.15019917322996" a="156.11149599801359" b="0.0021661114680842346" c="3.4913653140699785e-05" d="-3.4776964020341181e-06" /> - <elevation s="223.30020865766949" a="156.13344238639502" b="0.001800014347651008" c="-1.5089158891323049e-05" d="-3.7280672562885544e-08" /> - <elevation s="233.45021814210901" a="156.15011903961638" b="0.0014821818701319745" c="-0.00020530947298652791" d="1.0857351514371218e-05" /> - <elevation s="243.60022762654853" a="156.15536499446091" b="0.00067005643441768632" c="9.0144576998360891e-06" d="5.2450321894930311e-07" /> - <elevation s="253.75023711098805" a="156.16364323054054" b="0.0010151572982955719" c="4.7890381270591159e-05" d="-2.9761822447551612e-06" /> - <elevation s="263.90024659542757" a="156.17576874463384" b="0.0010674900215338432" c="-2.9469719715087385e-05" d="1.594751869632845e-06" /> - <elevation s="274.0502560798671" a="156.185235330822" b="0.00096214104691065387" c="-1.5065229162639771e-05" d="1.6957820894602492e-06" /> - <elevation s="284.20026556430662" a="156.19522225873209" b="0.0011804287195610198" c="0.00044210394302510164" d="-2.1609297854212251e-05" /> - <elevation s="294.35027504874614" a="156.2301539212126" b="0.0034764030030426402" c="7.0431054848472786e-05" d="-6.6751727308299263e-06" /> - <elevation s="304.50028453318566" a="156.26571533823255" b="0.0028430719488816503" c="-8.0942229892393505e-05" d="1.4887033699189656e-06" /> - <elevation s="314.65029401762519" a="156.28779036830002" b="0.0016600538353441141" c="-8.1275885556901853e-05" d="2.9357178432619929e-06" /> - <elevation s="324.80030350206471" a="156.29933649517463" b="0.00091748848702730623" c="-2.2059156831642508e-05" d="-3.7280672570524663e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.021904540604152502" b="3.6627309718988581e-06" c="1.3993454061209716e-06" d="0" /> - <superelevation s="10.150009484439522" a="0.022085881689780183" b="3.2069469260166966e-05" c="9.6766850112454545e-07" d="4.2529704593682788e-08" /> - <superelevation s="20.300018968879044" a="0.022555551438455775" b="6.4857732228360931e-05" c="2.7197085854058852e-06" d="-8.7555216145466641e-08" /> - <superelevation s="30.450028453318566" a="0.023402494884294387" b="9.300734576375984e-05" c="2.1370648500185187e-06" d="-1.1770716224665688e-07" /> - <superelevation s="40.600037937758088" a="0.024443602321705192" b="0.00010001027640122588" c="7.6487276154108144e-06" d="-7.7843477918764531e-07" /> - <superelevation s="50.750047422197611" a="0.025432705392322109" b="1.4690251339293762e-05" c="-7.2365702523798917e-07" d="0" /> - <superelevation s="60.900056906637133" a="0.025507258487533425" b="0" c="-1.8821022741147325e-05" d="9.5252528942727024e-07" /> - <superelevation s="71.050066391076655" a="0.024564303937457992" b="-8.7671958587810943e-05" c="9.800740098767422e-07" d="-4.5794568766258961e-08" /> - <superelevation s="81.200075875516177" a="0.023727516065162085" b="-8.1930076929637814e-05" c="-7.9205910331651435e-06" d="7.8532285517911679e-07" /> - <superelevation s="91.350085359955699" a="0.022901121821664625" b="0" c="1.4673605582686585e-06" d="-5.467251009207473e-08" /> - <superelevation s="101.50009484439522" a="0.022995123235522292" b="1.2889919575171445e-05" c="-2.9340946198484085e-07" d="6.4129696559008898e-08" /> - <superelevation s="111.65010432883474" a="0.023162787433547931" b="2.6754143963964558e-05" c="1.9034903590113987e-06" d="-8.8183736749407277e-08" /> - <superelevation s="121.80011381327427" a="0.023538232865486893" b="3.8140256366016663e-05" c="4.0291437000429019e-07" d="-2.8527612727498656e-08" /> - <superelevation s="131.95012329771379" a="0.023937035361255979" b="3.7502451295656499e-05" c="3.1662292067060317e-06" d="-3.2930273822216377e-07" /> - <superelevation s="142.10013278215331" a="0.024299533338168183" b="0" c="-2.2891824206917402e-07" d="1.5035666874342483e-08" /> - <superelevation s="152.25014226659283" a="0.024291672080278794" b="0" c="4.0677650082160483e-05" d="-2.6717643396965151e-06" /> - <superelevation s="162.40015175103235" a="0.025688579092755022" b="0" c="-5.1157188016164457e-05" d="2.9331988473419996e-06" /> - <superelevation s="172.55016123547188" a="0.023485419043278999" b="-0.00013193375814838696" c="1.1886263386059286e-05" d="-5.3074527255920804e-07" /> - <superelevation s="182.7001707199114" a="0.02281585459501706" b="-5.4678807028853989e-05" c="2.5644019780435817e-06" d="-1.43081412367706e-07" /> - <superelevation s="192.85018020435092" a="0.022375438223397586" b="-4.684329529189399e-05" c="-5.6355588932920863e-06" d="5.2171433872012215e-07" /> - <superelevation s="203.00018968879044" a="0.021864934812026809" b="0" c="1.3079659887239642e-05" d="-6.7764947250210226e-07" /> - <superelevation s="213.15019917322996" a="0.022503831205398922" b="5.6077524062786831e-05" c="3.4949622790025539e-06" d="-4.1099464431059614e-07" /> - <superelevation s="223.30020865766949" a="0.023003309614229153" b="0" c="-7.1430668535025127e-06" d="3.4165004215472088e-07" /> - <superelevation s="233.45021814210901" a="0.022624668696419117" b="-3.9411270880451742e-05" c="-1.6708369621313625e-06" d="1.4416463820367662e-07" /> - <superelevation s="243.60022762654853" a="0.022203260067768352" b="-2.8772605317733724e-05" c="9.3238699281962761e-07" d="3.1854249567031799e-08" /> - <superelevation s="253.75023711098805" a="0.022040584262685053" b="0" c="2.0234575761645547e-05" d="-1.1704611515312585e-06" /> - <superelevation s="263.90024659542757" a="0.022901275393990003" b="4.9010093776290234e-05" c="-4.6999243579505055e-06" d="2.2518562998628894e-07" /> - <superelevation s="274.0502560798671" a="0.023150001852321311" b="2.319922992120033e-05" c="1.8996808869909533e-06" d="-1.9983554575099017e-07" /> - <superelevation s="284.20026556430662" a="0.023372220201453756" b="0" c="-2.5431074636868666e-06" d="1.6703481690242393e-07" /> - <superelevation s="294.35027504874614" a="0.023284887608682799" b="0" c="1.3934548367553371e-05" d="-7.8968527298696393e-07" /> - <superelevation s="304.50028453318566" a="0.023894703172906019" b="3.8805086950898181e-05" c="-1.9115788517433914e-06" d="0" /> - <superelevation s="314.65029401762519" a="0.024091639173204078" b="0" c="-2.2167952074873537e-06" d="8.7392623848958838e-08" /> - <superelevation s="324.80030350206471" a="0.023954643795202204" b="-1.7990714512463341e-05" c="-4.427232856133115e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="8.1487722749464631" b="-0.0011816481256752788" c="-0.00025860214702239076" d="2.7785710874788717e-05" /> - <laneOffset s="7.980888833821659" a="8.1369946877777473" b="-0" c="0.0002546760768491449" d="-1.2985059146366146e-05" /> - <laneOffset s="10.150009484439522" a="8.1380604360535287" b="0.00092155887747410439" c="0.00017987347827456583" d="-1.0933328715801954e-05" /> - <laneOffset s="20.300018968879044" a="8.1545125399935738" b="0.0011938510104555625" c="-0.00013720417352730056" d="-1.3738823074830415e-05" /> - <laneOffset s="23.299401247903724" a="8.1564883073397016" b="-0" c="-0.0016324807138272843" d="0.00021207680421791859" /> - <laneOffset s="27.203552296750459" a="8.1442257874848334" b="-0.0030492270592767669" c="-0.00012915337107239681" d="9.6115608911165705e-06" /> - <laneOffset s="30.450028453318566" a="8.1332941934937857" b="-0.0035839075028361077" c="-1.3569901994130012e-05" d="1.252555707770079e-05" /> - <laneOffset s="40.583885419465119" a="8.1086171355317234" b="-0" c="0.00040019816485654594" d="-7.1381847536836787e-05" /> - <laneOffset s="44.321513202679597" a="8.1104807065030329" b="-0" c="-0.0049896720748772265" d="0.00086475276732167537" /> - <laneOffset s="48.168217342431348" a="8.0858697598313807" b="-0" c="0.00075595351082815047" d="-8.8459285042304865e-05" /> - <laneOffset s="50.750047422197611" a="8.0893864382899974" b="0.0021345189634167207" c="8.5303529624287114e-05" d="-8.5810972689714479e-05" /> - <laneOffset s="53.979918683812272" a="8.0942792166791886" b="-0" c="-0.00066061953207291349" d="5.1184978915707565e-05" /> - <laneOffset s="58.809986297765093" a="8.0846349515047464" b="-0.0027993059549111499" c="-0.000824811246618786" d="7.7022197739617048e-05" /> - <laneOffset s="60.900056906637133" a="8.0758843352066538" b="-0.0052377432586022494" c="-0.00034914386237981058" d="7.7962890988937818e-05" /> - <laneOffset s="67.354947194865602" a="8.048495865969679" b="-0" c="0.003454909019750018" d="-0.00074621377679269724" /> - <laneOffset s="70.441559572532086" a="8.0594677080334716" b="-0" c="-3.0069111050282878e-05" d="1.1680174647323802e-06" /> - <laneOffset s="81.200075875516177" a="8.0574418142829476" b="-0.00024141914016265046" c="-1.0437703647466501e-05" d="3.0128357561135472e-06" /> - <laneOffset s="85.453060325707071" a="8.0564580363344493" b="-0.00016671451745584246" c="-2.4918331726886046e-07" d="5.6840150265568818e-07" /> - <laneOffset s="91.350085359955699" a="8.0555828125581606" b="-0.00011035507447695243" c="3.9688070996373385e-06" d="-1.8198908590007279e-07" /> - <laneOffset s="101.50009484439522" a="8.0546812821140357" b="-8.6035231994027422e-05" c="-1.589902482904598e-07" d="-2.083697866447632e-07" /> - <laneOffset s="111.65010432883474" a="8.0535737556991389" b="-0.00015366318643826252" c="-2.8179411121780262e-06" d="-4.0314491308655171e-07" /> - <laneOffset s="118.93090173893611" a="8.0521499902246312" b="-0.00025880905188564534" c="-7.3917706824474036e-05" d="6.7714648386937969e-07" /> - <laneOffset s="121.80011381327427" a="8.0508148881665367" b="-0.00066625662844069277" c="-5.8029929834422474e-05" d="2.3533218741165051e-06" /> - <laneOffset s="131.95012329771379" a="8.0405348021412362" b="-0.00111692863722787" c="1.7844637419554487e-05" d="2.3694889083879122e-06" /> - <laneOffset s="142.22369569136424" a="8.0335127157562187" b="-0" c="0.0029588945068834299" d="-0.00052860731683619959" /> - <laneOffset s="145.95538133985031" a="8.0472473889916714" b="-0" c="-0.00043654635126714732" d="2.261664643316536e-05" /> - <laneOffset s="153.19963500523343" a="8.032936012782173" b="-0.0027641937182897045" c="-0.00037723063825611072" d="4.3952303722229484e-05" /> - <laneOffset s="159.43325515723845" a="8.0116930401318598" b="-0.0023435202179059801" c="9.1640347979747688e-05" d="-5.1267444516923427e-06" /> - <laneOffset s="162.40015175103235" a="8.0054128296546239" b="-0.0019351294710823739" c="5.3502366986701712e-05" d="2.191068668188538e-07" /> - <laneOffset s="172.55016123547188" a="7.9915123210281624" b="-0.00078131146825565325" c="4.103632002574621e-05" d="5.2903742056237322e-08" /> - <laneOffset s="179.11136854448077" a="7.9881675081599983" b="-0.00023598343285740901" c="5.5905006365733645e-06" d="1.0102243345367456e-06" /> - <laneOffset s="182.7001707199114" a="7.98743930773204" b="-0.00015682347501965065" c="7.0910474013315802e-06" d="-1.4940662312971475e-07" /> - <laneOffset s="192.85018020435092" a="7.9864218550565313" b="-5.905189605520653e-05" c="-2.3997472428506304e-06" d="-1.289289546798464e-07" /> - <laneOffset s="203.00018968879044" a="7.9854404307313818" b="-0.00014761463477601985" c="-3.5310052102529285e-06" d="-1.1850541279037177e-06" /> - <laneOffset s="207.09044000573789" a="7.9846964818494435" b="-0.00023597841675429464" c="-0.031450639040405952" d="0.054043320872586322" /> - <laneOffset s="207.48212423318364" a="7.9830265131553357" b="-0" c="3.9320492034847385e-05" d="-1.9999399993365097e-06" /> - <laneOffset s="213.15019917322996" a="7.9839255790993588" b="0.00025298633284754555" c="1.5220132118801867e-05" d="-1.3192219874422372e-06" /> - <laneOffset s="223.30020865766949" a="7.9866819259976252" b="0.00015422589997794316" c="-2.5707025252110593e-05" d="-3.4666809101629763e-07" /> - <laneOffset s="226.13709860856355" a="7.9869046443632019" b="-0" c="-0.0013476365574104586" d="0.00021454474538636645" /> - <laneOffset s="230.32468367380932" a="7.9790273184640945" b="-0" c="0.00034684124578464255" d="-3.4117541487872626e-05" /> - <laneOffset s="233.45021814210901" a="7.9813738796516667" b="0.0011682492584833457" c="1.2136573606813456e-05" d="-3.4537978750263512e-05" /> - <laneOffset s="236.92722288781164" a="7.9841307937486405" b="-0" c="-0.0011359133615703133" d="0.00021060647015383772" /> - <laneOffset s="240.52291286745498" a="7.9792353909362852" b="-0" c="0.0003668545666616318" d="-3.3298407271775487e-05" /> - <laneOffset s="243.60022762654853" a="7.9817390804174151" b="0.0013118595675871134" c="5.0091596004595326e-05" d="-3.4127142742254283e-05" /> - <laneOffset s="247.70236246312888" a="7.9856076692538744" b="-0" c="-0.00087587627495315317" d="0.00020675662236789886" /> - <laneOffset s="250.52654052305371" a="7.9832790115362426" b="-0" c="0.00307004752187397" d="-0.00050473560527638085" /> - <laneOffset s="254.58153154512593" a="8.0001058930763751" b="-0" c="-0.004925604944375302" d="0.00081747056380675946" /> - <laneOffset s="258.416714372694" a="7.9737707448615138" b="-0.0017095813896509417" c="4.1795441264810216e-05" d="-1.1793503941849936e-06" /> - <laneOffset s="263.90024659542757" a="7.9654584953858949" b="-0.0013575941972943891" c="3.3424136552386773e-05" d="-8.7192132222293957e-08" /> - <laneOffset s="274.0502560798671" a="7.9550311707678709" b="-0.0007060318959504785" c="3.3108537766725426e-05" d="-6.1313118012775777e-08" /> - <laneOffset s="285.04865929755886" a="7.9511893451428595" b="-0" c="0.00047952850399818732" d="-2.957988855283965e-05" /> - <laneOffset s="294.3172237341621" a="7.9688315241556165" b="0.0012657865158955258" c="-6.2666482380994293e-05" d="-2.5097401913928731e-07" /> - <laneOffset s="303.86857168362241" a="7.9749858513262817" b="-0" c="-0.0011463365663633835" d="0.00017732189467478877" /> - <laneOffset s="308.17838564640022" a="7.9678883098536328" b="-0" c="0.00066519827728414951" d="-3.9057362281299919e-05" /> - <laneOffset s="314.65029401762519" a="7.9851628773781549" b="0.0037023816762327033" c="-9.3062667253683131e-05" d="-3.8803466385192165e-05" /> - <laneOffset s="319.54679156142652" a="7.9965049320698123" b="-0" c="-0.00044430509975091302" d="2.2373796686396989e-05" /> - <laneOffset s="324.80030350206471" a="7.9874864432130988" b="-0.002815815025748309" c="-9.5170104413685365e-05" d="2.2250459093903652e-05" /> - <laneOffset s="332.87558167387994" a="7.9702587655721446" b="-0" c="0.0019136151236163542" d="-0.0002016836760114356" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4927846708288612" b="0.00027759360504565228" c="4.9254469302013117e-05" d="-8.5925794122181779e-06" /> - <width sOffset="7.980888833821659" a="2.4937694108010344" b="-0.00057811988671324427" c="-4.4890088423389608e-06" d="3.2178190608828338e-05" /> - <width sOffset="10.150009484439522" a="2.49282268510885" b="-0.0001433909826079855" c="0.00019521024316878846" d="3.0126460162753485e-05" /> - <width sOffset="10.480953992733649" a="2.4927977028868984" b="-4.2847312853406747e-06" c="9.3577895431857394e-05" d="-7.5565233265748987e-06" /> - <width sOffset="20.300018968879044" a="2.4946241254104216" b="-0.00035225461906301253" c="-0.00013164348399475383" d="-5.6602941779436999e-06" /> - <width sOffset="23.299401247903724" a="2.4922305420985484" b="-0.001294717897747807" c="0.0011890769507555707" d="-0.00023147592147078154" /> - <width sOffset="26.049450752055641" a="2.4928484861966673" b="-6.4759839876991909e-06" c="-4.062733496536037e-05" d="-0.00021260230051284402" /> - <width sOffset="27.203552296750459" a="2.4924600851305385" b="-0.00094977926605068321" c="0.00020389102486777249" d="-1.0137057185610366e-05" /> - <width sOffset="30.450028453318566" a="2.4911787252798447" b="5.3553625638140707e-05" c="0.00011035583607157051" d="-1.1944406395423528e-05" /> - <width sOffset="36.953699154166621" a="2.4929090290534965" b="-2.6674261713018847e-05" c="0.00063279607022286423" d="-0.00010046556497183366" /> - <width sOffset="40.583885419465119" a="2.4963451193380291" b="0.00059577924976325072" c="-0.00049430151740177566" d="-1.6558068723010341e-05" /> - <width sOffset="40.600037937758088" a="2.4963546136383084" b="0.00057979786057324933" c="-0.00045756882333680552" d="-1.4286790428007164e-05" /> - <width sOffset="44.321513202679597" a="2.4914389305047244" b="-0.0034194537449701483" c="0.0039724012751069992" d="-0.00095042140528672834" /> - <width sOffset="46.571495114084989" a="2.4930295468185584" b="2.1915278103589592e-05" c="0.0019242729589854261" d="-0.0010793641887726147" /> - <width sOffset="48.168217342431348" a="2.4935765552332203" b="-0.0020886137373286912" c="0.00098765714495219464" d="-0.00012615213640868587" /> - <width sOffset="50.750047422197611" a="2.4925965916859614" b="0.00048857975948835746" c="1.8707224894754928e-05" d="-0.00013217685873251317" /> - <width sOffset="51.918252911840177" a="2.4929821594799453" b="-8.8593645124509894e-06" c="-0.00040385653349724461" d="0.00010468065935105629" /> - <width sOffset="53.979918683812272" a="2.492164636845958" b="-0.00033926907485753652" c="0.0001580409414501428" d="-3.2315292254409561e-05" /> - <width sOffset="58.809986297765093" a="2.4905715744290333" b="-0.0010742761940435957" c="0.00059565824328093901" d="-5.815251107863553e-05" /> - <width sOffset="60.900056906637133" a="2.4903973846961271" b="0.00065355993830724587" c="0.00022655564800600419" d="-5.6801672687807001e-05" /> - <width sOffset="64.559964013719565" a="2.4930393936852138" b="2.9343600789369893e-05" c="0.00088989164535091948" d="-0.00017372559721849596" /> - <width sOffset="67.354947194865602" a="2.4962800185077043" b="0.00093241083809013749" c="-0.0028611158801998067" d="0.00065045107056299829" /> - <width sOffset="70.441559572532086" a="2.4910272739044093" b="0.0018609848858774729" c="-0.0002628848124976833" d="-9.6930723695531679e-05" /> - <width sOffset="71.050066391076655" a="2.4920405145042768" b="0.0014333757995547685" c="-0.00051253720167033384" d="-6.3950108693470859e-05" /> - <width sOffset="72.191556391897308" a="2.4929137460838291" b="1.3282754063761139e-05" c="2.0579814176410506e-05" d="-7.7997400447140907e-07" /> - <width sOffset="81.200075875516177" a="2.4941333090962665" b="0.00019417738640682518" c="4.7094570160725335e-06" d="-2.7492904397145894e-06" /> - <width sOffset="85.453060325707071" a="2.4948328306530598" b="8.5049401589861956e-05" c="-2.1165009166716945e-06" d="-3.0485618623921574e-07" /> - <width sOffset="91.350085359955699" a="2.4951982515916313" b="2.8283249745373579e-05" c="-6.9301038417952002e-06" d="1.3111053765991718e-08" /> - <width sOffset="101.50009484439522" a="2.4947850788713044" b="-0.0001083457815164243" c="-6.093045680533815e-06" d="4.9453298678492563e-09" /> - <width sOffset="111.65010432883474" a="2.4930628174285641" b="-0.00023050628081484014" c="-5.7473518860495442e-06" d="1.0095887365016657e-07" /> - <width sOffset="118.93090173893611" a="2.4911188463071685" b="-0.0002981413972814402" c="5.8751947826684781e-05" d="-9.7933252324428516e-07" /> - <width sOffset="121.80011381327427" a="2.4907239513854211" b="1.4815492562941768e-05" c="4.5860818153319302e-05" d="-2.6695093938728083e-06" /> - <width sOffset="131.95012329771379" a="2.4928075776731671" b="0.00012073083449648048" c="-1.5518323947828014e-05" d="-1.2049939149000757e-05" /> - <width sOffset="133.43051629943383" a="2.4929132028407608" b="-4.4402201089832095e-06" c="-0.00014778373727673838" d="1.979594732939404e-05" /> - <width sOffset="142.10013278215331" a="2.4946665408472803" b="0.0018968269546946978" c="0.00036999696418921088" d="2.0067906807293717e-05" /> - <width sOffset="142.22369569136424" a="2.4949066051997324" b="0.0019891819351732817" c="-0.002490584610848892" d="0.00055104471350625114" /> - <width sOffset="144.72359843922322" a="2.4929234926874386" b="-0.00013197214999368951" c="-0.00044644508146737794" d="0.00062028334720750191" /> - <width sOffset="145.95538133985031" a="2.4932428368426258" b="0.0015916285266193934" c="-0.00067662997518303858" d="6.9059383937773261e-05" /> - <width sOffset="150.95519681939908" a="2.4929176522181162" b="4.6499952511759764e-06" c="5.3199776464348144e-05" d="-1.9416609047934778e-05" /> - <width sOffset="152.25014226659283" a="2.4929707209059995" b="4.4753425577175737e-05" c="-1.1706346352980948e-05" d="-2.0201455116060041e-05" /> - <width sOffset="153.19963500523343" a="2.4929853677680409" b="-3.2113801187961307e-05" c="0.00036295670726616946" d="-4.1537112407603481e-05" /> - <width sOffset="159.43325515723845" a="2.4968275872791477" b="-0.00034919517063807925" c="-6.0748123219248154e-05" d="7.5419357661083644e-06" /> - <width sOffset="162.40015175103235" a="2.4954537929096556" b="-0.00051049885824753409" c="-1.4378107036823276e-05" d="5.1699034431652631e-06" /> - <width sOffset="169.43281002578493" a="2.4929507247659437" b="5.4352148461125687e-05" c="-8.0002340473374914e-05" d="1.0962840164882355e-05" /> - <width sOffset="172.55016123547188" a="2.4926748151960378" b="-0.00012483198890917259" c="-1.656392251765169e-05" d="4.3481783676317055e-10" /> - <width sOffset="179.11136854448077" a="2.4911428218440719" b="-0.00034213449189154704" c="1.9931792918731799e-05" d="-9.5688577465386154e-07" /> - <width sOffset="182.7001707199114" a="2.4901274512267113" b="-0.00023604460234898526" c="1.1237528003467682e-05" d="9.1422397063751042e-08" /> - <width sOffset="192.85018020435092" a="2.4889849153580554" b="2.0333173795304161e-05" c="1.2481066592568616e-05" d="9.7809362068171503e-08" /> - <width sOffset="203.00018968879044" a="2.4905794077724916" b="0.00030392881388237303" c="1.3544596326903641e-05" d="6.4358804486429559e-07" /> - <width sOffset="207.09044000573789" a="2.4920931968426778" b="0.00044703236177923226" c="0.031454008436069214" d="-0.054043862338669355" /> - <width sOffset="207.48212423318364" a="2.4938463164220455" b="0.00021344421375032687" c="-3.6587347544748196e-05" d="1.4584739162860919e-06" /> - <width sOffset="213.15019917322996" a="2.4941462759627226" b="-6.0745945498447319e-05" c="-1.3900790827564695e-05" d="8.3399195775230441e-07" /> - <width sOffset="223.30020865766949" a="2.4929696969402135" b="-8.5171971862485157e-05" c="1.1219621435712165e-05" d="1.2083608769498861e-06" /> - <width sOffset="225.98091183024903" a="2.4928452801150645" b="1.0314359314626765e-06" c="-0.00037118137736568844" d="4.0539911049903046e-05" /> - <width sOffset="226.13709860856355" a="2.4928365409580824" b="-0.00011194898167075894" c="0.00096679317123179466" d="-0.0001743515026933468" /> - <width sOffset="230.32468367380932" a="2.4965181594171302" b="-0.0011871068570855135" c="-0.00022274676348772775" d="7.4310784180875249e-05" /> - <width sOffset="233.45021814210901" a="2.49290075946036" b="-0.00040169372284928331" c="0.00048883400502284179" d="7.4731221344481101e-05" /> - <width sOffset="233.82442683778115" a="2.4928228106611847" b="-4.4475316797909937e-06" c="-0.00021051100543620604" d="4.5678782190694335e-05" /> - <width sOffset="236.92722288781164" a="2.4921468512483926" b="8.5029928869234704e-06" c="0.0010024686165302241" d="-0.00019946566671347993" /> - <width sOffset="240.52291286745498" a="2.4958654435444156" b="-0.00051903098277721982" c="-0.00038012268581444456" d="4.4439210712013877e-05" /> - <width sOffset="243.60022762654853" a="2.4919635476541027" b="-0.0015960451567875729" c="3.5348242263038251e-05" d="4.5140592107318577e-05" /> - <width sOffset="247.70236246312888" a="2.4891271752305952" b="0.00097277267993959638" c="0.0010968520761548137" d="-0.0001957431730028311" /> - <width sOffset="250.52654052305371" a="2.4962136996309789" b="0.0024844519112325277" c="-0.0027557598944896538" d="0.0005157490546414793" /> - <width sOffset="253.52626874503483" a="2.492790474869337" b="-0.0001259080027848393" c="-0.0028616384719806608" d="0.00099493396589370197" /> - <width sOffset="254.58153154512593" a="2.4906401125872435" b="-0.0028416548209494073" c="0.0021436693587864649" d="-0.00032727220318936104" /> - <width sOffset="258.416714372694" a="2.4928107655586613" b="-0.0008401016029252902" c="6.8927862968468914e-05" d="-1.660792391295342e-06" /> - <width sOffset="263.90024659542757" a="2.4900028021346268" b="-0.00023398101287782041" c="4.5054714189787543e-05" d="-1.3194946638011043e-06" /> - <width sOffset="274.0502560798671" a="2.4908897796981826" b="0.00027281686066403993" c="5.9420436168756125e-06" d="-1.3432619284576486e-06" /> - <width sOffset="283.91439970430434" a="2.4928697980116068" b="-2.0603103062560635e-06" c="0.00021877609263082161" d="-9.2339404543152396e-06" /> - <width sOffset="285.04865929755886" a="2.4931354514687243" b="0.00045859781846112861" c="-0.00026108796941876679" d="2.0284634978669523e-05" /> - <width sOffset="294.3172237341621" a="2.4911080903460832" b="0.00084650948728957182" c="2.2646042660160526e-05" d="-9.0441693745689205e-06" /> - <width sOffset="294.35027504874614" a="2.4911360930092075" b="0.00084797681090141379" c="2.5553244605325636e-05" d="-9.3698645134683467e-06" /> - <width sOffset="303.86857168362241" a="2.4934424663380677" b="-0.001212248600427708" c="0.00083447645842694388" d="-0.0001869427331964274" /> - <width sOffset="304.50028453318566" a="2.4929625536590478" b="-0.00038175432940630214" c="0.00050921001153504013" d="-0.00020134109070700821" /> - <width sOffset="305.61838304854706" a="2.4928908692477521" b="1.8233416981994384e-06" c="0.00083843768240451965" d="-0.00020156886124247795" /> - <width sOffset="308.17838564640022" a="2.4950085587354618" b="0.00033161552155726586" c="-0.00022847445379753953" d="1.4810395713648097e-05" /> - <width sOffset="314.65029401762519" a="2.4915997532869607" b="-0.0007646890970116867" c="5.929892880510096e-05" d="1.4760383206834172e-05" /> - <width sOffset="319.54679156142652" a="2.4910100108362458" b="0.00087769605775790227" c="5.736066811673474e-05" d="-4.6416879864579914e-05" /> - <width sOffset="322.54643882272273" a="2.4929061002958663" b="-3.1141459324820087e-05" c="-0.00020320977621632696" d="1.9967987047929092e-05" /> - <width sOffset="324.80030350206471" a="2.4920322469847083" b="-0.00064284964234236335" c="-7.2569491229595835e-05" d="1.8364131408449967e-05" /> - <width sOffset="332.87558167387994" a="2.4917791572453689" b="0.0017776942043930101" c="-0.0010974323708363074" d="0.00024229826651392562" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="334.95031298650423" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8536203299057012" b="0.0015667975973823055" c="-0.00087873842896176542" d="5.2166254699530945e-05" /> - <width sOffset="2.6211728228450264" a="3.8526292199329371" b="-0.0019646208703355999" c="-0.00019533638913918412" d="3.2478042092213764e-05" /> - <width sOffset="7.980888833821659" a="3.8414885884273531" b="-0.00125956915777423" c="0.00017489707237175337" d="-8.2927279289276179e-06" /> - <width sOffset="10.150009484439522" a="3.8394947017260828" b="-0.00061787740930657872" c="0.00012850252050388143" d="-6.2263549463604321e-06" /> - <width sOffset="20.300018968879044" a="3.839951132847129" b="6.6358640727741999e-05" c="-5.1394641368530486e-05" d="-8.4179146789325668e-06" /> - <width sOffset="23.299401247903724" a="3.8394606631442132" b="-0.00046913581975173831" c="-0.0014987928666145502" d="0.00021739771261362916" /> - <width sOffset="24.90087742293823" a="3.8357582883121362" b="-0.0035970012961524262" c="0.0001470253846115716" d="0.00018192761211638888" /> - <width sOffset="27.203552296750459" a="3.830476383318846" b="-2.5987327906305292e-05" c="0.00042317351831517528" d="-2.0537631210422374e-05" /> - <width sOffset="30.450028453318566" a="3.8341493712500663" b="0.0020722824348774959" c="0.00023721585666914804" d="-1.8011263136274537e-05" /> - <width sOffset="40.583885419465119" a="3.8607662131109128" b="0.0013311024742300309" c="-0.00027738338122115721" d="-0.0001019186676566025" /> - <width sOffset="40.748296529721479" a="3.8609771102459023" b="0.0012316277603286348" c="0.00035154449215290363" d="-7.1175745075816767e-05" /> - <width sOffset="44.321513202679597" a="3.8666192522981557" b="0.0010176274824041391" c="-0.0050009084949137056" d="0.00086495886978269886" /> - <width sOffset="48.168217342431348" a="3.8457682820686081" b="0.0009403302918841776" c="0.00074709553636196865" d="-8.8253182581345384e-05" /> - <width sOffset="50.750047422197611" a="3.8516572347015856" b="0.0030332312275970414" c="7.4714440170715716e-05" d="-8.5795595221628077e-05" /> - <width sOffset="53.979918683812272" a="3.8593427900322608" b="0.00083079072914995437" c="-0.00067105961979976869" d="5.1200356383795648e-05" /> - <width sOffset="58.809986297765093" a="3.8534694704552326" b="-0.0020682916366163481" c="-0.00083502851171434627" d="7.7037575207898092e-05" /> - <width sOffset="60.900056906637133" a="3.8462022330473786" b="-0.0045492370266927177" c="-0.00035659360981605973" d="7.7772030065762868e-05" /> - <width sOffset="67.354947194865602" a="3.8228962662792219" b="0.00056847461757247202" c="0.0034437633133555215" d="-0.0007464046377158711" /> - <width sOffset="70.441559572532086" a="3.8355109694381015" b="0.00049421457013969282" c="-4.2982158498214278e-05" d="9.7715653301681076e-07" /> - <width sOffset="71.050066391076655" a="3.8357960070878327" b="0.00044299016326348426" c="-3.5807858361227878e-05" d="1.0048592162427276e-06" /> - <width sOffset="81.200075875516177" a="3.8376541019621371" b="2.665986552137853e-05" c="-1.8425218762325963e-05" d="2.8573588943295514e-06" /> - <width sOffset="85.453060325707071" a="3.8376540222275999" b="2.4986194137250906e-05" c="-1.0220420458717475e-05" d="4.129246408666602e-07" /> - <width sOffset="91.350085359955699" a="3.8375306301258965" b="-5.2475711922036942e-05" c="-6.7666865507705963e-06" d="-9.1087016987450872e-08" /> - <width sOffset="94.14500217545941" a="3.8373291178263003" b="-9.2434959071028774e-05" c="-0.0001110733199768534" d="5.2305862444376382e-06" /> - <width sOffset="101.50009484439522" a="3.8327216784074389" b="-0.00087746091877864761" c="4.7018302908355709e-06" d="5.2236895570437812e-06" /> - <width sOffset="108.17706281699388" a="3.8286274622269962" b="-0.00011602694137634935" c="0.0060765409707579801" d="-0.0011341996289630891" /> - <width sOffset="111.6175274269159" a="3.8539658192353272" b="0.0014203499948264788" c="-8.0365403466120248e-05" d="1.4258110773230851e-06" /> - <width sOffset="111.65010432883474" a="3.8540120045989461" b="0.0014151184225723221" c="-7.6540139575672196e-05" d="1.2310930076878639e-06" /> - <width sOffset="118.93090173893611" a="3.8607329481965138" b="0.00049635268395737254" c="-0.00011194423962522106" d="2.3113844047437785e-06" /> - <width sOffset="121.80011381327427" a="3.8612901179354218" b="-8.8946274147566422e-05" c="-8.4768760653173273e-05" d="4.0839729589732558e-06" /> - <width sOffset="128.67099762098547" a="3.8580018358048154" b="-0.00067541750308156359" c="-2.5876226403653506e-05" d="3.0731541030780932e-06" /> - <width sOffset="131.95012329771379" a="3.8556171759158229" b="-0.00074598650834387754" c="3.9654375823576575e-06" d="2.4394505966983901e-06" /> - <width sOffset="142.10013278215331" a="3.8510048237243746" b="8.8468256126381152e-05" c="7.7231428381013774e-05" d="2.3617824276741996e-06" /> - <width sOffset="142.22369569136424" a="3.8510169387284696" b="0.00010766231368108821" c="0.0029461274366247244" d="-0.00052861502236585143" /> - <width sOffset="145.95538133985031" a="3.8649751858998327" b="1.2055018420008935e-05" c="-0.00044939968536329689" d="2.2608940901335629e-05" /> - <width sOffset="146.42412894447199" a="3.864884421235443" b="-0.0003943518313655023" c="-0.00043531917854063148" d="2.3846805248602422e-05" /> - <width sOffset="152.25014226659283" a="3.8525268141709201" b="-0.0030384468568865424" c="-2.226575071761999e-05" d="2.4087520675261541e-05" /> - <width sOffset="153.19963500523343" a="3.8496423765311194" b="-0.0030155818597278825" c="-0.0003858594312475881" d="4.5423177968938023e-05" /> - <width sOffset="159.43325515723845" a="3.8268533320719458" b="-0.0025310198115339657" c="0.00011051816902440731" d="-3.6558702050025363e-06" /> - <width sOffset="162.40015175103235" a="3.820221414646598" b="-0.0019717699756877666" c="8.547198341157103e-05" d="1.6899811125234028e-06" /> - <width sOffset="162.95217361205201" a="3.8191592845160862" b="-0.0018758602146157601" c="0.00013212658359826728" d="-2.9012324925904977e-07" /> - <width sOffset="172.55016123547188" a="3.8130699617167503" b="0.00058025876313006213" c="0.00011654496146040416" d="-5.2066829514013623e-07" /> - <width sOffset="177.87436053171334" a="3.8193845043011496" b="0.001776997660913261" c="0.0026042192151418055" d="-0.00044471579493630047" /> - <width sOffset="179.11136854448077" a="3.8247258288959536" b="0.0061783803158474582" c="0.00091738105327600935" d="-0.00044375847434419857" /> - <width sOffset="182.08699669716341" a="3.8395413821761224" b="-0.0001496456258479021" c="1.5000002096352443e-05" d="9.3913568979201785e-07" /> - <width sOffset="182.7001707199114" a="3.8394554796130649" b="-0.0001301911071772429" c="7.3516238191558966e-06" d="-2.2049526450739552e-07" /> - <width sOffset="192.85018020435092" a="3.8386608549445427" b="-4.9101051718236007e-05" c="-5.829182976170302e-07" d="-3.8970805033795062e-07" /> - <width sOffset="199.42836729438039" a="3.8382017023756472" b="-0.0001073611208506742" c="-2.1777301620538873e-05" d="1.8101259740070442e-07" /> - <width sOffset="203.00018968879044" a="3.8375486431165378" b="-0.00025600239797391307" c="-1.6467925627262535e-05" d="-3.356107067509919e-07" /> - <width sOffset="207.09044000573789" a="3.836203052394068" b="-0.00040756272404208669" c="-0.031453152652155182" d="0.05404417031600748" /> - <width sOffset="207.48212423318364" a="3.8344655422472824" b="-0.00017316243544339641" c="3.7805021056072008e-05" d="-1.1504965781740736e-06" /> - <width sOffset="213.15019917322996" a="3.834489105391885" b="0.00014451468499310292" c="2.1449319201375107e-05" d="3.476041371975962e-07" /> - <width sOffset="216.72569117081582" a="3.8352959165025107" b="0.00031122988632672729" c="0.00047952445037979466" d="-2.3665465674653218e-05" /> - <width sOffset="223.30020865766949" a="3.8513439787273906" b="0.0035477454980325854" c="1.1482859253733259e-05" d="-2.2987138145417823e-05" /> - <width sOffset="226.13709860856355" a="3.8609761332825681" b="0.0030578990716089685" c="-0.0015031322388471715" d="0.00019190427533196159" /> - <width sOffset="230.32468367380932" a="3.861514711697497" b="0.00056453535592760869" c="-9.3081118463395301e-05" d="-5.675801153907513e-05" /> - <width sOffset="230.9373387195493" a="3.8618125875427971" b="0.00038657040942996512" c="2.6267890424789956e-05" d="-2.5924566755629872e-05" /> - <width sOffset="233.45021814210901" a="3.8625384984529987" b="2.7479562595059256e-05" c="-0.00017776130297365644" d="-2.5075144183812174e-05" /> - <width sOffset="236.92722288781164" a="3.8594309433967604" b="-0.0021181167564194915" c="-0.0012271042760647007" d="0.00022006930472028414" /> - <width sOffset="240.52291286745498" a="3.8461803574776923" b="-0.002406870692294995" c="0.00037773991045619409" d="-2.3835572705345131e-05" /> - <width sOffset="243.60022762654853" a="3.8416561946451484" b="-0.00075918053690934026" c="0.00015055102043875712" d="-2.4715692540845454e-05" /> - <width sOffset="247.70236246312888" a="3.8393692400340411" b="-0.00077173007195137648" c="-0.00065959573731715461" d="0.00021616807256930951" /> - <width sOffset="249.3164123503328" a="3.8373142337809849" b="-0.0012115155956033785" c="0.00018165227717833205" d="0.00020592439877805641" /> - <width sOffset="250.52654052305371" a="3.8364790816495811" b="0.00013280284744803753" c="0.0031234082733354609" d="-0.0005055678288659088" /> - <width sOffset="253.75023711098805" a="3.8524291312607337" b="0.0045087281954845782" c="-0.0017678329476563481" d="-0.00050534186427971829" /> - <width sOffset="254.58153154512593" a="3.8546652482729069" b="0.00052189866846860265" c="-0.0048836540075009507" d="0.00081686430480177122" /> - <width sOffset="258.416714372694" a="3.830914518328191" b="-0.00089265540907341534" c="7.6771035764228073e-05" d="-1.7856093991735039e-06" /> - <width sOffset="263.90024659542757" a="3.8280336313081476" b="-0.00021177765239386312" c="5.5403238318348859e-05" d="-8.0149323043921684e-07" /> - <width sOffset="274.0502560798671" a="3.8307537704262051" b="0.00066519316446273066" c="3.2028156811292798e-05" d="-7.8016987791288474e-07" /> - <width sOffset="284.20026556430662" a="3.8399893052489942" b="0.0010742397509001566" c="8.2791433353741245e-06" d="-1.0119237084006735e-06" /> - <width sOffset="285.04865929755886" a="3.8409060246854176" b="0.0010861026347171502" c="0.00045414661955705876" d="-3.0530499141648289e-05" /> - <width sOffset="286.38983712463954" a="3.8431059278718633" b="0.0021395344520892578" c="0.00042434618989746779" d="-3.3693783365317361e-05" /> - <width sOffset="294.3172237341621" a="3.8699485098455231" b="0.0025151454337646486" c="-9.6670424062778254e-05" d="-4.3649273499128494e-06" /> - <width sOffset="294.35027504874614" a="3.8700315329491355" b="0.0025087409598707994" c="-9.9026566782347113e-05" d="-4.1385615527302804e-06" /> - <width sOffset="302.03460797525759" a="3.8815842362578552" b="0.00025370132215495311" c="-0.00070331510718638014" d="2.4361002730296823e-05" /> - <width sOffset="303.86857168362241" a="3.8798342374492867" b="-0.0020801983799439085" c="-0.0016457621859069787" d="0.00020193387142865065" /> - <width sOffset="304.50028453318566" a="3.8779142956163817" b="-0.0039177447469661494" c="-0.0012706313116383925" d="0.00020008028339016468" /> - <width sOffset="308.17838564640022" a="3.8562705702273341" b="-0.0051444506270522878" c="0.00045597693849111157" d="-1.6298973565931081e-05" /> - <width sOffset="314.65029401762519" a="3.8376567021621018" b="-0.0012904454585411658" c="0.00013954656238613294" d="-1.6147226205996988e-05" /> - <width sOffset="319.54679156142652" a="3.8327881297388231" b="-0.0010852892408591448" c="0.00012111280305506227" d="4.5030036874926141e-05" /> - <width sOffset="320.0345544653963" a="3.8322928056841024" b="-0.00093500092953860978" c="-0.00035938734380971103" d="1.9955621757217981e-05" /> - <width sOffset="324.80030350206471" a="3.8218343147396059" b="-0.0030007826762051912" c="-7.5764225503693032e-05" d="1.9948484906735309e-05" /> - <width sOffset="332.87558167387994" a="3.8031662352970894" b="-0.00032188793176548278" c="0.0018772537568095564" d="-0.00020398565019882491" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8752478370914041" b="-0.0051951672737061607" c="-0.00029274561548561686" d="9.5234110024416583e-05" /> - <width sOffset="2.6211728228450264" a="3.8613341440286142" b="-0.0047669096989280402" c="0.00018293783496737856" d="0.00011492232263172655" /> - <width sOffset="6.1895025219074675" a="3.8518751303195837" b="0.00092856513808841474" c="0.00017228616254170911" d="-5.8417430731946026e-06" /> - <width sOffset="10.150009484439522" a="3.8578922269578619" b="0.0020183522253374104" c="0.00010467545226525464" d="-5.8805293652896416e-06" /> - <width sOffset="20.300018968879044" a="3.8830133084939438" b="0.0023257819856822371" c="-6.9055406063993786e-05" d="-6.3565655652571717e-06" /> - <width sOffset="23.402123492408094" a="3.8893738491350707" b="0.0017138391186476915" c="-6.9951635995345278e-05" d="-7.5036170016771204e-06" /> - <width sOffset="24.90087742293823" a="3.8917600808075257" b="0.0014535932403970291" c="-0.00070503634187012089" d="2.7966483496216635e-05" /> - <width sOffset="30.450028453318566" a="3.88289483581717" b="-0.0037875907930826616" c="-0.00023221087757333074" d="2.8337350319480594e-05" /> - <width sOffset="40.748296529721479" a="3.8502116128347001" b="0.000445565184915276" c="-3.5931544420853673e-05" d="-2.4055723614532244e-06" /> - <width sOffset="40.97085078422559" a="3.8503089690415249" b="0.0004292143018958135" c="2.3752245786980496e-05" d="-8.9421882582143513e-07" /> - <width sOffset="50.750047422197611" a="3.8559415480355037" b="0.00063722041925791514" c="5.3292953324420203e-07" d="-7.21917032943197e-07" /> - <width sOffset="60.900056906637133" a="3.861709350024022" b="0.00042491738933144081" c="-2.3892812483028912e-05" d="-5.3338350332760718e-07" /> - <width sOffset="71.050066391076655" a="3.8630030145230854" b="-0.00022495897129247151" c="-4.4280070312284115e-05" d="-8.3552676213319876e-07" /> - <width sOffset="73.329597713539471" a="3.8622502257569553" b="-0.00043985943629217808" c="-0.00034661232726499044" d="7.2059389888843022e-05" /> - <width sOffset="76.626934066696975" a="3.859614676662674" b="-0.0003752729162969069" c="3.1356540722188375e-05" d="-6.3884185505143875e-08" /> - <width sOffset="81.200075875516177" a="3.8585481694189236" b="-9.2485251473368963e-05" c="2.6289704371033361e-05" d="-1.7847888253002686e-08" /> - <width sOffset="91.350085359955699" a="3.8602992161664265" b="0.00043568003343322497" c="2.3940074513061216e-05" d="-2.4947999386833785e-07" /> - <width sOffset="94.14500217545941" a="3.8616984681346578" b="0.00056365458324849835" c="0.00012539113854282053" d="-5.5711532552936973e-06" /> - <width sOffset="101.50009484439522" a="3.8704108194937059" b="0.0015040269503444415" c="3.4536426640218924e-06" d="-5.5895283533206895e-06" /> - <width sOffset="108.17706281699388" a="3.8789432835504907" b="0.00080257126905431363" c="-0.0060757135795805224" d="0.0011338337901667932" /> - <width sOffset="111.6175274269159" a="3.8559618532173636" b="-0.00074110352542474972" c="7.7416830478588099e-05" d="-1.7917101930491552e-06" /> - <width sOffset="111.65010432883474" a="3.8559377924575231" b="-0.00073606522879983048" c="7.7116107736749574e-05" d="-1.7885918371121936e-06" /> - <width sOffset="121.80011381327427" a="3.8545411354121066" b="0.00027659658035046424" c="2.525485714569852e-05" d="-1.8847105529198162e-06" /> - <width sOffset="128.67099762098547" a="3.857022516521964" b="0.00035671680645602574" c="1.1694952260250855e-05" d="-8.7389169705847753e-07" /> - <width sOffset="131.95012329771379" a="3.8582871748226006" b="0.0004052252484165471" c="7.5306555019856795e-06" d="-2.2461345974611511e-07" /> - <width sOffset="142.10013278215331" a="3.862941169247716" b="0.00048867684774724454" c="1.6285959751807173e-06" d="-1.537897496402561e-07" /> - <width sOffset="144.21309986786065" a="3.8639795476273981" b="0.00049349934418396204" c="2.3337771927020646e-05" d="-3.057737771746221e-07" /> - <width sOffset="146.42412894447199" a="3.8651814741231965" b="0.00059221586627202253" c="3.9022701636526657e-05" d="-1.5436381222738107e-06" /> - <width sOffset="152.25014226659283" a="3.8696510040340568" b="0.00088972493304570119" c="1.5473383793892218e-05" d="-1.7634505338258704e-06" /> - <width sOffset="162.40015175103235" a="3.8784318229462071" b="0.0006588086511375628" c="-3.8062458755153571e-05" d="-1.8156012148274e-06" /> - <width sOffset="162.95217361205201" a="3.8787835956075418" b="0.00061512623818489598" c="-8.492509407171513e-05" d="1.6450314933454113e-07" /> - <width sOffset="172.55016123547188" a="3.8770096042702487" b="-0.00096963100076039358" c="-9.1471581810967031e-05" d="2.5006801207457374e-07" /> - <width sOffset="177.87436053171334" a="3.8692918833359773" b="-0.0019223907563230007" c="-0.0025834680250050269" d="0.00044444519465355268" /> - <width sOffset="182.07109265008381" a="3.8485738921465598" b="-0.00012318362717356202" c="0.0029250566159538258" d="0.00044912755825742831" /> - <width sOffset="182.08699669716341" a="3.848572674695141" b="-2.9802345583520978e-05" c="-0.00011251413457179908" d="4.4293527293172387e-06" /> - <width sOffset="192.85018020435092" a="3.8407404212356027" b="-0.00091245292777824096" c="2.706832392414584e-05" d="4.6034396948910677e-06" /> - <width sOffset="199.24637580364359" a="3.8372162079825634" b="-1.1859813016705197e-06" c="2.3845745587585015e-05" d="-1.0871736117122844e-07" /> - <width sOffset="199.42836729438039" a="3.8372167812813585" b="7.4826618057389505e-06" c="3.7290054457820337e-05" d="-6.7943841245661896e-07" /> - <width sOffset="203.00018968879044" a="3.8376882900396216" b="0.00024786491202405462" c="2.9476373167235828e-05" d="-1.1804768181034665e-06" /> - <width sOffset="213.15019917322996" a="3.8420064540361061" b="0.00048138814562724542" c="1.5788041763521479e-09" d="-1.9996122249520203e-06" /> - <width sOffset="216.72569117081582" a="3.8436362722050692" b="0.0004047094495974412" c="-0.00047579377746738536" d="2.2013457586900307e-05" /> - <width sOffset="223.30020865766949" a="3.8319869556622637" b="-0.0029969719948665595" c="-4.1118128410742741e-05" d="2.2296064754695978e-05" /> - <width sOffset="230.9373387195493" a="3.8166320347207079" b="0.00027628348595969913" c="0.00024604745542911277" d="-8.5373800320222594e-06" /> - <width sOffset="233.45021814210901" a="3.8187445150763693" b="0.0013511291893963924" c="0.00017586043268942253" d="-9.8718854406584233e-06" /> - <width sOffset="236.34215321831772" a="3.8238839022200506" b="0.0021205988195264875" c="0.0001067431073902977" d="-9.4732231588494374e-06" /> - <width sOffset="243.60022762654853" a="3.8412764419713459" b="0.0021729595776325155" c="-0.00010159828146092428" d="-9.413503651164285e-06" /> - <width sOffset="249.3164123503328" a="3.8486195728344077" b="8.8698350876329656e-05" c="-5.7556113817797204e-05" d="8.3017013978183248e-07" /> - <width sOffset="253.75023711098805" a="3.847953722219835" b="-0.00037272864303636516" c="-4.48005035853834e-05" d="6.1726566755021892e-07" /> - <width sOffset="263.90024659542757" a="3.840200517621239" b="-0.0010914026023949709" c="-2.3198749920612954e-05" d="7.1755439002120468e-07" /> - <width sOffset="274.0502560798671" a="3.8274831063872621" b="-0.0013405645099385907" c="-1.3440807140307554e-07" d="7.2179000452092385e-07" /> - <width sOffset="284.20026556430662" a="3.814617279130295" b="-0.0011202107472075484" c="2.183489669559222e-05" d="9.4098173756136484e-07" /> - <width sOffset="286.38983712463954" a="3.8122790566775953" b="-0.0010110587789415688" c="-6.5024118585602973e-05" d="4.1042659617221527e-06" /> - <width sOffset="287.15157626896507" a="3.8114729776808285" b="-0.0011029771536720323" c="-5.9159585315512062e-05" d="4.2082466555809538e-06" /> - <width sOffset="294.35027504874614" a="3.8020371210911121" b="-0.0013004912386293589" c="3.3548737198544232e-05" d="3.9926927713136987e-06" /> - <width sOffset="302.03460797525759" a="3.7958364240926223" b="-7.7598689566729467e-05" c="0.00063447456476222364" d="-2.450687151138502e-05" /> - <width sOffset="304.50028453318566" a="3.7991350539121131" b="0.0026042463796987665" c="0.00046059285106102803" d="-2.2658765408856415e-05" /> - <width sOffset="314.65029401762519" a="3.8493258476315231" b="0.0049511889274032241" c="-0.00022933017981607336" d="-2.2564168680317841e-05" /> - <width sOffset="319.85742338857165" a="3.8657034552384451" b="0.00072745720160347234" c="-6.6141627996003319e-05" d="-0.00013891928110621748" /> - <width sOffset="320.0345544653963" a="3.8658294632421901" b="0.00069094977432664203" c="0.00040642969792457488" d="-0.00011384486608410801" /> - <width sOffset="322.84140131853377" a="3.8684533640924084" b="0.0002817791018552913" c="-0.00022471047330520548" d="1.2193598942638436e-05" /> - <width sOffset="324.80030350206471" a="3.8682347187471824" b="-0.00045822116188912047" c="-0.00015460253385631443" d="1.2142917671958418e-05" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9033200892730129" b="0.0024202593501452276" c="0.00051729950543933083" d="-6.1502271492358009e-05" /> - <width sOffset="3.1019798983772411" a="3.9139695584526986" b="0.0038541885849767104" c="-0.00022307735329695134" d="-0.00012061902487652794" /> - <width sOffset="6.1895025219074675" a="3.9201927556464815" b="-0.00097283382102763324" c="-9.9425374478479277e-05" d="1.450408283752273e-07" /> - <width sOffset="10.150009484439522" a="3.914789302709607" b="-0.0017535584328218082" c="-9.4904101422261145e-05" d="6.1275631427542379e-09" /> - <width sOffset="15.178499079456667" a="3.9035726141296432" b="-0.0027075421865640982" c="-0.00057739783146358342" d="0.00011436840691254797" /> - <width sOffset="19.565355277223617" a="3.8902385901179337" b="-0.001170573772515405" c="0.0010865649659798867" d="-6.9653572433987044e-05" /> - <width sOffset="20.300018968879044" a="3.8899374455070421" b="0.00031316336319887525" c="0.00093386468111043494" d="-6.9791470860614967e-05" /> - <width sOffset="23.402123492408094" a="3.8978121447528862" b="0.0040922341072961539" c="0.00022610340627892225" d="-6.8644419424670859e-05" /> - <width sOffset="29.577288102707378" a="3.9155402129808468" b="-0.00096809688849603683" c="-0.0001311527169064697" d="8.458697763761849e-06" /> - <width sOffset="30.450028453318566" a="3.9146010428011131" b="-0.0011776930706513184" c="-0.00010835548768773296" d="8.4754590528684151e-06" /> - <width sOffset="40.109771974193634" a="3.9007535228347971" b="-0.00089851386107422015" c="0.00017740989351469274" d="-5.094204200131043e-06" /> - <width sOffset="40.97085078422559" a="3.9001081209374679" b="-0.00060431745685064124" c="0.00010296045834673576" d="-6.6055577299825178e-06" /> - <width sOffset="50.750047422197611" a="3.8978671777099239" b="-0.00048569802289322129" c="-8.7266356430293769e-05" d="-6.5859370605366929e-06" /> - <width sOffset="54.535275669706657" a="3.8944211661128199" b="-0.0014294331654629154" c="-0.00032209157897401266" d="2.1351179366874912e-05" /> - <width sOffset="60.900056906637133" a="3.877780255076837" b="-0.00293468101787853" c="8.1716347036015039e-05" d="2.1944764727100328e-05" /> - <width sOffset="65.515680241791969" a="3.8681336099787651" b="-0.0007778048556832493" c="0.00083927812894802115" d="-3.9125579951414219e-05" /> - <width sOffset="71.050066391076655" a="3.8829031719604199" b="0.0049167910060201195" c="0.00017921903994521694" d="-3.9065746863058411e-05" /> - <width sOffset="73.329597713539471" a="3.8945796848343606" b="0.005124874145447854" c="0.00020868268779351154" d="-0.00011196066351403367" /> - <width sOffset="76.626934066696975" a="3.9097332106945486" b="0.0028492157394525933" c="-0.00056398994037150233" d="-3.9837389184870337e-05" /> - <width sOffset="76.773587412951301" a="3.910138802219008" b="0.0026812233428510643" c="-0.00014217740358557458" d="1.7715870284657615e-06" /> - <width sOffset="81.200075875516177" a="3.9193750635938334" b="0.0015266664359686014" c="-0.00012876733574374035" d="1.6144895441617911e-06" /> - <width sOffset="86.529873365714749" a="3.9240984633740128" b="0.00029164595060756753" c="-9.1407741609871631e-05" d="4.2337422276035167e-06" /> - <width sOffset="91.350085359955699" a="3.9238546083837438" b="-0.00029445749844613693" c="-3.3128445737313899e-05" d="3.7834816979963952e-06" /> - <width sOffset="99.860183832177071" a="3.9212813471905998" b="-3.6290777183192605e-05" c="-4.5318494208316276e-06" d="3.2309027527176259e-07" /> - <width sOffset="101.50009484439522" a="3.9212110709071113" b="-4.8547768813364013e-05" c="-5.1691617061703563e-07" d="1.0928408982473661e-06" /> - <width sOffset="111.65010432883474" a="3.9218078197955895" b="0.00027872105866428036" c="3.4204173360773063e-05" d="1.0560790693506796e-06" /> - <width sOffset="121.80011381327427" a="3.9292649693609105" b="0.0012994667544635138" c="6.9956072409031888e-05" d="6.998997158739023e-07" /> - <width sOffset="125.80758408126147" a="3.9356410705468141" b="0.0018938813010110061" c="0.00061852420078892614" d="-4.61759694834777e-05" /> - <width sOffset="131.95012329771379" a="3.9599098421548402" b="0.0042657324709722191" c="-0.00022796490608969979" d="-4.6376284083390402e-05" /> - <width sOffset="136.51145757500299" a="3.9702230828722378" b="-0.00070859876378605541" c="2.3365381979575233e-06" d="4.3380137930152965e-07" /> - <width sOffset="142.10013278215331" a="3.9664116535149621" b="-0.00064183532400111424" c="1.0980534412559832e-05" d="6.0375951316138755e-07" /> - <width sOffset="144.21309986786065" a="3.9651101962586459" b="-0.00058734562007238772" c="-7.8763276393007072e-06" d="7.5574354070190221e-07" /> - <width sOffset="147.86735428083483" a="3.962895587090991" b="-0.00061463419527375428" c="3.0284691514562605e-07" d="3.2007087981753782e-07" /> - <width sOffset="152.25014226659283" a="3.9602345392607532" b="-0.00059353500577008196" c="1.1717745170471358e-05" d="-5.3093305664938429e-07" /> - <width sOffset="157.86677380546681" a="3.9571764527022286" b="-0.00051215380999680292" c="0.00018710553560471752" d="-8.508709704005205e-06" /> - <width sOffset="162.40015175103235" a="3.9579072305904934" b="0.00065968576662481953" c="7.049927981042932e-05" d="-6.4228281561892151e-06" /> - <width sOffset="169.06835446009435" a="3.9635365184339304" b="0.00074312098145382555" c="0.00010756069381881304" d="-4.4137406581035621e-06" /> - <width sOffset="172.55016123547188" a="3.9672415746598517" b="0.0013316090381954371" c="4.178735361107625e-05" d="-7.6221691077419656e-06" /> - <width sOffset="182.07109265008381" a="3.9771293299637591" b="5.4511850799683452e-05" c="-8.8795482377986899e-05" d="-1.2303937561852792e-05" /> - <width sOffset="182.20553803716277" a="3.977135023901651" b="2.9968363038657741e-05" c="7.7946177085368981e-05" d="-3.5918046414922874e-06" /> - <width sOffset="192.85018020435092" a="3.9819538093920115" b="0.00046844170466658327" c="-3.7035798054655231e-05" d="-3.5765173070566146e-06" /> - <width sOffset="192.86113396273646" a="3.9819589361408299" b="0.00046762905494854003" c="-9.6922351704746332e-05" d="-2.3287742528342409e-06" /> - <width sOffset="199.24637580364359" a="3.9803869484376948" b="-0.0010549578103689733" c="-4.9975631674001973e-05" d="2.3833832067611563e-06" /> - <width sOffset="203.00018968879044" a="3.975848690699844" b="-0.0013294026436527742" c="-2.2877008241865084e-05" d="2.1662097988174061e-06" /> - <width sOffset="213.15019917322996" a="3.9622635553641485" b="-0.0011243000467092319" c="4.7617929735631529e-05" d="1.9337565970162254e-06" /> - <width sOffset="218.73569575720919" a="3.9578063214645667" b="-0.00041137378618840835" c="0.00037630676408504" d="-1.8768440293658013e-05" /> - <width sOffset="223.30020865766949" a="3.9619839782293593" b="0.0018508315103905482" c="0.00012007172890701725" d="-1.8414306343833483e-05" /> - <width sOffset="232.01189323211185" a="3.9750456973217556" b="-0.00024969004228507562" c="-0.00037957285133309718" d="2.4518714710445081e-05" /> - <width sOffset="233.45021814210901" a="3.9739742670345088" b="-0.0011894168437890688" c="-0.00028298640176159685" d="2.1195139330601475e-05" /> - <width sOffset="236.34215321831772" a="3.9686804813191126" b="-0.0022943902523728148" c="-0.00011563073115909523" d="2.0796477048793303e-05" /> - <width sOffset="241.69977630718645" a="3.9562671287494391" b="-0.0017425679620186611" c="-0.00012809752732241694" d="1.6340953222120902e-05" /> - <width sOffset="243.60022762654853" a="3.9526049738664701" b="-0.0020523975833806902" c="-3.9998115027009502e-05" d="1.4883614505485438e-05" /> - <width sOffset="251.19533451959182" a="3.9412304158221567" b="-8.4264627683999766e-05" c="5.8607659141613893e-05" d="-1.2952264295279302e-06" /> - <width sOffset="253.75023711098805" a="3.9413760902533141" b="0.00018984521530311234" c="5.0431807363287958e-05" d="-1.5576750359419863e-06" /> - <width sOffset="263.90024659542757" a="3.9468698099067208" b="0.00073218423252464503" c="5.8802683327274321e-06" d="-1.4551067294594938e-06" /> - <width sOffset="274.0502560798671" a="3.9533857099819469" b="0.00040182675164051782" c="-3.614507463768066e-05" d="-1.6504138200763885e-06" /> - <width sOffset="278.51803298567415" a="3.9543123030603038" b="-1.9981389511414453e-05" c="-8.4388357227997297e-05" d="1.7204025891657439e-06" /> - <width sOffset="284.20026556430662" a="3.9517896889526813" b="-0.00081236606067188681" c="-5.4494937975339127e-05" d="1.8387803512274216e-06" /> - <width sOffset="287.15157626896507" a="3.9489647494007447" b="-0.0010859804220339205" c="-3.4699894718142695e-05" d="1.734799657235857e-06" /> - <width sOffset="294.35027504874614" a="3.9399960705544292" b="-0.0013158700678565756" c="4.1675446201236067e-06" d="1.6097758843504675e-06" /> - <width sOffset="304.50028453318566" a="3.92875264110307" b="-0.00073373849506717329" c="5.614275232202345e-05" d="1.5679571957694021e-06" /> - <width sOffset="310.2344800193967" a="3.926686903022893" b="6.4796530491877498e-05" c="0.0012288860336329883" d="-0.00025862948086488829" /> - <width sOffset="313.32683123449988" a="3.9309907266009994" b="0.00024555218687502924" c="-3.0744853207498958e-05" d="1.4736627888758125e-06" /> - <width sOffset="314.65029401762519" a="3.9312652706406372" b="0.00017191644759187251" c="-2.4762880925237231e-05" d="1.7616980670700406e-06" /> - <width sOffset="319.85742338857165" a="3.9317377653004613" b="5.7330480002206678e-05" c="-0.00051291489992087171" d="0.00011811681057924545" /> - <width sOffset="322.84140131853377" a="3.9304801096155391" b="0.00015145728254501351" c="0.00021696382674316633" d="-7.9216544473530174e-06" /> - <width sOffset="323.68020954439118" a="3.9307551335732698" b="0.00049871835757621212" c="0.00099440020690183973" d="-0.00015331308330807423" /> - <width sOffset="324.80030350206471" a="3.9323458818503894" b="0.0021493170837305485" c="0.00047274220293663219" d="-0.00015542605488902945" /> - <width sOffset="327.36985022169745" a="3.938353067869353" b="0.0015001490550439979" c="-2.1543876640972718e-05" d="-1.7901125804251135e-06" /> - <width sOffset="334.06730721271975" a="3.9468960942117728" b="0.00097067918601178227" c="0.0013210639592688936" d="5.8047862473836024e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.5196324603484626" b="-0.0089413787440776691" c="0.0044156600211438628" d="0.0012386353921596254" /> - <width sOffset="0.80321921913237482" a="3.5159412532858618" b="0.00054946541247716035" c="0.00028842501007090947" d="-5.929218096763198e-05" /> - <width sOffset="3.1019798983772411" a="3.5180082248076099" b="0.00093555242346065562" c="4.7569836600084318e-05" d="-1.7542758348590346e-07" /> - <width sOffset="10.150009484439522" a="3.5269036255718675" b="0.0015799567061629311" c="4.5093960918033129e-05" d="-2.1312796637467881e-07" /> - <width sOffset="15.178499079456667" a="3.5359615551497723" b="0.0020172984583894339" c="0.00052446499283823403" d="-0.00011457540731579338" /> - <width sOffset="17.033651241588498" a="3.5407774175547826" b="0.0027802586175601509" c="-9.7926175969020494e-05" d="-0.00011366979045422791" /> - <width sOffset="19.565355277223617" a="3.5453440271207306" b="9.8710226281624618e-05" c="-0.0011200705109953601" d="7.0352188888724994e-05" /> - <width sOffset="20.300018968879044" a="3.5448399055449933" b="-0.0014331263298926022" c="-0.0009517889435334679" d="7.1656770757279797e-05" /> - <width sOffset="28.322996297320913" a="3.5090823573673102" b="-0.0028682439846172414" c="0.008270551608503509" d="-0.00051322234313401786" /> - <width sOffset="29.577288102707378" a="3.5174836228615143" b="0.015456848260920402" c="0.0054249442251079801" d="-0.00059032546032194489" /> - <width sOffset="30.450028453318566" a="3.5347130703509033" b="0.023577074001715815" c="0.0039164268715707442" d="-0.00058700326871230859" /> - <width sOffset="33.581119059187365" a="3.6289117458114442" b="0.03083798695632561" c="-0.0070929285022739248" d="0.00042452758774864908" /> - <width sOffset="40.109771974193634" a="3.6460526529863548" b="-0.0074922382203183348" c="0.0011816982183026046" d="0.00043809725100624203" /> - <width sOffset="40.600037937758088" a="3.6427151231016142" b="-0.0060176412835249221" c="0.0018798210184153856" d="0.00041399663019781963" /> - <width sOffset="41.835494741301417" a="3.6389305502448428" b="0.00052294968290333998" c="-0.00011442556156417556" d="7.0691117579108755e-06" /> - <width sOffset="50.750047422197611" a="3.6395070899565933" b="0.00016817530780192914" c="7.7545022734813466e-05" d="7.4737184222665912e-06" /> - <width sOffset="54.535275669706657" a="3.6416600672343087" b="0.0010764757851275495" c="0.0003224516105426714" d="-2.046339800514362e-05" /> - <width sOffset="60.900056906637133" a="3.6562979724217222" b="0.0026941999231678746" c="-6.9167519110195893e-05" d="-2.0689435408780954e-05" /> - <width sOffset="65.515680241791969" a="3.6652254252960237" b="0.0007333956144272341" c="-0.00080934691913748592" d="4.0380909269744489e-05" /> - <width sOffset="71.050066391076655" a="3.6513396585885238" b="-0.0045145484366283526" c="-0.00013884342347332245" d="4.0549081063542246e-05" /> - <width sOffset="76.773587412951301" a="3.628554969324874" b="-0.0021188902622905643" c="0.00011806773398639337" d="-1.0598954046095055e-06" /> - <width sOffset="81.200075875516177" a="3.6213971950422881" b="-0.0011359414737917906" c="0.00010519364778652918" d="-9.6920106816198111e-07" /> - <width sOffset="86.529873365714749" a="3.6181843266108777" b="-9.7215325870181964e-05" c="7.815182435236399e-05" d="-3.5884537516195361e-06" /> - <width sOffset="91.350085359955699" a="3.6191296536145123" b="0.00040607421670148507" c="2.5445556309156128e-05" d="-3.4473216683914455e-06" /> - <width sOffset="99.860183832177071" a="3.6223035565284198" b="9.0179123368490572e-05" c="5.4312248544352288e-06" d="1.3069754669992346e-08" /> - <width sOffset="101.50009484439522" a="3.6224661061436212" b="0.00010809802005795318" c="4.3942636901859015e-06" d="-7.8139307322152327e-07" /> - <width sOffset="111.65010432883474" a="3.623198922819963" b="-4.4201998668936399e-05" c="-1.8065994534696985e-05" d="-8.1534145737925136e-07" /> - <width sOffset="121.80011381327427" a="3.6200364773937093" b="-0.00066293804723665476" c="-4.2123829193496109e-05" d="-5.1933830505665632e-07" /> - <width sOffset="125.80758408126147" a="3.6166698476315906" b="-0.00102557946926994" c="-0.00058852117411735795" d="4.635653089430645e-05" /> - <width sOffset="130.45014673942862" a="3.6038624768912659" b="-0.0034926514272996586" c="0.00015463455505588017" d="3.6489400398794418e-05" /> - <width sOffset="131.95012329771379" a="3.5990946444509802" b="-0.002782459257543789" c="0.00032961767979067713" d="4.2430750401858502e-05" /> - <width sOffset="136.51145757500299" a="3.5972876336256236" b="0.0028729469358199579" c="4.5325541431797044e-05" d="-4.3793350608324583e-06" /> - <width sOffset="142.10013278215331" a="3.6139948419111261" b="0.0029692232617311567" c="-2.7588348610664879e-05" d="-4.4186366150157962e-06" /> - <width sOffset="147.86735428083483" a="3.6293538037859157" b="0.0022101042803106372" c="-0.0001039322539022835" d="-3.9829639541373414e-06" /> - <width sOffset="152.25014226659283" a="3.6367084865292618" b="0.0010695539740575427" c="-0.00014627735765784065" d="-6.5216516424519474e-06" /> - <width sOffset="155.60904476008415" a="3.6384035359992715" b="-0.00013384503110188065" c="2.6770480897842689e-06" d="-3.6261784392865692e-07" /> - <width sOffset="157.86677380546681" a="3.6381108228543497" b="-0.0001273020924482356" c="-0.00018411298691328753" d="7.615158803376098e-06" /> - <width sOffset="162.40015175103235" a="3.6344594009313993" b="-0.0013271004364084809" c="-7.8915384227729466e-05" d="7.5535095094645453e-06" /> - <width sOffset="169.06835446009435" a="3.6243406836277559" b="-0.0013719492390347741" c="-9.3357960847028197e-05" d="5.5444220114213702e-06" /> - <width sOffset="172.55016123547188" a="3.6186660742505068" b="-0.0018204132750559749" c="-3.1183371606509293e-05" d="8.1926786732852142e-06" /> - <width sOffset="182.20553803716277" a="3.6055567051079782" b="-0.00013126829220738316" c="3.4422544853809439e-05" d="-5.1945388941411206e-07" /> - <width sOffset="182.7001707199114" a="3.6055001345285418" b="-9.7596531874655191e-05" c="2.825258853408076e-05" d="-5.9680675414138111e-07" /> - <width sOffset="192.85018020435092" a="3.6067961168799103" b="0.00029147763508483178" c="5.5744824659293942e-06" d="-5.7784422627164963e-07" /> - <width sOffset="192.86113396273646" a="3.6067993103235918" b="0.00029159955012281842" c="6.532451848605399e-05" d="-1.825587660737759e-06" /> - <width sOffset="203.00018968879044" a="3.6145684352659933" b="0.0010532437118591649" c="1.0105306321594554e-05" d="-2.0015308492200463e-06" /> - <width sOffset="213.15019917322996" a="3.6242069814038391" b="0.00063977233004248644" c="-4.9732201136282384e-05" d="-1.7281920229669227e-06" /> - <width sOffset="218.73569575720919" a="3.6259277475048557" b="-7.7532971657533474e-05" c="-0.0003749764948072722" d="1.8974004867716691e-05" /> - <width sOffset="223.30020865766949" a="3.6195657347188726" b="-0.0023147455288710646" c="-0.00011523557209495171" d="1.8898437941879434e-05" /> - <width sOffset="232.01189323211185" a="3.6031496639854494" b="-1.973458183162283e-05" c="0.00039706181346921922" d="-2.4034583112297591e-05" /> - <width sOffset="233.45021814210901" a="3.603871195484361" b="0.00097330652264536748" c="0.00030218642831174406" d="-2.064636215997513e-05" /> - <width sOffset="233.99513521870497" a="3.6044879557623215" b="0.0012842477537315488" c="0.00027322574712484082" d="-2.0743154671465591e-05" /> - <width sOffset="241.69977630718645" a="3.6211146437598161" b="0.0018004264156629517" c="0.00014049591473982024" d="-1.6287630844700651e-05" /> - <width sOffset="243.60022762654853" a="3.6249319012607342" b="0.0021579588562015391" c="4.9674846525971641e-05" d="-1.4935530926631057e-05" /> - <width sOffset="251.19533451959182" a="3.6376436709174094" b="0.00032783302342612999" c="-5.0113859947860994e-05" d="1.2433100084445258e-06" /> - <width sOffset="253.75023711098805" a="3.6381748676970793" b="9.6108182023569634e-05" c="-3.8859437914665049e-05" d="1.1731077695474465e-06" /> - <width sOffset="263.90024659542757" a="3.6363736595967491" b="-0.0003301689816091035" c="-4.8255892097895441e-07" d="1.2679170507357095e-06" /> - <width sOffset="274.0502560798671" a="3.6342985639405403" b="5.1907748571832033e-05" c="4.0025086110652067e-05" d="1.1526748427933472e-06" /> - <width sOffset="278.51803298567415" a="3.6354322153366194" b="0.00047857979234019413" c="8.1597008566942659e-05" d="-2.2181415599528291e-06" /> - <width sOffset="278.95114063443964" a="3.6356546178453537" b="0.00054801211754185956" c="9.4134505722226415e-05" d="-2.7630750432054335e-06" /> - <width sOffset="284.20026556430662" a="3.6407252936715082" b="0.001307864068413628" c="5.055120410564471e-05" d="-2.3358860647444651e-06" /> - <width sOffset="286.4438857659319" a="3.6438877286535791" b="0.0014994241025836769" c="-0.0064532634176447026" d="0.00069537288391862035" /> - <width sOffset="292.61938778547915" a="3.5708105242356663" b="0.0013530839206863082" c="0.00013901990477289421" d="-6.9615881462977663e-06" /> - <width sOffset="294.35027504874614" a="3.5735329589030185" b="0.0017717693429925017" c="0.00010345459620051812" d="-7.4838241554958377e-06" /> - <width sOffset="304.50028453318566" a="3.5943489105749507" b="0.0015588884634255638" c="-0.00011983610406213115" d="-8.00966933070948e-06" /> - <width sOffset="308.2661538689743" a="3.5980922225445018" b="0.00031554033498139446" c="-0.00015154817042701676" d="-1.771700675301485e-06" /> - <width sOffset="310.2344800193967" a="3.5981126537586734" b="-0.00030164446023840755" c="-0.0013077803868238428" d="0.00025842573738540443" /> - <width sOffset="313.32683123449988" a="3.5923159503078637" b="-0.00097618318874858104" c="-5.0039639173958254e-05" d="-1.67740626823877e-06" /> - <width sOffset="314.65029401762519" a="3.5909324726483671" b="-0.0011174485906610147" c="-5.6521996054145301e-05" d="-1.8083203178829273e-06" /> - <width sOffset="323.68020954439118" a="3.5749017832789889" b="-0.0025805742126230502" c="-0.00090287956209694829" d="0.00014358310854221463" /> - <width sOffset="324.80030350206471" a="3.5710803102428317" b="-0.0040627714810387633" c="-0.00041897906310276768" d="0.0001467336968719345" /> - <width sOffset="327.19174389552131" a="3.5609751190908407" b="-0.0035491940090245588" c="-0.00055964067432418799" d="0.00024638318116429188" /> - <width sOffset="327.36985022169745" a="3.5603266243715743" b="-0.0037250978971126087" c="-0.0011318309134853023" d="9.2747238898694851e-05" /> - <width sOffset="334.06730721271975" a="3.5124718000219097" b="-0.0064050846174790186" c="-0.00064689442476109171" d="3.2909263842341427e-05" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="33.581119059187365" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <roadMark sOffset="33.581119059187365" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="252.86276670674454" space="0" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <roadMark sOffset="286.4438857659319" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="48.506427220572334" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <predecessor id="-5" /> - <successor id="-5" /> - </link> - <width sOffset="0" a="0.21701630556761309" b="-0.0027886358718120004" c="0.0062740106477256873" d="-0.0038117155639508728" /> - <width sOffset="0.80321921913237482" a="0.21684891420206576" b="-8.7335983502503047e-05" c="0.0010720323394773916" d="4.7518813421122737e-05" /> - <width sOffset="10.150009484439522" a="0.34848992362873776" b="0.032406872225355501" c="0.0024041129250735229" d="4.7631917404791957e-05" /> - <width sOffset="17.033651241588498" a="0.70102145640882085" b="0.072276023642777409" c="0.003372482816915033" d="4.6726300543289596e-05" /> - <width sOffset="20.033590122536843" a="0.94945775153008238" b="0.093772067007949336" c="0.003773004016148111" d="-0.00037735798472574359" /> - <width sOffset="20.300018968879044" a="0.97470202262762662" b="0.095702181711157325" c="0.0034581608874897749" d="-0.00037866256669117753" /> - <width sOffset="22.533538420681239" a="1.2014870028547948" b="0.10548292230518594" c="0.0044349602064864841" d="-0.00024692170024260082" /> - <width sOffset="28.322996297320913" a="1.9129109860212319" b="0.13200611974086338" c="-0.0073513067510575644" d="0.00033795741364120858" /> - <width sOffset="28.822847707781733" a="1.977099903665569" b="0.12491031507618722" c="0.0017816377287327408" d="-0.00031797319370513877" /> - <width sOffset="30.450028453318566" a="2.1836989076036701" b="0.12818269902965126" c="0.00025889297524104215" d="-0.00031595286040189425" /> - <width sOffset="32.571733245226845" a="2.4538124874297385" b="0.12501437817686895" c="0.18840805705943062" d="-0.75342306923452773" /> - <width sOffset="32.821658551143024" a="2.4850635254602942" b="0.078007837049026668" c="-0.21832900366169944" d="0.1871838948435538" /> - <width sOffset="33.32150959052786" a="2.4928831713660591" b="4.816274140833493e-05" c="-0.0053639910310474565" d="0.00094003043460061278" /> - <width sOffset="33.581119059187365" a="2.4925506051939186" b="-0.0025468570729755453" c="0.00086360548690987953" d="-7.1500421914032848e-05" /> - <width sOffset="39.581023062546237" a="2.4929151600889341" b="9.4444491611013134e-05" c="0.0016622069878965973" d="-0.00065484417856226504" /> - <width sOffset="40.600037937758088" a="2.4940445074033706" b="0.001442118259440225" c="-0.00029757801079941361" d="-0.00059011167046651471" /> - <width sOffset="41.835494741301417" a="2.4942591735329849" b="-0.001995328361193489" c="0.0010439209950608944" d="-0.0001831841520263197" /> - <width sOffset="43.835504262607742" a="2.4929787274046289" b="-1.7855256164250183e-05" c="6.119537580957248e-06" d="-4.6531176344513764e-07" /> - <width sOffset="50.750047422197611" a="2.4929940194219906" b="3.1424783622285499e-08" c="1.3623841060007272e-07" d="-9.0406873343981363e-09" /> - <width sOffset="60.900056906637133" a="2.4929989203539833" b="2.8792477085263363e-09" c="-1.7153185166076133e-06" d="1.1260293319718412e-07" /> - <width sOffset="71.050066391076655" a="2.4929399796285248" b="-1.6147081055811578e-08" c="-1.4677333702138488e-06" d="9.6371998060025417e-08" /> - <width sOffset="81.200075875516177" a="2.4928893802886023" b="-2.5654162586364465e-08" c="-1.3990991745916403e-06" d="9.1894806987970204e-08" /> - <width sOffset="91.350085359955699" a="2.4928410736163409" b="-2.5642607831490201e-08" c="1.5685280748652868e-07" d="-1.0271477018457016e-08" /> - <width sOffset="101.50009484439522" a="2.4928462320506783" b="-1.6113297163244424e-08" c="2.816469057729186e-07" d="-1.8437329053776425e-08" /> - <width sOffset="111.65010432883474" a="2.4928558049528045" b="2.9343855312193717e-09" c="6.3768912256081456e-07" d="-4.1791876470110434e-08" /> - <width sOffset="121.80011381327427" a="2.4928778302032679" b="3.1500749334521794e-08" c="2.5727626246969388e-06" d="-4.1131306407052565e-07" /> - <width sOffset="127.33589630623487" a="2.4928870700461516" b="-9.2979187663252971e-06" c="6.53228151085598e-05" d="-3.4265154251148929e-06" /> - <width sOffset="130.45014673942862" a="2.4933881574115677" b="0.00029786853898454641" c="-6.4206697630972415e-05" d="6.4406150708040651e-06" /> - <width sOffset="131.95012329771379" a="2.4937122287399047" b="0.000148724249247968" c="-4.189248751224139e-05" d="1.3876041539147873e-06" /> - <width sOffset="142.10013278215331" a="2.492356896144214" b="-0.00027282989357978096" c="9.8137085164353569e-07" d="1.4302342284351606e-06" /> - <width sOffset="152.25014226659283" a="2.4911843428006089" b="0.00018913169682855161" c="4.6639176355762349e-05" d="2.4217825268236326e-06" /> - <width sOffset="155.60904476008415" a="2.4924375870759317" b="0.00058441388142654177" c="-0.00014362841117790583" d="-3.7372512716575586e-06" /> - <width sOffset="157.60914525228009" a="2.4930019996703416" b="-3.4980152505744063e-05" c="1.4437637915924185e-05" d="-1.6551209195556039e-06" /> - <width sOffset="162.40015175103235" a="2.492983791181401" b="-1.0612180350742735e-05" c="-4.931992605468237e-06" d="2.7355495125698204e-07" /> - <width sOffset="172.55016123547188" a="2.4926540215911999" b="-2.6184620892657728e-05" c="-1.6605247454188551e-06" d="8.9137945152204223e-08" /> - <width sOffset="182.7001707199114" a="2.492310385593429" b="-3.2343611373698736e-05" c="-7.9385239641546483e-07" d="6.2670624473949509e-08" /> - <width sOffset="192.85018020435092" a="2.4919658463203431" b="-2.9089340650525521e-05" c="-4.2736315163901497e-07" d="6.9055654209247124e-08" /> - <width sOffset="203.00018968879044" a="2.4916987713409755" b="-1.6421922441404833e-05" c="1.884386858076059e-06" d="-5.2327440585779952e-08" /> - <width sOffset="213.15019917322996" a="2.4916715054539118" b="5.6584250551437439e-06" c="2.1443457110143084e-06" d="-3.8942698464195333e-08" /> - <width sOffset="223.30020865766949" a="2.4919091331389565" b="3.7152738713050026e-05" c="1.069206559902607e-06" d="6.7965232863312928e-08" /> - <width sOffset="233.45021814210901" a="2.4924674563014282" b="7.9863536025458209e-05" c="-2.0437709057481118e-06" d="8.7321684719937862e-08" /> - <width sOffset="233.99513521870497" a="2.4925103825687227" b="7.7713951177436625e-05" c="-6.6920064120777742e-06" d="1.8411420048740945e-07" /> - <width sOffset="243.49585970021383" a="2.4928025667385763" b="4.1265602845861628e-07" c="1.0069197348472856e-05" d="-4.4659324201161228e-07" /> - <width sOffset="243.60022762654853" a="2.4928027189793047" b="2.4998647844423432e-06" c="1.2810627068541833e-05" d="-3.4968949941970206e-07" /> - <width sOffset="253.75023711098805" a="2.4937822141516675" b="0.00015447797593595665" c="3.3086244145064721e-06" d="-4.5833805763427712e-07" /> - <width sOffset="263.90024659542757" a="2.4952117549294686" b="7.9985451945626838e-05" c="-8.8265164715186284e-06" d="-3.9338797334157325e-07" /> - <width sOffset="274.0502560798671" a="2.494702918082881" b="-0.000220776664527846" c="-1.9772543094594405e-05" d="-4.0597623605729732e-07" /> - <width sOffset="278.95114063443964" a="2.4930982183921371" b="-0.00044383559365664821" c="-4.1161050475232481e-05" d="1.3895725446252405e-07" /> - <width sOffset="279.45118532624207" a="2.4928660060315471" b="-0.0004848960866867323" c="-0.99612663610577112" d="1.9920094644417301" /> - <width sOffset="279.70120639246761" a="2.4616093810996418" b="-0.12502545998042419" c="0.020852763714985616" d="-0.027794398218186463" /> - <width sOffset="280.45127117859124" a="2.36783509165382" b="-0.14065476292259968" c="0.0040523285350778952" d="-0.0004715874285818145" /> - <width sOffset="284.20026556430662" a="1.8726276192820395" b="-0.13015487485369295" c="-0.0012520994043989393" d="-0.0004721204332235043" /> - <width sOffset="284.95166426873834" a="1.7739221873618796" b="-0.13283620420249476" c="0.0058152648242771818" d="-0.00083855188777844927" /> - <width sOffset="286.4438857659319" a="1.5858638309282114" b="-0.12108255118578232" c="0.0085494414621685288" d="-0.0015362606577618006" /> - <width sOffset="288.44389502042418" a="1.3656054344608446" b="-0.10531992559691239" c="0.0065582430348436263" d="-0.00075894266984368017" /> - <width sOffset="292.61938778547915" a="0.98493412154375992" b="-0.090248036896157041" c="0.0033419107782880625" d="-5.6608197778485095e-05" /> - <width sOffset="294.35027504874614" a="0.83844365835288936" b="-0.079187884802781563" c="0.003051206017715176" d="-5.7147801065295044e-05" /> - <width sOffset="298.11990406879625" a="0.58023143562328006" b="-0.058620283711028356" c="0.00094597779076634387" d="0.00018647376909584359" /> - <width sOffset="303.12037206103588" a="0.33407222217964438" b="-0.035171469529818873" c="2.2985384051798207e-05" d="-9.0745427906513316e-06" /> - <width sOffset="304.50028453318566" a="0.28555859651018789" b="-0.035159871995036979" c="-2.1964836985942734e-05" d="-8.5013963679702098e-06" /> - <width sOffset="304.62051203541523" a="0.28133108065330337" b="-0.035165522204237944" c="0.0029453610877170286" d="-7.6248036301144009e-05" /> - <width sOffset="308.2661538689743" a="0.18858164793318632" b="-0.016730229341383011" c="0.0020526639571164292" d="-8.2486004956585824e-05" /> - <width sOffset="314.65029401762519" a="0.1439715920365936" b="-0.00060694762830532621" c="0.00047254591371289408" d="-8.2365837167338302e-05" /> - <width sOffset="318.01712841095173" a="0.14414118681781307" b="-0.00022597204422885047" c="0.00032639133666347687" d="-1.7453915410448781e-05" /> - <width sOffset="324.80030350206471" a="0.15217868856613759" b="0.0017927265071097645" c="-2.6601271780210341e-05" d="-1.8590090852466321e-05" /> - <width sOffset="327.19174389552131" a="0.15605950526743495" b="0.0013465463229948226" c="0.001033403726227018" d="-0.00011823957518784113" /> - <width sOffset="333.69242300463151" a="0.17600167993227789" b="-0.00020779957227068033" c="0.011271122574164995" d="-0.0059322013310142679" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5173992" s="38.03800113478809" t="-10.736898671734956" orientation="none" validLength="5.4191474846959693" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.4191474846959693" s="38.03800113478809" distance="0" tStart="-10.736898671734956" tEnd="-10.659072101937939" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273609448" s="43.457148619484059" t="-10.659072101937939" orientation="none" validLength="13.681138072184332" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.681138072184332" s="43.457148619484059" distance="0" tStart="-10.659072101937939" tEnd="-10.6527170989654" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542044904" s="57.138286691668391" t="-10.6527170989654" orientation="none" validLength="5.6693890299923453" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.6693890299923453" s="57.138286691668391" distance="0" tStart="-10.6527170989654" tEnd="-10.764473747274744" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810480360" s="62.807675721660736" t="-10.764473747274744" orientation="none" validLength="1.9880646316839758" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.9880646316839758" s="62.807675721660736" distance="0" tStart="-10.764473747274744" tEnd="-10.920388804326182" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078915816" s="64.795740353344712" t="-10.920388804326182" orientation="none" validLength="3.976127107250889" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.976127107250889" s="64.795740353344712" distance="0" tStart="-10.920388804326182" tEnd="-11.432593664375664" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742213" s="68.771867460595601" t="-11.432593664375664" orientation="none" validLength="3.4386472992358108" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.4386472992358108" s="68.771867460595601" distance="0" tStart="-11.432593664375664" tEnd="-11.696272506129112" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742214" s="72.210514759831412" t="-11.696272506129112" orientation="none" validLength="7.3424095139455972" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.3424095139455972" s="72.210514759831412" distance="0" tStart="-11.696272506129112" tEnd="-11.892955273641261" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742215" s="79.552924273777009" t="-11.892955273641261" orientation="none" validLength="0.48296782410362482" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="0.48296782410362482" s="79.552924273777009" distance="0" tStart="-11.892955273641261" tEnd="-11.829242526339041" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742216" s="80.035892097880634" t="-11.829242526339041" orientation="none" validLength="1.3084015657680652" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.3084015657680652" s="80.035892097880634" distance="0" tStart="-11.829242526339041" tEnd="-11.413007638717817" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742217" s="81.344293663648699" t="-11.413007638717817" orientation="none" validLength="1.9840300475467956" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.9840300475467956" s="81.344293663648699" distance="0" tStart="-11.413007638717817" tEnd="-11.021567360717851" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742218" s="83.328323711195495" t="-11.021567360717851" orientation="none" validLength="2.9760410825536638" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.9760410825536638" s="83.328323711195495" distance="0" tStart="-11.021567360717851" tEnd="-10.73626548673799" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742219" s="86.304364793749158" t="-10.73626548673799" orientation="none" validLength="24.94216212589302" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="24.94216212589302" s="86.304364793749158" distance="0" tStart="-10.73626548673799" tEnd="-10.815321698164926" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742220" s="111.24652691964218" t="-10.815321698164926" orientation="none" validLength="23.314235601955261" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="23.314235601955261" s="111.24652691964218" distance="0" tStart="-10.815321698164926" tEnd="-10.75387305124492" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742221" s="134.56076252159744" t="-10.75387305124492" orientation="none" validLength="54.894592525580691" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="54.894592525580691" s="134.56076252159744" distance="0" tStart="-10.75387305124492" tEnd="-10.865483974543377" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742222" s="189.45535504717813" t="-10.865483974543377" orientation="none" validLength="20.577317409466048" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="20.577317409466048" s="189.45535504717813" distance="0" tStart="-10.865483974543377" tEnd="-10.75405470330459" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742223" s="210.03267245664418" t="-10.75405470330459" orientation="none" validLength="18.018859693538133" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.018859693538133" s="210.03267245664418" distance="0" tStart="-10.75405470330459" tEnd="-10.795996901524191" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742224" s="228.05153215018231" t="-10.795996901524191" orientation="none" validLength="48.019634858782922" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="48.019634858782922" s="228.05153215018231" distance="0" tStart="-10.795996901524191" tEnd="-10.644358097056138" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="33781996" s="0" t="10.610608623147797" orientation="none" validLength="5.5186935685910496" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.5186935685910496" s="0" distance="0" tStart="10.610608623147797" tEnd="10.572843121889591" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="302217452" s="5.5186935685910496" t="10.572843121889591" orientation="none" validLength="2.4981279370531171" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.4981279370531171" s="5.5186935685910496" distance="0" tStart="10.572843121889591" tEnd="10.459581015269837" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="570652908" s="8.0168215056441667" t="10.459581015269837" orientation="none" validLength="4.8338318201800536" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.8338318201800536" s="8.0168215056441667" distance="0" tStart="10.459581015269837" tEnd="10.41966810582502" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="839088364" s="12.85065332582422" t="10.41966810582502" orientation="none" validLength="2.8587868160228869" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.8587868160228869" s="12.85065332582422" distance="0" tStart="10.41966810582502" tEnd="10.232420293025186" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1107523820" s="15.709440141847107" t="10.232420293025186" orientation="none" validLength="0.88211055179045061" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="0.88211055179045061" s="15.709440141847107" distance="0" tStart="10.232420293025186" tEnd="10.295593565852576" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742225" s="16.591550693637558" t="10.295593565852576" orientation="none" validLength="5.1026709761959808" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.1026709761959808" s="16.591550693637558" distance="0" tStart="10.295593565852576" tEnd="10.146977636506174" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742226" s="21.694221669833539" t="10.146977636506174" orientation="none" validLength="5.3418199325910969" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.3418199325910969" s="21.694221669833539" distance="0" tStart="10.146977636506174" tEnd="10.156454097438383" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742227" s="27.036041602424635" t="10.156454097438383" orientation="none" validLength="3.9732229104355632" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.9732229104355632" s="27.036041602424635" distance="0" tStart="10.156454097438383" tEnd="9.924733843659622" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742228" s="31.009264512860199" t="9.924733843659622" orientation="none" validLength="121.52324871107442" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="121.52324871107442" s="31.009264512860199" distance="0" tStart="9.924733843659622" tEnd="9.595916451837212" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742229" s="152.53251322393461" t="9.595916451837212" orientation="none" validLength="8.498151749767203" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.498151749767203" s="152.53251322393461" distance="0" tStart="9.595916451837212" tEnd="9.7691255455755659" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742230" s="161.03066497370182" t="9.7691255455755659" orientation="none" validLength="10.294941358202237" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.294941358202237" s="161.03066497370182" distance="0" tStart="9.7691255455755659" tEnd="9.6825603998348697" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742231" s="171.32560633190405" t="9.6825603998348697" orientation="none" validLength="7.9960438736363528" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.9960438736363528" s="171.32560633190405" distance="0" tStart="9.6825603998348697" tEnd="9.4288460646315109" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742232" s="179.32165020554041" t="9.4288460646315109" orientation="none" validLength="106.82514372696815" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="106.82514372696815" s="179.32165020554041" distance="0" tStart="9.4288460646315109" tEnd="9.3719611465582098" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742233" s="286.14679393250856" t="9.3719611465582098" orientation="none" validLength="48.803519053995672" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="48.803519053995672" s="286.14679393250856" distance="0" tStart="9.3719611465582098" tEnd="9.4697473592482808" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412697" s="48.267560385116575" t="-10.210919421195175" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848153" s="96.928133222162145" t="-10.70184100274343" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283609" s="132.5171284742888" t="-10.473067526417953" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719065" s="180.75683634794007" t="-10.775673218281145" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154521" s="232.29242422141147" t="-10.495874655511614" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742234" s="264.46973291111425" t="-10.36960855492833" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="337.48795844662726" id="33782045" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554629" /> - <successor elementType="junction" elementId="33556587" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1451.1277026293151" y="-44.180111430978315" hdg="0.40087237207404369" length="25.03550079975042"> - <paramPoly3 aU="0" bU="25.269770779508924" cU="-1.5940247816661355" dU="1.1036614842016628" aV="-0" bV="1.7763568394002505e-15" cV="-2.5177824664155537" dV="-0.52056435380256449" /> - </geometry> - <geometry s="25.03550079975042" x="1475.1282504961414" y="-37.308118368313799" hdg="0.14668306078686988" length="73.991574357821392"> - <paramPoly3 aU="0" bU="74.153295304256915" cU="-0.5099821078385296" dU="-0.47423560261065645" aV="-0" bV="3.5527136788005009e-15" cV="9.1519926389314836" dV="0.31619129116396838" /> - </geometry> - <geometry s="99.027075157571815" x="1546.1277411550784" y="-17.247391835252024" hdg="0.40897361043950875" length="119.99991519544463"> - <paramPoly3 aU="0" bU="119.98734342154684" cU="0.028890881469403551" dU="-0.019939248960809786" aV="-0" bV="7.1054273576010019e-15" cV="3.0057716321908496" dV="-2.2509942805980376" /> - </geometry> - <geometry s="219.02699035301646" x="1655.927727286783" y="31.163800682882471" hdg="0.40279426935087015" length="19.998587412344001"> - <paramPoly3 aU="0" bU="22.707382318400594" cU="-8.6397243065014564" dU="5.8402299754110176" aV="-0" bV="1.7763568394002505e-15" cV="-1.0607005983881543" dV="2.326530753188905" /> - </geometry> - <geometry s="239.02557776536045" x="1673.7461788549363" y="40.132028702367023" hdg="0.61141274417821578" length="29.996929392377243"> - <paramPoly3 aU="0" bU="30.386796600040228" cU="-0.920695983159874" dU="0.5270121532695502" aV="-0" bV="1.7763568394002505e-15" cV="-0.71818859639307298" dV="0.27742963061885295" /> - </geometry> - <geometry s="269.02250715773772" x="1698.5586824754623" y="56.987910352112337" hdg="0.59136366649271122" length="19.993895697433601"> - <paramPoly3 aU="0" bU="21.611765460142717" cU="-3.9691710505113704" dU="2.3146008386069803" aV="-0" bV="-0" cV="1.3916357705081353" dV="-0.31245135216279052" /> - </geometry> - <geometry s="289.01640285517135" x="1714.5251326514122" y="69.009838232615422" hdg="0.6806583523801889" length="48.471555591455889"> - <paramPoly3 aU="0" bU="49.633668156372508" cU="-3.4510377454305514" dU="1.419352001756967" aV="-0" bV="-0" cV="-12.213915161772078" dV="3.9175646669502693" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.02635159219173" b="-0.0061807195891983675" c="0.00012760932896639697" d="-1.1051681559233415e-06" /> - <elevation s="10.226907831715977" a="155.97530643736164" b="-0.0039173893288815542" c="-1.3333193253949182e-05" d="8.9641830864089326e-06" /> - <elevation s="20.453815663431953" a="155.94343749084979" b="-0.0013774218580489186" c="0.00016157686300306666" d="-1.1051681559232816e-06" /> - <elevation s="30.68072349514793" a="155.94506787149004" b="0.0015806740819953064" c="0.00019437248489515333" d="-5.3378519556761411e-06" /> - <elevation s="40.907631326863907" a="155.97585310923128" b="0.0038814809540054862" c="0.00031569005235428332" d="-2.4748625616110377e-05" /> - <elevation s="51.134539158579884" a="156.02209472838513" b="0.002573197278571345" c="-0.00011341035982234892" d="-1.1051681559265511e-06" /> - <elevation s="61.36144699029586" a="156.03536691112942" b="-9.3244746855589285e-05" c="-0.00027073280810805371" d="1.0404138788092059e-05" /> - <elevation s="71.588354822011837" a="156.01722602263098" b="-0.002366268188313596" c="-0.00011975517054792541" d="3.835156653964067e-06" /> - <elevation s="75.028542239091323" a="156.00782447285786" b="-0.0030540626847817189" c="4.4370392056282035e-05" d="4.8556722406114011e-06" /> - <elevation s="81.815262653727814" a="155.99065893598615" b="-0.0017808532091730454" c="0.00037719512021724245" d="-2.3018012995018777e-05" /> - <elevation s="92.042170485443791" a="155.98727629151722" b="-0.0012881110913923199" c="-1.1059772888996886e-06" d="-8.4652567366064546e-08" /> - <elevation s="102.26907831715977" a="155.97389667752674" b="-0.0013372938925897298" c="-0.00022359551411543644" d="1.0920609714619652e-05" /> - <elevation s="112.49598614887574" a="155.94851551796356" b="-0.0024841272811364696" c="-6.7241067724161811e-05" d="6.3833785059689066e-06" /> - <elevation s="122.72289398059172" a="155.92290570241164" b="-0.0018565578328696055" c="-1.1587460750991879e-05" d="7.155571702967286e-06" /> - <elevation s="132.9498018123077" a="155.91036073265931" b="0.00015163046768442166" c="3.3938580231563669e-05" d="-2.7276325751453956e-07" /> - <elevation s="143.17670964402367" a="155.91516931210009" b="0.00076021929578519865" c="3.5221848683112563e-05" d="-8.4031126419339352e-07" /> - <elevation s="153.40361747573965" a="155.92572902437686" b="0.0012169769286695311" c="2.3069516951004836e-05" d="-6.6165727562067289e-07" /> - <elevation s="163.63052530745563" a="155.93988004024351" b="0.0014812290795084167" c="1.4364189654701984e-05" d="-6.4140175778298797e-07" /> - <elevation s="173.8574331391716" a="155.9558447173022" b="0.0015737796227256696" c="5.8648691290698697e-06" d="-6.2103432504741475e-07" /> - <elevation s="184.08434097088758" a="155.97188874491937" b="0.0014988772982519266" c="-4.4912619785931607e-06" d="-3.9873816925104851e-07" /> - <elevation s="194.31124880260356" a="155.9863213836405" b="0.0012819022043732045" c="-2.1037430203324721e-05" d="6.5112381123168001e-07" /> - <elevation s="204.53815663431953" a="155.99792744268396" b="0.0010559089074182455" c="1.9312536166980599e-05" d="-2.8125283265377903e-06" /> - <elevation s="214.76506446603551" a="156.00773765616802" b="0.00056843995463442209" c="-1.2638574300301139e-05" d="-8.465256661515127e-08" /> - <elevation s="219.02699034936217" a="156.00992418463937" b="0.00045609772998759764" c="0.00013575649375688204" d="-3.2863679298470046e-06" /> - <elevation s="224.99197229775149" a="156.01677765348603" b="0.00172487093223758" c="-0.00077477561666883482" d="5.1767251799097903e-05" /> - <elevation s="235.21888012946746" a="156.00875597927575" b="0.0021207085666427187" c="-8.1726893901313955e-06" d="-3.2863679298401025e-06" /> - <elevation s="245.44578796118344" a="156.02607429836928" b="0.00092238573086496595" c="0.00045513909252514317" d="-3.1311394984073463e-05" /> - <elevation s="255.02292289457279" a="156.04914931027389" b="0.0010244571197629143" c="-0.00015943341561200534" d="-2.8452160370917898e-05" /> - <elevation s="255.67269579289942" a="156.04973985570194" b="0.00078122817696545284" c="0.0003677850167346662" d="-2.9377368977062259e-05" /> - <elevation s="265.89960362461539" a="156.06477303271848" b="-0.00091387055810796729" c="-0.00032572370813704649" d="1.6316690218480187e-05" /> - <elevation s="276.1265114563314" a="156.03881243542631" b="-0.0024564927877929127" c="-0.00032555887931084006" d="3.1762996632269718e-05" /> - <elevation s="286.35341928804735" a="156.01361463399502" b="0.00085082741840753623" c="0.00027034907734604241" d="-1.6092685388238837e-05" /> - <elevation s="296.5803271197633" a="156.03337848398172" b="0.0013311129136749039" c="-0.00014058555333274929" d="9.8408537317133509e-06" /> - <elevation s="306.8072349514793" a="156.04281391918232" b="0.0015433560802818433" c="6.4364961717844151e-05" d="-2.4588337654824175e-06" /> - <elevation s="317.03414278319531" a="156.0626995489516" b="0.0020883594993685271" c="6.5038161717531534e-05" d="-5.8377605128242369e-06" /> - <elevation s="327.26105061491126" a="156.08461509135799" b="0.0015869301923772069" c="-4.3076432994611329e-05" d="-4.2713331664674645e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.022298802187366882" b="0.00032249139012566582" c="-1.5766808278331521e-05" d="0" /> - <superelevation s="10.226907831715977" a="0.023947847049035454" b="0" c="-5.1898922269139195e-05" d="3.3752061482613286e-07" /> - <superelevation s="20.453815663431953" a="0.018880778974049675" b="-0.0009556275065858963" c="-0.00012515052205224326" d="7.8376754284209429e-06" /> - <superelevation s="30.68072349514793" a="0.0044016181864224256" b="-0.001056214171026381" c="2.2015798501923957e-06" d="3.2227010434263703e-06" /> - <superelevation s="40.907631326863907" a="-0.0027228309812285072" b="0" c="0.00014405632392269842" d="-7.9127829962219078e-06" /> - <superelevation s="51.134539158579884" a="0.0038802292522991961" b="0.00046371602957953644" c="-8.0281019390855078e-06" d="-9.5455821919143378e-07" /> - <superelevation s="61.36144699029586" a="0.0067619312079698918" b="0" c="-6.8631925022920648e-05" d="3.6669605745432252e-06" /> - <superelevation s="71.588354822011837" a="0.00350602869559502" b="-0.00025320644210239507" c="-5.6446147490945697e-06" d="1.1749421780930873e-06" /> - <superelevation s="81.815262653727814" a="0.0015828933164140477" b="0" c="9.286901494325034e-05" d="-6.0538999321797141e-06" /> - <superelevation s="92.042170485443791" a="0.0048206057140220806" b="0" c="-8.0168675129271802e-06" d="0" /> - <superelevation s="102.26907831715977" a="0.0039821243964659539" b="-0.00016397553030756854" c="-6.516843839159654e-05" d="2.8792744437419583e-06" /> - <superelevation s="112.49598614887574" a="-0.0014310275685193231" b="-0.00059349189083646625" c="-2.4753292852017452e-05" d="1.8067047714899792e-06" /> - <superelevation s="122.72289398059172" a="-0.0081570493364448056" b="-0.00053290335439748601" c="-1.3972364374666069e-05" d="2.5592367025914602e-06" /> - <superelevation s="132.9498018123077" a="-0.012330934545790052" b="-1.5682554339607451e-05" c="7.6673001251523302e-07" d="-2.5340621140902636e-23" /> - <superelevation s="143.17670964402367" a="-0.012411126564688573" b="0" c="1.5758668837198168e-05" d="-6.1191183695910459e-07" /> - <superelevation s="153.40361747573965" a="-0.011417451434689052" b="0.00013032598430636388" c="4.7473951633844174e-06" d="-1.4712738849112063e-07" /> - <superelevation s="163.63052530745563" a="-0.0097454629055308811" b="0.00018126432639386494" c="3.33760884683677e-06" d="-1.5640408547844925e-07" /> - <superelevation s="173.8574331391716" a="-0.0077099043162727754" b="0.00020045641973728129" c="1.8250870201420746e-06" d="-1.6491187115804472e-07" /> - <superelevation s="184.08434097088758" a="-0.0056453642476729871" b="0.00018604219162934014" c="-4.7931667653808069e-07" d="-1.0449623036436566e-07" /> - <superelevation s="194.31124880260356" a="-0.0039046316230653688" b="0.00014345066614676323" c="-5.0102550600887565e-06" d="2.3404843277567557e-07" /> - <superelevation s="204.53815663431953" a="-0.0027112507655105735" b="0.00011440895936768524" c="-1.1140634626269296e-07" d="-1.091876599991976e-08" /> - <superelevation s="214.76506446603551" a="-0.0015645318579136588" b="0.00010870430495754226" c="-4.0775756084512045e-06" d="3.6597952154673913e-07" /> - <superelevation s="224.99197229775149" a="-0.00048783295008751197" b="0.00014013532849683667" c="2.3926916085138036e-05" d="-2.0063556219454419e-06" /> - <superelevation s="235.21888012946746" a="0.001301770319095121" b="0" c="-1.3659710247431215e-05" d="8.9044251186524069e-07" /> - <superelevation s="245.44578796118344" a="0.00082554890937233086" b="0" c="5.8444821902050865e-05" d="-2.7621996972679505e-06" /> - <superelevation s="255.67269579289942" a="0.0039837440882680821" b="0.00032872716635463657" c="3.7985254059476354e-05" d="-3.5238369391743019e-06" /> - <superelevation s="265.89960362461539" a="0.0075492737735523971" b="0" c="-0.00031939844961733569" d="1.642319805974859e-05" /> - <superelevation s="276.1265114563314" a="-0.0082897731770565225" b="-0.0013798277063592252" c="-8.536545235508543e-05" d="9.9623532481554419e-06" /> - <superelevation s="286.35341928804735" a="-0.020673467779615325" b="0" c="0.00037482050072970281" d="-1.8073663276537241e-05" /> - <superelevation s="296.5803271197633" a="-0.00080323312180020868" b="0.0019955554161241191" c="0.00013736302745953293" d="-1.2928434080634131e-05" /> - <superelevation s="306.8072349514793" a="0.02014325484795066" b="0.00074861251265795012" c="-3.6600139796719931e-05" d="8.1089987650887767e-22" /> - <superelevation s="317.03414278319531" a="0.023971250432261754" b="0" c="-2.693506985646465e-05" d="1.7558301622661798e-06" /> - <superelevation s="327.26105061491126" a="0.023032207311604085" b="0" c="2.1058435423845508e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.6597788295885592" b="0.026435404939280042" c="-0.00017578342967055325" d="0.00018474408826148816" /> - <laneOffset s="4.6122124502513557" a="1.7960910330492008" b="0.036603811789200018" c="0.0033952479198280693" d="-0.00031376931547184557" /> - <laneOffset s="10.553311237204458" a="2.0676010767180721" b="0.043721796743314292" c="0.00051462700042653579" d="-0.00010436715383667423" /> - <laneOffset s="18.696465525720342" a="2.4014036080071914" b="0.031341111831083741" c="-0.0003270298903067656" d="-7.1169878474815822e-05" /> - <laneOffset s="20.453815663431953" a="2.4550847031512979" b="0.029532322354026135" c="-0.00079327013613759143" d="-9.6750162974377422e-05" /> - <laneOffset s="28.171469772539567" a="2.591281901608586" b="-0" c="-0.0073943084222315237" d="0.0006138021141979716" /> - <laneOffset s="30.68072349514793" a="2.5544222682627375" b="-0.025514245228297431" c="-0.0028025488486118221" d="0.00060815249095908517" /> - <laneOffset s="34.61474583746466" a="2.4477022988349448" b="-0.019328550721834193" c="-5.229369345578819e-05" d="3.7469352488989125e-05" /> - <laneOffset s="40.907631326863907" a="2.3333364846774822" b="-0.015535302257552003" c="0.00065548014450538482" d="3.7561284689294845e-05" /> - <laneOffset s="48.194218346729919" a="2.2694710276482173" b="-0" c="0.0098378794648184501" d="-0.00033783112892123753" /> - <laneOffset s="51.134539158579884" a="2.3459364440178994" b="0.04909090010036702" c="0.006863617128507935" d="-0.00033686668670579619" /> - <laneOffset s="61.866279128234908" a="3.2468921600328788" b="0.08001695437574724" c="0.006096586943938739" d="-0.00028907315969387834" /> - <laneOffset s="71.588354822011837" a="4.3354301859875628" b="0.11659140769663404" c="-0.0023372884778799204" d="-0.00028914265676858943" /> - <laneOffset s="80.796406096152396" a="4.9850917920364468" b="-0" c="-0.042424858862918025" d="0.0038124300164988326" /> - <laneOffset s="81.815262653727814" a="4.9450840648399437" b="-0.074576998672725575" c="-0.030770582892965328" d="0.0038116122799568396" /> - <laneOffset s="85.611508346281084" a="4.4270532667426394" b="-0.14340944625008292" c="-0.019952481397168816" d="0.0016861211242247694" /> - <laneOffset s="92.042170485443791" a="3.1281222429193285" b="-0.19084417711303636" c="0.012578280703044887" d="0.0016864796812655323" /> - <laneOffset s="94.056066350241707" a="2.8085716567831156" b="-0.11966152787328872" c="0.0022467393929864127" d="0.0012244288234017037" /> - <laneOffset s="99.184654867275569" a="2.4191400594428858" b="-0" c="0.00011857495419810174" d="-1.4446329873050494e-06" /> - <laneOffset s="102.26907831715977" a="2.4202257506209315" b="0.00069023946264696288" c="0.00010335132178765167" d="-1.7105370016496114e-06" /> - <laneOffset s="112.49598614887574" a="2.4362646045399075" b="0.0022674549799441479" c="5.2660286316224778e-05" d="-1.8894745136801576e-06" /> - <laneOffset s="122.72289398059172" a="2.462940342152363" b="0.0027517003699837187" c="-5.9836369764686944e-09" d="-1.9400027201890571e-06" /> - <laneOffset s="132.9498018123077" a="2.4890060199049131" b="0.0021428654013584303" c="-5.5791652397572537e-05" d="-1.9922951416404895e-06" /> - <laneOffset s="134.82075624337313" a="2.4928068784096338" b="0.0019131762118073457" c="-3.3512822779757432e-05" d="4.45771987264134e-07" /> - <laneOffset s="143.17670964402367" a="2.5067134351179288" b="0.0014464870587558728" c="-2.3121462881461538e-05" d="5.0710658279562327e-07" /> - <laneOffset s="153.40361747573965" a="2.5196306751089059" b="0.0011326792096967657" c="-9.6984582856166423e-06" d="5.3498796631383675e-07" /> - <laneOffset s="163.63052530745563" a="2.5307723611466075" b="0.0011021713342028497" c="4.141136577349247e-06" d="5.3569160984061695e-07" /> - <laneOffset s="173.8574331391716" a="2.5430502768877972" b="0.0013549567623701195" c="1.8275420723171762e-05" d="5.1716132130037078e-07" /> - <laneOffset s="184.08434097088758" a="2.559371885120747" b="0.0018910280041569893" c="3.2521300120596055e-05" d="4.9135238426638491e-07" /> - <laneOffset s="194.31124880260356" a="2.5826382100080489" b="0.0027103837945086358" c="4.6378452271288951e-05" d="5.2339991704451884e-07" /> - <laneOffset s="199.91909994045562" a="2.5993884527042987" b="0.0032799303401467566" c="0.0010630799024118789" d="-8.3685105026795311e-06" /> - <laneOffset s="204.53815663431953" a="2.6363954516686907" b="0.012565139313328276" c="0.00094637393444980478" d="-8.4353314926248535e-06" /> - <laneOffset s="214.76506446603551" a="2.8548562138091778" b="0.029275352368835997" c="0.00068729180269383613" d="-8.4421560173810448e-06" /> - <laneOffset s="225.50291065041421" a="3.238003978252979" b="0.041115243969972112" c="-0.00096703970161403938" d="0.00023241528505439329" /> - <laneOffset s="232.38047485479359" a="3.5506430265472724" b="0.060793837767378095" c="0.012125526386173022" d="-0.00088480348203888741" /> - <laneOffset s="235.21888012946746" a="3.8006569647150794" b="0.10824277798364612" c="0.004591547895100352" d="-0.0008847001752736852" /> - <laneOffset s="243.56521107984236" a="4.5095613038820277" b="-0" c="-0.012081082401754973" d="0.0003495969034019163" /> - <laneOffset s="245.44578796118344" a="4.4691608132827394" b="-0.041729687392957855" c="-0.010108053344362865" d="0.00034949045493133386" /> - <laneOffset s="255.67269579289942" a="3.3590224502312735" b="-0.13881870063805138" c="0.00061666462573195535" d="0.00034948043690526934" /> - <laneOffset s="266.60627567138363" a="2.371738230043936" b="-0" c="0.0033673766728367833" d="-0.0001146723780411159" /> - <laneOffset s="276.1265114563314" a="2.5779932015434608" b="0.032936484900959392" c="0.00010769105714370083" d="-0.00011562044727314376" /> - <laneOffset s="286.18645415977875" a="2.8025188350225796" b="-0" c="-0.0015873365845298245" d="2.283944049949868e-05" /> - <laneOffset s="296.5803271197633" a="2.6566806284932833" b="-0.025594937524730407" c="-0.00087301956653142729" d="1.9586216449947072e-05" /> - <laneOffset s="302.36143309765134" a="2.4833205132587506" b="-0.033725191026229485" c="-0.0014114979277497349" d="8.9235294113200342e-05" /> - <laneOffset s="306.8072349514793" a="2.3133278024783621" b="-0.040984423209747566" c="-0.00011969801368482381" d="7.3293355783937499e-05" /> - <laneOffset s="308.50285041576171" a="2.2438471467859094" b="-0.040758167039019286" c="-0.0018547207834096336" d="0.00011860735932839454" /> - <laneOffset s="317.03414278319531" a="1.8347824368974484" b="-0.046506717247204794" c="0.0011839457041945554" d="0.00011932811810402529" /> - <laneOffset s="321.79461720424456" a="1.6530925217494186" b="-0.027121747546732012" c="0.0011921142382938521" d="1.1250813849865412e-05" /> - <laneOffset s="327.26105061491126" a="1.5422937174085645" b="-0.013079934455150936" c="0.0013748969793576111" d="1.0984956782671022e-05" /> - <laneOffset s="331.77369517956527" a="1.5122764367989021" b="-0" c="-4.5495826053265365e-05" d="3.9892908080503584e-05" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="0.21678787852248238" b="-0.0051133651796222528" c="0.0030059937064288353" d="-0.00017185695452167789" /> - <width sOffset="4.6122124502513557" a="0.24028751015188643" b="0.011647714921001619" c="-0.00038672304702464357" d="0.00032665644921635876" /> - <width sOffset="5.1023781913334219" a="0.24594237575497035" b="0.011504047983171325" c="0.0018045210495966977" d="7.3237454713337869e-05" /> - <width sOffset="10.249149437538732" a="0.36293626086154385" b="0.035898978763582876" c="0.0050087451648876411" d="0.0002669781372058931" /> - <width sOffset="10.553311237204458" a="0.3743262524943165" b="0.039020014617253157" c="0.0025405762377219993" d="5.7575975523724948e-05" /> - <width sOffset="18.696465525720342" a="0.89163020349993216" b="0.091850378123148529" c="0.0022391497754237349" d="2.4378700161497596e-05" /> - <width sOffset="19.435631757411208" a="0.96075614377081298" b="0.09520054505772646" c="-0.00013657212946371075" d="0.0018532360069267938" /> - <width sOffset="20.453815663431953" a="1.0595024051757713" b="0.10068617474848066" c="0.005615262158081699" d="0.0018788162914268056" /> - <width sOffset="20.913929816664723" a="1.1072013311223028" b="0.10704676253517241" c="0.0047487690383538972" d="-0.00033996660742331057" /> - <width sOffset="27.073509536022513" a="1.867285506222192" b="0.12685217547616934" c="-0.0022849501257978348" d="0.00015651697223165845" /> - <width sOffset="28.171469772539567" a="2.0040167726514739" b="0.12240065817771026" c="0.0025915835173391322" d="-0.00055403530494069989" /> - <width sOffset="30.68072349514793" a="2.3187153206437379" b="0.12494133172290552" c="-0.0015502657904434554" d="-0.00054838568171793501" /> - <width sOffset="30.944376972667598" a="2.3515387228946465" b="0.124009505730789" c="0.030916334753932313" d="-0.030600147784132246" /> - <width sOffset="31.952705172691715" a="2.4766433734175322" b="0.093021254637652498" c="-0.18403442396004183" d="0.12142709981551679" /> - <width sOffset="32.456868307847046" a="2.4923239961086816" b="4.770107518452596e-05" c="0.0012182037446077296" d="-0.00067125026357767832" /> - <width sOffset="34.61474583746466" a="2.4913546819472154" b="-0.0040717304857014261" c="0.0012999774687845376" d="-0.00010056712510771065" /> - <width sOffset="40.907631326863907" a="2.4921499749297675" b="0.00034199072262392285" c="-0.00059899754235821388" d="-0.00010065905731958099" /> - <width sOffset="41.167818475422948" a="2.4921966329663561" b="9.844742559042205e-06" c="-3.0939618033117098e-06" d="2.2708717844201968e-07" /> - <width sOffset="48.194218346729919" a="2.4921918317624501" b="0" c="1.6249164670210925e-05" d="-2.6234136959165451e-06" /> - <width sOffset="51.134539158579884" a="2.4922656251979967" b="2.7513451219304819e-05" c="3.3540733028001452e-06" d="-2.3323744773706798e-06" /> - <width sOffset="55.748771254119205" a="2.4922348529645886" b="-9.0510322827419554e-05" c="-0.00068550107899173159" d="0.00011426022910427508" /> - <width sOffset="61.866279128234908" a="2.4921858830030135" b="0.0043505642319625892" c="-0.008667004399202257" d="6.6466702061519485e-05" /> - <width sOffset="62.118981203611355" a="2.4927328916914466" b="-1.7042406419240375e-05" c="-3.8512128960038056e-06" d="2.0565987104162681e-07" /> - <width sOffset="71.588354822011837" a="2.4924008040001482" b="-3.4655586423584794e-05" c="9.4795481216016636e-08" d="1.2938050306690553e-07" /> - <width sOffset="80.796406096152396" a="2.4921907429020029" b="0" c="0.0011105708657059496" d="-0.00023048739609516332" /> - <width sOffset="81.815262653727814" a="2.4930998183389868" b="0.00154523957389123" c="0.00040681430465627083" d="-0.00023090796396519394" /> - <width sOffset="85.611508346281084" a="2.4921958593799935" b="-0.0053492037771217249" c="0.0018874298539651516" d="-0.00016065926468857147" /> - <width sOffset="92.042170485443791" a="2.4931245150986499" b="-0.0010057843756202944" c="-0.0012141427716881523" d="-0.00016101782171855047" /> - <width sOffset="92.576245549585423" a="2.4922165042477498" b="-0.0024404554552591162" c="0.0088871741549232663" d="-0.0045350097080743643" /> - <width sOffset="94.056066350241707" a="2.4933706014160073" b="-0.0059308448224485583" c="0.0092748937419192649" d="-0.0040729588502038238" /> - <width sOffset="94.559371698843933" a="2.4922157733563401" b="0.00031012215416943711" c="-0.00013466255724864373" d="1.4577542140177145e-05" /> - <width sOffset="99.184654867275569" a="2.4922117522105118" b="0" c="-1.3402373155271173e-06" d="3.035166695641872e-07" /> - <width sOffset="102.26907831715977" a="2.4922079080856334" b="3.9495168842427087e-07" c="-4.4191144910376353e-07" d="2.9507072500834194e-08" /> - <width sOffset="112.49598614887574" a="2.492197289469142" b="6.1457897629259989e-07" c="3.3340525758879645e-06" d="-4.367665362309547e-07" /> - <width sOffset="118.94810363720556" a="2.4922227351080517" b="-1.0909560125186169e-05" c="-2.3966555429370595e-05" d="-1.0537467980463366e-06" /> - <width sOffset="122.72289398059172" a="2.4917833753140917" b="-0.00023689165170318483" c="-1.8003388466941618e-05" d="1.6212864511793276e-06" /> - <width sOffset="132.9498018123077" a="2.4892119126727232" b="-9.6420323451204028e-05" c="3.4233357442789203e-05" d="2.0614951440966781e-06" /> - <width sOffset="134.82075624337313" a="2.4891648486853821" b="5.3326388854235728e-05" c="1.2342937978648983e-05" d="-3.7657198480794358e-07" /> - <width sOffset="143.17670964402367" a="2.4902525465689331" b="0.00018072143895205266" c="2.1276476528291955e-06" d="-3.1784897017926333e-07" /> - <width sOffset="153.40361747573965" a="2.4919833176144373" b="0.00012450882012155439" c="-1.1832434346141152e-05" d="1.1573216446155482e-07" /> - <width sOffset="158.8135643272185" a="2.4923289221861227" b="6.6447202762976842e-06" c="-8.0311632609009191e-06" d="7.5110424266163737e-07" /> - <width sOffset="163.63052530745563" a="2.4922585313423706" b="-1.8443009786922289e-05" c="-2.7858991643656072e-06" d="1.3955677799444571e-07" /> - <width sOffset="173.8574331391716" a="2.4919278141075445" b="-3.1636696651735898e-05" c="-7.5952813185441883e-07" d="1.2100107549573743e-07" /> - <width sOffset="184.08434097088758" a="2.491654255966723" b="-9.2055668959973528e-06" c="1.3734464855476799e-06" d="9.549254101193694e-08" /> - <width sOffset="194.31124880260356" a="2.4918059013187066" b="4.884924689257681e-05" c="3.1266850418330843e-06" d="1.260131374779493e-07" /> - <width sOffset="199.91909994045562" a="2.4922003917285411" b="9.5805796752282662e-05" c="-1.2465822092809541e-05" d="3.9610939548933495e-07" /> - <width sOffset="204.53815663431953" a="2.4924159941581547" b="5.9989143431742054e-06" c="-7.676876153665216e-06" d="3.3179327088742995e-07" /> - <width sOffset="214.76506446603551" a="2.4920293183473521" b="-4.6916075324338058e-05" c="2.2536227302678716e-06" d="3.2495528490644327e-07" /> - <width sOffset="225.50291065041421" a="2.4921877097277489" b="0.00011388537317733732" c="-0.00010046153999886673" d="1.2202994340005871e-05" /> - <width sOffset="232.38047485479359" a="2.4921888594309745" b="0.00046366144669112569" c="-0.0001113705702487696" d="5.4037674298760109e-06" /> - <width sOffset="235.21888012946746" a="2.4927312285113965" b="-3.796110302954625e-05" c="-6.5139162518382948e-05" d="5.4754808188231356e-06" /> - <width sOffset="242.98259800572603" a="2.4910725346354612" b="-5.9296266306272521e-05" c="0.001646869168527524" d="0.0013850974996584601" /> - <width sOffset="243.56521107984236" a="2.4918709161075858" b="0.0032701429024628846" c="-0.0014115741620015602" d="0.00015080042098155298" /> - <width sOffset="245.44578796118344" a="2.4940314832843047" b="-0.00043905610220338481" c="-0.00056063256700962169" d="0.00015059745005357767" /> - <width sOffset="248.28391802794579" a="2.4917123210346475" b="1.7826981037791234e-05" c="1.3513380617505115e-05" d="-8.0621485487049989e-07" /> - <width sOffset="255.67269579289942" a="2.4922565771026863" b="8.5478142997641449e-05" c="3.7653983743444466e-06" d="-1.708569771904575e-06" /> - <width sOffset="260.20490298847142" a="2.4925622660673863" b="1.4322581149597835e-05" c="-2.6922015391859198e-05" d="2.6872677638505038e-06" /> - <width sOffset="266.60627567138363" a="2.4922556559104749" b="0" c="-1.5203249032298347e-06" d="1.025773198211333e-07" /> - <width sOffset="276.1265114563314" a="2.4922063718631633" b="-1.0564509856092474e-06" c="4.4862381588891593e-05" d="-6.3194257245924518e-06" /> - <width sOffset="281.27479046118236" a="2.4925276895394801" b="-4.161323983390211e-05" c="0.012653063938035615" d="-0.0082977463506050016" /> - <width sOffset="282.79222365998311" a="2.4926068178400071" b="-0.018960514353831538" c="-0.47427547378703183" d="0.46852264222205309" /> - <width sOffset="283.29803515845367" a="2.4223065057613389" b="-0.13914058203059146" c="0.018800979791639479" d="-0.0070732734363344518" /> - <width sOffset="285.06841255208639" a="2.1956538310791944" b="-0.13907885001314835" c="0.0042807486833420887" d="-0.0001740748972593344" /> - <width sOffset="286.18645415977875" a="2.0452656167595866" b="-0.13015952949466691" c="0.00190250216632129" d="-0.00031253478527086076" /> - <width sOffset="286.35341928804735" a="2.0235850962410828" b="-0.12955036438678499" c="0.0017297959352956932" d="-0.00026474574838437572" /> - <width sOffset="289.86966918617384" a="1.5779310496955974" b="-0.12720553472328333" c="0.0078333473765863099" d="-0.00064220711954283017" /> - <width sOffset="294.044011077194" a="1.1367156043237525" b="-0.095379022586045983" c="0.0021259796601333907" d="1.9233549669449931e-05" /> - <width sOffset="296.5803271197633" a="0.90879428378992255" b="-0.084223527498484191" c="0.0022533151436411681" d="1.0255774021819033e-05" /> - <width sOffset="302.36143309765134" a="0.49917914342262826" b="-0.057141939800994364" c="0.0033093526333846887" d="-5.9393303641698758e-05" /> - <width sOffset="303.83514869484566" a="0.4219654537413402" b="-0.047774828457176718" c="0.0026539825485234259" d="-0.00011760674431556494" /> - <width sOffset="306.8072349514793" a="0.30033039053726274" b="-0.03511566414688664" c="0.0015902094257717436" d="-8.7968136123775997e-05" /> - <width sOffset="308.50285041576171" a="0.24493090520414018" b="-0.030481651438610119" c="0.003250583842058904" d="-0.00013328213966821038" /> - <width sOffset="312.21203452180669" a="0.16978899460353825" b="-0.011868729312450123" c="0.0017769164170968223" d="-8.2631685068809951e-05" /> - <width sOffset="317.03414278319531" a="0.1446095940289307" b="-0.00049599895531162591" c="0.00058166547589482884" d="-8.2283800223329303e-05" /> - <width sOffset="321.79461720424456" a="0.14655319852618054" b="-0.00055216696896720138" c="0.0011025425249448922" d="2.5793504054965256e-05" /> - <width sOffset="322.04356448403212" a="0.14648446581019448" b="1.5785936490764207e-06" c="0.00052181667284549875" d="-4.232450272009454e-05" /> - <width sOffset="327.26105061491126" a="0.1546862778197593" b="0.0019902277518633153" c="-0.00014086689978777783" d="-4.2386434923052248e-05" /> - <width sOffset="330.25942732053568" a="0.15824472289611369" b="2.2881139361500408e-06" c="0.0007667577622430088" d="-0.00016532663135481235" /> - <width sOffset="331.77369517956527" a="0.15943231714627326" b="0.0011871559411926087" c="0.0015848177719019773" d="-0.00019423458265264518" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.12" weight="standard" type="solid"> - <type name="solid"> - <line length="337.48795844662726" space="0" width="0.12" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.7166418632263634" b="0.081274427164237564" c="0.0023038429037369589" d="-0.00012441881856607218" /> - <width sOffset="3.8562450704637055" a="4.0571807890412703" b="0.093492235674553198" c="0.0043234520399312772" d="-0.00030019273713391837" /> - <width sOffset="4.6122124502513557" a="4.1301989738705025" b="0.099514344643594627" c="0.0046574386866919341" d="-0.00079870614086717095" /> - <width sOffset="8.5206243149710037" a="4.5426018962059906" b="0.099318375704921968" c="0.00053458932870237286" d="-0.00074443250496560249" /> - <width sOffset="10.226907831715977" a="4.7099255065489753" b="0.09464066755817481" c="-0.0032829658651935033" d="-0.00074201820811848045" /> - <width sOffset="10.553311237204458" a="4.7404409747368899" b="0.09226036303992205" c="-0.0012977750961913155" d="-0.00053261604647807733" /> - <width sOffset="15.449008777412335" a="5.0985180934356711" b="0.041256342780013035" c="-0.0014492919211567181" d="-8.9597998249700433e-05" /> - <width sOffset="18.696465525720342" a="5.21414356906382" b="0.029008622282706811" c="-0.00061421217500643615" d="-5.6400722887790801e-05" /> - <width sOffset="20.453815663431953" a="5.2629189192045178" b="0.026327306992100459" c="-0.0010418969197561864" d="-8.4550340996211785e-05" /> - <width sOffset="28.171469772539567" a="5.3651801815472773" b="-0.0048627022394000449" c="-0.0073604731871894985" d="0.00062600193617612496" /> - <width sOffset="30.68072349514793" a="5.3165245799524374" b="-0.029976701886048659" c="-0.0026911291370207485" d="0.00061952904199958584" /> - <width sOffset="34.61474583746466" a="5.1946662585984837" b="-0.022386143448526498" c="0.00019339283605080673" d="4.8845903529492826e-05" /> - <width sOffset="39.30762138671151" a="5.0989182806520317" b="-0.017343794566895304" c="0.0023694511956686916" d="4.3519058405429894e-06" /> - <width sOffset="40.907631326863907" a="5.0772517331133944" b="-0.0097280805832044518" c="0.0023931044563229435" d="5.2778303832775578e-06" /> - <width sOffset="48.194218346729919" a="5.1354694230483089" b="0.025987716081182177" c="0.01086979517932771" d="-0.00037011458322724249" /> - <width sOffset="51.134539158579884" a="5.2964478135453508" b="0.080309624181582717" c="0.0076124674391481505" d="-0.00036921999173746738" /> - <width sOffset="61.36144699029586" a="6.5190239156273906" b="0.12016386766857207" c="-0.0037158280905843985" d="-0.00036902089995020812" /> - <width sOffset="61.866279128234908" a="6.578692020717301" b="0.116129987786147" c="0.0058037579537457912" d="-0.00032122737294094846" /> - <width sOffset="71.588354822011837" a="7.961098757854046" b="0.13789310120196643" c="-0.0035706250429840374" d="-0.00032130432729959949" /> - <width sOffset="78.406037126263698" a="8.6334260965218856" b="0.044402888041239645" c="-0.0083421727232447732" d="-0.00028862427453173255" /> - <width sOffset="80.796406096152396" a="8.6879572430240763" b="-0.00042633298966699736" c="-0.042512177410474306" d="0.0038129483987356916" /> - <width sOffset="81.815262653727814" a="8.6474250492788975" b="-0.075179647462845209" c="-0.030855727436864325" d="0.003811959384261591" /> - <width sOffset="85.611508346281084" a="8.125898379212126" b="-0.14464354739459268" c="-0.020033672861402483" d="0.001686468228529523" /> - <width sOffset="92.042170485443791" a="6.8157660289170146" b="-0.19307944616202871" c="0.012504497361243025" d="0.001686923855379611" /> - <width sOffset="94.056066350241707" a="6.4914182229134632" b="-0.1221885764432989" c="0.002175639612419357" d="0.0012248729975157795" /> - <width sOffset="99.184654867275569" a="6.0872162535439163" b="-0.0032212830438292659" c="5.4309132414283854e-05" d="-1.0004588732402158e-06" /> - <width sOffset="102.26907831715977" a="6.07776777399497" b="-0.0029148124214648428" c="4.208691261164705e-05" d="-1.2447506524280189e-06" /> - <width sOffset="112.49598614887574" a="6.0510286902559818" b="-0.002444538551128742" c="8.2767059698495417e-06" d="-1.6871506017308801e-06" /> - <width sOffset="122.72289398059172" a="6.0250896529158364" b="-0.0028046237743292739" c="-3.0532586770974255e-05" d="-1.803698727198943e-06" /> - <width sOffset="132.9498018123077" a="5.9912843438688403" b="-0.0039950762980625557" c="-7.769215500203077e-05" d="-1.5798984484317915e-06" /> - <width sOffset="134.82075624337313" a="5.9835274319674614" b="-0.0043023844250386382" c="-5.3098599122691107e-05" d="8.5816868047420122e-07" /> - <width sOffset="143.17670964402367" a="5.9443701405961225" b="-0.005010006214134461" c="-3.3422625677414819e-05" d="1.0013070828825902e-06" /> - <width sOffset="153.40361747573965" a="5.8907086350340094" b="-0.0053794473853338368" c="-7.6854410270376252e-06" d="1.0642304668610125e-06" /> - <width sOffset="163.63052530745563" a="5.836028036293845" b="-0.0052027215230475501" c="1.9029468825684068e-05" d="1.0632335821557904e-06" /> - <width sOffset="173.8574331391716" a="5.7859478332679259" b="-0.0044798866106175034" c="4.6408693711837899e-05" d="1.0187969035596948e-06" /> - <width sOffset="184.08434097088758" a="5.7460760489028813" b="-0.0032109849285158398" c="7.4018779337252442e-05" d="9.5928063714861281e-07" /> - <width sOffset="194.31124880260356" a="5.7220052738054701" b="-0.0013960259998934085" c="0.00010112416226247417" d="9.6522229203551086e-07" /> - <width sOffset="199.91909994045562" a="5.7175269423255077" b="-0.00017078458741937724" c="0.0011252586347280178" d="-7.9266881276894955e-06" /> - <width sOffset="204.53815663431953" a="5.7399650611562745" b="0.0097171183139170367" c="0.001014104139626118" d="-8.0023680079634317e-06" /> - <width sOffset="214.76506446603551" a="5.9368463632131956" b="0.027948522990863072" c="0.00076794864171940251" d="-8.0113491408645604e-06" /> - <width sOffset="222.50967323885564" a="6.195636123511493" b="0.038401909276107531" c="0.012584644367771345" d="-0.00051807729680211113" /> - <width sOffset="224.99197229775149" a="6.3605810905973756" b="0.091302731561066094" c="0.0087263571419338784" d="-0.0005181622780302714" /> - <width sOffset="225.50291065041421" a="6.4094401283600124" b="0.099814181422480983" c="0.006549730413716889" d="-0.00027730483696027336" /> - <width sOffset="232.38047485479359" a="7.3155152470803229" b="0.15055626804865954" c="0.0091253979052438143" d="-0.0013945236040535385" /> - <width sOffset="235.21888012946746" a="7.7844845257893684" b="0.1686542987132803" c="-0.0027490549106677087" d="-0.0013943799019825896" /> - <width sOffset="238.32738987539616" a="8.2403013958205058" b="0.11114239102230035" c="-0.0070784009295938501" d="-0.00082957977608038344" /> - <width sOffset="243.56521107984236" a="8.5090417525566604" b="-0.031286399416592454" c="-0.014634601488183791" d="0.00040471730259529037" /> - <width sOffset="245.44578796118344" a="8.4011406792702328" b="-0.08203545337714499" c="-0.012349909079222288" d="0.00040454986871882835" /> - <width sOffset="255.67269579289942" a="6.7032171959448519" b="-0.2077030371397105" c="6.6582092037852309e-05" d="0.00040447886469389049" /> - <width sOffset="265.89960362461539" a="5.0186633569343657" b="-0.07942827815572033" c="0.012478498924783579" d="0.0004045687802519117" /> - <width sOffset="266.60627567138363" a="4.9689079659933686" b="-0.061185758199948322" c="0.0046236864972708262" d="-5.9584034693972146e-05" /> - <width sOffset="276.1265114563314" a="4.754059426626708" b="0.010650235915785906" c="0.0029687354390420992" d="-6.6295571339585182e-05" /> - <width sOffset="279.69244984118848" a="4.8267815858448326" b="0.029293864367648428" c="0.00041012801287738368" d="-0.00017244775268855211" /> - <width sOffset="286.18645415977875" a="4.9870844910764376" b="0.012803163020031826" c="-0.0011551237561267008" d="-3.3987864906818391e-05" /> - <width sOffset="286.35341928804735" a="4.9891898128403112" b="0.012414589772585581" c="-0.0011691409157158627" d="-3.1373853646068695e-05" /> - <width sOffset="296.5803271197633" a="4.9603142736528785" b="-0.021342943534320688" c="-0.0021347926414617847" d="-3.9215269743815185e-05" /> - <width sOffset="298.10315002696359" a="4.9227237031686117" b="-0.028117585216281007" c="-0.00148436790009662" d="3.1123795290344247e-05" /> - <width sOffset="302.36143309765134" a="4.7784782948720004" b="-0.039066201636942424" c="-0.0019649344485826309" d="0.00010077287295360781" /> - <width sOffset="306.8072349514793" a="4.5748155807383686" b="-0.050562245969072814" c="-0.00048138662904716417" d="8.3187548531236656e-05" /> - <width sOffset="308.50285041576171" a="4.4881029604752065" b="-0.05147721868623284" c="-0.0021660791600854332" d="0.00012850155207575739" /> - <width sOffset="311.1246804653822" a="4.340564740711244" b="-0.060185445314992557" c="-0.0021014754645994819" d="0.00018606041147113491" /> - <width sOffset="317.03414278319531" a="3.9499109813203717" b="-0.065529962786567461" c="0.0012033243376276988" d="0.00018768516086040607" /> - <width sOffset="321.79461720424456" a="3.6854750769005626" b="-0.041313144265150849" c="0.0021877287323489136" d="7.9607856605777452e-05" /> - <width sOffset="322.91881455683199" a="3.641908949602795" b="-0.036092436637589147" c="0.0022163131201835343" d="-7.8842573120477944e-05" /> - <width sOffset="327.26105061491126" a="3.5205206128776627" b="-0.021304660600862245" c="0.0011851262133716449" d="-7.9618671511975714e-05" /> - <width sOffset="329.19681211238583" a="3.4831432190395852" b="-0.017611451920945174" c="0.0012916425566647108" d="1.0951842124876999e-05" /> - <width sOffset="331.77369517956527" a="3.446524895633047" b="-0.010736456837446371" c="-0.00019279901572272868" d="3.9859793422741786e-05" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="337.48795844662726" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4929118310042213" b="0.0033270397163795151" c="-0.001423822822891275" d="0.0002107909724146107" /> - <width sOffset="3.8562450704637055" a="2.4966563363549019" b="0.0017496014047578279" c="-0.0024442153815733034" d="0.00038656489098237116" /> - <width sOffset="8.5206243149710037" a="2.4908684356996718" b="0.0041789267215767006" c="-0.0022771279332924515" d="0.00033229125508082064" /> - <width sOffset="9.8069010310167393" a="2.493183333179839" b="-2.977114804601777e-05" c="-3.0982974346098631e-05" d="5.2844835532830123e-06" /> - <width sOffset="10.226907831715977" a="2.4931657550573618" b="-5.3000628648672277e-05" c="-1.7407961001484652e-05" d="2.8701867134152685e-06" /> - <width sOffset="15.449008777412335" a="2.4928229983069037" b="0" c="-2.2902350783086326e-05" d="3.0507138843145959e-06" /> - <width sOffset="20.453815663431953" a="2.4926317782440193" b="1.4597698050344832e-15" c="-1.2050980704929261e-05" d="7.8557343713531927e-07" /> - <width sOffset="30.68072349514793" a="2.492211642317586" b="1.8908485888147197e-15" c="-6.649190037403413e-07" d="5.1383398912276684e-08" /> - <width sOffset="39.30762138671151" a="2.4921951471472004" b="0" c="1.3159254326447923e-06" d="-7.6466499531162578e-07" /> - <width sOffset="40.907631326863907" a="2.4921953838319708" b="-1.6617125858705423e-06" c="-2.1669058503570246e-07" d="-5.5416451571902239e-09" /> - <width sOffset="51.134539158579884" a="2.492149798556992" b="-7.8326579480668401e-06" c="9.8255383742802509e-07" d="-5.9188018427901298e-08" /> - <width sOffset="61.36144699029586" a="2.492109150441868" b="-6.3070441704768387e-06" c="-3.0211683874213809e-06" d="4.6389483580651928e-07" /> - <width sOffset="67.253090747184643" a="2.4920619924164416" b="6.4010697745052469e-06" c="-0.00015736081251959387" d="1.4237900069403933e-05" /> - <width sOffset="71.588354822011837" a="2.4902923151348539" b="-0.0005552170227122212" c="2.2172779229993889e-05" d="1.3343378075749951e-05" /> - <width sOffset="78.406037126263698" a="2.4917660302696936" b="0.0016077492492899618" c="-0.001505019282285991" d="-1.9336674688186588e-05" /> - <width sOffset="78.905292272631272" a="2.4921911664218039" b="9.0512675940193022e-05" c="-1.7945900956089768e-06" d="1.0014518275909854e-07" /> - <width sOffset="81.815262653727814" a="2.4924418268882347" b="8.2612334368896857e-05" c="-5.2103318280299915e-07" d="-4.3604352815627881e-08" /> - <width sOffset="92.042170485443791" a="2.4931855604776749" b="5.8273526506325696e-05" c="-1.3816011007435812e-06" d="2.1921705193431162e-08" /> - <width sOffset="102.26907831715977" a="2.4936604653791572" b="3.6892862284069843e-05" c="-1.466884828494751e-06" d="3.6912323960306386e-08" /> - <width sOffset="112.49598614887574" a="2.4939238267988229" b="1.84714108465555e-05" c="1.4784828695495837e-06" d="-1.4565690331567116e-07" /> - <width sOffset="122.72289398059172" a="2.4941115674153025" b="3.0094160185980406e-06" c="2.3753854958563907e-06" d="-1.9469580033398311e-07" /> - <width sOffset="132.9498018123077" a="2.4941825329529053" b="-9.4943801375469566e-06" c="-4.6800808077847081e-07" d="8.9027539450945482e-11" /> - <width sOffset="143.17670964402367" a="2.4940365812302634" b="-1.9038997074690041e-05" c="-1.2412173621781041e-06" d="5.9925170491937132e-08" /> - <width sOffset="153.40361747573965" a="2.4937761503592357" b="-2.5623971490215322e-05" c="-1.5150763602923732e-06" d="8.7209733725078767e-08" /> - <width sOffset="163.63052530745563" a="2.4934489170971843" b="-2.9249359121861877e-05" c="-1.3754678577593731e-06" d="8.7540530937326096e-08" /> - <width sOffset="173.8574331391716" a="2.4930995627636983" b="-2.9915426289333844e-05" c="-9.4604619036021598e-07" d="6.8978270265179067e-08" /> - <width sOffset="184.08434097088758" a="2.4927684549561375" b="-2.7622442525838606e-05" c="-4.0985544129133923e-07" d="4.3455589531949271e-08" /> - <width sOffset="194.31124880260356" a="2.4924895774911722" b="-2.2370536280266577e-05" c="4.6880258230638273e-08" d="2.3112475530708365e-08" /> - <width sOffset="204.53815663431953" a="2.4922904210339327" b="-1.4159679371344904e-05" c="2.98515307296511e-07" d="1.6139620707259735e-08" /> - <width sOffset="214.76506446603551" a="2.4921940963083991" b="-2.9897907606465327e-06" c="-2.4165820130889941e-07" d="2.6650517820804034e-07" /> - <width sOffset="217.19902899877167" a="2.4921892304415869" b="5.7031087194686723e-07" c="-3.1460634809738007e-07" d="3.2753248276533019e-08" /> - <width sOffset="222.50967323885564" a="2.4921882919787994" b="0" c="-1.3237855275169408e-05" d="6.0951612759242713e-07" /> - <width sOffset="224.99197229775149" a="2.4921160456725922" b="-5.4453466201039025e-05" c="-8.8880149236511552e-06" d="5.4134149473641317e-07" /> - <width sOffset="235.21888012946746" a="2.4912085951484264" b="-6.6391142740110376e-05" c="7.6374407086132745e-06" d="6.1789846961691347e-07" /> - <width sOffset="237.06541308031262" a="2.4911159333213231" b="-3.1865055415337962e-05" c="-0.0013497239595414521" d="0.0015774824660983833" /> - <width sOffset="238.32738987539616" a="2.4920966031486191" b="0.0040983210922241175" c="-0.0040514696845333365" d="0.0010126823401953565" /> - <width sOffset="240.31976393118103" a="2.492188602260244" b="1.3927769332761075e-05" c="-8.0964079970198208e-07" d="2.2799706866639654e-08" /> - <width sOffset="245.44578796118344" a="2.4922417930587151" b="7.4245566041644673e-06" c="5.8949320394692528e-09" d="-2.5997860849966766e-08" /> - <width sOffset="255.67269579289942" a="2.4922905318069044" b="-6.121905603839739e-07" c="1.2210215091101742e-06" d="-8.6424000992565443e-08" /> - <width sOffset="265.89960362461539" a="2.4923195356079044" b="-2.7548081298067739e-06" c="4.5858079572363639e-07" d="-1.7936646435437215e-08" /> - <width sOffset="276.1265114563314" a="2.4923201396902814" b="9.9695654796547184e-07" c="4.0402614945843525e-05" d="-8.5843317427158693e-06" /> - <width sOffset="279.42006646752384" a="2.4924549996137082" b="-1.222230811562708e-05" c="-0.0016239180117249277" d="-0.00011159190842280681" /> - <width sOffset="279.69244984118848" a="2.4923289324495812" b="-0.00092171675699370844" c="0.00013428430523546074" d="-5.4397270364049021e-06" /> - <width sOffset="286.35341928804735" a="2.4905397580376989" b="0.00014315273668311437" c="2.4597331383145434e-05" d="-2.2465935929485018e-06" /> - <width sOffset="295.81341017172349" a="2.4921932925448478" b="5.3811949122829772e-06" c="3.6556951751570005e-05" d="7.6007428477430571e-05" /> - <width sOffset="296.5803271197633" a="2.4922532056244662" b="0.00019556744006456097" c="0.00021665659294576884" d="8.0595620526241417e-05" /> - <width sOffset="298.10315002696359" a="2.4933380608095113" b="0.0014161279045685842" c="-0.00024472331018091846" d="1.0256555492073692e-05" /> - <width sOffset="306.8072349514793" a="2.4938871431954417" b="-0.00051291343934167441" c="6.7345942093897698e-05" d="1.3949460779865182e-06" /> - <width sOffset="310.05761911474838" a="2.4929793900315875" b="-3.0900267795393871e-05" c="-0.00067648994108796467" d="3.5950021348276323e-05" /> - <width sOffset="311.1246804653822" a="2.4922198310838768" b="-0.0013518125763068" c="0.00038471669039742283" d="-2.1608838046689397e-05" /> - <width sOffset="317.03414278319531" a="2.4932069351359978" b="0.00093127000494201695" c="6.1456434272616419e-06" d="-2.1026286193567039e-05" /> - <width sOffset="322.91881455683199" a="2.4946151854968992" b="-0.0011807804272289651" c="-0.00012515229808545011" d="0.00013742414353296392" /> - <width sOffset="324.92967882949222" a="2.4928521404106951" b="-1.7054452656555322e-05" c="-0.00051566326598164347" d="8.8038358380865646e-05" /> - <width sOffset="327.26105061491126" a="2.4911251934409391" b="-0.00098591684146450385" c="9.6039496908730505e-05" d="8.6478690682003026e-05" /> - <width sOffset="329.19681211238583" a="2.4902038547806966" b="0.00035805401340511384" c="2.9361236559514143e-05" d="-4.0918229548813975e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423294" type="pole" s="35.633289519531942" t="4.0297222035337548" height="0.89050874447383421" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="33782041" s="0" t="-2.9110744467930951" orientation="none" validLength="7.8586675861470958" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.8586675861470958" s="0" distance="0" tStart="-2.9110744467930951" tEnd="-3.4102951083327686" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="302217497" s="7.8586675861470958" t="-3.4102951083327686" orientation="none" validLength="11.900818067627917" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.900818067627917" s="7.8586675861470958" distance="0" tStart="-3.4102951083327686" tEnd="-3.8140472348234722" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412698" s="305.52928694109039" t="-3.6709487721938387" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848154" s="325.86026173092307" t="-3.4444664682314134" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9489014" s="6.5192562575905999" t="-4.5646860440097221" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8987838" type="605" subtype="31" country="DEU" zOffset="0.89050874447383421" s="35.633289519531942" t="4.0297222035337548" orientation="+" /> - </signals> - </road> - <road name="" length="178.0234137912432" id="33782103" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33555309" /> - <successor elementType="junction" elementId="33554459" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-763.33629905008456" y="-799.38577082753307" hdg="1.2525530369563562" length="178.0234137912432"> - <paramPoly3 aU="0" bU="178.0119035795812" cU="0.015104705865742973" dU="-0.059353545703595689" aV="-0" bV="1.4210854715202004e-14" cV="-5.1152380434149594" dV="1.1297779234772825" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.26840152186281" b="-0.00024857624157361184" c="4.6306725994513896e-06" d="3.4803022484518011e-07" /> - <elevation s="10.471965517131952" a="158.26670591915766" b="-3.7094617941075148e-05" c="4.3334885404564501e-05" d="-2.3038627000516426e-06" /> - <elevation s="20.943931034263905" a="158.2684239547834" b="0.00011256923202980994" c="-3.4056040909791915e-06" d="5.5172727706353224e-07" /> - <elevation s="31.415896551395857" a="158.26986290143034" b="0.0002227531470673518" c="4.2961251885970433e-05" d="-2.6281978167704254e-06" /> - <elevation s="41.887862068527809" a="158.27388862137371" b="0.00025788986955991092" c="3.734505060325086e-05" d="-4.024026954650845e-06" /> - <elevation s="52.359827585659758" a="158.27606346911335" b="-0.00028380724379530411" c="-3.7237674017465325e-05" d="-2.2986108640354343e-07" /> - <elevation s="62.831793102791714" a="158.26874392207313" b="-0.0011393316422757874" c="8.8312324134442273e-06" d="1.5523676495001247e-06" /> - <elevation s="73.30375861992367" a="158.25956403537319" b="-0.00044366340835090377" c="0.00020196496205343692" d="-6.87447619285159e-06" /> - <elevation s="75.000509740729669" a="158.25935911788415" b="0.00018233102716548832" c="8.534329771922224e-05" d="-6.9463611517548066e-06" /> - <elevation s="83.775724137055619" a="158.26283705542269" b="7.5441634984001128e-05" c="-8.2339460092185324e-06" d="-1.0279407036752689e-06" /> - <elevation s="94.247689654187567" a="158.26154366232643" b="-0.00043518785326778571" c="-3.9113345626697723e-05" d="1.445177388026836e-06" /> - <elevation s="104.71965517131952" a="158.25435674895826" b="-0.00077893167051406556" c="1.9797416859626719e-05" d="-2.1829234961325424e-06" /> - <elevation s="115.19162068845148" a="158.24586400906017" b="-0.0010824476111097629" c="-3.0741397749119654e-05" d="1.0125494394032753e-06" /> - <elevation s="125.66358620558343" a="158.23232027876435" b="-0.0013931785478903057" c="4.6456592058146708e-05" d="-4.7944826342608666e-06" /> - <elevation s="136.13555172271538" a="158.21731961155609" b="-0.0019975134404345181" c="-2.4665160806821647e-06" d="2.7614526383406886e-07" /> - <elevation s="146.60751723984734" a="158.19644835540967" b="-0.0019583240061648069" c="-1.2361083169742817e-05" d="1.2289258743145993e-06" /> - <elevation s="157.07948275697927" a="158.17599658269324" b="-0.0018129140440800685" c="-4.5548639435190952e-06" d="2.2647025387876989e-06" /> - <elevation s="167.55144827411124" a="158.15911304662077" b="-0.00116325495113648" c="4.5768693521995298e-05" d="2.761452638530362e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026335183751882426" b="-4.8754199472036959e-05" c="1.6739846074801014e-06" d="4.1626007137362245e-08" /> - <superelevation s="10.471965517131952" a="0.026056006422579509" b="0" c="1.673984607479975e-06" d="0" /> - <superelevation s="20.943931034263905" a="0.026239579026043847" b="3.5059818171481917e-05" c="9.118540640580991e-06" d="-4.8616322791759748e-07" /> - <superelevation s="31.415896551395857" a="0.027048383370715672" b="6.6096918658249215e-05" c="-1.5483711707827714e-06" d="4.6289561751278806e-08" /> - <superelevation s="41.887862068527809" a="0.027623908331999569" b="4.8896565985211783e-05" c="-5.2180415122166878e-07" d="-5.4508994078254798e-09" /> - <superelevation s="52.359827585659758" a="0.028072469676522282" b="3.6174665225584751e-05" c="1.5465271307592116e-06" d="-2.0841307581490248e-07" /> - <superelevation s="62.831793102791714" a="0.028381548025671801" b="0" c="-2.5770974055230638e-05" d="1.6406327295526852e-06" /> - <superelevation s="73.30375861992367" a="0.027439515309243549" b="0" c="1.3830274333488949e-05" d="-7.3970531966026283e-07" /> - <superelevation s="83.775724137055619" a="0.02810671088810324" b="4.6307480408176736e-05" c="-6.0841057331676111e-06" d="4.2227439144824356e-07" /> - <superelevation s="94.247689654187567" a="0.028409375985282929" b="5.7804830752074917e-05" c="1.5028773682246677e-05" d="-1.1324683127858357e-06" /> - <superelevation s="104.71965517131952" a="0.029362291550922688" b="0" c="-4.7821728002089894e-05" d="3.0444286652048402e-06" /> - <superelevation s="115.19162068845148" a="0.027614215120534212" b="0" c="2.1627105860408816e-05" d="-1.1256684869492585e-06" /> - <superelevation s="125.66358620558343" a="0.028693195968696461" b="8.262723209171227e-05" c="2.0438750905509599e-06" d="-3.8127440180353347e-07" /> - <superelevation s="136.13555172271538" a="0.029344754171015151" b="0" c="-1.4015285901570763e-05" d="7.5023064582383285e-07" /> - <superelevation s="146.60751723984734" a="0.02866935688809737" b="-4.6719663026232168e-05" c="6.3107556881156871e-07" d="1.0183546095513216e-07" /> - <superelevation s="157.07948275697927" a="0.028366260770649694" b="0" c="6.5254124877812383e-06" d="-4.154210577505457e-07" /> - <superelevation s="167.55144827411124" a="0.02860479083313415" b="0" c="-4.380722448868825e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.9012144526644366" b="0.012857938639797355" c="-0.0014217280017648993" d="0.00026980285495289345" /> - <laneOffset s="1.7439894129323621" a="3.9207455037900565" b="0.010360796872728402" c="-0.00089867790772534591" d="6.5177972261008102e-05" /> - <laneOffset s="8.108983958874294" a="3.9670908254169683" b="0.006842332900085059" c="6.3335918591673758e-05" d="-2.1308965133358036e-05" /> - <laneOffset s="10.471965517131952" a="3.9833316260839684" b="0.0067847086700687466" c="-8.8094166556422463e-05" d="-2.1652832941627149e-05" /> - <laneOffset s="14.307904818996644" a="4.0068389360719268" b="0.0051530336134073002" c="5.4283156875686183e-06" d="-3.8549853535587301e-05" /> - <laneOffset s="19.705830577204509" a="4.0287495752786633" b="0.0018418859783217512" c="-0.00024187593427601385" d="-4.5485828930693437e-06" /> - <laneOffset s="20.943931034263905" a="4.0306506126435266" b="0.0012220350996572072" c="-0.00024322792723554368" d="-1.9381353007413642e-06" /> - <laneOffset s="23.384836503763104" a="4.0321561418372767" b="-0" c="-0.0024336882961511759" d="0.00037599601109053574" /> - <laneOffset s="27.699932452241264" a="4.0170510067811804" b="-0" c="0.00040145585810375792" d="-3.3724607805463841e-05" /> - <laneOffset s="31.415896551395857" a="4.0208640060231993" b="0.0015865435830281715" c="3.7178649176159086e-05" d="-3.312160705974403e-05" /> - <laneOffset s="35.803393913497167" a="4.0257432078618649" b="-0" c="-0.0077215568503483066" d="0.00099137398660800757" /> - <laneOffset s="40.859996229456328" a="3.9564870937693626" b="-0.0020436850423745548" c="0.00038188550058992904" d="-4.1383043203822369e-05" /> - <laneOffset s="41.887862068527809" a="3.9547449850241434" b="-0.0013897954927504501" c="0.00027235748942976178" d="-3.1512883564045773e-05" /> - <laneOffset s="48.004192124565456" a="3.9492228674275758" b="-0.0015947819203781307" c="-0.00014547013973754218" d="3.1310725662601922e-06" /> - <laneOffset s="52.359827585659758" a="3.9397755137666182" b="-0.0026838077230195486" c="-0.0001006466391600586" d="3.5266342499055598e-06" /> - <laneOffset s="62.831793102791714" a="3.9046835606962831" b="-0.0036315300433253663" c="4.8599119032897009e-06" d="4.5742222122424758e-06" /> - <laneOffset s="67.034479215673016" a="3.8898467639643513" b="-0.0033483031070054223" c="-2.0330977979526287e-05" d="1.2186856206874977e-06" /> - <laneOffset s="71.654628880166996" a="3.8740633094887271" b="-0.0034581260330582933" c="-0.0001155421492957998" d="9.4318120195930168e-06" /> - <laneOffset s="73.30375861992367" a="3.8680884811095697" b="-0.0037622609366537935" c="-7.4295037506528935e-05" d="6.3321780174824288e-06" /> - <laneOffset s="83.775724137055619" a="3.8278145970030155" b="-0.00323509198728522" c="0.00013034398418997455" d="5.5632404790073213e-06" /> - <laneOffset s="86.578021862466116" a="3.8198949059332059" b="-0.0023735044312490328" c="-0.00016541483703641692" d="4.4318078647902581e-05" /> - <laneOffset s="92.226707592814478" a="3.8091974525905949" b="-0" c="0.00076636808711205413" d="-5.2770038268570981e-05" /> - <laneOffset s="94.247689654187567" a="3.8118919953843151" b="0.002451035467984575" c="0.00045801004719657289" d="-5.0750326625169308e-05" /> - <laneOffset s="102.27075060467453" a="3.8348291603339679" b="-0" c="-0.00045032135814137382" d="7.2520440540661653e-05" /> - <laneOffset s="104.71965517131952" a="3.8331935877606149" b="-0.00090084375396535426" c="7.404164093067395e-05" d="7.9965830902093993e-05" /> - <laneOffset s="106.37325434697259" a="3.8322679843479324" b="-0" c="0.00024328589537712724" d="-5.433355186045917e-06" /> - <laneOffset s="115.19162068845148" a="3.8474608564794037" b="0.0030232167698645549" c="9.6556008420601851e-05" d="-6.2490595846734233e-06" /> - <laneOffset s="123.85353441836662" a="3.8768309585912739" b="0.0032893590220516929" c="-0.0002409837197817426" d="2.9253923737769076e-05" /> - <laneOffset s="125.66358620558343" a="3.8821688199068558" b="0.0027045057882704366" c="-5.8900323214355008e-05" d="3.5864263944513978e-05" /> - <laneOffset s="132.18024562709601" a="3.9072169999107662" b="0.0065059660494568008" c="0.0010526578411765451" d="-0.00019546725037059056" /> - <laneOffset s="135.79867017014891" a="3.9352803321189409" b="0.006446136101759938" c="-0.00078203608291439535" d="5.5918494572616275e-05" /> - <laneOffset s="143.31608842366492" a="3.9632999006831855" b="0.0041684784211003462" c="0.00020219157740529166" d="-8.7250343909040399e-06" /> - <laneOffset s="146.60751723984734" a="3.9788994791582257" b="0.0052159087138094785" c="0.00010779441106949048" d="-1.0142646326331799e-05" /> - <laneOffset s="157.07948275697927" a="4.0336936676137327" b="0.0041367569006099947" c="-0.00020970663009495336" d="-1.1460377639861695e-05" /> - <laneOffset s="158.18459139336676" a="4.0379936587265943" b="0.0036312712068852127" c="6.5750078674426429e-05" d="-1.5216636796227148e-05" /> - <laneOffset s="167.55144827411124" a="4.0652705584193649" b="0.00085778216570371981" c="-0.00036108706232872899" d="-1.5059870350688397e-05" /> - <laneOffset s="168.66205993156092" a="4.0657572050621136" b="-0" c="-7.9588259034632161e-05" d="2.442742083851967e-08" /> - <laneOffset s="174.4372235809418" a="4.063107441562531" b="-0.0009168262932155053" c="-0.0049188470172013103" d="0.0015069833218101338" /> - <laneOffset s="176.70276025922257" a="4.05330712189149" b="-0" c="0.00036424877299487168" d="-0.00018387329306021247" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="0.15238765609523997" b="8.700191397540552e-07" c="-0.00011498318644762506" d="-0.0001830026010282466" /> - <width sOffset="1.7439894129323621" a="0.15106874372848234" b="-0.0020699956243530552" c="-0.00018389710883396043" d="2.1622281663643287e-05" /> - <width sOffset="8.108983958874294" a="0.13601863228171318" b="-0.0017830432313946714" c="0.00051153849330039898" d="0.0001081092190579213" /> - <width sOffset="9.3574191409303857" a="0.13480025618789115" b="-3.0395321658563401e-07" c="0.0011047070059401849" d="-8.7068397781526617e-05" /> - <width sOffset="10.471965517131952" a="0.13605165290660093" b="0.0021377177772351702" c="0.00081355611295163372" d="-8.7344641435566279e-05" /> - <width sOffset="14.307904818996644" a="0.15129277190260382" b="0.0045235415904463869" c="-0.00053428945659498607" d="-7.0447620841587475e-05" /> - <width sOffset="17.054545764228138" a="0.15822688909150262" b="-5.8392708320734524e-06" c="0.0044443075534198323" d="-0.00085337731318303051" /> - <width sOffset="19.705830577204509" a="0.17354768617593308" b="0.0055644469578098217" c="-0.0027202948692827537" d="-0.00088737858382721615" /> - <width sOffset="20.454934392274772" a="0.17581650095327372" b="-4.9944209663185801e-06" c="0.003766547001781132" d="-0.00054949657865180248" /> - <width sOffset="20.943931034263905" a="0.17665045540987556" b="0.0032844801502579352" c="0.0029448982418304364" d="-0.0005521070262424361" /> - <width sOffset="23.384836503763104" a="0.1941840504259611" b="0.0077925232978718357" c="0.0010782430152633589" d="-0.00093004117263324249" /> - <width sOffset="24.883066714804869" a="0.20515157790581018" b="0.0047604629535116455" c="0.0022968340165067185" d="-0.00045637438918299795" /> - <width sOffset="27.699932452241264" a="0.22658546778589539" b="0.0068365828375233535" c="0.00047243031355473575" d="-4.6653770286972487e-05" /> - <width sOffset="31.415896551395857" a="0.25611959187371891" b="0.0084150107551876404" c="-5.167703735395611e-05" d="-4.7137672028574851e-05" /> - <width sOffset="35.803393913497167" a="0.28806439606412848" b="0.0052393256429767131" c="0.0066506463363186392" d="-0.0010716332656963451" /> - <width sOffset="37.801001223497231" a="0.31652714906118185" b="0.018981236559119624" c="-0.00044858561772501181" d="0.00066735929238733328" /> - <width sOffset="39.548907785146405" a="0.35189787679770967" b="0.023529768049503463" c="-0.0037234007575540004" d="-0.0009212959522782011" /> - <width sOffset="40.859996229456328" a="0.37427080918369215" b="0.0090153595648654328" c="-0.00041159254896673249" d="0.000111461077534494" /> - <width sOffset="41.887862068527809" a="0.38322357942018703" b="0.008522514345014361" c="-7.3506383415172859e-05" d="0.00010280312124095563" /> - <width sOffset="45.355208310149266" a="0.41617582257603214" b="0.011720618659181312" c="-0.00025683353772979454" d="4.1716540299989812e-05" /> - <width sOffset="48.004192124565456" a="0.44619675759065824" b="0.011238112203519961" c="-8.5716179103308767e-05" d="7.0725841696880113e-06" /> - <width sOffset="52.359827585659758" a="0.4941041382290039" b="0.010893949215453566" c="7.2628902269469408e-06" d="6.6288961125235719e-06" /> - <width sOffset="58.493724091977107" a="0.5627296151969432" b="0.011731279260676302" c="0.00087115303809423669" d="-0.00012910463442440044" /> - <width sOffset="62.831793102791714" a="0.61947503458791742" b="0.012000723819426096" c="-0.00080375557736655221" d="-0.00013015222257667296" /> - <width sOffset="62.989237849250259" a="0.62134405336428289" b="0.011737950662168784" c="-0.002942188837371078" d="0.0014725773840329559" /> - <width sOffset="64.987243013309765" a="0.64479665269804221" b="0.017616629265453942" c="-0.0015135306548126927" d="0.00015938912298449269" /> - <width sOffset="67.034479215673016" a="0.67588619129046323" b="0.013423603399001043" c="-0.00045174615591363589" d="0.0001627446595759558" /> - <width sOffset="71.030743263050667" a="0.73270251291620259" b="0.017610167878154094" c="-0.00043905034712871929" d="2.7010448100427746e-05" /> - <width sOffset="71.654628880166996" a="0.74352490950816685" b="0.017093873579195971" c="-0.00027639335568283057" d="1.8797321700049401e-05" /> - <width sOffset="73.30375861992367" a="0.77104754381842566" b="0.016335621791675015" c="-0.000183527095845201" d="1.9215648401400996e-05" /> - <width sOffset="82.145375315434464" a="0.91441535962981124" b="0.01759677232690627" c="1.4394158250569277e-05" d="-0.00087637491624017745" /> - <width sOffset="83.644052118935079" a="0.93786961903940513" b="0.011734817967226864" c="0.0014749846128336475" d="-1.5639904032095346e-06" /> - <width sOffset="83.775724137055619" a="0.939440335208793" b="0.012123165021404108" c="0.0014686588393145767" d="-7.9505287786774658e-07" /> - <width sOffset="85.642291054124712" a="0.96718077675909786" b="0.017597554960711092" c="-0.0005684124281525835" d="2.7153808904687748e-05" /> - <width sOffset="86.578021862466116" a="0.98317190124895815" b="0.016605119904384579" c="-0.00014965807184108803" d="-1.160102926631409e-05" /> - <width sOffset="92.226707592814478" a="1.0701028411810856" b="0.013803892313581673" c="-0.00052701600604691974" d="8.5487087650190047e-05" /> - <width sOffset="94.247689654187567" a="1.0965533800011351" b="0.012721194826941727" c="-9.2488114990841338e-06" d="8.2120670172431391e-05" /> - <width sOffset="98.721576667336933" a="1.1606351745137933" b="0.017569538024458375" c="-0.002535977549852078" d="0.00041556264388340982" /> - <width sOffset="102.27075060467453" a="1.2096265653918832" b="0.015272360801878019" c="0.0015755472791794927" d="0.00029229187671764225" /> - <width sOffset="104.01942561249031" a="1.2427137170818217" b="0.023463967773386499" c="-0.0065761666652679766" d="0.0022625399090386872" /> - <width sOffset="104.71965517131952" a="1.256696260344313" b="0.017582430652995449" c="-0.001814850783266358" d="0.0022550945186681822" /> - <width sOffset="105.26847970809288" a="1.2661720723572834" b="0.017628121419249129" c="-0.0002520693703138254" d="-6.6484727731189473e-05" /> - <width sOffset="106.37325434697259" a="1.2852498678685431" b="0.01682772250773365" c="-0.00024497125179122196" d="1.8914458356729439e-05" /> - <width sOffset="115.19162068845148" a="1.4275635947170997" b="0.016919798291510996" c="0.00025955038759293989" d="1.4154463904299244e-05" /> - <width sOffset="116.36611984264974" a="1.4478168523388866" b="0.017588057764852498" c="-0.00015672515679319055" d="-7.1678875514624155e-07" /> - <width sOffset="122.36183976246907" a="1.5474813663970064" b="0.015631394695740354" c="0.00038852043882928904" d="-1.3258209121925831e-05" /> - <width sOffset="123.85353441836662" a="1.5716191444339058" b="0.016701997791081405" c="0.00050434212290269428" d="-4.8761192444542523e-05" /> - <width sOffset="125.66358620558343" a="1.603213829103574" b="0.018048501461102213" c="0.0002396004560732701" d="-5.2886121199629056e-05" /> - <width sOffset="131.34855513456796" a="1.7038457542611756" b="0.015645084456382428" c="0.00014604100463591336" d="-9.938067552900242e-05" /> - <width sOffset="132.18024562709601" a="1.7169014676503234" b="0.015681778740996154" c="-0.00051233346810121091" d="0.00013195083878618513" /> - <width sOffset="135.79867017014891" a="1.7731881259933804" b="0.017156994232645738" c="0.00063287242830726003" d="-0.00011943490617803228" /> - <width sOffset="136.13555172271538" a="1.7790352587366161" b="0.017542736616235864" c="0.00051065333875579752" d="-0.00011799037852766424" /> - <width sOffset="140.29588198920911" a="1.8523610989610191" b="0.015665054127520339" c="0.0058263275835924236" d="-0.0019437380947704705" /> - <width sOffset="142.2946431330142" a="1.8914272213052459" b="0.015659958554818419" c="0.007015337008903437" d="-0.002837848589956414" /> - <width sOffset="143.31608842366492" a="1.9117181000448409" b="0.02110891237420584" c="-0.0014039237493627551" d="-0.0027732050609914518" /> - <width sOffset="144.56536410220062" a="1.9304908556634111" b="0.0046167988864299582" c="0.056172409963778647" d="-0.037341430189710478" /> - <width sOffset="145.56478463815171" a="1.9539357545730907" b="0.0050020189432421758" c="0.010457986012498916" d="-0.0022976441015970009" /> - <width sOffset="146.60751723984734" a="1.9679174364457324" b="0.019317159690617633" c="0.0032395271386857689" d="-0.0023096894719133875" /> - <width sOffset="148.56304615194509" a="2.0008088081064028" b="0.0054897333686890577" c="0.053787334947710617" d="-0.035832251432125865" /> - <width sOffset="149.56246667735334" a="2.0242503806514072" b="0.005629859359011012" c="0.0061760643152100137" d="-0.00086099442554185275" /> - <width sOffset="153.31029390687365" a="2.0867752840215292" b="0.01564238058460099" c="0.00051341330662988945" d="-2.8321091310550577e-05" /> - <width sOffset="157.07948275697927" a="2.1515117834332482" b="0.018305629075673575" c="0.00019203139528101604" d="-2.7003359999015978e-05" /> - <width sOffset="157.80768595489201" a="2.1649334040661206" b="0.018542346811042901" c="-0.0052543219030545133" d="0.0065760784660385714" /> - <width sOffset="158.18459139336676" a="2.1715277970058171" b="0.017384129743678849" c="0.0018679057143053855" d="0.0065798347251890699" /> - <width sOffset="158.93420377449272" a="2.1883803331721774" b="0.031276537202135524" c="-0.015018605492935089" d="0.0040068939734745693" /> - <width sOffset="161.43291334936248" a="2.2352727284191234" b="0.031273993578646631" c="-0.020855120279159658" d="0.0092736820399289925" /> - <width sOffset="162.93213826333235" a="2.2665341227483218" b="0.031273641136609888" c="-0.018495505793015326" d="0.0061973056330650571" /> - <width sOffset="164.68123506725766" a="2.2978130001331749" b="0.023451769155630114" c="-0.00073525129970056279" d="8.2391491011589316e-05" /> - <width sOffset="167.55144827411124" a="2.3610156473844697" b="0.021267367096227868" c="-2.3891257041552436e-05" d="8.2949415735540443e-05" /> - <width sOffset="168.66205993156092" a="2.3847195961701644" b="0.021521243203492694" c="-7.9193298765666313e-05" d="6.7865117964004316e-05" /> - <width sOffset="172.1603965475156" a="2.4619445236154336" b="0.023458826617524936" c="-0.0021319699950475527" d="-0.00094029504790206324" /> - <width sOffset="174.4372235809418" a="2.4932059628894221" b="-0.00087273033307754715" c="0.0036743607657257196" d="-0.0012287544285082103" /> - <width sOffset="176.70276025922257" a="2.4957997631894848" b="-0.0031442551594302662" c="0.00028227826372812604" d="0.00046210218636256762" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="178.0234137912432" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="3.8883379730233005" b="0.024795376360970095" c="-0.0028414273996137597" d="0.00082481833604762132" /> - <width sOffset="1.2083301111051172" a="3.9156054882831905" b="0.021541468670384246" c="-0.0003481314751367096" d="0.00025573660064438298" /> - <width sOffset="1.7439894129323621" a="3.9270837926775131" b="0.021388645134019779" c="-0.0008257182820926018" d="5.11117179507518e-05" /> - <width sOffset="8.108983958874294" a="4.0429499240703111" b="0.017089351352358874" c="-0.00013229935167541614" d="-3.537521944361569e-05" /> - <width sOffset="10.471965517131952" a="4.0821262831707656" b="0.015871537584326845" c="-0.00038343604038888702" d="-3.5723017328229431e-05" /> - <width sOffset="13.576256045209533" a="4.1266324703464567" b="0.012458196451988028" c="-0.0006849321146093271" d="-9.3467385735217586e-06" /> - <width sOffset="14.307904818996644" a="4.1353771828101626" b="0.01144092676255707" c="-0.00036274836318650634" d="-2.6243759169306933e-05" /> - <width sOffset="19.705830577204509" a="4.1824371513986209" b="0.0052307086281287449" c="-0.00041077046186207411" d="7.7575114732286136e-06" /> - <width sOffset="20.943931034263905" a="4.1882983498710002" b="0.0042492327340668459" c="-0.00036617906697943562" d="1.0339979757298756e-05" /> - <width sOffset="23.384836503763104" a="4.1966389972041158" b="0.0026464331626690494" c="-0.0024667302812941237" d="0.00038827412614857707" /> - <width sOffset="25.180687697781558" a="4.1956849842060437" b="-0.0024566807629066972" c="-0.0006118451339942665" d="0.00039808842433762217" /> - <width sOffset="27.699932452241264" a="4.1919777574697736" b="0.0020400609231769583" c="0.0003645689524294076" d="-1.1632194558352905e-05" /> - <width sOffset="29.454332705031696" a="4.1966161422945945" b="0.0032118517463361187" c="0.00031504343617550629" d="-4.2566195021385114e-05" /> - <width sOffset="31.415896551395857" a="4.2038073260174356" b="0.0039564573507318256" c="7.6890518452251322e-05" d="-4.177571269802695e-05" /> - <width sOffset="35.803393913497167" a="4.2191180520617966" b="0.0022186071548308643" c="-0.0077957545780501514" d="0.00098271988096972464" /> - <width sOffset="40.859996229456328" a="4.158064454656464" b="-0.0012392910651840481" c="0.00017640666104870139" d="-5.0037148842053105e-05" /> - <width sOffset="41.646996469692979" a="4.1571740028739486" b="-0.0010546013292201618" c="0.000273905929469698" d="-4.1387309631841822e-05" /> - <width sOffset="41.887862068527809" a="4.1569352983334422" b="-0.00092985570563590978" c="0.00026208023021854755" d="-3.1517149955400273e-05" /> - <width sOffset="48.004192124565456" a="4.1538408810326848" b="-0.0012610391626951393" c="-0.0001558256829217713" d="3.1268061749057319e-06" /> - <width sOffset="52.359827585659758" a="4.1456503758047543" b="-0.0024405177278629783" c="-0.00011094018666097944" d="3.5234859336271092e-06" /> - <width sOffset="62.831793102791714" a="4.1119737200772164" b="-0.0036048631496888007" c="-5.9005679054693365e-06" d="4.7900692083181026e-06" /> - <width sOffset="64.120907937284287" a="4.1073270934862762" b="-0.0035961955127899528" c="-0.00051134103569145501" d="2.0249797739897471e-05" /> - <width sOffset="67.034479215673016" a="4.0930094382548869" b="-0.0060601572449394629" c="-0.00041720629881568795" d="1.6894261148313648e-05" /> - <width sOffset="71.654628880166996" a="4.0577711337644518" b="-0.0088334046346209994" c="-0.0002951469550877851" d="2.5107387547209092e-05" /> - <width sOffset="73.30375861992367" a="4.0425136204476537" b="-0.0096020275468671982" c="-0.00017639729834866214" d="2.1973861815220978e-05" /> - <width sOffset="77.84164154009855" a="3.9973616686428608" b="-0.0098454856917438195" c="-0.00019029059825686966" d="1.5845207645110211e-05" /> - <width sOffset="83.775724137055619" a="3.9355479728189078" b="-0.010429998071597486" c="9.7689485464157947e-05" d="1.5084542242161779e-05" /> - <width sOffset="86.578021862466116" a="3.9074191077717151" b="-0.0095271170630334811" c="-0.00011802476894070665" d="5.3839380411046885e-05" /> - <width sOffset="88.170066054136669" a="3.8921696230665139" b="-0.0094935337175297181" c="3.1429784531338142e-05" d="4.5163619919026913e-05" /> - <width sOffset="92.226707592814478" a="3.8571899882936505" b="-0.0070088512458303179" c="0.00076183386311698691" d="-5.1924496997447943e-05" /> - <width sOffset="94.247689654187567" a="3.8457082284729394" b="-0.0045657824421779045" c="0.00045864765943062552" d="-4.9906294878543119e-05" /> - <width sOffset="99.188679349052578" a="3.828325874244221" b="-0.0036885796232714731" c="-0.00021944189934955161" d="-5.6674380440728677e-05" /> - <width sOffset="102.27075060467453" a="3.8132136332068609" b="-0.0066563283352001849" c="-0.00043027785003443278" d="6.6596386725117354e-05" /> - <width sOffset="104.71965517131952" a="3.7953105483016292" b="-0.0075655848382353737" c="5.0708644163937431e-05" d="7.4024033230804781e-05" /> - <width sOffset="106.37325434697259" a="3.7832734666617576" b="-0.0067906495132773505" c="0.00019047684341696894" d="-1.1375152857335341e-05" /> - <width sOffset="111.16880851806265" a="3.7538344911516188" b="-0.005748560238268168" c="-5.5767447129483283e-05" d="7.3755401591745367e-06" /> - <width sOffset="115.19162068845148" a="3.7302867842915419" b="-0.0058391686761988856" c="3.0356767659874855e-05" d="6.6225614632702387e-06" /> - <width sOffset="123.14888368902857" a="3.6890818140883375" b="-0.0040980723831233901" c="0.00013285938234072555" d="-1.3062681817807972e-05" /> - <width sOffset="123.85353441836662" a="3.6862555030174597" b="-0.0039302916058585897" c="-6.9907785622097643e-05" d="2.2440301504573876e-05" /> - <width sOffset="125.66358620558343" a="3.6790455102676161" b="-0.0039628023943818411" c="7.4331184302673102e-05" d="2.8864692735088727e-05" /> - <width sOffset="132.18024562709601" a="3.6643659607105969" b="0.00068335736203016962" c="0.0010490478836882177" d="-0.00020246682158001503" /> - <width sOffset="135.79867017014891" a="3.6709817457635214" b="0.00032246661959399892" c="-0.0008616283011682786" d="4.891892336333546e-05" /> - <width sOffset="136.13555172271538" a="3.6709944636176197" b="-0.00024141143450685451" c="-0.00081199237223955373" d="4.8736359196538292e-05" /> - <width sOffset="137.32580307666862" a="3.669638955696497" b="-0.0019672273258640365" c="-0.00059365284994971268" d="6.1955280611512107e-05" /> - <width sOffset="143.31608842366492" a="3.6498697930291217" b="-0.002410006881245509" c="0.00024287610379055357" d="-2.688248352004253e-06" /> - <width sOffset="146.50534685499915" a="3.6445668363940142" b="-0.00094284705829057736" c="0.00015810267902633833" d="-8.4756317987754139e-06" /> - <width sOffset="146.60751723984734" a="3.6444721467079337" b="-0.00091080566112183934" c="0.00014726112591398663" d="-9.8932434711656765e-06" /> - <width sOffset="157.07948275697927" a="3.6397220034026638" b="-0.0010813192265262438" c="-0.00016248615692419476" d="-1.1180065307586875e-05" /> - <width sOffset="158.18459139336676" a="3.6383135005560083" b="-0.001481410407816386" c="0.0001138998785830393" d="-1.4936324463953503e-05" /> - <width sOffset="161.36880959270457" a="3.6342689976590936" b="-0.0012103754589033399" c="-0.00031554894467109159" d="6.9779442543401044e-06" /> - <width sOffset="167.55144827411124" a="3.6163729264603255" b="-0.0043120294829708484" c="-0.00018549004744010823" d="7.1172017312077372e-06" /> - <width sOffset="168.66205993156092" a="3.611364891824937" b="-0.0046977079873727423" c="0.00016989910020075603" d="2.2201499502734849e-05" /> - <width sOffset="174.11381795894044" a="3.5944012361099333" b="-0.00086561378925433408" c="0.0049875682673486826" d="-0.00086396203140471555" /> - <width sOffset="174.4372235809418" a="3.5946137236311233" b="0.0020893129789161628" c="-0.00069034424234667904" d="0.00064299686297435122" /> - <width sOffset="176.70276025922257" a="3.6032807488926668" b="0.0088621585457261138" c="-0.0012794274882416976" d="-0.0010478597518959758" /> - <roadMark sOffset="0" color="standard" width="0.30539408610475943" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.305394" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - <speed sOffset="113.44281201704102" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.4536667368809448" b="-0.0040623131110634047" c="0.0031483514054025464" d="-0.0021690582831642648" /> - <width sOffset="0.51556154833212986" a="3.4521119641450824" b="-0.00254560647791921" c="0.00087071756575917542" d="-0.00058727807504723394" /> - <width sOffset="1.2083301111051172" a="3.4505710722292999" b="-0.0021847490367722724" c="0.00014683677220122323" d="-1.8196339642269489e-05" /> - <width sOffset="8.3838021330819661" a="3.4357321381044281" b="-0.0028881493195280104" c="-0.00012786946346609744" d="3.5173046090666464e-05" /> - <width sOffset="10.471965517131952" a="3.429463905597645" b="-0.0029620655549995236" c="9.2130957634041917e-05" d="3.4852475226793807e-05" /> - <width sOffset="13.576256045209533" a="3.4221992317195689" b="-0.0013824828904621207" c="0.00038551978505646934" d="8.4761964736986214e-06" /> - <width sOffset="14.89167418986435" a="3.4210670557997531" b="-0.000324243728361478" c="0.00058831437868334178" d="-6.1409059576631424e-05" /> - <width sOffset="20.943931034263905" a="3.4270405342501675" b="4.8808631808144008e-05" c="-0.0005269106693549481" d="-6.1381080085487694e-05" /> - <width sOffset="21.086908536192006" a="3.4270365619739729" b="-0.00010562847104758155" c="-0.00074007946447423212" d="0.00018399123516702812" /> - <width sOffset="23.601635375294261" a="3.4250167509973153" b="-0.00033722434473988736" c="6.4748173544049422e-05" d="-4.0613537407606831e-06" /> - <width sOffset="25.180687697781558" a="3.424629709173566" b="-0.00016312265136221192" c="0.00028247141522521664" d="-1.3875651929824359e-05" /> - <width sOffset="29.454332705031696" a="3.4280086000034773" b="0.0014909660011559228" c="9.2875524481299111e-05" d="1.7058348533236633e-05" /> - <width sOffset="31.415896551395857" a="3.4314193343398958" b="0.0020522364407972002" c="0.00020109165065624316" d="1.6077983414277005e-05" /> - <width sOffset="34.792854325931678" a="3.441262035868486" b="0.0039604449019091763" c="0.00034288349449307034" d="-2.1694503033976235e-06" /> - <width sOffset="41.041937620989799" a="3.4788717257693502" b="0.0079917020521544507" c="0.00034806247909016999" d="1.1496250273532462e-05" /> - <width sOffset="41.646996469692979" a="3.4838371466983236" b="0.0084255248188812564" c="0.00015329319009512186" d="2.8464110265726476e-06" /> - <width sOffset="49.204636694156115" a="3.5574987504469733" b="0.011230337659194713" c="0.0016463987498232197" d="-0.00034153712100066521" /> - <width sOffset="52.359827585659758" a="3.5985949841970255" b="0.011419501007302976" c="-0.0015716468402565209" d="-0.00034747178563551765" /> - <width sOffset="53.452438460736786" a="3.6087425981639991" b="0.0067406702335946252" c="-0.0009830705181420661" d="6.8976290914755418e-05" /> - <width sOffset="59.449805079579662" a="3.6286886591665808" b="0.0023919033972959946" c="-7.6060229657471968e-05" d="-1.3003935390304796e-05" /> - <width sOffset="62.831793102791714" a="3.6354050561890481" b="0.0014312229121010739" c="-0.00021318881767285277" d="-1.1234759574142285e-05" /> - <width sOffset="64.120907937284287" a="3.6368717181407186" b="0.00082556283202293585" c="0.00026732781224959103" d="-2.6694488105531226e-05" /> - <width sOffset="65.543886153187799" a="3.6385108633925292" b="0.001424207774320779" c="-0.00043901142212875443" d="3.5119602316235733e-05" /> - <width sOffset="73.30375861992367" a="3.6395373686498633" b="0.00095510843663005815" c="0.00037835904168994879" d="3.3285687517976297e-05" /> - <width sOffset="75.044223935501947" a="3.642521324864997" b="0.0025746389769959522" c="9.6699952548257547e-05" d="-1.8311092053742617e-05" /> - <width sOffset="77.84164154009855" a="3.6500795411793177" b="0.0026857764376622766" c="0.00025606637530952602" d="-1.2182437883627928e-05" /> - <width sOffset="82.023601946568547" a="3.6648986513834032" b="0.0041883269262625155" c="0.00014381260141851975" d="-1.6112903810583325e-05" /> - <width sOffset="83.775724137055619" a="3.6725919372251745" b="0.0045438848613970888" c="7.4675863108017782e-05" d="-1.330339230835424e-05" /> - <width sOffset="86.091706719006865" a="3.6833507797735963" b="0.0046757116358953302" c="0.00025680568548196972" d="-3.7444792665088978e-05" /> - <width sOffset="88.170066054136669" a="3.693841715113928" b="0.00525794356879037" c="0.00013102394744707405" d="-2.8769032173059266e-05" /> - <width sOffset="94.247689654187567" a="3.7241787897667811" b="0.0036626029171625135" c="-0.00037191055270597738" d="-4.0660553513823975e-05" /> - <width sOffset="95.393208139597334" a="3.7278252239278711" b="0.0026504762190901823" c="-0.00082105002039085614" d="0.00012044979000380907" /> - <width sOffset="99.188679349052578" a="3.7326430288586239" b="0.0016233878908402215" c="0.00048877120270984017" d="0.00012721787556580567" /> - <width sOffset="100.26935816938165" a="3.7351287696458426" b="0.0031255178307581428" c="0.00072586064398170416" d="-0.00011265997535847279" /> - <width sOffset="103.73468356281079" a="3.7499880367033986" b="0.0040975792636095167" c="-0.00044995410046855136" d="6.5336319597100221e-05" /> - <width sOffset="104.71965517131952" a="3.7536499390582554" b="0.0034013570645999081" c="-0.00025703666349787522" d="6.535406345283798e-05" /> - <width sOffset="110.73437652518476" a="3.7790300109918835" b="0.0074022662010354238" c="0.00013759157555796794" d="6.7931612111017096e-06" /> - <width sOffset="111.16880851806265" a="3.782272317043661" b="0.0075256608092947605" c="0.00022903888059753289" d="-1.1957531805668646e-05" /> - <width sOffset="115.19162068845148" a="3.8154747270521923" b="0.0087878947533472137" c="7.707432920934666e-05" d="-1.3805379374491193e-05" /> - <width sOffset="123.14888368902857" a="3.8833268336344551" b="0.0073921077086540679" c="-0.0001968949990893034" d="5.8798639066332295e-06" /> - <width sOffset="125.66358620558343" a="3.9007641782659919" b="0.0065133910024817191" c="-0.00012255880944073611" d="-1.0574376549313884e-05" /> - <width sOffset="126.69545650625935" a="3.9073430397653079" b="0.0062266840086835432" c="-0.00024847357852161541" d="1.8005638584588445e-05" /> - <width sOffset="135.62611222248765" a="3.9559590355642005" b="0.0060968262053506996" c="8.5695056523651562e-05" d="6.8038526320032453e-06" /> - <width sOffset="136.13555172271538" a="3.9590881395430584" b="0.0061894364820194985" c="9.5897230006370456e-05" d="6.9864167990856217e-06" /> - <width sOffset="137.32580307666862" a="3.9666027628223399" b="0.0064474130318354413" c="7.6530036441014297e-05" d="-6.232504615888283e-06" /> - <width sOffset="146.50534685499915" a="4.0274149264965171" b="0.0062769069163764674" c="-3.6051741701894487e-05" d="-4.4512225574499632e-07" /> - <width sOffset="146.60751723984734" a="4.028055863680609" b="0.0062695261361131963" c="-3.8855490782985236e-05" d="-4.9836685680721161e-07" /> - <width sOffset="157.07948275697927" a="4.0888768387553496" b="0.0052917836057132265" c="-5.374134120496312e-05" d="-8.6205650435166114e-07" /> - <width sOffset="160.83937390214066" a="4.1079678188006854" b="0.0048511003067310951" c="-0.00028820590804512741" d="1.0712379116167184e-05" /> - <width sOffset="161.36880959270457" a="4.110456969443864" b="0.0045549354275382118" c="1.5575914145578691e-05" d="-1.1201889602689878e-05" /> - <width sOffset="167.55144827411124" a="4.1365665197522352" b="0.0034629585280419747" c="-0.00019102596366155612" d="-1.1046025341306262e-05" /> - <width sOffset="171.95364935986129" a="4.1471668384317963" b="0.0011388939366263058" c="-0.00025028695943307895" d="-5.9230097874824334e-05" /> - <width sOffset="174.11381795894044" a="4.1478620775049739" b="-0.00077159138378548773" c="-0.0050886855098238818" d="0.00082693343304283311" /> - <width sOffset="177.63080504325089" a="4.1181789558438977" b="-0.0058797633386295876" c="-0.0089022251132148539" d="0.016560595375224682" /> - <roadMark sOffset="0" color="standard" width="0.16178024958896625" weight="standard" type="solid"> - <type name="solid"> - <line length="178.0234137912432" space="0" width="0.16178000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - <speed sOffset="113.4428119185081" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="2.4930893539899808" b="-0.00011890707095339823" c="-0.0011859173580646741" d="0.0015577909660680496" /> - <width sOffset="0.51556154833212986" a="2.4929263056695836" b="-9.9533994482481347e-05" c="0.00014627870823788415" d="-2.3989242048969826e-05" /> - <width sOffset="4.5198290407618575" a="2.4933329701899032" b="-8.1997744821767082e-05" c="-0.00013753717868032604" d="3.3888080107238197e-05" /> - <width sOffset="8.3838021330819661" a="2.4929176745941635" b="0.00037299873316783139" c="0.00013829496802355556" d="-1.9481305625628699e-05" /> - <width sOffset="10.471965517131952" a="2.4941221991166591" b="0.00069572331671778533" c="1.6099918266381874e-05" d="-1.9351423046667004e-05" /> - <width sOffset="14.89167418986435" a="2.4958409043044538" b="-0.00029598470597358689" c="-0.00040982840424966629" d="5.0533833003865388e-05" /> - <width sOffset="20.943931034263905" a="2.4902405899229261" b="0.00029637631048632382" c="0.00051663635164310873" d="4.9101742938516835e-05" /> - <width sOffset="21.086908536192006" a="2.4902936699560758" b="0.0004471223572988293" c="0.00072453813991057579" d="-0.00019627057231400445" /> - <width sOffset="23.601635375294261" a="2.4928786884244629" b="0.00036759576073760623" c="-0.00017292703417854817" d="-8.2179834052450667e-06" /> - <width sOffset="24.602668881561716" a="2.4930651359467251" b="-3.3206865418179861e-06" c="0.0001295318527292776" d="-8.7777917860396357e-06" /> - <width sOffset="31.415896551395857" a="2.4962792324694267" b="0.00053934215854556378" c="-4.9588354943111591e-05" d="-7.552574018388821e-06" /> - <width sOffset="34.792854325931678" a="2.4972442184264514" b="-5.3958526387324138e-05" c="-0.00010501035615835891" d="1.0694859699290253e-05" /> - <width sOffset="41.041937620989799" a="2.4954161642587276" b="-0.00011345920452219063" c="4.9638639558704216e-05" d="-2.9708408776653422e-06" /> - <width sOffset="41.887862068527809" a="2.4953539088175294" b="-3.5855822793586303e-05" c="4.6971805945613586e-05" d="-2.9500819849728811e-06" /> - <width sOffset="49.204636694156115" a="2.496450642795248" b="0.0001777088060267544" c="-0.0014463525574071544" d="0.0003414334500423115" /> - <width sOffset="51.957148881685598" a="2.4931019804579013" b="-2.4066625031333652e-05" c="-0.00041353337037200628" d="0.00041620146456084834" /> - <width sOffset="52.359827585659758" a="2.4930524104752911" b="-0.00015464741275971264" c="7.4336434634226546e-05" d="0.00042213501111673511" /> - <width sOffset="53.452438460736786" a="2.4935227986186503" b="0.0015196266410558712" c="-0.00026950633109283618" d="5.6869345664551751e-06" /> - <width sOffset="59.449805079579662" a="2.4941696046578246" b="-0.0010993799859679906" c="0.00016683158889186744" d="8.7667160871415187e-05" /> - <width sOffset="60.951231324638272" a="2.493191773392113" b="-5.530149266809968e-06" c="-0.00029483453275611744" d="2.2523730505528573e-05" /> - <width sOffset="62.831793102791714" a="2.4922884845717519" b="-0.00087547288533484436" c="-0.00016426862793350491" d="2.1706812202028244e-05" /> - <width sOffset="65.543886153187799" a="2.4891388730209227" b="-0.001287506462078748" c="0.00060472626482607999" d="-4.0107278219903361e-05" /> - <width sOffset="73.30375861992367" a="2.4968212055646517" b="0.00085243696479568414" c="-0.00032922351218418944" d="-3.8856629329168878e-05" /> - <width sOffset="75.044223935501947" a="2.4971026903255642" b="-0.00064668302278520244" c="-7.6652516034911048e-05" d="1.2740150242548718e-05" /> - <width sOffset="81.549832253895886" a="2.4931592920353505" b="-2.6423687331311035e-05" c="0.00023360105125940365" d="-1.6863446993258387e-05" /> - <width sOffset="82.023601946568547" a="2.4931974135725752" b="0.00018356711651863148" c="0.00016904723619809691" d="-1.2932981072626829e-05" /> - <width sOffset="83.775724137055619" a="2.4939684439758216" b="0.00065683982012078356" c="0.00010186897356758004" d="-1.132657387756545e-05" /> - <width sOffset="86.091706719006865" a="2.4958953724976065" b="0.00094643376469662872" c="-0.00025138856684820196" d="1.2814826479167889e-05" /> - <width sOffset="94.247689654187567" a="2.4938445987040452" b="-0.00059687896984862536" c="6.0083998104733358e-05" d="2.0238471135789888e-05" /> - <width sOffset="95.393208139597334" a="2.4932701275269169" b="-0.00037955277832055906" c="0.00043904184716455941" d="-0.00014087187238147041" /> - <width sOffset="96.894338369395456" a="2.4932131846510797" b="-1.375343719448377e-05" c="0.00052560140803304409" d="-0.00012521595212011276" /> - <width sOffset="100.26935816938165" a="2.4943399587446122" b="-0.00074483718847345509" c="-0.00056686199520195664" d="0.00011466189880431042" /> - <width sOffset="103.73468356281079" a="2.4897231635002455" b="-0.00054281433757290797" c="0.00062976469770032535" d="-6.3334396148384469e-05" /> - <width sOffset="104.71965517131952" a="2.4897389633682772" b="0.00051345114043249663" c="0.00044050875186508835" d="-6.2258522076191942e-05" /> - <width sOffset="110.73437652518476" a="2.4952163890183616" b="-0.00094442999910280981" c="0.00010173696926869657" d="-3.6976198341922686e-06" /> - <width sOffset="115.19162068845148" a="2.49270061257275" b="-0.00025787909712896061" c="5.6549473121607183e-05" d="-2.7772232604075507e-06" /> - <width sOffset="125.66358620558343" a="2.4930121431442389" b="1.2821081575077549e-05" c="-4.4740080934157036e-05" d="1.2727859857227685e-05" /> - <width sOffset="126.69545650625935" a="2.4929917195314331" b="-3.8854632384863961e-05" c="8.7841034552149161e-05" d="-1.5852155276658793e-05" /> - <width sOffset="130.19759437177009" a="2.4932521055054209" b="-6.8704149529993366e-06" c="7.4104710667534553e-05" d="-1.2365673063847003e-05" /> - <width sOffset="135.62611222248765" a="2.4934204259758057" b="-0.00029551778938540976" c="2.0960722198439278e-05" d="-1.1638871193097544e-06" /> - <width sOffset="136.13555172271538" a="2.4932751635655341" b="-0.00027506753571278342" c="2.0025896706453908e-05" d="-4.8580717419579595e-07" /> - <width sOffset="146.60751723984734" a="2.4920328569933132" b="-1.5470385260971358e-05" c="2.6520167120259563e-06" d="-5.5047781831650918e-07" /> - <width sOffset="157.07948275697927" a="2.4915295210258548" b="-0.00014102632772485993" c="-1.5644239610332309e-05" d="-3.8407838609394242e-07" /> - <width sOffset="160.83937390214066" a="2.4907577033630961" b="-0.00027495650027248899" c="0.00020476433260838191" d="-1.1958514006047804e-05" /> - <width sOffset="167.55144827411124" a="2.4945210469756285" b="0.00085756750644812492" c="-3.616015696027148e-05" d="-1.2008020185279891e-05" /> - <width sOffset="171.95364935986129" a="2.4965710433100066" b="-0.00015892481491382822" c="-0.00028136479393293902" d="3.6176052348235983e-05" /> - <width sOffset="177.45593397903426" a="2.4932045305118522" b="3.048154667429975e-05" c="-0.0018181324527227214" d="-0.0022591372690302274" /> - <width sOffset="177.63080504325089" a="2.4931421817417561" b="-0.00081264846855780065" c="0.0095351765461282774" d="-0.017992799211246399" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659200" type="pole" s="113.44281193397661" t="-5.187482253754081" height="1.8539415577339469" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422248" type="pole" s="14.628135112567412" t="-6.1713291071008305" height="1.8825070996441582" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5177144" s="91.950914955300647" t="-4.8655445633288101" orientation="none" validLength="11.80698877041749" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.80698877041749" s="91.950914955300647" distance="0" tStart="-4.8655445633288101" tEnd="-4.6879074353448695" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273612600" s="103.75790372571814" t="-4.6879074353448695" orientation="none" validLength="2.5323792147051023" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.5323792147051023" s="103.75790372571814" distance="0" tStart="-4.6879074353448695" tEnd="-4.7697161791622662" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542048056" s="106.29028294042324" t="-4.7697161791622662" orientation="none" validLength="0.99557994679943818" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="0.99557994679943818" s="106.29028294042324" distance="0" tStart="-4.7697161791622662" tEnd="-4.8897127498357191" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810483512" s="107.28586288722268" t="-4.8897127498357191" orientation="none" validLength="2.058138457072161" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.058138457072161" s="107.28586288722268" distance="0" tStart="-4.8897127498357191" tEnd="-4.8804066660672207" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078918968" s="109.34400134429484" t="-4.8804066660672207" orientation="none" validLength="1.4943999242994011" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.4943999242994011" s="109.34400134429484" distance="0" tStart="-4.8804066660672207" tEnd="-4.6992994703301036" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742235" s="110.83840126859424" t="-4.6992994703301036" orientation="none" validLength="4.428155618719984" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.428155618719984" s="110.83840126859424" distance="0" tStart="-4.6992994703301036" tEnd="-4.5940168412413698" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742236" s="115.26655688731422" t="-4.5940168412413698" orientation="none" validLength="15.031009669712361" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.031009669712361" s="115.26655688731422" distance="0" tStart="-4.5940168412413698" tEnd="-4.6719304695705866" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742237" s="130.29756655702658" t="-4.6719304695705866" orientation="none" validLength="47.725847234216616" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="47.725847234216616" s="130.29756655702658" distance="0" tStart="-4.6719304695705866" tEnd="-5.1354480600572945" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412762" s="27.429999505501858" t="-4.9508247253941304" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848218" s="90.630314824189156" t="-4.9786758460430152" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283674" s="122.98676060675972" t="-4.6997677730340062" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719130" s="171.31434486323138" t="-5.2252001080386536" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <objectReference id="277422248" s="14.628135112567412" t="-6.1713291071008305" zOffset="0" validLength="0" orientation="none" /> - </objects> - <signals> - <signal dynamic="no" id="8223744" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="1.8539415577339469" s="113.44281193397661" t="-5.187482253754081" orientation="+" /> - <signal dynamic="no" id="8986780" type="511" subtype="22" country="DEU" zOffset="1.8633056986612644" s="14.627126365306415" t="-6.1721967958684756" orientation="+" /> - <signal dynamic="no" id="8986792" type="1004" subtype="34" country="DEU" zOffset="1.5329438251429224" s="14.628135112567412" t="-6.1713291071008305" orientation="+" /> - </signals> - </road> - <road name="" length="5.0000000000003668" id="33782133" junction="33555390"> - <link> - <predecessor elementType="road" elementId="4940858" contactPoint="end" /> - <successor elementType="road" elementId="4940867" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-786.89038493392832" y="-783.78807151147794" hdg="4.4015573432498112" length="5.0000000000003668"> - <paramPoly3 aU="0" bU="5.0000261860857069" cU="-2.5979593419214988e-05" dU="-2.0962581833248068e-07" aV="0" bV="-1.3322676295501878e-15" cV="0.00015143551376185533" dV="1.6662665110716065e-06" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.49193669757221" b="-0.00025016797391528938" c="6.6619755671126765e-06" d="2.6568859170197913e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025299780913263688" b="-3.8529687927481937e-05" c="-5.5511151231249681e-19" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="6.0525686731425896" b="-0.00049785102054610822" c="0.00011942779292547581" d="-6.3199272783124298e-05" /> - <laneOffset s="2.7732876083230167" a="6.0507585015740002" b="-0.0012936561452272044" c="-0.0022476063386577226" d="0.00075989220039988242" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1547079165304224" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000003668" space="0" width="0.15470800000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8564273988219453" b="0.0040720789205990864" c="-9.1416183400091941e-05" d="-9.6019123118527922e-05" /> - <width sOffset="2.7732876083230167" a="3.8649692925905779" b="0.0013495471908747273" c="-0.0027315069677095192" d="0.00072707235006439386" /> - <roadMark sOffset="0" color="standard" width="0.15821327330226068" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15821299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6558023086637439" b="-0.0051344191373493674" c="0.00023504425893264728" d="3.7119669297743314e-05" /> - <roadMark sOffset="0" color="standard" width="0.14027440931680168" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14027400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.7920598405975232" b="-0.0015364326708106691" c="0.00036376719888324915" d="2.5321325583640686e-05" /> - <width sOffset="2.1688759098647097" a="3.7906970173002326" b="0.00039883543006093098" c="0.052013502610949558" d="-0.012264607902123035" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.1688759098647097" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="2.1688759098647097" type="none" width="0" /> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link> - <predecessor id="-4" /> - </link> - <width sOffset="0" a="0.19344557515535232" b="-0.00015220468106389665" c="0.00020042268540445228" d="-0.00069400435084498167" /> - <width sOffset="2.1688759098647097" a="0.18697771613519354" b="-0.0090766574993535552" c="-0.055800184241128023" d="0.011595924876852459" /> - <width sOffset="2.668240633549658" a="0.16997450619064747" b="-0.056131086821756965" c="-0.045641070607262579" d="0.01649034649185694" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782129" s="0" t="7.1235331815107754" orientation="none" validLength="5.0000000000003668" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="5.0000000000003668" s="0" distance="0" tStart="7.1235331815107754" tEnd="7.1215521089016995" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="205.47736385204763" id="33782160" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33555390" /> - <successor elementType="road" elementId="4940815" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-795.46051527368672" y="-781.03554470611607" hdg="1.2595894977009909" length="107.00606561227193"> - <paramPoly3 aU="0" bU="127.06829373574372" cU="-67.835565500619239" dU="47.73202634753175" aV="-0" bV="2.1316282072803006e-14" cV="-0.58932087118332177" dV="2.7962960572974982" /> - </geometry> - <geometry s="107.00606561227193" x="-764.80804440127224" y="-678.53307892203952" hdg="1.3131089822743887" length="98.471298239775706"> - <paramPoly3 aU="0" bU="86.955385740987509" cU="33.572625973908416" dU="-22.057686656470768" aV="-0" bV="1.4210854715202004e-14" cV="0.39949019360214244" dV="-0.019837034064061676" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.26483309683684" b="0.00012392269422003914" c="8.0903765912723253e-06" d="3.0521148236638235e-08" /> - <elevation s="10.273868192602382" a="158.26699331875037" b="0.0002998263580528441" c="1.3898886509767294e-05" d="-4.4328278471517403e-07" /> - <elevation s="20.547736385204765" a="158.27106004596891" b="0.00044504837172258834" c="-2.9612793108857926e-05" d="3.4096565836385081e-06" /> - <elevation s="30.821604577807147" a="158.27620425153663" b="0.0009162644810086696" c="8.2004997986834431e-05" d="-3.9838866116989461e-06" /> - <elevation s="41.095472770409529" a="158.28995340314924" b="0.0013397555691013843" c="6.9636913497959509e-05" d="-6.7028918025544927e-06" /> - <elevation s="51.369340963011908" a="158.3037993919566" b="0.00064811821097441463" c="-0.00011987534129945717" d="5.1013056178638179e-06" /> - <elevation s="61.643209155614294" a="158.30333696146027" b="-0.00019968404308681124" c="2.4394469454065357e-05" d="-3.7787507549594169e-06" /> - <elevation s="71.917077348216679" a="158.29976253304437" b="-0.00089500118219824616" c="-5.0276531563783646e-06" d="3.052114823660217e-08" /> - <elevation s="82.190945540819058" a="158.29006982625464" b="-0.00098864333551345186" c="-9.527008002451314e-05" d="6.1033708024219576e-06" /> - <elevation s="92.464813733421437" a="158.27647533761382" b="-0.001013552108931975" c="6.7544179193660184e-05" d="-4.4005306441958614e-06" /> - <elevation s="102.73868192602382" a="158.2684196125322" b="-0.0010191314055937159" c="-7.2286759063177404e-05" d="4.002186744696382e-06" /> - <elevation s="113.01255011862621" a="158.25465924805624" b="-0.0012371398150567176" c="3.2820754683854134e-05" d="-2.1651528545527524e-06" /> - <elevation s="123.28641831122859" a="158.24306538590622" b="-0.001248358630144339" c="-0.00018005211201427867" d="1.1171347151320435e-05" /> - <elevation s="133.56028650383098" a="158.22334954358135" b="-0.001410535538796995" c="7.4655580279015915e-05" d="-4.6178170627581795e-06" /> - <elevation s="143.83415469643336" a="158.21173025613581" b="-0.0013387969284325192" c="-0.00016141921327335343" d="9.7979508865034814e-06" /> - <elevation s="154.10802288903574" a="158.19156265559343" b="-0.0015530056280382641" c="3.3385122105630762e-05" d="6.9579606494994564e-07" /> - <elevation s="164.38189108163812" a="158.17988570205156" b="-0.00064668817367585904" c="0.00020515321864790677" d="-9.9902739519966189e-06" /> - <elevation s="174.65575927424049" a="158.18406235705419" b="0.00040525487469217467" c="4.4758954204299358e-06" d="-3.8671430969514587e-07" /> - <elevation s="184.92962746684287" a="158.18827896855103" b="0.00037476856091434024" c="3.646607627753328e-05" d="-3.8261289033654769e-06" /> - <elevation s="195.20349565944525" a="158.19182919881476" b="-8.7507010658464604e-05" c="3.2139365844470644e-06" d="3.0521148176226806e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.025137724201139262" b="3.8933511559628765e-05" c="-1.8947834851366488e-06" d="0" /> - <superelevation s="10.273868192602382" a="-0.024937725318119868" b="0" c="-2.8338093003319748e-06" d="7.8690172185531265e-08" /> - <superelevation s="20.547736385204765" a="-0.025151506528238131" b="-3.3310564516861904e-05" c="-5.8283467807060736e-06" d="4.4885162122958722e-07" /> - <superelevation s="30.821604577807147" a="-0.025622182016654702" b="-1.0937843710251265e-05" c="1.5969414107522286e-06" d="-1.0362480686045096e-07" /> - <superelevation s="41.095472770409529" a="-0.025678368998949905" b="-1.0937843710251265e-05" c="-5.4541361649954536e-05" d="3.5737059253037045e-06" /> - <superelevation s="51.369340963011908" a="-0.027672274927478792" b="0" c="5.3732773943568019e-05" d="-3.0507531178318026e-06" /> - <superelevation s="61.643209155614294" a="-0.025308985015580581" b="0.00013804423023091166" c="-6.7182208124058508e-06" d="0" /> - <superelevation s="71.917077348216679" a="-0.024599860902509759" b="0" c="-1.389782631380352e-05" d="7.7114187152348877e-07" /> - <superelevation s="82.190945540819058" a="-0.02523055913730457" b="-4.1381320448851295e-05" c="2.3653320330358118e-06" d="-4.067975638251978e-08" /> - <superelevation s="92.464813733421437" a="-0.025450153366364438" b="-5.6606351740056713e-06" c="8.2646113438769607e-07" d="-5.362868972648159e-08" /> - <superelevation s="102.73868192602382" a="-0.02547923167619651" b="-5.6606351740056713e-06" c="-1.5177759933157216e-05" d="1.0027542167016297e-06" /> - <superelevation s="113.01255011862621" a="-0.026052018921439473" b="0" c="4.3387050849594298e-07" d="0" /> - <superelevation s="123.28641831122859" a="-0.026006222862019004" b="8.9150568338893778e-06" c="3.9325913573682945e-05" d="-1.7475694285849047e-06" /> - <superelevation s="133.56028650383098" a="-0.023658806115591412" b="0.00026359328965143138" c="3.5908627185081277e-05" d="-3.1625196017405699e-06" /> - <superelevation s="143.83415469643336" a="-0.020589977433352467" b="0" c="-2.9431666173544947e-05" d="1.2827463886917563e-06" /> - <superelevation s="154.10802288903574" a="-0.022305509388134345" b="-0.00019856336269110113" c="-2.8549424970122414e-05" d="2.4796204275651874e-06" /> - <superelevation s="164.38189108163812" a="-0.024670005065689015" b="0" c="9.0275776935319556e-07" d="0" /> - <superelevation s="174.65575927424049" a="-0.024574716845729302" b="1.8549628664366968e-05" c="3.0577421742040781e-05" d="-2.0427346299849084e-06" /> - <superelevation s="184.92962746684287" a="-0.023371826132060479" b="0" c="-5.977264225693441e-06" d="3.3562488373931589e-07" /> - <superelevation s="195.20349565944525" a="-0.023638778457016629" b="-1.6541246262549832e-05" c="8.0501549915056489e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-3.364527840190835" b="-0.00066840665300195272" c="-0.00039682180528855031" d="4.2270768530432768e-05" /> - <laneOffset s="7.0102834348448511" a="-3.3741521336154139" b="-0" c="0.00013831929202310435" d="-4.2303272575379976e-05" /> - <laneOffset s="9.1900878739602749" a="-3.3739330567249519" b="-0" c="-0.00018792761144732106" d="1.3924961760898665e-05" /> - <laneOffset s="10.273868192602382" a="-3.3741360664096884" b="-0.00035827655770647224" c="-0.000142738228633314" d="1.4267737199272885e-05" /> - <laneOffset s="18.023474509512646" a="-3.3788445158856217" b="-0" c="4.2335439933219337e-05" d="8.464868402625588e-07" /> - <laneOffset s="20.547736385204765" a="-3.378561143598358" b="0.00022991265748508559" c="4.3056998565450016e-05" d="3.1088516039110568e-07" /> - <laneOffset s="25.87454775017634" a="-3.376067713759825" b="0.0007150897001148073" c="0.00044428381819404996" d="-4.2905662843498734e-05" /> - <laneOffset s="30.821604577807147" a="-3.3668516398518249" b="0.0019607456452834858" c="-0.00019527226942952293" d="-4.3004550485092735e-05" /> - <laneOffset s="33.489998220718192" a="-3.3638270796917515" b="-0" c="-0.0026136646653879001" d="0.00047096827904367445" /> - <laneOffset s="37.189701975282603" a="-3.3757521929519041" b="-0" c="0.00086863898325642943" d="-7.6260890255795276e-05" /> - <laneOffset s="41.095472770409529" a="-3.3670448963363064" b="0.0032953194915249138" c="-3.6963531458390796e-05" d="-7.4231169418297277e-05" /> - <laneOffset s="44.779827308192715" a="-3.3591180662176972" b="-0" c="-0.00013552272374440263" d="9.9835753270585304e-06" /> - <laneOffset s="51.369340963011908" a="-3.3621461132946675" b="-0.00048554653227340157" c="6.5750660208486173e-05" d="5.9816024025372904e-06" /> - <laneOffset s="54.06791929487774" a="-3.3628600309695802" b="-0" c="1.1133854025377042e-05" d="-9.323716677388015e-07" /> - <laneOffset s="61.643209155614294" a="-3.3626264241202826" b="8.1718524788095774e-06" c="7.8232083365808728e-06" d="-1.7476833642877646e-06" /> - <laneOffset s="65.080826797078743" a="-3.362576880139025" b="-0" c="-0.0050765337991809985" d="0.0022139395330174816" /> - <laneOffset s="66.209948343602377" a="-3.3658619892065404" b="-0.0029962901288477168" c="0.00016625795598135729" d="-2.3319927340149557e-05" /> - <laneOffset s="71.917077348216679" a="-3.3818818739338452" b="-0.0033772614737205765" c="-0.0002339617102459364" d="-2.2731698469670214e-05" /> - <laneOffset s="76.383708629216443" a="-3.4036602641185287" b="-0.0068278492293392399" c="-0.00059819722807372426" d="2.6180750780167941e-05" /> - <laneOffset s="82.190945540819058" a="-3.4583574822344447" b="-0.011126836314984068" c="-0.00014676474604857287" d="2.5992713457470092e-05" /> - <laneOffset s="87.581740865805841" a="-3.5185330395911016" b="-0.010443096393843648" c="-0.00051636436892140976" d="5.9790536900506227e-05" /> - <laneOffset s="92.464813733421437" a="-3.5748781909990037" b="-0.011208977525915974" c="0.00035858210377108881" d="5.9751609878490176e-05" /> - <laneOffset s="95.936857567652126" a="-3.6069725621988069" b="-0.0065580191459694284" c="0.0021259143470665313" d="-0.00054050279635478257" /> - <laneOffset s="98.978590825667567" a="-3.6224621720085377" b="-0.0086275149931936967" c="-0.0033951643647997468" d="0.00038515447816380637" /> - <laneOffset s="102.73868192602382" a="-3.6824289264278147" b="-0.017823498178057083" c="0.00094472497133738322" d="0.00038658685974152435" /> - <laneOffset s="104.77602454072954" a="-3.7115509840465823" b="-0.009160147752401376" c="0.0023763826702916926" d="-0.00051655529932618138" /> - <laneOffset s="107.30951192653129" a="-3.7279050316177207" b="-0.0070656976787691417" c="-0.0018728442697292565" d="0.00033155832973644786" /> - <laneOffset s="112.21932196857149" a="-3.7685012283028043" b="-0.0014784481948665381" c="0.00014789629786898562" d="2.7190121022699432e-09" /> - <laneOffset s="117.216892862344" a="-3.7721957228268099" b="-0" c="0.00026379597043353522" d="-2.3141915580097887e-05" /> - <laneOffset s="123.28641831122859" a="-3.7676521482604213" b="0.00064464796524902625" c="-0.00014482018809570618" d="-2.8530445962211041e-05" /> - <laneOffset s="124.81847988917167" a="-3.7671070292683893" b="-0" c="-0.00067662368992048186" d="4.5266567761352801e-05" /> - <laneOffset s="132.32461186548076" a="-3.7860856607616702" b="-0.0025064242052798493" c="6.5415268429536312e-05" d="-3.2924286422889216e-05" /> - <laneOffset s="133.56028650383098" a="-3.7891450231644828" b="-0.0024955756990114558" c="1.1829416923221536e-05" d="-4.2091886374808456e-07" /> - <laneOffset s="143.83415469643336" a="-3.813992073508456" b="-0.0023857949064398027" c="2.1794203432856132e-06" d="3.1491582882726158e-07" /> - <laneOffset s="154.10802288903574" a="-3.8379318684118764" b="-0.0022412924177346097" c="1.804761689887848e-06" d="4.4959331565052443e-07" /> - <laneOffset s="164.38189108163812" a="-3.8602805614438869" b="-0.0020618417334678112" c="9.8485853215838289e-06" d="-1.1299635457210977e-07" /> - <laneOffset s="165.40447295062791" a="-3.862378785836341" b="-0.0020420542358415834" c="0.00021630114726532915" d="-3.715237623959706e-05" /> - <laneOffset s="171.00977974824235" a="-3.8735721782670702" b="-0.0031191089298913217" c="-0.00043636803544072758" d="1.8165086616195891e-05" /> - <laneOffset s="174.65575927424049" a="-3.889864698369486" b="-0.005576672202180632" c="-0.00023262259915216875" d="1.8107329074784384e-05" /> - <laneOffset s="183.92764236763884" a="-3.9471359539316966" b="-0.0052204286828616917" c="-6.4829907961511459e-06" d="4.9515838772160343e-07" /> - <laneOffset s="184.92962746684287" a="-3.9523727563254241" b="-0.0052319290245671154" c="2.4503612506356852e-06" d="6.1739466858129544e-06" /> - <laneOffset s="192.51525257189485" a="-3.9892243455917309" b="-0.0041289756643791064" c="-0.00020856637061828428" d="3.4669331536169499e-05" /> - <laneOffset s="195.20349565944525" a="-4.0011577513227321" b="-0.0044987004049879351" c="6.7755963288258124e-05" d="3.4056239310785022e-05" /> - <laneOffset s="201.20904222875845" a="-4.0183546123382223" b="-0" c="0.00041222583606847487" d="-7.1701461937152914e-05" /> - <laneOffset s="205.04184028643891" a="-4.0163360329780096" b="-0" c="-0.045123576320332627" d="0.069071771483909652" /> - <laneSection s="0"> - <left> - <lane id="3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="2.4929676309008069" b="-6.9820502985169525e-05" c="0.00028944493277308965" d="-4.2679140575222479e-05" /> - <width sOffset="3.5206897521717249" a="2.494447047331263" b="0.00038121445202436667" c="-0.00029287140248024786" d="3.2302557229372829e-05" /> - <width sOffset="8.7705549353110062" a="2.4930504392437078" b="-2.2975783621716726e-05" c="-0.00028631635637047523" d="3.8719828994086179e-05" /> - <width sOffset="10.273868192602382" a="2.4925003858655139" b="-0.00062130741256737239" c="-0.00011182527903111177" d="3.8484948306291538e-05" /> - <width sOffset="13.267461976197595" a="2.4906707611689485" b="-0.00025616576271813608" c="0.00019032420789576895" d="-1.535539182474146e-05" /> - <width sOffset="20.547736385204765" a="2.4929682275579825" b="7.3441507302413229e-05" c="-0.00015010223685227374" d="-1.4595656214568673e-05" /> - <width sOffset="20.770865103915686" a="2.4929769792736711" b="4.2772710588628686e-06" c="0.00050498029518804169" d="-6.2729691034771684e-05" /> - <width sOffset="23.744275278713612" a="2.4958052486082756" b="0.0013434931428285618" c="-0.00060728559936562825" d="4.3116585333297773e-05" /> - <width sOffset="30.821604577807147" a="2.4901800594847243" b="-0.0007734802918989564" c="0.00030829716922848389" d="4.322042857510622e-05" /> - <width sOffset="33.380644021184672" a="2.4909439358417051" b="0.0016535195818643785" c="-0.00011575620070298652" d="-9.7553081773020002e-05" /> - <width sOffset="35.384306409130211" a="2.4930075888670307" b="1.4718657317009352e-05" c="0.00045575934028682554" d="-7.1405046150115764e-05" /> - <width sOffset="40.739422909694447" a="2.4951906612166472" b="-0.0012470985649946889" c="-0.00061883402240323613" d="0.00013687437660292424" /> - <width sOffset="41.095472770409529" a="2.4946743595224228" b="-0.0016357147885038552" c="-0.00045424255183709164" d="0.00013473790539612448" /> - <width sOffset="43.063952071439694" a="2.4907220773124696" b="-0.0018577568327538551" c="0.0016200909934319069" d="-0.00025647934726092769" /> - <width sOffset="46.572522749711737" a="2.4930699028697458" b="3.8815905193883594e-05" c="0.00098045828246894908" d="-0.00057747143810923376" /> - <width sOffset="47.333614031181995" a="2.493412795868033" b="0.00052773419688547166" c="-0.00044020634287234505" d="5.0351746019982517e-05" /> - <width sOffset="50.220209435094382" a="2.4924792395724045" b="-0.00075500336098637249" c="0.002287386190319843" d="-0.001046065647082167" /> - <width sOffset="51.369340963011908" a="2.4930448089244952" b="0.00035801249668326179" c="-0.0013199694418574894" d="-0.0010603595802328595" /> - <width sOffset="51.473660324702443" a="2.4930665881713749" b="4.7997575054834624e-05" c="0.0017862983483127558" d="-0.00073003301103289708" /> - <width sOffset="53.21380463508855" a="2.4947124164868786" b="-0.00036701235627675799" c="1.8430984245571517e-05" d="-2.4840836014698718e-07" /> - <width sOffset="61.643209155614294" a="2.4927795476597705" b="-0.00010923977662504435" c="8.434041624309645e-06" d="-1.7789281184621629e-07" /> - <width sOffset="71.917077348216679" a="2.4923545531556845" b="7.7296649043222948e-06" c="5.1118011458740052e-06" d="-1.6966177938208931e-06" /> - <width sOffset="72.521423079424409" a="2.4923607170578972" b="1.2049269006069244e-05" c="0.00037682883778182406" d="-0.00011854762415141618" /> - <width sOffset="74.526556294174256" a="2.4929442379848137" b="9.3350080907167107e-05" c="0.00066493972067856373" d="-0.00012907591598109358" /> - <width sOffset="77.105953416302668" a="2.4953939281740585" b="0.00094729896993814636" c="-0.00019727652160377279" d="8.4901820718893595e-06" /> - <width sOffset="82.190945540819058" a="2.4962262461904663" b="-0.000400404543130734" c="-6.6375681615434261e-05" d="8.3039213208240331e-06" /> - <width sOffset="89.633967381320389" a="2.4929928874183505" b="-8.3996367259107918e-06" c="-0.00061231200514051242" d="0.00017407997088121635" /> - <width sOffset="90.617354632004094" a="2.4925580381628278" b="-0.00070764691460791385" c="0.0008482870225856047" d="-0.00013504463192823878" /> - <width sOffset="92.464813733421437" a="2.4932944485509196" b="0.0010439396677639767" c="0.0001002257410840457" d="-0.00013507945480036447" /> - <width sOffset="95.263993024539801" a="2.4940392745858229" b="-0.0015701672810778844" c="8.7954538268018813e-05" d="0.00043875592326669344" /> - <width sOffset="96.265678002724599" a="2.4929956903429988" b="-7.3254529746487156e-05" c="-0.0010176878642861259" d="0.00030552968119522107" /> - <width sOffset="98.764414538134801" a="2.4912251917994572" b="0.00056377037058473163" c="0.00013409586196714668" d="-1.5595345126572878e-05" /> - <width sOffset="102.73868192602382" a="2.4946048205757956" b="0.00089065986166323688" c="-5.2334712694234253e-05" d="-1.5369391010137803e-05" /> - <width sOffset="107.539838451072" a="2.4959736844776774" b="-0.0006747187237748888" c="-7.582229264844452e-05" d="1.430395249395906e-05" /> - <width sOffset="113.01255011862621" a="2.4923547953507867" b="-0.00021939109513866993" c="0.00015877120889912824" d="1.4146275893091081e-05" /> - <width sOffset="115.47002405442664" a="2.492984441686497" b="0.00081725676073886831" c="-0.00075987905282897934" d="0.00018170506865279417" /> - <width sOffset="117.47053992482259" a="2.4930330580711439" b="-4.1457644706186826e-05" c="-0.00052902561097564781" d="0.00017829866698726313" /> - <width sOffset="119.60991775829018" a="2.4922689119891914" b="0.00014315659744527226" c="0.00019287847823292457" d="-1.7672679975978626e-05" /> - <width sOffset="123.28641831122859" a="2.4945240733397491" b="0.00084476563695207174" c="-3.9416254458437519e-06" d="-1.7886737385431589e-05" /> - <width sOffset="129.15212528181036" a="2.4957337279417895" b="-0.0010477362723989871" c="0.00010081541316146365" d="-8.7568647979015015e-07" /> - <width sOffset="133.56028650383098" a="2.4929991607597399" b="-0.00020996380049486708" c="-7.1238058967263795e-06" d="6.8398390627999732e-05" /> - <width sOffset="134.65331342689387" a="2.4928504716974356" b="1.9611459792850602e-05" c="0.00017780910680329493" d="-1.5301416832243216e-05" /> - <width sOffset="141.95312557488307" a="2.4965165395584203" b="0.00016944600373803697" c="-0.00028176189952551582" d="2.088707810681622e-05" /> - <width sOffset="143.83415469643336" a="2.4959773384203103" b="-0.00066884627255973071" c="-0.00016295230101855731" d="2.4087632618289891e-05" /> - <width sOffset="151.03033089633396" a="2.4917020696571472" b="0.00072801747639275778" c="0.00025684000077759916" d="-5.1527505836428255e-05" /> - <width sOffset="154.10802288903574" a="2.4948733655512085" b="0.00084473163633041158" c="-0.00018036424956042416" d="-5.7553191350943353e-05" /> - <width sOffset="154.96518714121601" a="2.4954286740641343" b="0.00040866979743473669" c="-0.0015147885560233404" d="0.00037545284003041022" /> - <width sOffset="157.46565577267461" a="2.4928493121654811" b="-0.00012431250470557563" c="-0.00033672403026484255" d="0.00057459884278802096" /> - <width sOffset="158.45939697173452" a="2.4929571327928861" b="0.00090874066739242854" c="0.0018523492193525443" d="-0.00068104817400153623" /> - <width sOffset="160.58852987425388" a="2.4967157039749424" b="-0.00046546087159359071" c="-0.0011382128471935503" d="0.00029541170670747193" /> - <width sOffset="163.33913791609436" a="2.4929715784635227" b="-2.1898495463244447e-05" c="-0.00016180801221329488" d="9.1446792689634803e-05" /> - <width sOffset="164.38189108163812" a="2.4928764886652304" b="-6.1050463641822844e-05" c="0.00014404159699598869" d="0.00010438233156778042" /> - <width sOffset="164.97003325385484" a="2.4929116439773713" b="0.00021670446918320777" c="-0.00042587093581250611" d="5.1458482028309616e-05" /> - <width sOffset="169.95994733628802" a="2.4897825802039875" b="-0.00018958261479297411" c="7.384000361771222e-05" d="-4.9997351973691601e-06" /> - <width sOffset="174.65575927424049" a="2.4900028548533584" b="0.00017315269704086013" c="7.7190843829939311e-06" d="-9.8726709224106726e-06" /> - <width sOffset="175.99496133987182" a="2.490224872926317" b="0.00014070873901391931" c="0.00013078038863039663" d="-1.3846798087776626e-05" /> - <width sOffset="182.747076073437" a="2.4928748268970504" b="1.2926784791511201e-05" c="0.00018419992424543698" d="-1.4069030567130934e-05" /> - <width sOffset="184.92962746684287" a="2.4936342114509977" b="0.00061592361522956694" c="8.3649349427643489e-05" d="-1.7432472217064481e-05" /> - <width sOffset="190.06890024821837" a="2.4966426996441231" b="9.4431373418843445e-05" c="-0.00036913406109364796" d="4.287337394436274e-05" /> - <width sOffset="195.20349565944525" a="2.4931994089000864" b="-0.00030532683884551201" c="0.00028955505578274294" d="4.394503638468157e-05" /> - <width sOffset="196.53125288904505" a="2.493407341537377" b="0.00069600808839069377" c="-0.0011194063887270537" d="0.00032063880897978452" /> - <width sOffset="198.53219471870605" a="2.4928869055511131" b="6.7564359912699462e-05" c="-0.0013506583135215397" d="0.00050189057050575186" /> - <width sOffset="200.35818537057048" a="2.4915625135365653" b="0.00015525910021349878" c="0.0001621724337450758" d="-2.8213973144725443e-05" /> - <width sOffset="205.22304606783985" a="2.4929074965914255" b="-0.00027005757183976172" c="0.0022079682053279702" d="-0.0056318132590293972" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.9447705775349422" b="0.0013067875535871898" c="-0.00041840268806799566" d="4.6418023149247373e-05" /> - <width sOffset="3.5206897521717249" a="3.9462108381725107" b="8.6745327208134337e-05" c="0.0002034039838740706" d="-2.8563674655343077e-05" /> - <width sOffset="10.273868192602382" a="3.9472758844672584" b="-0.001073982932248068" c="-0.00037509022201864903" d="-2.8778413132217606e-05" /> - <width sOffset="13.267461976197595" a="3.9399273558642181" b="-0.0040934206504651032" c="-0.00059006743887352595" d="2.506192699882062e-05" /> - <width sOffset="17.438559146877974" a="3.9144059948913719" b="-0.0077077918021486343" c="-0.00059613395266495104" d="4.0884054672578277e-05" /> - <width sOffset="20.547736385204765" a="3.8859071132385203" b="-0.010229087638733111" c="-0.00020946583388454411" d="4.0165813844906993e-05" /> - <width sOffset="23.744275278713612" a="3.8523810313704074" b="-0.01033699291234655" c="0.0007284115143491183" d="-6.5680462523156881e-05" /> - <width sOffset="30.821604577807147" a="3.7924245407972754" b="-0.0098961018842830088" c="-0.00066341992248685508" d="-6.5728076431725266e-05" /> - <width sOffset="33.380644021184672" a="3.7616540057498251" b="-0.01458283436777873" c="-0.00041216042848416689" d="7.5045433916394146e-05" /> - <width sOffset="34.745266170783907" a="3.7411771292058069" b="-0.015288473484813016" c="-0.00087759530503184299" d="8.9871420647806606e-05" /> - <width sOffset="40.739422909694447" a="3.6373592648364728" b="-0.016122143590918819" c="0.00066596118019344812" d="-0.00011840800206635712" /> - <width sOffset="41.095472770409529" a="3.6316980581773013" b="-0.015692945101299285" c="0.00053921063816568082" d="-0.00011838769514479118" /> - <width sOffset="43.063952071439694" a="3.6019931900296798" b="-0.014946320401853326" c="-0.0014385677557619938" d="0.00027282955751229928" /> - <width sOffset="47.333614031181995" a="3.5331883049516684" b="-0.01230965710272303" c="0.0021582413886617135" d="-0.00035499362661597336" /> - <width sOffset="49.607992156435067" a="3.5121791699242659" b="-0.0080012717786141392" c="-0.00076919945078612168" d="-0.0003867702754019631" /> - <width sOffset="50.220209435094382" a="3.5069035991452946" b="-0.0093780022640936392" c="-0.0037711189644770225" d="0.00070964711769682331" /> - <width sOffset="51.369340963011908" a="3.4922241073578788" b="-0.015233751644206045" c="-0.0013235693907349081" d="0.00072358478332189941" /> - <width sOffset="53.21380463508855" a="3.4641636204344546" b="-0.012731296292496265" c="0.00063708714121723988" d="-6.1998193507861664e-06" /> - <width sOffset="54.653718313598496" a="3.4471340490425342" b="-0.010935158526834431" c="0.0001779914248813043" d="-6.1285448725951313e-06" /> - <width sOffset="61.643209155614294" a="3.3773056331415043" b="-0.0093452127397853444" c="3.9731050566534863e-05" d="-6.6890103808823955e-06" /> - <width sOffset="70.128771052653093" a="3.2967800857315144" b="-0.010115853937707796" c="0.0016626034604861431" d="-7.3969489418464316e-05" /> - <width sOffset="71.917077348216679" a="3.2835838748500836" b="-0.0048790374930542096" c="0.0012658222018930045" d="-7.3941114687677218e-05" /> - <width sOffset="72.521423079424409" a="3.2810812495397834" b="-0.003430066379326668" c="0.00075697114302819579" d="4.2909891670428037e-05" /> - <width sOffset="77.105953416302668" a="3.2854006445314123" b="0.0062162777656833233" c="0.0012105383470029185" d="-9.46562063825482e-05" /> - <width sOffset="82.190945540819058" a="3.3358657156830556" b="0.011184815953383324" c="-0.00022915462334779625" d="-9.4290306693057947e-05" /> - <width sOffset="83.768802859267694" a="3.3525728489484421" b="0.0097574243740760937" c="0.00063729313805420461" d="-4.6088794556820901e-05" /> - <width sOffset="90.617354632004094" a="3.434483393009383" b="0.012001433100758265" c="-0.0012566663047765077" d="0.00026303580825193582" /> - <width sOffset="92.464813733421437" a="3.4540250068722296" b="0.010051460497016442" c="0.00020258903072049069" d="0.00026333874469618835" /> - <width sOffset="95.263993024539801" a="3.4895239443516179" b="0.017375723452495613" c="0.0012919224780469909" d="-0.00031049663337112329" /> - <width sOffset="98.764414538134801" a="3.5528588095429865" b="0.015006770033114585" c="-0.00083015400309522334" d="1.0628392950683261e-05" /> - <width sOffset="102.73868192602382" a="3.6000547823784022" b="0.0089118821337013654" c="-0.00069987943678972617" d="1.0078403358250803e-05" /> - <width sOffset="104.46487630170705" a="3.6134047990291638" b="0.0065857195160147772" c="-7.1393335372868608e-06" d="2.9342473885417057e-05" /> - <width sOffset="107.539838451072" a="3.634441263709832" b="0.007374146953095702" c="6.5656680312976915e-05" d="-3.3086961870417246e-07" /> - <width sOffset="113.01255011862621" a="3.6767100658541647" b="0.0080630579098979315" c="6.2891661390169281e-05" d="3.0802338283413639e-08" /> - <width sOffset="115.47002405442664" a="3.6969050915988539" b="0.0083727252096122244" c="0.0010860613238375173" d="-0.00016752799042161055" /> - <width sOffset="119.60991775829018" a="3.7382944586373092" b="0.0087514361834134212" c="-0.00057214233600481564" d="2.8443356541646849e-05" /> - <width sOffset="123.28641831122859" a="3.7641491312863931" b="0.0056978501785706704" c="-0.00026746653810332167" d="2.9275692524788569e-05" /> - <width sOffset="129.15212528181036" a="3.7942768364009631" b="0.0055819134533709389" c="-0.0001718107560651253" d="1.2264641619158931e-05" /> - <width sOffset="133.56028650383098" a="3.8165947794231987" b="0.0047821497582959394" c="-3.9172857924657772e-05" d="1.1232103031775593e-05" /> - <width sOffset="136.94454361500956" a="3.8327655119331032" b="0.0049029381514040463" c="0.00016249749768596213" d="1.0633995493552588e-05" /> - <width sOffset="141.95312557488307" a="3.8627347801192662" b="0.0073309920495502065" c="0.00044675981256661173" d="-2.5554499445788637e-05" /> - <width sOffset="143.83415469643336" a="3.877935266474946" b="0.008740472286207791" c="0.00029455597836937862" d="-3.0224739195631531e-05" /> - <width sOffset="151.03033089633396" a="3.9448234532583522" b="0.008284265732059334" c="-0.0002577274242912237" d="4.5390399259057074e-05" /> - <width sOffset="154.10802288903574" a="3.9692018715291799" b="0.0079876936577725974" c="0.00016268993702932792" d="4.5373840460237336e-05" /> - <width sOffset="154.96518714121601" a="3.9761967460112912" b="0.0083666102951749487" c="0.0014657951308969189" d="-0.00038763219092105452" /> - <width sOffset="158.45939697173452" a="4.0067906842278216" b="0.004411813381015867" c="-0.0030736751261137489" d="0.00086801482586833158" /> - <width sOffset="160.58852987425388" a="4.0106283214124181" b="0.0031279601326757236" c="0.0011111174909234948" d="-0.00010844505484075455" /> - <width sOffset="164.38189108163812" a="4.0325628648200196" b="0.006876260720551532" c="-0.00012223567157997918" d="-0.00010839154296942428" /> - <width sOffset="164.97003325385484" a="4.0365427493327353" b="0.0066199952628561405" c="0.00044060290232836443" d="-5.5467693425536097e-05" /> - <width sOffset="169.95994733628802" a="4.073655047388943" b="0.006873825860149071" c="-0.00011912489833312479" d="9.9052380014197566e-07" /> - <width sOffset="174.65575927424049" a="4.1034090239965764" b="0.0058205747009257881" c="-0.00011715736182543173" d="6.4352558033215429e-06" /> - <width sOffset="175.17287893149211" a="4.1063885181151871" b="0.0057045685595016977" c="-0.00019253884995568422" d="1.3091054669163948e-06" /> - <width sOffset="175.99496133987182" a="4.1109487493806212" b="0.0053906571134991225" c="-0.00035203608035521729" d="5.2832326329527159e-06" /> - <width sOffset="184.92962746684287" a="4.1347782502789672" b="0.00036526121403524132" c="-0.00021337054424214514" d="4.8267240255472554e-06" /> - <width sOffset="190.06890024821837" a="4.1316750331091567" b="-0.0014454255358316431" c="4.5059730570564728e-05" d="-5.5479122135879971e-05" /> - <width sOffset="194.45179805371026" a="4.1215344285083884" b="-0.0042476685323779018" c="-0.0023769486967511089" d="0.0001122041524150325" /> - <width sOffset="195.20349565944525" a="4.1170460313552892" b="-0.0076309591908562766" c="-0.0021192225226862324" d="0.00011083200298402055" /> - <width sOffset="196.53125288904505" a="4.1034373401371376" b="-0.01267241497388249" c="-9.3742079183600389e-05" d="-0.00016586176961096868" /> - <width sOffset="200.35818537057048" a="4.0442719170435035" b="-0.02067724615086327" c="-0.00076145573714495182" d="0.00036424277403950239" /> - <width sOffset="205.22304606783985" a="3.9675961859636524" b="-0.0022245396155592956" c="0.0020969484111241889" d="0.0059678420598875412" /> - <roadMark sOffset="0" color="standard" width="0.2954527572594926" weight="bold" type="solid"> - <type name="solid"> - <line length="205.47736385204763" space="0" width="0.29545300000000002" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="2.9601690732009338" b="0.0022306482389748698" c="0.00068571087482735646" d="-4.3581503119630628e-05" /> - <width sOffset="7.0102834348448511" a="2.9944907424331531" b="0.0054193855910679885" c="0.00012300391458129443" d="4.0992537986183071e-05" /> - <width sOffset="9.1900878739602749" a="3.0073129800521583" b="0.0065399685101084756" c="0.00044067938282340842" d="-1.5235696350041481e-05" /> - <width sOffset="10.273868192602382" a="3.014899087465106" b="0.007441481171421507" c="0.00039123047570040599" d="-1.5569525373023646e-05" /> - <width sOffset="17.438559146877974" a="3.0825717382397646" b="0.010649890240660048" c="0.00037625167507675494" d="-3.1391653048036686e-05" /> - <width sOffset="18.023474509512646" a="3.0889234661929379" b="0.011057821310272135" c="0.00046780166511359864" d="-1.797040268778757e-05" /> - <width sOffset="20.547736385204765" a="3.1195280454038792" b="0.013076012407778302" c="0.00033713560687318752" d="-1.7476295725935405e-05" /> - <width sOffset="25.87454775017634" a="3.1961061881529722" b="0.015180062528633466" c="-0.00033840192501024755" d="2.5740252277954553e-05" /> - <width sOffset="30.821604577807147" a="3.2660373863445855" b="0.013721727672072758" c="4.6319426168409252e-05" d="2.5836388382167984e-05" /> - <width sOffset="33.489998220718192" a="3.3034730535465751" b="0.014520815014651708" c="0.0023272775782790574" d="-0.00048813644114660407" /> - <width sOffset="34.745266170783907" a="3.324402156837476" b="0.018056062629379019" c="0.0012617123493810565" d="-0.00050296242787801332" /> - <width sOffset="37.189701975282603" a="3.3687317629788627" b="0.015208408822211111" c="-0.0006816400695551318" d="4.4266741421455954e-05" /> - <width sOffset="41.095472770409529" a="3.4203714041887863" b="0.011909622533401006" c="-0.00015064990713830849" d="4.2216713662985631e-05" /> - <width sOffset="44.779827308192715" a="3.4643170746211527" b="0.012518735527092888" c="-0.00040594853086252099" d="-4.1998031082370232e-05" /> - <width sOffset="49.607992156435067" a="3.5105695690879046" b="0.0056616922156086311" c="-0.00050899716045671158" d="-1.0221382294058248e-05" /> - <width sOffset="51.369340963011908" a="3.5189068438669158" b="0.0037735182289868438" c="-0.00056688144232577896" d="-5.8631438754444795e-06" /> - <width sOffset="54.06791929487774" a="3.5248465414268915" b="0.00058587831709266459" c="-0.00051130562729917971" d="1.0508301946390457e-06" /> - <width sOffset="54.653718313598496" a="3.5250144997214807" b="-1.2084542169267135e-05" c="-7.7144799135004391e-05" d="9.7955571663970934e-07" /> - <width sOffset="61.643209155614294" a="3.5214957580419268" b="-0.00094692762223882098" c="-7.5086712929579391e-05" d="1.7563886479018432e-06" /> - <width sOffset="65.080826797078743" a="3.5174246170021162" b="-0.001400899573165657" c="0.0050093600708975752" d="-0.0022139308277338674" /> - <width sOffset="66.209948343602377" a="3.519042311883458" b="0.0014437292432539545" c="-0.00023340219629488466" d="2.3328632623762784e-05" /> - <width sOffset="70.128771052653093" a="3.5225195978062178" b="0.00068919101982850475" c="-0.0017522923151737624" d="9.0609111661366337e-05" /> - <width sOffset="71.917077348216679" a="3.518666382784827" b="-0.0047087652088462911" c="-0.0012652906678374503" d="8.9992508057493633e-05" /> - <width sOffset="76.383708629216443" a="3.480409998502513" b="-0.010625672722404771" c="2.3255826136104208e-07" d="4.1080058807655448e-05" /> - <width sOffset="82.190945540819058" a="3.4267572951234704" b="-0.0064668199034061055" c="0.00072055717500817086" d="4.1305805850432809e-05" /> - <width sOffset="83.768802859267694" a="3.4185097605011032" b="-0.0038844380986049146" c="-0.00039669653365044554" d="-6.895706285804504e-06" /> - <width sOffset="87.581740865805841" a="3.3975490085410631" b="-0.0072103562788002201" c="0.0003143885820559151" d="-4.0693529728841689e-05" /> - <width sOffset="92.464813733421437" a="3.3650986125010349" b="-0.0070509300467134096" c="-0.0002808250747370642" d="-4.0655706676760576e-05" /> - <width sOffset="95.936857567652126" a="3.3355304262729368" b="-0.010471328397439601" c="-0.0018492518791206119" d="0.00055959869955651202" /> - <width sOffset="98.978590825667567" a="3.3023184308466265" b="-0.0061887317111920682" c="0.0038460807643273072" d="-0.00036605857496207681" /> - <width sOffset="102.73868192602382" a="3.3139650943886676" b="0.0072081749255568043" c="-0.00027889373188115421" d="-0.00036730466544217759" /> - <width sOffset="104.46487630170705" a="3.3236874960764808" b="0.0029619003930240716" c="-0.0028215597284968275" d="-0.00038656873599370582" /> - <width sOffset="104.77602454072954" a="3.3243242771539672" b="0.0010937788114328342" c="-0.0022512283209188831" d="0.00051657342309838661" /> - <width sOffset="107.30951192653129" a="3.3210458859729037" b="-0.00036616834590352983" c="0.0019981363681468617" d="-0.00033154020596424275" /> - <width sOffset="112.21932196857149" a="3.3281754980189664" b="-0.0047217863360915387" c="-2.2337246614810916e-05" d="1.5404759875119495e-08" /> - <width sOffset="113.01255011862621" a="3.3244159970282685" b="-0.0047571943231822199" c="-2.2510206675531669e-05" d="-3.7656894982336616e-09" /> - <width sOffset="117.216892862344" a="3.3040169401152415" b="-0.0049466752639818886" c="-0.00013841661062085521" d="2.3140868902696537e-05" /> - <width sOffset="123.28641831122859" a="3.2740680277995384" b="-0.004069452475018419" c="0.00027104573572341592" d="2.8475480846413252e-05" /> - <width sOffset="124.81847988917167" a="3.268571977953235" b="-0.0030384209308689609" c="0.00080259660772206791" d="-4.5321532877150407e-05" /> - <width sOffset="132.32461186548076" a="3.271818143916061" b="0.0013498514308232185" c="5.93199231321295e-05" d="3.2869321307204625e-05" /> - <width sOffset="133.56028650383098" a="3.2736387121117536" b="0.001647015372644383" c="0.00011722815995624947" d="-3.0574054265446921e-07" /> - <width sOffset="136.94454361500956" a="3.2805434220395" b="0.0024299707213099359" c="2.6490664205060299e-05" d="2.9236699556449354e-07" /> - <width sOffset="143.83415469643336" a="3.2986380127550881" b="0.0028366245938703321" c="3.0004061569902764e-05" d="-2.8009550336263086e-07" /> - <width sOffset="154.10802288903574" a="3.3306443754035677" b="0.003364445910859631" c="3.0127582241576128e-05" d="-3.9821419107519839e-07" /> - <width sOffset="164.38189108163812" a="3.3679584510114577" b="0.0038574021765966629" c="2.2906715675609894e-05" d="1.1086360672391061e-07" /> - <width sOffset="165.40447295062791" a="3.3719270320333048" b="0.0039045979423216366" c="-0.00018355238899597792" d="3.715024349174888e-05" /> - <width sOffset="171.00977974824235" a="3.3945891261935239" b="0.0053485852816680269" c="0.00046908092959202719" d="-1.8167219364042445e-05" /> - <width sOffset="174.65575927424049" a="3.4194450260164722" b="0.0080446045856629178" c="0.0002653121654386674" d="-1.8109461822932756e-05" /> - <width sOffset="175.17287893149211" a="3.4236734927798489" b="0.0083044727553623302" c="0.00032258276932359991" d="-1.298331148713929e-05" /> - <width sOffset="183.92764236763884" a="3.512389811179832" b="0.010967392310683367" c="0.00025911281384981353" d="4.6288591999318783e-06" /> - <width sOffset="184.92962746684287" a="3.5236437738966502" b="0.011500588432454941" c="0.00026592013177578619" d="-1.0164658271746397e-06" /> - <width sOffset="192.51525257189485" a="3.6257407478764252" b="0.015359461747356459" c="0.00059430501248498217" d="-2.9511850677523106e-05" /> - <width sOffset="194.45179805371026" a="3.6574994834636922" b="0.017329232349643533" c="0.0021153823485641136" d="-0.00019719512523251072" /> - <width sOffset="195.20349565944525" a="3.6716373633454116" b="0.020175213146114271" c="0.0016739654767152132" d="-0.00019658203300597683" /> - <width sOffset="201.20904222875845" a="3.8105951848308872" b="0.019011237878552172" c="-0.0015986730643181883" d="-9.0824331758040103e-05" /> - <width sOffset="205.04184028643891" a="3.854862494047711" b="0.0027537346464775415" c="0.042068343452889755" d="-0.069234297277605605" /> - <roadMark sOffset="0" color="standard" width="0.18168409816709552" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.18168400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15106905665220544" weight="standard" type="solid"> - <type name="solid"> - <line length="205.47736385204763" space="0" width="0.15106900000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="0.19344604021610623" b="0.00062787570887394366" c="-0.013338675995380958" d="0.0072883169415536714" /> - <width sOffset="1.196316061336935" a="0.18758581346537229" b="5.8390434799122665e-06" c="-0.0010968431700611552" d="9.8470293876777674e-05" /> - <width sOffset="7.0102834348448511" a="0.16989590402678223" b="-0.0027626391528643747" c="0.00026681694960730231" d="1.3896252770957388e-05" /> - <width sOffset="9.1900878739602749" a="0.16528561398022079" b="-0.0014013354996226172" c="0.00030808197061568454" d="7.0124487107169631e-05" /> - <width sOffset="10.273868192602382" a="0.16421800852060509" b="-0.00048644873333732912" c="0.00053599517189004565" d="7.0467262543620458e-05" /> - <width sOffset="10.6898032028017" a="0.16411347631472051" b="-3.9975009236439232e-06" c="-0.00044389398031332477" d="2.7074948255269234e-05" /> - <width sOffset="18.023474509512646" a="0.15088936145682919" b="-0.0021462483061708954" c="5.1479627218398258e-06" d="1.3653697896238424e-05" /> - <width sOffset="20.547736385204765" a="0.14572408168410078" b="-0.0018592587824458186" c="0.00010631152611968684" d="1.2752015323587967e-05" /> - <width sOffset="25.26900735135402" a="0.14065775311506146" b="-2.665189825842222e-06" c="0.00020615564783364984" d="-5.1404208054053196e-06" /> - <width sOffset="25.87454775017634" a="0.14073059084356832" b="0.00024135130081885773" c="0.00059307619025614862" d="-4.8356968805854532e-05" /> - <width sOffset="30.821604577807147" a="0.15058450900285836" b="0.0025589403822690133" c="-0.00012522546211928364" d="-4.822347900993228e-05" /> - <width sOffset="33.489998220718192" a="0.15560488545444784" b="0.00086053825164313037" c="-0.0025853963251731226" d="0.00046574935051883537" /> - <width sOffset="37.189701975282603" a="0.14698614951055955" b="0.00085540014766910251" c="0.00083898185509690239" d="-8.1479818780660646e-05" /> - <width sOffset="41.095472770409529" a="0.15827106429036286" b="0.0036802067727403614" c="-0.00011291819407431798" d="-8.4790837676653784e-05" /> - <width sOffset="42.928471085576902" a="0.16411528730095437" b="0.002411587216483452" c="0.0076587835296754638" d="-0.00299243199522976" /> - <width sOffset="44.779827308192715" a="0.17584196952553688" b="0" c="0.0028338610370670526" d="-0.00037910413400495466" /> - <width sOffset="49.767471513399862" a="0.19930120781912253" b="-2.3878532598927272e-05" c="0.0038144447053317038" d="-0.00053049703096660135" /> - <width sOffset="51.369340963011908" a="0.20687022693745716" b="0.0081128629092767825" c="0.0012707023852725696" d="-0.00052566192698776061" /> - <width sOffset="54.06791929487774" a="0.22768682226398251" b="0.0034869197573749143" c="-0.0030879595469791412" d="-0.00053257590106211953" /> - <width sOffset="54.56651941654323" a="0.22859171331324735" b="1.0407313331813056e-05" c="0.011287151040555075" d="-0.0030166860898147101" /> - <width sOffset="57.059519593259708" a="0.25202696783870238" b="4.1582819258177096e-05" c="0.0058480727130777272" d="-0.00092041765680440479" /> - <width sOffset="61.297620194120441" a="0.28717872605869355" b="1.478765333028342e-05" c="0.02307883428264693" d="-0.0088210335991134089" /> - <width sOffset="61.643209155614294" a="0.28957609974217791" b="0.012805834480292974" c="0.013951357071416055" d="-0.008821848910831917" /> - <width sOffset="63.042719041859513" a="0.31064177030590523" b="1.9799982990467576e-05" c="0.0094335083556900401" d="-0.0019460319577348103" /> - <width sOffset="65.080826797078743" a="0.33339259044012648" b="0.014222044564845424" c="-0.0075314935252245013" d="0.00026965525864514127" /> - <width sOffset="65.828695858973489" a="0.33992918587490362" b="0.0034093637084910578" c="0.010849874727072347" d="-0.00065935259814219006" /> - <width sOffset="66.209948343602377" a="0.34276954213442812" b="0.011394929565070006" c="0.0078391065450672016" d="-0.002896612058508493" /> - <width sOffset="68.453766465096678" a="0.37508238301259622" b="0.0028230982848943299" c="0.0076108516908499528" d="-0.0010036944847126468" /> - <width sOffset="71.917077348216679" a="0.43445394892282918" b="0.019424081709427075" c="-0.0028184165709280785" d="-0.0010031062558628874" /> - <width sOffset="72.193464157295423" a="0.43958603229965609" b="0.017636254521769652" c="-0.00033581274619403414" d="-3.1743393941541352e-05" /> - <width sOffset="76.383708629216443" a="0.50525454548982562" b="0.013149913818603341" c="-0.00079448366060756834" d="1.7169055308248484e-05" /> - <width sOffset="78.877501255145077" a="0.53337308156735741" b="0.0095076819805615109" c="0.0022304130376682202" d="-0.00032571087256472446" /> - <width sOffset="82.190945540819058" a="0.5775150513196099" b="0.013560526616662464" c="-0.0010119424356622138" d="-0.00032589890988623437" /> - <width sOffset="82.867569503637384" a="0.58612618675547035" b="0.011743508510614738" c="0.0006406393853195222" d="-4.7489841024798e-06" /> - <width sOffset="87.581740865805841" a="0.655226763854869" b="0.017467060312487306" c="-0.00021648700668998528" d="2.904883934055526e-05" /> - <width sOffset="92.464813733421437" a="0.73873996020923771" b="0.017430773144625752" c="0.0002091053713797208" d="2.8992556406970726e-05" /> - <width sOffset="95.936857567652126" a="0.80299465887237576" b="0.019931342665569365" c="-0.0056630946356907089" d="0.0037950072429170688" /> - <width sOffset="97.184515169322481" a="0.82641722908573856" b="0.023522624802327315" c="0.0013828454987254491" d="-0.00062504503653530187" /> - <width sOffset="98.978590825667567" a="0.8694601847348995" b="0.022448972326736965" c="-0.0025701714704745608" d="0.00030061223798337759" /> - <width sOffset="102.73868192602382" a="0.93351346813586256" b="0.015871239141818795" c="0.00082087132709096568" d="0.00030125000268494377" /> - <width sOffset="104.77602454072954" a="0.97180339367197677" b="0.022967285252212054" c="0.0017309477795858265" d="-0.00060189215638283174" /> - <width sOffset="106.52347686762182" a="1.0140115359879931" b="0.023502987752620868" c="0.00035415782932539619" d="-0.00058203815004413142" /> - <width sOffset="107.30951192653129" a="1.0324218567977903" b="0.02298090993520148" c="-0.0013415172806306619" d="0.00026607547901759832" /> - <width sOffset="110.80810315317406" a="1.1077965229189486" b="0.023364472555521397" c="0.00094933413369428798" d="0.00036120599698375344" /> - <width sOffset="112.21932196857149" a="1.1436747099707421" b="0.028201975935619822" c="-0.0003843684517610949" d="2.9650386258210755e-05" /> - <width sOffset="113.01255011862621" a="1.1658182610902874" b="0.02764816122225789" c="-0.00030881933562148752" d="3.1227988853901057e-05" /> - <width sOffset="117.216892862344" a="1.2789225661778794" b="0.026707400995393187" c="0.0002009190765922907" d="8.0833542617080835e-06" /> - <width sOffset="122.21540366038968" a="1.4184493004312255" b="0.029321883834151758" c="-0.0022373687598164862" d="0.00042647742993621616" /> - <width sOffset="123.28641831122859" a="1.4478109845773157" b="0.025996975836646966" c="-0.00087391131289655481" d="0.00042446518798593835" /> - <width sOffset="124.81847988917167" a="1.4871151050650426" b="0.026308134159218032" c="0.00067633680250835202" d="0.00049826220172147391" /> - <width sOffset="125.31834208054499" a="1.5004967689560296" b="0.027357775236832301" c="-0.00044453916498932015" d="3.7782507386691701e-05" /> - <width sOffset="131.31668947085365" a="1.6567578932566764" b="0.026103037833190828" c="-0.014305249815066291" d="0.0071367776545707929" /> - <width sOffset="132.32461186548076" a="1.6758426644288882" b="0.019016793517239877" c="0.0069974127186445663" d="0.0070585868003782129" /> - <width sOffset="132.82447996162446" a="1.6879786083579247" b="0.031303507568697382" c="-0.0077140019763672863" d="0.0029108669159882356" /> - <width sOffset="133.56028650383098" a="1.7079950999921256" b="0.024679409767089811" c="-0.0012200319498834069" d="0.0029433702835456972" /> - <width sOffset="134.57402161297838" a="1.7348260337647394" b="0.031280173075471075" c="-0.0031493418610350093" d="0.0007648833235876873" /> - <width sOffset="137.32329857513298" a="1.8129141565994433" b="0.031307513476747727" c="-0.003869412092707923" d="0.00073692005577414481" /> - <width sOffset="140.82237976117074" a="1.9066568442502416" b="0.031296334342410338" c="-0.0019364971348273781" d="0.00018607084453008767" /> - <width sOffset="143.83415469643336" a="1.9884321056519854" b="0.02469517497330162" c="-0.00026174642449944497" d="0.00018117383098847426" /> - <width sOffset="147.82053963373079" a="2.0941942238983002" b="0.031245574971605385" c="-0.0034576252742502191" d="0.0005125121170138975" /> - <width sOffset="152.31935697015331" a="2.2114480984722014" b="0.031253873683268082" c="-0.0022659880941259566" d="0.00032569011493475671" /> - <width sOffset="154.10802288903574" a="2.2619649728741344" b="0.026273648662774304" c="-0.00044083627007488466" d="0.00033392314286513549" /> - <width sOffset="156.81817615712558" a="2.3365797124880245" b="0.031242108013718798" c="-0.009976678582580922" d="0.0017740037145781715" /> - <width sOffset="160.5671911930387" a="2.4069607739783843" b="0.031238143932671963" c="-0.023347871817878264" d="0.015570826783053255" /> - <width sOffset="161.56692886809856" a="2.4304136755490737" b="0.031242625621492354" c="0.0020916967182401601" d="-0.0018850568002179123" /> - <width sOffset="164.31620654295079" a="2.4929460694162442" b="-8.2650914067080791e-07" c="2.9035452615328445e-05" d="-2.9251861803468495e-05" /> - <width sOffset="164.38189108163812" a="2.4929461321098523" b="2.6092336074074948e-06" c="1.7457903642539566e-05" d="-2.9814449686374685e-05" /> - <width sOffset="165.40447295062791" a="2.4929351753333395" b="-5.5215050777930423e-05" c="0.00013279396260896739" d="-6.6853829571452227e-05" /> - <width sOffset="166.40418375606546" a="2.4929458975725294" b="9.8505649452570749e-06" c="0.00035362346877737798" d="-4.2088097855260679e-05" /> - <width sOffset="171.00977974824235" a="2.4963804982160167" b="0.00058888733940080408" c="-0.00025581663708016766" d="1.3229365000507691e-05" /> - <width sOffset="174.65575927424049" a="2.4957681387183888" b="-0.00074893663998865274" c="-0.00011195547542052842" d="1.3461643047387718e-05" /> - <width sOffset="183.92764236763884" a="2.4899295721291823" b="0.00064679136209117027" c="-1.503864027030298e-05" d="-4.1505276390016944e-06" /> - <width sOffset="184.92962746684287" a="2.4905583737360075" b="0.00060415330792636633" c="-2.4162002203319965e-05" d="1.1123142072066709e-06" /> - <width sOffset="192.51525257189485" a="2.4942364451901686" b="0.00042959890565109037" c="-0.0003503656732789866" d="2.960769905753774e-05" /> - <width sOffset="195.20349565944525" a="2.493434529672836" b="-0.00081224377803922618" c="-0.00011320941744435371" d="2.9031308444417255e-05" /> - <width sOffset="201.20904222875845" a="2.4907616535558876" b="0.00096916822618278839" c="0.00014072808635943237" d="-7.6726392803566688e-05" /> - <width sOffset="203.95741929304961" a="2.4928954478701026" b="4.0398859265537495e-06" c="-0.0029497314658637587" d="0.0027256382720869544" /> - <width sOffset="205.04184028643891" a="2.4929068939069161" b="0.0032223358805303585" c="-0.038793863862217719" d="0.071869111217940387" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423366" type="pole" s="158.41229177982538" t="-6.6345435719564962" height="1.0361137984643847" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5176797" s="155.19451886937222" t="-4.4503538675600227" orientation="none" validLength="23.023336566571174" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="23.023336566571174" s="155.19451886937222" distance="0" tStart="-4.4503538675600227" tEnd="-4.8296111103787904" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273612253" s="178.21785543594339" t="-4.8296111103787904" orientation="none" validLength="27.259508416104239" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="27.259508416104239" s="178.21785543594339" distance="0" tStart="-4.8296111103787904" tEnd="-5.0194384178488578" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5183019" s="0" t="7.2816384447361591" orientation="none" validLength="43.037258279640113" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="43.037258279640113" s="0" distance="0" tStart="7.2816384447361591" tEnd="7.2663277205076087" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273618475" s="43.037258279640113" t="7.2663277205076087" orientation="none" validLength="25.049065705776002" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="25.049065705776002" s="43.037258279640113" distance="0" tStart="7.2663277205076087" tEnd="7.062372274105936" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542053931" s="68.086323985416115" t="7.062372274105936" orientation="none" validLength="29.497101799033658" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="29.497101799033658" s="68.086323985416115" distance="0" tStart="7.062372274105936" tEnd="6.3884086006220446" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810489387" s="97.583425784449773" t="6.3884086006220446" orientation="none" validLength="10.527149891921184" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.527149891921184" s="97.583425784449773" distance="0" tStart="6.3884086006220446" tEnd="6.2487942024302523" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078924843" s="108.11057567637096" t="6.2487942024302523" orientation="none" validLength="44.157926448864316" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="44.157926448864316" s="108.11057567637096" distance="0" tStart="6.2487942024302523" tEnd="6.347851874813891" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742238" s="152.26850212523527" t="6.347851874813891" orientation="none" validLength="9.8884749312269946" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.8884749312269946" s="152.26850212523527" distance="0" tStart="6.347851874813891" tEnd="6.5707881812368436" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742239" s="162.15697705646227" t="6.5707881812368436" orientation="none" validLength="7.7140816040143818" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.7140816040143818" s="162.15697705646227" distance="0" tStart="6.5707881812368436" tEnd="7.0015307277561174" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742240" s="169.87105866047665" t="7.0015307277561174" orientation="none" validLength="20.790540726971159" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="20.790540726971159" s="169.87105866047665" distance="0" tStart="7.0015307277561174" tEnd="8.4592169035111144" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742241" s="190.66159938744781" t="8.4592169035111144" orientation="none" validLength="8.0498158700512761" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.0498158700512761" s="190.66159938744781" distance="0" tStart="8.4592169035111144" tEnd="9.1412514418618773" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412763" s="172.61984444366357" t="7.3173056621877697" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848219" s="124.36821996757395" t="6.4400170261695555" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283675" s="68.138023306582639" t="7.0142086084773698" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719131" s="24.012072393542461" t="7.3352564982034636" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412820" s="186.04379590042993" t="-5.0255947314865477" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848276" s="158.22539348295518" t="-4.5491117343459209" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8987910" type="Barrier" subtype="-1" country="DEU" zOffset="1.0361137984643847" s="158.41229177982538" t="-6.6345435719564962" orientation="-" hOffset="3.1415926535897931" /> - </signals> - </road> - <road name="" length="140.6890909279779" id="33782184" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556302" /> - <successor elementType="road" elementId="4942035" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-474.71945748606237" y="-204.06136603889658" hdg="-0.17859585847700643" length="39.000744180427908"> - <paramPoly3 aU="0" bU="39.436521073540469" cU="-1.6630755993893915" dU="-2.1997298607378601" aV="-0" bV="-0" cV="-13.420403118796724" dV="-0.17616969032477517" /> - </geometry> - <geometry s="39.000744180427908" x="-442.12697680612058" y="-223.76127055199925" hdg="-0.92635627843755453" length="75.868985217461145"> - <paramPoly3 aU="0" bU="76.471805711253225" cU="-4.0644309931908928" dU="-17.685936264813606" aV="-0" bV="-0" cV="-57.201361666866028" dV="13.015284799217929" /> - </geometry> - <geometry s="114.86972939788905" x="-444.57697719662195" y="-294.05239882173851" hdg="3.986154317060405" length="25.819361530088862"> - <paramPoly3 aU="0" bU="27.179012216345207" cU="-3.9093388162295297" dU="2.0121026636329278" aV="0" bV="1.7763568394002505e-15" cV="-7.4455095178462631" dV="2.6623699644028558" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.88685475900633" b="0.0019200906992717468" c="-9.1116780549908399e-05" d="-4.4214704074053195e-06" /> - <elevation s="3.0005175188593469" a="165.8916762493171" b="0.0012538748146260418" c="-0.00052875288241882687" d="2.3647187004353598e-06" /> - <elevation s="10.049220780569851" a="165.87507191400582" b="-0.0058477019233288442" c="-0.00048324028863006653" d="2.8117192748760272e-06" /> - <elevation s="20.098441561139701" a="165.77035959990573" b="-0.014708238705106182" c="-0.00027268489675971318" d="-1.0599533839941209e-05" /> - <elevation s="30.147662341709552" a="165.58425885560709" b="-0.023400020396978319" c="-0.00079318918459187837" d="2.1137567042788654e-05" /> - <elevation s="40.196883122279402" a="165.29045644456326" b="-0.032938038675622984" c="-0.00049949856992967021" d="1.7779358798311466e-05" /> - <elevation s="50.246103902849256" a="164.92705522782964" b="-0.037590737797278409" c="-0.00019375970307478009" d="9.864018287706516e-06" /> - <elevation s="60.295324683419103" a="164.53974081538766" b="-0.0384965978071036" c="-0.00012626842668911106" d="2.3647187004352712e-06" /> - <elevation s="70.34454546398895" a="164.14252836437683" b="-0.040317980006878078" c="0.00068490037070269663" d="-3.7552403919047205e-05" /> - <elevation s="80.393766244558805" a="163.76842035952996" b="-0.037929445557775457" c="-2.2233214411248588e-05" d="-8.3638250123473665e-09" /> - <elevation s="90.442987025128659" a="163.3850052370706" b="-0.038378832427068403" c="3.3869145711982198e-05" d="-8.7004749454127761e-07" /> - <elevation s="100.49220780569851" a="163.00186525649289" b="-0.037961705418175312" c="0.00012886556418100073" d="2.3647187004354373e-06" /> - <elevation s="110.54142858626835" a="162.63579323227222" b="-0.034655292012186457" c="-3.5314856065837434e-05" d="2.0180864143367729e-05" /> - <elevation s="120.59064936683821" a="162.30444854463971" b="-0.029251060591267725" c="0.00028980896155487128" d="2.3647187004443116e-06" /> - <elevation s="130.63987014740806" a="162.04216487827128" b="-0.022709935718506154" c="0.00044103618206251747" d="-2.8677973704788365e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024423546208072671" b="0.00010794810444587617" c="1.0546095308768719e-05" d="0" /> - <superelevation s="10.049220780569851" a="0.026573357364100842" b="0.00031990818470737379" c="4.9798694762639936e-05" d="-3.9060341404545561e-06" /> - <superelevation s="20.098441561139701" a="0.030853202163344109" b="0.00013741022684564402" c="-6.8368597847569996e-06" d="0" /> - <superelevation s="30.147662341709552" a="0.03154363501688414" b="0" c="-4.6012967748438778e-05" d="3.0525065079277785e-06" /> - <superelevation s="40.196883122279402" a="0.02999473363903082" b="0" c="0.00014598902181144321" d="-9.6849314654467247e-06" /> - <superelevation s="50.246103902849256" a="0.034909056885282959" b="0" c="-2.9791041799312157e-05" d="1.9763417449515435e-06" /> - <superelevation s="60.295324683419103" a="0.033906222511657799" b="0" c="0.00010462188306024059" d="-6.9406298819723307e-06" /> - <superelevation s="70.34454546398895" a="0.037428033573955855" b="0" c="-2.6421389074579859e-06" d="0" /> - <superelevation s="80.393766244558805" a="0.037161212319351135" b="-5.3102874427959227e-05" c="-5.1696930365284339e-05" d="2.5799712015893828e-06" /> - <superelevation s="90.442987025128659" a="0.034025115744813518" b="-0.00031050120463027244" c="-7.5089126947351101e-06" d="7.6278379402702713e-07" /> - <superelevation s="100.49220780569851" a="0.030920622003426122" b="-0.00023032527662499567" c="2.8382405172922723e-05" d="-2.0459847393715101e-06" /> - <superelevation s="110.54142858626835" a="0.029395936632512706" b="-0.00027973575498931334" c="-6.6052660408023824e-05" d="5.3052830687914522e-06" /> - <superelevation s="120.59064936683821" a="0.025298369279212113" b="0" c="3.7025879099989905e-05" d="-2.4563018306573181e-06" /> - <superelevation s="130.63987014740806" a="0.026544744767699285" b="0" c="-1.2311223969200024e-05" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.1645967091831233" b="0.11383769384635031" c="-0.0024829146808381451" d="8.6729515709759391e-05" /> - <laneOffset s="3.6286093645365884" a="2.5491208683989242" b="0.099244491024642847" c="0.0034671222853522631" d="-0.00098523895090996084" /> - <laneOffset s="9.0232347888212932" a="3.0307309589841798" b="0.050634920098736887" c="-0.0050023852195850678" d="0.00017714824213012437" /> - <laneOffset s="10.049220780569851" a="3.077607250966174" b="0.040929589610050512" c="-0.0043642289523334599" d="0.00022249117736411212" /> - <laneOffset s="16.455417969780566" a="3.2191994198966301" b="0.012406055309030458" c="-0.0056272221908759351" d="0.001556408602944973" /> - <laneOffset s="18.964277291256735" a="3.2394829604612418" b="0.013560096257704267" c="0.016758381709156472" d="-0.010857500663116968" /> - <laneOffset s="20.304005286563942" a="3.2616205658569655" b="-0" c="-7.8206068589863393e-05" d="-3.6086879496494516e-06" /> - <laneOffset s="22.867078683438105" a="3.2610460411370492" b="-0.00047201593874338034" c="-0.013120697052917237" d="0.0014738749317285515" /> - <laneOffset s="27.342334310632538" a="3.1282569254100001" b="-0.029353046174790624" c="-0.0051916220610614431" d="0.00097053452210696595" /> - <laneOffset s="30.147662341709552" a="3.0264816637719765" b="-0.035567523909788394" c="0.0029677367259428517" d="0.00097372041736777345" /> - <laneOffset s="32.765993790360341" a="2.9711785504033092" b="-0" c="0.00091106929317266206" d="-1.8976828047412853e-05" /> - <laneOffset s="40.196883122279402" a="3.0136995139561527" b="0.010396516090263585" c="0.00049634274289207044" d="-2.0515759361431543e-05" /> - <laneOffset s="50.246103902849256" a="3.1474802904004968" b="0.014156766683078545" c="-0.00011459568172554328" d="-1.8553317852086756e-05" /> - <laneOffset s="54.830401849619207" a="3.2081833328455152" b="0.011936347420824193" c="0.0019235375655075543" d="-0.00028134543349387785" /> - <laneOffset s="60.295324683419103" a="3.2849427812894625" b="0.0077528499669137618" c="-0.0026630071842246687" d="-0.00030036372501247171" /> - <laneOffset s="61.476897855518729" a="3.2898899924428111" b="0.0002017472240009399" c="9.3538244238125361e-06" d="-1.1429916665556159e-06" /> - <laneOffset s="70.34454546398895" a="3.291617536951799" b="9.8002015454015401e-05" c="-6.8257024512890612e-06" d="7.7588424651602391e-08" /> - <laneOffset s="78.719320005935344" a="3.2920051223879869" b="-0" c="-0.008911104622977636" d="0.0011253060058592729" /> - <laneOffset s="80.393766244558805" a="3.2723034771529016" b="-0.020377032880131679" c="-0.0032944232474819953" d="0.001128918052868678" /> - <laneOffset s="82.553024289732306" a="3.2243094746517671" b="-0.018813665992332286" c="-0.0015325628617385632" d="4.0156885056735508e-05" /> - <laneOffset s="90.442987025128659" a="3.0001895361107644" b="-0.035497913297998514" c="-0.00060548658157802654" d="3.9437955087269914e-05" /> - <laneOffset s="100.49220780569851" a="2.6223401688677463" b="-0.035719106794454239" c="0.00057156157347981252" d="3.9096802217077225e-05" /> - <laneOffset s="110.54142858626835" a="2.3607881357965756" b="-0.012386822581042451" c="0.001719332302483929" d="4.4596353998820381e-05" /> - <laneOffset s="113.74447744937046" a="2.3402175796781508" b="-0" c="0.0023587107500130534" d="-0.00017944016206809842" /> - <laneOffset s="120.59064936683821" a="2.3931916584013257" b="0.0070651597666766958" c="-0.0013315882755298592" d="-0.00018255561947339304" /> - <laneOffset s="122.49655704218557" a="2.4005563621543695" b="-0" c="-0.0019498565105603579" d="7.1308555851577971e-05" /> - <laneOffset s="130.63987014740806" a="2.3097619331527848" b="-0.017570414057147293" c="-0.00020669952887762214" d="7.1708195744778946e-05" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="0.12880597674872574" b="-0.024376396487808732" c="0.051064140154928578" d="-0.00023473412547062063" /> - <width sOffset="0.29082252687296339" a="0.12602988742280941" b="0.005265248210097162" c="0.0054339278408457054" d="1.3395579089776853e-05" /> - <width sOffset="3.6286093645365884" a="0.20464070464681772" b="0.041987547103509229" c="0.00056214823601980369" d="0.0010853640457095461" /> - <width sOffset="6.0009864328096896" a="0.32190680790968962" b="0.062980651973857715" c="0.0062874600107414875" d="0.0005130076326281596" /> - <width sOffset="9.0232347888212932" a="0.58384120970742259" b="0.11504259559271193" c="0.003463291657952383" d="-0.00064937956042135099" /> - <width sOffset="9.4956598337886362" a="0.63889469978634983" b="0.11788009087134288" c="0.010281183992580645" d="-0.00027855702026828577" /> - <width sOffset="10.049220780569851" a="0.70725172390792368" b="0.12900654031058706" c="0.0097256877063727973" d="-0.00032389995550468085" /> - <width sOffset="16.109613834462547" a="1.7741943150787742" b="0.21120057438598441" c="0.024556416292267992" d="-0.02135908763287216" /> - <width sOffset="16.455417969780566" a="1.8492815867743886" b="0.22052160385465511" c="0.0079371941057805838" d="-0.022693005058451874" /> - <width sOffset="16.925985827298948" a="1.9524449249386278" b="0.21291656466986933" c="-0.13911601432010817" d="0.29432777092565421" /> - <width sOffset="17.396554280465548" a="2.0525006385139219" b="0.27751246703061166" c="0.43325129397649209" d="-1.2581424729516033" /> - <width sOffset="17.631852317991054" a="2.1253955890762848" b="0.27242702313798561" c="-0.30870548914137491" d="0.63627829477830999" /> - <width sOffset="17.867122275703476" a="2.1806880621435809" b="0.2328265071925095" c="0.026189178233428638" d="-0.0093792391514530577" /> - <width sOffset="18.808258327805042" a="2.4151876827020096" b="0.25719904743915034" c="-0.23987449297836708" d="0.049908079898382141" /> - <width sOffset="18.964277291256735" a="2.44966614743453" b="0.18599368294221177" c="-0.22718584550298343" d="0.062321989164530016" /> - <width sOffset="19.434337654589704" a="2.4933691098975204" b="0.013722952415921513" c="-0.029027325126748993" d="0.01737019276177219" /> - <width sOffset="20.304005286563942" a="2.4947747385540184" b="0.0026470680569636081" c="-0.010510146923137139" d="0.0065163007866029929" /> - <width sOffset="21.24369602560623" a="2.4933885027156091" b="0.00015653865344567849" c="0.00047994500099707565" d="-0.00099053868769113798" /> - <width sOffset="22.867078683438105" a="2.4906697196572245" b="-0.0061165041136952685" c="0.0086706180065518491" d="-0.0024680223073691781" /> - <width sOffset="24.747374703079803" a="2.493417018592166" b="0.00031297718198182445" c="0.0032144949038779361" d="-0.0012729703451505457" /> - <width sOffset="27.342334310632538" a="2.4936311399898883" b="-0.0087198957569661305" c="0.0051634012761842237" d="-0.00076962993552899149" /> - <width sOffset="30.147662341709552" a="2.4928126984628625" b="0.0020795210011800361" c="-0.001305147705924131" d="-0.00077281583078464328" /> - <width sOffset="30.641502586720364" a="2.4934282770514855" b="0.00022503330297669183" c="0.0037149894116529159" d="-0.0015899270879673436" /> - <width sOffset="32.765993790360341" a="2.495428312894592" b="-0.005518272697042359" c="0.0032868668789382662" d="-0.00059722984255216477" /> - <width sOffset="35.382547054864645" a="2.4927938217016541" b="-0.00058428353714221276" c="5.3302339017384666e-05" d="-2.6307918655993511e-07" /> - <width sOffset="40.196883122279402" a="2.4911869611215942" b="-8.9345606108563735e-05" c="5.2064142436705437e-05" d="-2.6393363697777342e-06" /> - <width sOffset="50.246103902849256" a="2.4928683989615084" b="0.00015744781253159389" c="-2.2690835766348802e-05" d="1.9832874480630035e-08" /> - <width sOffset="53.460555609871697" a="2.4931407084859969" b="1.2185402419271144e-05" c="0.0015213427807039361" d="-0.00014336387303474102" /> - <width sOffset="54.830401849619207" a="2.4956436529506498" b="0.003373139006311773" c="-0.0013611116645111086" d="0.00011942824260701812" /> - <width sOffset="60.295324683419103" a="2.4929196011121428" b="-0.00080329131272238643" c="0.00061719233570064341" d="0.00011123840305483207" /> - <width sOffset="61.476897855518729" a="2.4930156254537392" b="0.0011211293620356317" c="-0.0027255648927580946" d="-0.0001879823302807594" /> - <width sOffset="61.714515845503286" a="2.4931256122141519" b="-0.00020599889007090163" c="4.2138760606789292e-05" d="-1.9000413567671943e-06" /> - <width sOffset="70.34454546398895" a="2.4932649846086301" b="9.6788129808906214e-05" c="4.7686649672116509e-06" d="-8.3960201232865362e-07" /> - <width sOffset="78.719320005935344" a="2.4939168568299386" b="0" c="0.0015497339726151761" d="-0.00037985406274725574" /> - <width sOffset="80.393766244558805" a="2.4964786301697059" b="0.001994821931303431" c="-0.00038080451458949015" d="-0.00038173785178359759" /> - <width sOffset="82.553024289732306" a="2.4951674292538546" b="-0.0049891267966584371" c="0.0026973996808304897" d="0.00070702331602820316" /> - <width sOffset="83.276203237371817" a="2.493237510832699" b="2.1572213669648899e-05" c="-1.7845351230451464e-05" d="1.5465076033636474e-06" /> - <width sOffset="90.442987025128659" a="2.4930448059414498" b="4.0835010467962785e-06" c="-7.3682376571506877e-06" d="4.9108426309824781e-07" /> - <width sOffset="100.49220780569851" a="2.4928401183993736" b="4.7725482881233461e-06" c="-3.437821933980202e-06" d="2.2158831418046321e-07" /> - <width sOffset="110.54142858626835" a="2.4927657804937717" b="2.810194808395769e-06" c="-6.7957005766366117e-05" d="3.2495269863600135e-05" /> - <width sOffset="112.20395841668341" a="2.4927319426053733" b="4.6300404004277068e-05" c="0.00070350261452730703" d="-0.00019275904469489322" /> - <width sOffset="113.74447744937046" a="2.4937681019001179" b="0.00084145208568832635" c="-0.00039818986130413583" d="3.1277471372011267e-05" /> - <width sOffset="120.59064936683821" a="2.4909019733160309" b="-0.00021276859616193525" c="0.0002407083375408276" d="3.0530799362429623e-05" /> - <width sOffset="122.49655704218557" a="2.4915821954134838" b="0.0010374750666221255" c="-1.0259241904976612e-05" d="-0.00022333337596276459" /> - <width sOffset="123.72780934611552" a="2.4924271717595174" b="-3.4966557983682686e-06" c="1.2986757507008062e-05" d="-8.1415529593742821e-07" /> - <width sOffset="130.63987014740806" a="2.492754603284753" b="5.9341181273393079e-05" c="-1.8172586892408317e-06" d="-1.7933763976353241e-07" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15449818811100205" weight="standard" type="solid"> - <type name="solid"> - <line length="140.6890909279779" space="0" width="0.154498" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.9983401574098973" b="0.11699938854846287" c="0.0074232301280465172" d="-0.0026675289785973296" /> - <width sOffset="1.8367542070216691" a="4.2217531783671314" b="0.11727063128975759" c="-0.003811788203491079" d="0.00036358472849339432" /> - <width sOffset="3.6286093645365884" a="4.4217382562715564" b="0.10711242003039362" c="0.0031485996768743163" d="-0.00070838373812638091" /> - <width sOffset="7.6159064859927863" a="4.8539794321265974" b="0.098434426837835667" c="-0.0033155740909786621" d="-0.0019806866196430549" /> - <width sOffset="9.0232347888212932" a="4.9804214503825106" b="0.077333541285699983" c="-0.0042025253317639188" d="-0.00081829942660286152" /> - <width sOffset="10.049220780569851" a="5.0544570392025472" b="0.066125935108792083" c="-0.0065595809879270134" d="-0.00079605608057882883" /> - <width sOffset="11.239914724822054" a="5.1225491009007866" b="0.047119197924923736" c="-0.0052961734046894932" d="8.0719661901707527e-05" /> - <width sOffset="14.477081859119231" a="5.2223201491993194" b="0.015367645765043462" c="-0.0028983423319774168" d="0.00031596782799235763" /> - <width sOffset="16.455417969780566" a="5.2438254336870695" b="0.0076097728773602104" c="-0.0065620309439091739" d="0.0016498852535732291" /> - <width sOffset="18.964277291256735" a="5.247667894806991" b="0.0058383378233678243" c="0.016527132254929074" d="-0.010764024012488507" /> - <width sOffset="20.098441561139701" a="5.2598451317480244" b="0.0017890880707318989" c="-0.020080735852277626" d="-0.010763036651988259" /> - <width sOffset="20.304005286563942" a="5.259270870883924" b="-0.0078310766771211935" c="8.3499429142486596e-05" d="9.0855323193399326e-05" /> - <width sOffset="22.867078683438105" a="5.241277579109668" b="-0.0056124663919043744" c="-0.012232636973416406" d="0.0015683389428715799" /> - <width sOffset="25.021021651886095" a="5.1881083438147488" b="-0.036480485290188935" c="-0.0003130348090519962" d="0.0013939887922782084" /> - <width sOffset="27.342334310632538" a="5.1191754814217116" b="-0.015399294331840339" c="-0.0024642095741949531" d="0.00089064838265665871" /> - <width sOffset="30.147662341709552" a="5.076245749475909" b="-0.0081972781486848306" c="0.0050228287339830011" d="0.0008938342777516249" /> - <width sOffset="30.312260995032396" a="5.0750365565941582" b="-0.0064711272611944932" c="0.0098612424108340223" d="0.00019627466389110222" /> - <width sOffset="32.765993790360341" a="5.1214304064882867" b="0.045467774766924082" c="0.0016008233441462839" d="-0.00079642258152406401" /> - <width sOffset="35.426687277161875" a="5.2387376384276862" b="0.037072056410514656" c="-0.00082393019309905222" d="-6.411703163320068e-06" /> - <width sOffset="38.373265118039157" a="5.3406556805024223" b="0.032049502117153655" c="0.00026063847899863215" d="-0.00022866681808923027" /> - <width sOffset="40.196883122279402" a="5.3985817333517279" b="0.030718760971232377" c="-0.00096610390839722555" d="-0.00023769728070698379" /> - <width sOffset="43.971354725783051" a="5.487983273626746" b="0.013266537606945926" c="-0.00060607618738471613" d="-2.2391800271607987e-05" /> - <width sOffset="50.246103902849256" a="5.5418328002421351" b="0.0030157235515429325" c="-0.0010200212170542124" d="-2.0429358789185875e-05" /> - <width sOffset="50.579546983712646" a="5.5427242046707299" b="0.0023286712460743562" c="-0.0091232470746488992" d="0.00070897740248714015" /> - <width sOffset="54.830401849619207" a="5.4422260404279328" b="-0.036801357587025289" c="0.0022113281069303195" d="0.00044618528684533241" /> - <width sOffset="57.919039613868769" a="5.3628020298495729" b="-0.010371975679718936" c="0.00061676477667229332" d="-0.00022484455529102234" /> - <width sOffset="60.295324683419103" a="5.3386209448793611" b="-0.011249667799954339" c="-0.00095019434525720013" d="-0.00024756957796604915" /> - <width sOffset="61.476897855518729" a="5.3235936646795956" b="-0.014532023016848876" c="0.0019093071067730334" d="5.165115537988183e-05" /> - <width sOffset="64.873449977394955" a="5.2982856663413047" b="0.00022573013090796106" c="0.0052866875927598716" d="-0.0005466328847684341" /> - <width sOffset="70.34454546398895" a="5.3682467693526599" b="0.0089867762051536199" c="-0.0036711271182124899" d="-0.00054541230465653882" /> - <width sOffset="70.6112194699827" a="5.3703718931784117" b="0.0069124268250870171" c="-0.0044687439880640532" d="0.0017917307303412335" /> - <width sOffset="72.562122210112875" a="5.3801531491091943" b="0.0099343540960255793" c="0.0067211506964191875" d="-0.0016410074977991332" /> - <width sOffset="74.53926636721846" a="5.4133853383061297" b="0.017267139358511843" c="0.00063644296755552743" d="-8.2952704308219372e-05" /> - <width sOffset="78.719320005935344" a="5.4906247250489546" b="0.018239610757390775" c="-0.0093100255701163408" d="0.0010422757131268597" /> - <width sOffset="79.422035509095522" a="5.4992062844291247" b="0.006699067779468949" c="-0.0072625014835379703" d="0.001158543184695496" /> - <width sOffset="80.393766244558805" a="5.4999213213936926" b="-0.0041334239109036067" c="-0.0039212372716864348" d="0.0011621552317048253" /> - <width sOffset="82.553024289732306" a="5.4844136166129314" b="-0.0048120688725504842" c="-0.0019440739485405293" d="7.3394063892883086e-05" /> - <width sOffset="90.442987025128659" a="5.3614734131142923" b="-0.02178273655025895" c="-0.00025057975668367797" d="7.3908907001006159e-05" /> - <width sOffset="96.107694358330662" a="5.2434744928773291" b="-0.017506689909722623" c="0.0030985416453199939" d="-0.00047992616311958087" /> - <width sOffset="100.49220780569851" a="5.1858305365762476" b="-0.018013736341166962" c="-0.0032261005008661281" d="-0.00048026731598820092" /> - <width sOffset="101.22779748535314" a="5.1706430434173507" b="-0.023539515471481781" c="-4.685966967814053e-05" d="5.8731613181022055e-05" /> - <width sOffset="110.54142858626835" a="4.9947891121491619" b="-0.0091285862436916165" c="0.0015507035472419372" d="6.4546389773002477e-05" /> - <width sOffset="113.74447744937046" a="4.9835803888941852" b="0.0027920175457627596" c="0.0023817848129870541" d="-0.00015949012629391638" /> - <width sOffset="120.59064936683821" a="5.0631521612582695" b="0.012978294031486891" c="-0.00090234319449007021" d="-0.00016392066840151807" /> - <width sOffset="122.49655704218557" a="5.0834749920165097" b="0.0077524107424986888" c="-0.0014140619406878259" d="8.9943506923449441e-05" /> - <width sOffset="125.35602467322329" a="5.096183536862271" b="0.0018717661767734782" c="0.011888513183698402" d="-0.001564387898481596" /> - <width sOffset="130.63987014740806" a="5.20721113799409" b="-0.0035226457950022494" c="-0.012908345278600897" d="-0.0015639882586947808" /> - <width sOffset="130.72290665869349" a="5.2068287304842755" b="-0.0056987251007980938" c="-0.00078896231843530974" d="7.1900826904649991e-05" /> - <roadMark sOffset="0" color="standard" width="0.28648685363082366" weight="bold" type="solid"> - <type name="solid"> - <line length="140.6890909279779" space="0" width="0.28648699999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="41.654061611140939" max="60" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="2.4934418833868275" b="0.0041020546980062196" c="-0.0078508866987739012" d="0.0024358346155123351" /> - <width sOffset="1.8367542070216691" a="2.4895839611596209" b="-8.5166251395592946e-05" c="0.0021074348443449859" d="-0.00059527909157836988" /> - <width sOffset="4.1660947003149964" a="2.4932966634790068" b="4.305604680073568e-05" c="0.00093112724300878488" d="-0.00018294198535684115" /> - <width sOffset="7.6159064859927863" a="2.4970156998852628" b="-6.4204692329032642e-05" c="-0.0029716545604282401" d="0.001089360896159538" /> - <width sOffset="9.4313407734958936" a="2.4936231418614696" b="-8.2939527210765251e-05" c="-0.002664000860693805" d="0.0010754169435675085" /> - <width sOffset="10.049220780569851" a="2.4928085261797439" b="-0.0021433010891060561" c="-0.00073929914209686651" d="0.0010985165327773451" /> - <width sOffset="11.239914724822054" a="2.4910627830930845" b="0.00076841314905340408" c="-0.00092229323890873245" d="0.00022174079029680738" /> - <width sOffset="14.477081859119231" a="2.4914074546323106" b="0.0017682106589051428" c="-0.00038277920577527006" d="-1.3507375793817632e-05" /> - <width sOffset="16.562182695100525" a="2.4933077157317274" b="-4.2316696196101344e-06" c="-4.8931349364581098e-05" d="9.3186409090397149e-06" /> - <width sOffset="20.098441561139701" a="2.4930929417505006" b="-7.0714804551071098e-07" c="7.3815132925000092e-05" d="1.5364610952131426e-05" /> - <width sOffset="25.021021651886095" a="2.4967108700341729" b="0.001842950956427291" c="-0.0014845485330901771" d="0.00018971476154550256" /> - <width sOffset="30.312260995032396" a="2.4930034789982569" b="0.0020672019585437455" c="-0.0028701118238917194" d="0.00088727437557800637" /> - <width sOffset="30.834512376207783" a="2.4934266504556324" b="-0.00020463481464901012" c="-0.00027868832198759547" d="7.2710685998934334e-05" /> - <width sOffset="35.426687277161875" a="2.4936512432936824" b="0.0018357783288011631" c="-0.0032093433491754853" d="-0.00071730019232907371" /> - <width sOffset="35.688473045813282" a="2.4938990130648691" b="7.9839021833796875e-06" c="0.00045970719563259406" d="-6.3924213876331243e-05" /> - <width sOffset="38.373265118039157" a="2.4959969887082791" b="0.0010941023682933607" c="-0.0011964088917701789" d="0.00015833090104957711" /> - <width sOffset="40.196883122279402" a="2.4949736692335591" b="-0.0016898557418609239" c="-0.00031254323820075988" d="0.00015632220941310795" /> - <width sOffset="43.971354725783051" a="2.4925486628688271" b="0.0026319698982761072" c="-0.001594014646709259" d="-5.898327102364055e-05" /> - <width sOffset="44.495244413717487" a="2.4934815498256051" b="0.00091322850924137073" c="-2.9725563847133999e-05" d="-1.8784857820922434e-05" /> - <width sOffset="50.579546983712646" a="2.4937065318752731" b="-0.0015346653165570524" c="0.00039207528150335749" d="-2.511728177685853e-05" /> - <width sOffset="57.919039613868769" a="2.4936327462546402" b="0.00016153729868313357" c="-0.00037684524961543672" d="5.1799780043896849e-05" /> - <width sOffset="60.295324683419103" a="2.4925837232540844" b="-0.00075194795208350859" c="9.4316831666853979e-07" d="4.8815416952249277e-05" /> - <width sOffset="64.873449977394955" a="2.4938450132585341" b="0.0023260887645255093" c="-0.0021796805082052355" d="0.00064709945710001153" /> - <width sOffset="66.168750005119904" a="2.4946072369766341" b="-6.3477076780530869e-05" c="-0.00042974343421341285" d="8.5564144330270279e-05" /> - <width sOffset="70.6112194699827" a="2.49334581998255" b="0.0011842412365073969" c="0.0010718798784479476" d="-0.0022515788906872021" /> - <width sOffset="71.129447681446521" a="2.4939340268933909" b="0.00048114270390626785" c="0.0041213151778615601" d="-0.0019189907178990991" /> - <width sOffset="72.562122210112875" a="2.4974395085210608" b="0.00047363977146904802" c="-0.0048299696992702111" d="0.0015137475102414823" /> - <width sOffset="74.53926636721846" a="2.4911946637198419" b="-0.000873286251100832" c="0.00049990400709465637" d="-4.4307283249429697e-05" /> - <width sOffset="79.422035509095522" a="2.4936911279652265" b="0.00083949789494018254" c="6.2312082851521348e-07" d="-0.00016057475481870892" /> - <width sOffset="80.729607972849593" a="2.4944309141092686" b="1.7501433365933045e-05" c="-1.069026116057943e-05" d="7.115886480640971e-07" /> - <width sOffset="90.442987025128659" a="2.4942444276560662" b="1.1238911751261516e-05" c="-1.9091262699011142e-05" d="2.7091936716281976e-06" /> - <width sOffset="95.37465909914981" a="2.4941604828004533" b="2.0609280644495048e-05" c="0.0017319278266206299" d="-0.00039558263248656064" /> - <width sOffset="96.107694358330662" a="2.4949504095116088" b="0.0019220496716777433" c="-0.0012311046455482371" d="0.0001582524376340946" /> - <width sOffset="100.49220780569851" a="2.4930496924140177" b="0.00025317464883765559" c="0.00072825265543531494" d="0.00021834418801284551" /> - <width sOffset="101.22779748535314" a="2.4937168826387714" b="0.0016789979198369321" c="-0.0030289920251447078" d="-0.00032065474115781906" /> - <width sOffset="101.4931577310746" a="2.4939431406215311" b="3.7120531803207235e-06" c="-3.9431256962085002e-06" d="2.8038554681053914e-07" /> - <width sOffset="110.54142858626835" a="2.4938616074362407" b="1.2216226902097595e-06" c="-8.3412613833730692e-06" d="5.5040478653074074e-07" /> - <width sOffset="120.59064936683821" a="2.4935900984397104" b="3.2618575551094514e-07" c="8.2187014883428858e-06" d="-7.6664319304877863e-06" /> - <width sOffset="121.66261572515756" a="2.4935904487254104" b="-8.4822351069128651e-06" c="-0.00064343603337720285" d="0.00016354932839013182" /> - <width sOffset="125.35602467322329" a="2.4930219069680186" b="0.0019316344312201878" c="-0.0010548645884190869" d="0.00012977186896423725" /> - <width sOffset="130.72290665869349" a="2.4930657791456277" b="0.0018225887301032678" c="-0.0003681818233698921" d="1.8512146381418632e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276670258" type="pole" s="41.536946471999883" t="-7.2424541344463922" height="1.8390765480198752" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670302" type="pole" s="41.654061611140939" t="5.2282725984369955" height="2.2364495344556019" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277423230" type="pole" s="119.30651817163132" t="6.1951763249216985" height="1.6715610502532456" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5177022" s="86.748517256510809" t="-11.338699373799461" orientation="none" validLength="1.8024273177783243" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.8024273177783243" s="86.748517256510809" distance="0" tStart="-11.338699373799461" tEnd="-11.092068425271288" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273612478" s="88.550944574289133" t="-11.092068425271288" orientation="none" validLength="2.4032355624217985" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.4032355624217985" s="88.550944574289133" distance="0" tStart="-11.092068425271288" tEnd="-10.60563164091409" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542047934" s="90.954180136710931" t="-10.60563164091409" orientation="none" validLength="1.7173722369971642" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.7173722369971642" s="90.954180136710931" distance="0" tStart="-10.60563164091409" tEnd="-10.135359336876135" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810483390" s="92.671552373708096" t="-10.135359336876135" orientation="none" validLength="2.565977030747149" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.565977030747149" s="92.671552373708096" distance="0" tStart="-10.135359336876135" tEnd="-9.2920609024434082" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078918846" s="95.237529404455245" t="-9.2920609024434082" orientation="none" validLength="6.4176110846594554" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.4176110846594554" s="95.237529404455245" distance="0" tStart="-9.2920609024434082" tEnd="-8.2419853863022343" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742242" s="101.6551404891147" t="-8.2419853863022343" orientation="none" validLength="6.7743149055655465" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.7743149055655465" s="101.6551404891147" distance="0" tStart="-8.2419853863022343" tEnd="-6.9421207141765837" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742243" s="108.42945539468025" t="-6.9421207141765837" orientation="none" validLength="3.0992134772387203" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="3.0992134772387203" s="108.42945539468025" distance="0" tStart="-6.9421207141765837" tEnd="-6.4698856105805209" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742244" s="111.52866887191897" t="-6.4698856105805209" orientation="none" validLength="2.2815380553743978" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="2.2815380553743978" s="111.52866887191897" distance="0" tStart="-6.4698856105805209" tEnd="-6.2567365904468266" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742245" s="113.81020692729336" t="-6.2567365904468266" orientation="none" validLength="4.6100986103413391" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.6100986103413391" s="113.81020692729336" distance="0" tStart="-6.2567365904468266" tEnd="-6.162948942051198" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742246" s="118.4203055376347" t="-6.162948942051198" orientation="none" validLength="22.268785390343197" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="22.268785390343197" s="118.4203055376347" distance="0" tStart="-6.162948942051198" tEnd="-6.3238264341808863" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5177073" s="34.619086889803597" t="3.584363406910462" orientation="none" validLength="11.15578551306168" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="11.15578551306168" s="34.619086889803597" distance="0" tStart="3.584363406910462" tEnd="3.5910152955965859" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273612529" s="45.774872402865277" t="3.5910152955965859" orientation="none" validLength="7.8396958390172529" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="7.8396958390172529" s="45.774872402865277" distance="0" tStart="3.5910152955965859" tEnd="3.8957237700518474" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542047985" s="53.61456824188253" t="3.8957237700518474" orientation="none" validLength="4.7007492132610693" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="4.7007492132610693" s="53.61456824188253" distance="0" tStart="3.8957237700518474" tEnd="3.9793341750223203" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810483441" s="58.3153174551436" t="3.9793341750223203" orientation="none" validLength="22.515295838441531" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="22.515295838441531" s="58.3153174551436" distance="0" tStart="3.9793341750223203" tEnd="3.9809048658984185" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078918897" s="80.830613293585131" t="3.9809048658984185" orientation="none" validLength="10.519453702828699" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="10.519453702828699" s="80.830613293585131" distance="0" tStart="3.9809048658984185" tEnd="3.7621616352083942" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742247" s="91.35006699641383" t="3.7621616352083942" orientation="none" validLength="4.2203712498311177" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="4.2203712498311177" s="91.35006699641383" distance="0" tStart="3.7621616352083942" tEnd="3.5455611223529218" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742248" s="95.570438246244947" t="3.5455611223529218" orientation="none" validLength="12.285821626778528" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="12.285821626778528" s="95.570438246244947" distance="0" tStart="3.5455611223529218" tEnd="3.209917004109534" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742249" s="107.85625987302348" t="3.209917004109534" orientation="none" validLength="15.57655510332205" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="15.57655510332205" s="107.85625987302348" distance="0" tStart="3.209917004109534" tEnd="3.1890652239778019" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742250" s="123.43281497634553" t="3.1890652239778019" orientation="none" validLength="10.680872240913658" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="10.680872240913658" s="123.43281497634553" distance="0" tStart="3.1890652239778019" tEnd="2.8634072302941429" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742251" s="134.11368721725918" t="2.8634072302941429" orientation="none" validLength="6.5754037107187173" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="6.5754037107187173" s="134.11368721725918" distance="0" tStart="2.8634072302941429" tEnd="2.8305986075583585" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5177120" s="25.021877532171608" t="3.904523761875446" orientation="none" validLength="1.8574857844382286" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="1.8574857844382286" s="25.021877532171608" distance="0" tStart="3.904523761875446" tEnd="3.7472480493354641" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="273612576" s="26.879363316609837" t="3.7472480493354641" orientation="none" validLength="2.4714010453511506" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="2.4714010453511506" s="26.879363316609837" distance="0" tStart="3.7472480493354641" tEnd="3.6711987286052361" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="542048032" s="29.350764361960987" t="3.6711987286052361" orientation="none" validLength="2.8897490521257403" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="2.8897490521257403" s="29.350764361960987" distance="0" tStart="3.6711987286052361" tEnd="3.8766172680407318" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="810483488" s="32.240513414086728" t="3.8766172680407318" orientation="none" validLength="0.92479906032608028" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="0.92479906032608028" s="32.240513414086728" distance="0" tStart="3.8766172680407318" tEnd="3.8282056226424723" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="1078918944" s="33.165312474412808" t="3.8282056226424723" orientation="none" validLength="1.4537744153907894" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="double_guardrail" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="1.4537744153907894" s="33.165312474412808" distance="0" tStart="3.8282056226424723" tEnd="3.584363406910462" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="33782180" s="0" t="-5.2244058090441481" orientation="none" validLength="5.5178764410790171" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.5178764410790171" s="0" distance="0" tStart="-5.2244058090441481" tEnd="-5.5487155926247631" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="302217636" s="5.5178764410790171" t="-5.5487155926247631" orientation="none" validLength="15.528478029556975" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.528478029556975" s="5.5178764410790171" distance="0" tStart="-5.5487155926247631" tEnd="-5.6167436851760275" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="570653092" s="21.046354470635993" t="-5.6167436851760275" orientation="none" validLength="10.685369846118146" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.685369846118146" s="21.046354470635993" distance="0" tStart="-5.6167436851760275" tEnd="-5.8387606558281213" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="839088548" s="31.731724316754139" t="-5.8387606558281213" orientation="none" validLength="10.624837917136432" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="10.624837917136432" s="31.731724316754139" distance="0" tStart="-5.8387606558281213" tEnd="-5.8688212166143501" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1107524004" s="42.356562233890571" t="-5.8688212166143501" orientation="none" validLength="12.296172226913811" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.296172226913811" s="42.356562233890571" distance="0" tStart="-5.8688212166143501" tEnd="-5.5160399143181875" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742252" s="54.652734460804382" t="-5.5160399143181875" orientation="none" validLength="9.2050759803629916" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.2050759803629916" s="54.652734460804382" distance="0" tStart="-5.5160399143181875" tEnd="-5.4448004222411761" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742253" s="63.857810441167373" t="-5.4448004222411761" orientation="none" validLength="19.433682022072873" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.433682022072873" s="63.857810441167373" distance="0" tStart="-5.4448004222411761" tEnd="-5.5402671700737738" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742254" s="83.291492463240246" t="-5.5402671700737738" orientation="none" validLength="4.6604583277498079" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.6604583277498079" s="83.291492463240246" distance="0" tStart="-5.5402671700737738" tEnd="-5.6602399352734221" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412807" s="33.035766872922501" t="3.8851003416047871" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848263" s="56.397450612217582" t="4.0421958046528204" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283719" s="79.694500605523046" t="4.1135637073986411" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719175" s="103.09604221495582" t="3.4095850246563781" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154631" s="125.82507922448988" t="3.280516843427784" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="33782183" s="29.967372651230225" t="-6.0717536669422749" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="302217639" s="52.206262101340897" t="-5.6233125552166499" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="570653095" s="78.858998258553811" t="-5.6138315744455722" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="839088551" s="101.91300539358753" t="-8.6152156144595953" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1107524007" s="128.5889085435943" t="-6.548307413664487" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8234802" type="274" subtype="56" value="60" unit="km/h" country="DEU" zOffset="1.8390765480198752" s="41.536946471999883" t="-7.2424541344463922" orientation="+" /> - <signal dynamic="no" id="8234846" type="274" subtype="56" value="60" unit="km/h" country="DEU" zOffset="2.2364495344556019" s="41.654061611140939" t="5.2282725984369955" orientation="+" /> - <signal dynamic="no" id="8987762" type="531" subtype="20" country="DEU" zOffset="1.6715610502532456" s="119.30597507793487" t="6.1824367152628525" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8987774" type="1004" subtype="32" country="DEU" zOffset="1.3452672565325656" s="119.30651817163132" t="6.1951763249216985" orientation="-" hOffset="3.1415926535897931" /> - </signals> - </road> - <road name="" length="302.16145909041006" id="33782205" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556302" /> - <successor elementType="junction" elementId="33554492" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-474.14167530850881" y="-197.98828626833719" hdg="-0.093198049580967002" length="99.006919862107225"> - <paramPoly3 aU="0" bU="111.30898237062527" cU="-40.816384391199314" dU="28.436463256830621" aV="-0" bV="1.4210854715202004e-14" cV="1.0309568433488718" dV="2.1176986420291266" /> - </geometry> - <geometry s="99.006919862107225" x="-375.34892205346142" y="-204.05994936339846" hdg="-0.020145123873785087" length="104.00240456626004"> - <paramPoly3 aU="0" bU="84.20276486755408" cU="13.875711378642691" dU="5.9104617074174239" aV="-0" bV="5.773159728050814e-15" cV="2.1949061335841122" dV="-3.0953889894377462" /> - </geometry> - <geometry s="203.00932442836728" x="-271.39922320618075" y="-207.05497785307369" hdg="-0.057882784482820027" length="99.152134662042783"> - <paramPoly3 aU="0" bU="87.233725023962677" cU="24.296125639166586" dU="-12.38660798599847" aV="-0" bV="-3.5527136788005009e-15" cV="-2.6623498370565133" dV="1.3987685953245717" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="166.03157531440914" b="0.0036264276962890626" c="7.4053804557310874e-05" d="-1.8298274169157522e-07" /> - <elevation s="10.072048636347002" a="166.07542637852134" b="0.0050624860471827661" c="0.00025322405462749293" d="-1.85207896787293e-05" /> - <elevation s="10.999948197369498" a="166.08032708578818" b="0.0054845799593695758" c="0.00014961623719880567" d="-1.8321354922918935e-05" /> - <elevation s="20.144097272694005" a="166.12898076736772" b="0.0036249606272665473" c="-0.00014882921329825022" d="4.4979559358109907e-06" /> - <elevation s="30.216145909041007" a="166.15498927393293" b="0.0019958316005515577" c="-0.00012347203525758007" d="6.5112369031924943e-06" /> - <elevation s="40.288194545388009" a="166.16921861363491" b="0.0014902189268210305" c="1.3038134253622989e-06" d="6.6704917899359656e-07" /> - <elevation s="50.360243181735015" a="166.18504200931815" b="0.0017194918119772947" c="5.726707797019314e-05" d="-4.1892917327770807e-06" /> - <elevation s="60.432291818082014" a="166.20388984432071" b="0.0015981226759867581" c="5.4960298552683121e-06" d="-3.205608144521803e-06" /> - <elevation s="70.504340454429013" a="166.21726836832269" b="0.00073324528992649968" c="-0.0002396187435862174" d="1.7957826516099256e-05" /> - <elevation s="80.576389090776019" a="166.21869402913151" b="0.0013715998378847998" c="3.0083585664975687e-05" d="1.645201115986714e-08" /> - <elevation s="90.648437727123024" a="166.23557752394817" b="0.0019826134940850735" c="0.00016532582172940126" d="-1.1582184684288154e-05" /> - <elevation s="100.72048636347003" a="166.26048383697258" b="0.0017880483170878783" c="-1.4227483808677939e-05" d="1.6452011159858967e-08" /> - <elevation s="110.79253499981702" a="166.27706663311736" b="0.0015064554795537661" c="-9.6762780417741206e-05" d="4.1646955207055937e-06" /> - <elevation s="120.86458363616403" a="166.28667887694741" b="0.0008247337695164792" c="-1.251828042089859e-05" d="-1.8921079662454585e-09" /> - <elevation s="130.93663227251102" a="166.29371377076032" b="0.00057198846974740487" c="-9.0084022324632906e-05" d="7.7302087014331754e-06" /> - <elevation s="141.00868090885803" a="166.29823468868662" b="0.0011099272141706176" c="0.00021536199069830891" d="-1.3202536625472096e-05" /> - <elevation s="151.08072954520503" a="166.31777161231602" b="0.0014301600270450569" c="-2.9994721201169234e-05" d="1.6452011159855778e-08" /> - <elevation s="161.15277818155204" a="166.32915021445095" b="0.00083095042575494595" c="-0.00020619456921975313" d="1.3238995797560114e-05" /> - <elevation s="171.22482681789904" a="166.33012915746198" b="0.00070648297230794751" c="4.6907942298636428e-05" d="-9.3759210116754054e-07" /> - <elevation s="181.29687545424605" a="166.34104551498169" b="0.0013660557594043356" c="7.6720266284140595e-05" d="-4.8021868546045142e-06" /> - <elevation s="191.36892409059305" a="166.35768073792508" b="0.001450025964433914" c="-4.3395792985226034e-05" d="2.3542133202305398e-06" /> - <elevation s="201.44097272694006" a="166.37028859942293" b="0.001292334619152949" c="1.0708474327723173e-05" d="-6.3039352823469934e-07" /> - <elevation s="211.51302136328704" a="166.38374727256792" b="0.0013161941524083057" c="1.8569024113141623e-05" d="-2.0083151060360746e-06" /> - <elevation s="221.58506999963404" a="166.39683576282451" b="0.001079042791179618" c="-6.8641140790076275e-05" d="4.674906036119802e-06" /> - <elevation s="231.65711863598105" a="166.40551723588055" b="0.0011190828237245889" c="5.5589678491510811e-05" d="-2.9514994922558936e-06" /> - <elevation s="241.72916727232806" a="166.41941229644755" b="0.0013406318123681293" c="5.736183158717413e-05" d="-6.0460425930714261e-06" /> - <elevation s="251.80121590867506" a="166.43255667388149" b="0.00065609064710090608" c="-5.0386874617598772e-05" d="1.9426194281264315e-06" /> - <elevation s="261.87326454502204" a="166.43603820725986" b="0.00023230640926646866" c="-1.0953612698736197e-05" d="3.0245801424994223e-09" /> - <elevation s="271.94531318136904" a="166.43726989715253" b="1.2576265732788709e-05" c="-7.0497571190198966e-05" d="4.619185822143635e-06" /> - <elevation s="282.01736181771605" a="166.43496460647117" b="-1.7376221330816445e-06" c="8.9167853054887019e-06" d="-3.1483419501144627e-07" /> - <elevation s="292.08941045406306" a="166.4355299903643" b="8.2066804532832428e-05" c="2.7404401143856059e-06" d="1.6452011073442717e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024006256333356183" b="-0.00013448435238930058" c="6.6761171061061751e-06" d="0" /> - <superelevation s="10.072048636347002" a="0.023328989864309851" b="0" c="1.5196364260416594e-05" d="-6.643754773785957e-07" /> - <superelevation s="20.144097272694005" a="0.02419176332789625" b="0.0001039220094782246" c="5.6851390583654558e-06" d="-3.8443212296284372e-07" /> - <superelevation s="30.216145909041007" a="0.025422404932013035" b="0.00010144651140786016" c="-2.4592940402110741e-06" d="3.9753086320465016e-08" /> - <superelevation s="40.288194545388009" a="0.026235311721671647" b="6.4004647350961091e-05" c="-5.1792833152114934e-06" d="3.495594034389812e-07" /> - <superelevation s="50.360243181735015" a="0.026711720774155272" b="6.605704187347716e-05" c="6.0842793138022022e-06" d="-4.1918026371696159e-07" /> - <superelevation s="60.432291818082014" a="0.027565971198717391" b="6.1046667205005137e-05" c="-1.0181880239007064e-06" d="-1.3319441931245905e-07" /> - <superelevation s="70.504340454429013" a="0.027941450776506675" b="0" c="-3.9452527875329285e-05" d="2.232027690112814e-06" /> - <superelevation s="80.576389090776019" a="0.02621976365837211" b="-0.00011544361965138425" c="5.0671836957599294e-06" d="4.3930619267783893e-08" /> - <superelevation s="90.648437727123024" a="0.0256159432727373" b="0" c="3.845523729040601e-05" d="-2.5453436322532293e-06" /> - <superelevation s="100.72048636347003" a="0.026916322038921157" b="0" c="-9.998115777902517e-06" d="6.6177306715421197e-07" /> - <superelevation s="110.79253499981702" a="0.026578231875512493" b="0" c="1.8498225310911235e-06" d="-1.2243934330074199e-07" /> - <superelevation s="120.86458363616403" a="0.026640784341967812" b="0" c="-5.6050438358027158e-06" d="1.8936731307775387e-07" /> - <superelevation s="130.93663227251102" a="0.026265664118381247" b="-5.5276785901668136e-05" c="-1.0859368091932691e-05" d="9.0040846291287237e-07" /> - <superelevation s="141.00868090885803" a="0.025527283389842729" b="0" c="3.8422522683155206e-05" d="-2.5431782596508301e-06" /> - <superelevation s="151.08072954520503" a="0.026826555898892046" b="0" c="-1.6340513850825933e-05" d="6.7369539983520841e-07" /> - <superelevation s="161.15277818155204" a="0.025857235672268664" b="-0.00012413345898340978" c="-2.063313375511852e-05" d="1.7735821396131087e-06" /> - <superelevation s="171.22482681789904" a="0.024325999426334267" b="0" c="4.2225361879479253e-05" d="-2.7948873431171142e-06" /> - <superelevation s="181.29687545424605" a="0.025753866417970363" b="0" c="-4.1015894903696502e-05" d="2.7148329920808384e-06" /> - <superelevation s="191.36892409059305" a="0.024366898021285884" b="0" c="8.8692192486071289e-07" d="0" /> - <superelevation s="201.44097272694006" a="0.024456872848093635" b="1.7866241527678521e-05" c="7.4513612786935326e-05" d="-4.9907446792699988e-06" /> - <superelevation s="211.51302136328704" a="0.027096546004876054" b="0" c="-1.8188334720435423e-05" d="9.3279869194792061e-07" /> - <superelevation s="221.58506999963404" a="0.026204515590646977" b="-8.2501037337107447e-05" c="-6.3849294631942699e-06" d="6.9370021744985969e-07" /> - <superelevation s="231.65711863598105" a="0.025434637083659201" b="0" c="1.3546812909348372e-05" d="-6.8836636929352511e-07" /> - <superelevation s="241.72916727232806" a="0.026105556700491524" b="6.3391934758099907e-05" c="5.334728586391835e-06" d="-5.613986770217066e-07" /> - <superelevation s="251.80121590867506" a="0.026711610383730638" b="0" c="-2.1023682103896124e-05" d="1.1064195296164601e-06" /> - <superelevation s="261.87326454502204" a="0.025709345538585757" b="-8.6777047054701863e-05" c="-4.8232086889708988e-06" d="6.0438044273430544e-07" /> - <superelevation s="271.94531318136904" a="0.024963565106823581" b="0" c="7.3674424267795239e-06" d="-4.0763297508140727e-07" /> - <superelevation s="282.01736181771605" a="0.025294456449253541" b="2.4352072296858397e-05" c="-3.0398077721751269e-06" d="2.1801442552937613e-07" /> - <superelevation s="292.08941045406306" a="0.025454115619963174" b="2.9468070169058928e-05" c="1.3518960225391306e-06" d="1.0611012604849447e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.5488851244632991" b="0.021025194910751204" c="-0.0050131033994100663" d="0.0040446530690940756" /> - <laneOffset s="0.58841186702148907" a="3.560344916095445" b="0.019326778650918312" c="-0.00028930077233127948" d="1.6119628556146959e-06" /> - <laneOffset s="10.935426555218978" a="3.7311322977164378" b="0.013857713647431878" c="-0.00040926009416974237" d="2.8727613719980128e-05" /> - <laneOffset s="16.301453384216828" a="3.7981475492421" b="0.011947082107624456" c="0.00037880544632933554" d="-5.4564456717779679e-05" /> - <laneOffset s="20.144097272694005" a="3.8465533441875053" b="0.012441229066693761" c="-0.00023514714123629119" d="-5.4095651066821864e-05" /> - <laneOffset s="25.149474945946189" a="3.8961512655964863" b="0.0060213227800253412" c="-0.00015767863784601753" d="-9.310336389684763e-07" /> - <laneOffset s="30.216145909041007" a="3.922490437162689" b="0.0043518091026897472" c="-0.00016231291264529892" d="-1.6214566005199571e-07" /> - <laneOffset s="40.288194545388009" a="3.949690372105116" b="0.001032814836214011" c="-0.00015966948574354373" d="-1.0843234230203075e-06" /> - <laneOffset s="43.422359290526892" a="3.9513255694883429" b="-0" c="-0.0026006971488000837" d="0.00024081743275389394" /> - <laneOffset s="48.842252527924188" a="3.9132701665925289" b="-0.0069687901745337441" c="1.7142354966915026e-05" d="-4.4170099221507232e-06" /> - <laneOffset s="50.360243181735015" a="3.9027156590371987" b="-0.0069472805952044284" c="1.4925499284651877e-05" d="5.1262027468856842e-08" /> - <laneOffset s="54.961379465264493" a="3.8710712471704012" b="-0.0068066763612357412" c="0.00014844551367728171" d="-3.738293952802608e-05" /> - <laneOffset s="58.430738919071857" a="3.8476821316513594" b="-0.0071265288791354893" c="-0.0001622969430147589" d="1.5099227331625716e-06" /> - <laneOffset s="60.432291818082014" a="3.832779918367768" b="-0.0077580734919075493" c="-0.000140632561253316" d="5.2627609643737093e-06" /> - <laneOffset s="70.729347785708626" a="3.7437292519481682" b="-0.0089802546441750935" c="1.7761063945802435e-06" d="-9.5427294108305496e-06" /> - <laneOffset s="75.699110746839679" a="3.6979720512855385" b="-0.0096696755521716131" c="-0.00027204722242315263" d="1.7351887592609366e-05" /> - <laneOffset s="80.576389090776019" a="3.6463521001208585" b="-0.011085083617299051" c="-3.4538969665781725e-05" d="1.6234571166392466e-05" /> - <laneOffset s="86.128973777207435" a="3.5865155990045889" b="-0.0099670509544885974" c="0.0001115338794949569" d="-7.1293034996929193e-06" /> - <laneOffset s="90.648437727123024" a="3.5430898886174154" b="-0.0093957641886298054" c="2.2481638872300871e-05" d="-1.1133338071239402e-05" /> - <laneOffset s="92.304280252206539" a="3.5275430777014609" b="-0.0094128887234720925" c="-7.5022747658908215e-05" d="1.3094583392134142e-05" /> - <laneOffset s="99.863252545404677" a="3.4577602746384026" b="-0.0083024811070459108" c="-0.0012136574964400921" d="0.00034539919610794253" /> - <laneOffset s="103.73769901568079" a="3.4274627661084272" b="-0.0021522735215770972" c="0.00017217745577911435" d="1.9954927105111591e-07" /> - <laneOffset s="109.92138443942942" a="3.420784683039618" b="-0" c="0.00022727751516082154" d="-1.9105537567625644e-08" /> - <laneOffset s="116.59822068317442" a="3.4309110601446231" b="0.0030324343184825451" c="0.000895607574863101" d="-3.5679952705568097e-05" /> - <laneOffset s="120.86458363616403" a="3.4573794907806752" b="0.0087260845279415137" c="0.00043818712379235081" d="-3.5536585622904574e-05" /> - <laneOffset s="129.43108072847565" a="3.5419476540792636" b="0.0084099985637734343" c="-0.00028304392723917072" d="5.6028470639837242e-05" /> - <laneOffset s="130.93663227251102" a="3.5541589722692275" b="0.0079387208782537525" c="-4.6914776213850789e-05" d="5.2799074374734379e-05" /> - <laneOffset s="134.35877872964943" a="3.5828930460890605" b="0.0094726259692627813" c="0.00052973036495336035" d="-3.4210552293264751e-05" /> - <laneOffset s="141.00868090885803" a="3.6592502116223984" b="0.011979441263988269" c="-0.00014622720051697753" d="-3.7659874756279321e-05" /> - <laneOffset s="142.99423674765393" a="3.6821647719329738" b="0.010953342235614059" c="-0.00019898815884040989" d="4.428766323705728e-05" /> - <laneOffset s="146.17652614713145" a="3.7164335862226872" b="0.011032365374431924" c="0.000396853025090357" d="-4.5412858636232907e-05" /> - <laneOffset s="151.08072954520503" a="3.7747268069212523" b="0.011648158551412028" c="-0.00026817077172133752" d="-4.2737547629299893e-05" /> - <laneOffset s="152.96369340069012" a="3.7954237326143976" b="0.010183662105533628" c="-0.00024015550665897956" d="3.0100550282385788e-06" /> - <laneOffset s="161.51302090713449" a="3.8668149087234287" b="0.0067373497512699977" c="-0.00010062712334632126" d="-1.5139853445582627e-05" /> - <laneOffset s="167.61514705199781" a="3.9007400672656525" b="0.0038180307688206161" c="-0.00014410532962327001" d="1.4088502665948422e-06" /> - <laneOffset s="171.22482681789904" a="3.9127105367458039" b="0.0028327536447662429" c="-0.00013257139562359273" d="-2.5059585643542537e-07" /> - <laneOffset s="181.60329723331574" a="3.9275504313122607" b="-0" c="-0.001023901378414788" d="5.4456163785252046e-05" /> - <laneOffset s="190.08583084008268" a="3.8871144226132346" b="-0.0056156411560609396" c="-0.00050257381844156688" d="7.5671101422242445e-05" /> - <laneOffset s="191.36892409059305" a="3.8792414769372252" b="-0.0065316008798032947" c="-0.0002217181594791522" d="7.0087844378819464e-05" /> - <laneOffset s="195.64785966246626" a="3.8527246566454254" b="-0.0045792603924015591" c="0.00082141892553103341" d="-0.00011004865690467657" /> - <laneOffset s="200.49117088148358" a="3.8373115100046471" b="-0.0043669385054318543" c="-0.00044533631061538368" d="1.2609116663715324e-05" /> - <laneOffset s="211.51302136328704" a="3.7519627277623586" b="-0.0095884875474219027" c="-2.603372978318229e-05" d="1.3552090530572288e-05" /> - <laneOffset s="216.44638940271983" a="3.70565276236665" b="-0.0088558582629496216" c="-0.00072868264398455213" d="6.9712954008250706e-05" /> - <laneOffset s="221.58506999963404" a="3.6503632174092799" b="-0.010822264194997148" c="0.00033408397544412049" d="6.9695691265039638e-05" /> - <laneOffset s="226.39490745009198" a="3.6137940373239683" b="-0.0027713524630807785" c="0.00016568339428611666" d="3.8325512485002398e-07" /> - <laneOffset s="231.65711863598105" a="3.6038543582483862" b="-0.00099579244205628211" c="0.00017187871254026947" d="-7.1657674928478803e-07" /> - <laneOffset s="234.60837536083687" a="3.6023941485517379" b="-0" c="2.3355154740239288e-05" d="-2.940664084136779e-07" /> - <laneOffset s="241.72916727232806" a="3.6034722105311086" b="0.00028788188457318584" c="2.1921369547371791e-05" d="-1.1296218750322421e-07" /> - <laneOffset s="251.80121590867506" a="3.6084801882655611" b="0.00069508934337869155" c="1.4506173799845577e-05" d="3.2871800657692512e-06" /> - <laneOffset s="252.95886460716133" a="3.6093093978038402" b="0.00074189139793635124" c="9.5376297602470475e-05" d="-2.4125868936255073e-06" /> - <laneOffset s="261.87326454502204" a="3.6217930696306295" b="0.0018671766216244656" c="2.5338174992634614e-05" d="-2.5389953505515349e-06" /> - <laneOffset s="271.94531318136904" a="3.6405755529811161" b="0.0016048772692407638" c="-5.1733330449191645e-05" d="-3.0409540102972959e-06" /> - <laneOffset s="274.98203166728905" a="3.6448868887039252" b="0.0012065502231766176" c="2.6966233371053546e-05" d="-3.1609329019365333e-06" /> - <laneOffset s="282.01736181771605" a="3.6536093856695482" b="0.0011166235574680669" c="-3.7718573870844861e-05" d="-3.0600498363402462e-06" /> - <laneOffset s="289.6779367154565" a="3.658574207209488" b="-0" c="-0.00051356490966532548" d="1.8675595476904965e-05" /> - <laneOffset s="292.08941045406306" a="3.6558496135762182" b="-0.0021510893037020116" c="-0.00037469455321236303" d="1.9306127881336527e-05" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929041363091504" b="0.0011202220825539053" c="0.0029121198973031458" d="-0.0037864035057110679" /> - <width sOffset="0.58841186702148907" a="2.4938001623018082" b="0.00061439118870563331" c="-0.0013558114065323709" d="0.00025663760052736258" /> - <width sOffset="3.8408996449989594" a="2.4902859057746776" b="-6.0470218811309318e-05" c="-7.5148242773131926e-05" d="7.1900926908360761e-06" /> - <width sOffset="10.072048636347002" a="2.4887308675764146" b="-0.00015947612942635199" c="6.0567239389786617e-05" d="6.5607943901361183e-06" /> - <width sOffset="10.935426555218978" a="2.4886425499246272" b="-4.0219625010233864e-05" c="0.00024755690628100566" d="-2.0554856473127676e-05" /> - <width sOffset="16.301453384216828" a="2.4923789993207466" b="0.00084098972293428741" c="-0.00040894293025782853" d="6.2737213964586506e-05" /> - <width sOffset="18.806186010651562" a="2.4929057209839911" b="-2.6815022284781137e-05" c="-0.00039520703823305091" d="4.1890671287431912e-05" /> - <width sOffset="20.144097272694005" a="2.4922627443869931" b="-0.00085936518952124154" c="-0.00019895090573642299" d="5.9684164150691026e-05" /> - <width sOffset="25.149474945946189" a="2.4904614382911334" b="0.0016349323145669076" c="-0.00019250155327651787" d="6.5195467228341537e-06" /> - <width sOffset="30.216145909041007" a="2.4946513450311194" b="0.00018634113036796081" c="-9.2863908731608349e-05" d="5.8307075987181109e-06" /> - <width sOffset="39.693381933447519" a="2.4930397454027418" b="-2.7377001555650878e-06" c="0.00047623776614239927" d="-0.00012395334689419623" /> - <width sOffset="40.288194545388009" a="2.4931805254031181" b="0.00043224191679555818" c="0.00024750788024915113" d="-0.00012303116913165492" /> - <width sOffset="43.422359290526892" a="2.4931787659183837" b="-0.0016418984721711569" c="0.0015215403400348673" d="-0.00036493292530866356" /> - <width sOffset="45.429845259389261" a="2.4930621164362767" b="5.500432106355594e-05" c="0.0011798921398171991" d="-0.00024296666942567863" /> - <width sOffset="48.842252527924188" a="2.4973346065417861" b="-0.00038014382905173123" c="-9.6367245371420618e-06" d="2.2677732503517599e-06" /> - <width sOffset="50.360243181735015" a="2.4967432783422776" b="-0.00039372388467878196" c="-7.8608419614184972e-06" d="-1.8150029665827402e-06" /> - <width sOffset="54.961379465264493" a="2.4945884874094206" b="-0.00058133481144277774" c="-0.00016572649364308563" d="3.5619198588909456e-05" /> - <width sOffset="58.430738919071857" a="2.4920642830978905" b="-0.00044507772141422555" c="0.00012665880914498973" d="-3.2736636723344595e-06" /> - <width sOffset="60.432291818082014" a="2.4916546084288944" b="2.2605900065582156e-05" c="0.00010070845049761074" d="-6.8659644993824617e-06" /> - <width sOffset="70.504340454429013" a="2.4950833407933057" b="-3.8290553294706778e-05" c="-0.00011433095493235056" d="-6.0466611304513774e-06" /> - <width sOffset="70.729347785708626" a="2.4950688678743287" b="-9.0659555897397437e-05" c="-9.8248419244774583e-05" d="8.7588292154913711e-06" /> - <width sOffset="75.699110746839679" a="2.4932668289270143" b="-0.00041821128239545591" c="0.00016388751510484082" d="-1.8135787787955606e-05" /> - <width sOffset="79.711368997574354" a="2.4930557597413916" b="2.1045284805114306e-05" c="0.00016340856583382411" d="-1.939212661394832e-05" /> - <width sOffset="80.576389090776019" a="2.4931836846475246" b="0.00026021762638621902" c="0.00012946653230775393" d="-1.8274810188448243e-05" /> - <width sOffset="86.128973777207435" a="2.4954916566926353" b="7.6625930559067607e-06" c="-5.0592116704501795e-05" d="5.0890644776441676e-06" /> - <width sOffset="90.648437727123024" a="2.4949627000273811" b="-0.00013779501222210833" c="1.3784234647704433e-05" d="8.5344130344159021e-06" /> - <width sOffset="92.304280252206539" a="2.4948110733464395" b="-2.1946637013027515e-05" c="9.8378389392433119e-05" d="-1.5693508428955523e-05" /> - <width sOffset="99.863252545404677" a="2.4934882246449885" b="-0.001224757576602226" c="0.0011780775311367767" d="-0.00034799812114494268" /> - <width sOffset="100.86499846479965" a="2.4930936994840511" b="8.7868136704754782e-05" c="0.0010532641990909206" d="-0.00036717231191745386" /> - <width sOffset="103.73769901568079" a="2.4933336414825296" b="-0.0029508742473557635" c="0.0005177930273208292" d="-2.197266508056323e-05" /> - <width sOffset="109.92138443942942" a="2.4896902445824276" b="0.00093229412116939674" c="5.8778671355097571e-05" d="-2.1754010269214748e-05" /> - <width sOffset="110.79253499981702" a="2.490532638465869" b="0.00098517669567549284" c="9.4830223144076633e-07" d="-2.1974342157230222e-05" /> - <width sOffset="114.67376721684118" a="2.4930858550253774" b="-5.2420804186629685e-07" c="0.00050271581450746466" d="-2.3264205247817538e-05" /> - <width sOffset="116.59822068317442" a="2.4947808549575723" b="0.0016759037474707457" c="-0.00030030958012346393" d="1.2396641920208965e-05" /> - <width sOffset="120.86458363616403" a="2.4974273478708344" b="-0.0002096300305898767" c="-0.00014223593651380991" d="1.2445291720067208e-05" /> - <width sOffset="129.43108072847565" a="2.4930173355397476" b="9.3330932064750877e-05" c="-1.4439391695471836e-05" d="-7.911976455113315e-05" /> - <width sOffset="129.93057983612229" a="2.4930504913605827" b="1.9685014010123111e-05" c="0.00042600120286592254" d="-4.4766897225740567e-05" /> - <width sOffset="130.93663227251102" a="2.493455884342143" b="0.00074091280594325119" c="0.00027820530731479797" d="-5.8646083773216744e-05" /> - <width sOffset="134.35877872964943" a="2.4968991206671203" b="0.00058460336180026634" c="-0.00035846780134593309" d="2.8363542894780342e-05" /> - <width sOffset="141.00868090885803" a="2.493275571832545" b="-0.00042013864140040026" c="0.00020367616136076423" d="3.117105684698696e-05" /> - <width sOffset="142.99423674765393" a="2.4934883470175642" b="0.00075735145635737189" c="0.00021778538882416345" d="-5.0776481146349274e-05" /> - <width sOffset="146.17652614713145" a="2.4964675933105567" b="0.00060082865739491571" c="-0.00044000368445013671" d="3.892404072692143e-05" /> - <width sOffset="151.08072954520503" a="2.4934227274532117" b="-0.00090639552554972087" c="0.00012997584123310913" d="3.7204967028027036e-05" /> - <width sOffset="152.96369340069012" a="2.4924252395215212" b="-2.1179369184210622e-05" c="7.07076282715728e-05" d="-8.5426356295185363e-06" /> - <width sOffset="158.20210001639467" a="2.4930265996717029" b="1.6358316897035693e-05" c="-4.2349453485540254e-05" d="3.1966285775560998e-06" /> - <width sOffset="161.15277818155204" a="2.4927882738717346" b="-0.00015006654271000619" c="-4.3185690559346685e-05" d="-1.2658641261975386e-06" /> - <width sOffset="161.51302090713449" a="2.4927285498963947" b="-0.00018167403632562973" c="-0.00010688029014890896" d="1.6884044349962779e-05" /> - <width sOffset="167.61514705199781" a="2.4914765295183123" b="0.00040001190168176661" c="-3.1472265114077175e-05" d="3.3534063777619232e-07" /> - <width sOffset="171.22482681789904" a="2.4925261396408782" b="0.0001859105568076066" c="-2.3285617235028854e-05" d="9.2246971967723165e-07" /> - <width sOffset="180.3324081590734" a="2.492984724185094" b="-8.6895895177198346e-06" c="-0.00057676293499760579" d="2.4831082238844827e-05" /> - <width sOffset="181.60329723331574" a="2.4920930872768174" b="-0.0013543745737666318" c="0.00040143729610503138" d="-2.9875677402874064e-05" /> - <width sOffset="190.08583084008268" a="2.4912548002177557" b="-0.000992931446544984" c="0.00050562414156034719" d="-5.1090615040005308e-05" /> - <width sOffset="191.36892409059305" a="2.4907052764654942" b="5.2258625509472682e-05" c="0.00031444866838499952" d="-4.5876065636454069e-05" /> - <width sOffset="195.64785966246626" a="2.4930920925955684" b="0.00022339529264464152" c="-0.00041788649266780598" d="0.00013426043564721788" /> - <width sOffset="197.39316151216022" a="2.4929228420476517" b="-8.3773465649728505e-06" c="-0.00057373086466835173" d="0.00011420858477002986" /> - <width sOffset="200.49117088148358" a="2.4907862517409569" b="-0.00027481833466702545" c="0.00015548248462867755" d="-8.4491887980663123e-06" /> - <width sOffset="201.44097272694006" a="2.4906582535986717" b="-2.3298694608615139e-06" c="0.00014568345208803212" d="-9.0181261485123657e-06" /> - <width sOffset="211.51302136328704" a="2.4961993573506831" b="0.00018776885494363113" c="-0.00012090742833366872" d="-8.8248158987242492e-06" /> - <width sOffset="216.44638940271983" a="2.4931234447166353" b="-0.001649531120988262" c="0.00065170564261488886" d="-6.4985679376409935e-05" /> - <width sOffset="221.4394949500055" a="2.493045249048182" b="-1.9550017220770072e-06" c="0.00053124104894779374" d="-9.2974698666742592e-05" /> - <width sOffset="221.58506999963404" a="2.4930559357288362" b="0.00014680489647504041" c="0.00050256785278539762" d="-9.29574361922532e-05" /> - <width sOffset="226.39490745009198" a="2.4950450314733335" b="-0.0014702372898643223" c="0.0003353127982016191" d="-2.3645000052050759e-05" /> - <width sOffset="229.89160278371526" a="2.492992977878429" b="7.4224926760681122e-06" c="-7.9493978383992251e-05" d="1.0426330988918664e-06" /> - <width sOffset="231.65711863598105" a="2.4927640338144665" b="-0.00026352345862689676" c="-7.7220477020924384e-05" d="-4.1184897886376145e-07" /> - <width sOffset="234.60837536083687" a="2.4913031378870083" b="-0.00073007987318416344" c="6.131225872305177e-05" d="-8.343593197357499e-07" /> - <width sOffset="241.72916727232806" a="2.488912013050101" b="1.6183535172832717e-05" c="4.4642160047481944e-05" d="-1.0002765347360352e-06" /> - <width sOffset="251.80121590867506" a="2.4925817370308629" b="0.00061103689826985652" c="1.6555856205413169e-05" d="-3.8953143510624965e-06" /> - <width sOffset="252.95886460716133" a="2.493305247157795" b="0.00063370770651193181" c="-6.6426285188864241e-05" d="1.8044526083313471e-06" /> - <width sOffset="261.87326454502204" a="2.494953972687286" b="-0.00012041249689528823" c="-2.082105811651658e-05" d="1.8433580920351093e-06" /> - <width sOffset="271.94531318136904" a="2.4935124449703494" b="2.1170903554537223e-05" c="3.3320238457924968e-05" d="2.0187146481439681e-06" /> - <width sOffset="274.98203166728905" a="2.4939405341697185" b="0.00027938696701152507" c="-5.4692084866603637e-05" d="2.138693539782932e-06" /> - <width sOffset="282.01736181771605" a="2.4939438167947667" b="-0.00017259728595721909" c="-9.1495976216157042e-06" d="2.0495249922089042e-06" /> - <width sOffset="288.98814842556675" a="2.4929903042609829" b="-1.3863401543656425e-06" c="-0.00036466006926663788" d="1.8540687401833143e-05" /> - <width sOffset="289.6779367154565" a="2.4928219250214867" b="-0.00047799741552740943" c="7.9228490811879672e-05" d="-3.1949579091781907e-06" /> - <width sOffset="292.08941045406306" a="2.492085173186136" b="-0.00015162057694332633" c="5.7480134777855324e-05" d="-3.290289014308712e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15523179294825901" weight="standard" type="solid"> - <type name="solid"> - <line length="302.16145909041006" space="0" width="0.15523200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.6302802821616402" b="0.0053060127553523108" c="-0.0060946032479076732" d="0.0041107779701094948" /> - <width sOffset="0.58841186702148907" a="3.6321297456697432" b="0.002403544786326501" c="-0.0012540745914396021" d="6.7736863871033752e-05" /> - <width sOffset="10.072048636347002" a="3.5999097298544007" b="-0.0031061991775166876" c="0.00067294643146916032" d="6.7763155197077555e-05" /> - <width sOffset="10.935426555218978" a="3.5977731458034801" b="-0.001792648674183427" c="0.00067846573533045479" d="9.487880606278505e-05" /> - <width sOffset="13.51935290385671" a="3.5993078218412613" b="0.0036139872703518407" c="0.0014111294746925237" d="-0.0012948099058423511" /> - <width sOffset="14.193148527250191" a="3.6019874772101139" b="0.0037520798010075643" c="-0.00076425101738944597" d="5.5316140656206528e-05" /> - <width sOffset="16.301453384216828" a="3.6070193328106819" b="0.0012671638708665056" c="-8.8775050711644115e-05" d="-2.7975929781611169e-05" /> - <width sOffset="20.144097272694005" a="3.6089903895031017" b="-0.00065436829758877546" c="-0.00039674199682026949" d="-2.7519726925736882e-05" /> - <width sOffset="25.149474945946189" a="3.5923240549387403" b="-0.0066944770334116466" c="7.9794118595492478e-05" d="2.5644890502116952e-05" /> - <width sOffset="30.216145909041007" a="3.5637893112075099" b="-0.0039108940959313252" c="0.00047911423328531304" d="2.6413778481000013e-05" /> - <width sOffset="31.101967365390664" a="3.560719268343465" b="-0.0029998956965965207" c="-0.0011936245885835618" d="0.00033277124480725378" /> - <width sOffset="34.986720030682157" a="3.5505611054263122" b="0.0027920870249421108" c="-0.00014343279938421643" d="-1.1037762906061564e-07" /> - <width sOffset="40.288194545388009" a="3.5613155677420165" b="0.0012619696648449813" c="-0.00013820115982643013" d="-1.0747618122895189e-06" /> - <width sOffset="43.422359290526892" a="3.5638801516041445" b="0.00036400713986515127" c="-0.002579138919893195" d="0.00024082699436462466" /> - <width sOffset="48.842252527924188" a="3.5284324290610143" b="-0.0063702538126355806" c="3.8856052601850171e-05" d="-4.4074483114390383e-06" /> - <width sOffset="50.360243181735015" a="3.5188365623330262" b="-0.0062827557548340044" c="3.5569825934498147e-05" d="3.0959837339275922e-07" /> - <width sOffset="52.861189689331333" a="3.5033510490205151" b="-0.0060990299250491681" c="0.0013757175081290682" d="-4.1803218526234657e-05" /> - <width sOffset="54.961379465264493" a="3.4962226949440347" b="-0.00087365077926350801" c="0.0012451458553480079" d="-7.9237420081818845e-05" /> - <width sOffset="58.430738919071857" a="3.5048699697274288" b="0.0049048533818962107" c="0.00049877868527552704" d="-4.0344557820641876e-05" /> - <width sOffset="60.432291818082014" a="3.5163619985300461" b="0.0064166304308444768" c="0.0002686782774095843" d="-3.6616018588244689e-05" /> - <width sOffset="69.302138510493364" a="3.5688628899568169" b="0.0025406949412639847" c="0.00040155558056410086" d="-1.5416425484369054e-05" /> - <width sOffset="70.504340454429013" a="3.5724708959243667" b="0.0034393531460807474" c="0.00034598827172372038" d="-1.5466596943873595e-05" /> - <width sOffset="70.729347785708626" a="3.5732621162033817" b="0.0035927037989318625" c="0.0003153838136628492" d="-3.0272087310603176e-05" /> - <width sOffset="75.699110746839679" a="3.5951907485748333" b="0.0044844399590628983" c="-0.00026749950044984176" d="-3.377470307163431e-06" /> - <width sOffset="80.576389090776019" a="3.6103075201823169" b="0.0016340727071543285" c="-0.00033313680777850309" d="-4.4834631873454538e-06" /> - <width sOffset="86.128973777207435" a="3.6083423040697458" b="-0.0024801595738395635" c="-0.00053217987947433995" d="-2.7847337853430795e-05" /> - <width sOffset="89.511564732541132" a="3.5927859932881478" b="-0.007036334434729629" c="-3.1098391749008246e-05" d="-7.117759403092989e-06" /> - <width sOffset="90.648437727123024" a="3.5847359218977974" b="-0.0071346429676523099" c="-4.7729155094116908e-05" d="-1.1136884546193766e-05" /> - <width sOffset="92.304280252206539" a="3.5727406505821655" b="-0.007384312710562559" c="-0.0001452511588374574" d="1.3091036917179809e-05" /> - <width sOffset="99.863252545404677" a="3.514277550333806" b="-0.0073362222388431795" c="-0.0012839663307364097" d="0.00034539564963298138" /> - <width sOffset="100.72048636347003" a="3.5072627479930665" b="-0.0087760991670947277" c="-0.00039569104748749006" d="0.00034540240404806266" /> - <width sOffset="103.73769901568079" a="3.4866684990819379" b="-0.0017306800786214222" c="0.0001019093269352593" d="2.0275721115179632e-07" /> - <width sOffset="106.73820645468575" a="3.4823985520998777" b="-0.0011136443946527035" c="-4.8371486177560953e-05" d="2.7084395053951102e-06" /> - <width sOffset="109.92138443942942" a="3.4784508516350354" b="-0.0013392637126066612" c="2.8891058467884849e-05" d="2.4897846967756156e-06" /> - <width sOffset="110.79253499981702" a="3.4773077228649241" b="-0.001283258271598157" c="3.5364901611990304e-05" d="2.483879480849368e-06" /> - <width sOffset="116.59822068317442" a="3.4715355989159145" b="-0.00062145844271983613" c="0.00074733952557478733" d="-3.3176967687148567e-05" /> - <width sOffset="120.86458363616403" a="3.4799108147067499" b="0.0039437380364955995" c="0.00032195284387572697" d="-3.3032253840443014e-05" /> - <width sOffset="124.13466953524321" a="3.4950948776393029" b="0.0049896775137694051" c="-0.00012755559252810959" d="-3.0390200041578953e-05" /> - <width sOffset="129.43108072847565" a="3.5134288584605096" b="0.0010809886988473278" c="-0.00041839145832618554" d="6.1174856221160671e-05" /> - <width sOffset="130.93663227251102" a="3.5143167468685066" b="0.00023716135648759601" c="-0.000158953372129381" d="5.7942341574867432e-05" /> - <width sOffset="134.35877872964943" a="3.5155889893733452" b="0.0011849412186240148" c="0.00047049480991898622" d="-2.9067285093131694e-05" /> - <width sOffset="140.04903863736013" a="3.5322102821948005" b="0.0037159028120926189" c="-0.00030525228982954892" d="-2.3577248370464333e-05" /> - <width sOffset="141.00868090885803" a="3.5354742723897092" b="0.0030648990064666669" c="-0.00036659654910434474" d="-2.7026570834067889e-05" /> - <width sOffset="142.99423674765393" a="3.5399029567416704" b="0.0012894519171281708" c="-0.00035601845136246373" d="5.4920967159268738e-05" /> - <width sOffset="146.17652614713145" a="3.5421709137125617" b="0.00069209270155284712" c="0.00034133748362752712" d="-3.4779554714021231e-05" /> - <width sOffset="151.08072954520503" a="3.5496723378212103" b="0.00153059837217062" c="-0.00016711901361357944" d="-3.2133326301408655e-05" /> - <width sOffset="152.96369340069012" a="3.5517473430934348" b="0.00055944902483409491" c="-7.9201652123273339e-05" d="1.3614276356129782e-05" /> - <width sOffset="158.63965333249521" a="3.5548606539028782" b="0.00097617208326893773" c="-0.00012007361349570347" d="6.818888570507786e-06" /> - <width sOffset="161.15277818155204" a="3.5566637677392441" b="0.00050185225752941327" c="-6.7070398176962708e-05" d="7.1141970573371566e-06" /> - <width sOffset="161.51302090713449" a="3.5568361849072083" b="0.00045629874240132786" c="2.9446596081824636e-06" d="-1.1035711422346908e-05" /> - <width sOffset="167.61514705199781" a="3.5572227076115861" b="-0.00074053926944484894" c="3.4598430357902902e-05" d="5.5129922898286971e-06" /> - <width sOffset="171.22482681789904" a="3.5552597027707948" b="-0.00027526139890414296" c="9.025262145722924e-05" d="3.9570493732918128e-06" /> - <width sOffset="177.19080795496512" a="3.5576701203706791" b="0.0012241584305297669" c="0.00050285405584621725" d="-2.1618258109285002e-05" /> - <width sOffset="181.29687545424605" a="3.5696780348516883" b="0.004260225926030683" c="0.00023602191329197018" d="-2.1781026879998946e-05" /> - <width sOffset="181.60329723331574" a="3.5710049953054961" b="0.0043987350919137205" c="-0.00066752820747737905" d="3.2925732765552528e-05" /> - <width sOffset="190.08583084008268" a="3.5803826252080926" b="0.00018142711291249669" c="-0.00069409846158244087" d="5.4140670402514278e-05" /> - <width sOffset="191.31728928433319" a="3.5796545592447568" b="-0.0012817683708811669" c="-0.0001639427114310054" d="7.4362939776572578e-05" /> - <width sOffset="191.36892409059305" a="3.5795879485241398" b="-0.0012981038822037919" c="-0.00016284714265816491" d="6.877968839829979e-05" /> - <width sOffset="195.64785966246626" a="3.5764403246721073" b="0.0010861929610745261" c="0.0008634973968762122" d="-0.00011135681288519626" /> - <width sOffset="200.49117088148358" a="3.589305171225007" b="0.001614054264092825" c="-0.000422265258880207" d="1.1300960683203316e-05" /> - <width sOffset="201.44097272694006" a="3.5904669506105971" b="0.00084250220794131626" c="-0.00039051893545549666" d="1.1331194595812656e-05" /> - <width sOffset="211.15914652824057" a="3.572172704383088" b="-0.0035373068636061853" c="0.00028093404516737471" d="-3.9518832518795181e-06" /> - <width sOffset="211.51302136328704" a="3.570955946012937" b="-0.0033399605380108359" c="0.00027911381415866024" d="-3.0089093879600013e-06" /> - <width sOffset="216.44638940271983" a="3.5609105205500704" b="-0.00080571179291952927" c="-0.0006686396231401191" d="5.3151954089718356e-05" /> - <width sOffset="221.58506999963404" a="3.5463264069114753" b="-0.0034669651058478043" c="0.00013897861916123657" d="5.3137001755839617e-05" /> - <width sOffset="226.39490745009198" a="3.538778806893375" b="0.0015578637166153678" c="-0.00026835577679233224" d="-1.6175434384350098e-05" /> - <width sOffset="230.21746859326174" a="3.5399091471299871" b="-0.0012028140783117301" c="0.00016194566272053902" d="3.5179384635667999e-07" /> - <width sOffset="231.65711863598105" a="3.5385142128006306" b="-0.00073433654221151878" c="0.00016364540379215664" d="-7.1440953391009164e-07" /> - <width sOffset="234.60837536083687" a="3.5377539708656491" b="0.00021291531301666569" c="1.51410340189732e-05" d="-2.9189919303900586e-07" /> - <width sOffset="241.72916727232806" a="3.5399324384326842" b="0.00038414477917708472" c="1.3656410393814116e-05" d="-1.0567337592206136e-07" /> - <width sOffset="247.59828998444732" a="3.5426360840793918" b="0.00053352681001371798" c="-0.00046584106233937963" d="2.420838287572111e-05" /> - <width sOffset="251.80121590867506" a="3.5384468697875229" b="-0.0020993709376805059" c="-0.00016457244244940321" d="2.7595295825485198e-05" /> - <width sOffset="252.95886460716133" a="3.5358387959015771" b="-0.0023694595360457343" c="7.1845706888872104e-07" d="2.1895528866090393e-05" /> - <width sOffset="260.91649749993383" a="3.5280623457950862" b="0.0018015071364943331" c="0.00037201999530062725" d="-3.5618220131088071e-05" /> - <width sOffset="261.87326454502204" a="3.5300953213209163" b="0.0024155649839618706" c="0.00026426714837518215" d="-3.5744628589235217e-05" /> - <width sOffset="266.21665745414771" a="3.5426436284424723" b="0.0026882232011514731" c="-4.720080892266649e-05" d="-1.4435978952472202e-06" /> - <width sOffset="271.94531318136904" a="3.5562231246960829" b="0.0020053030260538535" c="-7.2318771877576241e-05" d="-1.936731665892616e-06" /> - <width sOffset="274.98203166728905" a="3.5615915309741846" b="0.0015124998852368155" c="1.6440429160127586e-05" d="-2.0567105575318099e-06" /> - <width sOffset="282.01736181771605" a="3.5723300130530991" b="0.0014384315419905794" c="-2.4983222149163764e-05" d="-1.9531049469242908e-06" /> - <width sOffset="285.99308906665453" a="3.5775311925988453" b="0.0011471638718212672" c="-0.00010619939577259161" d="-3.2251312279272272e-07" /> - <width sOffset="289.6779367154565" a="3.5803001940700674" b="0.00035136933576660655" c="-0.00051528574384738797" d="2.1413132190452842e-05" /> - <width sOffset="292.08941045406306" a="3.5784513004254563" b="-0.0017602614443977893" c="-0.0003566584322505776" d="2.2045002243643107e-05" /> - <width sOffset="299.17747802831639" a="3.5559061128839655" b="-0.0034936304210543717" c="0.00050054843179560716" d="1.8678764211302841e-07" /> - <roadMark sOffset="0" color="standard" width="0.15745140277557482" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15745100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6004212284774844" b="0.002818807652118567" c="-0.009946737392738908" d="0.013663662885016033" /> - <width sOffset="0.33263244143021797" a="3.6007611811895681" b="0.00073701349614424885" c="-0.0034322515540193082" d="0.00058804581378368924" /> - <width sOffset="4.1787855014830821" a="3.5862802137403351" b="0.00043178090609764103" c="0.0015545350972634817" d="-0.00013870437018116208" /> - <width sOffset="10.072048636347002" a="3.6144251783195323" b="0.0043025123190530874" c="-0.00089619394497125629" d="-0.00013942423497165398" /> - <width sOffset="13.51935290385671" a="3.6128951078544058" b="-0.006847107908694439" c="-0.0023352914242343445" d="0.0012502644769339299" /> - <width sOffset="14.09684382477818" a="3.6084029448109489" b="-0.0082934533792317581" c="0.00014611565846831768" d="0.0014477815783064849" /> - <width sOffset="14.193148527250191" a="3.6076068945544035" b="-0.0082250273627205057" c="0.00012246892993767985" d="9.7655531878604202e-05" /> - <width sOffset="17.41281100666453" a="3.5856539498897" b="-0.0043994520436611458" c="-0.00027353489937260631" d="5.8664768690066162e-05" /> - <width sOffset="20.144097272694005" a="3.572792542997643" b="-0.0045807520064278778" c="0.00022142077340403505" d="6.0796261050909451e-05" /> - <width sOffset="28.131029134061251" a="3.5813064511038903" b="0.010590970812304392" c="-6.3846682792356724e-06" d="-3.0809607770998001e-05" /> - <width sOffset="30.216145909041007" a="3.6030827992058807" b="0.010162491353384782" c="-0.00017823444913338921" d="-2.8228052177054474e-05" /> - <width sOffset="31.101967365390664" a="3.6119254742251381" b="0.0097802736202571433" c="0.0014896830050326643" d="-0.0003345855185032599" /> - <width sOffset="33.294406260915792" a="3.637002657890251" b="0.011487506267005424" c="-0.0060777361192204619" d="0.00041450936391036861" /> - <width sOffset="34.986720030682157" a="3.6410459235321198" b="-0.0055219944766282669" c="-0.0011452862550999253" d="0.0007473909863464905" /> - <width sOffset="36.699059976647639" a="3.631984763824271" b="-0.0028699398113620567" c="-0.00025219098035053324" d="0.00010909909867439459" /> - <width sOffset="40.288194545388009" a="3.623479645756869" b="-0.00046402777512475268" c="0.00092307877087643379" d="0.0001091413050138438" /> - <width sOffset="40.409955657604456" a="3.6234370275930949" b="-0.00023438326838783624" c="0.00043030384445747394" d="-5.0332887293473672e-06" /> - <width sOffset="50.360243181735015" a="3.6587498690555775" b="0.006833899780903238" c="0.00028467284275255939" d="-5.3510178478204286e-06" /> - <width sOffset="52.861189689331333" a="3.6775379349387296" b="0.0081573953139684238" c="-0.0010932998007259539" d="3.6761799051898408e-05" /> - <width sOffset="60.432291818082014" a="3.6925828925101905" b="-0.0020758395464562443" c="-0.00025452525479519945" d="3.686436015316086e-05" /> - <width sOffset="69.302138510493364" a="3.6798709278826576" b="0.0021097804319694206" c="-0.00038079430312525585" d="1.5664767049445354e-05" /> - <width sOffset="70.413120866615586" a="3.6817663297930925" b="0.0013216731382045318" c="6.9477029294470088e-05" d="-1.7746006535313729e-05" /> - <width sOffset="70.504340454429013" a="3.681887456921344" b="0.0013339054758918171" c="6.4587017907094979e-05" d="-1.7695835078268951e-05" /> - <width sOffset="76.948189772847655" a="3.6884299415555448" b="-3.807928235363689e-05" c="0.00075310229819146302" d="-6.7251105676711058e-05" /> - <width sOffset="80.576389090776019" a="3.6949935131104246" b="0.0027708847809498494" c="1.069341675109998e-06" d="-6.9371081462356321e-05" /> - <width sOffset="85.730718728968341" a="3.6998046009368362" b="-0.0027470600325969477" c="0.00024700937267171816" d="2.0958969326666146e-05" /> - <width sOffset="89.511564732541132" a="3.6940820960552641" b="1.9561370719954705e-05" c="-0.00029893266826168326" d="2.2939087672789937e-07" /> - <width sOffset="90.648437727123024" a="3.6937183073564817" b="-0.00065924613526501061" c="-0.00029046825258585121" d="-2.9213419867701168e-06" /> - <width sOffset="92.812128675011309" a="3.6909024667638022" b="-0.0019572424931890262" c="5.5484273404683272e-05" d="-4.5282459676503682e-07" /> - <width sOffset="100.72048636347003" a="3.6786700276829909" b="-0.0011646253654663281" c="4.8616512048781939e-05" d="1.3232799704603879e-07" /> - <width sOffset="106.73820645468575" a="3.6734510226315935" b="-0.00056512827937975113" c="0.00020311138726135765" d="-2.373354297002122e-06" /> - <width sOffset="108.18570382375123" a="3.6730513717229534" b="7.9598159545974908e-06" c="0.00019747427110951038" d="-6.8762504997239657e-06" /> - <width sOffset="110.79253499981702" a="3.6742922595172449" b="0.00089733988908548116" c="0.00014150628736023558" d="-7.5194063029457552e-06" /> - <width sOffset="119.32342636150263" a="3.6875772590920697" b="0.0016699900553933727" c="-0.0016765630062411409" d="0.0002314605071373323" /> - <width sOffset="120.86458363616403" a="3.6870161234969232" b="-0.0018484332878129115" c="-0.00060744762169253339" d="0.00023212957163336242" /> - <width sOffset="123.09974414192595" a="3.6824419340584975" b="-0.0010848011865659422" c="7.7364854939701336e-05" d="-3.7123845599412372e-06" /> - <width sOffset="124.13466953524321" a="3.6813979938859798" b="-0.0009365961582481928" c="0.00019129224569571716" d="-6.3544383588046297e-06" /> - <width sOffset="130.93663227251102" a="3.681877992712705" b="0.00078373267208767857" c="5.3744935073641244e-05" d="-5.4285805903983275e-06" /> - <width sOffset="134.80046589475643" a="3.685395432639166" b="0.00095592238326366267" c="0.000140480260110157" d="-3.7173356154649424e-05" /> - <width sOffset="139.22697717505207" a="3.6891552450123926" b="1.44728380347698e-05" c="-0.0007195588451327378" d="1.7820093951028373e-05" /> - <width sOffset="140.04903863736013" a="3.6886907751849938" b="-0.0011324426957301809" c="-0.00039606532888501137" d="1.233005722824517e-05" /> - <width sOffset="141.00868090885803" a="3.6872501901343817" b="-0.0018585400187997054" c="-0.00036111743371157554" d="1.0585869957450749e-05" /> - <width sOffset="151.08072954520503" a="3.6427132380698573" b="-0.0059112370394736775" c="-4.0329849203145181e-05" d="1.1014894423532995e-05" /> - <width sOffset="158.63965333249521" a="3.600483604650913" b="-0.0046328526185795719" c="0.00048214661588060007" d="1.7810282209151207e-05" /> - <width sOffset="161.15277818155204" a="3.5921684991842895" b="-0.0018720049815707657" c="0.00058669836111517745" d="2.8778099919520203e-05" /> - <width sOffset="162.64620072291112" a="3.5907771784854905" b="7.2924462041666464e-05" c="-0.00048143600770643382" d="0.00013770404994170222" /> - <width sOffset="167.3403051904059" a="3.5947543500920309" b="0.0046558705297565185" c="-4.3560199538570992e-05" d="-3.0334279369042879e-06" /> - <width sOffset="171.22482681789904" a="3.6120050719086372" b="0.0041801306474841772" c="-8.0048388865182693e-05" d="-4.5994435705683742e-06" /> - <width sOffset="177.19080795496512" a="3.6331178188113911" b="0.0027338732594987297" c="-0.00050414735824458703" d="2.0975863911909022e-05" /> - <width sOffset="179.34236892185163" a="3.6368750278861692" b="0.00085577103042644691" c="-0.00010792197889572747" d="7.711957336926202e-06" /> - <width sOffset="181.29687545424605" a="3.6381929462336329" b="0.00052228385209975893" c="-5.6307042034394535e-05" d="1.126552607204042e-05" /> - <width sOffset="191.31728928433319" a="3.6491073888197132" b="0.0027873143842117344" c="-4.7791133599728255e-05" d="-8.9567596782885375e-06" /> - <width sOffset="191.36892409059305" a="3.6492511826063976" b="0.0027823073720609085" c="-5.2347362081671549e-05" d="-9.2024715385089934e-06" /> - <width sOffset="198.36771045190679" a="3.6630050198503854" b="0.00069727708363055089" c="-0.00037225955749429362" d="3.6138416606835908e-05" /> - <width sOffset="201.44097272694006" a="3.6626809475462849" b="-0.00056684978624191567" c="-2.5305266897785301e-05" d="3.5093583576216794e-05" /> - <width sOffset="207.70501119366321" a="3.6667628789253213" b="0.0032471487111026109" c="0.0010914440090738376" d="-0.00022419006694709574" /> - <width sOffset="211.10393178415916" a="3.6816055856322523" b="0.0028966360923139596" c="-0.00067298284888971734" d="6.1308857701021307e-05" /> - <width sOffset="211.15914652824057" a="3.6817634812717421" b="0.0028228796718213593" c="-0.0010039248154701285" d="7.6591935295065042e-05" /> - <width sOffset="215.27238931545438" a="3.6817196103035101" b="-0.0015483701961603313" c="6.1034467354384507e-05" d="3.0923852376303636e-06" /> - <width sOffset="221.58506999963404" a="3.6751553835933994" b="-0.00040809391528800684" c="0.00011247079086091439" d="2.7180454826432526e-06" /> - <width sOffset="230.21746859326174" a="3.6817621287840736" b="0.0021413239091623423" c="-0.00043293565350107353" d="-1.3809182747848683e-05" /> - <width sOffset="231.65711863598105" a="3.6839063828198726" b="0.00080890982980757239" c="-0.00049221967846950899" d="-1.4237241462941804e-05" /> - <width sOffset="238.24664045883605" a="3.663789962399103" b="-0.0075326946584224185" c="1.7083393238739506e-06" d="2.6432545334729194e-05" /> - <width sOffset="241.72916727232806" a="3.6386942765935757" b="-0.0065590748085130775" c="0.00029018988172019316" d="2.6608351289231946e-05" /> - <width sOffset="245.38916700984703" a="3.6198798827371284" b="-0.0033655806884430291" c="0.00031031615046164351" d="-1.2245944019052854e-05" /> - <width sOffset="247.59828998444732" a="3.6138272898245924" b="-0.0021738164750501532" c="0.00070679460432828225" d="-3.6560000270699034e-05" /> - <width sOffset="251.80121590867506" a="3.614461812317153" b="0.0018299424137997416" c="0.00024535666763882998" d="-3.6135054081063458e-05" /> - <width sOffset="260.91649749993383" a="3.6241607928077806" b="-0.0027042743369642178" c="-0.00059137870826045228" d="2.1378694917323844e-05" /> - <width sOffset="262.04439379803131" a="3.6203890046271807" b="-0.0039567113245854617" c="-0.0013964797503592066" d="0.00030522497778797829" /> - <width sOffset="265.29480319114487" a="3.6032558005294204" b="-0.003360719821602738" c="0.00040287799430654828" d="3.423141129164834e-05" /> - <width sOffset="266.21665745414771" a="3.6005268955990886" b="-0.0025306590992172874" c="0.0003432561698262195" d="-6.9619402357655015e-08" /> - <width sOffset="269.1136198837653" a="3.5960747187484929" b="-0.00054361146357838537" c="0.0010665212896033476" d="-8.7616696896616677e-05" /> - <width sOffset="271.94531318136904" a="3.6010978492521999" b="0.0033888508942736375" c="0.00032063647757512513" d="-8.8640836870812318e-05" /> - <width sOffset="275.55576832135779" a="3.6133409999721273" b="0.0022377354748800891" c="-0.00011628936970403498" d="4.413128588369918e-06" /> - <width sOffset="282.01736181771605" a="3.6241355999536919" b="0.0012876795616587927" c="-3.069729042462003e-05" d="4.410406043531814e-06" /> - <width sOffset="282.96840970878907" a="3.6253362733275156" b="0.0012412579071742402" c="-9.3538814811814494e-05" d="7.7052093989440656e-07" /> - <width sOffset="285.99308906665453" a="3.6282562450564142" b="0.00069655582313191741" c="-2.8625942515957362e-05" d="-8.6007088423350737e-07" /> - <width sOffset="292.08941045406306" a="3.6312439194361095" b="0.00025163598177348862" c="-4.2684159828059594e-05" d="-9.059152414382288e-07" /> - <width sOffset="299.17747802831639" a="3.6305604451127818" b="-0.0004900018895258873" c="-0.00045038519248564746" d="2.0952299360140831e-05" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="33.294406260915792" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="33.294406260915792" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="204.95223419792026" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="238.24664045883605" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="63.914818631574008" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="0.12892234844505301" b="0.0022014472521371571" c="0.0084870216331034663" d="-0.012620369708807718" /> - <width sOffset="0.33263244143021797" a="0.13012918334488699" b="0.0036584472324095799" c="0.0030136352633729126" d="0.00045524736242462621" /> - <width sOffset="3.8292151874024647" a="0.19922784012478445" b="0.041430984265724287" c="-4.628717256043198e-06" d="-0.00020827476345538836" /> - <width sOffset="4.1787855014830821" a="0.2137014197484679" b="0.041351394985248896" c="0.0015753072264439694" d="0.00051847542050210494" /> - <width sOffset="9.6724107902364374" a="0.57437488811229231" b="0.10560232851097268" c="0.0070191578183333696" d="-7.9706200573441589e-05" /> - <width sOffset="10.072048636347002" a="0.61769352042822634" b="0.11117438100558076" c="0.0069222163789469434" d="-7.9012627111716826e-05" /> - <width sOffset="14.09684382477818" a="1.1721290226559704" b="0.16305561633207066" c="0.0056528295245265809" d="-0.00027652972855530004" /> - <width sOffset="16.84260014401918" a="1.6567333268534226" b="0.18784378076682517" c="0.0053682293405894537" d="-0.00091082199514689981" /> - <width sOffset="17.41281100666453" a="1.7654204543855228" b="0.19307739097351201" c="0.005149404938890715" d="-0.00087183123195579821" /> - <width sOffset="20.144097272694005" a="2.3134205267415635" b="0.20169500301095702" c="-0.0020079968331174329" d="-0.000873950121513333" /> - <width sOffset="20.407144375366297" a="2.3663209650585788" b="0.20045719178006" c="0.22260806634986932" d="-0.44609149673063325" /> - <width sOffset="20.9062000770748" a="2.466356175428841" b="0.089338755724741731" c="-0.091942001612405108" d="0.029996114326030516" /> - <width sOffset="22.153840644620125" a="2.4929563037107272" b="-5.9031022618880047e-06" c="1.9675386763517186e-05" d="-3.2849753445567245e-06" /> - <width sOffset="26.146285559594524" a="2.4930373046238161" b="-5.8810472108880921e-06" c="0.00075170866480784465" d="-0.00025916338628953267" /> - <width sOffset="28.131029134061251" a="2.4939605471078274" b="-8.4677882601637625e-05" c="0.00089312229278357938" d="-0.00016755751746763193" /> - <width sOffset="30.216145909041007" a="2.4961480317913982" b="0.0014543751962725715" c="-0.00015488931510878359" d="-0.00016921129513520225" /> - <width sOffset="33.294406260915792" a="2.4942216328343103" b="-0.0043093837830704557" c="0.0036492256324950579" d="-0.00091830617754897577" /> - <width sOffset="35.039940578530882" a="2.4929342782903809" b="3.6379488781819284e-05" c="0.0015267693317280394" d="-0.00075252993893357872" /> - <width sOffset="36.699059976647639" a="2.4937605199421622" b="-0.0011118512459806907" c="0.00072742532246198493" d="-0.0001142380512613118" /> - <width sOffset="40.288194545388009" a="2.493858770573687" b="-0.00030500149000576107" c="-0.00049435643586812506" d="-0.00011360227104742848" /> - <width sOffset="40.409955657604456" a="2.4938140989639344" b="-0.00043044099180579719" c="-3.2110260065634192e-06" d="5.7232269576237652e-07" /> - <width sOffset="50.360243181735015" a="2.4897769989421219" b="-0.00032434829860115283" c="1.6499376083276072e-05" d="5.1927475433659306e-07" /> - <width sOffset="60.432291818082014" a="2.4887145252378144" b="0.00016605203341229884" c="3.464514033676828e-05" d="5.8334540720389783e-07" /> - <width sOffset="70.413120866615586" a="2.4944031022060034" b="0.0010319597476942041" c="-0.00034594954009408059" d="3.3994118510231237e-05" /> - <width sOffset="70.504340454429013" a="2.4944943843010119" b="0.00096969359528803652" c="-0.00034324414529220929" d="3.4669990173020504e-05" /> - <width sOffset="76.948189772847655" a="2.4957669721954159" b="0.00086489267970345056" c="-0.00070362273236244141" d="8.4225260771424623e-05" /> - <width sOffset="80.576389090776019" a="2.4936652876751517" b="-0.00091469323863346309" c="0.00018595084668521569" d="0.00010479996086393923" /> - <width sOffset="81.932302185066632" a="2.493028164058694" b="0.00016759742171651958" c="-0.00051426648910323901" d="0.00012212413865928711" /> - <width sOffset="85.730718728968341" a="2.4929377703884965" b="0.001546810323449564" c="-0.00044125573766483822" d="3.1794087870260094e-05" /> - <width sOffset="90.648437727123024" a="2.4936545060642916" b="-0.00048641226318449078" c="3.0073067325252993e-05" d="3.2894414037979276e-05" /> - <width sOffset="92.812128675011309" a="2.4930760512617014" b="0.00010571675660896017" c="-0.00012132206463305866" d="3.042589664813045e-05" /> - <width sOffset="95.307142602838354" a="2.4930571405468429" b="6.8528520232236743e-05" c="2.5056138593940657e-05" d="-2.1798804413872505e-06" /> - <width sOffset="100.72048636347003" a="2.4938165577648395" b="0.00014816395303225845" c="-3.6571614519028206e-06" d="-1.1528559083071453e-06" /> - <width sOffset="108.18570382375123" a="2.4942391965480093" b="-9.9183210269149615e-05" c="-3.414527777066772e-05" d="3.3500402942820094e-06" /> - <width sOffset="110.79253499981702" a="2.4938079517103864" b="-0.0002089088717742866" c="-6.7660399721529638e-06" d="3.8041164163090556e-06" /> - <width sOffset="115.68192889223651" a="2.4930694144223224" b="-2.2469494872620534e-06" c="-0.00020291785645115717" d="1.0826484547492886e-05" /> - <width sOffset="119.32342636150263" a="2.49089322942319" b="-0.0010494027519047698" c="0.0015409835705680621" d="-0.00022815342889295984" /> - <width sOffset="120.86458363616403" a="2.4921008695973308" b="0.002074686701026271" c="0.00048595499780310466" d="-0.00022862625412200279" /> - <width sOffset="123.09974414192595" a="2.4966129221802134" b="0.00082045068885751478" c="-0.00017536604800745499" d="7.2157020712980919e-06" /> - <width sOffset="130.93663227251102" a="2.4957453162202268" b="-0.00059870118142651887" c="-6.2943791589632097e-06" d="6.8621041606337574e-06" /> - <width sOffset="134.80046589475643" a="2.4937338978662682" b="-0.00034000466154793935" c="-7.6413014488606538e-05" d="3.8606879724836973e-05" /> - <width sOffset="137.30357234523149" a="2.4930095450458705" b="3.1345874300162113e-06" c="-0.00048682820004009475" d="4.9809592996024345e-05" /> - <width sOffset="139.22697717505207" a="2.491568985561698" b="-0.0013167911383785598" c="0.00016697809938790462" d="-5.1838571094698422e-06" /> - <width sOffset="141.00868090885803" a="2.489723600841609" b="-0.00077114810065904982" c="0.00013973519053152116" d="-4.9315509645709916e-06" /> - <width sOffset="151.08072954520503" a="2.4910932444269198" b="0.0005428303899982518" c="-1.0124524977860954e-05" d="-4.2435328957799459e-06" /> - <width sOffset="156.75612795355158" a="2.4930721699166405" b="1.7854507801725455e-05" c="0.00019876454142689001" d="-2.7281549190262787e-05" /> - <width sOffset="161.15277818155204" a="2.4946742467440548" b="0.00018355016121824122" c="-0.0001528096351135947" d="-4.0131880300001411e-05" /> - <width sOffset="162.64620072291112" a="2.4944738805708839" b="-0.00054138825466444086" c="0.00086445675905842093" d="-0.00014905783032218261" /> - <width sOffset="167.3403051904059" a="2.4955630532314319" b="-0.0022789840803525748" c="0.00026669345726961283" d="-8.3203524435631138e-06" /> - <width sOffset="171.22482681789904" a="2.4902468616174236" b="-0.00058368115613384301" c="0.00017159014251067145" d="-7.7822370345024821e-06" /> - <width sOffset="179.34236892185163" a="2.4926529214830651" b="0.00066367963987922244" c="-0.00027876059709036442" d="5.4816695408104085e-06" /> - <width sOffset="180.59523301894552" a="2.4930576403111453" b="-9.0054365542721962e-06" c="-6.1843841761716222e-06" d="3.6449986959411509e-06" /> - <width sOffset="181.29687545424605" a="2.4930495361849787" b="-1.2300567687848797e-05" c="-4.3735892497350588e-06" d="2.541987299389089e-07" /> - <width sOffset="191.36892409059305" a="2.4927416932308191" b="-2.3040117031979807e-05" c="1.7366187940969334e-06" d="1.5427257352406678e-07" /> - <width sOffset="198.36771045190679" a="2.4927183931651613" b="2.3938536110555513e-05" c="0.00013166957967504495" d="-4.5186615571793765e-05" /> - <width sOffset="200.37228694281839" a="2.4929314910459048" b="7.0982443912438742e-06" c="0.00039193249697398996" d="-4.7676484310387959e-05" /> - <width sOffset="201.44097272694006" a="2.4933285079529957" b="0.00068145121157292023" c="0.00024463137429488977" d="-4.317252219282367e-05" /> - <width sOffset="207.70501119366321" a="2.4965846832074101" b="-0.0013358214311372536" c="-0.0010239382484707054" d="0.00021611112833046526" /> - <width sOffset="211.10393178415916" a="2.4887010650544741" b="-0.00080641509457435138" c="0.00065810959703665626" d="-6.9387796072981127e-05" /> - <width sOffset="211.51302136328704" a="2.4884765560137763" b="-0.00030280057317980981" c="0.00057867219869881697" d="-6.7876500563881183e-05" /> - <width sOffset="215.27238931545438" a="2.4919101857136923" b="0.0011702181905142413" c="-0.00030668163066723626" d="5.6230494935228786e-06" /> - <width sOffset="217.27457095327594" a="2.4930689025977477" b="9.7774150556442438e-06" c="-8.9661559764638498e-06" d="1.2421605242651443e-06" /> - <width sOffset="221.58506999963404" a="2.4930439389899335" b="1.7197272579464254e-06" c="-1.0382361430463774e-05" d="1.9856156047673783e-06" /> - <width sOffset="225.28329798579006" a="2.4930087334657669" b="6.3981880892268264e-06" c="-0.00015593592281944158" d="1.148249722855176e-05" /> - <width sOffset="231.65711863598105" a="2.4896878059386331" b="-0.0005819673591015435" c="6.2220689561557632e-05" d="1.1068179799359479e-05" /> - <width sOffset="238.24664045883605" a="2.4917215794700609" b="0.0016798426218717025" c="-0.0004943551312033129" d="-2.9601606997689827e-05" /> - <width sOffset="239.74747581323214" a="2.4930291359619492" b="-4.0821549014231559e-06" c="0.00045039063807721206" d="-6.2527374267115163e-05" /> - <width sOffset="241.72916727232806" a="2.4943031689866353" b="0.0010443344572076876" c="9.0231107786282582e-05" d="-5.7292057951695546e-05" /> - <width sOffset="245.38916700984703" a="2.496525224025445" b="-0.0005975580254211992" c="-0.00026680223594766924" d="-1.8437762643287552e-05" /> - <width sOffset="247.88981521890167" a="2.4930742486239645" b="-0.0022778024380850775" c="-0.22518935052616759" d="0.20948618834616045" /> - <width sOffset="248.38994497898813" a="2.4618146558683374" b="-0.070329393464283102" c="-0.031172850048072364" d="0.031140710910304525" /> - <width sOffset="248.8900746240123" a="2.4227392044170495" b="-0.078142679854537919" c="0.00087177641114350964" d="-1.0924189279724756e-05" /> - <width sOffset="251.80121590867506" a="2.2023733919458057" b="-0.073344690360464759" c="0.00077741304235025115" d="-9.9866604965384244e-06" /> - <width sOffset="261.87326454502204" a="1.5323035971626164" b="-0.060723731601931424" c="0.00044635926696630324" d="1.5111525996624913e-06" /> - <width sOffset="262.04439379803131" a="1.5219250696367532" b="-0.060570828582762734" c="0.0013245749689057597" d="-0.00028233513011063249" /> - <width sOffset="263.29441132721229" a="1.4477287195871473" b="-0.058582827763998688" c="0.017648685598804361" d="-0.011766049773715398" /> - <width sOffset="264.29442419720323" a="1.3950277736748351" b="-0.05858406019026216" c="1.3595625877460354e-05" d="-0.00026532035856645104" /> - <width sOffset="265.29480319114487" a="1.3361694942765023" b="-0.059353423152061976" c="0.00039429354553327837" d="5.6732079296180236e-06" /> - <width sOffset="269.1136198837653" a="1.1155757239230932" b="-0.056093750288475609" c="-0.00026458180519543404" d="9.3220285423815163e-05" /> - <width sOffset="271.94531318136904" a="0.95673053152451937" b="-0.055349722416038347" c="0.00052671286468753623" d="9.3895466423036812e-05" /> - <width sOffset="275.55576832135779" a="0.76817781335393187" b="-0.047874485041856533" c="0.0010205535247933947" d="8.4150096385665748e-07" /> - <width sOffset="282.01736181771605" a="0.50166972227302242" b="-0.034580277479198569" c="0.0010388109688133672" d="7.8996907933017791e-07" /> - <width sOffset="282.96840970878907" a="0.46972249815265155" b="-0.03260221595461868" c="0.0011164899105809084" d="4.429854182960242e-06" /> - <width sOffset="286.96555002299863" a="0.3575280746837004" b="-0.023464353212961579" c="0.0012621200747568039" d="-8.8322460230235404e-05" /> - <width sOffset="292.08941045406306" a="0.25855436107671714" b="-0.017486938221801501" c="-9.7159852412933068e-05" d="-8.8277953529663223e-05" /> - <width sOffset="292.46161784700092" a="0.25202758097343425" b="-0.017595955096842985" c="-0.0051833728756673688" d="0.0064023438629047811" /> - <width sOffset="293.71072519885325" a="0.23443869490270153" b="-0.00057699407061510117" c="-0.0084547967100769266" d="0.0015177367301500556" /> - <width sOffset="297.45804351597616" a="0.19341623681938858" b="-4.649175319898914e-06" c="-0.0054993896885645105" d="0.00091729389571175652" /> - <width sOffset="301.45518357253133" a="0.16411417268617567" b="-1.1431022264296858e-06" c="0.019168574761242931" d="-0.040908440201752917" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276662471" type="pole" s="126.80547747813191" t="-8.489213102747792" height="2.0716320641318475" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276662526" type="pole" s="126.9010387796088" t="5.8909938807741611" height="2.413933632249126" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5174943" s="26.691929383360293" t="-6.9647427431093503" orientation="none" validLength="1.8876105806433081" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="1.8876105806433081" s="26.691929383360293" distance="0" tStart="-6.9647427431093503" tEnd="-6.8680279453398931" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273610399" s="28.579539964003601" t="-6.8680279453398931" orientation="none" validLength="17.285731183385337" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="17.285731183385337" s="28.579539964003601" distance="0" tStart="-6.8680279453398931" tEnd="-6.8739322291523806" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542045855" s="45.865271147388938" t="-6.8739322291523806" orientation="none" validLength="32.480613186137816" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="32.480613186137816" s="45.865271147388938" distance="0" tStart="-6.8739322291523806" tEnd="-7.2614161686493626" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810481311" s="78.345884333526755" t="-7.2614161686493626" orientation="none" validLength="21.500526342864461" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="21.500526342864461" s="78.345884333526755" distance="0" tStart="-7.2614161686493626" tEnd="-7.2860706737741889" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078916767" s="99.846410676391216" t="-7.2860706737741889" orientation="none" validLength="9.3089144166483919" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.3089144166483919" s="99.846410676391216" distance="0" tStart="-7.2860706737741889" tEnd="-7.5610483562861539" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742255" s="109.15532509303961" t="-7.5610483562861539" orientation="none" validLength="44.93655737249037" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="44.93655737249037" s="109.15532509303961" distance="0" tStart="-7.5610483562861539" tEnd="-6.8865642000943357" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742256" s="154.09188246552998" t="-6.8865642000943357" orientation="none" validLength="45.253619241924014" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="45.253619241924014" s="154.09188246552998" distance="0" tStart="-6.8865642000943357" tEnd="-6.9115958755803133" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742257" s="199.34550170745399" t="-6.9115958755803133" orientation="none" validLength="15.797746279210457" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.797746279210457" s="199.34550170745399" distance="0" tStart="-6.9115958755803133" tEnd="-7.0612937502942499" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412769" s="27.602062389856432" t="-7.2126762660766479" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848225" s="71.287391477220851" t="-7.4636267116819894" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283681" s="116.98072745167272" t="-7.7524831645272716" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719137" s="167.2381257185678" t="-7.0367708210480817" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154593" s="204.7924956899347" t="-7.0445312636027086" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8227015" type="278" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.0716320641318475" s="126.80547747813191" t="-8.489213102747792" orientation="+" /> - <signal dynamic="no" id="8227070" type="278" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.413933632249126" s="126.9010387796088" t="5.8909938807741611" orientation="+" /> - </signals> - </road> - <road name="" length="5.0000000000001679" id="33782227" junction="33556490"> - <link> - <predecessor elementType="road" elementId="4942083" contactPoint="end" /> - <successor elementType="road" elementId="4940168" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-568.67138055502642" y="-226.53414703563311" hdg="1.2540727317287357" length="5.0000000000001679"> - <paramPoly3 aU="0" bU="5.0000490072122075" cU="-4.8438295579421873e-05" dU="-4.6191376171645928e-06" aV="-0" bV="4.4408920985006262e-16" cV="-0.0054356483734887655" dV="-6.7380970300639486e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="157.09668835325331" b="-0.00077168252636308516" c="6.1059917661623325e-05" d="-2.9454453885693447e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028031831405683078" b="3.3270087645799742e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.5592537479267807" b="0.0054339933405768122" c="-0.00026619852465333709" d="0.00010542353897851214" /> - <laneOffset s="3.1631240908151597" a="1.5771151954442659" b="0.0069143548946691748" c="-0.014048295823216636" d="0.0078667837148590665" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15287265664435828" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000001679" space="0" width="0.15287300000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.5724669725242828" b="-0.0036727423405306372" c="-0.0011843393394063888" d="0.00010679741814004056" /> - <width sOffset="2.0728472509633633" a="3.56071637275863" b="-0.0072060233981690036" c="0.046383328709867652" d="-0.011227222187625688" /> - <width sOffset="3.1631240908151597" a="3.593445182089825" b="0.053897796820183828" c="-0.0051215127774563579" d="-0.0034658620117453496" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.0728472509633633" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="2.0728472509633633" type="none" width="0" /> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="0.18965951154709648" b="-0.029631146419976235" c="0.048659193531514031" d="-0.029207709475615469" /> - <width sOffset="0.84174108591773233" a="0.18177476654818614" b="-0.0097977064343309599" c="-0.0051069603431019087" d="0.00090247578152361885" /> - <width sOffset="2.0728472509633633" a="0.16365644871676821" b="-0.018268689658720878" c="-0.048677373693257579" d="0.01223649538728927" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782225" s="0" t="2.575224152154556" orientation="none" validLength="5.0000000000001679" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.0000000000001679" s="0" distance="0" tStart="2.575224152154556" tEnd="2.6222116615913422" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="427.28101609005961" id="33782252" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556490" /> - <successor elementType="junction" elementId="33554459" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-562.79869504182966" y="-228.47304419041902" hdg="4.4143065880620433" length="19.044495975165031"> - <paramPoly3 aU="0" bU="19.335491175278719" cU="-2.4744850710259541" dU="2.1267844734094843" aV="0" bV="8.8817841970012523e-16" cV="0.98022644884584376" dV="0.27311253958200005" /> - </geometry> - <geometry s="19.044495975165031" x="-567.17710713388067" y="-246.99159049387529" hdg="4.5473725574917516" length="88.026951516058446"> - <paramPoly3 aU="0" bU="88.089248391604897" cU="-7.0941808225132617" dU="6.7529900372848122" aV="0" bV="-1.0658141036401503e-14" cV="22.358786084018035" dV="-16.702097103193537" /> - </geometry> - <geometry s="107.07144749122348" x="-576.01150505692328" y="-334.47686443900898" hdg="4.49020543991222" length="63.974209278564345"> - <paramPoly3 aU="0" bU="58.565843731572258" cU="13.880440866046875" dU="-9.5121281250881307" aV="0" bV="2.1316282072803006e-14" cV="-10.351197792309977" dV="0.37691866352110281" /> - </geometry> - <geometry s="171.04565676978783" x="-599.60877406173972" y="-393.66607959314274" hdg="4.1636629405765397" length="47.997793193283975"> - <paramPoly3 aU="0" bU="41.383787898450905" cU="23.192719721697721" dU="-16.650647940581976" aV="0" bV="1.7763568394002505e-14" cV="-6.1697606285401356" dV="3.66236475761586" /> - </geometry> - <geometry s="219.04344996307179" x="-626.7462214727833" y="-433.2480705497872" hdg="4.1279160347446489" length="127.97514895602772"> - <paramPoly3 aU="0" bU="122.55155562347441" cU="0.19337378136466654" dU="2.5642532155869668" aV="0" bV="-0" cV="40.588297712655176" dV="-16.395885400004921" /> - </geometry> - <geometry s="347.01859891909953" x="-675.71025813288156" y="-551.10470878647334" hdg="4.3680701324326456" length="80.262417170960077"> - <paramPoly3 aU="0" bU="72.004159665265917" cU="16.749909820435509" dU="-8.5016738902388056" aV="0" bV="-7.1054273576010019e-15" cV="-2.4572250115723637" dV="1.2535993816225424" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.92295377009813" b="0.0011000460165425819" c="6.1297652364802701e-05" d="-4.9983833548817027e-06" /> - <elevation s="10.173357525953801" a="156.93522619903641" b="0.00079529578704256644" c="-8.1662045548261077e-05" d="-7.0950332614098556e-06" /> - <elevation s="20.346715051907601" a="156.92739477385791" b="-0.003069206884995998" c="-0.00033201129914355281" d="-2.3593932792998434e-07" /> - <elevation s="30.520072577861402" a="156.86155997011952" b="-0.0098978033644872357" c="-0.00043316372122256195" d="-5.2577037853393317e-07" /> - <elevation s="35.069955774318956" a="156.80750948753038" b="-0.013872144644767633" c="-0.00042380060605262351" d="7.5261263738772446e-06" /> - <elevation s="40.693430103815203" a="156.71743619438018" b="-0.017924601753870294" c="-0.00029578158874088781" d="-1.5223183952513254e-06" /> - <elevation s="50.866787629769007" a="156.5028673745594" b="-0.024415452547136004" c="-0.0003297788351949467" d="6.4041821674624349e-06" /> - <elevation s="61.040145155722804" a="156.22709211287213" b="-0.029136923704751752" c="-0.00015484893345786091" d="1.2907611882772328e-07" /> - <elevation s="71.213502681676601" a="155.91478124532188" b="-0.032247513777956482" c="-0.00047156534613031177" d="2.7965545713853694e-05" /> - <elevation s="81.386860207630406" a="155.56735537988533" b="-0.033159252189328893" c="0.00035041089356222763" d="-1.5819892663303365e-05" /> - <elevation s="91.56021773358421" a="155.24962401228117" b="-0.030941485530822981" c="0.00016955095579927786" d="-7.7549563361368419e-06" /> - <elevation s="101.73357525953801" a="154.94422796483886" b="-0.029899529425091571" c="-6.7478099898503986e-05" d="1.4131508753424238e-05" /> - <elevation s="111.9069327854918" a="154.64794483166398" b="-0.026884772190646899" c="7.6915219597441974e-05" d="2.0176763555518452e-05" /> - <elevation s="122.08029031144561" a="154.40364134017221" b="-0.019055084332338445" c="0.00044798305819283417" d="-1.5844864165670302e-06" /> - <elevation s="132.2536478373994" a="154.25448382022947" b="-0.010432070437793145" c="0.00044122123764285878" d="3.6027136407948436e-06" /> - <elevation s="139.06400942840088" a="154.20503993640529" b="-0.0039210254435098502" c="0.0005160722480340832" d="-2.3581654711075784e-07" /> - <elevation s="142.4270053633532" a="154.19768121838868" b="-0.00045792877162907186" c="0.00053563303088506012" d="-3.4908239420863105e-06" /> - <elevation s="152.60036288930701" a="154.24478352840856" b="0.0093565723339901815" c="0.00025190448277688548" d="1.4465613896649396e-05" /> - <elevation s="162.77372041526081" a="154.38127374161027" b="0.018973452814520193" c="0.00048736732468831529" d="-7.850167905544121e-07" /> - <elevation s="172.94707794121462" a="154.62391206049369" b="0.028646035768346283" c="0.0011067842260998333" d="-3.7726332825162745e-05" /> - <elevation s="183.12043546716842" a="154.99016491019495" b="0.039451749220479018" c="0.00043415180222710562" d="-1.0905645726098624e-05" /> - <elevation s="193.29379299312222" a="155.42497244976144" b="0.044899200729506004" c="-0.00018304300982282764" d="3.0156846590385537e-05" /> - <elevation s="195.04365474075729" a="155.5031409465154" b="0.044535623059962358" c="-0.00042882405334533364" d="2.9451569894747631e-05" /> - <elevation s="203.46715051907603" a="155.86546220139897" b="0.043580461118541636" c="3.9250419088305792e-05" d="-5.2846737760215775e-06" /> - <elevation s="213.6405080450298" a="156.30731981482751" b="0.042738231342079436" c="9.7680524993251508e-06" d="-1.065193685323111e-05" /> - <elevation s="223.81386557098361" a="156.73190651441283" b="0.039629642099156474" c="-0.00054770827568990867" d="3.0513213205768362e-05" /> - <elevation s="233.98722309693741" a="157.11051454830221" b="0.037959674578260827" c="-0.00013803073699513994" d="-1.490293494571597e-06" /> - <elevation s="244.16058062289122" a="157.48083694313726" b="0.03468847887763539" c="1.3929319368764488e-05" d="-1.3312163841074372e-05" /> - <elevation s="251.03741331070626" a="157.71571327403078" b="0.032991428330944879" c="-0.00053047207978644745" d="-8.7993019085244171e-06" /> - <elevation s="254.33393814884502" a="157.81839043400953" b="0.029207131509050459" c="-0.00021632814854385046" d="-2.458849003161793e-05" /> - <elevation s="264.5072956747988" a="158.06724610009118" b="0.017171044454241637" c="-0.00079008718949059669" d="2.4724754149173373e-05" /> - <elevation s="274.6806532007526" a="158.18619450099393" b="0.0087721942674465325" c="-0.00020055271773370507" d="-5.14136965877362e-06" /> - <elevation s="284.85401072670641" a="158.24926710379049" b="0.0030952531236047498" c="-0.00086655270781885499" d="4.3951833553489158e-05" /> - <elevation s="295.02736825266021" a="158.23734794182195" b="-0.00088957233505581939" c="-3.2727315145031138e-05" d="-2.6095064888797043e-06" /> - <elevation s="305.20072577861401" a="158.22216323276896" b="-0.0023656955619008341" c="-0.00012573933393727013" d="9.9688300849466445e-06" /> - <elevation s="315.01855501055451" a="158.1962511379572" b="-0.0019519904366606528" c="0.00013832421367586105" d="6.9283187579220872e-06" /> - <elevation s="315.37408330456782" a="158.19557494570989" b="-0.001851006867124164" c="0.00011891655176073976" d="-4.0612236317613073e-06" /> - <elevation s="325.54744083052162" a="158.18477540217427" b="-0.00069242153770237951" c="0.00016307958630981255" d="-1.2499381162332405e-05" /> - <elevation s="335.72079835647543" a="158.1814486573443" b="-0.0012552406460279012" c="-1.4767419338746621e-05" d="1.6031067097343168e-06" /> - <elevation s="345.89415588242923" a="158.16883819245143" b="-0.0010579579359738143" c="1.3137459595293644e-05" d="1.4882589439100165e-06" /> - <elevation s="356.06751340838304" a="158.16100190720459" b="-0.00032856187341255973" c="5.708784644117555e-05" d="-1.3795135997024065e-06" /> - <elevation s="366.24087093433684" a="158.16211525299406" b="0.00040466087239198411" c="4.4368250001503433e-05" d="-1.5446279671797238e-06" /> - <elevation s="376.41422846029064" a="158.16919764202567" b="0.00082781498806240323" c="6.6252222916657977e-06" d="5.848456337298409e-07" /> - <elevation s="386.58758598624445" a="158.17892078402969" b="0.0011442061606355156" c="6.8311462704815967e-05" d="-4.9297030697423969e-06" /> - <elevation s="396.76094351219825" a="158.19244069409461" b="0.0010034885838636515" c="-5.4162447932217733e-05" d="2.1433993703517759e-06" /> - <elevation s="406.93430103815206" a="158.19930069566129" b="0.0005669682107593755" c="-1.0966580162509989e-05" d="4.9334342185544202e-09" /> - <elevation s="417.1076585641058" a="158.20393885008028" b="0.00034536611903249214" c="-1.1048740417538733e-05" d="-1.7942890019103768e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.028457149297500123" b="0" c="-9.9802214771026177e-06" d="0" /> - <superelevation s="10.173357525953801" a="-0.02949007430920263" b="-0.00020306472254953329" c="-1.2872879302261116e-05" d="-1.0668428252235535e-07" /> - <superelevation s="20.346715051907601" a="-0.033000560719727096" b="-0.00049811010425791617" c="-9.4092875602008576e-05" d="7.7702293860292381e-06" /> - <superelevation s="30.520072577861402" a="-0.039624978665014438" b="0" c="2.0926516388249214e-05" d="0" /> - <superelevation s="40.693430103815203" a="-0.037459142742954261" b="0.00042578586598078272" c="0.00031092215326763062" d="-1.5066048863348759e-05" /> - <superelevation s="50.866787629769007" a="-0.016811152141552835" b="0.0020741485531298601" c="6.5333993787147663e-06" d="-2.1191128752313266e-07" /> - <superelevation s="61.040145155722804" a="0.0047429668429054299" b="0.0021412850917574924" c="5.5466369666606584e-05" d="-5.2337361324000195e-06" /> - <superelevation s="71.213502681676601" a="0.026756965465334664" b="0.0016448123519881373" c="-7.3156122190929388e-05" d="2.1755997524175143e-06" /> - <superelevation s="81.386860207630406" a="0.038209495082665995" b="0.00083183104942500521" c="-4.903805780274219e-06" d="-2.357727831743175e-06" /> - <superelevation s="91.56021773358421" a="0.043681994799314519" b="0" c="-1.2016043990955716e-06" d="0" /> - <superelevation s="101.73357525953801" a="0.043557632104474032" b="-2.4448702313512173e-05" c="-1.1380712198242414e-05" d="8.2452730511949121e-07" /> - <superelevation s="111.9069327854918" a="0.042999191216466941" b="0" c="3.6605735927535463e-08" d="0" /> - <superelevation s="122.08029031144561" a="0.043002979807762028" b="7.4480647818021266e-07" c="2.0518305790803417e-05" d="-1.3245622532221716e-06" /> - <superelevation s="132.2536478373994" a="0.04373949404720448" b="6.959461133656788e-06" c="-1.0261304268383922e-06" d="6.7242987330416139e-08" /> - <superelevation s="142.4270053633532" a="0.043774894590354815" b="6.959461133656788e-06" c="3.75446419844924e-05" d="-2.4827388836281589e-06" /> - <superelevation s="152.60036288930701" a="0.045117350463290268" b="0" c="-1.0978526380151956e-05" d="0" /> - <superelevation s="162.77372041526081" a="0.043981103686030663" b="-0.00022337694794680391" c="-5.5444193059446691e-05" d="1.1147199956880052e-06" /> - <superelevation s="172.94707794121462" a="0.037143995556014213" b="-0.0010053729391912769" c="-2.7654506794403267e-05" d="-5.0217404992230678e-07" /> - <superelevation s="183.12043546716842" a="0.023525066971406917" b="-0.00172397213812508" c="-8.1858321859292678e-05" d="4.3236682336624781e-06" /> - <superelevation s="193.29379299312222" a="0.0020668257041553052" b="-0.0020470573764201183" c="-5.4957696199306766e-06" d="1.1412056698424824e-06" /> - <superelevation s="203.46715051907603" a="-0.018125826161518803" b="-0.0018045434490371812" c="1.0837865869742187e-06" d="1.635667510018169e-06" /> - <superelevation s="213.6405080450298" a="-0.034649705652190742" b="-0.001274630913478601" c="1.3520977257712571e-05" d="2.0488093554256907e-06" /> - <superelevation s="223.81386557098361" a="-0.044060378154420543" b="-0.00036338532653556023" c="3.045963036705625e-05" d="-1.238526669460903e-06" /> - <superelevation s="233.98722309693741" a="-0.045908802577686404" b="-0.00012818404656468434" c="3.1790688041874163e-06" d="2.0451579823593987e-07" /> - <superelevation s="244.16058062289122" a="-0.046668502424072632" b="0" c="2.5078320505555628e-05" d="-9.3706967546098042e-07" /> - <superelevation s="254.33393814884502" a="-0.045059620216592045" b="0.00021930916904156649" c="1.2030568566329888e-05" d="-5.9159797695188148e-07" /> - <superelevation s="264.5072956747988" a="-0.042206281253313251" b="0.00028040551120544533" c="-2.6486959961202933e-05" d="2.6029216999060954e-06" /> - <superelevation s="274.6806532007526" a="-0.03935428918111037" b="0.00054966823372836783" c="0.0001148942686318971" d="-8.6913609628984165e-06" /> - <superelevation s="284.85401072670641" a="-0.0310223383285568" b="0.00018879451975988657" c="-2.7836609390495187e-05" d="1.8241509301447193e-06" /> - <superelevation s="295.02736825266021" a="-0.030062001254327762" b="0.00018879451975988657" c="2.9645532540967865e-05" d="-1.8362932162443695e-06" /> - <superelevation s="305.20072577861401" a="-0.027006556328155372" b="0.00022183008569255319" c="-1.8779668760232682e-05" d="1.0874154820866815e-06" /> - <superelevation s="315.37408330456782" a="-0.025548487710801135" b="0.00017735890048815463" c="2.7470656947150531e-05" d="-2.3713894541488452e-06" /> - <superelevation s="325.54744083052162" a="-0.023397885318003252" b="0" c="-4.2769574051009497e-06" d="1.0297157396490712e-22" /> - <superelevation s="335.72079835647543" a="-0.023840538448282024" b="-8.7022033610731787e-05" c="-0.00011130183567142381" d="7.5739527015648703e-06" /> - <superelevation s="345.89415588242923" a="-0.028270552195257617" b="0" c="0.00011366252294532402" d="-7.448378286477098e-06" /> - <superelevation s="356.06751340838304" a="-0.024349301111708826" b="0" c="-6.903331143688579e-05" d="4.5237973311348582e-06" /> - <superelevation s="366.24087093433684" a="-0.026730886002298181" b="0" c="9.9851889663912103e-06" d="-6.5433585984551769e-07" /> - <superelevation s="376.41422846029064" a="-0.026386406291314324" b="0" c="-1.4993966271683164e-05" d="7.9643147924408012e-07" /> - <superelevation s="386.58758598624445" a="-0.027099665971122077" b="-5.7792666940749167e-05" c="3.1558469451421557e-06" d="-1.9119045460799931e-07" /> - <superelevation s="396.76094351219825" a="-0.027562297217647549" b="-5.2944580478442352e-05" c="-3.3879682084873932e-06" d="2.6084971911247602e-07" /> - <superelevation s="406.93430103815206" a="-0.028176914263659734" b="-4.0886954952442909e-05" c="1.7393773811564623e-06" d="1.7702053235470688e-08" /> - <superelevation s="417.1076585641058" a="-0.028394212439405087" b="0" c="1.1745445209026634e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-3.7836453986431549" b="0.012920761195840312" c="-0.0026977637405855327" d="0.00020399049876755599" /> - <laneOffset s="3.9449338962627145" a="-3.7621342089945307" b="0.0011595704671435066" c="-0.0004910246558903138" d="9.0468687283432899e-05" /> - <laneOffset s="7.5633245266112645" a="-3.7600813678025649" b="0.0011595843597320414" c="0.0060074747478094164" d="-0.0015057698089190605" /> - <laneOffset s="10.316325422595625" a="-3.7427762316758439" b="-0" c="-0.00010843092373756878" d="4.3998839677686985e-06" /> - <laneOffset s="15.593260772675603" a="-3.745149077422965" b="-0.00077680782584896302" c="5.7938044808782376e-05" d="-2.7550906885014068e-05" /> - <laneOffset s="20.539993652359193" a="-3.7509089496261159" b="-0.0022261255732692752" c="-0.0049070711037635471" d="0.00045884338891436101" /> - <laneOffset s="26.696155927540129" a="-3.8435311911558685" b="-0.010475377631521846" c="0.0012821662737741665" d="-0.00018366149380598899" /> - <laneOffset s="29.859015826072934" a="-3.8696480533914128" b="-0.0078766269959061608" c="2.0261788857333746e-05" d="1.3931295171020368e-05" /> - <laneOffset s="35.49605704271584" a="-3.9109096526122369" b="-0.0063201416457028215" c="0.0021559784356901283" d="-0.00060208507745481744" /> - <laneOffset s="38.757347609030546" a="-3.9294750583282414" b="-0.011468957215495162" c="-0.46517316427870181" d="1.0969923511286437" /> - <laneOffset s="39.051876065986832" a="-3.9451778085238871" b="-0" c="0.0012138939736997432" d="-8.3322459897116157e-05" /> - <laneOffset s="40.693430103815203" a="-3.9422753053403494" b="0.0033117580952011752" c="0.0011489811163503583" d="-0.00013845576378223811" /> - <laneOffset s="42.310705295465482" a="-3.9344997134641302" b="0.0059417694220529919" c="0.00061559941690311954" d="8.3298325796590092e-05" /> - <laneOffset s="45.915541185037462" a="-3.9011789433385116" b="0.013627384860840136" c="0.0024189089421872115" d="-0.00029224621821947539" /> - <laneOffset s="49.572465685749698" a="-3.8332884498351314" b="0.019594208711716667" c="0.00081120256426687565" d="-0.0001994590797758124" /> - <laneOffset s="50.866787629769007" a="-3.8070007474404068" b="0.020691680255930496" c="0.00043328110662712845" d="-1.6068164965912007e-05" /> - <laneOffset s="57.623212091906368" a="-3.6523758434323197" b="0.024346042315812402" c="0.0011702191179285345" d="-0.00026297296835770163" /> - <laneOffset s="61.154763729235896" a="-3.5633843785743502" b="0.02277213705698998" c="-0.00078644757224510884" d="1.9895864741428097e-05" /> - <laneOffset s="65.03848025360135" a="-3.4856405606022975" b="0.017563741340057185" c="-0.0012001845948264023" d="7.3948515553473479e-05" /> - <laneOffset s="71.213502681676601" a="-3.4055363285956783" b="0.011200578554302761" c="-0.00032890016069154576" d="0.00034227830810528272" /> - <laneOffset s="72.246846037842886" a="-3.3939358135238464" b="0.011617297745963163" c="0.00011716698983234828" d="-1.6392973787388773e-05" /> - <laneOffset s="81.386860207630406" a="-3.2904823789166207" b="0.0096507134830174368" c="-0.00040368576094551979" d="-1.6603402571295832e-05" /> - <laneOffset s="89.389283468408109" a="-3.2476134971585453" b="-0" c="-0.0014943755298027263" d="0.00019625198155408423" /> - <laneOffset s="91.56021773358421" a="-3.2526484672160825" b="-0.0037136014685383747" c="-0.00024614608172392861" d="0.00018672788988628576" /> - <laneOffset s="93.480974789746242" a="-3.2593662989926728" b="-0.002592485206766307" c="0.0004297404275577505" d="-0.00011918942498977982" /> - <laneOffset s="96.533016007749779" a="-3.2666641687646534" b="-0.0033000468148889385" c="-0.0021160274057970456" d="0.00067604496458341444" /> - <laneOffset s="99.224286210812835" a="-3.2776937970742988" b="-0" c="0.0065581402988671399" d="-0.0015190994131537691" /> - <laneOffset s="101.47738231637938" a="-3.2617767991600264" b="0.0064173802673200544" c="-0.0008980731951807214" d="9.6127982736651872e-05" /> - <laneOffset s="107.86007053925948" a="-3.2324075679604296" b="0.0067015275871112178" c="0.0019372164329379204" d="-0.00022589032097363799" /> - <laneOffset s="111.9069327854918" a="-3.1885325048556394" b="0.011282542589664881" c="-0.00080088424600104047" d="-0.00022517059452857404" /> - <laneOffset s="114.97666880418777" a="-3.1679585385678481" b="-0" c="-0.00038288832122728274" d="2.6190117181519518e-09" /> - <laneOffset s="122.08029031144561" a="-3.187278695240646" b="-0.0054393909497994627" c="-0.00039062768459187315" d="3.1925612784404178e-06" /> - <laneOffset s="123.70132525497439" a="-3.1971090123207468" b="-0.0066806654032974984" c="-0.0009357379106971071" d="0.00010274338350212332" /> - <laneOffset s="128.5918002713546" a="-3.2401431427825482" b="-0.0084612089675701468" c="-5.5010126851483761e-05" d="1.4468186887539987e-05" /> - <laneOffset s="132.2536478373994" a="-3.271154018521353" b="-0.0082820690735932838" c="9.6410707374169948e-05" d="1.3191795124475087e-05" /> - <laneOffset s="137.28241824448241" a="-3.308686953654751" b="-0.0063116110574588276" c="0.00043402265991610061" d="-8.1645686609260518e-05" /> - <laneOffset s="140.38491257755229" a="-3.3265292012780439" b="-0.0059761399592721297" c="0.0010320770558123486" d="-0.00043329914592302827" /> - <laneOffset s="142.93581105199553" a="-3.3422502092226369" b="-0.0091692329389535272" c="-0.0016013433615455859" d="5.2275329950184345e-05" /> - <laneOffset s="150.95694513742779" a="-3.4918483835777789" b="-0.024768449199925859" c="-0.0033808062978426348" d="0.001049860865112354" /> - <laneOffset s="153.44588051261377" a="-3.5582516368377797" b="-0.022086633919909591" c="0.0027225682074553332" d="-0.00028112290751712929" /> - <laneOffset s="156.56442524383075" a="-3.6091780765629586" b="-0.013307764193520408" c="6.8837443589558943e-05" d="0.00023560919112299096" /> - <laneOffset s="160.42050413296462" a="-3.6459610872782955" b="-0.002266816348214662" c="0.00074319946695467637" d="-0.00011887041683985666" /> - <laneOffset s="162.77372041526081" a="-3.6487288632630568" b="-0.000743778218424075" c="5.268401305954307e-05" d="-0.00016254287823073095" /> - <laneOffset s="164.07852335354812" a="-3.6499707315812557" b="-0.0014364866803197446" c="0.00010158930373064349" d="-1.8067454232977198e-05" /> - <laneOffset s="173.65082447246593" a="-3.6702596556265834" b="-0.0044581053805462902" c="-0.00090291300101273805" d="3.1644177048888541e-05" /> - <laneOffset s="180.18057849217354" a="-3.7290579399624635" b="-0.012202001374053164" c="-0.001805857033051487" d="0.00016580706474441197" /> - <laneOffset s="183.12043546716842" a="-3.7763247612660695" b="-0.018520832643096782" c="-8.7400926471212706e-05" d="0.00018724093992483523" /> - <laneOffset s="187.60447240054879" a="-3.844248797296768" b="-0.008010321738499717" c="0.0033265729021628187" d="-0.0022112639986106228" /> - <laneOffset s="188.58998924891637" a="-3.8510287627414903" b="-0.0078965615341376853" c="-0.0019625334184831312" d="0.00022597794558351761" /> - <laneOffset s="193.28095643332949" a="-3.9079304648107538" b="-0.011390869817820701" c="0.00014597357297978556" d="3.6583398870540887e-06" /> - <laneOffset s="198.60560276505919" a="-3.963891919675766" b="-0.0095251923129234823" c="-0.00058636443807345005" d="0.00013456912481174744" /> - <laneOffset s="204.15575644645577" a="-4.0118136672794504" b="-0.0035981327218972121" c="0.00023314276206355157" d="1.0857224232448462e-05" /> - <laneOffset s="209.71416011061393" a="-4.0227458686474895" b="-0" c="0.0055309697645013721" d="-0.00077202304448184263" /> - <laneOffset s="212.70991396802725" a="-3.9938641909408377" b="0.012353190214065448" c="0.0014519916830642745" d="-0.00018840865745296012" /> - <laneOffset s="216.20886666680349" a="-3.9409354795266198" b="0.015594215601790121" c="0.00084665681220203013" d="-0.00025067170451601389" /> - <laneOffset s="219.45476193996109" a="-3.8899705776572095" b="0.013167426291872253" c="-0.0014110012109460088" d="0.00013726458341363105" /> - <laneOffset s="223.47929956473726" a="-3.8508840268314826" b="0.0084799548348116136" c="0.00082397727184892969" d="-0.00044004676596878437" /> - <laneOffset s="226.15569563434835" a="-3.8307223413483036" b="0.0034342423148156654" c="-0.00020427851926246092" d="6.5007639576191541e-07" /> - <laneOffset s="234.92888753823723" a="-3.8158771941472214" b="-0" c="-0.0012742947340085328" d="9.5303579857106469e-05" /> - <laneOffset s="241.6483955838693" a="-3.8444989833426355" b="-0.0042158862279997374" c="-0.0012239672259339693" d="0.0006297640888873725" /> - <laneOffset s="243.59457983121999" a="-3.8526975504085104" b="-0.0018240717254440354" c="0.00040766974538868306" d="-2.0039561151409937e-06" /> - <laneOffset s="245.86994730098374" a="-3.8547609635863327" b="-0" c="0.0027537976511696535" d="-0.00020819990259140142" /> - <laneOffset s="251.92033130035185" a="-3.8000659223998468" b="0.010458253461055708" c="0.00061917945522152701" d="-0.00011706937942131975" /> - <laneOffset s="255.06165153889538" a="-3.7647321440119987" b="0.010882651095706772" c="-0.0011180485917923052" d="0.00022813514390516304" /> - <laneOffset s="259.55004142005066" a="-3.717782048850927" b="0.014633963114597555" c="0.0013571673073662302" d="-7.644300331039101e-05" /> - <laneOffset s="264.89596960147151" a="-3.6124425577684942" b="0.022590619147858964" c="0.00071481262283420749" d="-7.9370901893964141e-05" /> - <laneOffset s="269.86109705895097" a="-3.4923705601633319" b="0.023818819454035772" c="-0.001454406954969463" d="0.00036079714676610653" /> - <laneOffset s="273.73777464230636" a="-3.4008699628882204" b="0.028809145256560136" c="0.0026842822370883065" d="-0.00022945112071522792" /> - <laneOffset s="279.45673458663259" a="-3.1912363155182173" b="0.036998119245658406" c="0.00078944533608060047" d="-0.0001439896156891823" /> - <laneOffset s="284.27926577743602" a="-3.0106011504691561" b="0.034566152615494901" c="-0.00082416284857765457" d="5.8139861206904063e-05" /> - <laneOffset s="288.49756157048506" a="-2.8750920606247452" b="0.030716652715889012" c="0.00016752419888759471" d="-0.00010285855839950552" /> - <laneOffset s="293.33093161858551" a="-2.734327734551965" b="0.025127285455032383" c="0.1271623568844045" d="-7.9322734898774643" /> - <laneOffset s="293.33906825572484" a="-2.7341191371777698" b="0.025621168105583219" c="-0.00098976084851898349" d="5.3641028160417937e-05" /> - <laneOffset s="295.02736825266021" a="-2.6934259563467471" b="0.022737829851486171" c="-0.00066433282618701128" d="4.9673640031100503e-05" /> - <laneOffset s="296.76524204366967" a="-2.6556561755093013" b="0.020878850411897118" c="0.0015828240512813733" d="-0.0013577136044951653" /> - <laneOffset s="297.46831909189984" a="-2.6406661817178252" b="0.021091120820535398" c="-0.0002199824830095098" d="-6.4364786733504516e-06" /> - <laneOffset s="305.20072577861401" a="-2.4937095578965569" b="0.016534619410506601" c="-0.0003517104098262222" d="-7.1945616946076867e-06" /> - <laneOffset s="308.99029691827303" a="-2.4364928401642771" b="0.013558996121844214" c="-0.0005403638213154142" d="4.3151660949937306e-05" /> - <laneOffset s="313.2231220268817" a="-2.3855090094053999" b="0.011303885144703364" c="-0.00016638392108403303" d="-2.8407258036034058e-06" /> - <laneOffset s="315.37408330456782" a="-2.3619928578312273" b="0.010548685402415017" c="-0.00015786405182510269" d="-1.9183258652083261e-06" /> - <laneOffset s="318.40548759213488" a="-2.3315196439429058" b="0.0095387010153875681" c="-0.00018860013044128964" d="2.6728666648896354e-06" /> - <laneOffset s="325.54744083052162" a="-2.2720410007249967" b="0.0072537630982861239" c="-0.00012734064365363737" d="3.4824361653360549e-06" /> - <laneOffset s="326.75603876485616" a="-2.2634539773212166" b="0.0069612162977316996" c="2.6658947830866553e-05" d="-1.4646533540369459e-05" /> - <laneOffset s="335.72079835647543" a="-2.2094582383796477" b="0.0039079082864280097" c="-0.00038845036137988379" d="-9.3148642447730614e-06" /> - <laneOffset s="338.23459846095471" a="-2.2022371984573201" b="0.0017783479504484276" c="-0.00018003421094523112" d="2.1891356456873299e-06" /> - <laneOffset s="343.72291292086601" a="-2.1975380825092583" b="-0" c="-0.003412312292142269" d="0.00041907628268912769" /> - <laneOffset s="345.89415588242923" a="-2.2093351173119347" b="-0.0088909691667519702" c="-0.00068339296083800411" d="0.00040752098124956823" /> - <laneOffset s="348.03520731685472" a="-2.2275041466032146" b="-0.0062129758125562115" c="0.00018649680555542705" d="-1.5990142121914021e-06" /> - <laneOffset s="355.97209825201861" a="-2.2658671064660001" b="-0.0035547522458420425" c="0.00013190834098741815" d="2.5657279981795697e-07" /> - <laneOffset s="366.24087093433684" a="-2.2881827973106712" b="-0.00076451367981793001" c="0.00013736459276674046" d="-3.5394965775467416e-07" /> - <laneOffset s="369.05425365834304" a="-2.2892542911772007" b="-0" c="0.00016269947406403069" d="-4.6194168815424999e-06" /> - <laneOffset s="376.41422846029064" a="-2.2822826744387967" b="0.0016442373049125364" c="5.9364285725601602e-05" d="-4.0251506895269402e-06" /> - <laneOffset s="379.40302668796733" a="-2.2769455509971763" b="0.001891224063788095" c="5.74000055295268e-05" d="8.0310787089830496e-07" /> - <laneOffset s="386.58758598624445" a="-2.2600972382544517" b="0.0028403757574658756" c="7.1336242936597213e-05" d="7.3104508426682176e-07" /> - <laneOffset s="393.2513244737234" a="-2.2377856811813888" b="0.0038884949641494722" c="0.00044030282356797066" d="-4.2600048755504874e-05" /> - <laneOffset s="396.76094351219825" a="-2.2205567254855789" b="0.0054049164904693857" c="-1.2957319805783665e-05" d="-4.2747235454261722e-05" /> - <laneOffset s="401.76093831564344" a="-2.1991994912134092" b="0.0020693074321565959" c="-0.0007703816887601006" d="0.00017898839689190477" /> - <laneOffset s="404.43607400911793" a="-2.1957503433465564" b="0.0017902676934673644" c="0.0003378794401497255" d="-1.2236192143238877e-05" /> - <laneOffset s="406.93430103815206" a="-2.189359879915076" b="0.0032493634914666724" c="0.00024195775368261981" d="-1.320490459437276e-05" /> - <laneOffset s="416.20883894222931" a="-2.1489454979411118" b="0.0043299152585963337" c="0.00055099978490898334" d="-5.5473925286587173e-05" /> - <laneOffset s="425.6007827617434" a="-2.1056336425645394" b="-0" c="-0.00058823063124071847" d="6.7653224935623551e-05" /> - <laneSection s="0"> - <left> - <lane id="3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - <successor id="2" /> - </link> - <width sOffset="0" a="2.4933358730922723" b="0.0024774351768056709" c="-0.0021094317143078383" d="0.00081690018550219646" /> - <width sOffset="1.6789096151609861" a="2.4954152314815476" b="0.0023022263512499294" c="-0.0016779620939998451" d="0.00024424436160498328" /> - <width sOffset="5.2604624027587619" a="2.4933578660018516" b="-0.0003180447077539908" c="0.0015159791453059138" d="0.00019550885039438157" /> - <width sOffset="6.463995341987097" a="2.4955118036816817" b="0.0041805957102771414" c="-0.0028796643416660037" d="0.00037776299844247363" /> - <width sOffset="10.173357525953801" a="2.4906772351898829" b="-0.0015895001888885478" c="0.0013407211665743541" d="0.00037905070686821796" /> - <width sOffset="11.582727519345426" a="2.492161286888853" b="0.0044483964711323964" c="-0.0041651963697763705" d="-0.00024426308136266589" /> - <width sOffset="12.095289313943972" a="2.4933141937980388" b="-1.3962673329885838e-05" c="0.00027774013659391593" d="-4.0900764165133296e-05" /> - <width sOffset="20.086966022030644" a="2.4900651123493502" b="-0.0034113585404865424" c="0.0076323658136783299" d="-0.0026546610789523724" /> - <width sOffset="20.346715051907601" a="2.4896474442899135" b="1.631425795858496e-05" c="0.0058001058929417516" d="-0.0027268484929663483" /> - <width sOffset="21.726021572248875" a="2.4935490138192664" b="0.00045318486302319688" c="-0.00023683314214044057" d="-0.00027510957422024942" /> - <width sOffset="22.234939046201269" a="2.4936820467734568" b="-1.6298451594350116e-06" c="0.00029005203663223247" d="-4.354721878033877e-05" /> - <width sOffset="28.088296260679982" a="2.4948769665767205" b="-0.001082090566450266" c="0.00011097147715043382" d="0.0002524986614435039" /> - <width sOffset="29.103498516459645" a="2.4941569872099669" b="-7.6071235023573991e-05" c="-3.6017081318227276e-05" d="-7.8133132922080005e-06" /> - <width sOffset="30.520072577861402" a="2.4939547416082974" b="-0.00022514946845657996" c="8.8700294075283752e-06" d="4.0409832258681201e-05" /> - <width sOffset="31.130635058305252" a="2.4938297780787093" b="-0.00016912532919144928" c="0.00059308565410375741" d="-0.00022769862646317878" /> - <width sOffset="32.649316880080498" a="2.4941432647117852" b="5.6802911434854567e-05" c="0.000684145658252051" d="-0.00012035529778069723" /> - <width sOffset="38.117364514910633" a="2.4952323648795582" b="-0.0032570208947139429" c="0.00061811480766018213" d="1.5366490276081111e-06" /> - <width sOffset="40.693430103815203" a="2.4909702148231503" b="-4.182018870297179e-05" c="0.00050688737649766413" d="6.6503784307524268e-06" /> - <width sOffset="41.149567641461545" a="2.4910572339412047" b="0.00042475159305588404" c="0.00033082922647610863" d="-3.9829463753457051e-05" /> - <width sOffset="45.407579313821714" a="2.49578912697186" b="0.0010756972064592061" c="-0.00085807590582176007" d="0.00010317958088978672" /> - <width sOffset="50.424627895203457" a="2.4926173431747509" b="0.00025701069431628004" c="-0.00068363301300537597" d="7.8591182760793079e-05" /> - <width sOffset="50.866787629769007" a="2.4926041229038112" b="-0.0003014443268371976" c="-0.00042693990315658894" d="8.6134733018333246e-05" /> - <width sOffset="56.334439343138001" a="2.4922717627547915" b="0.0027548874416671067" c="-0.00048321897266356611" d="2.2036228642499909e-05" /> - <width sOffset="61.040145155722804" a="2.4968314224066424" b="-0.00032899647531313761" c="-0.0001545687249684627" d="1.5778981802152812e-05" /> - <width sOffset="68.035521373172116" a="2.4923675760794524" b="-0.00017508216396459192" c="0.00057484802804001831" d="-6.601116739366573e-05" /> - <width sOffset="71.213502681676601" a="2.495498173799596" b="0.0014785781462110723" c="0.00034966164946611459" d="-2.2858222151794516e-05" /> - <width sOffset="71.401305308312743" a="2.495788035757363" b="0.0016074942820087333" c="7.7238870672113164e-05" d="-0.00019973265107937844" /> - <width sOffset="73.455633200840325" a="2.4976846814798495" b="-0.00060393079083733391" c="-0.0033107031720982557" d="0.0011278302557087207" /> - <width sOffset="75.39662145688348" a="2.4922869112970898" b="-0.00070891981760152697" c="0.0021940738358731588" d="-0.0007834413376563424" /> - <width sOffset="77.126151665611815" a="2.49357075692207" b="-0.00014995071658822608" c="0.0020053571520208128" d="-0.00099157380052865675" /> - <width sOffset="78.150891844889344" a="2.4944559020591694" b="0.0008362569382564071" c="-0.001665780349220602" d="0.00029286833118234208" /> - <width sOffset="81.386860207630406" a="2.4896427634725367" b="-0.00074426358300703349" c="0.0011917554587627356" d="0.00034997530943804499" /> - <width sOffset="82.785472054173766" a="2.4918905169158831" b="0.0046431189820203451" c="-0.0019310838345790147" d="-0.00030984176495289903" /> - <width sOffset="83.768058980645691" a="2.4942944316840068" b="-4.9231833921512082e-05" c="-2.0649012729838019e-05" d="4.1681150169820998e-07" /> - <width sOffset="91.56021773358421" a="2.4928542508699785" b="-0.0002951090497812773" c="8.4936501563293422e-06" d="2.2583703107349171e-06" /> - <width sOffset="93.798446440151309" a="2.4922616023027109" b="-0.00022314653188260309" c="0.00029661103349995553" d="-2.6251202202476916e-05" /> - <width sOffset="101.73357525953801" a="2.496051102094401" b="-0.00047467382004697819" c="-0.00034208802502713775" d="-2.4008953569734491e-05" /> - <width sOffset="101.74154201174797" a="2.4960472987615212" b="-0.0004801290529454502" c="-8.1617214300601666e-06" d="3.6767282833481832e-06" /> - <width sOffset="105.40536352676529" a="2.4943594595139693" b="-0.00039187057606956813" c="0.0013145002940635926" d="-5.4801883036469716e-05" /> - <width sOffset="106.2393574793517" a="2.4949151475946572" b="0.00168634833846456" c="-0.00049044944056958516" d="2.8476965810480002e-05" /> - <width sOffset="111.9069327854918" a="2.4939029724318962" b="-0.0011288090677861167" c="-8.6185688796839785e-06" d="2.8305443754483091e-05" /> - <width sOffset="117.38988191258096" a="2.4921203269663863" b="0.0013294974181224436" c="0.0004680834230781695" d="-0.0002697336279550523" /> - <width sOffset="119.35095188463319" a="2.4944934205015494" b="5.336504355244083e-05" c="0.0017405014295444248" d="-0.00051999028109367483" /> - <width sOffset="121.73250137804813" a="2.4974684185733249" b="-0.00050426265412496785" c="-0.0062106602010277897" d="0.0029107909482065288" /> - <width sOffset="122.08029031144561" a="2.4966642677533137" b="-0.0037680175643036821" c="-0.003158312610419448" d="0.0029067857743007939" /> - <width sOffset="123.33982206442812" a="2.4927161032375107" b="0.002110143727291125" c="-0.00031127936250685008" d="-0.00030251631534986933" /> - <width sOffset="124.56637149466843" a="2.494277784666239" b="-1.8793288385053272e-05" c="0.00023198427305253498" d="2.3409781183081359e-05" /> - <width sOffset="125.38144211981438" a="2.4944292592944137" b="0.00040603001533964079" c="2.7251896124198122e-06" d="-3.0830156514854931e-06" /> - <width sOffset="132.2536478373994" a="2.496347675702105" b="6.6794466153808491e-06" c="-5.8049501148062514e-05" d="-2.8853243795239133e-06" /> - <width sOffset="137.04908375464868" a="2.4947266038673668" b="-0.0007491204172304991" c="0.00048917957679511391" d="-9.6008208948206359e-05" /> - <width sOffset="139.25900133283568" a="2.4944239499328011" b="6.3365207830026749e-06" c="-0.00095314926157129244" d="-4.1397936537085808e-05" /> - <width sOffset="140.08528004382362" a="2.4937550820218455" b="-0.0016535890135928807" c="0.00034165924087721793" d="-1.6806581301849417e-05" /> - <width sOffset="142.4270053633532" a="2.4915405620555169" b="-0.00032993043737121475" c="0.00023177013515179976" d="-1.7646855960662348e-05" /> - <width sOffset="150.39786293294031" a="2.494699340268181" b="1.3267981560996511e-06" c="0.0024441583003853426" d="-0.00067472032395147986" /> - <width sOffset="151.82859990408781" a="2.4977283769046781" b="0.0028517478148797071" c="-0.0046785588192410363" d="0.0012011608412953708" /> - <width sOffset="152.60036288930701" a="2.4976947607910156" b="-0.0022234297932849888" c="-0.0018791704859614632" d="0.0012137684963616552" /> - <width sOffset="154.03726929987369" a="2.494220961868689" b="-0.00010561046645644716" c="-0.013605500950119453" d="0.011272911234875956" /> - <width sOffset="154.77937849193361" a="2.4912569095746204" b="-0.0016742873732106256" c="0.44946349271973385" d="-1.308770861295123" /> - <width sOffset="155.02097750465884" a="2.4986311359735027" b="-0.013673606387212498" c="0.0068870677518508136" d="0.0095905248436628232" /> - <width sOffset="155.51095254195744" a="2.4947129698864181" b="-1.7272619109276466e-05" c="4.1227842290840824e-07" d="4.1052082368713385e-08" /> - <width sOffset="162.77372041526081" a="2.4946249964896694" b="-4.7878333957491331e-06" c="-0.00010406395977724894" d="5.3334988143560623e-05" /> - <width sOffset="164.33050382574555" a="2.494566567983219" b="5.8986039796659478e-05" c="-0.0028596315208265018" d="0.0012873294013954629" /> - <width sOffset="165.70748513051799" a="2.4925867487078133" b="-0.00049370325352831972" c="0.013095794223620122" d="-0.008846207453214492" /> - <width sOffset="166.86511707937177" a="2.4958414311288903" b="-0.0057382027716187181" c="0.0048792848835980474" d="0.0011929517436302286" /> - <width sOffset="167.35364365819646" a="2.4943417352937582" b="-0.00011675885637182263" c="-4.8279464356133816e-05" d="1.1708057146426683e-05" /> - <width sOffset="172.94707794121462" a="2.4942270550421761" b="0.00044205775979745112" c="-0.00014146329865558717" d="2.8768930708766342e-05" /> - <width sOffset="173.72323535098997" a="2.4944983926568809" b="0.00027445515060970207" c="-0.00055927098128592855" d="0.0001143512668501989" /> - <width sOffset="176.92839281191328" a="2.4933978636516265" b="0.00021355551063510564" c="0.00026355071861963741" d="-0.00013271001972733654" /> - <width sOffset="180.32402312802162" a="2.4919658899606398" b="-0.0025871639784609008" c="0.0032255692999868819" d="-0.00083680031776281016" /> - <width sOffset="182.30692636286204" a="2.4929942399718699" b="0.00033416096025770843" c="0.0010712955414760631" d="-0.00060006968264279023" /> - <width sOffset="183.12043546716842" a="2.4936519989210044" b="0.00088580525272086499" c="0.00010622076858241638" d="-0.00073766602148622946" /> - <width sOffset="184.4066060585518" a="2.4933975306935743" b="-0.0025017770785278979" c="0.00050704700054282322" d="-2.5286708510411983e-05" /> - <width sOffset="193.29379299312222" a="2.4934619385530499" b="0.00051907449409330578" c="-0.00016658739375269456" d="-2.8164394038884394e-05" /> - <width sOffset="195.57621045183595" a="2.4934439807076689" b="-0.0006815307294472453" c="-0.00020000541164994108" d="0.00011739268393019754" /> - <width sOffset="197.57328709512643" a="2.4922202563186677" b="-7.5785953125375588e-05" c="-0.00083146746782490405" d="0.00022565104290693706" /> - <width sOffset="198.74553844379534" a="2.4913523317448059" b="-0.0010949128104894394" c="0.00082876686054070801" d="-0.00011756121790346515" /> - <width sOffset="203.46715051907603" a="2.4922840834241988" b="-0.001131277141763011" c="-0.000575914656429971" d="-0.00014649610684128617" /> - <width sOffset="203.79499184207521" a="2.4918461427705769" b="-0.0015561305628208118" c="0.001919370022783317" d="-0.00042697252919320647" /> - <width sOffset="206.63250950528783" a="2.4931296759797301" b="-0.00097695414737174581" c="0.0018299979538525042" d="0.00010474051718381782" /> - <width sOffset="206.88350315873527" a="2.4930014087223338" b="-3.8523132011424358e-05" c="0.00020412821198658696" d="-1.3417557886738866e-05" /> - <width sOffset="212.09047669924269" a="2.4964410445446852" b="0.00099590369412448383" c="-0.00066866538692856702" d="0.00013669951893563527" /> - <width sOffset="213.6405080450298" a="2.4968872757252067" b="-9.1699291833085249e-05" c="-0.0002093737590112865" d="2.9118873945033764e-05" /> - <width sOffset="219.68008007813214" a="2.4951111909102464" b="0.00056570264075786816" c="-0.00044899064647711123" d="0.00010320053375132602" /> - <width sOffset="222.89743730073982" a="2.4957205842881329" b="0.00088138218664509174" c="-0.00092074403322102655" d="0.00015434852692956818" /> - <width sOffset="223.81386557098361" a="2.4958738243935228" b="-0.00041732497755834173" c="-0.0003231065890786708" d="0.00012369571192314289" /> - <width sOffset="225.94901066434181" a="2.4947138109508353" b="-0.00010535530038353891" c="-0.0010701010424168697" d="0.00023861081479406899" /> - <width sOffset="229.04822165082678" a="2.4912118841952635" b="0.00013735535201604221" c="-7.0370494833150738e-05" d="9.2465227542941428e-05" /> - <width sOffset="230.35941000495652" a="2.4914794373917397" b="0.00042972019619334214" c="0.00019236981156267564" d="-2.0042099591919275e-05" /> - <width sOffset="233.98722309693741" a="2.4946132413311868" b="0.0010341597464478924" c="-2.6569843598898628e-05" d="-2.0525710949844742e-05" /> - <width sOffset="237.66844237448166" a="2.4970362151189427" b="4.0860641205603572e-06" c="-0.0011446952168683345" d="0.00033200827409476816" /> - <width sOffset="239.95084214218818" a="2.4950299419877049" b="-3.2577517268036343e-05" c="-0.001284427865068461" d="0.00032949925335616127" /> - <width sOffset="242.4075743790593" a="2.4920834131360925" b="-0.00037745706962781099" c="0.00056413206579646004" d="-7.592007533008999e-05" /> - <width sOffset="244.16058062289122" a="2.4927463391407985" b="0.00090048278755481669" c="0.00015907031280773597" d="-7.3591708289624482e-05" /> - <width sOffset="246.96724529175455" a="2.4948996991470525" b="5.4270254515919984e-05" c="0.0016440735891221818" d="-0.00026455366583461444" /> - <width sOffset="248.46934635033912" a="2.4977941284532212" b="0.0032026562790236856" c="-0.0036605903845966185" d="0.00072927093847475078" /> - <width sOffset="251.6530986033622" a="2.4944204229146032" b="0.0020701103134233585" c="-0.00298552578263087" d="0.0013941115671569455" /> - <width sOffset="252.41192149152994" a="2.494881310257965" b="-5.2621037155170525e-05" c="-0.0028365003721205389" d="0.0016390888202357065" /> - <width sOffset="254.03799086793049" a="2.4943429999443469" b="0.0037244383796614356" c="-0.00096860153543520998" d="0.00010501488810167432" /> - <width sOffset="254.33393814884502" a="2.4953631246271333" b="0.0031787215199840652" c="-0.0010002508229294534" d="7.5764489295582053e-05" /> - <width sOffset="261.11011474417148" a="2.4945478877248992" b="5.9505346935622219e-05" c="0.00044808126889747972" d="-8.47781532035266e-05" /> - <width sOffset="264.5072956747988" a="2.4965974325733336" b="0.00016869876484472759" c="-0.00050034575134344213" d="-9.6349430120215129e-05" /> - <width sOffset="264.91688324737362" a="2.4965759700174059" b="-0.00028966335203332166" c="-0.011213601425449032" d="0.028573241489253193" /> - <width sOffset="265.12097356354718" a="2.4962926735422002" b="-0.0012963668340721067" c="7.8963441782977208e-05" d="3.9186047788145918e-05" /> - <width sOffset="269.76382828847903" a="2.4958977863017848" b="0.0019709598372911405" c="-0.00085970273076862763" d="7.8821425959169951e-05" /> - <width sOffset="274.6806532007526" a="2.4941743073323503" b="-0.00076649231153255032" c="0.0005159395472598958" d="-1.622322457484989e-05" /> - <width sOffset="275.54696853806098" a="2.4938869492048279" b="9.0913673984685528e-05" c="-0.002568424559230279" d="0.00047632095005348371" /> - <width sOffset="275.94079117258741" a="2.4935534938890225" b="-0.0017104669746095535" c="0.00050687789501117214" d="-3.7074117841827501e-05" /> - <width sOffset="282.69497900780846" a="2.4937007039757106" b="6.2771575117498424e-05" c="-0.0034939223384341856" d="-0.00026014559875456571" /> - <width sOffset="283.21204185484919" a="2.4927630845357815" b="-0.0037590361778808701" c="0.0017058969384264409" d="-0.00016392020219624026" /> - <width sOffset="284.85401072670641" a="2.4904644176059851" b="0.0005172061906646569" c="0.00085138762751367286" d="-0.00017315367134763894" /> - <width sOffset="289.88341561467553" a="2.4925731069683366" b="-0.0040585690495174714" c="0.0035285280107091939" d="-0.00071284807704429746" /> - <width sOffset="292.38222673329489" a="2.4933414712617332" b="0.00022248891133115622" c="0.0019093568649015159" d="-0.0012803105636894959" /> - <width sOffset="293.35426417578088" a="2.4941859240718092" b="0.00030529125216003511" c="-0.00045911595422262579" d="8.6861207644242655e-05" /> - <width sOffset="295.02736825266021" a="2.4938183281820905" b="-0.00050156048944229037" c="-5.9507807284147826e-05" d="9.844522090592155e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.4627442707896079" b="-0.0037088353897525399" c="0.00038502834626758485" d="0.0024747920833188839" /> - <width sOffset="0.73436208452913476" a="3.4612083816355574" b="0.00086053962609056178" c="0.0031220777646440976" d="-0.00097647253315632501" /> - <width sOffset="1.6789096151609861" a="3.4639837559710616" b="0.0041449027022282293" c="0.0040381387127674589" d="-0.00040381670925797173" /> - <width sOffset="6.463995341987097" a="3.5320350109697669" b="0.015051953945728893" c="0.0033427935086470205" d="-0.000586070857306229" /> - <width sOffset="10.173357525953801" a="3.6039507202052548" b="0.015659324136863939" c="-0.0031141460763525262" d="-0.00060764189335687103" /> - <width sOffset="10.747554375842949" a="3.6118004795025862" b="0.011482036119146005" c="-0.0052602196715654309" d="-0.00062442141350629876" /> - <width sOffset="11.582727519345426" a="3.6173571362521058" b="0.0013890193519647798" c="0.00028386595712098187" d="-1.1076252718467198e-06" /> - <width sOffset="14.426792461064871" a="3.6235782248909181" b="0.0029768080220271293" c="0.0029376092722239473" d="-0.00025776136778517413" /> - <width sOffset="20.086966022030644" a="3.6877993456841685" b="0.011457425168343709" c="-0.0097745356947034883" d="0.0023559989469985089" /> - <width sOffset="20.346715051907601" a="3.6901572063889891" b="0.0068564474664469053" c="-0.0079329147424734136" d="0.0023524814546465518" /> - <width sOffset="21.402704543879093" a="3.6913216010259684" b="-0.0020278480976167503" c="0.0018097146393500766" d="0.0025746434611574336" /> - <width sOffset="21.726021572248875" a="3.6909421564802716" b="-5.0212406077877053e-05" c="-0.00093954782565316205" d="0.00012290454240260039" /> - <width sOffset="28.088296260679982" a="3.6842434611404431" b="0.0029194539110545294" c="0.00082069782983474173" d="-0.00017314133782022332" /> - <width sOffset="30.520072577861402" a="3.6937063050654242" b="0.0038393283709934022" c="-0.00044190687935900298" d="-0.00017290277256272777" /> - <width sOffset="31.130635058305252" a="3.695846363671706" b="0.0031063373698900776" c="-0.0012688081588721127" d="9.5205686166728099e-05" /> - <width sOffset="34.416694161158929" a="3.6957313756814525" b="-0.0021482741572732833" c="0.0034291284036620834" d="-0.0015135231203478254" /> - <width sOffset="36.401961007175132" a="3.6931390849778607" b="-0.006428479712560305" c="0.0012642259287896267" d="0.00014504597726924451" /> - <width sOffset="38.117364514910633" a="3.6865639287630541" b="-0.00081072364797993041" c="0.00010236840984588133" d="2.3154030461139666e-05" /> - <width sOffset="40.693430103815203" a="3.6855505995497673" b="0.00017765017943609696" c="0.00026950096925586225" d="2.36196777773988e-05" /> - <width sOffset="41.149567641461545" a="3.6856899468454847" b="0.00043825222990978878" c="0.00048698104598701871" d="7.0099519961610681e-05" /> - <width sOffset="45.407579313821714" a="3.7017970427297215" b="0.0083982465891594728" c="0.0020625569362569198" d="-7.2909524681660236e-05" /> - <width sOffset="46.992985751565229" a="3.7200054016669557" b="0.014388451439438352" c="0.0020282755581372816" d="-0.0002075893848336491" /> - <width sOffset="50.670838958632231" a="3.7900323584314717" b="0.020883912629831448" c="-0.001461576316983835" d="1.7263086262681542e-05" /> - <width sOffset="50.866787629769007" a="3.7940685447289657" b="0.020313113249926733" c="-0.0016038718208898795" d="9.719535968915374e-06" /> - <width sOffset="56.334439343138001" a="3.8587742024062797" b="0.0036459910909167753" c="2.4700522802815258e-05" d="7.3818040344753272e-05" /> - <width sOffset="59.820032219278559" a="3.8749087637741053" b="0.0065087083537396818" c="-0.0005819510969025134" d="9.4165561990292428e-06" /> - <width sOffset="61.040145155722804" a="3.8820008904344832" b="0.0051306708220425178" c="-0.00050691925821878857" d="8.4286963730255429e-06" /> - <width sOffset="70.832557532319342" a="3.8915479773706418" b="-0.0023725370413265456" c="-0.0011671540624506574" d="5.4513447045263083e-06" /> - <width sOffset="71.401305308312743" a="3.8898220610854484" b="-0.0036948794904846909" c="-0.00089830846563436755" d="0.00018232577370970042" /> - <width sOffset="73.455633200840325" a="3.8800211977826127" b="-0.0050773315651402931" c="0.0023823552760288513" d="-0.0011452371330783718" /> - <width sOffset="75.39662145688348" a="3.8707669250920609" b="-0.0087729051245072111" c="-0.0032237813655902449" d="0.00076603446028694134" /> - <width sOffset="78.150891844889344" a="3.838153804574274" b="-0.00909781164121835" c="0.0037286376837713116" d="-0.00051840767142461591" /> - <width sOffset="81.386860207630406" a="3.8301915120300518" b="-0.0012518086570659347" c="-0.00091973482094368213" d="-0.00062196525740693706" /> - <width sOffset="82.785472054173766" a="3.8249400094388708" b="-0.0074744195795776753" c="0.0010618793822898414" d="3.7851816982594173e-05" /> - <width sOffset="83.44748388555908" a="3.8204682162110659" b="-0.0060186993765382023" c="0.0019423178310305127" d="-0.00045648717771742373" /> - <width sOffset="86.271361515247136" a="3.8086813783842532" b="-0.0059694400113301897" c="-0.0016294492936024085" d="0.0001066558471755555" /> - <width sOffset="91.56021773358421" a="3.7473095666022731" b="-0.014255153966180031" c="8.8529040116599664e-05" d="0.00010873315456740348" /> - <width sOffset="93.798446440151309" a="3.7170659740301386" b="-0.012224706557212008" c="0.00054568490827677828" d="0.00013724272708061114" /> - <width sOffset="95.33044463767736" a="3.7001119519844816" b="-0.009586396316449617" c="0.00094571200155411407" d="-4.0179707588496662e-05" /> - <width sOffset="101.73357525953801" a="3.6669549399704744" b="-0.0024174752519622936" c="0.00017461297929159247" d="-4.0253004776923481e-05" /> - <width sOffset="101.74154201174797" a="3.6669356916063509" b="-0.0024147007196226554" c="-0.00016084917367495852" d="-6.7935176126575936e-05" /> - <width sOffset="106.2393574793517" a="3.6466391976475734" b="-0.0079846964665089091" c="0.00059030758615322967" d="-0.00015121402137304005" /> - <width sOffset="106.25719938786075" a="3.6464969224796948" b="-0.0079637764481894531" c="-0.00095026276492878037" d="0.00043953959706388029" /> - <width sOffset="109.50145456128844" a="3.6256673999864866" b="-0.00025085076603842231" c="0.0013717708848861824" d="-8.8351385903958225e-05" /> - <width sOffset="111.9069327854918" a="3.6317717444304893" b="0.0048149895901079846" c="0.00073009959149750257" d="-8.8733576753578577e-05" /> - <width sOffset="117.38988191258096" a="3.6654947044465449" b="0.0048184664453829688" c="-0.00074057553769714662" d="0.00020930549495604367" /> - <width sOffset="121.73250137804813" a="3.6895944345927525" b="0.010227855917131448" c="0.0062222406712234479" d="-0.0032214757343632149" /> - <width sOffset="122.13864356527699" a="3.6945589473991109" b="0.013687923254249348" c="0.002146483986106625" d="-0.0032154858472200837" /> - <width sOffset="123.33982206442812" a="3.7085248515033644" b="0.0049263478015828801" c="-0.0013040997082708094" d="-6.1837575697240494e-06" /> - <width sOffset="125.38144211981438" a="3.7130941941376312" b="-0.00047593008155314044" c="-0.0010554734002984354" d="2.0309039260840952e-05" /> - <width sOffset="128.64226466158485" a="3.7010236195260608" b="-0.0067115171648026535" c="0.0010844314883527175" d="-0.0001455674264706196" /> - <width sOffset="132.2536478373994" a="3.6840727880362194" b="-0.004574431651237585" c="-0.00048581403344810908" d="-0.00014499757926385304" /> - <width sOffset="132.61816604910678" a="3.6823337496355055" b="-0.0049864067957719107" c="0.0017563244754151958" d="-0.00020149497504236361" /> - <width sOffset="137.04908375464868" a="3.6771928446464743" b="-0.0012900200714066647" c="-0.0015108367244938913" d="-0.00010837209047381048" /> - <width sOffset="140.08528004382362" a="3.6563152189400001" b="-0.013461494200595333" c="-0.003895380744701595" d="-0.00013296344571006339" /> - <width sOffset="140.45359443502144" a="3.6508220837440124" b="-0.016385055439977168" c="-0.006143789972770093" d="0.0028174446266060779" /> - <width sOffset="141.86234624389022" a="3.623423718153882" b="-0.016920859121320665" c="0.013468181918976151" d="-0.0032510770535473057" /> - <width sOffset="142.4270053633532" a="3.617578084320527" b="-0.004820715089679465" c="0.0079695389375724329" d="-0.0032512997405113775" /> - <width sOffset="144.09264571507941" a="3.6166343355203301" b="-0.0053327500147975528" c="-0.0013127730452769262" d="0.00014034487724361088" /> - <width sOffset="151.82859990408781" a="3.5617913344353198" b="-0.00044704213968520951" c="0.0061710067594182702" d="-0.0017355362880052707" /> - <width sOffset="153.56964269492914" a="3.5705594610222042" b="0.0052585025372727939" c="-0.0028657964839965619" d="-0.0019193361294160517" /> - <width sOffset="154.77937849193361" a="3.5693288850472711" b="-0.010101829628115067" c="-0.44780326587453773" d="1.3181244364005831" /> - <width sOffset="155.02097750465884" a="3.5593383735462556" b="0.0043376145836342608" c="0.0015526026261455676" d="-0.00023694973820639214" /> - <width sOffset="157.44537390497203" a="3.5756036970512044" b="0.0076877060793791412" c="8.9497856424861381e-06" d="-5.7167568306444029e-05" /> - <width sOffset="162.77372041526081" a="3.6081723273817734" b="0.002913900475928077" c="-0.00097363360962445303" d="-4.4210039490236831e-05" /> - <width sOffset="164.52236146434319" a="3.6100541829298072" b="-0.00089672006755976783" c="-0.0019101401098924953" d="-6.1432422417465499e-05" /> - <width sOffset="165.70748513051799" a="3.606206376424645" b="-0.0056830734158443844" c="-0.012766095350953195" d="0.01007210443219274" /> - <width sOffset="166.86511707937177" a="3.5981448961371769" b="0.0052532827594955912" c="-0.00029217348431521072" d="3.2945235345739747e-05" /> - <width sOffset="172.94707794121462" a="3.6266993829979195" b="0.0053552646367068394" c="0.00030726475392613476" d="3.3142358499396587e-05" /> - <width sOffset="173.72323535098997" a="3.631056510331804" b="0.005892133158865694" c="0.00086923115415695514" d="-5.2439977644364814e-05" /> - <width sOffset="176.89348659214363" a="3.6568013809766411" b="0.0098223525754842396" c="-0.00020592360977311709" d="-6.4465730193184441e-05" /> - <width sOffset="180.32402312802162" a="3.6854712459778494" b="0.0061334851538226666" c="-0.0051833008180718759" d="0.00063962456784221909" /> - <width sOffset="183.12043546716842" a="3.6760771265745085" b="-0.0078503649436227965" c="-0.00032080348160603634" d="0.00077738161313789609" /> - <width sOffset="184.4066060585518" a="3.6671035127666483" b="-0.0048176658219310324" c="-0.00056838663556117101" d="6.5002300162079462e-05" /> - <width sOffset="188.21837078742675" a="3.6440813390531841" b="-0.006317415502643229" c="0.00050110218232511281" d="7.8361198073471528e-06" /> - <width sOffset="193.29379299312222" a="3.6259506488131259" b="-0.00062523197938608999" c="0.0005930869580280287" d="4.5506123036400574e-06" /> - <width sOffset="195.57621045183595" a="3.6276673602989673" b="0.0021532303570199335" c="0.00046481545282992746" d="-0.00014100646566565697" /> - <width sOffset="198.74553844379534" a="3.6346716506187096" b="0.00085045808624704608" c="-0.0017425468734517269" d="0.00020220579514444134" /> - <width sOffset="201.8646357120225" a="3.626507407642571" b="-0.0041182486319211679" c="0.0044021714346512211" d="-0.00096826608927135156" /> - <width sOffset="203.46715051907603" a="3.6272281177731167" b="0.0025311632232713713" c="-0.00020436878186126228" d="-0.00097210407382067993" /> - <width sOffset="203.79499184207521" a="3.6280017187175067" b="0.0020837171172605525" c="-0.0037998235504528841" d="-0.00069162765145768066" /> - <width sOffset="204.94261901705619" a="3.6243431170740745" b="-0.0093705651367459696" c="0.00077274031027172992" d="0.00052123838189464063" /> - <width sOffset="206.63250950528783" a="3.6132300548110354" b="-0.00229332409881323" c="-0.00013000654967178823" d="-1.0474664502447432e-05" /> - <width sOffset="212.09047669924269" a="3.5951372777256503" b="-0.0046485691623123155" c="0.00036168131691077115" d="-0.00016059174143736769" /> - <width sOffset="212.17079006818324" a="3.594766185212777" b="-0.0045935810367135838" c="-0.0019516411328467406" d="0.00033543716172441008" /> - <width sOffset="213.6405080450298" a="3.5848641440120232" b="-0.0081566009641854433" c="-6.2999555525892537e-05" d="0.00045634860225481701" /> - <width sOffset="215.46400815692715" a="3.572548129629499" b="-0.0038340740538779384" c="0.00031564511259844769" d="-2.9420579567994684e-06" /> - <width sOffset="219.68008007813214" a="3.5617735893084514" b="-0.0013293966182238142" c="0.0010456468263793828" d="-7.7023717763096365e-05" /> - <width sOffset="222.89743730073982" a="3.5657551345114116" b="0.0030071350727966205" c="0.0017700607170728151" d="-0.00012817171093890519" /> - <width sOffset="223.81386557098361" a="3.5698988794201072" b="0.0059284709481910256" c="0.0014241195667391579" d="-0.00012869535240099973" /> - <width sOffset="226.45017392261164" a="3.5930679195390804" b="0.010753962469380192" c="0.0097483561212471995" d="-0.0027754347993147665" /> - <width sOffset="228.57272402391746" a="3.6332719801329616" b="0.014624886802996281" c="-0.0024713507270624634" d="-0.00016092348721461215" /> - <width sOffset="229.04822165082678" a="3.6396500109290173" b="0.012165490558489209" c="-0.0014821217073817373" d="-1.4777899957879428e-05" /> - <width sOffset="230.35941000495652" a="3.6530198621914498" b="0.0082025899568466502" c="-0.0014392738561985216" d="9.7729427176983022e-05" /> - <width sOffset="233.98722309693741" a="3.6685011668545675" b="0.001618416012681203" c="-0.00034358561519550921" d="9.7621394356811101e-05" /> - <width sOffset="236.83038818348498" a="3.67256881630367" b="0.0020320680727343421" c="0.00062208708471247955" d="3.4239539580639001e-05" /> - <width sOffset="237.66844237448166" a="3.6747288661031177" b="0.0031468963130789201" c="0.0015996172984098994" d="-0.00031829444546446951" /> - <width sOffset="240.68066981190756" a="3.6900227227973748" b="0.0041195710945488642" c="-0.00096760443505373691" d="-0.00026405029537614379" /> - <width sOffset="242.4075743790593" a="3.6928913874987415" b="-0.0015847018263200664" c="-0.0017556590358128704" d="0.00014136903331037607" /> - <width sOffset="244.16058062289122" a="3.6854797618195287" b="-0.0064367701108160712" c="-0.0010182612254642784" d="0.00014473934115177454" /> - <width sOffset="248.46934635033912" a="3.6504190488682107" b="-0.0071502099955512146" c="0.0049651874614528579" d="-0.00084908526317196205" /> - <width sOffset="248.6239770016102" a="3.6494289887035527" b="-0.0056755761657286512" c="0.0044435035181243521" d="-0.00085224364386910173" /> - <width sOffset="251.6530986033622" a="3.6493214808565893" b="-0.0022152344425270427" c="0.0029892440016527728" d="-0.0015170842725470311" /> - <width sOffset="254.03799086793049" a="3.640461733391378" b="-0.013843395881318974" c="-0.0017370860665627964" d="1.698965963065056e-05" /> - <width sOffset="254.33393814884502" a="3.6362131160781308" b="-0.014867103570076251" c="-0.0017240700172765696" d="1.6954480575523414e-05" /> - <width sOffset="260.31302133948094" a="3.4893109373672924" b="-0.033665480345032923" c="-0.0089155774890404601" d="0.0016145598139082383" /> - <width sOffset="264.91688324737362" a="3.3029001377793308" b="-0.013093232531645297" c="0.023978918873269299" d="-0.02705503110552801" /> - <width sOffset="265.03654203169248" a="3.301630399617927" b="-0.0085167960093689935" c="-0.011025770359532963" d="-0.027902696339509696" /> - <width sOffset="265.12097356354718" a="3.3008159200231466" b="-0.010975369850975705" c="-0.011891371742148363" d="0.00063135910161614373" /> - <width sOffset="269.76382828847903" a="3.0567148549254544" b="-0.080566273023861767" c="-0.0016129744240211484" d="0.00059172372344510336" /> - <width sOffset="272.17119632736893" a="2.8616698769608782" b="-0.078044455119061232" c="-0.0018365272292046168" d="-0.00020888968048253718" /> - <width sOffset="274.6806532007526" a="2.6509543030711393" b="-0.091208196078518877" c="-0.0036114385753544249" d="-0.00011244907047235567" /> - <width sOffset="275.94079117258741" a="2.5300596019177135" b="-0.10084570757321276" c="-0.0065490871460982232" d="0.00040094599743629062" /> - <width sOffset="283.21204185484919" a="1.6046670767328277" b="-0.13249046481377477" c="-0.0034063047225382538" d="0.00030472060088345516" /> - <width sOffset="284.85401072670641" a="1.3792872019740019" b="-0.14121192076537059" c="-0.0019534261929545116" d="0.00028409218418972511" /> - <width sOffset="288.01145282650646" a="0.92288680624707542" b="-0.14505086048915061" c="-0.0016743295134299179" d="0.0022948367396797972" /> - <width sOffset="289.66624305683973" a="0.68867192955354739" b="-0.13174012300015081" c="0.009328823706066771" d="-0.000318573018783891" /> - <width sOffset="289.88341561467553" a="0.66049831091505606" b="-0.1277332694454677" c="0.0038315476076792162" d="0.00022112138693349134" /> - <width sOffset="293.35426417578088" a="0.27255898114422483" b="-0.093144417881308297" c="0.0047689275520581588" d="-0.0011460503844006713" /> - <width sOffset="294.01463547422037" a="0.21279872249003629" b="-0.088345236324011325" c="-0.020133174358732742" d="0.0087683308267193713" /> - <width sOffset="295.02736825266021" a="0.1117870141559838" b="-0.10214515911458635" c="0.0065127186061610318" d="0.0087751863327577874" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="254.03799086793049" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="254.03799086793049" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="42.727251175739184" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.6091187902268032" b="0.021161990115230997" c="0.0061972570653475514" d="-0.0036720676360076938" /> - <width sOffset="0.73436208452913476" a="3.6265471999048318" b="0.024323148937305614" c="0.000822506335089055" d="-0.00022080301953357102" /> - <width sOffset="3.9449338962627145" a="3.7058094036620552" b="0.022776619124402129" c="-0.0010967575016757616" d="-0.00010728120804947132" /> - <width sOffset="7.5633245266112645" a="3.7687821226709119" b="0.01062580663607202" c="-0.0077777597082126148" d="0.0014889572881530222" /> - <width sOffset="10.316325422595625" a="3.7701543703480853" b="0.0016559318441101453" c="-0.0018007086908636851" d="-2.1212404733736549e-05" /> - <width sOffset="10.747554375842949" a="3.770531898142095" b="9.106252120392418e-05" c="-0.00072879548799793239" d="-4.4328845840385649e-06" /> - <width sOffset="14.426792461064871" a="3.7607806050708681" b="-0.0054517828318841064" c="-0.0034409181910809053" d="0.00025222085792939283" /> - <width sOffset="15.593260772675603" a="3.7501397067222619" b="-0.012449675236025182" c="-0.0026550105349842511" d="0.0002841716487820667" /> - <width sOffset="20.346715051907601" a="3.661491611276011" b="-0.018427763130291937" c="0.0013916646551822755" d="0.00028768914126516123" /> - <width sOffset="20.539993652359193" a="3.6579839840759245" b="-0.017857563857051919" c="0.0061146253366308068" d="-0.00019870515466471444" /> - <width sOffset="21.402704543879093" a="3.647001415369115" b="-0.0077509270115772716" c="0.003310307739898169" d="-0.00042086716116371389" /> - <width sOffset="26.696155927540129" a="3.636303689449055" b="-0.0080839067538375359" c="-0.0010883061242859952" d="0.00022163772155663162" /> - <width sOffset="29.859015826072934" a="3.6068610280126285" b="-0.0083166460019922471" c="0.00053393882418070683" d="2.4044932579709557e-05" /> - <width sOffset="30.520072577861402" a="3.601603528247018" b="-0.0075791956522878248" c="0.00058110571395355453" d="2.3806367318065608e-05" /> - <width sOffset="34.416694161158929" a="3.5823020854908236" b="-0.0019660941732684038" c="-0.0028999830994322451" d="0.001632535173832509" /> - <width sOffset="35.49605704271584" a="3.5788542925545941" b="-0.0025205333006736172" c="0.00048618771738953613" d="0.0022485515464584988" /> - <width sOffset="36.401961007175132" a="3.5786415925300736" b="0.0038962478398812568" c="-0.00025223634157108628" d="0.00058998244884128279" /> - <width sOffset="38.757347609030546" a="3.5941288848757873" b="0.012527415025862219" c="0.46535509348914622" d="-1.0970044537572572" /> - <width sOffset="39.051876065986832" a="3.6101588536167988" b="0.0011624748690148461" c="-0.0010426584688472693" d="7.1219831283594515e-05" /> - <width sOffset="40.693430103815203" a="3.6095725080864765" b="-0.001684937404963749" c="-0.0010255406241759324" d="0.00012588748785666263" /> - <width sOffset="42.310705295465482" a="3.6046976361150151" b="-0.0040142941979859938" c="-0.00055313800729743544" d="-9.5866601722166133e-05" /> - <width sOffset="45.915541185037462" a="3.5785480222523613" b="-0.011739551646359401" c="-0.002492367248961179" d="0.00027967794229386239" /> - <width sOffset="46.992985751565229" a="3.5633557685927921" b="-0.016136303457433332" c="-0.0019008471223440314" d="0.00041435780244589507" /> - <width sOffset="49.572465685749698" a="3.5161964756422743" b="-0.017671639149421499" c="-0.00029282490041974746" d="0.00032157066400224487" /> - <width sOffset="50.670838958632231" a="3.496859263049314" b="-0.017151049685691304" c="0.0019661909884801198" d="9.6718192969726913e-05" /> - <width sOffset="50.866787629769007" a="3.4935747589625601" b="-0.016369363922020964" c="0.0016264750585790002" d="-8.6672721868920284e-05" /> - <width sOffset="57.623212091906368" a="3.430491681363808" b="-0.0062606920163249015" c="-0.0011929460759400525" d="0.00016023208152287266" /> - <width sOffset="59.820032219278559" a="3.4126796507903898" b="-0.0091822188654527813" c="0.0012416076356544462" d="0.00022463356566790012" /> - <width sOffset="61.040145155722804" a="3.403732671432155" b="-0.0051491962795430224" c="0.0020603601053934021" d="0.00022295948156385396" /> - <width sOffset="61.154763729235896" a="3.4031698814411544" b="-0.0046680978718338997" c="0.0013075848377556529" d="-5.9909351565723905e-05" /> - <width sOffset="65.03848025360135" a="3.4012535120122012" b="0.0027775959035640299" c="0.0012551187404059561" d="-0.00011396200237776926" /> - <width sOffset="70.832557532319342" a="3.437315818389906" b="0.0058445373706197592" c="0.00018205141084373216" d="-0.00011098465070511833" /> - <width sOffset="71.213502681676601" a="3.4395625502035401" b="0.0059349225609674049" c="0.00055383100988246449" d="-0.00037931444325881182" /> - <width sOffset="72.246846037842886" a="3.4458682064219901" b="0.0058644235787538804" c="-7.0492732383575649e-06" d="-2.0643161366140338e-05" /> - <width sOffset="81.386860207630406" a="3.4831180264370407" b="0.00056198229317744666" c="-0.00049133328227565071" d="-2.3392151793941443e-05" /> - <width sOffset="83.44748388555908" a="3.4819851001673618" b="-0.0017609048527270806" c="-0.0014412039445633323" d="0.00047094684290609207" /> - <width sOffset="86.271361515247136" a="3.4761249211168721" b="0.0013659208378136185" c="0.0022530601552470386" d="-9.2196181986914372e-05" /> - <width sOffset="89.389283468408109" a="3.4994922095023582" b="0.012726814068370899" c="0.0020827660598264999" d="-0.00030505156611227612" /> - <width sOffset="91.56021773358421" a="3.5338161299676845" b="0.017456827034128368" c="0.00012781190895973232" d="-0.00029527202130918794" /> - <width sOffset="93.480974789746242" a="3.5657256157103614" b="0.014679770288328431" c="-0.0011735353193285301" d="1.0645293566890541e-05" /> - <width sOffset="95.33044463767736" a="3.5889286293135703" b="0.010448171827610771" c="-0.00088373113264934942" d="0.00018806772823628062" /> - <width sOffset="96.533016007749779" a="3.6005423438198014" b="0.009138610486581062" c="0.0012492181840817072" d="-0.0006071666613372054" /> - <width sOffset="99.224286210812835" a="3.6223495052765298" b="0.0026695712945829283" c="-0.0068688391450902461" d="0.0015879777163999738" /> - <width sOffset="101.47738231637938" a="3.6116578735427605" b="-0.0040989075465443954" c="0.0010529426593607681" d="-2.7249679493970269e-05" /> - <width sOffset="101.73357525953801" a="3.6106764138527043" b="-0.0035647601725475497" c="0.0010312703669691169" d="-2.7173754239883052e-05" /> - <width sOffset="106.25719938786075" a="3.6131384326860077" b="0.0040972149711565372" c="0.0021949753263868416" d="-0.00061792737627794532" /> - <width sOffset="107.86007053925948" a="3.6228003814641725" b="0.0063710107317797044" c="-0.0017710233671099172" d="-0.00029590907256761247" /> - <width sOffset="109.50145456128844" a="3.6271777234471312" b="-0.001834510927840682" c="-0.0012722224528801162" d="0.00023198191040021607" /> - <width sOffset="111.9069327854918" a="3.6186322825169182" b="-0.003928149219235808" c="0.00039688526048808339" d="0.0002310840502032941" /> - <width sOffset="114.97666880418777" a="3.6169984256190579" b="0.0050412253277509755" c="3.3347579353277081e-05" d="5.9108366630017219e-06" /> - <width sOffset="122.08029031144561" a="3.6566109414681067" b="0.0064098104541554009" c="0.00016710779535400686" d="2.7208952517230171e-06" /> - <width sOffset="122.13864356527699" a="3.6569855443243151" b="0.0064293408161372337" c="0.00031820919712180078" d="-3.2689927467594253e-06" /> - <width sOffset="123.70132525497439" a="3.667797141532235" b="0.0073999118013046454" c="0.0008635199980736916" d="-0.00010281981497067153" /> - <width sOffset="128.5918002713546" a="3.7126125713202325" b="0.0084686115947045625" c="-1.8329144336111836e-05" d="-1.4544619083111342e-05" /> - <width sOffset="128.64226466158485" a="3.7130398860932474" b="0.0084666505361586427" c="-0.0019617634698042672" d="0.00015133184737537136" /> - <width sOffset="132.2536478373994" a="3.7251584395184247" b="0.00021834136953608613" c="-0.00031469155648396484" d="0.00015260823913984975" /> - <width sOffset="132.61816604910678" a="3.7252036062997105" b="4.975254751675949e-05" c="-0.0025485073929636974" d="0.00020910563491838177" /> - <width sOffset="137.28241824448241" a="3.6912106128129096" b="-0.010076574680019167" c="0.00023886043150961176" d="0.00030394311665211" /> - <width sOffset="140.38491257755229" a="3.6713238851708825" b="0.00018233863432368796" c="0.0017098355864758345" d="0.00065559657627423335" /> - <width sOffset="140.45359443502144" a="3.6713446865632475" b="0.00042648573809651955" c="0.0039464105346607619" d="-0.0022948114963505092" /> - <width sOffset="141.86234624389022" a="3.6733616781100049" b="-0.0021172107229162898" c="-0.013456780254219432" d="0.0037737101838038797" /> - <width sOffset="142.93581105199553" a="3.6602503319527759" b="-0.017962329846163451" c="-0.0019864309928930611" d="0.0032881357079305677" /> - <width sOffset="144.09264571507941" a="3.6419030494008031" b="-0.0093570693212673712" c="0.002460880951472141" d="-0.00010350890982435743" /> - <width sOffset="150.95694513742779" a="3.6601480742843786" b="0.0097957912737523228" c="0.0033667177306953614" d="-0.0011010944449865291" /> - <width sOffset="153.44588051261377" a="3.6884081310732788" b="0.0060916996929112135" c="-0.0031192079826395619" d="0.00022988932763334791" /> - <width sOffset="153.56964269492914" a="3.6891147117654723" b="0.0053301834169878076" c="-0.0030619787520112861" d="0.00041368916905390192" /> - <width sOffset="156.56442524383075" a="3.6887268462475729" b="-0.0018789475519014366" c="0.00067839623812558398" d="-0.00010304292958615715" /> - <width sOffset="157.44537390497203" a="3.6875276250390701" b="-0.00092358878362524925" c="0.00022634220896328909" d="-0.00028282509948611515" /> - <width sOffset="160.42050413296462" a="3.6793353383197496" b="-0.0070869878375649214" c="-0.00024676143862447178" d="7.1654508476720746e-05" /> - <width sOffset="162.77372041526081" a="3.6622253970216003" b="-0.0070579661132286961" c="0.00011014126336200506" d="0.00011537277209240907" /> - <width sOffset="164.07852335354812" a="3.6534599525821729" b="-0.006181270685488926" c="-0.00012340710657493228" d="-2.910265190533589e-05" /> - <width sOffset="164.52236146434319" a="3.650689614310183" b="-0.0063080152318335334" c="0.00054242632606884167" d="-1.1880268978374965e-05" /> - <width sOffset="172.94707794121462" a="3.6289417193729605" b="0.0003019242961174967" c="0.00024383929025685174" d="-1.2077392131622088e-05" /> - <width sOffset="173.65082447246593" a="3.629270751778884" b="0.00062718208754474359" c="0.00070400198943565157" d="-6.1789023412933566e-05" /> - <width sOffset="176.89348659214363" a="3.6366002054549811" b="0.0032437549027451501" c="0.00067933026382732426" d="-4.9763270864114847e-05" /> - <width sOffset="180.18057849217354" a="3.6528354320952579" b="0.0060967245000800073" c="0.0017114310389927483" d="-0.00018392615855963989" /> - <width sOffset="183.12043546716842" a="3.6808771329335226" b="0.011390561049367622" c="-0.00016277461249490866" d="-0.00020552074019142345" /> - <width sOffset="187.60447240054879" a="3.7101505088412092" b="-0.0024661757636028746" c="-0.0038226503397197661" d="0.0021929841983442467" /> - <width sOffset="188.21837078742675" a="3.7077032508122278" b="-0.0046801955651786719" c="-0.00011001034700697894" d="0.0022501503786904074" /> - <width sOffset="188.58998924891637" a="3.7060642903758625" b="-0.0038297201187536042" c="0.0011499744587362638" d="-0.00018709156549537493" /> - <width sOffset="193.28095643332949" a="3.694091957210901" b="-0.0053916820880569385" c="-0.00041128833362057436" d="3.5228041215944783e-05" /> - <width sOffset="193.29379299312222" a="3.6940226788649397" b="-0.0054022237282988859" c="-0.00040981555446476415" d="3.5553926319216478e-05" /> - <width sOffset="198.60560276505919" a="3.6590926402088866" b="-0.0067464517113700381" c="0.00094752763452739491" d="-9.5356858605478111e-05" /> - <width sOffset="201.8646357120225" a="3.6438689108135831" b="-0.0036088443441492993" c="-0.0042374054755542753" d="0.0010751150258104343" /> - <width sOffset="203.46715051907603" a="3.6316282677449845" b="-0.0089069949983906216" c="0.00088281574972147382" d="0.0010789530103608507" /> - <width sOffset="204.15575644645577" a="3.6262657718598792" b="-0.0061563229418135062" c="0.0045328668349086804" d="0.0012026649109402729" /> - <width sOffset="204.94261901705619" a="3.6248140525464696" b="0.0032110632564914723" c="0.00041810692101955284" d="-1.0201122411689379e-05" /> - <width sOffset="209.71416011061393" a="3.6485468509593733" b="0.0065043266080371349" c="-0.0048446988009129659" d="0.0007726791463026027" /> - <width sOffset="212.17079006818324" a="3.6467432836605913" b="-0.0033095105915951373" c="0.0031244908727084322" d="0.00027665024324961839" /> - <width sOffset="212.70991396802725" a="3.6459105457538019" b="0.00030069379731272397" c="0.00071254218769364322" d="-0.00030696414377593377" /> - <width sOffset="213.6405080450298" a="3.6465600527268616" b="0.00082937111672498794" c="-0.00019982182518301825" d="-0.00031297657277264091" /> - <width sOffset="215.46400815692715" a="3.6455102657424887" b="-0.0030214637730608552" c="0.00020585024210857715" d="0.00014631408743565123" /> - <width sOffset="216.20886666680349" a="3.6434343768547515" b="-0.0024712737638804584" c="-0.00083956394900623632" d="0.00020857713450208977" /> - <width sOffset="219.45476193996109" a="3.6337003397166763" b="-0.0013289435458914266" c="0.0010081903766404078" d="-0.00017935915342755465" /> - <width sOffset="223.47929956473726" a="3.6329899835956088" b="-0.0019291318192927905" c="-0.0017350216486134759" d="0.00039795219595515979" /> - <width sOffset="223.81386557098361" a="3.6321652561289426" b="-0.0029564567109338375" c="-0.0013420372056972675" d="0.00039847583741698571" /> - <width sOffset="226.15569563434835" a="3.6229994003992023" b="-0.0026861774962353068" c="-0.0010475116324740127" d="-4.2221004948453398e-05" /> - <width sOffset="226.45017392261164" a="3.6221164637247982" b="-0.0033141002563788703" c="-0.010426889591831776" d="0.0026045184419662211" /> - <width sOffset="228.57272402391746" a="3.5930125448778645" b="-0.012375513990481483" c="0.00070448166166463462" d="-9.9928701395270602e-06" /> - <width sOffset="233.98722309693741" a="3.5450722578644229" b="-0.0056255603146630213" c="0.00053977860075217184" d="-9.7196890147372817e-06" /> - <width sOffset="234.92888753823723" a="3.5402453906903348" b="-0.0046348359611588967" c="0.0015994464938408704" d="-0.00010437319247552408" /> - <width sOffset="236.83038818348498" a="3.5364977799917989" b="0.00031571319001890081" c="0.00087103793582162057" d="-4.0991337698798593e-05" /> - <width sOffset="240.68066981190756" a="3.548286462758024" b="0.0052001469211247217" c="8.8449300462621193e-05" d="-9.5235487787296441e-05" /> - <width sOffset="241.6483955838693" a="3.5533153021874675" b="0.0051037741047804119" c="0.0016828157994589438" d="-0.00062969599681737994" /> - <width sOffset="243.59457983121999" a="3.5649803146448802" b="0.0044987410569914746" c="5.1576387278398975e-05" d="2.0720481848920342e-06" /> - <width sOffset="244.16058062289122" a="3.5675435042044588" b="0.0045591169938295423" c="5.5536434467633059e-05" d="1.8825319777499567e-06" /> - <width sOffset="245.86994730098374" a="3.5755083832980024" b="0.0047654831598869015" c="-0.0022946168686799203" d="0.00020807847845397798" /> - <width sOffset="248.6239770016102" a="3.575575165051013" b="-0.0031387770887682772" c="-0.00044765381786428455" d="0.00021123685916526119" /> - <width sOffset="251.92033130035185" a="3.5679305463688675" b="0.00079584024079697689" c="-3.1691135569285322e-06" d="0.00012010633599518128" /> - <width sOffset="254.33393814884502" a="3.5715216807225958" b="0.0028795799196890803" c="0.00086856739318916677" d="0.00012014151504935492" /> - <width sOffset="255.06165153889538" a="3.5741234533001034" b="0.0043345850291636769" c="0.0017648239751393566" d="-0.00022506300827683832" /> - <width sOffset="259.55004142005066" a="3.6087817403465299" b="0.0065749036317950624" c="-0.00066902509661607946" d="7.9515138938765807e-05" /> - <width sOffset="260.31302133948094" a="3.613444112053275" b="0.0056928646402926754" c="0.0070086044874958751" d="-0.0015180901943940002" /> - <width sOffset="264.89596960147151" a="3.64061118031759" b="-0.025722225892674876" c="-0.014447003698810728" d="-0.0015151622958040544" /> - <width sOffset="265.03654203169248" a="3.6367056541214624" b="-0.029873748316560776" c="0.010206599000080717" d="-0.00066749706142297258" /> - <width sOffset="269.86109705895097" a="3.6551917449005407" b="0.022000200665300021" c="0.0015324297348230525" d="-0.0011076651100830571" /> - <width sOffset="272.17119632736893" a="3.7005370199578218" b="0.0113469708770245" c="-0.0016469762023340125" d="-0.00030705170615571455" /> - <width sOffset="273.73777464230636" a="3.7130904777693665" b="0.0039260674076150304" c="-0.0030326443946547686" d="0.00028319656132591488" /> - <width sOffset="274.6806532007526" a="3.7143335871834511" b="-0.0010374611421684055" c="-0.0022422609110958232" d="0.0002818006018510645" /> - <width sOffset="279.45673458663259" a="3.6889318008715755" b="-0.0031714811471153792" c="-0.00024638148864968685" d="0.00019633909682501474" /> - <width sOffset="284.27926577743602" a="3.6899279281448027" b="0.0081508155202421814" c="0.0021245977128090485" d="-5.790380070232079e-06" /> - <width sOffset="284.85401072670641" a="3.6953132909509296" b="0.010587280890315486" c="0.0021079713461123976" d="-5.5027675889620395e-06" /> - <width sOffset="288.01145282650646" a="3.7495840967653851" b="0.023734297293024793" c="0.0044677645241930864" d="-0.002016247323085659" /> - <width sOffset="288.49756157048506" a="3.7619456836543206" b="0.026648608018953641" c="0.0012714845112205505" d="-0.0018552489034726453" /> - <width sOffset="289.66624305683973" a="3.7918646765138071" b="0.022018740608416153" c="-0.0048438335953567349" d="0.00075816085497029694" /> - <width sOffset="293.33093161858551" a="3.8448181638867465" b="0.017062626970434324" c="-0.12499485646742961" d="7.9329287921740335" /> - <width sOffset="293.33906825572484" a="3.844952994372969" b="0.016604146801266175" c="0.0031732571365052122" d="0.00060166126840834955" /> - <width sOffset="294.01463547422037" a="3.8578039637655408" b="0.021715422280079884" c="0.027024290594751844" d="-0.0093127199427098118" /> - <width sOffset="295.02736825266021" a="3.8978397451845339" b="0.047798042016157963" c="-0.0013556624617618975" d="-0.0093138817745348768" /> - <roadMark sOffset="0" color="standard" width="0.15684155628812513" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.15684200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16593723176204453" weight="standard" type="solid"> - <type name="solid"> - <line length="296.76524204366967" space="0" width="0.165937" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="0.19075078481290975" b="0.026536875448590878" c="-0.018050494678747822" d="0.0059625872348383251" /> - <width sOffset="0.84869774421973876" a="0.20391598836560521" b="0.0087823848337863653" c="0.0023081281491541391" d="-2.5361455572643903e-05" /> - <width sOffset="3.9449338962627145" a="0.25248281340414902" b="0.022346008123619369" c="0.0018651049677036085" d="-0.00013888326705800174" /> - <width sOffset="4.4315467326498332" a="0.26378230686201665" b="0.024062516798997111" c="0.00029514433908021769" d="0.00020430743240182797" /> - <width sOffset="7.5633245266112645" a="0.34831117284548885" b="0.031922731370190617" c="0.0077311270313732286" d="-0.0013919310638007608" /> - <width sOffset="10.173357525953801" a="0.45954820754326464" b="0.043833084606674108" c="-0.003085449596580473" d="-0.0014346169633274581" /> - <width sOffset="10.316325422595625" a="0.46574767312786403" b="0.042862874193426805" c="0.0026194891219839958" d="7.5552729516593982e-05" /> - <width sOffset="11.289264424919505" a="0.50999985418867766" b="0.04817463743567784" c="0.0012551176091171649" d="3.9249971987584308e-05" /> - <width sOffset="15.593260772675603" a="0.7437229554713638" b="0.061159925372344673" c="0.0018586280761787022" d="7.2991811347664156e-06" /> - <width sOffset="19.99244942388497" a="1.0493682050437645" b="0.077936616560557295" c="0.0021606904759696993" d="-0.00011440329098337051" /> - <width sOffset="20.539993652359193" a="1.0926709547260169" b="0.080199867832959501" c="-0.0025833803268314596" d="0.00037199100482319887" /> - <width sOffset="26.696155927540129" a="1.5752771318327872" b="0.090685968802877243" c="0.0020018249393522675" d="-0.00027051387789716024" /> - <width sOffset="28.661458166566831" a="1.7591809247217065" b="0.095419842006442976" c="0.002891685075679645" d="-0.00076156802082127972" /> - <width sOffset="29.859015826072934" a="1.8762908105458953" b="0.099069165811287552" c="0.00063640246205004861" d="-0.00056397523184729861" /> - <width sOffset="30.520072577861402" a="1.9418963361483152" b="0.099171197289612045" c="-0.00041061585367658908" d="-0.00052976237609912908" /> - <width sOffset="33.798717017125412" a="2.2439586623736285" b="0.07939461365899092" c="0.010331095533456416" d="-0.00083619506535880862" /> - <width sOffset="35.49605704271584" a="2.4043928514111363" b="0.10723823603344194" c="0.0079732962640641225" d="-0.0014522114379018154" /> - <width sOffset="35.742885829840617" a="2.4313262656132713" b="0.11090888857587189" c="0.039585046548281891" d="-0.10120193771500856" /> - <width sOffset="36.483437966394007" a="2.4940678932407758" b="0.003035739172223662" c="-0.0068231213980027763" d="0.0024083625309375962" /> - <width sOffset="38.757347609030546" a="2.4940074382374013" b="0.0093639240849978309" c="-0.063926153442709133" d="0.10871543946010742" /> - <width sOffset="39.051876065986832" a="2.4939975987129195" b="0" c="0.00038370306187626561" d="-4.9077487409357752e-05" /> - <width sOffset="40.693430103815203" a="2.4948144691975789" b="0.00086299135532300845" c="0.00012565671152649791" d="-0.00015299294403494184" /> - <width sOffset="42.310705295465482" a="2.4958916516176402" b="6.8938904160910364e-05" c="-0.00047825685085858068" d="6.8761145543885322e-05" /> - <width sOffset="45.915541185037462" a="2.4931463587507694" b="-0.00069851539357559077" c="0.0011678402271022739" d="-0.00030678339847612279" /> - <width sOffset="46.412461451993039" a="2.4930499831199691" b="0.00023486971600858095" c="0.00090430973628450196" d="-0.00022964056575985799" /> - <width sOffset="49.572465685749698" a="2.4955760504775073" b="-0.00092920002749948341" c="0.00032577494517716709" d="-0.00013685342731619733" /> - <width sOffset="50.866787629769007" a="2.4946223827932599" b="-0.00077368374079745186" c="-6.4664971112939171e-05" d="1.3334024315552245e-05" /> - <width sOffset="57.623212091906368" a="2.4905556960637565" b="0.00017857376286820742" c="0.0012682340528929711" d="-0.00023357077907619424" /> - <width sOffset="61.040145155722804" a="2.4966549386151584" b="0.00066439656046338863" c="-0.0010782803851255086" d="-0.00024143384977237103" /> - <width sOffset="61.154763729235896" a="2.4967165614325082" b="0.00040769918948486972" c="-0.0003318576348884875" d="4.1434983142926319e-05" /> - <width sOffset="65.03848025360135" a="2.4957216798140887" b="-0.00029505964035600116" c="-0.00049463916730096914" d="9.5487633954956485e-05" /> - <width sOffset="68.559788359491037" a="2.4927186129936523" b="-0.00022658497391157655" c="-0.00017231341264472725" d="5.7666132146187574e-06" /> - <width sOffset="71.213502681676601" a="2.4910116221279619" b="-0.001019297190376519" c="-0.00025639821357741185" d="0.00034675193738556811" /> - <width sOffset="72.246846037842886" a="2.4900671634692584" b="-0.00043840838420291378" c="0.00020353732223067156" d="-1.1919344507101932e-05" /> - <width sOffset="81.386860207630406" a="2.4939625028329191" b="0.0002950385549923655" c="0.00031684602496108764" d="-0.00025083673152020259" /> - <width sOffset="82.618053502178839" a="2.4943379055810309" b="-6.5446784351034029e-05" c="0.00030628571181234095" d="-3.2266554578988681e-05" /> - <width sOffset="89.389283468408109" a="2.4979204078116966" b="-0.0003558063354756405" c="-0.0010412544760277681" d="0.00018058882954629708" /> - <width sOffset="91.56021773358421" a="2.4940882871868073" b="-0.002323474979327834" c="0.00014395283311279298" d="0.00017412533794447754" /> - <width sOffset="93.480974789746242" a="2.4913904405846004" b="0.00015672769441585485" c="0.00074722002069091279" d="-0.0001317919769316066" /> - <width sOffset="96.533016007749779" a="2.4950823043479895" b="0.0010349110593099913" c="-0.0019139383365978828" d="0.00066344241264117067" /> - <width sOffset="98.059984087595069" a="2.4945620534225568" b="-0.00016942471742486739" c="-0.0022099738964082103" d="0.00096014111792823323" /> - <width sOffset="99.224286210812835" a="2.4928843694386136" b="-0.0014108790486695891" c="0.0043596178274903294" d="-0.0012350032598093957" /> - <width sOffset="101.47738231637938" a="2.4977112592534505" b="-0.00057387063132066391" c="-0.0011763078563766143" d="0.00038022413596768294" /> - <width sOffset="101.73357525953801" a="2.4974934244249671" b="-0.0011017263420249074" c="-0.0009044880812140335" d="0.00038480666466505364" /> - <width sOffset="103.77135910849903" a="2.494748644466894" b="5.7730219659561134e-06" c="-0.00050478726420413852" d="6.9896908924579532e-05" /> - <width sOffset="107.86007053925948" a="2.4911111199499509" b="-0.00061656834217155114" c="0.0013472024054910605" d="-0.00025212139478568603" /> - <width sOffset="111.16807098310335" a="2.4946872237012117" b="1.9731343520696526e-05" c="0.001010900544359058" d="-0.00025414828000649644" /> - <width sOffset="111.9069327854918" a="2.495151157491339" b="0.0010973315209532181" c="0.00045189953191610618" d="-0.00025342855356186035" /> - <width sOffset="114.97666880418777" a="2.4954471284448014" b="-0.0032926280101447901" c="0.00060966203271192775" d="-2.8255340021565584e-05" /> - <width sOffset="122.08029031144561" a="2.4926935886801549" b="0.0010915733353741366" c="1.2701027350330333e-05" d="-2.8703121620290776e-05" /> - <width sOffset="123.70132525497439" a="2.4943741762224536" b="0.0009064767009186207" c="-0.00068752124833278356" d="7.084770060222117e-05" /> - <width sOffset="124.46238318187648" a="2.4946970693883221" b="-1.6903377813742501e-05" c="-0.00060695284983733192" d="9.5979883204682685e-05" /> - <width sOffset="128.5918002713546" a="2.4910358965082189" b="-0.00011965479532975373" c="-4.4594006483723762e-05" d="7.704686590085956e-06" /> - <width sOffset="132.2536478373994" a="2.4903780890816249" b="-0.00013630832679122767" c="4.0601876724872639e-05" d="7.0791701086184911e-06" /> - <width sOffset="137.28241824448241" a="2.4916196472754986" b="0.00080911216088095858" c="0.00028599686589876269" d="-8.7758311625112917e-05" /> - <width sOffset="140.38491257755229" a="2.4942620439496475" b="4.9574198831396805e-05" c="0.00082715810838069844" d="-0.00043941177093966796" /> - <width sOffset="141.65398194646608" a="2.4947590194771108" b="2.5949406818748764e-05" c="0.00085651384443371787" d="-0.00045852032857695467" /> - <width sOffset="142.93581105199553" a="2.495233892957383" b="-3.840664243252509e-05" c="-0.00022423428992670658" d="2.7054147296026412e-05" /> - <width sOffset="150.95694513742779" a="2.4944607021280274" b="0.0015862439811582807" c="-0.0026106046898175632" d="0.0010246396824596942" /> - <width sOffset="151.46567416027659" a="2.4947269381900372" b="-0.00027439047333833316" c="-0.0031331439668012681" d="0.0010423711744374463" /> - <width sOffset="152.60036288930701" a="2.4919044437351041" b="-0.0033584602147250509" c="0.00043494240231281957" d="0.0010599235971667711" /> - <width sOffset="153.44588051261377" a="2.4900164288274458" b="-0.00034973898013260923" c="0.001387761611292409" d="-0.00027106017546456058" /> - <width sOffset="156.56442524383075" a="2.4942012364320796" b="0.00039741249624941632" c="-0.0011718259125008553" d="0.00024567192317555774" /> - <width sOffset="160.42050413296462" a="2.4923955880377369" b="0.002319047475130892" c="-0.00038105582323060634" d="-0.00010880768478739885" /> - <width sOffset="162.46422086022591" a="2.4946146797034134" b="-0.00060188949694007263" c="2.5832807360156471e-05" d="-0.00010415143658943549" /> - <width sOffset="162.77372041526081" a="2.4944277819229894" b="-0.00061582900255115983" c="7.7796284804471089e-05" d="-0.00014782389799180686" /> - <width sOffset="164.07852335354812" a="2.4934283133749515" b="-0.001167826668134757" c="0.00018431768146867623" d="-3.3484739940577868e-06" /> - <width sOffset="172.94707794121462" a="2.4952325591795033" b="0.0013113510701242542" c="-2.2198228616342403e-05" d="-2.0022800324837793e-06" /> - <width sOffset="173.65082447246593" a="2.496143726201312" b="0.001277132274645227" c="-0.00051208648913035777" d="4.770935124936137e-05" /> - <width sOffset="180.18057849217354" a="2.4959318348734767" b="0.00069218388945130327" c="-0.0011003256137305628" d="0.00018187223894491054" /> - <width sOffset="183.12043546716842" a="2.4930780036852758" b="-0.0010617821629202301" c="0.00075981843612896811" d="0.00020330611412434403" /> - <width sOffset="183.70843288807816" a="2.4927577099479388" b="4.2634156172519089e-05" c="-0.0012567247779744788" d="0.00028197309773342523" /> - <width sOffset="187.60447240054879" a="2.4905232897829346" b="0.0030904491198734362" c="0.0029341981711375792" d="-0.0021165318408020439" /> - <width sOffset="188.58998924891637" a="2.4943929050811735" b="0.0027068494733570748" c="-0.0020748277367003817" d="0.00032071010339206063" /> - <width sOffset="192.10454492976487" a="2.4922005099824589" b="6.9856319923934651e-06" c="5.8431948905100122e-05" d="0.00028348485404834791" /> - <width sOffset="193.28095643332949" a="2.4927511327030079" b="0.0013214471761549447" c="-1.2741939601983491e-05" d="6.1165519080136175e-05" /> - <width sOffset="193.29379299312222" a="2.4927680935684933" b="0.0013211502874771602" c="-9.222279552459318e-05" d="-3.7973133077198515e-06" /> - <width sOffset="198.60560276505919" a="2.4966145764444745" b="1.9983129415942699e-05" c="-0.00094351072256256018" d="0.00012711347161697037" /> - <width sOffset="203.46715051907603" a="2.4890176432140256" b="-0.00014101581311870733" c="0.0010974871607313487" d="0.00010788110373200049" /> - <width sOffset="204.15575644645577" a="2.4894761688307234" b="0.0015239210929775273" c="-0.00010078090712572297" d="-1.5830796853713666e-05" /> - <width sOffset="208.39202510191029" a="2.4929197767867324" b="-0.00018224601985171375" c="-0.0017155173523860263" d="8.7329950005327081e-05" /> - <width sOffset="209.71416011061393" a="2.4898818605878663" b="-0.0042605681246104003" c="0.0037476490978158509" d="-0.00069555031870829854" /> - <width sOffset="212.70991396802725" a="2.4920514488688976" b="-0.00053323456452555179" c="0.00035595140604950367" d="-0.00011193593168045831" /> - <width sOffset="213.6405080450298" a="2.4917732706542823" b="-0.00016155336661307675" c="0.00034367468452276321" d="-0.0001038110446614192" /> - <width sOffset="216.20886666680349" a="2.4918666059492347" b="-0.00045055177118237359" c="0.0009161667802897607" d="-0.00016607409172454478" /> - <width sOffset="219.45476193996109" a="2.4943773067073685" b="0.00024782282724181148" c="-0.00051770626839739322" d="0.0002218621961892949" /> - <width sOffset="219.94475807671412" a="2.4944005408684355" b="-9.9720495718106511e-05" c="-0.0005165802156475997" d="0.00011026720722500912" /> - <width sOffset="223.47929956473726" a="2.4924635121196337" b="0.00038123030755237916" c="0.0012303508817758666" d="-0.00046704414219986463" /> - <width sOffset="223.81386557098361" a="2.4927112868783063" b="0.0010476625341036445" c="0.00090940897940983395" d="-0.00044521677714524417" /> - <width sOffset="226.15569563434835" a="2.494434171722792" b="-0.002017905758003191" c="0.00028650539265112759" d="-4.5199347806856707e-06" /> - <width sOffset="233.98722309693741" a="2.4940320128851896" b="0.0016379828719971284" c="0.00021006400464613917" d="-5.1080367001292773e-06" /> - <width sOffset="234.92888753823723" a="2.4957564483387129" b="0.0020200141015699188" c="-0.00089149211459117392" d="8.9545466762258155e-05" /> - <width sOffset="240.09430158514724" a="2.4947455550394504" b="-2.2214955595276087e-05" c="2.5806948828850873e-05" d="8.4269047135907728e-05" /> - <width sOffset="241.6483955838693" a="2.49508966060358" b="0.00066857976304612009" c="-0.0014521589966824558" d="0.00061872955616603038" /> - <width sOffset="243.12553388338975" a="2.4949029050446927" b="0.00042858818771203313" c="7.5781711716228295e-05" d="0.00067191963885845126" /> - <width sOffset="243.59457983121999" a="2.4951899416377814" b="0.00094315362593489567" c="-0.0010240086133735755" d="4.0151593873115915e-05" /> - <width sOffset="244.16058062289122" a="2.4954029994933142" b="-0.00017743722578282464" c="-0.00096114796467559188" d="4.6314779492827955e-05" /> - <width sOffset="245.86994730098374" a="2.4925226093266448" b="-0.0030573595849790226" c="0.001636165973076271" d="-0.00015988116698339313" /> - <width sOffset="251.92033130035185" a="2.4985081303665564" b="-0.00081687466350754447" c="0.0003785884915053912" d="-6.8750643813224403e-05" /> - <width sOffset="254.33393814884502" a="2.497775316782719" b="-0.00019086732982883346" c="-0.00019872259353700587" d="-5.5895009086769022e-05" /> - <width sOffset="255.06165153889538" a="2.4975096427693626" b="-0.0005688939338860978" c="-0.00095472004752877675" d="0.00028930951423947009" /> - <width sOffset="257.53251391435515" a="2.4946395022523498" b="1.1985761347376583e-05" c="-0.0009236272510678346" d="0.00028032201608932253" /> - <width sOffset="259.55004142005066" a="2.4932061900720757" b="-0.00029181830877034014" c="0.00017638236750780315" d="-2.4256131126138681e-05" /> - <width sOffset="264.5072956747988" a="2.4931391422074829" b="-0.00033131122990727457" c="-0.00024242846004408344" d="-2.5133896090919503e-05" /> - <width sOffset="264.89596960147151" a="2.4929722713674671" b="-0.00053115321151420494" c="0.00031188660218213905" d="-2.8061794672446026e-05" /> - <width sOffset="269.86109705895097" a="2.4945889684517324" b="0.00049058085875968924" c="-0.0010930642043707622" d="0.00041210625398854794" /> - <width sOffset="271.34883388850312" a="2.4942565021816603" b="-2.5383313521080975e-05" c="-0.0015980956510972929" d="0.00040456192831288327" /> - <width sOffset="273.73777464230636" a="2.4905911769602169" b="-0.00073434416838650055" c="0.0012439343418954778" d="-0.00018568633917023694" /> - <width sOffset="274.6806532007526" a="2.4908490127460121" b="0.0011161772754219312" c="0.00042550857219081405" d="-0.00014812307932576688" /> - <width sOffset="277.21198768953917" a="2.493998398658885" b="0.00042302186764454214" c="0.00038030204536470538" d="-0.00021350701078481023" /> - <width sOffset="279.45673458663259" a="2.4944492912134169" b="-0.0010971286082674045" c="0.00098432285011006517" d="-0.00012804550575871366" /> - <width sOffset="284.27926577743602" a="2.4976894024114142" b="-0.00053706219239859493" c="-0.00039861243219856037" d="7.4083971137020778e-05" /> - <width sOffset="284.85401072670641" a="2.4972631196080304" b="-0.00092184629165464882" c="-0.00033860702029149173" d="6.8909659428497891e-05" /> - <width sOffset="288.49756157048506" a="2.4927423089536664" b="-0.00064488722981519836" c="0.00067055417462691077" d="-9.2088760177899107e-05" /> - <width sOffset="293.33093161858551" a="2.4948922924443777" b="-0.00061679962895210688" c="0.12782155012058963" d="-7.932262720079243" /> - <width sOffset="293.33906825572484" a="2.4948914631873609" b="-0.00011218760702711578" c="-0.00033030472251393379" d="6.4410826381996458e-05" /> - <width sOffset="295.02736825266021" a="2.4940705319956198" b="-0.00067671300473692506" c="-1.7366389514454324e-05" d="8.4139569620539636e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="296.76524204366967"> - <left> - <lane id="2" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4932836664961071" b="0.0001585141576671556" c="-3.150026042025595e-05" d="1.4003127151790895e-06" /> - <width sOffset="8.4354837349443414" a="2.4932198673755961" b="-7.3997934653468461e-05" c="-3.3190646871923864e-05" d="1.4285998008124713e-05" /> - <width sOffset="10.009674872008816" a="2.4930768607008522" b="-7.2289338130073974e-05" c="0.0082673013365449355" d="-0.0032509913143927314" /> - <width sOffset="10.638811275507919" a="2.4954941207390489" b="0.0064698810081533784" c="-0.0026437345831270866" d="-0.0024179692820039105" /> - <width sOffset="11.879526486469842" a="2.4948335635687648" b="-0.011256841253037844" c="-0.014004449466568316" d="-0.0036848247136386627" /> - <width sOffset="12.379775218161342" a="2.4852364555948849" b="-0.028034626237599423" c="-0.20033786952798549" d="0.20032502227143853" /> - <width sOffset="12.880023671477204" a="2.446155897721435" b="-0.078078926932240236" c="0.0020050563918370544" d="-0.00021390879150993893" /> - <width sOffset="16.866804441467536" a="2.1531866628551257" b="-0.07229135550531432" c="-0.0015298309228383743" d="0.0004560031431579516" /> - <width sOffset="18.608841260898146" a="2.0250205751967956" b="-0.073469911440554952" c="0.00085824645907175501" d="0.00045087530543219635" /> - <width sOffset="19.734528272963246" a="1.9440471411150599" b="-0.069823668984336368" c="0.0076686896328050213" d="-0.0017835133294955051" /> - <width sOffset="21.984612520868836" a="1.8054460384062101" b="-0.062402410697367149" c="0.0033977894103234931" d="-0.0028389956711203515" /> - <width sOffset="22.536429195558128" a="1.7715689462573074" b="-0.061245933524393191" c="0.0038683021885898149" d="-0.0011000601004694216" /> - <width sOffset="25.03609914279474" a="1.6254631999584972" b="-0.062527657144261534" c="0.0012563462638361628" d="-1.7177609499170496e-05" /> - <width sOffset="26.789144168809514" a="1.5196178206687443" b="-0.058281162987628608" c="0.0014035440727590933" d="-6.4725232900919051e-05" /> - <width sOffset="28.78219878685195" a="1.4085231049509421" b="-0.053457800659895173" c="0.0010133108412058022" d="-6.4742477855195271e-05" /> - <width sOffset="33.268570362274374" a="1.1832407734186414" b="-0.048274941228758569" c="-0.00020602710666058248" d="2.0409523425580549e-05" /> - <width sOffset="36.502113501656311" a="1.0256775213091081" b="-0.048967142542626685" c="0.0011726668659404874" d="-5.9684340927901029e-05" /> - <width sOffset="38.955556312805754" a="0.91171673604759795" b="-0.04429078883410395" c="0.00074200702666929865" d="-5.9989835405774693e-05" /> - <width sOffset="41.140660770102841" a="0.81785369854491408" b="-0.041907360181436516" c="0.00075555668009125024" d="8.2530325512403203e-05" /> - <width sOffset="41.640022489977753" a="0.79712545114332189" b="-0.04109102820236657" c="0.00054948992696563881" d="4.4545793147045466e-06" /> - <width sOffset="49.128913838759559" a="0.52208745787046529" b="-0.032111402369862048" c="0.00065594883450015404" d="-2.4018431709508412e-07" /> - <width sOffset="50.41212612801985" a="0.48196131172763512" b="-0.030429145645578911" c="0.0016742910197204653" d="-0.00020808205838399456" /> - <width sOffset="55.406559115328889" a="0.34582562799354521" b="-0.029276298908497256" c="0.0044264502313830362" d="-0.0011174292964418755" /> - <width sOffset="56.397195963791432" a="0.320081060461614" b="-0.02379609531503446" c="0.0016825786542359316" d="-0.00047123731712020006" /> - <width sOffset="58.650562801742808" a="0.26961147446049538" b="-0.023391513036392555" c="0.0019898540003550633" d="-7.4031567077325022e-05" /> - <width sOffset="68.189635750872924" a="0.16328350603369435" b="-0.0056380539628190464" c="0.0011708213019687604" d="-0.00015103689689319026" /> - <width sOffset="69.475628890667167" a="0.15764806888218086" b="-0.0033760622912432058" c="0.00058472360952141239" d="-0.00015416805179682377" /> - <width sOffset="72.461352805760441" a="0.14867723023639323" b="-0.0040074309302689688" c="-2.2240799544281996e-05" d="-4.3282007315312071e-06" /> - <width sOffset="75.868696345643627" a="0.13459310062026342" b="-0.0043097461211845673" c="0.00042632165122381837" d="-4.1924835949796551e-06" /> - <width sOffset="79.648986416620971" a="0.12416691055412477" b="-0.0012662463412623506" c="0.00037985814499774608" d="-4.587839316663438e-06" /> - <width sOffset="81.367363957322425" a="0.12308939554851972" b="-1.4081411911562574e-06" c="-0.00086764316756212149" d="0.00012854273675983699" /> - <width sOffset="85.866273982521591" a="0.11722674402359368" b="-3.116439853954097e-06" c="0.00083806297721839441" d="-4.8874692103368953e-05" /> - <width sOffset="89.822343942574776" a="0.12730446224337433" b="0.0043330165267923479" c="0.00025914253790820102" d="-4.8449573245305536e-05" /> - <width sOffset="94.068019458606614" a="0.14666436578117992" b="0.0039134655598614138" c="-0.00056539584226130237" d="-3.5575368665020032e-05" /> - <width sOffset="96.817797110565834" a="0.15241073421594797" b="-2.9458082512002007e-06" c="-0.00023487444204416528" d="2.0734828891272956e-05" /> - <width sOffset="99.75746065630625" a="0.150899114847173" b="-0.00084630183271411797" c="-0.00021932445658982125" d="1.4424916677844389e-05" /> - <width sOffset="99.99570146852858" a="0.15068523770061781" b="-0.00094834968818435523" c="-0.00020669170267718242" d="1.472242705733129e-05" /> - <width sOffset="110.16905899448238" a="0.13514677441757983" b="-0.00058265678523721203" c="0.00024590479832383528" d="1.2311748638926863e-05" /> - <width sOffset="111.25793069458518" a="0.13481978549654294" b="-3.3472703099852313e-06" c="0.00099277790400793863" d="-9.3798790601505783e-05" /> - <width sOffset="113.53235631026416" a="0.13884422233867588" b="0.003056984946114321" c="-0.00021351831268043525" d="-1.9022210308238701e-05" /> - <width sOffset="118.03321573069678" a="0.14654349207437245" b="-2.1087588443453181e-05" c="0.00015750635081255345" d="8.1703231148938871e-05" /> - <width sOffset="119.31935287705818" a="0.14695073001133729" b="0.00078950984398757328" c="-0.00051203358418803308" d="0.00011297065893372441" /> - <width sOffset="120.34241652043613" a="0.14734349302565386" b="9.6549300392950559e-05" c="-0.00016529640175000717" d="0.00011286877617107402" /> - <width sOffset="123.85520577732768" a="0.15053543605539055" b="0.0031135430235579593" c="-0.00023978792493492893" d="-1.5619620606414502e-05" /> - <width sOffset="128.35721063874024" a="0.15826734759358341" b="4.7525661256528785e-06" c="-0.0038310766036218843" d="0.001192642303599583" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.9279262273135229" b="-0.041303404181003006" c="0.0047090130324441148" d="0.0010416151798680034" /> - <width sOffset="0.70307704823017048" a="3.9015765048412616" b="-0.033137140893387165" c="0.0058450949247237901" d="-0.00030966194595381103" /> - <width sOffset="8.4354837349443414" a="3.8516621757255178" b="0.0017119928895454745" c="-0.0013689933487962668" d="-0.00030637010543754241" /> - <width sOffset="10.638811275507919" a="3.8455112163388474" b="-0.008782649572966459" c="0.0013809905480972127" d="-0.0011393921378255367" /> - <width sOffset="11.879526486469842" a="3.8345641571280806" b="-0.010617670315136173" c="-0.00049931184187982606" d="0.00012746329380714999" /> - <width sOffset="12.225054874603359" a="3.8308410960347441" b="-0.01091706966985366" c="-0.00026032478110914919" d="7.711707116443982e-05" /> - <width sOffset="16.457879983212024" a="3.78581531989325" b="-0.0089758128443145711" c="0.000892924845879318" d="0.00012310945792463467" /> - <width sOffset="16.866804441467536" a="3.7823026229060104" b="-0.0081837764267490669" c="0.0020204171961431291" d="-0.0005468024767500048" /> - <width sOffset="18.608841260898146" a="3.7712868312410848" b="-0.0061226258992131471" c="-0.0008933927431279419" d="-0.00053978358531791963" /> - <width sOffset="19.734528272963246" a="3.7624926212532119" b="-0.010185981834643462" c="-0.0080040846046583389" d="0.0016946050496097383" /> - <width sOffset="21.640245548465202" a="3.7257406575331631" b="-0.022229838409974792" c="0.0016975201647823606" d="0.0016900138570795924" /> - <width sOffset="22.536429195558128" a="3.7083984086463539" b="-0.015115279592024564" c="0.0010708802806553984" d="-4.8921713570106135e-05" /> - <width sOffset="26.789144168809514" a="3.6597222209968394" b="-0.0086613157588821925" c="0.00020919279160761214" d="-1.3740901683863629e-06" /> - <width sOffset="28.78219878685195" a="3.6432798365918391" b="-0.0078438251980314008" c="0.00019351436272770485" d="-3.5436737647584619e-06" /> - <width sOffset="29.990796721186484" a="3.6340762177885404" b="-0.007391591908048431" c="3.929273633454835e-05" d="1.4585295940961194e-05" /> - <width sOffset="33.268570362274374" a="3.610784038025483" b="-0.0066639020077222232" c="0.00053067614283319427" d="-7.0566705339801392e-05" /> - <width sOffset="36.502113501656311" a="3.5923988578698021" b="-0.0054454679403036178" c="-0.00099981425970396723" d="0.00014181348467506876" /> - <width sOffset="38.955556312805754" a="3.5751147812338502" b="-0.0077905537036258281" c="8.1493211433763591e-05" d="0.0001332593814357799" /> - <width sOffset="41.140660770102841" a="3.5598710305600108" b="-0.0055255980390882878" c="0.00054824839286166625" d="-9.26077950439789e-06" /> - <width sOffset="41.469356417285042" a="3.5581136948731649" b="-0.005168185945338682" c="0.00026045318857030006" d="-2.0764779368469856e-05" /> - <width sOffset="46.957670877196335" a="3.5341615641952977" b="-0.0041856928046761881" c="0.0031868843476295203" d="-0.0004376519264118743" /> - <width sOffset="49.128913838759559" a="3.5356175708025628" b="0.0034636454377546784" c="0.00033166514239485901" d="-0.00041951891765448193" /> - <width sOffset="50.41212612801985" a="3.5397218588438908" b="0.00224245694842939" c="-0.0023025971573614676" d="-0.00021167704358817754" /> - <width sOffset="51.269965273185051" a="3.5398174464660728" b="-0.0021753707939385107" c="-0.0010996713417334321" d="0.00019744295187417804" /> - <width sOffset="56.397195963791432" a="3.5263678924109554" b="0.0021195257958519014" c="0.001360307013072987" d="-0.00044874902744743394" /> - <width sOffset="58.650562801742808" a="3.5329166284146982" b="0.0014142794254014702" c="-0.0014119529946551763" d="7.1405520358587774e-05" /> - <width sOffset="59.206856208348938" a="3.5332787290300178" b="-9.0348896020047732e-05" c="-0.0012762708737946867" d="6.9549933342876355e-05" /> - <width sOffset="68.189635750872924" a="3.4798958502676927" b="-0.0061832478216642906" c="-0.00070156057682608684" d="0.00014655526315868813" /> - <width sOffset="69.475628890667167" a="3.4710956963474162" b="-0.0072605422332279413" c="-0.00012843512088569171" d="0.00015045104241024929" /> - <width sOffset="72.28901161467337" a="3.4530027167713699" b="-0.0044107013078687491" c="0.0011130717008268646" d="0.00015471650965151804" /> - <width sOffset="72.461352805760441" a="3.4522764230993879" b="-0.0040132591716915932" c="0.00041911847497716226" d="4.8766585687436863e-06" /> - <width sOffset="75.868696345643627" a="3.4436607485203816" b="-0.00098724404374146051" c="-2.3837622985488306e-05" d="4.7409414322066787e-06" /> - <width sOffset="79.648986416620971" a="3.4398441438160576" b="-0.00096421770908871837" c="3.1222941954375353e-05" d="3.9830738546024321e-06" /> - <width sOffset="82.637784644297653" a="3.437347546332246" b="-0.0006708381832342381" c="3.2809944641507626e-05" d="-8.4518470582272042e-07" /> - <width sOffset="89.822343942574776" a="3.4339080115380876" b="-0.00033026815691697799" c="1.9694885860642984e-05" d="-9.0133633946311511e-07" /> - <width sOffset="94.068019458606614" a="3.4327918347584112" b="-0.00021177378672965338" c="0.00021564942047623079" d="-1.377554091976884e-05" /> - <width sOffset="96.486082430053727" a="3.433345895467502" b="0.00058949602772388407" c="-0.00023863305659193969" d="2.9555552920026558e-05" /> - <width sOffset="99.75746065630625" a="3.4337552694321962" b="-2.2918853427200681e-05" c="0.0002187393967140377" d="3.5865465052199986e-05" /> - <width sOffset="99.99570146852858" a="3.4337627095676204" b="8.7413479503422806e-05" c="0.00024910356622149496" d="3.6012651817259476e-05" /> - <width sOffset="104.99569627197377" a="3.4449289201631705" b="0.0052793898248027753" c="0.0009055092856107103" d="-0.00018572298052890935" /> - <width sOffset="107.67083196544826" a="3.4619766268559031" b="0.0061368137459075723" c="-0.00025679961850326791" d="5.5016085062256031e-06" /> - <width sOffset="110.16905899448238" a="3.4757908387680194" b="0.0049567351484171868" c="-0.00020961103738867786" d="6.2825124967062417e-06" /> - <width sOffset="113.53235631026416" a="3.4903297583814394" b="0.0037599656567870055" c="0.00042005993535795707" d="-6.8494067796580848e-05" /> - <width sOffset="119.31935287705818" a="3.5128818614979558" b="0.0017402752970863298" c="0.00021571974637509586" d="-9.9761495212453681e-05" /> - <width sOffset="119.44359689855963" a="3.5131012189410238" b="0.001789259146737286" c="-0.00049791475749351845" d="-5.749247488855737e-05" /> - <width sOffset="120.34241652043613" a="3.5142654391096273" b="0.00075484754377160793" c="-0.00065281606270259948" d="-5.7294640846578519e-05" /> - <width sOffset="123.85520577732768" a="3.5063779776551662" b="-0.0059525569986119149" c="7.3361370690584813e-06" d="7.1193755930906732e-05" /> - <width sOffset="128.83554071807373" a="3.4857088433739221" b="-0.00058187075212543806" c="0.0006472488346770548" d="-5.1933394291319456e-05" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="130.51577404638994" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16593723176204453" weight="standard" type="solid"> - <type name="solid"> - <line length="130.51577404638994" space="0" width="0.165937" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="2.4932836664984506" b="-0.00068037478066163698" c="0.00184138841502605" d="-0.0013539795290678533" /> - <width sOffset="0.70307704823017048" a="2.493244974479242" b="-9.8985578094984428e-05" c="4.6457908923046385e-05" d="-2.702403246036385e-06" /> - <width sOffset="8.4354837349443414" a="2.4940079223218059" b="0.00013474632539544479" c="-2.3074056732988089e-05" d="-3.9043306488542059e-06" /> - <width sOffset="12.225054874603359" a="2.493974710677155" b="-0.0002083437471768583" c="-0.00017432177438058728" d="4.6441891995623772e-05" /> - <width sOffset="15.222249081667087" a="2.493034717430485" b="-1.709505117976004e-06" c="-4.6330687212194226e-05" d="4.7487088189468878e-05" /> - <width sOffset="16.457879983212024" a="2.4930514545199216" b="0.00010130277742986284" c="-4.4281548048025573e-05" d="1.4947014358303092e-06" /> - <width sOffset="18.608841260898146" a="2.4930793531746458" b="-6.8446701582096023e-05" c="-3.0815404494901504e-05" d="-1.9419028558308138e-07" /> - <width sOffset="21.640245548465202" a="2.4925832785791715" b="-0.00026062808379611994" c="-4.5871827145872718e-05" d="4.397002244518455e-06" /> - <width sOffset="28.78219878685195" a="2.4899838757552368" b="-0.00024301674868636245" c="4.6405276679217528e-05" d="4.6326872764471662e-06" /> - <width sOffset="29.990796721186484" a="2.4897661294102238" b="-0.0001105450820776217" c="0.00020457544151430697" d="-1.3496282429260025e-05" /> - <width sOffset="38.955556312805754" a="2.4954925488309816" b="0.00030343049135338153" c="-0.00015579567150117822" d="-9.9342303709318425e-06" /> - <width sOffset="41.469356417285042" a="2.4951130027655672" b="-0.00066817675566269706" c="4.7949591035569537e-05" d="1.5697695195220398e-06" /> - <width sOffset="46.957670877196335" a="2.4931496660626062" b="0" c="-5.0617070457309021e-05" d="1.0108377947636667e-05" /> - <width sOffset="49.128913838759559" a="2.4930145103738424" b="-7.6842258812385295e-05" c="1.6407790437579723e-05" d="2.3149510293234404e-05" /> - <width sOffset="51.269965273185051" a="2.4931524098516231" b="0.00031177668455130685" c="-2.5602239424752136e-05" d="1.1775750043037019e-06" /> - <width sOffset="59.206856208348938" a="2.4946029158964511" b="0.00012791363978171665" c="-1.407824664521087e-05" d="3.0331622962758181e-06" /> - <width sOffset="59.302271364713363" a="2.4946149952621015" b="0.00012530992576663359" c="-2.4745763322465031e-05" d="8.2074326180800945e-07" /> - <width sOffset="69.475628890667167" a="2.4941928727537745" b="-0.00012335117249861463" c="5.0048963655373725e-06" d="8.4573765471084489e-07" /> - <width sOffset="72.28901161467337" a="2.4939042861763325" b="-7.5107443514414428e-05" c="4.0465316340169012e-05" d="-3.4197295690819509e-06" /> - <width sOffset="79.648986416620971" a="2.4941800802609997" b="-3.5192369593323256e-05" c="-3.5016551064677381e-05" d="-3.0814227527407034e-06" /> - <width sOffset="82.637784644297653" a="2.4936798275800767" b="-0.00032708544227798286" c="-2.8518994106072919e-05" d="1.7468358076823989e-06" /> - <width sOffset="89.822343942574776" a="2.4905055896756876" b="-0.00046637430302794028" c="1.0129048207497697e-05" d="1.7338600066448894e-06" /> - <width sOffset="96.486082430053727" a="2.4883606374831468" b="-0.00010040134955739341" c="0.00039914311802139747" d="-4.1597233833185855e-05" /> - <width sOffset="99.99570146852858" a="2.4911264562747273" b="0.0011641666995300705" c="-3.3239399559357264e-05" d="-4.3719179899308652e-05" /> - <width sOffset="102.73622805784117" a="2.4931673838486983" b="-3.0770810347828179e-06" c="-2.0084583021579602e-05" d="-6.1981767753315799e-05" /> - <width sOffset="104.99569627197377" a="2.4923429340191841" b="-0.0010431253668701313" c="-0.00055643858886000885" d="0.00015975386459283591" /> - <width sOffset="107.67083196544826" a="2.488628723799748" b="-0.00059045865184710025" c="0.00039745758834858202" d="-3.1470724442404335e-05" /> - <width sOffset="110.16905899448238" a="2.4891435271854934" b="0.00080618049850556634" c="0.00016309328553163396" d="-3.2488346933563642e-05" /> - <width sOffset="115.16858572981528" a="2.4931907181463613" b="7.9420699609228373e-07" c="-0.00022536082025012108" d="7.0651849012178712e-06" /> - <width sOffset="119.44359689855963" a="2.489627477218999" b="-0.0015386818066810432" c="0.0005417006086030319" d="-3.5203835790856779e-05" /> - <width sOffset="120.34241652043613" a="2.4886565443734172" b="-0.00065022061168872568" c="0.00044718275289698842" d="-3.5062193397709208e-05" /> - <width sOffset="128.83554071807373" a="2.4939104868827089" b="-0.00064170356839887872" c="-2.2386383539679182e-05" d="8.8064956824717442e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659308" type="pole" s="383.33655093089482" t="-6.3584444948052381" height="0.34280987473144364" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670026" type="pole" s="304.02384197071467" t="-4.3167160911241895" height="2.3251590376250419" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670038" type="pole" s="288.10367068480411" t="5.1738975068588813" height="1.2515261873591044" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670082" type="pole" s="243.38501173075801" t="7.2895655469675109" height="2.1324934516128451" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276670126" type="pole" s="242.79187132367682" t="-5.1849987325265197" height="2.3256409045244766" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="276659364" type="pole" s="312.43617662021126" t="-8.4807337650654073" height="2.1226637782052364" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="277422369" type="pole" s="370.24293579544178" t="-6.4775893794529491" height="2.2631938763587698" zOffset="0" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" name="roadsignpole" /> - <object id="5182309" s="37.078149482771494" t="-4.9911750851979546" orientation="none" validLength="7.0299797232094221" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.0299797232094221" s="37.078149482771494" distance="0" tStart="-4.9911750851979546" tEnd="-4.9788965894005957" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273617765" s="44.108129205980916" t="-4.9788965894005957" orientation="none" validLength="15.060324934750398" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.060324934750398" s="44.108129205980916" distance="0" tStart="-4.9788965894005957" tEnd="-4.7666143630340674" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542053221" s="59.168454140731313" t="-4.7666143630340674" orientation="none" validLength="27.880031769403956" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="27.880031769403956" s="59.168454140731313" distance="0" tStart="-4.7666143630340674" tEnd="-4.1781165015443076" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810488677" s="87.04848591013527" t="-4.1781165015443076" orientation="none" validLength="11.48835554210028" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="11.48835554210028" s="87.04848591013527" distance="0" tStart="-4.1781165015443076" tEnd="-4.2976064182446585" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078924133" s="98.536841452235549" t="-4.2976064182446585" orientation="none" validLength="9.0238872697751589" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.0238872697751589" s="98.536841452235549" distance="0" tStart="-4.2976064182446585" tEnd="-4.2487996340106848" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742258" s="107.56072872201071" t="-4.2487996340106848" orientation="none" validLength="7.163618202923459" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.163618202923459" s="107.56072872201071" distance="0" tStart="-4.2487996340106848" tEnd="-4.1047806457419433" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742259" s="114.72434692493417" t="-4.1047806457419433" orientation="none" validLength="18.797088102905292" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.797088102905292" s="114.72434692493417" distance="0" tStart="-4.1047806457419433" tEnd="-4.3068860691675956" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742260" s="133.52143502783946" t="-4.3068860691675956" orientation="none" validLength="29.175961033709484" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="29.175961033709484" s="133.52143502783946" distance="0" tStart="-4.3068860691675956" tEnd="-4.756692951922334" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742261" s="162.69739606154894" t="-4.756692951922334" orientation="none" validLength="15.672992033000128" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.672992033000128" s="162.69739606154894" distance="0" tStart="-4.756692951922334" tEnd="-4.7933831231289643" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742262" s="178.37038809454907" t="-4.7933831231289643" orientation="none" validLength="14.237187076631017" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.237187076631017" s="178.37038809454907" distance="0" tStart="-4.7933831231289643" tEnd="-4.95239026809978" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742263" s="192.60757517118009" t="-4.95239026809978" orientation="none" validLength="18.829842314784628" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.829842314784628" s="192.60757517118009" distance="0" tStart="-4.95239026809978" tEnd="-4.9810265057550769" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742264" s="211.43741748596472" t="-4.9810265057550769" orientation="none" validLength="15.359857397193622" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.359857397193622" s="211.43741748596472" distance="0" tStart="-4.9810265057550769" tEnd="-4.858468505487421" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742265" s="226.79727488315834" t="-4.858468505487421" orientation="none" validLength="20.455052483738768" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="20.455052483738768" s="226.79727488315834" distance="0" tStart="-4.858468505487421" tEnd="-4.8155133100694405" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742266" s="247.25232736689711" t="-4.8155133100694405" orientation="none" validLength="14.85283010941086" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.85283010941086" s="247.25232736689711" distance="0" tStart="-4.8155133100694405" tEnd="-4.6818421308075786" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742267" s="262.10515747630797" t="-4.6818421308075786" orientation="none" validLength="12.038894533672817" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="12.038894533672817" s="262.10515747630797" distance="0" tStart="-4.6818421308075786" tEnd="-4.4431796989759045" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742268" s="274.14405200998078" t="-4.4431796989759045" orientation="none" validLength="27.546985682078628" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="27.546985682078628" s="274.14405200998078" distance="0" tStart="-4.4431796989759045" tEnd="-3.4802718133181356" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742269" s="301.69103769205941" t="-3.4802718133181356" orientation="none" validLength="6.6181463142271468" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.6181463142271468" s="301.69103769205941" distance="0" tStart="-3.4802718133181356" tEnd="-3.4526187913598827" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742270" s="308.30918400628656" t="-3.4526187913598827" orientation="none" validLength="5.9913021058314371" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.9913021058314371" s="308.30918400628656" distance="0" tStart="-3.4526187913598827" tEnd="-3.5790720247360399" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="5182532" s="0" t="6.7446379867094368" orientation="none" validLength="7.3914915909401238" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.3914915909401238" s="0" distance="0" tStart="6.7446379867094368" tEnd="6.9242399035323956" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="273617988" s="7.3914915909401238" t="6.9242399035323956" orientation="none" validLength="16.158404433492802" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="16.158404433492802" s="7.3914915909401238" distance="0" tStart="6.9242399035323956" tEnd="6.9124145758604678" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="542053444" s="23.549896024432925" t="6.9124145758604678" orientation="none" validLength="14.861486028854102" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="14.861486028854102" s="23.549896024432925" distance="0" tStart="6.9124145758604678" tEnd="6.7615391608604529" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="810488900" s="38.411382053287028" t="6.7615391608604529" orientation="none" validLength="18.968609599422535" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="18.968609599422535" s="38.411382053287028" distance="0" tStart="6.7615391608604529" tEnd="7.077277711307171" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1078924356" s="57.379991652709563" t="7.077277711307171" orientation="none" validLength="9.1477517319578396" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="9.1477517319578396" s="57.379991652709563" distance="0" tStart="7.077277711307171" tEnd="7.3389763094787073" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742271" s="66.527743384667403" t="7.3389763094787073" orientation="none" validLength="15.398076813536079" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="15.398076813536079" s="66.527743384667403" distance="0" tStart="7.3389763094787073" tEnd="7.5105674951492993" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742272" s="81.925820198203482" t="7.5105674951492993" orientation="none" validLength="47.256776702132086" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="47.256776702132086" s="81.925820198203482" distance="0" tStart="7.5105674951492993" tEnd="7.3498460736936124" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742273" s="129.18259690033557" t="7.3498460736936124" orientation="none" validLength="7.7459134470795448" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.7459134470795448" s="129.18259690033557" distance="0" tStart="7.3498460736936124" tEnd="7.4523542329064227" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742274" s="136.92851034741511" t="7.4523542329064227" orientation="none" validLength="24.081114254548993" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="24.081114254548993" s="136.92851034741511" distance="0" tStart="7.4523542329064227" tEnd="7.0679451032021134" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742275" s="161.00962460196411" t="7.0679451032021134" orientation="none" validLength="7.6675902428689824" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.6675902428689824" s="161.00962460196411" distance="0" tStart="7.0679451032021134" tEnd="6.849608885808105" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742276" s="168.67721484483309" t="6.849608885808105" orientation="none" validLength="8.1812116690785501" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.1812116690785501" s="168.67721484483309" distance="0" tStart="6.849608885808105" tEnd="6.8944225863666269" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742277" s="176.85842651391164" t="6.8944225863666269" orientation="none" validLength="13.996430334439196" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.996430334439196" s="176.85842651391164" distance="0" tStart="6.8944225863666269" tEnd="6.6434594164643421" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742278" s="190.85485684835083" t="6.6434594164643421" orientation="none" validLength="8.1635915598017732" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="8.1635915598017732" s="190.85485684835083" distance="0" tStart="6.6434594164643421" tEnd="6.6112552475489537" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742279" s="199.01844840815261" t="6.6112552475489537" orientation="none" validLength="28.266690181185339" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="28.266690181185339" s="199.01844840815261" distance="0" tStart="6.6112552475489537" tEnd="6.9031748671316597" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742280" s="227.28513858933795" t="6.9031748671316597" orientation="none" validLength="13.284350070282358" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="13.284350070282358" s="227.28513858933795" distance="0" tStart="6.9031748671316597" tEnd="6.9531560753313881" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742281" s="240.5694886596203" t="6.9531560753313881" orientation="none" validLength="6.886304743373671" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.886304743373671" s="240.5694886596203" distance="0" tStart="6.9531560753313881" tEnd="6.8621545769041212" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742282" s="247.45579340299398" t="6.8621545769041212" orientation="none" validLength="7.7103720344446742" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="7.7103720344446742" s="247.45579340299398" distance="0" tStart="6.8621545769041212" tEnd="6.543808636656145" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742283" s="255.16616543743865" t="6.543808636656145" orientation="none" validLength="19.131669651783938" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="19.131669651783938" s="255.16616543743865" distance="0" tStart="6.543808636656145" tEnd="5.1947684995419401" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object id="1073742284" s="274.29783508922259" t="5.1947684995419401" orientation="none" validLength="6.1162840791199073" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="6.1162840791199073" s="274.29783508922259" distance="0" tStart="5.1947684995419401" tEnd="4.9842470017214033" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412772" s="278.54663325460263" t="5.2611054355258284" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848228" s="250.40356529957367" t="7.0147514016312078" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283684" s="225.52504624643612" t="7.0508466792509354" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719140" s="197.31975547073944" t="6.5923905558345002" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154596" s="173.3475739236344" t="7.2458765285266935" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742285" s="150.18280835614607" t="7.5260713310561416" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742286" s="127.2836953251696" t="7.5393280620925482" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742287" s="104.00346119319546" t="7.8765993859423515" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742288" s="79.233893011581003" t="7.5114325603271093" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742289" s="45.519729825481839" t="6.7683148923209684" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742290" s="24.893184304171378" t="7.0197893772302979" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="9412805" s="300.21635798195683" t="-3.7871835500190381" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="277848261" s="250.90048297354483" t="-4.9620194082335374" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="546283717" s="225.34294821927264" t="-5.1385219920981315" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="814719173" s="197.79608977155095" t="-5.0814292618060497" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1083154629" s="173.52679545712476" t="-5.0177304846950204" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742291" s="150.9011408998112" t="-4.8150629615990752" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742292" s="122.30496039629408" t="-4.4130174740475727" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742293" s="103.95106723052139" t="-4.4600427655146317" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742294" s="75.356951099575127" t="-4.6520154513298051" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="guidepost" name="guidepost_DE" zOffset="0" id="1073742295" s="61.038032154518888" t="-4.9488553229096581" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8223852" type="626" subtype="32" country="DEU" zOffset="0.34280987473144364" s="383.33655093089482" t="-6.3584444948052381" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8223908" type="276" subtype="-1" country="DEU" zOffset="2.1226637782052364" s="312.43617662021126" t="-8.4807337650654073" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8223920" type="1049" subtype="13" country="DEU" zOffset="1.3656356680060924" s="312.43307899114296" t="-8.4443439117156647" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8234570" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.3251590376250419" s="304.02384197071467" t="-4.3167160911241895" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8234582" type="605" subtype="31" country="DEU" zOffset="1.2515261873591044" s="288.10367068480411" t="5.1738975068588813" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8234626" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.1324934516128451" s="243.38501173075801" t="7.2895655469675109" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8234670" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.3256409045244766" s="242.79187132367682" t="-5.1849987325265197" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986901" type="511" subtype="22" country="DEU" zOffset="2.2631938763587698" s="370.24426958246545" t="-6.4787971604104353" orientation="-" hOffset="3.1415926535897931" /> - <signal dynamic="no" id="8986913" type="1004" subtype="33" country="DEU" zOffset="1.8981478733500978" s="370.24293579544178" t="-6.4775893794529491" orientation="-" hOffset="3.1415926535897931" /> - </signals> - </road> - <road name="" length="5.0000000000000568" id="33782286" junction="33556587"> - <link> - <predecessor elementType="road" elementId="33782019" contactPoint="end" /> - <successor elementType="road" elementId="9100473" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1753.0679056553786" y="100.76685894860647" hdg="0.41895467314610246" length="5.0000000000000568"> - <paramPoly3 aU="0" bU="5.0000017620815287" cU="-1.7317202617289765e-06" dU="-3.5108085083121239e-08" aV="-0" bV="-0" cV="-0.00018733922867203515" dV="-1.1949146719725221e-06" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.3063374345858" b="0.00037990236126078897" c="-1.1486916216654278e-05" d="-3.7280672529289848e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.023726427327337384" b="-2.1488929262364098e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="7.9766947642924944" b="0.0053441723052595255" c="0.00064546059230734395" d="-0.00020332473855626636" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000000568" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8087573269336623" b="0.0048341411478869858" c="0.00057582241976240423" d="-0.00020765662123289707" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8603538223114775" b="0.00015636237910243115" c="0.0002501419675693648" d="5.8299241990891054e-06" /> - <width sOffset="0.96800629827538387" a="3.8607448622295748" b="0.00065702892918232574" c="-0.00017657483274624496" d="0.00010064120829187031" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9488232067731888" b="0.0034393052364363273" c="0.0010485262570719806" d="-0.00039765396082910447" /> - <width sOffset="0.96800629827538387" a="3.9527742881727588" b="0.0043514168165845624" c="0.00033737865156699583" d="-0.00049246524492189058" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.5063343475933846" b="-0.0074698926393490569" c="-2.4144546648656061e-05" d="0.00051309898093478904" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000000568" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <predecessor id="-5" /> - </link> - <width sOffset="0" a="0.18176732725256617" b="-0.00064268584811086674" c="-0.00017342982935620688" d="-0.00018698248870348028" /> - <width sOffset="4.4927103954627796" a="0.15842323134468472" b="-0.013523440072379114" c="0.051289090708737176" d="2.0029793597585725e-06" /> - <width sOffset="4.7427367336659927" a="0.15824829008604446" b="0.012124182644737774" c="2.1606347895221014" d="-2.7070556145297839" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782279" s="0" t="9.4697473592482808" orientation="none" validLength="5.0000000000000568" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.0000000000000568" s="0" distance="0" tStart="9.4697473592482808" tEnd="9.4636403869666967" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="4.9999999999998952" id="33782308" junction="33556587"> - <link> - <predecessor elementType="road" elementId="33782045" contactPoint="end" /> - <successor elementType="road" elementId="9100473" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1756.7403550725628" y="92.518414477990348" hdg="0.41718592190177861" length="4.9999999999998952"> - <paramPoly3 aU="0" bU="4.9901673995956095" cU="0.0094541205888678849" dU="0.00037738022070165668" aV="-0" bV="4.4408920985006262e-16" cV="-0.0024718941085917182" dV="0.0044755239957476687" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.09588225735612" b="-9.0049269937341825e-05" c="-3.5489954325385045e-05" d="-4.2713331673727151e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.023252456737597276" b="7.3305188685658817e-05" c="-0" d="8.6736173798845811e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.5182343574417256" b="0.0034515951871005482" c="0.00061505346274361465" d="4.2297974073227878e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.12" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999998952" space="0" width="0.12" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-6" /> - </link> - <width sOffset="0" a="3.3863158343140007" b="-0.0090327021395450371" c="0.00048170690435801934" d="4.2045473142599408e-05" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999998952" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="2.4928587436527918" b="9.0118684057281448e-05" c="-7.0964803169818271e-06" d="-1.99297718056192e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="5.0000000011376473" id="33782320" junction="33554597"> - <link> - <predecessor elementType="road" elementId="33781969" contactPoint="start" /> - <successor elementType="road" elementId="4940030" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="660.79479631654954" y="-254.13038568642784" hdg="0.042856448045598183" length="5.0000000011376473"> - <paramPoly3 aU="0" bU="5.0004757903167247" cU="-0.00047147416456179637" dU="-9.030802838725833e-06" aV="-0" bV="4.4408920985006262e-16" cV="0.0058726221631195639" dV="6.607660713093401e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.34877670074601" b="-0.01502765183454016" c="3.3428259162064936e-05" d="1.3655502843334943e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.028184898499840075" b="8.0800997199598204e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.6903153136327158" b="0.00088903225060935618" c="-1.0453649158041201e-05" d="-7.2268921394444041e-06" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15327851038223128" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000011376473" space="0" width="0.153279" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.9453453415765947" b="0.0080035276104323053" c="7.8332274683626927e-06" d="-0.00010775816260485536" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="2" /> - <successor id="-5" /> - </link> - <width sOffset="0" a="3.7089786428962261" b="-0.0062794348378956474" c="-0.00010954942753973417" d="0.00029079984827803658" /> - <width sOffset="0.27842690011850291" a="3.707228063527316" b="-0.0062728080978429425" c="0.00020810163281490061" d="6.0915926667656687e-05" /> - <width sOffset="4.376258995827647" a="3.6892093695370876" b="-0.0014985346303890233" c="-0.0003151857475025238" d="0.0016207924331761664" /> - <roadMark sOffset="0" color="standard" width="0.30015685778938728" weight="bold" type="solid"> - <type name="solid"> - <line length="5.0000000011376473" space="0" width="0.30015700000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="2.493162872451415" b="-1.3859837345992312e-05" c="0.00019385498828179898" d="-0.00021950225552516068" /> - <width sOffset="0.27842690011850291" a="2.4931693036822238" b="4.3040591771113823e-05" c="-6.4242568864642552e-05" d="1.0381666085222197e-05" /> - <width sOffset="4.376258995827647" a="2.492981281351931" b="3.9523978739653852e-05" c="0.001335541503251138" d="-0.0015494948404252706" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33781966" s="0" t="-7.3674047067367345" orientation="none" validLength="5.0000000011376464" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.0000000011376464" s="0" distance="0" tStart="-7.3674047067367345" tEnd="-7.348783641595273" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="4.9999999994717861" id="33782323" junction="33556490"> - <link> - <predecessor elementType="road" elementId="33782252" contactPoint="start" /> - <successor elementType="road" elementId="4940168" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-562.79869504182966" y="-228.47304419041902" hdg="1.27271393447225" length="4.9999999994717861"> - <paramPoly3 aU="0" bU="4.8134285371078285" cU="0.1533498929485928" dU="0.032811149059914869" aV="-0" bV="4.4408920985006262e-16" cV="-0.060747030869514357" dV="0.0042134670242187427" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.92295377009813" b="-0.00092742866264970973" c="7.1962636918669891e-05" d="4.99838335482862e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028457149297500123" b="-5.1793490723079803e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.7836453986431549" b="0.015300290683905541" c="0.0038928820088299423" d="0.00035890276123767487" /> - <laneOffset s="2.0885663972659789" a="3.8358520531335483" b="0.036258095324480856" c="0.050293224948966236" d="-0.011568300388350087" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16593723176204453" weight="standard" type="solid"> - <type name="solid"> - <line length="2.0885663972659789" space="0" width="0.165937" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <roadMark sOffset="2.0885663972659789" type="none" width="0" /> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6091187902268032" b="-0.021447749736102108" c="0.0029440507953578826" d="0.0013302042958824869" /> - <width sOffset="1.6164751234155403" a="3.5877603821523629" b="-0.0015023411399155695" c="0.013016024374220489" d="-0.0011753067397247798" /> - <width sOffset="2.0885663972659789" a="3.5898283636133774" b="0.010001339473030831" c="0.055503034405568634" d="-0.013102509889308604" /> - <roadMark sOffset="0" color="standard" width="0.15684155628812513" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.15684200000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="2" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.4627442707896079" b="0.0030691736255717694" c="-2.778410020761238e-05" d="-0.0009757070420273275" /> - <width sOffset="1.2806472215778513" a="3.464579920462675" b="-0.0018026360246736761" c="-0.0049336667126625815" d="-0.0006599801295711521" /> - <width sOffset="1.6164751234155403" a="3.46339312756953" b="-0.0053396603343620688" c="-0.0092198330579587387" d="0.0018455309060325178" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="4.9999999994717861" space="0" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="2.4933358730922723" b="1.4885954275546676e-05" c="-0.00062802458488993816" d="0.00012563596957902622" /> - <width sOffset="1.2806472215778513" a="2.4925888180424765" b="-0.00097551935570134446" c="0.0010119345563413204" d="-0.0001900909428775193" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782249" s="0" t="-6.7446379867094368" orientation="none" validLength="4.9999994384157072" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="4.9999994384157072" s="0" distance="0" tStart="-6.7446379867094368" tEnd="-6.6016418764827609" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="4.999999999412319" id="33782325" junction="33554597"> - <link> - <predecessor elementType="road" elementId="33781942" contactPoint="start" /> - <successor elementType="road" elementId="4940030" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="660.3527959705682" y="-244.36814670859701" hdg="0.043588376720283595" length="4.999999999412319"> - <paramPoly3 aU="0" bU="4.967337425579232" cU="0.032261184509095861" dU="0.00039907533374361124" aV="-0" bV="-0" cV="0.0041813493035314873" dV="-7.6422612267209617e-06" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.07121194259207" b="-0.012941854920484025" c="-0.00013305280561553889" d="-2.313599395379562e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.027893224450209121" b="2.2466187294432542e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="5.2384787362378296" b="-0.00044336982480320386" c="0.00052204754757109761" d="7.1224862025138575e-05" /> - <laneOffset s="0.39303186853167205" a="5.2383894448569679" b="-0" c="0.00013305555759514601" d="-1.6701674386470649e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16415335160999631" weight="standard" type="solid"> - <type name="solid"> - <line length="4.999999999412319" space="0" width="0.16415299999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8212742921510543" b="-0.00085423142591824935" c="0.00063389283623497292" d="-0.00059723478158391812" /> - <width sOffset="0.39303186853167205" a="3.8210002119217408" b="-0.00063272308012581589" c="-0.00054327697723400431" d="-0.00068516173957699556" /> - <width sOffset="0.39973793778296152" a="3.82099594419841" b="-0.00064010202417219358" c="-0.0012319498560850808" d="0.00018861566629120057" /> - <roadMark sOffset="0" color="standard" width="0.14573232133187675" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.145732" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6551692970762013" b="0.0032934445760545686" c="-7.7854648458603902e-05" d="0.00062332610364539706" /> - <width sOffset="0.39973793778296152" a="3.6565131859062303" b="0.0035300062804544991" c="0.0013445352815605461" d="-0.00025045088064133372" /> - <roadMark sOffset="0" color="standard" width="0.14480015053551021" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14480000000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.8465111972139874" b="-0.0027919641800373428" c="-0.00045939185969330544" d="0.00046498930324717646" /> - <width sOffset="0.13250145053518825" a="3.8461342742304581" b="-0.0028892134140230219" c="-0.00038849707594799281" d="0.00010532870010351774" /> - <width sOffset="4.2573869442771226" a="3.8349987943815305" b="-0.00071782283234442463" c="0.011328927271447386" d="-0.0097364442245535324" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="4.999999999412319" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link> - <predecessor id="4" /> - </link> - <width sOffset="0" a="-2.454799919160422e-05" b="0.00027924597085445766" c="-0.0010491601918338231" d="-0.00013397615877720152" /> - <width sOffset="0.13250145053518825" a="-6.2788908987698733e-06" b="-5.8410349590877288e-06" c="-0.00098847581021367127" d="0.00022568444436643495" /> - <width sOffset="4.2573869442771226" a="-0.0010096238245838052" b="0.0033593059375444673" c="-0.0086097262040380779" d="0.010067457369033804" /> - <width sOffset="4.7504933193607934" a="-0.00023952157445528144" b="0.002212108660644644" c="2.3916491988450721" d="-3.1651029061938272" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33781938" s="0" t="6.7417376166212444" orientation="none" validLength="5.000000000207252" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="5.000000000207252" s="0" distance="0" tStart="6.7417376166212444" tEnd="6.7501314107154773" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="5.0000000000000462" id="33782328" junction="33555390"> - <link> - <predecessor elementType="road" elementId="33782160" contactPoint="start" /> - <successor elementType="road" elementId="4940867" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-795.46051527368672" y="-781.03554470611607" hdg="4.4011821512907847" length="5.0000000000000462"> - <paramPoly3 aU="0" bU="4.8965380016859825" cU="0.10073057475395769" dU="0.0027312764805956691" aV="0" bV="-1.9984014443252818e-15" cV="0.00087509597085987795" dV="0.00016000698581860717" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.26483309683684" b="3.7434462749512856e-05" c="-9.2082807736915135e-06" d="-3.0521147964398047e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025137724201139262" b="-6.1183455025994863e-06" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.364527840190835" b="-0.00070400974002368406" c="0.00038566148290239383" d="4.3235540333539171e-05" /> - <laneOffset s="0.80402208442005652" a="3.3642335844213629" b="-0" c="0.0062894109740255525" d="5.2553835615852253e-07" /> - <laneOffset s="2.2016188520091391" a="3.3765199791530773" b="0.017583200460190334" c="0.079461181143536563" d="-0.019678723835412377" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15106905665220544" weight="standard" type="solid"> - <type name="solid"> - <line length="2.2016188520091391" space="0" width="0.15106900000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <roadMark sOffset="2.2016188520091391" type="none" width="0" /> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="2.9601690732009338" b="-0.0022308567648350393" c="0.00068057013101884803" d="4.4750929429355517e-05" /> - <width sOffset="0.80402208442005652" a="2.9588386304861234" b="-0.0010496820161493248" c="0.0065879748410405999" d="2.0409274519735949e-06" /> - <width sOffset="2.2016188520091391" a="2.9702453077278141" b="0.017376942157708766" c="0.079766098719258438" d="-0.019677208446317245" /> - <width sOffset="2.5389901236982024" a="2.9844311235533478" b="0.064479579783874266" c="0.066532938611165882" d="-0.022279424140435673" /> - <width sOffset="4.3305244297574941" a="3.1853833876499364" b="0.088347867473197533" c="-0.06632894673610952" d="0.00034460415092976704" /> - <roadMark sOffset="0" color="standard" width="0.18168409816709552" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.18168400000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="2" /> - <successor id="-5" /> - </link> - <width sOffset="0" a="3.9447705775349422" b="-0.0013060448775739255" c="-0.00057420762460082481" d="0.00018690078873393601" /> - <width sOffset="0.63243456924615948" a="3.9437621996547225" b="-0.0018080763019084779" c="-0.0011014135716096662" d="0.00017287637293998874" /> - <width sOffset="2.5389901236982024" a="3.9375094890626312" b="-0.0041226955947023707" c="-0.0067950327468050842" d="0.0027750920670591215" /> - <width sOffset="4.3305244297574941" a="3.9242712906816539" b="-0.0017489978656532732" c="0.021238812521792522" d="-0.019848936224305242" /> - <roadMark sOffset="0" color="standard" width="0.2954527572594926" weight="bold" type="solid"> - <type name="solid"> - <line length="5.0000000000000462" space="0" width="0.29545300000000002" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="2.4929676309008069" b="9.7743739411904063e-05" c="-0.00036362310705978149" d="-7.5057159589704607e-05" /> - <width sOffset="0.63243456924615948" a="2.4928650215811121" b="-0.00045225452769796131" c="0.00037578417221133844" d="-6.1032743795787434e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782157" s="0" t="-7.2816384447361591" orientation="none" validLength="5.0000000000000462" length="0" roll="0" pitch="0" hdg="0" type="railing" name="guardrail" width="0.080000000000000002" height="0.17999999999999999" zOffset="0.48999999999999999"> - <repeat length="5.0000000000000462" s="0" distance="0" tStart="-7.2816384447361591" tEnd="-7.2567559359819054" zOffsetStart="0.48999999999999999" zOffsetEnd="0.48999999999999999" heightStart="0.17999999999999999" heightEnd="0.17999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="5.0000000000000631" id="33782339" junction="33554459"> - <link> - <predecessor elementType="road" elementId="33782103" contactPoint="end" /> - <successor elementType="road" elementId="33782252" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-705.68371530910304" y="-630.92388351749207" hdg="1.2141092274364922" length="5.0000000000000631"> - <paramPoly3 aU="0" bU="4.9609851268231031" cU="0.041136193410534587" dU="-0.0021250166106181684" aV="-0" bV="6.6613381477509392e-16" cV="-0.0055966054891025078" dV="0.00028653391973159064" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.20770354535642" b="-0.00030702297854488163" c="4.7721482678751886e-06" d="1.7942890164998066e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028556750927546001" b="-5.6820112253085755e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.1120027938654906" b="0.00022440614811453194" c="-3.3793663440125197e-05" d="-6.0803952539024762e-05" /> - <laneOffset s="0.93925665952134008" a="2.1121333728869542" b="-0" c="-0.0005468285134861662" d="5.7601935191063972e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16593723176204453" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000000631" space="0" width="0.165937" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.6103394821389396" b="2.6313201917935528e-09" c="-0.041247911748955257" d="0.0095807781771173068" /> - <width sOffset="0.93925665952134008" a="3.5818892277044325" b="-0.052128173138696804" c="-0.014593185928196374" d="0.0096991840648473927" /> - <width sOffset="2.7223988358437685" a="3.4975280377671316" b="-0.011653162591638868" c="0.0032428806270077964" d="5.0613585947914942e-05" /> - <width sOffset="4.2013755980318086" a="3.4875504068566801" b="-0.0017287401497372099" c="-4.9503612857830995e-05" d="0.00034139933716094938" /> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.7223988358437685" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.2776011641562945" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="2" /> - </link> - <width sOffset="0" a="6.8389738316909643e-14" b="-0.016020336629254034" c="0.074495119165682688" d="-0.018528360235105425" /> - <width sOffset="2.2225081179246393" a="0.12895892370873185" b="0.040546818257623851" c="-0.022141032933878414" d="-0.0098507135646495169" /> - <width sOffset="2.7223988358437685" a="0.14246453092495615" b="0.011025818553058587" c="-0.0028648677707986282" d="-0.00020214308574996207" /> - <width sOffset="4.2013755980318086" a="0.15185098046198231" b="0.0012251862967185994" c="-0.00024480935791163904" d="-0.00049292883696424011" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="4.9999999999999707" id="33782346" junction="33555309"> - <link> - <predecessor elementType="road" elementId="4939858" contactPoint="end" /> - <successor elementType="road" elementId="4940763" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-773.98848329782436" y="-801.15725538041443" hdg="1.254182308202864" length="4.9999999999999707"> - <paramPoly3 aU="0" bU="4.9999948503560718" cU="5.1623427422368973e-06" dU="-6.4458116221566327e-08" aV="-0" bV="2.2204460492503131e-16" cV="0.00062736922891796945" dV="-3.8377235107183344e-06" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.52105886574549" b="-4.6177224792630177e-05" c="-1.1000282529505375e-06" d="-7.6638962687171302e-10" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026490421049647068" b="-8.3847355029608375e-06" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="5.7848796827805495" b="-9.9324935794002694e-10" c="0.010147727706939402" d="-0.0028575700868331286" /> - <laneOffset s="1.8078264818772984" a="5.8011611755678549" b="0.0086730154290851208" c="-0.00023640756727692493" d="1.5988386892794823e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16677984138680607" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999999707" space="0" width="0.16678000000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.8116132011079511" b="-3.132905129990385e-10" c="0.0092865246804214995" d="-0.0028179324210190529" /> - <width sOffset="1.8078264818772984" a="3.8253142752522091" b="0.0059478406429181157" c="-0.00088263652797934927" d="5.5626052706869033e-05" /> - <roadMark sOffset="0" color="standard" width="0.16109079863826911" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16109100000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="2" /> - </link> - <width sOffset="0" a="3.6463421739597406" b="1.6452838188841019e-10" c="6.1369938424854129e-05" d="-1.3937454411983653e-05" /> - <roadMark sOffset="0" color="standard" width="0.16803765159562165" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16803799999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="3" /> - </link> - <width sOffset="0" a="3.8364074509586881" b="6.33485925636854e-10" c="-0.13088140525510611" d="0.052930822345965578" /> - <width sOffset="1.6191997669031641" a="3.7179651045402493" b="-0.0075229389478913113" c="0.0013081345757866185" d="-2.7552117887613272e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="1.6191997669031641" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="3.3808002330968066" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link> - <successor id="4" /> - </link> - <width sOffset="0" a="0.10003509738246397" b="-0.99202566260041825" c="-3.8107860261802564" d="42.787405018879774" /> - <width sOffset="0.12373354590997021" a="-1.3008577504081131e-07" b="0.030154480068783268" c="0.15747510091694161" d="-0.07321836771796203" /> - <width sOffset="1.6191997669031641" a="0.15239716386046531" b="0.0099109741522962341" c="-0.0059610356377432019" d="0.00089610835825383876" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5181514" s="0" t="6.7802891346042937" orientation="none" validLength="4.9999999999999707" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="railing" name="concrete_barrier" height="1.1499999999999999"> - <repeat length="4.9999999999999707" s="0" distance="0" tStart="6.7802891346042937" tEnd="6.8249754126403817" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - </objects> - <signals /> - </road> - <junction id="33556302" name=""> - <connection id="1" incomingRoad="4941552" connectingRoad="4941542" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - </connection> - <connection id="2" incomingRoad="4941552" connectingRoad="4941863" contactPoint="start"> - <laneLink from="-3" to="-1" /> - </connection> - </junction> - <junction id="33554629" name=""> - <connection id="1" incomingRoad="4940030" connectingRoad="9100480" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - <laneLink from="-4" to="-4" /> - </connection> - <connection id="2" incomingRoad="4940030" connectingRoad="9100458" contactPoint="start"> - <laneLink from="-6" to="-1" /> - </connection> - </junction> - <junction id="33554492" name=""> - <connection id="1" incomingRoad="33781870" connectingRoad="33781913" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - </connection> - <connection id="2" incomingRoad="33782205" connectingRoad="33781891" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - </connection> - </junction> - <junction id="33556587" name=""> - <connection id="1" incomingRoad="33782019" connectingRoad="33782286" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - <laneLink from="-4" to="-4" /> - <laneLink from="-5" to="-5" /> - </connection> - <connection id="2" incomingRoad="33782045" connectingRoad="33782308" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - </connection> - </junction> - <junction id="33556490" name=""> - <connection id="1" incomingRoad="4942083" connectingRoad="33782227" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - </connection> - <connection id="2" incomingRoad="33782252" connectingRoad="33782323" contactPoint="start"> - <laneLink from="3" to="-3" /> - <laneLink from="2" to="-2" /> - <laneLink from="1" to="-1" /> - </connection> - </junction> - <junction id="33554597" name=""> - <connection id="1" incomingRoad="33781942" connectingRoad="33782325" contactPoint="start"> - <laneLink from="4" to="-4" /> - <laneLink from="3" to="-3" /> - <laneLink from="2" to="-2" /> - <laneLink from="1" to="-1" /> - </connection> - <connection id="2" incomingRoad="33781969" connectingRoad="33782320" contactPoint="start"> - <laneLink from="3" to="-3" /> - <laneLink from="2" to="-2" /> - <laneLink from="1" to="-1" /> - </connection> - </junction> - <junction id="33555390" name=""> - <connection id="1" incomingRoad="4940858" connectingRoad="33782133" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - <laneLink from="-4" to="-4" /> - </connection> - <connection id="2" incomingRoad="33782160" connectingRoad="33782328" contactPoint="start"> - <laneLink from="3" to="-3" /> - <laneLink from="2" to="-2" /> - <laneLink from="1" to="-1" /> - </connection> - </junction> - <junction id="33554459" name=""> - <connection id="1" incomingRoad="33782103" connectingRoad="4939871" contactPoint="start"> - <laneLink from="-2" to="-1" /> - </connection> - <connection id="2" incomingRoad="33782103" connectingRoad="33782339" contactPoint="start"> - <laneLink from="-1" to="-1" /> - </connection> - </junction> - <junction id="33555309" name=""> - <connection id="1" incomingRoad="4939858" connectingRoad="33782346" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - </connection> - <connection id="2" incomingRoad="4939858" connectingRoad="4939864" contactPoint="start"> - <laneLink from="-4" to="-1" /> - <laneLink from="-5" to="-2" /> - </connection> - </junction> -</OpenDRIVE> diff --git a/src/xml/atlatec_vires.xodr b/src/xml/atlatec_vires.xodr deleted file mode 100644 index 9f707f03aea2a6bffcdb94af1b2c65e5ad325889..0000000000000000000000000000000000000000 --- a/src/xml/atlatec_vires.xodr +++ /dev/null @@ -1,26399 +0,0 @@ -<?xml version="1.0"?> -<OpenDRIVE> - <header revMajor="1" revMinor="4" vendor="atlatec"> - <geoReference><![CDATA[+proj=tmerc +a=6378137 +b=6378137 +lon_0=8.6121961962669307 +x_0=1.0621731827420435e-09 +y_0=-5572023.3775849724 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs]]></geoReference> - </header> - <road name="" length="925.01478049222453" id="4939858" junction="-1"> - <link> - <successor elementType="junction" elementId="33555309" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-1053.0754021436494" y="-1683.0963299330324" hdg="1.263721274329946" length="664.99999628700823"> - <paramPoly3 aU="0" bU="664.78163896257047" cU="-1.1668909187387284" dU="1.3811254208770021" aV="-0" bV="-0" cV="-5.4680525277395997" dV="3.2676086655025851" /> - </geometry> - <geometry s="664.99999628700823" x="-849.96838498917464" y="-1049.8729149672768" hdg="1.2620211650120574" length="260.0147842052163"> - <paramPoly3 aU="0" bU="256.89748651780468" cU="-0.23608885000307847" dU="3.352057500964245" aV="-0" bV="2.8421709430404007e-14" cV="0.48266824885894644" dV="-1.0180964864564568" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="157.94832782282703" b="0.0045902037095718103" c="-9.7911202617815814e-05" d="3.8146393268851109e-08" /> - <elevation s="10.054508483611135" a="157.98462068755995" b="0.0026328746909716171" c="-9.9793159582580547e-05" d="3.3976100465736836e-07" /> - <elevation s="20.109016967222271" a="158.00134989184087" b="0.00072917487300723114" c="-0.00015959005050915516" d="6.7030862138480063e-06" /> - <elevation s="30.163525450833404" a="157.99936122463387" b="-0.0004471160443026978" c="-3.986217910051356e-05" d="1.5745861166329443e-06" /> - <elevation s="40.218033934444541" a="157.99243637490025" b="-0.00077116571199182691" c="-0.00013945824635879406" d="1.3131077752700437e-05" /> - <elevation s="50.272542418055679" a="157.98393138742745" b="0.00040685172394041083" c="0.00019072967271848064" d="-1.0525413166933766e-05" /> - <elevation s="60.327050901666809" a="157.99660507285503" b="0.001050096721515729" c="-2.6115474817496142e-05" d="5.9242299653672478e-07" /> - <elevation s="70.381559385277953" a="158.00512534739815" b="0.00070460989959330212" c="-2.9453739230879439e-05" d="1.5931554484342272e-06" /> - <elevation s="80.436067868889083" a="158.01085163246177" b="0.00059549542207064084" c="2.3817236478155999e-06" d="9.6316347671632979e-08" /> - <elevation s="90.490576352500213" a="158.01717772212498" b="0.00067260030961889604" c="2.1066447007462944e-05" d="-1.5894173093260357e-06" /> - <elevation s="100.54508483611136" a="158.02445451068056" b="0.00061418828618196018" c="-5.9782621742280816e-06" d="-4.1273265588516697e-07" /> - <elevation s="110.59959331972249" a="158.02960599197337" b="0.0003687979891452326" c="-3.2079211100790042e-05" d="1.8467722660127856e-06" /> - <elevation s="120.65410180333362" a="158.03194822288225" b="0.00028380461522544488" c="3.6493718353679747e-05" d="-2.4985242888146071e-06" /> - <elevation s="130.70861028694475" a="158.0359513987722" b="0.00025990641328020353" c="-3.2407438044554205e-05" d="1.9320064807330783e-06" /> - <elevation s="140.76311877055591" a="158.03725223253733" b="0.00019416250160031329" c="2.4605109775089625e-05" d="-1.7300408345837368e-06" /> - <elevation s="150.81762725416704" a="158.0399333629918" b="0.00016426128626299559" c="-3.1896136785623702e-05" d="2.2357047656980236e-06" /> - <elevation s="160.87213573777817" a="158.04063291271035" b="0.00020090458076516514" c="-1.1733749975700467e-06" d="1.492081862878602e-06" /> - <elevation s="170.9266442213893" a="158.04405090379572" b="0.00062982688878786774" c="7.5479226238333447e-05" d="-4.5632479542983901e-06" /> - <elevation s="180.98115270500043" a="158.05337565948395" b="0.00076370072539619501" c="-1.7595648640923694e-05" d="2.0682570545309581e-07" /> - <elevation s="191.03566118861158" a="158.05948572182112" b="0.00047259550884301473" c="-3.4554221600773858e-05" d="2.1766077461886499e-06" /> - <elevation s="201.09016967222271" a="158.06295663777041" b="0.00043786442074631273" c="4.6095588309993466e-05" d="-3.5917500493494541e-06" /> - <elevation s="211.14467815583384" a="158.06836829206779" b="0.00027549750730767025" c="-6.2446958605230993e-05" d="3.6882032334803607e-06" /> - <elevation s="221.19918663944497" a="158.06857416899985" b="0.00013830670402750615" c="8.2665321630534345e-06" d="4.1968606508138233e-07" /> - <elevation s="231.2536951230561" a="158.07122705110626" b="0.00043182068702084112" c="3.526325542550392e-05" d="-1.7693716821982514e-06" /> - <elevation s="241.30820360666723" a="158.07733520570241" b="0.00060431606665425788" c="1.7358695162075939e-05" d="-1.6817011466342071e-06" /> - <elevation s="251.36271209027839" a="158.08345680032465" b="0.00044335700955948657" c="-2.6534351914765517e-05" d="1.0783994734822654e-06" /> - <elevation s="261.41722057388949" a="158.08632822651069" b="0.00023683364627745699" c="-2.278819193447669e-05" d="1.8605066403158698e-06" /> - <elevation s="271.47172905750068" a="158.0882968393166" b="0.00034283888752349528" c="2.3545942618839977e-05" d="-8.1098827450246214e-07" /> - <elevation s="281.52623754111181" a="158.09329992669745" b="0.0005703685915763371" c="1.8598176064414771e-05" d="-1.0535894385644183e-06" /> - <elevation s="291.58074602472294" a="158.09984393818269" b="0.00062482763309189325" c="-1.0165301166574093e-06" d="-8.004918861472385e-08" /> - <elevation s="301.63525450833407" a="158.10594214335342" b="0.0005801089400303903" c="-3.7515632555585794e-05" d="3.5463174032307482e-06" /> - <elevation s="311.6897629919452" a="158.11158690588115" b="0.00090123154263304533" c="6.8698528633042206e-05" d="-3.3949066672665071e-06" /> - <elevation s="320.00031970408293" a="158.12187275006804" b="0.0013396662983689656" c="-2.445439351313989e-05" d="-3.4360881143729231e-06" /> - <elevation s="321.74427147555633" a="158.12411646367076" b="0.001223020509540362" c="4.7106082962642614e-06" d="-1.2586366149557085e-06" /> - <elevation s="331.79877995916746" a="158.13561021302789" b="0.00093602762592311594" c="-4.8345818499929291e-05" d="2.753535873757657e-06" /> - <elevation s="341.85328844277859" a="158.14293288917099" b="0.00079893151115300546" c="3.4283908618311521e-05" d="-2.7171750369879099e-06" /> - <elevation s="351.90779692638972" a="158.15166977043006" b="0.00066428393510075323" c="-1.584201163254338e-05" d="-3.035053774991768e-09" /> - <elevation s="361.96230541000085" a="158.15674421522215" b="0.00034479618503074265" c="-0.00021957389810874669" d="1.1727356278454541e-05" /> - <elevation s="372.01681389361198" a="158.14993373200261" b="-0.00051395321753462198" c="6.0541344041389008e-06" d="1.0081588712050874e-06" /> - <elevation s="382.07132237722317" a="158.14640295133913" b="-8.6456685791250014e-05" c="6.337152016143507e-05" d="-3.6904174797720716e-06" /> - <elevation s="392.1258308608343" a="158.14818900312983" b="6.8654606173139214e-05" c="-1.0773629592230731e-05" d="-1.2586384632145227e-08" /> - <elevation s="402.18033934444543" a="158.14777735806825" b="-0.00015180968555871823" c="-6.3608875471479591e-05" d="5.2236381514697046e-06" /> - <elevation s="412.23484782805656" a="158.14513008967583" b="0.00015330032046037041" c="2.0931849734551914e-05" d="-3.035053774990627e-09" /> - <elevation s="422.28935631166769" a="158.14878443052623" b="0.00057329877257155878" c="2.0895341652123661e-05" d="-3.0350537749899325e-09" /> - <elevation s="432.34386479527882" a="158.15665795865971" b="0.00099256308303375968" c="0.00015021047079208762" d="-8.8277223063866218e-06" /> - <elevation s="442.39837327888995" a="158.17285007455484" b="0.001335881465412836" c="-4.2620621330494882e-05" d="1.5170550165164006e-06" /> - <elevation s="452.45288176250108" a="158.18351505180263" b="0.00093891423729642546" c="-1.1651172782561149e-05" d="-5.2115469324771458e-08" /> - <elevation s="462.50739024611221" a="158.19172454697213" b="0.00068881505668158831" c="-8.5071505854057002e-06" d="-3.0350537749885313e-09" /> - <elevation s="472.56189872972334" a="158.19778714427522" b="0.00051682415186069084" c="-1.1912902673197791e-05" d="1.0202092423884969e-07" /> - <elevation s="482.61640721333447" a="158.201882942683" b="0.0003082082368667509" c="-6.5343421667431469e-05" d="5.5120573654339176e-06" /> - <elevation s="492.67091569694566" a="158.20397873902854" b="0.00066590983666181937" c="5.4645612097676714e-06" d="-3.0350537749867682e-09" /> - <elevation s="502.72542418055679" a="158.21122347983098" b="0.00077487632139120312" c="4.6246635036728759e-05" d="-2.6912874869662644e-06" /> - <elevation s="512.77993266416786" a="158.22095416075629" b="0.00088863857508270582" c="-1.079425969278601e-05" d="6.7062670959526298e-07" /> - <elevation s="522.83444114777899" a="158.22947941228102" b="0.00087496390499850862" c="1.3348458410458015e-05" d="-1.0660000124967606e-06" /> - <elevation s="532.88894963139012" a="158.2385426548563" b="0.00082009241344193251" c="-1.8343820730758529e-05" d="4.5033055527914117e-07" /> - <elevation s="542.94345811500136" a="158.24539158135104" b="0.00058779220188105827" c="-2.1827458240479527e-05" d="1.2410661703821317e-06" /> - <elevation s="552.99796659861249" a="158.25035640830586" b="0.00052525330526061414" c="3.8640687709703813e-06" d="-7.916232632811675e-08" /> - <elevation s="563.05247508222362" a="158.25594773906738" b="0.00057894762512277441" c="2.9074656920662581e-05" d="-2.6717861648468531e-06" /> - <elevation s="573.10698356583475" a="158.26199230601131" b="0.00035331262922869752" c="-8.956332407556781e-05" d="5.6690493176571005e-06" /> - <elevation s="583.16149204944588" a="158.2622527120362" b="0.00027158822916790505" c="6.0702487285356369e-05" d="-3.6130890387344009e-06" /> - <elevation s="593.21600053305701" a="158.26744750840845" b="0.0003964800186850676" c="-3.353384519641018e-05" d="2.1402967420030141e-06" /> - <elevation s="603.27050901666814" a="158.2702193655478" b="0.00037125531663536227" c="-2.0243262119921758e-05" d="2.9526702895397135e-06" /> - <elevation s="613.32501750027927" a="158.27490691795856" b="0.00085966735555956621" c="3.1101491984532235e-05" d="-1.9216271868763577e-06" /> - <elevation s="623.3795259838904" a="158.28474137590987" b="0.00090229780200745398" c="-2.4976670301340581e-06" d="-3.0350537749815251e-09" /> - <elevation s="633.43403446750153" a="158.29355795485438" b="0.0008511517039637564" c="-1.3625162055451372e-05" d="8.8027528821680846e-07" /> - <elevation s="643.48854295111266" a="158.30163320509169" b="0.00084413247009705952" c="5.8798672422968335e-05" d="-3.3234080394313696e-06" /> - <elevation s="653.54305143472379" a="158.3126866336562" b="0.0010185947004337263" c="-4.9813190386163027e-06" d="-3.0946407228893672e-07" /> - <elevation s="663.59755991833492" a="158.32210997329415" b="0.00082457118622606383" c="-4.868537452196538e-05" d="1.845665088532689e-06" /> - <elevation s="673.65206840194605" a="158.32735488508052" b="0.00040530840616261461" c="-2.6294906587950527e-05" d="1.4583518153214692e-06" /> - <elevation s="683.70657688555718" a="158.33025415699939" b="0.00031883177984634169" c="-1.5670647924825006e-06" d="4.5125504270523195e-07" /> - <elevation s="693.76108536916831" a="158.33376010883987" b="0.00042417601611594393" c="1.7569873994742559e-05" d="-1.0068791966589484e-06" /> - <elevation s="703.81559385277944" a="158.33877774979328" b="0.0004721231690568812" c="-4.9927474744670215e-06" d="2.2420177728894755e-07" /> - <elevation s="713.87010233639057" a="158.3432478717458" b="0.00043971971092862704" c="-2.9681543180429291e-05" d="2.8978284865121384e-06" /> - <elevation s="723.9246108200017" a="158.34761391100992" b="0.00072170480551236654" c="2.4183033979472602e-05" d="-1.6812374496745073e-06" /> - <elevation s="733.97911930361283" a="158.35560615686913" b="0.00069811712323286689" c="-3.3337378386598816e-06" d="-3.0350537749472115e-09" /> - <elevation s="744.03362778722396" a="158.36228527842272" b="0.00063015846311473755" c="-5.3421695359491073e-05" d="2.5999006645925611e-06" /> - <elevation s="754.08813627083521" a="158.36586329288414" b="0.00034439705693461748" c="-3.4219968420423675e-06" d="2.2086769489520352e-07" /> - <elevation s="764.14264475444634" a="158.36920459477284" b="0.00034256869134197831" c="2.6680006753846877e-05" d="-2.5582158850945753e-06" /> - <elevation s="774.19715323805747" a="158.37274584259953" b="0.00010322316347393355" c="-7.7604643292905758e-05" d="5.2494273137015224e-06" /> - <elevation s="784.2516617216686" a="158.37127414120727" b="0.00013471335913214255" c="2.6783969194947094e-05" d="-7.6698828976932879e-07" /> - <elevation s="794.30617020527973" a="158.37455669439953" b="0.00044070088450592193" c="9.7537096253640327e-06" d="-7.6698828976932488e-07" /> - <elevation s="804.36067868889086" a="158.37919415933223" b="0.00040422663123875196" c="-1.9176231445125395e-05" d="8.4618009734601164e-07" /> - <elevation s="814.41518717250199" a="158.38217996681598" b="0.0002752404790301562" c="7.5077578644190611e-06" d="-9.6764265885327284e-07" /> - <elevation s="824.46969565611312" a="158.38472280488384" b="0.00013274800250846774" c="-3.5840430014622871e-05" d="2.3699630195675849e-06" /> - <elevation s="834.52420413972425" a="158.3848432287395" b="0.00013079320324991471" c="9.3131319916621768e-06" d="-3.0350537748124452e-09" /> - <elevation s="844.57871262333538" a="158.38709669891969" b="0.00031715066313201825" c="1.126400487435388e-05" d="-4.3493649291653548e-07" /> - <elevation s="854.63322110694651" a="158.39098211893389" b="0.00041175143985553488" c="2.6048631983118621e-05" d="-2.3463906177827934e-06" /> - <elevation s="864.68772959055764" a="158.39537044569877" b="0.00022395183076016334" c="-1.9688181974035184e-05" d="1.1426728467460561e-06" /> - <elevation s="874.74223807416877" a="158.39679329162126" b="0.00017459100650497745" c="6.0015708227719499e-05" d="-2.329542806340464e-06" /> - <elevation s="884.7967465577799" a="158.40224805004047" b="0.0006749455044645187" c="3.8562710681632841e-05" d="-2.5314862742219627e-06" /> - <elevation s="894.85125504139103" a="158.41035961231123" b="0.0006826560124469969" c="-2.3556118464108511e-05" d="1.1091637920929662e-06" /> - <elevation s="904.90576352500216" a="158.41596942146631" b="0.00054535218093970368" c="2.3350716545621501e-05" d="-2.4529964327105296e-06" /> - <elevation s="914.96027200861329" a="158.42131993865956" b="0.00027096879454474956" c="-1.8393515766958187e-05" d="-3.0350537420168217e-09" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026088932386396851" b="-5.9213706351290904e-06" c="-1.0611743041896416e-06" d="0" /> - <superelevation s="10.054508483611135" a="0.025922118471714672" b="-2.7260542723258529e-05" c="1.7316238423071466e-07" d="-1.2276449817832887e-07" /> - <superelevation s="20.109016967222271" a="0.025540749670239157" b="-6.1010363516742065e-05" c="-1.2954493795227116e-05" d="1.060119728377707e-06" /> - <superelevation s="30.163525450833404" a="0.024695260036580107" b="0" c="1.0756993019611255e-05" d="-4.4201204786246349e-07" /> - <superelevation s="40.218033934444541" a="0.025333438706762166" b="8.2259396515749474e-05" c="5.226630393543517e-06" d="-3.3398600733082752e-07" /> - <superelevation s="50.272542418055679" a="0.026349415636828778" b="8.6070712340839074e-05" c="1.9171813713673018e-06" d="-3.3882126327778201e-07" /> - <superelevation s="60.327050901666809" a="0.027064236121605006" b="2.1865827995401292e-05" c="-1.0873643416304848e-06" d="0" /> - <superelevation s="70.381559385277953" a="0.027174161198145478" b="0" c="-2.4930123224322897e-06" d="9.9260210154451982e-08" /> - <superelevation s="80.436067868889083" a="0.027023026983175106" b="-2.0028447874342497e-05" c="-3.4829479864148174e-06" d="2.969773131143729e-07" /> - <superelevation s="90.490576352500213" a="0.026771408800013198" b="0" c="3.4731393119755658e-06" d="-2.0998595824231211e-07" /> - <superelevation s="100.54508483611136" a="0.026909080847411039" b="6.1569971965910876e-06" c="-3.061809140957515e-07" d="0" /> - <superelevation s="110.59959331972249" a="0.026940033637684387" b="0" c="-5.8736678384016357e-06" d="3.8945499576803066e-07" /> - <superelevation s="120.65410180333362" a="0.026742104460992362" b="0" c="9.6692518573721736e-06" d="-5.3058385793558415e-07" /> - <superelevation s="130.70861028694475" a="0.027180291866850212" b="3.3523983615951185e-05" c="3.3342017893733485e-07" d="-1.3264578029843756e-07" /> - <superelevation s="140.76311877055591" a="0.027416238816334405" b="0" c="-7.9440024861291128e-06" d="5.2672904558704527e-07" /> - <superelevation s="150.81762725416704" a="0.027148544095594664" b="0" c="8.6475070117774008e-06" d="-3.6412543488835558e-07" /> - <superelevation s="160.87213573777817" a="0.027652635412052429" b="6.3461113598565648e-05" c="1.0287614591235053e-05" d="-8.91372476579369e-07" /> - <superelevation s="170.9266442213893" a="0.02842468470570704" b="0" c="-3.067243477892398e-06" d="1.3726496535175648e-09" /> - <superelevation s="180.98115270500043" a="0.028116002647327016" b="-6.1262954745271825e-05" c="-8.181267774799872e-06" d="5.1137526418728305e-07" /> - <superelevation s="191.03566118861158" a="0.027192746909272196" b="-7.0690612417625851e-05" c="-7.2477948830530758e-07" d="2.8114408399706787e-07" /> - <superelevation s="201.09016967222271" a="0.026694483922797642" b="0" c="5.8345871524689759e-06" d="-3.2482007693673922e-07" /> - <superelevation s="211.14467815583384" a="0.026954159946174859" b="1.88165666826316e-05" c="-2.2022021052375434e-07" d="-4.7441908890926763e-08" /> - <superelevation s="221.19918663944497" a="0.02707286658148355" b="0" c="-2.8842103485364931e-07" d="1.9123827904253183e-08" /> - <superelevation s="231.2536951230561" a="0.027063147452050317" b="0" c="5.0766110357282562e-06" d="-2.8093438534682303e-07" /> - <superelevation s="241.30820360666723" a="0.02729080454230862" b="1.6884039293544102e-05" c="-3.8859268628395959e-08" d="-5.3094988992153192e-08" /> - <superelevation s="251.36271209027839" a="0.027402668884679442" b="0" c="-8.2851277644048479e-06" d="4.5684060982614542e-07" /> - <superelevation s="261.41722057388949" a="0.027029451207737532" b="-2.8055418448658815e-05" c="-8.5868737628735998e-08" d="9.8200379376419342e-08" /> - <superelevation s="271.47172905750068" a="0.026838501999072843" b="0" c="4.3989653324815769e-06" d="-2.4539758363564972e-07" /> - <superelevation s="281.52623754111181" a="0.027033774849008544" b="1.4034831051110894e-05" c="-1.2702780194104092e-06" d="7.305570232941378e-08" /> - <superelevation s="291.58074602472294" a="0.027120728654811729" b="1.0647080021492116e-05" c="1.6553369179697725e-06" d="-1.4486402612914042e-07" /> - <superelevation s="301.63525450833407" a="0.027247877161812102" b="0" c="-6.8074594581209188e-06" d="3.6282319572043287e-07" /> - <superelevation s="311.6897629919452" a="0.026928478381482393" b="-2.6854508464449185e-05" c="-1.205217195806716e-06" d="1.6845930751270183e-07" /> - <superelevation s="321.74427147555633" a="0.02670785939545408" b="0" c="4.8126429946444042e-06" d="-1.8410481873387617e-07" /> - <superelevation s="331.79877995916746" a="0.027007252750431331" b="4.0942316523856342e-05" c="1.2581120960508672e-06" d="-1.4683564623163919e-08" /> - <superelevation s="341.85328844277859" a="0.027531169133109691" b="6.1788491010250374e-05" c="9.0338718583825237e-06" d="-8.0272763463615693e-07" /> - <superelevation s="351.90779692638972" a="0.028249758564535515" b="0" c="-1.1123943267491658e-06" d="0" /> - <superelevation s="361.96230541000085" a="0.02813730312818406" b="-2.2369156390838687e-05" c="-1.4459571741984243e-05" d="7.9351532534490664e-07" /> - <superelevation s="372.01681389361198" a="0.027257190911953215" b="-7.2480060241109719e-05" c="-2.7169882284166166e-06" d="4.1913830342013667e-07" /> - <superelevation s="382.07132237722317" a="0.02667980036701029" b="0" c="5.0453359210757738e-06" d="-3.3453224354028187e-07" /> - <superelevation s="392.1258308608343" a="0.026849816651973554" b="0" c="-1.7215978367936563e-06" d="1.1415096949458805e-07" /> - <superelevation s="402.18033934444543" a="0.026791802741107925" b="0" c="2.4365744336223367e-06" d="-8.2956591934867304e-08" /> - <superelevation s="412.23484782805656" a="0.026953803152374684" b="2.3838089329633223e-05" c="4.6760823516862882e-06" d="-3.8864987176595266e-07" /> - <superelevation s="422.28935631166769" a="0.027271163283903679" b="0" c="-2.3655209514658647e-05" d="1.5684645054648375e-06" /> - <superelevation s="432.34386479527882" a="0.026474036808160052" b="0" c="5.0834354600460885e-06" d="-3.3705844287546349e-07" /> - <superelevation s="442.39837327888995" a="0.026645336960476426" b="0" c="-3.9301050618388848e-06" d="2.6058658615651531e-07" /> - <superelevation s="452.45288176250108" a="0.026512901405623086" b="0" c="1.3685892762074798e-07" d="3.3333257723958148e-24" /> - <superelevation s="462.50739024611221" a="0.026526736904469227" b="2.7520984976428449e-06" c="3.2502773524276229e-06" d="-1.0220643933885511e-07" /> - <superelevation s="472.56189872972334" a="0.026779101746847743" b="3.7114871023127313e-05" c="7.2763850146702821e-06" d="-6.0484097208527164e-07" /> - <superelevation s="482.61640721333447" a="0.02727308047560956" b="0" c="-2.0701796155909876e-07" d="0" /> - <superelevation s="492.67091569694566" a="0.027252152379663823" b="-4.1629277015082553e-06" c="-1.8045859905305381e-06" d="1.2823089970476583e-07" /> - <superelevation s="502.72542418055679" a="0.027158204173994373" b="-1.5615847895238562e-06" c="2.3296784602680351e-07" d="-1.5446990532098877e-08" /> - <superelevation s="512.77993266416786" a="0.0271503536902373" b="-1.5615847895238562e-06" c="-9.4008173038636912e-06" d="5.6515905183140986e-07" /> - <superelevation s="522.83444114777899" a="0.02675874588277205" b="-1.9201668575412444e-05" c="9.5487853069644446e-07" d="0" /> - <superelevation s="532.88894963139012" a="0.026662214212976564" b="0" c="5.0545519067275468e-06" d="-3.3514331174360802e-07" /> - <superelevation s="542.94345811500136" a="0.026832541055585007" b="0" c="-3.2108348681353513e-06" d="1.5263969620633911e-07" /> - <superelevation s="552.99796659861249" a="0.026663097048041318" b="-1.8274253919987038e-05" c="-2.2417202566946512e-06" d="2.0889331714899503e-07" /> - <superelevation s="563.05247508222362" a="0.026465063773444659" b="0" c="3.2062931823297992e-06" d="-2.1259406083390773e-07" /> - <superelevation s="573.10698356583475" a="0.026573108522870682" b="0" c="-3.2081107898945484e-06" d="2.1271457775210481e-07" /> - <superelevation s="583.16149204944588" a="0.02646500252422548" b="0" c="1.3201443953170565e-05" d="-8.121285394592673e-07" /> - <superelevation s="593.21600053305701" a="0.026974096528350162" b="1.9166185969846936e-05" c="-9.5311401850661618e-07" d="0" /> - <superelevation s="603.27050901666814" a="0.027070449818066309" b="0" c="-7.7087478957262352e-06" d="5.1113043190468638e-07" /> - <superelevation s="613.32501750027927" a="0.026810682639140732" b="0" c="3.1685671592988913e-06" d="-2.1009262756527768e-07" /> - <superelevation s="623.3795259838904" a="0.0269174561078468" b="0" c="-2.1300888442267312e-07" d="0" /> - <superelevation s="633.43403446750153" a="0.026895922370692209" b="-4.2833992710218585e-06" c="-5.2088932562319298e-06" d="3.5950055967378525e-07" /> - <superelevation s="643.48854295111266" a="0.026691682927949656" b="0" c="5.996503703201707e-06" d="-3.9759965810203818e-07" /> - <superelevation s="653.54305143472379" a="0.026893751392435449" b="0" c="-2.484312370127292e-06" d="1.1174810363518784e-07" /> - <superelevation s="663.59755991833492" a="0.026756189900424578" b="-1.6066179262235872e-05" c="-2.3094115463894103e-06" d="2.0610094383975458e-07" /> - <superelevation s="673.65206840194605" a="0.026570676321052714" b="0" c="6.5872189526372453e-06" d="-4.3676717851660888e-07" /> - <superelevation s="683.70657688555718" a="0.026792650538842392" b="0" c="-4.5798407106379152e-06" d="2.0101967783157942e-07" /> - <superelevation s="693.76108536916831" a="0.026533984868494908" b="-3.1130962745247851e-05" c="-4.2592774279194903e-06" d="3.7015681428972879e-07" /> - <superelevation s="703.81559385277944" a="0.026166637480792239" b="-4.5198999239762431e-06" c="2.2476981004808388e-07" d="0" /> - <superelevation s="713.87010233639057" a="0.026143914794726893" b="0" c="3.611831911623028e-06" d="-2.3948340637505554e-07" /> - <superelevation s="723.9246108200017" a="0.026265625272112705" b="0" c="-2.8410834718754755e-07" d="1.8837874084089437e-08" /> - <superelevation s="733.97911930361283" a="0.026256051470393359" b="0" c="6.4479237823554563e-06" d="-3.3292439683335348e-07" /> - <superelevation s="744.03362778722396" a="0.026569494050236155" b="2.8692289921302002e-05" c="-3.8061534870504332e-07" d="1.3303165097951444e-08" /> - <superelevation s="754.08813627083521" a="0.026833025215249284" b="2.5073065645082742e-05" c="-9.0998121005770306e-07" d="7.9255931339075329e-08" /> - <superelevation s="764.14264475444634" a="0.027073688752713404" b="3.0810931141643687e-05" c="5.1157225651616169e-06" d="-4.4079180144837042e-07" /> - <superelevation s="774.19715323805747" a="0.027452602752352513" b="0" c="-1.6815696200866313e-05" d="1.0523797060754028e-06" /> - <superelevation s="784.2516617216686" a="0.026822333975100414" b="-1.898201066643155e-05" c="9.4395517679325876e-07" d="0" /> - <superelevation s="794.30617020527973" a="0.026726906581459597" b="0" c="3.7634963655910235e-06" d="-2.1030800602668538e-07" /> - <superelevation s="804.36067868889086" a="0.026893604392531266" b="1.1898121648223474e-05" c="-2.134108489442924e-07" d="-2.5081290389177137e-08" /> - <superelevation s="814.41518717250199" a="0.026966166111561798" b="0" c="-9.0038417452581504e-07" d="2.6666606179166518e-23" /> - <superelevation s="824.46969565611312" a="0.026875143447390035" b="-1.8105840642559402e-05" c="-3.9530532207979978e-06" d="2.4526294579962568e-07" /> - <superelevation s="834.52420413972425" a="0.02654276707349253" b="-2.321465035909788e-05" c="2.5085414449765602e-06" d="-1.5213055215500276e-07" /> - <superelevation s="844.57871262333538" a="0.026408319649430804" b="-1.8908413887501487e-05" c="-2.1336395791118696e-06" d="1.5744033357282506e-07" /> - <superelevation s="854.63322110694651" a="0.026162537457805501" b="-1.4065394935166362e-05" c="6.9945711210516538e-07" d="0" /> - <superelevation s="864.68772959055764" a="0.026091827141455016" b="0" c="2.3526373434395357e-06" d="-1.5599219973636321e-07" /> - <superelevation s="874.74223807416877" a="0.026171105640895774" b="0" c="-7.343644093206333e-06" d="4.8692213416343689e-07" /> - <superelevation s="884.7967465577799" a="0.0259236416253475" b="0" c="8.5392453567576541e-06" d="-4.5724214063089906e-07" /> - <superelevation s="894.85125504139103" a="0.026322140715133929" b="3.304369739435429e-05" c="1.3201219454477439e-06" d="-1.9648564183778083e-07" /> - <superelevation s="904.90576352500216" a="0.026588117896910329" b="0" c="-2.3301316006702413e-06" d="1.4695333521332544e-07" /> - <superelevation s="914.96027200861329" a="0.026501927093585301" b="-2.288733249763064e-06" c="1.1381626727424658e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="9.624668059106364" b="1.2365565522264311e-05" c="-0.0017651276801587791" d="0.00015504237604189102" /> - <laneOffset s="7.5863676296578406" a="9.5908678165398378" b="-0" c="0.0025281753246281136" d="-0.0018763679235353388" /> - <laneOffset s="8.4846190841191742" a="9.5915477740762345" b="-0" c="-0.0031423197192569758" d="0.00050508819292312669" /> - <laneOffset s="10.054508483611135" a="9.585757585645247" b="-0.0061317393849654473" c="-0.00078595430415570264" d="0.0005033607481494223" /> - <laneOffset s="12.041925982063587" a="9.5744182356164469" b="-0.0032912124547736241" c="0.00065341863034399403" d="-6.3860215277515637e-05" /> - <laneOffset s="17.893916242398756" a="9.5647369573960663" b="-0.0022044440999815854" c="-0.00013968088381327896" d="1.0447864610020286e-05" /> - <laneOffset s="20.109016967222271" a="9.5592820789472785" b="-0.0026694658441255912" c="-0.00011018228287246838" d="1.003458403424067e-05" /> - <laneOffset s="23.081323807419121" a="9.5506376898910013" b="-0.0030585021025064268" c="-0.00022604129500345535" d="1.2290169159549216e-05" /> - <laneOffset s="30.163525450833404" a="9.5220048657240568" b="-0.0044109067315614581" c="3.2639738252025908e-05" d="1.0851963790301407e-05" /> - <laneOffset s="35.99158453677277" a="9.4995547179378974" b="-0.0029246518008025136" c="4.033104494025239e-05" d="4.200251964150312e-06" /> - <laneOffset s="40.218033934444541" a="9.488231357961002" b="-0.0023586518383597976" c="0.00012561156534856855" d="3.5880909211226521e-06" /> - <laneOffset s="44.26840607208171" a="9.4809770856627775" b="-0.0011645112370580856" c="9.076229636549433e-05" d="-3.7369782454044575e-06" /> - <laneOffset s="50.272542418055679" a="9.4764482928770981" b="-0.00047876314212707221" c="4.1541494096653438e-05" d="-2.6805439949453258e-06" /> - <laneOffset s="60.327050901666809" a="9.4731095078401086" b="-0.00045635836737708808" c="-3.211777666550447e-05" d="-2.5171368269386561e-06" /> - <laneOffset s="66.650849736466682" a="9.4683026232035949" b="-0.0011645552497784662" c="-0.00048507494628929995" d="3.5153022905326833e-05" /> - <laneOffset s="70.381559385277953" a="9.4590319499158841" b="-0.0033161029863541134" c="-9.2462491730951635e-05" d="3.5633579160329757e-05" /> - <laneOffset s="73.737226749978745" a="9.4482095055190385" b="-0.0027328935937247613" c="-5.9774064638304116e-05" d="3.7363703291302213e-06" /> - <laneOffset s="80.436067868889083" a="9.4283431348575952" b="-0.0030307245768928562" c="1.1255196985635745e-05" d="3.645964222150837e-06" /> - <laneOffset s="90.490576352500213" a="9.4027144226927231" b="-0.0016986477058397397" c="0.00012137441652013702" d="3.1544014049690818e-06" /> - <laneOffset s="94.197604484369208" a="9.3982461142087832" b="-0.00066872705565839601" c="0.00010002908034525272" d="-6.5995337663741708e-06" /> - <laneOffset s="100.54508483611136" a="9.3963438188193464" b="-0.00019655749205345989" c="-2.2776506110261834e-05" d="-6.5684688448965623e-06" /> - <laneOffset s="104.41889843980553" a="9.3948587586285779" b="-0.00066872921045273538" c="-0.0001402138450168908" d="2.9526065803186526e-06" /> - <laneOffset s="110.59959331972249" a="9.3860663758207981" b="-0.0020635897221846253" c="-8.6633368052631323e-05" d="3.068182065180242e-06" /> - <laneOffset s="120.91360778871295" a="9.3589329089367244" b="-0.0028714958970212502" c="-0.00028494812333840425" d="3.7264761642050347e-05" /> - <laneOffset s="127.47134622535657" a="9.3383574810879111" b="-0.001801132434902584" c="0.00014190279506743041" d="-7.0365914659353119e-06" /> - <laneOffset s="130.70861028694475" a="9.3337751395045565" b="-0.0011036066705376456" c="8.6932899930738261e-05" d="-4.8363003532903321e-06" /> - <laneOffset s="140.18114402546379" a="9.3270109193745974" b="-0.0007585246813424034" c="1.6309833281667012e-06" d="6.780986331889374e-07" /> - <laneOffset s="150.81762725416704" a="9.3199433994106524" b="-0.00049367921786310019" c="2.7195533122457469e-05" d="-6.7917725979295824e-07" /> - <laneOffset s="153.88414426271163" a="9.3186656728046238" b="-0.00034604807232139101" c="1.2652073498980434e-05" d="-6.4932997291253978e-07" /> - <laneOffset s="160.87213573777817" a="9.3166437422786945" b="-0.00026434720094662832" c="1.1831682630824575e-05" d="-3.9688605140596592e-07" /> - <laneOffset s="170.9266442213893" a="9.3147785514735482" b="-0.00014679106665716046" c="3.4335905376906621e-06" d="1.5997123242105716e-07" /> - <laneOffset s="180.98115270500043" a="9.3138123533545567" b="-2.9228953284504492e-05" c="-1.8749477479206529e-05" d="6.5592718707020021e-06" /> - <laneOffset s="183.4809883528506" a="9.3137245853592496" b="-0" c="-2.367209982206956e-06" d="6.2173811401574422e-07" /> - <laneOffset s="191.03566118861158" a="9.3138575552555558" b="7.0686536550086052e-05" c="-1.7975110239902118e-06" d="2.1776280684405598e-09" /> - <laneOffset s="201.09016967222271" a="9.3143887710341389" b="3.5200786652951046e-05" c="-1.7496366163268759e-06" d="-1.1453578156893764e-06" /> - <laneOffset s="203.8219238478917" a="9.3144485254214899" b="-0" c="-0.0011975400863953141" d="0.00013521343071186661" /> - <laneOffset s="209.58891134156494" a="9.3005544058983478" b="-0.00032155384966336015" c="4.1281520647280016e-05" d="-6.258783014446309e-06" /> - <laneOffset s="211.14467815583384" a="9.3001304932744517" b="-0.00023855148005878535" c="2.4646011356270414e-05" d="-1.3077846575275431e-06" /> - <laneOffset s="221.19918663944497" a="9.2988942310451748" b="-0.00013956859526416184" c="-1.4081541761835932e-05" d="-1.2188097316403062e-06" /> - <laneOffset s="224.83770369374642" a="9.2981412759215925" b="-0.00029044721302364787" c="-4.8915332966130201e-05" d="3.2419827361519184e-06" /> - <laneOffset s="231.2536951230561" a="9.2951204248876564" b="-0.00051775979416516897" c="1.591328522267054e-05" d="2.9482408790591209e-06" /> - <laneOffset s="237.31427572562845" a="9.2932233099463897" b="-0" c="0.00030650678561264981" d="-2.1662043618375158e-05" /> - <laneOffset s="241.30820360666723" a="9.2967324739372046" b="0.0014117083319484505" c="5.3916021324163894e-05" d="-2.1075668100625384e-05" /> - <laneOffset s="246.96247995066966" a="9.3026285134690916" b="-0" c="-0.00014953811492513373" d="8.8415071185199289e-06" /> - <laneOffset s="251.36271209027839" a="9.3004864242311331" b="-0.00080243591885772547" c="-3.5707151944964452e-05" d="9.3953919575729104e-06" /> - <laneOffset s="258.1135202890934" a="9.296332598003346" b="-0" c="0.00089755998701054928" d="-7.3024899648125403e-05" /> - <laneOffset s="261.41722057388949" a="9.3034958250760607" b="0.0035394616823862246" c="0.0001562788537050491" d="-7.2833049703041933e-05" /> - <laneOffset s="263.99171566511643" a="9.3124011620611444" b="0.0028959221485783206" c="0.00032002763694261211" d="-3.2079913682445426e-05" /> - <laneOffset s="271.47172905750068" a="9.33854263247928" b="0.0022988728799557467" c="-0.00039846037334650356" d="-3.3405067479342754e-05" /> - <laneOffset s="273.16306312736822" a="9.3411293323764024" b="0.0006643369660534876" c="-0.00017808035158962845" d="2.1586825163721511e-05" /> - <laneOffset s="278.66273104009059" a="9.3429875424524873" b="0.00066433919832493602" c="0.00026889363747559095" d="-2.7654767587240869e-05" /> - <laneOffset s="281.52623754111181" a="9.3464453924168467" b="0.0015240166949151341" c="3.9135045573121005e-05" d="-2.6847537336148723e-05" /> - <laneOffset s="284.92605980724437" a="9.3510240820070276" b="0.00085914583922528948" c="4.5513230762287266e-05" d="-3.199379571655082e-05" /> - <laneOffset s="288.42944344489968" a="9.3532168988573243" b="-0" c="-0.0004638648290717117" d="5.3234838389700165e-05" /> - <laneOffset s="291.58074602472294" a="9.3502763591763873" b="-0.0013375779667097411" c="4.5491822225743493e-05" d="5.2642903877612489e-05" /> - <laneOffset s="294.2171553350725" a="9.3480308231460434" b="-0" c="0.00020916259661393137" d="-6.9489988598969775e-06" /> - <laneOffset s="301.63525450833407" a="9.3567040499990419" b="0.0019560051699083658" c="5.3361902273361703e-05" d="-6.6770031538539935e-06" /> - <laneOffset s="311.6897629919452" a="9.3749784574896378" b="0.0010040629073212188" c="-0.00015825024586245596" d="-4.9792657211923082e-06" /> - <laneOffset s="314.49163515071467" a="9.3764398475627839" b="-0" c="-0.00022614587126411426" d="9.2557715515617525e-06" /> - <laneOffset s="321.74427147555633" a="9.3680754300551019" b="-0.0018197263986712629" c="-2.4411885301398471e-05" d="8.9021855459086618e-06" /> - <laneOffset s="330.96336961200501" a="9.356199669437288" b="-0" c="5.2246756977902525e-06" d="-2.2060198278258848e-07" /> - <laneOffset s="341.85328844277859" a="9.3565343714394729" b="3.5308801305053338e-05" c="1.5615470544666367e-05" d="-1.9336589880311506e-06" /> - <laneOffset s="346.67807577870394" a="9.3568510574737314" b="5.0952985579368033e-05" c="0.00079403972954572772" d="-5.1373363477769873e-05" /> - <laneOffset s="351.90779692638972" a="9.371486425406264" b="0.0041409838201377476" c="-4.1857034043513015e-06" d="-5.0081841437131821e-05" /> - <laneOffset s="355.05925102015664" a="9.382927454267362" b="0.0026224138154142518" c="6.7445962094467247e-05" d="-1.9192706006068445e-05" /> - <laneOffset s="361.58645251722612" a="9.3975807230476356" b="0.0010498017522593557" c="-0.00011310815330884796" d="5.2301802161948901e-06" /> - <laneOffset s="372.01681389361198" a="9.402160140853324" b="0.00039729610263850924" c="3.0663202726325257e-05" d="6.9042545975013567e-06" /> - <laneOffset s="376.34093444644401" a="9.4050096643803318" b="0.001049766514612887" c="0.00094163540945895678" d="-0.00011355048179660228" /> - <laneOffset s="379.91795526441348" a="9.4156159915159812" b="0.003427603648282818" c="0.0011209854522851227" d="-0.00021786698846912596" /> - <laneOffset s="382.07132237722317" a="9.4260194460033091" b="0.0052246489721103047" c="-0.00029006156074583994" d="-0.0002208637999211586" /> - <laneOffset s="384.47552794528497" a="9.4338346610653829" b="-0" c="-2.0644358746833925e-06" d="1.9808530731305659e-07" /> - <laneOffset s="391.42349698835284" a="9.4338014413511484" b="-0" c="0.00011570865950041161" d="-3.5965205716478777e-06" /> - <laneOffset s="402.18033934444543" a="9.4427135674903937" b="0.0012408631286325244" c="1.0168572034034526e-06" d="-4.2506147261393486e-06" /> - <laneOffset s="404.01186766553036" a="9.4449635393384579" b="0.0012018119239972592" c="-2.7103113204170252e-05" d="9.8860646863661233e-06" /> - <laneOffset s="409.35604769555783" a="9.4521210882986768" b="0.0017591698305153853" c="0.00043029070794646778" d="-3.79033715146758e-05" /> - <laneOffset s="412.23484782805656" a="9.4598471169714706" b="0.0032942402643640805" c="0.00011355813150311536" d="-3.6918085720242185e-05" /> - <laneOffset s="418.80948495600074" a="9.4759222889186603" b="-0" c="4.0249219350666961e-06" d="-8.4490367929658282e-07" /> - <laneOffset s="422.28935631166769" a="9.4759354248954413" b="-2.6816740041963044e-06" c="-6.4103127565548612e-06" d="3.9948988365985575e-07" /> - <laneOffset s="432.34386479527882" a="9.4756664815643674" b="-1.0429700762923546e-05" c="3.1608205806495061e-06" d="-2.1358648374594213e-06" /> - <laneOffset s="433.45071552709777" a="9.4756559135397449" b="-1.1282650465624393e-05" c="-0.0004075358239554052" d="3.2218375613070583e-05" /> - <laneOffset s="441.8973177574162" a="9.4659004869235321" b="-0" c="0.00061995893703151899" d="-0.00022639559403610639" /> - <laneOffset s="443.72290963689022" a="9.4665892170189903" b="-0" c="-9.6881714972132296e-06" d="9.5422245348921784e-08" /> - <laneOffset s="452.45288176250108" a="9.4659143455851975" b="-0.00014733785543257828" c="-8.33554197828907e-06" d="-6.8350758259541366e-09" /> - <laneOffset s="462.50739024611221" a="9.4635833222914787" b="-0.00031703034835508208" c="-6.5496652228178268e-06" d="-1.2525869393619753e-07" /> - <laneOffset s="472.56189872972334" a="9.4596062935578864" b="-0.00048672606181489098" c="-2.6229175837424916e-06" d="-5.1170753777224219e-07" /> - <laneOffset s="480.13945738107952" a="9.455544848583104" b="-0.00061462249735570892" c="-0.00019109337648414855" d="7.3232893315830087e-06" /> - <laneOffset s="482.61640721333447" a="9.4529613384614208" b="-0.0014264886089385119" c="-0.00012951524595943432" d="9.3039296487949116e-06" /> - <laneOffset s="492.67091569694566" a="9.4349824970321379" b="-0.0012092224762017259" c="0.00014884862641953238" d="9.7466178157663191e-06" /> - <laneOffset s="495.78211091891296" a="9.4329546741035326" b="-0" c="3.8716069213254573e-05" d="1.0330544530539005e-07" /> - <laneOffset s="502.72542418055679" a="9.4348557401579889" b="0.00055257653590679533" c="3.9724067802723208e-05" d="4.3487515704212166e-09" /> - <laneOffset s="513.13565656714184" a="9.4449181104659079" b="0.0013810639511987002" c="0.0022360953554530828" d="-0.00032014438771295925" /> - <laneOffset s="517.01884241510936" a="9.4652533381461463" b="0.0042649128682487993" c="-0.00042698425164730888" d="2.549980914703441e-05" /> - <laneOffset s="523.80189708140438" a="9.4824951661287677" b="0.0019921235251243088" c="-0.00022577165863569" d="1.8039440928642886e-05" /> - <laneOffset s="531.7221078827306" a="9.49307319231918" b="0.0018106335373228256" c="0.00020617623433611808" d="-3.4770442600797322e-05" /> - <laneOffset s="532.88894963139012" a="9.4954113890830403" b="0.0021497616886988371" c="8.6811271370385533e-05" d="-3.5864141269627426e-05" /> - <laneOffset s="535.90669242014303" a="9.5017037727982139" b="0.0016938902420594465" c="-8.7820460305341054e-05" d="2.8153454795429261e-07" /> - <laneOffset s="540.94208102127891" a="9.5080424128456009" b="0.00083088499477677468" c="-1.4669805547699442e-05" d="-1.1176484472885274e-06" /> - <laneOffset s="542.94345811500136" a="9.5096376073152875" b="0.00075873511218556289" c="-1.9305084353511842e-05" d="8.4859952987153933e-08" /> - <laneOffset s="552.99796659861249" a="9.5154009595329061" b="0.0003962651209055406" c="-1.9251979132033684e-05" d="7.4411556785533851e-08" /> - <laneOffset s="563.99001814484848" a="9.517529429231212" b="-0" c="-0.00069976765332937108" d="8.542391234538793e-05" /> - <laneOffset s="569.45115608711546" a="9.51057279929001" b="-0" c="0.00010744064337135648" d="-8.4064430232954633e-06" /> - <laneOffset s="573.10698356583475" a="9.5115980092728716" b="0.00044851069951265846" c="1.5469811643350809e-05" d="-7.8583334013220971e-06" /> - <laneOffset s="578.17401091251952" a="9.5132454811913618" b="-0" c="-0.0023867070274125493" d="0.00030729862689350386" /> - <laneOffset s="583.35183430327083" a="9.491916391361535" b="-0" c="0.0030956901967568785" d="-0.00093656542700890674" /> - <laneOffset s="585.55541069525361" a="9.4969270227998734" b="-0" c="-0.001052880734611463" d="0.00020507866749305468" /> - <laneOffset s="588.97809964833425" a="9.4928155938392429" b="-0" c="0.00045223885666308687" d="-2.8860353493267577e-05" /> - <laneOffset s="593.21600053305701" a="9.4987410995840751" b="0.0022781080330884786" c="9.6309387391793058e-05" d="-2.7525614402371896e-05" /> - <laneOffset s="599.76263441456422" a="9.5100596149776475" b="-0" c="-0.00012046287180325089" d="9.625930635084361e-06" /> - <laneOffset s="603.27050901666814" a="9.5089928008597813" b="-0.00048979074761246405" c="-2.2490173396482211e-05" d="1.0334201841091061e-05" /> - <laneOffset s="608.03631127856511" a="9.5072663648206959" b="-0" c="0.00010127891655827442" d="-7.3532952020748715e-06" /> - <laneOffset s="613.32501750027927" a="9.5090114248910194" b="0.00045424475010134694" c="-1.7389768956304619e-05" d="-8.1726189651705378e-06" /> - <laneOffset s="616.97810533143718" a="9.5100403330875203" b="-0" c="-0.00079746097928250041" d="4.1372738169833652e-05" /> - <laneOffset s="623.3795259838904" a="9.488214667563609" b="-0.005123627038569856" c="-1.6921547111281258e-06" d="4.154344641295738e-05" /> - <laneOffset s="627.72277009826962" a="9.4693332368871044" b="-0.0027873279362822154" c="0.00021369102147478092" d="-8.0842248395511208e-06" /> - <laneOffset s="633.43403446750153" a="9.4588783240582064" b="-0.0011375229530909796" c="7.294865173800385e-05" d="-7.9993889630781387e-06" /> - <laneOffset s="642.57229832878761" a="9.4484706563793548" b="-0.0018083106116714136" c="-0.0002162442751192154" d="1.4140151315293163e-05" /> - <laneOffset s="653.54305143472379" a="9.4212763428138988" b="-0.0014474191678874456" c="0.00024870231981289639" d="1.4683728216840077e-05" /> - <laneOffset s="655.9429289949702" a="9.4194380500266472" b="-0" c="0.0001861294031464565" d="-3.3545696215923913e-05" /> - <laneOffset s="659.64195100856693" a="9.4202869715833497" b="-0" c="-0.0015203284739097737" d="0.00015415343958300362" /> - <laneOffset s="663.59755991833492" a="9.4060396184010262" b="-0.0047916062463485877" c="0.00029496746442827398" d="0.00015886745599885452" /> - <laneOffset s="664.93419349648593" a="9.4005413602334187" b="-0.0031515867098906333" c="0.00033072399627424198" d="-1.5753872484755914e-05" /> - <laneOffset s="673.65206840194605" a="9.3877636429388716" b="-0.0009771122469878768" c="-7.9701827648705553e-05" d="-1.6269812002533205e-05" /> - <laneOffset s="679.02404560128343" a="9.3776923398882825" b="-0.0032419745390290414" c="-0.0013301418477707292" d="0.00023927871136906532" /> - <laneOffset s="683.69658702525282" a="9.3579133288092784" b="-0" c="0.00016044210557397058" d="-2.2593759663043261e-05" /> - <laneOffset s="688.43069968782743" a="9.3591119288172955" b="-0" c="-0.00019489073887873521" d="2.4006728298576849e-05" /> - <laneOffset s="693.84281405995671" a="9.3572090817773006" b="-0" c="0.0028589671898037001" d="-0.00072654903735093934" /> - <laneOffset s="696.46614439081065" a="9.3637674210218318" b="-0" c="-8.6238871677138669e-05" d="1.7968828914016492e-06" /> - <laneOffset s="703.81559385277944" a="9.3598225991393136" b="-0.00097644376449094029" c="-5.0332465839544983e-05" d="1.486083574918945e-06" /> - <laneOffset s="713.87010233639057" a="9.3464271874938518" b="-0.0015378816056110516" c="-3.20870609462825e-06" d="-8.4673793687505142e-08" /> - <laneOffset s="714.92294853628528" a="9.3448043790667707" b="-0.0015449197325621991" c="-8.159578761141239e-05" d="1.4989444358901163e-06" /> - <laneOffset s="723.9246108200017" a="9.3253791690021597" b="-0.002649537119689007" c="-4.0116780147124968e-05" d="1.5827383628408722e-06" /> - <laneOffset s="733.97911930361283" a="9.2962926057462365" b="-0.0029762341556221019" c="9.834286322855063e-06" d="1.4269156140517844e-06" /> - <laneOffset s="744.03362778722396" a="9.2688125898072116" b="-0.0023457221816512923" c="5.8879215642764953e-05" d="1.1165568477249119e-06" /> - <laneOffset s="749.41028845679534" a="9.2580760938813622" b="-0.0016157411718904808" c="5.7975146321796727e-05" d="-3.5081010019199227e-06" /> - <laneOffset s="754.08813627083521" a="9.2514274339836717" b="-0.0013036388854049913" c="1.6276059319138548e-05" d="-3.4258600450544984e-06" /> - <laneOffset s="758.87052609488387" a="9.2451904605203179" b="-0.0013830230941116843" c="4.3745087860569051e-06" d="-6.1604966627830079e-07" /> - <laneOffset s="764.14264475444634" a="9.2379303133783708" b="-0.0013882669713515092" c="1.4751269543467984e-06" d="-3.9694415606724335e-07" /> - <laneOffset s="773.45223250428796" a="9.2248136937966194" b="-0.0014640088970560117" c="-5.4721730965157936e-05" d="1.4024546074509499e-05" /> - <laneOffset s="776.92279776503381" a="9.2196599007152749" b="-0.0013370700390394757" c="-3.4217513833474292e-05" d="8.1554104951786261e-06" /> - <laneOffset s="784.2516617216686" a="9.2112331720525109" b="-0.000524484780541433" c="0.00013005028632208054" d="1.0550910560521407e-05" /> - <laneOffset s="785.92669074360083" a="9.2107691155594047" b="-0" c="0.00012851933819403827" d="-5.6979447750723582e-06" /> - <laneOffset s="794.30617020527973" a="9.216440683362972" b="0.00095359517624182919" c="-1.3655201798824206e-05" d="-5.9315595236809678e-06" /> - <laneOffset s="800.89934139225943" a="9.2204342974087599" b="-0" c="-0.0015712002808122394" d="0.00018361616297694241" /> - <laneOffset s="804.36067868889086" a="9.2092244957743361" b="-0.0042772719067290556" c="0.00034316058654470524" d="0.00018325221006042046" /> - <laneOffset s="806.59478344159857" a="9.2034248439011144" b="-0" c="0.0041002829109486163" d="-0.0010567939010752458" /> - <laneOffset s="809.18140126542494" a="9.2125692835959345" b="-0" c="-0.00011849038354073784" d="1.10665622788931e-05" /> - <laneOffset s="814.41518717250199" a="9.2109101089457326" b="-0.00033088368194785834" c="5.5223592240299441e-05" d="1.1382773757731839e-05" /> - <laneOffset s="816.30584375646163" a="9.2105588510966605" b="-0" c="2.3868625729038963e-05" d="-5.4098282335966262e-07" /> - <laneOffset s="824.46969565611312" a="9.2118553054239616" b="0.00028155280585681982" c="5.4197562328758979e-06" d="-1.3110317422740156e-07" /> - <laneOffset s="830.21084255122742" a="9.213625571771443" b="0.00033082025539482319" c="-2.6562720962828575e-05" d="3.3257373376735987e-06" /> - <laneOffset s="834.52420413972425" a="9.2148252093812282" b="0.00028729792424349001" c="9.4550210721894579e-06" d="2.5604381548350239e-06" /> - <laneOffset s="841.8497934417212" a="9.2184437980623599" b="0.00083803717265247546" c="0.0014473803888868856" d="-0.0001646031893496068" /> - <laneOffset s="844.57871262333538" a="9.2281642664343817" b="0.0050602055815349026" c="9.071978817637071e-05" d="-0.00016451208869964522" /> - <laneOffset s="847.96982393621192" a="9.2399518282084827" b="-0" c="-0.0016925855410499021" d="0.00010107796110036307" /> - <laneOffset s="854.63322110694651" a="9.1947045553422999" b="-0.0090928936487240288" c="0.00032356780106535801" d="0.0001010671810128706" /> - <laneOffset s="859.14533849002737" a="9.1695482805577999" b="-0" c="0.0012565320349515402" d="-6.1767646015909082e-05" /> - <laneOffset s="864.68772959055764" a="9.1976305082224883" b="0.0082362299195398551" c="0.00023008132869207557" d="-6.1956383356273376e-05" /> - <laneOffset s="870.25991513979966" a="9.2399489529650527" b="0.0050292435878737402" c="0.00021134172536616105" d="-3.6787335963140173e-05" /> - <laneOffset s="874.74223807416877" a="9.2634248639818395" b="0.0047065400556475625" c="-0.00028589519469825387" d="-3.6047370645025192e-05" /> - <laneOffset s="879.20564471875628" a="9.2755311308377273" b="-0" c="-0.00046526554900497063" d="6.8901724549478449e-05" /> - <laneOffset s="883.70737576682666" a="9.2723881717261243" b="-0" c="0.0019046963688431526" d="-0.00017164628573063521" /> - <laneOffset s="884.7967465577799" a="9.2744266274196967" b="0.0035387484487367756" c="0.0013440516727484997" d="-0.00017587371290923317" /> - <laneOffset s="887.65450515088139" a="9.2914114327296051" b="0.0069117309165559688" c="0.0014534063025835094" d="-0.00020600955581117752" /> - <laneOffset s="892.11973554624444" a="9.332911499237337" b="0.0075688887604728038" c="-0.00059060981062251158" d="3.8157491627527744e-05" /> - <laneOffset s="894.85125504139103" a="9.3499570745792013" b="0.0051964662237667832" c="-0.00025605813084536642" d="3.8480919975326683e-05" /> - <laneOffset s="897.44924788352068" a="9.3624039506584271" b="0.0046451804621481605" c="-0.00046330337746222563" d="3.7857845555991409e-05" /> - <laneOffset s="905.34961175880062" a="9.3888531127167081" b="0.0044134273277576571" c="0.00011435422590124561" d="3.8118726628576107e-06" /> - <laneOffset s="910.80420968303611" a="9.4169475479872382" b="0.0060011797824247532" c="0.00034959117338677229" d="-2.6396625224563178e-05" /> - <laneOffset s="914.96027200861329" a="9.4460323264407755" b="0.0075391900274866339" c="1.8486334987507384e-05" d="-2.654731941460807e-05" /> - <laneOffset s="918.14621054858662" a="9.4693808773020063" b="0.0068486005282472418" c="-0.0004610124362112465" d="7.3694656004572999e-05" /> - <laneOffset s="923.85732453481774" a="9.5071849767022574" b="0.0087938680285231073" c="0.0087699335156269896" d="-0.0072480145591410769" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.493035872365855" b="-7.7424285320721133e-05" c="1.9372772065179939e-05" d="-1.2214712024268297e-06" /> - <width sOffset="7.4981625438762389" a="2.4930295875206259" b="7.0738226273667432e-06" c="-0.002574641935919031" d="-8.6753010452489041e-05" /> - <width sOffset="7.5863676296578406" a="2.4930101208663142" b="-0.00044914405390137534" c="-0.0033622757223089866" d="0.0019446572872196424" /> - <width sOffset="8.4846190841191742" a="2.4913032137408084" b="-0.001782308862685628" c="0.002492242382338054" d="-0.00043679882923959595" /> - <width sOffset="10.054508483611135" a="2.4929574411918818" b="0.0028132396945320642" c="0.00044334528113709293" d="-0.00043680640771787864" /> - <width sOffset="12.041925982063587" a="2.4968707488186581" b="-0.00060046691600992245" c="-0.00059921387104764755" d="0.00013041455570911642" /> - <width sOffset="15.541126275250278" a="2.4930202710433935" b="-3.4606115772498319e-06" c="-0.00022520043792831771" d="7.1201211388612464e-05" /> - <width sOffset="17.893916242398756" a="2.4926928402092798" b="0.00011926941033961512" c="-5.0664509841089419e-05" d="-3.1068684985602586e-06" /> - <width sOffset="20.109016967222271" a="2.4926746720320416" b="-0.00015091772134740757" c="-4.8602739129128609e-05" d="-3.5975613194783628e-06" /> - <width sOffset="23.081323807419121" a="2.4917022431523446" b="-0.00053519136080432302" c="0.00012465469293868845" d="-5.8531464447948839e-06" /> - <width sOffset="30.163525450833404" a="2.4920850974025672" b="0.00034972899633291255" c="2.0772103357724069e-06" d="-5.5948514643204738e-06" /> - <width sOffset="35.99158453677277" a="2.4930863512530124" b="-0.00019616754633811507" c="8.6302187422629135e-05" d="1.0568603582626636e-06" /> - <width sOffset="36.991373321590665" a="2.4929775470656725" b="-2.043038628763913e-05" c="0.00013668105943014908" d="-1.2611508686382286e-05" /> - <width sOffset="40.218033934444541" a="2.493910988734358" b="0.00046770832993139519" c="1.6052798914785471e-05" d="-7.6303318091885844e-06" /> - <width sOffset="44.26840607208171" a="2.4955617123120035" b="0.0002222093925071931" c="1.7843282982678928e-06" d="-3.0526264267979865e-07" /> - <width sOffset="50.272542418055679" a="2.4968941390250041" b="0.0002106222560164023" c="-5.6882626476670875e-06" d="-1.1929413740460125e-06" /> - <width sOffset="60.327050901666809" a="2.4972242424199749" b="-0.00026555768512539883" c="-4.1080035497227926e-05" d="-9.7130414544756503e-07" /> - <width sOffset="66.650849736466682" a="2.4936564661770255" b="-0.00090165006262183929" c="0.00034569653725674305" d="-3.8641463877666197e-05" /> - <width sOffset="70.381559385277953" a="2.4930976951665347" b="6.4278523432229062e-05" c="-8.5958998383765762e-05" d="-3.912202009424604e-05" /> - <width sOffset="70.650075472731217" a="2.4931079998518904" b="9.6535782060365276e-06" c="9.3949107326917513e-05" d="-3.5148779232315368e-05" /> - <width sOffset="73.737226749978745" a="2.4929990331013308" b="-0.00041523284710159739" c="9.4455200159205429e-05" d="-3.2515704011599194e-06" /> - <width sOffset="80.436067868889083" a="2.4934786368027506" b="0.0004125103922906553" c="2.9246538127411125e-05" d="-3.1067611604858164e-06" /> - <width sOffset="90.490576352500213" a="2.497425008402324" b="5.8412793002080758e-05" c="-6.5697363721953656e-05" d="-2.8603027938081213e-06" /> - <width sOffset="94.197604484369208" a="2.4965930192149148" b="-0.00054659049499651482" c="-4.108133207151673e-05" d="6.8936323775363866e-06" /> - <width sOffset="100.54508483611136" a="2.4932313587040706" b="-0.0002348725644180534" c="9.3470223444758042e-05" d="4.1456992803005094e-06" /> - <width sOffset="101.69632620437378" a="2.4930911706079577" b="-3.1753977586816327e-06" c="-0.00010315903845239401" d="9.4873666301610543e-06" /> - <width sOffset="104.41889843980553" a="2.4925093319299858" b="-0.00035391880841197793" c="1.5433351477033838e-05" d="-3.3708795167504602e-08" /> - <width sOffset="110.59959331972249" a="2.4909034781175929" b="-0.00016700426346607069" c="1.4399263762841723e-05" d="-3.2102841973991869e-09" /> - <width sOffset="120.65410180333362" a="2.4906767360662574" b="0.00012157716271838336" c="1.6580077859235674e-05" d="-4.0246129106099806e-07" /> - <width sOffset="120.91360778871295" a="2.4907093955923507" b="0.00013010111234168856" c="0.00030951733253319481" d="-3.4599040742828204e-05" /> - <width sOffset="127.47134622535657" a="2.4951158022051594" b="-0.00027411600272087997" c="-6.4890284666105328e-05" d="9.7023123652604001e-06" /> - <width sOffset="130.70861028694475" a="2.4938775359679983" b="-0.00038921280840322381" c="2.9957179597187922e-05" d="5.7667679558814203e-06" /> - <width sOffset="133.97038333433466" a="2.4931268529242381" b="-9.7250064974753339e-06" c="-2.8600799024129634e-05" d="4.5508013960406543e-06" /> - <width sOffset="140.18114402546379" a="2.4930534593274949" b="0.00016163123008818708" c="4.056878073760869e-06" d="-9.6359761102225356e-07" /> - <width sOffset="140.76311877055591" a="2.4931487087277695" b="0.00016537413531588787" c="2.4976024783149166e-06" d="-5.302820458261843e-07" /> - <width sOffset="150.81762725416704" a="2.4945249539937997" b="5.4774833286512872e-05" c="-1.5143483520694304e-05" d="3.3602468782416382e-07" /> - <width sOffset="153.88414426271163" a="2.494560209434967" b="-2.8621215049661343e-05" c="-3.7568734925857211e-06" d="3.0617740093703565e-07" /> - <width sOffset="160.87213573777817" a="2.4942812281829898" b="-3.6273427568278224e-05" c="2.3011583169863251e-06" d="-1.2830044787152293e-07" /> - <width sOffset="170.9266442213893" a="2.4940187380760204" b="-2.8910281670933911e-05" c="-6.121478943623856e-07" d="2.079568616651545e-08" /> - <width sOffset="180.98115270500043" a="2.4936873130559523" b="-3.4913070372939717e-05" c="1.5016493426061582e-05" d="-5.9879945596411357e-06" /> - <width sOffset="183.4809883528506" a="2.4936003328988345" b="-7.2095675606388806e-05" c="2.9185240898959598e-06" d="-5.046080294584981e-08" /> - <width sOffset="191.03566118861158" a="2.4932004857137802" b="-3.6638546860692625e-05" c="-8.3892163789667924e-06" d="2.1865701403345052e-06" /> - <width sOffset="195.47966756049888" a="2.4930638890322925" b="1.8346975774642317e-05" c="-9.2364012887414279e-05" d="3.1644739637113214e-06" /> - <width sOffset="201.09016967222271" a="2.4908182797043192" b="-0.00071923859440650999" c="-4.2508333832194392e-05" d="3.4533738137363596e-06" /> - <width sOffset="203.8219238478917" a="2.4886066783582415" b="-0.0008741710231695678" c="0.0011721969129673852" d="-0.00013290541471382063" /> - <width sOffset="209.58891134156494" a="2.49705927345709" b="-0.00061464371146381842" c="-2.6693795883172351e-05" d="8.5667990110408606e-06" /> - <width sOffset="211.14467815583384" a="2.4960706803157482" b="-0.00063549684727644837" c="5.1175660483969353e-06" d="3.5956402704584588e-06" /> - <width sOffset="218.33807829063227" a="2.4931024840089666" b="-3.7021699659362087e-06" c="-5.3422998153672418e-05" d="3.4868859204040671e-06" /> - <width sOffset="221.19918663944497" a="2.4927362400707498" b="-0.00022376981495921306" c="-2.2854328844388536e-05" d="3.742224521371965e-06" /> - <width sOffset="224.83770369374642" a="2.491799747292097" b="-0.00024145378817258469" c="3.9523925602371747e-05" d="-7.185679464231753e-07" /> - <width sOffset="231.2536951230561" a="2.4916877983084653" b="0.00017697711548290398" c="2.5338326260444317e-05" d="-5.7442128037008952e-07" /> - <width sOffset="237.31427572562845" a="2.4935632039121387" b="0.0004208104737364822" c="-0.00022209499908845286" d="2.4035863217079051e-05" /> - <width sOffset="241.30820360666723" a="2.4932324514610098" b="-0.00020303101828292119" c="7.7229690916251188e-05" d="1.2902580446354468e-05" /> - <width sOffset="242.3138751578073" a="2.4931195005021625" b="-8.5475598701522174e-06" c="-0.00023805522191378689" d="3.0900508589661155e-05" /> - <width sOffset="246.96247995066966" a="2.4910395899234015" b="-0.00021856077140806104" c="3.8828716604553205e-05" d="9.833333706132977e-07" /> - <width sOffset="251.36271209027839" a="2.4909134525970664" b="0.00018026799074754381" c="5.2261525275524039e-05" d="7.477711432828064e-07" /> - <width sOffset="258.1135202890934" a="2.4947422005104816" b="0.00098811850306864345" c="-0.00067558196781010329" d="8.3168062748965651e-05" /> - <width sOffset="261.41722057388949" a="2.4936319280242536" b="-0.00075252478834406155" c="0.00014026841175172978" d="9.5229523631058902e-05" /> - <width sOffset="262.61319769447499" a="2.4930954672789341" b="-8.371298022288344e-06" c="3.1119172267184497e-05" d="7.2908703716379467e-05" /> - <width sOffset="263.99171566511643" a="2.4933340560823414" b="0.00049307318735961319" c="-0.00039363672292138513" d="3.2155567695808168e-05" /> - <width sOffset="271.47172905750068" a="2.4884555056669466" b="1.6272205384235995e-06" c="0.00032648346130598253" d="3.3214055400955068e-05" /> - <width sOffset="273.16306312736822" a="2.4895528978618611" b="0.0013910498935637272" c="0.00010513424384143524" d="-2.1777837242112731e-05" /> - <width sOffset="278.66273104009059" a="2.4967605057692595" b="0.00057135667211210238" c="-0.00034499125421869178" d="2.7463755508669749e-05" /> - <width sOffset="281.52623754111181" a="2.4962126187308513" b="-0.00072883157272305365" c="-0.00011419796939291378" d="2.6724183465458459e-05" /> - <width sOffset="284.92605980724437" a="2.493464933003148" b="-0.00057863938155465033" c="-0.00012183429829072776" d="3.1870441845871182e-05" /> - <width sOffset="288.42944344489968" a="2.4913127920850915" b="-0.00025879952476955907" c="0.00038624729374703238" d="-5.3358192260425977e-05" /> - <width sOffset="291.58074602472294" a="2.4926631187627581" b="0.00058591078953021208" c="-0.00011442840586832632" d="-5.7170454670319843e-05" /> - <width sOffset="292.92921939190887" a="2.493104945382262" b="-3.4569432457200828e-05" c="-1.4766630490155704e-05" d="-5.9269737048864945e-05" /> - <width sOffset="294.2171553350725" a="2.4929093036605003" b="-0.00036755256512747481" c="8.9204467825309912e-06" d="3.2216568995715275e-07" /> - <width sOffset="301.63525450833407" a="2.4908051478890485" b="-0.00018202245776339273" c="1.5603097057533742e-05" d="3.5959757116188885e-07" /> - <width sOffset="311.6897629919452" a="2.490917877649462" b="0.00024079902943787866" c="2.978538509219026e-05" d="-1.164538967428719e-06" /> - <width sOffset="314.49163515071467" a="2.4918007802700082" b="0.0003802821157487422" c="4.6038544576135687e-05" d="-1.5399576240184942e-05" /> - <width sOffset="318.49151207901173" a="2.4930729514065426" b="9.4449660926823609e-06" c="9.0640793163003985e-05" d="-6.7985853325353402e-06" /> - <width sOffset="321.74427147555633" a="2.4938287157677319" b="0.00038331420154682529" c="2.3612612010614025e-05" d="-7.2816028341496349e-06" /> - <width sOffset="330.96336961200501" a="2.4936639232116864" b="-0.0010379407734389899" c="3.8796984189202059e-05" d="1.8411846924871253e-06" /> - <width sOffset="331.79877995916746" a="2.4928249670577216" b="-0.00096926302327904237" c="5.1264356278620527e-05" d="1.6957773726786005e-06" /> - <width sOffset="341.85328844277859" a="2.4899856376337937" b="0.00057590716928400561" c="9.6892903661572363e-05" d="3.2744952310286288e-06" /> - <width sOffset="346.67807577870394" a="2.4953875679585877" b="0.0017395592055562518" c="-0.00066212360616514925" d="5.2714199720769393e-05" /> - <width sOffset="351.90779692638972" a="2.4939157668097334" b="-0.00086068700218335653" c="0.00016306810984098786" d="5.2380869171380888e-05" /> - <width sOffset="353.42796228001561" a="2.4931682263799928" b="-1.7647441001972762e-06" c="-1.7588103134025512e-05" d="5.6357959462519589e-05" /> - <width sOffset="355.05925102015664" a="2.493363195259354" b="0.0003907757038665396" c="-0.00028690332722898965" d="2.5468824031436925e-05" /> - <width sOffset="361.58645251722612" a="2.4907730894959954" b="-9.9327153821236747e-05" c="1.6547249082854022e-05" d="1.0459377871412542e-06" /> - <width sOffset="361.96230541000085" a="2.4907381501856811" b="-8.644522649003158e-05" c="7.6057861512135509e-06" d="1.4978633115039796e-06" /> - <width sOffset="372.01681389361198" a="2.4921603696770394" b="0.00052077077643282791" c="5.8932629938906767e-05" d="-4.1782638622315702e-07" /> - <width sOffset="376.34093444644401" a="2.4954803864006632" b="0.0010069967925688315" c="-0.00076789528416513846" d="0.00012003691000788784" /> - <width sOffset="379.91795526441348" a="2.4947510354092159" b="0.00012108681247892947" c="-0.00087763906075257196" d="0.00022435341668034431" /> - <width sOffset="382.07132237722317" a="2.4931823769230324" b="-0.00053769777150843891" c="0.00057531093582890145" d="0.00022735022817577656" /> - <width sOffset="382.41795394514099" a="2.4930745883960075" b="-5.6905169414657106e-05" c="-0.00029517410386575903" d="0.00025962277551773433" /> - <width sOffset="384.47552794528497" a="2.4939694150789116" b="0.0020258350399696189" c="-0.00057359794314715534" d="3.8560890289100779e-05" /> - <width sOffset="391.42349698835284" a="2.4932884673146916" b="-0.00036034953426475422" c="0.00011651744924572796" d="4.2355496163514432e-05" /> - <width sOffset="392.42351314220372" a="2.4930869907218813" b="-2.4027762590974017e-07" c="-9.1320339521380303e-05" d="5.6951399139758329e-06" /> - <width sOffset="402.18033934444543" a="2.4896810351922269" b="-0.00015577587381379035" c="7.4934769096519338e-05" d="6.2151809524196249e-06" /> - <width sOffset="404.01186766553036" a="2.4896852808170138" b="0.00018126082861296767" c="0.00011384921555022356" d="-7.9214984600824724e-06" /> - <width sOffset="409.35604769555783" a="2.4926964669410694" b="0.00071940206554499007" c="-0.00031204761881787371" d="3.9867937740884302e-05" /> - <width sOffset="412.23484782805656" a="2.4931325604895971" b="-8.6027956944990502e-05" c="2.1651738169053023e-05" d="3.8882651935958754e-05" /> - <width sOffset="412.85613398105835" a="2.4930967946208096" b="-1.4098405913081074e-05" c="-0.00024098840156466992" d="3.9705297761343428e-05" /> - <width sOffset="418.80948495600074" a="2.4928495139776796" b="0.0013382762098688495" c="-0.00015048552379017728" d="3.6321157204174705e-06" /> - <width sOffset="422.28935631166769" a="2.4958372934830937" b="0.00042288504914756526" c="-0.00011527199585340063" d="3.1252245710986476e-06" /> - <width sOffset="432.34386479527882" a="2.4916125957054085" b="-0.00094730516807980838" c="-2.4058149464884763e-05" d="4.9946605520077468e-06" /> - <width sOffset="433.45071552709777" a="2.4905413690782154" b="-0.00098220557499668231" c="0.00039613127545753773" d="-2.9359579898521029e-05" /> - <width sOffset="440.95103075433281" a="2.4930711403958128" b="5.1677107064288614e-06" c="-0.00026768885062601394" d="-3.5124134509813143e-05" /> - <width sOffset="441.8973177574162" a="2.492806563285809" b="-0.00059580992653745926" c="-0.00057848873759381062" d="0.00022348983509022015" /> - <width sOffset="442.39837327888995" a="2.4923909095230634" b="-0.0010071940604349395" c="-0.00023940207785437041" d="0.00022559630922943408" /> - <width sOffset="443.72290963689022" a="2.4911610703263367" b="-0.00045403140397450264" c="4.6758698024930786e-05" d="-8.9470705196754535e-07" /> - <width sOffset="452.45288176250108" a="2.4901657045949026" b="0.00015780950588152273" c="2.3353827469020033e-05" d="-8.8390985172272522e-07" /> - <width sOffset="462.50739024611221" a="2.493214870422138" b="0.00035936034929847402" c="-2.7826451358881032e-06" d="-9.1514631813906219e-07" /> - <width sOffset="472.56189872972334" a="2.4956165627566076" b="2.5859044139454879e-05" c="-3.0968574548414229e-05" d="-6.8448737141180572e-07" /> - <width sOffset="480.13945738107952" a="2.4937364947047787" b="-0.00056138188832975059" c="0.00013030917310292181" d="-8.5194842407219845e-06" /> - <width sOffset="482.61640721333447" a="2.4930159945114436" b="-7.2651595280561138e-05" c="6.4376957225388779e-05" d="-1.0147774805647275e-05" /> - <width sOffset="486.13989556490833" a="2.4931153411758586" b="3.0583581874608218e-06" c="0.0001199783751193013" d="-9.9274290322910171e-06" /> - <width sOffset="492.67091569694566" a="2.4954873604042671" b="0.00029988038079012337" c="-7.3579965455058342e-05" d="-1.0353011915137524e-05" /> - <width sOffset="495.78211091891296" a="2.4953963467291089" b="-0.00045859993871462596" c="3.0892760477426862e-05" d="-7.0969954467220068e-07" /> - <width sOffset="502.72542418055679" a="2.4934639104743237" b="-0.0001322467031744099" c="1.6269290696979695e-05" d="-6.64546682685755e-07" /> - <width sOffset="511.28341517886037" a="2.4931071694741647" b="2.055614950274235e-07" c="0.00069886707884374397" d="-5.1826584646266378e-05" /> - <width sOffset="512.77993266416786" a="2.4944989357958551" b="0.001743732217870757" c="0.0004598767766213303" d="-5.1663110705290716e-05" /> - <width sOffset="513.13565656714184" a="2.4951750900833147" b="0.0020512982697671895" c="-0.001791492106639343" d="0.00026848562572739492" /> - <width sOffset="517.01884241510936" a="2.4918477114350388" b="0.00028349551629442294" c="0.0002697857800638027" d="-7.7158571132658713e-05" /> - <width sOffset="519.76909374022398" a="2.4930629261021764" b="1.6597851203397403e-05" c="0.000150575986834853" d="-2.2558921420919768e-05" /> - <width sOffset="522.83444114777899" a="2.4938789029880137" b="0.00030381838904625048" c="-6.9523973806316297e-05" d="-2.5049410392359941e-05" /> - <width sOffset="523.80189708140438" a="2.4940850789604205" b="9.895906322927514e-05" c="0.00017546062930541464" d="-1.7589042172646384e-05" /> - <width sOffset="531.7221078827306" a="2.497136642783035" b="-0.00043173867540974623" c="-0.00024578550439404291" d="3.5220841358442434e-05" /> - <width sOffset="532.88894963139012" a="2.4963541848494994" b="-0.0008614626463601875" c="-0.0001241383071950129" d="3.6146139505296213e-05" /> - <width sOffset="535.90669242014303" a="2.4936173773372747" b="-0.00062317370557140911" c="5.304641890721147e-05" d="4.6368770800214997e-10" /> - <width sOffset="540.94208102127891" a="2.4918245140552333" b="-8.8919768780630973e-05" c="-1.5844323744346994e-05" d="1.3996466828263694e-06" /> - <width sOffset="542.94345811500136" a="2.4915943077840321" b="-0.00013552180451025029" c="-9.5086329163567901e-06" d="4.1179600442951053e-07" /> - <width sOffset="552.99796659861249" a="2.489689011773585" b="-0.00020184181073129451" c="1.9296780220271758e-06" d="4.3946663882770089e-07" /> - <width sOffset="563.05247508222362" a="2.4883013610673039" b="-2.975669419441975e-05" c="1.4331942505219472e-05" d="2.4746215982307252e-07" /> - <width sOffset="563.99001814484848" a="2.4882862644067902" b="-2.2305195990243252e-06" c="0.0006979974430049706" d="-8.5102038623636922e-05" /> - <width sOffset="569.45115608711546" a="2.4952303429513183" b="7.2334671714997375e-06" c="-0.00010393746331216185" d="8.7283167449363624e-06" /> - <width sOffset="573.10698356583475" a="2.4942941244201613" b="-0.00040275758963117099" c="-9.6000383895730515e-06" d="8.5830845294628384e-06" /> - <width sOffset="577.45218548837522" a="2.4930669682821662" b="-1.9814497785055306e-08" c="-0.0016139044974091516" d="0.00019324008728455788" /> - <width sOffset="578.17401091251952" a="2.4922987346408885" b="-0.0020278816368408783" c="0.0010872739948056297" d="-0.00012191687301688612" /> - <width sOffset="583.16149204944588" a="2.4941051932107428" b="-0.00028039953553499544" c="-0.00072715432134276017" d="-0.00012866235992294665" /> - <width sOffset="583.35183430327083" a="2.4940245891311505" b="-0.00057120029925114254" c="-0.0015096071414301725" d="0.0011152016938994007" /> - <width sOffset="584.35196695829791" a="2.4930589509414638" b="-0.00024432233283061934" c="-0.0014250044556451146" d="0.0010382791354191098" /> - <width sOffset="585.55541069525361" a="2.492510758963725" b="0.00083699913113571291" c="0.0002807176504042927" d="-0.00010336495908366968" /> - <width sOffset="588.97809964833425" a="2.4945195643523519" b="-0.0008740818324634741" c="-0.00017999878242027132" d="0.00013057406190262555" /> - <width sOffset="590.97837996383964" a="2.4930959904791035" b="-2.684987822547261e-05" c="-0.00020951271870398505" d="1.7584310299418281e-05" /> - <width sOffset="593.21600053305701" a="2.4921839001789383" b="-0.00070033874957516583" c="-8.405699391311042e-05" d="2.1396095536066484e-05" /> - <width sOffset="599.76263441456422" a="2.4899997704929842" b="0.00095008875881785293" c="1.2332117619543448e-05" d="-1.5755449501361189e-05" /> - <width sOffset="603.27050901666814" a="2.4928042270403878" b="0.00045498667725048578" c="-0.00015611284498382038" d="-1.2703840669834005e-05" /> - <width sOffset="604.51333650712422" a="2.4931041744240208" b="8.076180902749793e-06" c="0.00016080645205765798" d="-2.1282747753768928e-05" /> - <width sOffset="608.03631127856511" a="2.4941978664296531" b="0.00034866735508361137" c="-4.0146100579714389e-05" d="-3.5952507105898596e-06" /> - <width sOffset="613.32501750027927" a="2.4943871268760951" b="-0.0003776564557761032" c="-9.7142777306906245e-05" d="-3.0929405436205633e-06" /> - <width sOffset="616.97810533143718" a="2.4915603565464561" b="-0.0012112249962249366" c="0.00055946619796101" d="-5.2638297678619208e-05" /> - <width sOffset="622.72897721740594" a="2.4930861312238459" b="9.6722727651894075e-07" c="0.00031213634308789953" d="-4.6025478574885911e-05" /> - <width sOffset="623.3795259838904" a="2.4932061890406221" b="0.00034865121430277275" c="0.00022107496528290822" d="-4.6196186813757005e-05" /> - <width sOffset="627.72277009826962" a="2.4951059220147869" b="-0.00034528635287510824" c="-5.4932172987699247e-05" d="3.4314844387511782e-06" /> - <width sOffset="633.43403446750153" a="2.4919813549557901" b="-0.0006369606330599339" c="3.9806547448302515e-06" d="3.464667088551388e-06" /> - <width sOffset="642.57229832878761" a="2.4891370026755162" b="0.00030377278277543638" c="0.0001688551265197432" d="-1.8674873190563673e-05" /> - <width sOffset="643.48854295111266" a="2.4895427228949707" b="0.00056616508215244824" c="0.00011910365624417204" d="-1.9205877770174044e-05" /> - <width sOffset="649.32346234333363" a="2.49308589916137" b="-5.5807760135275636e-06" c="0.00032033943491746434" d="-3.6617650280884037e-05" /> - <width sOffset="653.54305143472379" a="2.4960149068109487" b="0.00074189646346865356" c="-0.00013993589219335928" d="-3.6416004006045582e-05" /> - <width sOffset="655.9429289949702" a="2.4964860811905343" b="-0.00055896589624838283" c="-0.00023382737852563782" d="1.1813420426713287e-05" /> - <width sOffset="659.64195100856693" a="2.4918169600453801" b="-0.0018039104112132318" c="0.0012314659988812895" d="-0.00017588571537225189" /> - <width sOffset="663.39260926408963" a="2.4930945708543568" b="1.0921973857771876e-05" c="0.00030751699158825733" d="-0.00017517971967169772" /> - <width sOffset="663.59755991833492" a="2.4931082183951485" b="0.00011489843921790553" c="0.00021382361613605616" d="-0.00017989373559834014" /> - <width sOffset="664.93419349648593" a="2.4932142215073991" b="-0.00027768259200468097" c="9.3753790281264713e-05" d="-5.2724071147315102e-06" /> - <width sOffset="673.65206840194605" a="2.4944254935319101" b="0.00015485497657848199" c="-4.4033523949137633e-05" d="-5.197857729843163e-06" /> - <width sOffset="679.02404560128343" a="2.4931808461077711" b="-0.00076824069982561272" c="0.00086043499919807279" d="-0.00026074638110184216" /> - <width sOffset="680.52415395513208" a="2.4930844505119278" b="5.2958403169287536e-05" c="0.00084105454489892756" d="-0.00025675470056140347" /> - <width sOffset="683.69658702525282" a="2.493519337829829" b="-0.0023628564197111239" c="0.00026097834242226679" d="5.1190750342383336e-06" /> - <width sOffset="683.70657688555718" a="2.4934957592743174" b="-0.0023576406128774743" c="0.00026365569036965316" d="6.3152483568720922e-06" /> - <width sOffset="688.43069968782743" a="2.488907883797232" b="0.00055626166803491488" c="0.00038760634996795054" d="-4.0285239604747852e-05" /> - <width sOffset="693.76108536916831" a="2.4967847441252946" b="0.0012545694138283089" c="-0.00026853431419340725" d="-3.8938450956368302e-05" /> - <width sOffset="693.84281405995671" a="2.4968854634878355" b="0.0012098952205618655" c="-0.0029421579318773014" d="0.00071161730928120059" /> - <width sOffset="696.46614439081065" a="2.4926590034434231" b="0.00046514734960366341" c="-0.00011446443581082252" d="-1.6728610960431979e-05" /> - <width sOffset="697.96614392230333" a="2.493042720421105" b="8.836095976378776e-06" c="1.5651229314377426e-05" d="-8.7558427603069696e-07" /> - <width sOffset="703.81559385277944" a="2.493454686242103" b="0.00010206111626500161" c="-1.3619787859772586e-06" d="-1.1379867693718442e-06" /> - <width sOffset="713.87010233639057" a="2.4931864765198348" b="-0.00027045490852724611" c="-3.7075395545357258e-05" d="3.4465148475601993e-07" /> - <width sOffset="714.92294853628528" a="2.4928610338033028" b="-0.00034737816402502226" c="4.2132835543814878e-05" d="-1.2389667448251159e-06" /> - <width sOffset="723.9246108200017" a="2.4922443660311782" b="0.0001099728061843522" c="8.6750372644767157e-06" d="-1.2388154013569915e-06" /> - <width sOffset="732.1713689620633" a="2.4930464714509686" b="3.0281089447633386e-07" c="3.7165425052194905e-05" d="-1.7433091679885535e-06" /> - <width sOffset="733.97911930361283" a="2.4931581751535141" b="0.00011758322988028071" c="2.8161301625843629e-05" d="-1.8650234578204596e-06" /> - <width sOffset="744.03362778722396" a="2.4952916432882102" b="0.00011825608478066964" c="-2.8749530070757377e-05" d="-1.525570760475881e-06" /> - <width sOffset="749.41028845679534" a="2.4948592397925058" b="-0.00032320264567212175" c="-3.4442847803848541e-05" d="3.0990870891756342e-06" /> - <width sOffset="754.08813627083521" a="2.4929108880360165" b="-0.00044199435635207721" c="6.2310653771167707e-06" d="3.0297856973684918e-06" /> - <width sOffset="758.87052609488387" a="2.4912710066647872" b="-0.00017451060857338213" c="1.2450070120361291e-05" d="2.1997531861569538e-07" /> - <width sOffset="764.14264475444634" a="2.4907292537901355" b="-2.4891317454553939e-05" c="1.4938852217711619e-05" d="-8.7628108264051209e-08" /> - <width sOffset="773.45223250428796" a="2.4917215501627599" b="0.00023047402360686607" c="5.7602206089873305e-05" d="-1.4509118336002126e-05" /> - <width sOffset="774.19715323805747" a="2.49191920138996" b="0.00029213854923962205" c="1.9453521129946679e-05" d="-1.3346804796689586e-05" /> - <width sOffset="776.92279776503381" a="2.4925897281421197" b="0.00010071954845632157" c="3.5832674870502505e-05" d="-7.4776692174791827e-06" /> - <width sOffset="780.92181191369798" a="2.4930873302013072" b="2.8559076680028045e-05" c="0.00013657600559771217" d="-1.2389531161238526e-05" /> - <width sOffset="784.2516617216686" a="2.4942393343088689" b="0.00052599261054775599" c="1.0772942139630049e-05" d="-1.796755532744677e-05" /> - <width sOffset="785.92669074360083" a="2.4950661715684088" b="0.00041084668412019813" c="-2.4965395422209301e-05" d="-1.7186999918541783e-06" /> - <width sOffset="794.30617020527973" a="2.4957446578869664" b="-0.00036958639782570216" c="-6.8667958710546794e-05" d="-1.6354841841261656e-06" /> - <width sOffset="800.89934139225943" a="2.4898541845847042" b="-0.0014883486442245956" c="0.0013392046766686262" d="-0.00019118320668482842" /> - <width sOffset="804.36067868889086" a="2.4928189999853636" b="0.00091091420762139715" c="-0.0006537324625469599" d="-0.00019081925376020854" /> - <width sOffset="804.89806299955046" a="2.4930901122470441" b="4.2987631707121481e-05" c="0.00098578560529566936" d="-0.00032718593421480308" /> - <width sOffset="806.59478344159857" a="2.4944028099413291" b="0.00056242505825266037" c="-0.0032085520075852661" d="0.00091286017692157172" /> - <width sOffset="809.18140126542494" a="2.4901884387730178" b="0.002286553786397103" c="-0.00010668332213271188" d="-0.00015500028643271115" /> - <width sOffset="811.18071478060574" a="2.4930948104028996" b="1.2401786216893881e-06" c="7.6964301695183745e-05" d="-1.1457112014517987e-05" /> - <width sOffset="814.41518717250199" a="2.4935163169463017" b="0.00013953155262823232" c="-3.4172334613149401e-05" d="-1.1543399083370089e-05" /> - <width sOffset="816.30584375646163" a="2.4935799575301587" b="-0.0001134732369995973" c="-3.7284300903454474e-06" d="3.8035749772454994e-07" /> - <width sOffset="824.46969565611312" a="2.4926120403108669" b="-9.8299194376537776e-05" c="6.8505695484757549e-06" d="1.1855126808212822e-07" /> - <width sOffset="830.21084255122742" a="2.4922959239933373" b="-7.9163197781034213e-06" c="3.8616859733276362e-05" d="-3.3382892437927334e-06" /> - <width sOffset="834.52420413972425" a="2.4927123488347309" b="0.00013889314172046714" c="-4.3660935760313123e-06" d="-2.1472606316266974e-06" /> - <width sOffset="838.45744624080658" a="2.4930604457633283" b="4.8904353032200808e-06" c="0.00026968293667508232" d="-8.3302664063519007e-06" /> - <width sOffset="841.8497934417212" a="2.4958553454020826" b="0.0015470121405111725" c="-0.0011967497438523014" d="0.0001588333610980198" /> - <width sOffset="844.57871262333538" a="2.4943926742833842" b="-0.0014361584501369085" c="9.7554318542596632e-05" d="0.00016438958087624576" /> - <width sOffset="846.09790530370697" a="2.493012408276341" b="-1.5438126116677428e-06" c="-0.0010023152543569085" d="0.00023564955120235505" /> - <width sOffset="847.96982393621192" a="2.4910430344098735" b="-0.0012768448227257938" c="0.00043070401649811761" d="-2.9940498597563981e-05" /> - <width sOffset="854.63322110694651" a="2.4928003265689593" b="0.00047490720089232372" c="-0.00017736653057677575" d="-2.3203524776398024e-05" /> - <width sOffset="855.71609496868143" a="2.4930771446475948" b="9.1495817493014719e-06" c="0.00065886481763939163" d="-0.00013045542130166906" /> - <width sOffset="859.14533849002737" a="2.4955957162684026" b="-7.4388812623682856e-05" c="-0.00024810868829474317" d="3.23794057271228e-05" /> - <width sOffset="864.39264969270982" a="2.4930520881701774" b="-3.5654406966567631e-06" c="-0.00035878665724658966" d="5.4230075827420583e-05" /> - <width sOffset="864.68772959055764" a="2.493021189102409" b="-0.00020114111378315321" c="-0.0003113506900583836" d="5.4418813101043662e-05" /> - <width sOffset="870.25991513979966" a="2.4916483056723848" b="0.0013980415455445263" c="-0.00041861330689029689" d="2.9249765707915422e-05" /> - <width sOffset="874.74223807416877" a="2.4921384251154048" b="-0.00059168817089039639" c="-2.5807873533715989e-05" d="2.8926453503848387e-05" /> - <width sOffset="879.20564471875628" a="2.4915554755037022" b="0.00090674808316202596" c="5.8211834122064404e-05" d="-7.6022641690467416e-05" /> - <width sOffset="881.45442537405131" a="2.4930243928199225" b="1.5216586737466309e-05" c="0.00058513107124173464" d="-6.020971539463602e-05" /> - <width sOffset="883.70737576682666" a="2.4953401470544829" b="0.0017349243442214498" c="-0.0012612482544337453" d="0.00018033829488125388" /> - <width sOffset="884.7967465577799" a="2.4959665025450253" b="-0.0003709717711626241" c="-0.00067162563378786303" d="0.00018272401807316435" /> - <width sOffset="887.65450515088139" a="2.4936858737923817" b="0.00026714323459794704" c="-0.00072225070827905684" d="0.0002128598609750382" /> - <width sOffset="889.65328707776644" a="2.4930341194093852" b="-6.8892157509214957e-05" c="-0.00080928709649436643" d="0.0002222873492974924" /> - <width sOffset="892.11973554624444" a="2.4912762783324052" b="-4.254722579600731e-06" c="0.00011986950239342963" d="-2.1879698140816484e-05" /> - <width sOffset="894.85125504139103" a="2.4917131094409548" b="0.00016085071333228097" c="-7.0254291173282326e-05" d="-2.1264319731675734e-05" /> - <width sOffset="897.44924788352068" a="2.4912839356269743" b="-0.00063476441781307961" c="0.00027117676803994841" d="-2.0641245312342682e-05" /> - <width sOffset="904.94471019549792" a="2.493069094702518" b="-4.8570490940392889e-05" c="-0.00017662664178676079" d="-4.274228179726367e-05" /> - <width sOffset="905.34961175880062" a="2.4930176340260086" b="-0.0002126254832558053" c="9.1068770984025933e-05" d="-8.6963088846221132e-06" /> - <width sOffset="910.80420968303611" a="2.4931560712372676" b="4.6471711100878887e-06" c="-0.00022409608353015433" d="2.1512189002779742e-05" /> - <width sOffset="914.96027200861329" a="2.490848902984542" b="-0.00074333670594411982" c="4.5109959025364125e-05" d="2.1625229815689811e-05" /> - <width sOffset="918.14621054858662" a="2.4896378683387557" b="0.00020259991526116235" c="0.00047756430537357569" d="-7.8616745603573939e-05" /> - <width sOffset="922.39333000552847" a="2.4930898499464025" b="4.873064959399695e-06" c="0.0038635814788609661" d="-0.0015137261650740976" /> - <width sOffset="923.85732453481774" a="2.4966280263996179" b="0.0015843803994489321" c="-0.010752989204658194" d="0.0058079830500723448" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.14997689528433081" weight="standard" type="solid"> - <type name="solid"> - <line length="925.01478049222453" space="0" width="0.149977" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.850432692658357" b="1.5606225613717229e-09" c="0.018172720151370565" d="-0.068855340629599762" /> - <width sOffset="0.15400343137418268" a="3.8506122016439122" b="0.00069818599247911662" c="-0.002392686831405243" d="0.00034067187024956617" /> - <width sOffset="2.5588066817271695" a="3.8431918857861636" b="-0.004899299464102393" c="-9.3176400085685329e-05" d="0.00013624641963798538" /> - <width sOffset="7.5863676296578406" a="3.8335191867962326" b="0.0044952448431219037" c="0.002726462752214893" d="-0.0018951638799392381" /> - <width sOffset="8.4846190841191742" a="3.8383833713435349" b="0.0048059719112848115" c="-0.0029946827772044694" d="0.00048629223651924992" /> - <width sOffset="10.054508483611135" a="3.8404291633296337" b="-0.0010011910098911714" c="-0.0007237915408508385" d="0.00048450687675064398" /> - <width sOffset="12.041925982063587" a="3.8393838850638033" b="0.001863013982198708" c="0.00060316985185431503" d="-8.2714086676296546e-05" /> - <width sOffset="17.883213477694618" a="3.8543612087901149" b="0.00044281838333801561" c="-0.00061103471251953403" d="-6.2415826137984172e-05" /> - <width sOffset="17.893916242398756" a="3.8543658781010413" b="0.00042971741295420819" c="-0.00028501028443867664" d="1.1887684114247903e-05" /> - <width sOffset="20.109016967222271" a="3.8540484982096759" b="-0.00065794868973755721" c="-0.00023176140372239994" d="1.4408161984095653e-05" /> - <width sOffset="23.081323807419121" a="3.8504236979905233" b="-0.0016538093135660065" c="-0.00030862156888398546" d="1.6663747109409145e-05" /> - <width sOffset="30.163525450833404" a="3.8291507737207517" b="-0.0035178099861343662" c="4.288130048071883e-05" d="1.6000213310562169e-05" /> - <width sOffset="34.753208707216096" a="3.8154553845695593" b="-0.0021130440972852195" c="0.00023266586930101578" d="8.9660631164647391e-06" /> - <width sOffset="35.99158453677277" a="3.813212480147854" b="-0.0014955381369440254" c="8.3929585030419836e-05" d="2.3143512890947038e-06" /> - <width sOffset="40.218033934444541" a="3.8085656130385424" b="-0.00066206694879109777" c="0.00013436516171118758" d="1.2004180776701985e-06" /> - <width sOffset="44.26840607208171" a="3.8081680910253652" b="0.00048547129410378897" c="7.0503002051371442e-05" d="-6.1246510888589698e-06" /> - <width sOffset="50.272542418055679" a="3.812298873086216" b="0.00066971592404298425" c="-3.2671088565123272e-05" d="-4.6271327103361861e-06" /> - <width sOffset="56.197019533832908" a="3.8141576605470462" b="-0.000204631458504159" c="-1.395278363859045e-05" d="-1.778923511432158e-06" /> - <width sOffset="60.327050901666809" a="3.8129492122373518" b="-0.00041091247077684116" c="-3.4887675384803456e-05" d="-2.4836508772573439e-06" /> - <width sOffset="66.650849736466682" a="3.8083274171734631" b="-0.001150124565014229" c="-0.00048720956977987379" d="3.5186508855028106e-05" /> - <width sOffset="70.353612086054724" a="3.7991752143823145" b="-0.0033108985604090881" c="-0.00010793161434701093" d="3.7048088466704829e-05" /> - <width sOffset="70.381559385277953" a="3.7990826002180897" b="-0.003316844545210469" c="-0.00010565013399938096" d="3.7528839212512075e-05" /> - <width sOffset="73.737226749978745" a="3.7881807831564682" b="-0.0027581170869962379" c="-5.3882119989644973e-05" d="5.6316303811374078e-06" /> - <width sOffset="75.048322081904317" a="3.7844846991202186" b="-0.0028703644515796832" c="0.00036876835968695487" d="-9.4226156912564456e-06" /> - <width sOffset="80.436067868889083" a="3.7782507964190755" b="0.00028274235781087717" c="0.00021523280374493756" d="-9.3783576019490044e-06" /> - <width sOffset="90.490576352500213" a="3.793319636919751" b="0.0017665995823188869" c="-6.7795564266479499e-05" d="-9.1701154062397966e-06" /> - <width sOffset="92.006983433655577" a="3.7958106499258868" b="0.0014977284568542582" c="8.8376061008170774e-05" d="3.7624569287014826e-06" /> - <width sOffset="94.197604484369208" a="3.7995552587151957" b="0.0019390914434130545" c="5.6676712640701934e-05" d="-5.9914782431627177e-06" /> - <width sOffset="100.54508483611136" a="3.8126148572085574" b="0.0019344009982122463" c="-5.5494327779773228e-05" d="-6.0142007766014241e-06" /> - <width sOffset="104.41889843980553" a="3.8189259760233183" b="0.0012336965524372874" c="-0.000166490273137317" d="3.5068746486130547e-06" /> - <width sOffset="110.59959331972249" a="3.8210189883308203" b="-0.00042245636331634238" c="-0.00010189454075943144" d="3.5552051311282979e-06" /> - <width sOffset="120.65410180333362" a="3.8100842173345395" b="-0.0013932348531313667" c="3.5802511468515348e-06" d="3.8611862783544375e-06" /> - <width sOffset="120.91360778871295" a="3.8097229731353464" b="-0.0013905965842170576" c="-0.00028666432401921614" d="3.8057765730125912e-05" /> - <width sOffset="127.47134622535657" a="3.7990087261817722" b="-0.00024043502746074418" c="0.00015578753451918819" d="-6.2435873716215687e-06" /> - <width sOffset="127.75516055050176" a="3.798952893314409" b="-0.00015351433307885616" c="0.00011287162255473713" d="-4.8956009854219476e-06" /> - <width sOffset="130.70861028694475" a="3.7993579372751931" b="0.00038509599014610704" c="7.4545701373753616e-05" d="-4.2639868019300761e-06" /> - <width sOffset="140.18114402546379" a="3.8060704573011908" b="0.00064956085523283971" c="5.5075630465632553e-06" d="1.2504121830759646e-06" /> - <width sOffset="140.76311877055591" a="3.8064505971670997" b="0.00065724190400876913" c="9.4362605627971068e-06" d="6.2142237604938208e-07" /> - <width sOffset="144.10659828841156" a="3.8087767850555023" b="0.0007411821642828297" c="0.00010184211251845182" d="-4.9550052386844566e-06" /> - <width sOffset="150.81762725416704" a="3.8168399820176839" b="0.0014386236616878781" c="5.699388714185105e-06" d="-5.9582219532493007e-06" /> - <width sOffset="153.88414426271163" a="3.8211333285682878" b="0.0013054933113198692" c="-5.7408911933356415e-05" d="-5.9283746663690752e-06" /> - <width sOffset="160.58923826630658" a="3.8255186719194629" b="-0.00026395967512604873" c="-5.8498640097022019e-05" d="3.6662618462260566e-07" /> - <width sOffset="160.87213573777817" a="3.8254393249919634" b="-0.00029696988549254974" c="-4.5395341184155196e-05" d="6.1906999308116495e-07" /> - <width sOffset="170.9266442213893" a="3.8184935297830407" b="-0.0010220743815836728" c="-2.5138401894171353e-05" d="8.6119018410769079e-07" /> - <width sOffset="180.98115270500043" a="3.8065511039764575" b="-0.0012664016700684919" c="-2.0565565767622981e-05" d="7.0778923105628033e-06" /> - <width sOffset="183.4809883528506" a="3.8033673603080205" b="-0.0012365297065263878" c="-2.9390068084203014e-07" d="1.1403585538794252e-06" /> - <width sOffset="191.03566118861158" a="3.7945006957470646" b="-0.0010457190229207589" c="2.0644594832312815e-05" d="3.3745250230126481e-07" /> - <width sOffset="197.46081272650181" a="3.7887235627277835" b="-0.00073863700049160664" c="-3.2774034240016958e-05" d="1.6773521464618933e-06" /> - <width sOffset="201.09016967222271" a="3.7856912669454141" b="-0.00091025092405934318" c="-1.2686714370461133e-05" d="1.1543193984074097e-06" /> - <width sOffset="203.8219238478917" a="3.783133542385924" b="-0.00095372263466576303" c="-0.0011896307056524901" d="0.00013751310792596124" /> - <width sOffset="209.58891134156494" a="3.7644434441769157" b="-0.00095460089166701811" c="8.8977530588731411e-05" d="-3.9591058003962105e-06" /> - <width sOffset="211.14467815583384" a="3.7631587615418223" b="-0.00070649229537845712" c="7.9626990861452173e-05" d="1.3668467371645789e-06" /> - <width sOffset="214.55266132568252" a="3.7617299652275573" b="-0.00011613229965672729" c="0.00025429288817852122" d="-3.6668891082799313e-05" /> - <width sOffset="218.10437502057985" a="3.7628824155814167" b="0.00030252086767551496" c="-7.1717869704134025e-06" d="-1.1620835069848536e-06" /> - <width sOffset="221.19918663944497" a="3.7637155242187088" b="0.00022473939261326273" c="-1.7874428246137281e-05" d="-1.2216747344941473e-06" /> - <width sOffset="224.83770369374642" a="3.7642377586262405" b="4.6146022883496152e-05" c="-5.2739492535610934e-05" d="3.239117733298767e-06" /> - <width sOffset="231.2536951230561" a="3.7632183088995985" b="-0.0002305919213663486" c="1.1061591956305447e-05" d="3.0155849230471997e-06" /> - <width sOffset="237.31427572562845" a="3.7628983836019811" b="0.00023578048554935205" c="0.00030287952436641442" d="-2.1594699574421379e-05" /> - <width sOffset="241.30820360666723" a="3.7672956681558363" b="0.0016217374853061666" c="4.9577926867770187e-05" d="-2.1042382871550392e-05" /> - <width sOffset="246.96247995066966" a="3.774246595069533" b="0.00016416405392869984" c="-0.0001533115977313995" d="8.8747923475730496e-06" /> - <width sOffset="251.36271209027839" a="3.772756639259681" b="-0.00066954685547575277" c="-3.7876879246967322e-05" d="9.2848990806316095e-06" /> - <width sOffset="258.1135202890934" a="3.769367045788985" b="8.8487625670839636e-05" c="0.00089315251104967537" d="-7.313539252505716e-05" /> - <width sOffset="261.41722057388949" a="3.7767705201886246" b="0.0035952094467245322" c="0.00015388753871034685" d="-7.2965605663133501e-05" /> - <width sOffset="263.99171566511643" a="3.7858012679130901" b="0.0029367213028436345" c="0.00031661252794215193" d="-3.2212469642539982e-05" /> - <width sOffset="268.68344744483954" a="3.8032221855071491" b="0.0037804272337837097" c="-0.0011211814129571264" d="0.000119392224047182" /> - <width sOffset="271.47172905750068" a="3.8076345694303377" b="0.00031273787530977258" c="-0.00012172807332518906" d="0.00011910649465098633" /> - <width sOffset="273.03640545184675" a="3.8082821433139573" b="0.00080660171629983314" c="-0.00047534667637011007" d="-3.5002943578086347e-05" /> - <width sOffset="273.16306312736822" a="3.8083766089005602" b="0.00068450453701750344" c="-9.8769442695292116e-05" d="1.9988947997677258e-05" /> - <width sOffset="278.66273104009059" a="3.8124788005414603" b="0.0014118842484362186" c="0.00032184116503443031" d="-2.9252644753347978e-05" /> - <width sOffset="281.52623754111181" a="3.8184738849952007" b="0.0025354867298799325" c="7.6819415128818606e-05" d="-2.8510192112807284e-05" /> - <width sOffset="284.92605980724437" a="3.8268616399644841" b="0.002069201352184559" c="6.6239408126222814e-05" d="-3.3656450493204797e-05" /> - <width sOffset="288.42944344489968" a="3.8334766390462365" b="0.0012940582518584092" c="-0.00046061340432641568" d="5.1572183613008451e-05" /> - <width sOffset="291.58074602472294" a="3.8345943251971741" b="-7.2561285500367338e-05" c="3.2073493339524637e-05" d="5.0992129279398272e-05" /> - <width sOffset="294.2171553350725" a="3.8355603746976046" b="0.0011598423773509015" c="0.00018268791516753361" d="-8.5997734581069543e-06" /> - <width sOffset="301.63525450833407" a="3.8507067195871327" b="0.0024505464809813" c="-7.9114796323380502e-06" d="-8.8541073508854258e-06" /> - <width sOffset="305.0495035434476" a="3.8586288751515596" b="0.0020868834068451599" c="-0.0029145174601511599" d="0.00052243111411138046" /> - <width sOffset="308.55938140448609" a="3.8526383515701896" b="0.00093554969750943512" c="-6.081855073079359e-05" d="-8.0027348353133148e-06" /> - <width sOffset="311.6897629919452" a="3.8547255125689688" b="0.00031951582322515258" c="-0.00014003873136841414" d="-5.2671992330365556e-06" /> - <width sOffset="314.49163515071467" a="3.8544055250908666" b="-0.00058927566862426728" c="-0.00021035461544126238" d="8.9678380397162226e-06" /> - <width sOffset="321.74427147555633" a="3.8424880922005098" b="-0.0022253821380097674" c="-1.5234996699991299e-05" d="8.7660495470086642e-06" /> - <width sOffset="330.96336961200501" a="3.8275458425037083" b="-0.00027116178483649887" c="1.0636410907903729e-05" d="-3.5673798502158092e-07" /> - <width sOffset="331.79877995916746" a="3.8273265264121097" b="-0.00025413716288914828" c="6.0778136664164877e-06" d="-2.8871857025828825e-07" /> - <width sOffset="341.85328844277859" a="3.8250922617894121" b="-0.0002194807060113525" c="9.3300079352632224e-06" d="-1.9390382859511014e-06" /> - <width sOffset="346.67807577870394" a="3.8240327218649313" b="-0.00026486422966892197" c="0.0007876764050308389" d="-5.1378742775693791e-05" /> - <width sOffset="351.90779692638972" a="3.8368416475930074" b="0.0037581684081953773" c="-1.3403340680050153e-05" d="-5.03438912432768e-05" /> - <width sOffset="355.05925102015664" a="3.8469765028468004" b="0.0021736927110002102" c="5.5750811015785386e-05" d="-1.9454755812213234e-05" /> - <width sOffset="360.95039281398124" a="3.8577392690376202" b="0.00080500047947101969" c="-0.00025035519186753777" d="-2.6510687964997113e-05" /> - <width sOffset="361.58645251722612" a="3.8581431886704998" b="0.00045434233951859005" c="-0.00010567247009682708" d="-2.087801705826375e-06" /> - <width sOffset="361.96230541000085" a="3.8582989158378291" b="0.00037402292996390526" c="-9.419316746001299e-05" d="4.1176267348308986e-06" /> - <width sOffset="372.01681389361198" a="3.8567225775195375" b="-0.00027131761430620321" c="1.8333211479864364e-05" d="5.6811302398310907e-06" /> - <width sOffset="376.34093444644401" a="3.8563514956806726" b="0.00020591005473212303" c="0.00091343860669163587" d="-0.00011477360615430991" /> - <width sOffset="379.45423294442134" a="3.8623827620914897" b="0.0025561506923763768" c="-0.00020351378575494451" d="-0.00011264375158263577" /> - <width sOffset="379.91795526441348" a="3.863513110322951" b="0.002294734729627176" c="0.0010376473034344395" d="-0.00021696025825413806" /> - <width sOffset="382.07132237722317" a="3.8710996978109282" b="0.0037454782921066561" c="-0.00036436505379226937" d="-0.00021890628879679377" /> - <width sOffset="384.47552794528497" a="3.8749563962494573" b="-0.0018025079800993988" c="-6.2249151486887833e-05" d="2.1555964316768874e-06" /> - <width sOffset="391.42349698835284" a="3.860150598652762" b="-0.0023553387778884323" c="9.6326123972333971e-05" d="-1.6390094463724053e-06" /> - <width sOffset="392.1258308608343" a="3.8585433116892505" b="-0.0022224580152254724" c="9.2380017062068182e-05" d="-1.7059382612610492e-06" /> - <width sOffset="402.18033934444543" a="3.8438025877679101" b="-0.00088216265545741548" c="4.182542843755857e-05" d="-2.2948506891605767e-06" /> - <width sOffset="404.01186766553036" a="3.8423130858841246" b="-0.00075204794431215955" c="2.4451569699256516e-05" d="1.184182872334158e-05" /> - <width sOffset="409.35604769555783" a="3.8407997816700252" b="0.00052391636517816519" c="0.00051320125617960739" d="-3.5947607477762138e-05" /> - <width sOffset="412.23484782805656" a="3.8457035435322791" b="0.002584977719390499" c="0.00020776777376667961" d="-3.401821408067191e-05" /> - <width sOffset="415.5052855128281" a="3.8551898356911467" b="0.002852408602658848" c="-0.0002492977121039942" d="-3.6745878033950649e-05" /> - <width sOffset="418.80948495600074" a="3.8605674120925713" b="1.4047180879714184e-06" c="5.0910003190195233e-06" d="-6.7269599289728508e-07" /> - <width sOffset="422.28935631166769" a="3.8606056027377047" b="1.2398724685201962e-05" c="-1.9953013894284767e-06" d="1.3654979089367351e-07" /> - <width sOffset="432.34386479527882" a="3.8606673494568673" b="1.3687916921574181e-05" c="2.4566929754097223e-06" d="-2.1117975605246936e-06" /> - <width sOffset="433.45071552709777" a="3.860682646031032" b="1.1364694710288858e-05" c="-0.00040816003491136245" d="3.2242442890002505e-05" /> - <width sOffset="441.8973177574162" a="3.8510884816535604" b="1.7253667931572978e-05" c="0.00061994458623064691" d="-0.00022637152675540932" /> - <width sOffset="442.39837327888995" a="3.8512242918767932" b="0.00046801076208821034" c="0.00027971998327570256" d="-0.00022648779066852828" /> - <width sOffset="443.72290963689022" a="3.8518086251952353" b="1.6961132925762142e-05" c="-9.9831913393929424e-06" d="3.2256128767285995e-09" /> - <width sOffset="450.55944213035536" a="3.8514590150430275" b="-0.00011908741324069787" c="-0.00021147910512456347" d="5.5371225038530036e-06" /> - <width sOffset="452.45288176250108" a="3.8505129406648555" b="-0.00086037961101703253" c="-0.00017969872626197924" d="5.9795638513014808e-06" /> - <width sOffset="462.50739024611221" a="3.829773816819781" b="-0.0026604656745379063" c="1.3919061364864252e-06" d="5.948852388660731e-06" /> - <width sOffset="471.25904182659946" a="3.8105844796954687" b="-0.0012692098248118712" c="4.3668346472390995e-05" d="3.7816733815154954e-06" /> - <width sOffset="472.56189872972334" a="3.809013368374397" b="-0.0011361651646505085" c="5.1128351389019535e-05" d="-2.9988705660460493e-06" /> - <width sOffset="480.13945738107952" a="3.8020349641243731" b="-0.00087788900364517712" c="-0.00019388197867847897" d="4.8361263033228809e-06" /> - <width sOffset="482.61640721333447" a="3.798744450343337" b="-0.0017493478989717166" c="-0.00015292984432008425" d="6.6493942749596574e-06" /> - <width sOffset="486.01073935416156" a="3.791304645724229" b="-0.0025577044681605217" c="-8.5950761427214061e-05" d="1.0464810170065216e-05" /> - <width sOffset="492.67091569694566" a="3.7735489207562409" b="-0.0023100063791140629" c="0.00012148982524017748" d="1.0898354733640511e-05" /> - <width sOffset="495.78211091891296" a="3.7678662081866889" b="-0.0012375762100557876" c="2.2107103221423217e-05" d="1.2550423631814898e-06" /> - <width sOffset="502.72542418055679" a="3.7607592092452382" b="-0.00074906785675128977" c="4.7571458847952088e-05" d="1.1822086398105296e-06" /> - <width sOffset="512.77993266416786" a="3.7592384946421564" b="0.00056608696998269458" c="8.5869194742760167e-05" d="9.3814339587845802e-07" /> - <width sOffset="513.13565656714184" a="3.7594507733818627" b="0.00062753455674947325" c="0.0022831058279120901" d="-0.00031921059310298442" /> - <width sOffset="517.01884241510936" a="3.7776234619284459" b="0.0039187267139958884" c="-0.00036909548514488477" d="2.643360375696757e-05" /> - <width sOffset="519.81919393201974" a="3.7862833280563102" b="0.0024734069839621913" c="0.0014305456920498667" d="-0.00022597185918527929" /> - <width sOffset="522.83444114777899" a="3.8005526356840988" b="0.0049368890652558206" c="-0.00060184675637767312" d="-0.00022772147144716271" /> - <width sOffset="523.80189708140438" a="3.8045593429785969" b="0.0031329465652869073" c="-0.0015804654279450378" d="-0.00023518183967149393" /> - <width sOffset="524.18237176128457" a="3.805509606773601" b="0.0018281569475857434" c="-0.00031553306612740032" d="2.2051861086665218e-05" /> - <width sOffset="531.7221078827306" a="3.8108079054705852" b="0.00083087234491541315" c="0.00018658194290572586" d="-3.0758022442477489e-05" /> - <width sOffset="532.88894963139012" a="3.8119825724018792" b="0.0011406625886044297" c="8.0806732134603511e-05" d="-3.1754414126606876e-05" /> - <width sOffset="535.90669242014303" a="3.8152880157038807" b="0.0007608298705461203" c="-5.6618701192436626e-05" d="4.3912616909760771e-06" /> - <width sOffset="540.94208102127891" a="3.8182441602014574" b="0.00052465868866281027" c="7.8614173192949745e-05" d="2.9920786956445599e-06" /> - <width sOffset="542.15422933436321" a="3.8190009613617217" b="0.00072843157890342593" c="-1.6366291165973224e-05" d="-1.1573960117560874e-06" /> - <width sOffset="542.94345811500136" a="3.8195650972874535" b="0.00070043531920188835" c="-1.7031412690583743e-05" d="4.5112391898964289e-08" /> - <width sOffset="552.99796659861249" a="3.8249317252673638" b="0.00037163201259493019" c="-1.6032665709847638e-05" d="-6.5158949375977075e-08" /> - <width sOffset="560.15355140075894" a="3.8267461856483687" b="0.00013217693184366323" c="1.1536715032646298e-05" d="-7.1693582799615216e-07" /> - <width sOffset="563.05247508222362" a="3.827208842367007" b="0.00018099017797385577" c="6.3794849182450248e-06" d="-3.2573288171404344e-07" /> - <width sOffset="563.99001814484848" a="3.8273838675044365" b="0.00019209331672787993" c="-0.00067750616209868997" d="8.5023767904510259e-05" /> - <width sOffset="569.45115608711546" a="3.8220750402160206" b="0.00039943770897497437" c="0.00012314640263653482" d="-8.8065874641422786e-06" /> - <width sOffset="573.10698356583475" a="3.824750882974735" b="0.00094673962022565072" c="2.6786699164455563e-05" d="-8.322633535739541e-06" /> - <width sOffset="578.17401091251952" a="3.8291530498935851" b="0.00057715248571183549" c="-0.0023824480043259802" d="0.00030683432675909214" /> - <width sOffset="583.16149204944588" a="3.8108351892313497" b="-0.00029019421460724779" c="0.0022065392134882236" d="0.00030704055919733754" /> - <width sOffset="583.35183430327083" a="3.8108620137017395" b="0.00058317347777377029" c="0.0030908507590283684" d="-0.000936823494625652" /> - <width sOffset="585.55541069525361" a="3.8171314520266018" b="0.00055808600166548205" c="-0.0010594261874633719" d="0.00020482059987630906" /> - <width sOffset="588.97809964833425" a="3.8148431516808872" b="0.00050421027203309304" c="0.00044304354826841326" d="-2.9118421110037972e-05" /> - <width sOffset="592.6857526265967" a="3.8213188645062699" b="0.002588667956597649" c="0.00014975302431376894" d="-2.9768234539169611e-05" /> - <width sOffset="593.21600053305701" a="3.8227291672294639" b="0.002722371247541407" c="0.00011339187570412801" d="-2.8433495454043261e-05" /> - <width sOffset="599.76263441456422" a="3.8374335078413324" b="0.00055119777884922536" c="-0.0001212110780509172" d="8.7180495834418719e-06" /> - <width sOffset="603.27050901666814" a="3.8382518308720854" b="2.2642873068682689e-05" c="-3.2101332543621291e-05" d="9.3234837296787363e-06" /> - <width sOffset="608.03631127856511" a="3.8386398498862535" b="0.00035195492182483562" c="7.7217109426545817e-05" d="-8.3640133134762318e-06" /> - <width sOffset="613.32501750027927" a="3.8414237646451941" b="0.00046687740323737717" c="-5.7487749588568327e-05" d="-9.1833370924631908e-06" /> - <width sOffset="613.48161264956013" a="3.8414954304005962" b="0.00044819721528341436" c="-0.00025360108213962204" d="7.9634445634743832e-07" /> - <width sOffset="616.97810533143718" a="3.839996199253159" b="-0.0012960244058915851" c="-0.00093575317010246542" d="5.0341701591413531e-05" /> - <width sOffset="623.3795259838904" a="3.8065598991670759" b="-0.0070875888533416843" c="3.1858289248316947e-05" d="5.0470079559474985e-05" /> - <width sOffset="627.72277009826962" a="3.7805127493942576" b="-0.0039546843659545323" c="0.00036355310605880168" d="8.4240830690990231e-07" /> - <width sOffset="630.78157119339448" a="3.7718417642558908" b="-0.001706965704158135" c="0.00014554322409536435" d="-8.2460799819036637e-06" /> - <width sOffset="633.43403446750153" a="3.7681841939232745" b="-0.0011089169973184051" c="7.9265289680014603e-05" d="-8.0606773877112383e-06" /> - <width sOffset="642.57229832878761" a="3.7585186537399329" b="-0.0016796126441663325" c="-0.0002116078465668682" d="1.4078862891491512e-05" /> - <width sOffset="643.48854295111266" a="3.7568129013471694" b="-0.0020319239531610546" c="-0.00017382127038742683" d="1.4386921048016695e-05" /> - <width sOffset="648.45097543428403" a="3.7442072720455393" b="-0.0026942110248151939" c="0.00046885903202475683" d="-4.9377456871341078e-06" /> - <width sOffset="653.54305143472379" a="3.7419933535847667" b="0.0016966246750791715" c="0.00039178215536344669" d="-4.6722691158682859e-06" /> - <width sOffset="655.9429289949702" a="3.7482569004734385" b="0.0034963545086969475" c="0.00018985316773218074" d="-5.290169354863256e-05" /> - <width sOffset="659.64195100856693" a="3.7611102036293467" b="0.0027293724608842647" c="-0.0017313994900102975" d="0.0001347974422502807" /> - <width sOffset="663.59755991833492" a="3.7531585890434833" b="-0.0046406432563966451" c="-0.00014579781823705756" d="0.00013951145871115431" /> - <width sOffset="663.76692149430403" a="3.7523691381457827" b="-0.0046780233876846976" c="-1.6345102883238787e-05" d="0.00021241021270009913" /> - <width sOffset="664.93419349648593" a="3.7472241666819484" b="-0.0038479397581347801" c="0.00012619018326167836" d="3.7788884217470732e-05" /> - <width sOffset="668.6481381718753" a="3.7366095651026709" b="-0.0013469031476382974" c="0.00037581517682407718" d="-1.9636582182111448e-05" /> - <width sOffset="673.65206840194605" a="3.736819545806827" b="0.00093914283862678478" c="8.293845892556061e-05" d="-1.9913760753061909e-05" /> - <width sOffset="679.02404560128343" a="3.7411709132658668" b="0.00010620762994188087" c="-0.0012262271900066806" d="0.00023563476261855338" /> - <width sOffset="683.69658702525282" a="3.7389334201945417" b="0.0040806021544291292" c="0.00021327725964532518" d="-2.6238549097251377e-05" /> - <width sOffset="683.70657688555718" a="3.7389742060983568" b="0.004084855519114858" c="0.00021264295245985247" d="-2.6379432526353922e-05" /> - <width sOffset="688.43069968782743" a="3.7602360101983994" b="0.0043278023626322285" c="-0.00019566471697074722" d="2.0221055435298826e-05" /> - <width sOffset="693.76108536916831" a="3.7808079676388786" b="0.0039654887938572452" c="0.00013133082233482703" d="2.0074726966960043e-05" /> - <width sOffset="693.84281405995671" a="3.7811329500399857" b="0.0039873580584032023" c="0.0028003293176238012" d="-0.00073048103327062253" /> - <width sOffset="696.46614439081065" a="3.7976769229884884" b="0.0035985266809469194" c="-0.00017582151632771552" d="-2.1351130282828568e-06" /> - <width sOffset="701.23203378952428" a="3.810602417563218" b="0.0017771459178330948" c="-0.0001026027851235793" d="9.1033643371322621e-06" /> - <width sOffset="703.81559385277944" a="3.8146659143011901" b="0.001429273935434518" c="-3.5757413647646399e-05" d="8.792565098488531e-06" /> - <width sOffset="704.04907403650566" a="3.8149977841076392" b="0.0014140145676020152" c="-3.6948091437681062e-05" d="1.09276257765057e-06" /> - <width sOffset="713.87010233639057" a="3.8263562561284843" b="0.0010044774294516187" c="-2.876989105520234e-06" d="-4.368012361430459e-07" /> - <width sOffset="714.92294853628528" a="3.8274101174982" b="0.00099696681235173184" c="-8.2376278741298203e-05" d="1.1468169934341208e-06" /> - <width sOffset="723.9246108200017" a="3.8305460253691885" b="-0.00020730058947293802" c="-5.0887354927742174e-05" d="1.1933286247663348e-06" /> - <width sOffset="733.97911930361283" a="3.8245303064404377" b="-0.00086868325691115498" c="-1.519762113397402e-05" d="2.1367777725736927e-06" /> - <width sOffset="735.53340759317621" a="3.8231514309494621" b="-0.00090044006531815862" c="-3.5245753584822642e-05" d="3.2267020978596188e-06" /> - <width sOffset="744.03362778722396" a="3.8149326069199514" b="-0.00080020948236088417" c="5.0111516675646286e-05" d="2.851238530434132e-06" /> - <width sOffset="749.41028845679534" a="3.8125219709487315" b="-1.4069325035929612e-05" c="7.7187831687618709e-05" d="-1.7734193192172668e-06" /> - <width sOffset="754.08813627083521" a="3.813963670461713" b="0.00059165726561666429" c="5.6360665557767348e-05" d="-1.4004076445584035e-06" /> - <width sOffset="758.33812055869487" a="3.8173887095630974" b="0.00099483712360914629" c="1.9809043996607481e-05" d="-4.5044676707332651e-06" /> - <width sOffset="758.87052609488387" a="3.817923301556494" b="0.0010120995624744427" c="4.9864277531440079e-05" d="-1.6946572897075029e-06" /> - <width sOffset="764.14264475444634" a="3.8243968651623295" b="0.0013965701448595456" c="2.6367019806450449e-05" d="-1.5821029768399414e-06" /> - <width sOffset="773.45223250428796" a="3.8384070300151487" b="0.0014761471988734686" c="-6.2929858233107499e-05" d="1.283938725078825e-05" /> - <width sOffset="774.19715323805747" a="3.8394770297675249" b="0.0014037656802553761" c="-2.9466570694681337e-05" d="1.076426100719157e-05" /> - <width sOffset="776.37783365251641" a="3.842509694428931" b="0.0014288153700443649" c="0.00023951046074433349" d="4.4423680214430143e-06" /> - <width sOffset="776.92279776503381" a="3.843360197737284" b="0.0016938225431701735" c="0.00012125816411380505" d="-1.4267675342708166e-06" /> - <width sOffset="784.2516617216686" a="3.8617253944881611" b="0.0032412870498264193" c="7.9212781209720218e-05" d="1.2756143411329617e-06" /> - <width sOffset="785.92669074360083" a="3.8673828883872705" b="0.0035173915232166526" c="3.1072662018196695e-05" d="-1.4973240994459191e-05" /> - <width sOffset="794.20055234390725" a="3.8901315603980517" b="0.00095651347978317563" c="-0.0001733916874647621" d="3.6244405344166304e-07" /> - <width sOffset="794.30617020527973" a="3.8902306515259113" b="0.00091989909063304107" c="-0.00017221395218396264" d="1.2883079693365207e-07" /> - <width sOffset="800.89934139225943" a="3.8888465028305532" b="-0.0013341722564238611" c="-0.0016098874586665589" d="0.00018967655329759649" /> - <width sOffset="804.36067868889086" a="3.8728064985758737" b="-0.0056614369173251982" c="0.00036572931315426133" d="0.00018941085387040626" /> - <width sOffset="806.59478344159857" a="3.8640957971730847" b="-0.0011911056986074367" c="0.0041641288037769751" d="-0.0010506352572652886" /> - <width sOffset="808.9236812927486" a="3.8706361015063058" b="0.001109358705261078" c="-0.0032262170181332332" d="-0.0010587689029457658" /> - <width sOffset="809.18140126542494" a="3.8706895977690836" b="-0.00076453138952799237" c="-6.3022168975040592e-05" d="9.0915603314130384e-06" /> - <width sOffset="814.41518717250199" a="3.8662652941696436" b="-0.000677098363053313" c="7.9710796646383282e-05" d="9.3383260350534687e-06" /> - <width sOffset="816.30584375646163" a="3.8653331777756019" b="-0.00027554503268076552" c="3.6759784492801847e-05" d="-2.5854305460413694e-06" /> - <width sOffset="824.46969565611312" a="3.8641268983938328" b="-0.0001922871911163174" c="-2.8302278984124052e-05" d="-2.6278038442346294e-06" /> - <width sOffset="828.7501469619915" a="3.8625791683919219" b="-0.00057902218764292138" c="-0.0018726657832888395" d="0.00023031490426287106" /> - <width sOffset="830.21084255122742" a="3.8584556106058701" b="-0.0045755900110645963" c="-0.00089313031836444419" d="0.00023377174477497086" /> - <width sOffset="833.78393390788438" a="3.8413681351127744" b="-0.0020043835900396319" c="4.6102651440552015e-05" d="3.2909355202732077e-06" /> - <width sOffset="834.52420413972425" a="3.8399109488891714" b="-0.0019307164509366993" c="4.6393615225522749e-05" d="2.5256363371917996e-06" /> - <width sOffset="841.8497934417212" a="3.8292498760903149" b="-0.00084438610343429859" c="0.0014835541515714977" d="-0.00016463799116734276" /> - <width sOffset="844.57871262333538" a="3.8346478260680925" b="0.0035744353477701286" c="0.00012820767426001921" d="-0.00016458076147610073" /> - <width sOffset="847.96982393621192" a="3.8418253946350696" b="-0.0012338881803605232" c="-0.001655796286053558" d="0.00010100928832390073" /> - <width sOffset="854.63322110694651" a="3.7899693918204251" b="-0.0098456463851544704" c="0.00036030006711677181" d="0.0001010490661083323" /> - <width sOffset="859.14533849002737" a="3.7621627839085852" b="-0.00042237855916098011" c="0.0012930190912758682" d="-6.1785760920436475e-05" /> - <width sOffset="864.68772959055764" a="3.7890217533247341" b="0.0082166330665938894" c="0.00026626718540438216" d="-6.1974498392962317e-05" /> - <width sOffset="864.95856522969166" a="3.7912654104031285" b="0.0083472245035777753" c="0.0012201760945654077" d="-0.00023240613443791016" /> - <width sOffset="869.02793562311717" a="3.8297778487504655" b="0.0067321412887115153" c="-0.0013794652082981232" d="-3.2039262787417365e-05" /> - <width sOffset="870.25991513979966" a="3.8359180840185916" b="0.0031873104926226884" c="-0.00048092256601349432" d="-6.8702153959010634e-06" /> - <width sOffset="874.74223807416877" a="3.8399236188737857" b="-0.0015380830059535527" c="-0.00057502139846648116" d="-6.3235315864121304e-06" /> - <width sOffset="879.20564471875628" a="3.8210406649959676" b="-0.0070491238347935832" c="-0.00035638301050269625" d="9.8625563608087282e-05" /> - <width sOffset="882.79139894568857" a="3.7957290611954191" b="-0.0058006535923157054" c="0.00034933384794505603" d="6.5342379720144229e-05" /> - <width sOffset="883.70737576682666" a="3.7907591095112396" b="-0.0049962207538564955" c="0.0019683209835642279" d="-0.00017520563056107493" /> - <width sOffset="884.7967465577799" a="3.7874257319311297" b="-0.0013315226415979058" c="0.0013970547415765114" d="-0.00017841704618981925" /> - <width sOffset="887.65450515088139" a="3.790865984719229" b="0.0022820872150553359" c="0.0014846046737983637" d="-0.00020855288909176484" /> - <width sOffset="892.11973554624444" a="3.8120892369074681" b="0.0030657317976455073" c="-0.00059348114661758556" d="3.5614158347006895e-05" /> - <width sOffset="894.85125504139103" a="3.8167610934324765" b="0.00062069409514356379" c="-0.00028342399190569727" d="3.6003292806843802e-05" /> - <width sOffset="897.44924788352068" a="3.8170919925661098" b="-0.0001229530190771334" c="-0.00050997981147028217" d="3.5380218387525393e-05" /> - <width sOffset="902.13002309821911" a="3.8089713837751527" b="-0.0025716494351008638" c="-0.000110152739675783" d="4.4805285201644828e-05" /> - <width sOffset="904.90576352500216" a="3.8019426760657513" b="-0.0021475217243185673" c="0.00026152822450637103" d="4.4346281673115305e-05" /> - <width sOffset="905.34961175880062" a="3.8010449013091199" b="-0.0018891552238619802" c="9.6261797603184663e-07" d="1.0300308775339793e-05" /> - <width sOffset="910.80420968303611" a="3.7924405830888288" b="-0.00095926974507556939" c="0.00034237499591347403" d="-1.990818911206251e-05" /> - <width sOffset="914.96027200861329" a="3.7929384412511835" b="0.00085498016335461974" c="9.2608932704673659e-05" d="-2.0037790613405315e-05" /> - <width sOffset="918.14621054858662" a="3.7959543744823376" b="0.00083490988887397876" c="-0.00032467296243979054" d="8.0204184805781877e-05" /> - <width sOffset="923.85732453481774" a="3.8050731462117469" b="0.0049744383856718376" c="0.0090178029723448974" d="-0.0072415050303306751" /> - <width sOffset="924.33032280130408" a="3.8086772609202235" b="0.0086448803217906451" c="-0.0064597716534444925" d="0.00014088056066528017" /> - <roadMark sOffset="0" color="standard" width="0.15931520942172728" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15931500000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59188484066112" max="100" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.6706074126670978" b="-3.2732024430579709e-09" c="-0.099954433264855425" d="0.16663841540001986" /> - <width sOffset="0.15400343137418268" a="3.6688454353531861" b="-0.018930136354096398" c="-0.034212239147192784" d="0.097442402900169117" /> - <width sOffset="0.54648170772187932" a="3.6620368213281802" b="-0.00075540904723592922" c="0.0035438994307187425" d="-0.0012734137552340517" /> - <width sOffset="1.9026179974844735" a="3.6643539960263616" b="0.0018307849590949046" c="-8.6108258269083633e-06" d="-0.00019697945466636525" /> - <width sOffset="2.5588066817271695" a="3.6654959733409234" b="0.0015650359443132955" c="-0.00023814186204795836" d="7.4459959464822496e-06" /> - <width sOffset="10.054508483611135" a="3.6669827675602527" b="-0.00074997279240680143" c="-7.2478921218085328e-05" d="7.4215146858911971e-06" /> - <width sOffset="15.362263730446637" a="3.6620699502652578" b="-0.00089213088894223892" c="0.00017196057538107582" d="1.9996524872563648e-05" /> - <width sOffset="17.883213477694618" a="3.6612341413449672" b="0.00035612205157645226" c="8.7925480896541998e-05" d="-2.971660304315581e-07" /> - <width sOffset="20.109016967222271" a="3.6624591226976695" b="0.0007431150750800467" c="7.4600524373236805e-05" d="-3.0962976873156859e-06" /> - <width sOffset="30.163525450833404" a="3.6743251743165386" b="0.0013042149108407615" c="-1.861481810101747e-05" d="-3.6557452322301102e-06" /> - <width sOffset="34.753208707216096" a="3.6795655361201063" b="0.00090231574294244877" c="-3.8427791578526898e-05" d="3.3784049630264867e-06" /> - <width sOffset="36.323747665408696" a="3.6809009599746596" b="0.00080661050167937093" c="-4.9272179850913139e-05" d="2.2653367622826467e-06" /> - <width sOffset="40.218033934444541" a="3.683428684393169" b="0.00052591521465132434" c="-1.6740516430596399e-05" d="2.3012797311491669e-06" /> - <width sOffset="50.272542418055679" a="3.6893632690047022" b="0.00088721067367624655" c="6.0958345892161337e-05" d="1.8314347893460596e-06" /> - <width sOffset="56.197019533832908" a="3.6971399705844985" b="0.0018023502707780845" c="-7.4491041008709316e-06" d="-1.0167744095513979e-06" /> - <width sOffset="60.327050901666809" a="3.704385044882557" b="0.0016887903549641957" c="-1.5268716661613077e-05" d="-2.0856895458449375e-07" /> - <width sOffset="69.736282119914549" a="3.7187497239591805" b="0.0013460604827246268" c="-5.4130119441678999e-05" d="1.7520805707395438e-06" /> - <width sOffset="70.353612086054724" a="3.7195604708421146" b="0.0012812313273153971" c="-3.9301391410660036e-05" d="-1.0969353349234905e-07" /> - <width sOffset="75.048322081904317" a="3.7246979155280115" b="0.00090496102130223919" c="-0.00044134599616249749" d="1.4944552539076485e-05" /> - <width sOffset="80.436067868889083" a="3.719099554901736" b="-0.0025493363858142787" c="-0.00020202274452214622" d="1.4797103102164641e-05" /> - <width sOffset="90.490576352500213" a="3.688084511554298" b="-0.0021241582990707475" c="0.00024448528380218674" d="1.4427091896821191e-05" /> - <width sOffset="91.587407503440247" a="3.686067830772676" b="-0.0015357711044564682" c="0.00028802916076283607" d="1.1284287803802763e-05" /> - <width sOffset="92.006983433655577" a="3.6854749974778054" b="-0.0012881113061737827" c="0.00010434449832501754" d="-1.6482845340717845e-06" /> - <width sOffset="100.54508483611136" a="3.6810576742586893" b="0.00013322075794052445" c="6.2765286316402105e-05" d="-1.6105157330554731e-06" /> - <width sOffset="110.59959331972249" a="3.6871052878507533" b="0.00090693268391545492" c="1.3695059529535852e-05" d="-1.5658688073414285e-06" /> - <width sOffset="120.65410180333362" a="3.6960169122218671" b="0.00070743108069626424" c="-3.2519790073462821e-05" d="-1.7145322122071214e-06" /> - <width sOffset="125.69019815140295" a="3.6985358359811986" b="0.00024943222034709773" c="1.0328966190466338e-08" d="-1.3236614732233268e-06" /> - <width sOffset="127.75516055050176" a="3.6990392931514027" b="0.00023254232381922433" c="2.9410248836214947e-05" d="-2.6716478655977142e-06" /> - <width sOffset="130.70861028694475" a="3.6999138084101402" b="0.000336352433420216" c="1.2160649785404281e-05" d="-1.2851385910521907e-06" /> - <width sOffset="140.76311877055591" a="3.7032187564499193" b="0.00019113505650800687" c="-2.8307091342010187e-05" d="-7.052826414970353e-07" /> - <width sOffset="144.10659828841156" a="3.7035150108817785" b="-2.1806061471626916e-05" c="-0.00012155409853726302" d="4.8711449732256422e-06" /> - <width sOffset="150.81762725416704" a="3.6993664343095833" b="-0.00099515365037461606" c="-2.3589795698699466e-05" d="4.6051421975592652e-06" /> - <width sOffset="159.5146820034941" a="3.6919566467789249" b="-0.00036049538533088326" c="0.00015099484043137044" d="8.8365662356111316e-06" /> - <width sOffset="160.58923826630658" a="3.6917545876429809" b="-5.3804978434415196e-06" c="6.1319803020123528e-05" d="2.5415654972394317e-06" /> - <width sOffset="160.87213573777817" a="3.6917580305401057" b="2.9924148532717291e-05" c="5.5076750723409103e-05" d="-9.3928868856851146e-07" /> - <width sOffset="170.9266442213893" a="3.6966720525386307" b="0.00085259653226149948" c="2.8047676171779925e-05" d="-7.3001686509675316e-07" /> - <width sOffset="180.98115270500043" a="3.7073378995957622" b="0.0011952086349993857" c="4.231254361207172e-07" d="-5.474183544622618e-07" /> - <width sOffset="181.79905476995685" a="3.7083154467437414" b="0.0011948021761669526" c="-0.00069959442522726095" d="2.9484392748536361e-05" /> - <width sOffset="191.03566118861158" a="3.6828998322452096" b="-0.0041825806492751024" c="0.00011183746126944019" d="2.961707387066532e-05" /> - <width sOffset="197.36461847672095" a="3.668416434383845" b="0.00079204629093510112" c="6.0202325398664032e-05" d="-5.1414574223009364e-07" /> - <width sOffset="197.46081272650181" a="3.6684931812971495" b="0.00080361425328064615" c="0.00011997713129462175" d="-1.8540444577222637e-06" /> - <width sOffset="201.09016967222271" a="3.6729015150529492" b="0.0016012282125506417" c="9.8565564414785189e-05" d="-2.2742808350672286e-06" /> - <width sOffset="211.14467815583384" a="3.6966537059844242" b="0.0028935422413958567" c="3.1949254402482548e-05" d="-2.3829425020261656e-06" /> - <width sOffset="213.61704231760163" a="3.7039668763395044" b="0.0030078248120026861" c="0.00094444137159516183" d="-0.00021224616568646417" /> - <width sOffset="214.55266132568252" a="3.7074339673639241" b="0.0042177094004647066" c="0.00018800540528229596" d="-0.00017421042786683162" /> - <width sOffset="217.91748837846242" a="3.7171175828374774" b="-0.00043434257515502853" c="0.00010436460132279453" d="3.540599616510571e-05" /> - <width sOffset="218.10437502057985" a="3.7170402862207408" b="-0.00039162404034007186" c="-5.0322082029880273e-06" d="-1.008114719864201e-07" /> - <width sOffset="221.19918663944497" a="3.7157770975897551" b="-0.00042566818735337525" c="-5.5417488004107913e-06" d="1.9228110203639383e-09" /> - <width sOffset="231.2536951230561" a="3.710938934822364" b="-0.00053652415899303654" c="-4.8319368446873805e-06" d="-4.5155025363618103e-08" /> - <width sOffset="241.30820360666723" a="3.7050100749849348" b="-0.00064738424900429047" c="-5.1767697254836748e-06" d="-2.2287498193856192e-08" /> - <width sOffset="251.36271209027839" a="3.697954954704449" b="-0.00075824333883177972" c="-6.0809801832011022e-06" d="-2.2899164820270947e-07" /> - <width sOffset="253.51908226941208" a="3.6962893291399581" b="-0.00078766341450406212" c="-0.00012287625692143894" d="6.1181322016872793e-06" /> - <width sOffset="261.41722057388949" a="3.6854175070304929" b="-0.0015836926924794599" c="2.0191721412302638e-05" d="6.1765780203616913e-06" /> - <width sOffset="268.68344744483954" a="3.6773457188515022" b="-0.0003119235551622291" c="0.0011392301112812088" d="-0.00014542811566896268" /> - <width sOffset="269.6675923563987" a="3.6780035122949091" b="0.0015078521110407079" c="0.0005701394623480857" d="-0.0001526078405069525" /> - <width sOffset="271.47172905750068" a="3.6816834766234714" b="0.0020748971598000794" c="-0.00025509259038909027" d="-0.00015347956787582545" /> - <width sOffset="273.03640545184675" a="3.6837175704121932" b="0.00014937079035556576" c="-6.2822196703669387e-05" d="6.2987142054801801e-07" /> - <width sOffset="281.52623754111181" a="3.680843085508644" b="-0.00078113081516095642" c="-4.5734006773701859e-05" d="6.9606345879576797e-07" /> - <width sOffset="288.08513425922399" a="3.673948692038671" b="-0.0012912279437836504" c="-7.6733820935636702e-05" d="2.8407987498481256e-06" /> - <width sOffset="291.58074602472294" a="3.6686187684360583" b="-0.0017235535080737999" c="-4.6537274961098607e-05" d="2.7736876367039105e-06" /> - <width sOffset="301.63525450833407" a="3.6494039779462564" b="-0.0018181699751063543" c="3.5478435504070857e-05" d="3.2556993612023093e-06" /> - <width sOffset="305.0495035434476" a="3.6437394459931336" b="-0.0014620495421038965" c="0.0028847413387919573" d="-0.00052802952210105429" /> - <width sOffset="308.55938140448609" a="3.6513141710910451" b="-0.00072664136964646609" c="-2.7906755408630156e-05" d="2.4043268456239104e-06" /> - <width sOffset="311.6897629919452" a="3.6488397939293655" b="-0.0008306768762510121" c="-1.0663892770990152e-05" d="1.3763691290198233e-06" /> - <width sOffset="321.74427147555633" a="3.6408086989892432" b="-0.00062769284226743549" c="3.0850967004423399e-05" d="1.5139058029271264e-06" /> - <width sOffset="323.43996911548942" a="3.6398404117861256" b="-0.0005100058073609008" c="2.4190271198491304e-05" d="-5.8894259828409139e-07" /> - <width sOffset="331.79877995916746" a="3.6369235783297231" b="-0.00022904976600289983" c="1.1658427312054899e-05" d="-6.5352583974121979e-07" /> - <width sOffset="341.85328844277859" a="3.6351349115400664" b="-0.00019281119266580164" c="-4.3505173199166895e-06" d="-6.946569372495438e-07" /> - <width sOffset="351.90779692638972" a="3.6320504039304407" b="-0.0004909709740615702" c="-2.3483296984943611e-05" d="-5.3528682051130342e-07" /> - <width sOffset="357.24843885391402" a="3.6286769631600562" b="-0.00078760581968458586" c="-0.0032847342354130728" d="0.00055581412448224674" /> - <width sOffset="360.95039281398124" a="3.608944043492671" b="-0.0022560731250717177" c="0.0028503344896621589" d="0.00056287005765430953" /> - <width sOffset="361.00252337870353" a="3.6088342589252722" b="-0.0019543050719926704" c="0.00011990073102624334" d="3.4830609256112776e-06" /> - <width sOffset="361.96230541000085" a="3.6070720818652999" b="-0.0017145223432782439" c="0.00011609624731487555" d="-2.7223675358435161e-06" /> - <width sOffset="372.01681389361198" a="3.5988028084275774" b="-0.00020557899040816985" c="2.8405646689619521e-05" d="-2.6657077547041111e-06" /> - <width sOffset="379.45423294442134" a="3.5977484170131704" b="-0.00022541208459993895" c="1.3906595326222766e-05" d="-4.7955623632902607e-06" /> - <width sOffset="379.59302337726348" a="3.5977173870312367" b="-0.00022182900748620848" c="-1.5676689262261853e-05" d="6.3208649129002983e-06" /> - <width sOffset="382.07132237722317" a="3.5971675565869612" b="-0.0001830644432375681" c="2.9300539149542429e-05" d="5.6592440925674445e-06" /> - <width sOffset="392.1258308608343" a="3.6040413096118828" b="0.0021224728760810352" c="0.00020049600372121394" d="5.7261729037948786e-06" /> - <width sOffset="392.79427880559433" a="3.6055513686804459" b="0.0023981909106583548" c="0.0020792488411050481" d="-0.0002965872165316431" /> - <width sOffset="397.47092839672501" a="3.631906322984781" b="0.0023860046254258168" c="-0.00040932726215830377" d="1.6252341899275262e-05" /> - <width sOffset="402.18033934444543" a="3.6357622367300451" b="-0.0003880157496081232" c="-0.000179320005401038" d="1.6231948126448356e-05" /> - <width sOffset="411.70805472896683" a="3.6298261621291168" b="0.00061544451953330108" c="-9.2482973469837346e-05" d="-1.9257892901702432e-06" /> - <width sOffset="412.23484782805656" a="3.63012442748248" b="0.00051640245217152202" c="-8.993478371518232e-05" d="-2.8698968989700952e-06" /> - <width sOffset="415.5052855128281" a="3.6307509799299966" b="-0.00016393696768180491" c="5.2098973525528114e-06" d="-1.4223294578902065e-07" /> - <width sOffset="422.28935631166769" a="3.6298341892196868" b="-0.00011288656638953577" c="1.4682635884051465e-06" d="1.8728464579956605e-07" /> - <width sOffset="432.34386479527882" a="3.6290379656083878" b="-2.6561649749136359e-05" c="4.3053675645672681e-06" d="-9.9722735974736734e-08" /> - <width sOffset="432.68690507162933" a="3.629029356508279" b="-2.3643025896138184e-05" c="7.2813079341101704e-05" d="-2.263794579587584e-06" /> - <width sOffset="442.39837327888995" a="3.6335934988568384" b="0.00075008762618207036" c="6.9099587382502728e-06" d="-2.2127073729409927e-06" /> - <width sOffset="448.07210946929462" a="3.6376675990079539" b="0.00061480852866081456" c="4.2738839019358008e-05" d="-1.9251125143707161e-06" /> - <width sOffset="450.55944213035536" a="3.6394316250491574" b="0.00079168895346092352" c="0.00022993572312700577" d="-7.4590094051926621e-06" /> - <width sOffset="452.45288176250108" a="3.6417043527677153" b="0.0015822035863977005" c="0.00018650936233721396" d="-7.9355183985594319e-06" /> - <width sOffset="462.50739024611221" a="3.6684014564455039" b="0.0029260440807035368" c="-5.212428704194544e-05" d="-7.9559369130858772e-06" /> - <width sOffset="467.50493635106426" a="3.6807296396242553" b="0.0018089473041658453" c="-0.00013679986157433841" d="-5.4441117938556303e-06" /> - <width sOffset="471.25904182659946" a="3.6853046202466508" b="0.0005516484537801522" c="-8.4202761364884595e-05" d="-3.2769327869696317e-06" /> - <width sOffset="472.56189872972334" a="3.6858731634446018" b="0.00031555300383679052" c="-8.3811703183243148e-05" d="3.0308235616921649e-06" /> - <width sOffset="482.61640721333447" a="3.6836537613688547" b="-0.00045063153791266624" c="9.0073332747057135e-06" d="3.144310761623778e-06" /> - <width sOffset="486.01073935416156" a="3.6823509131323577" b="-0.00028080233481244559" c="4.1757513732063969e-05" d="-6.7110513347466774e-07" /> - <width sOffset="492.67091569694566" a="3.6821347319540045" b="0.00018611593368525903" c="2.7908930598549918e-05" d="-6.6972522266070585e-07" /> - <width sOffset="502.72542418055679" a="3.686146700900919" b="0.0005442232138379617" c="7.448295936153894e-06" d="-6.9860972852103559e-07" /> - <width sOffset="505.65466487163093" a="3.6877872124213935" b="0.00056987575722254613" c="-4.3933542116467183e-05" d="8.4475246237152948e-07" /> - <width sOffset="512.77993266416786" a="3.689922834129657" b="7.2462083099843438e-05" c="-2.748139787045647e-05" d="9.770482017233318e-07" /> - <width sOffset="518.76926257641321" a="3.6895809372386172" b="-0.00015158200083422346" c="-5.9233874206955693e-05" d="-1.1997591079541192e-06" /> - <width sOffset="519.81919393201974" a="3.6893551011364067" b="-0.00027993268893685851" c="-0.0016405838983838588" d="0.00025120570383520096" /> - <width sOffset="522.83444114777899" a="3.6804818079265678" b="-0.0033217921737468052" c="0.00062184219260671232" d="0.00025321112653143825" /> - <width sOffset="524.18237176128457" a="3.6777542319671328" b="-0.00026520116269452469" c="0.00011240071272779237" d="-4.022574215308367e-06" /> - <width sOffset="532.88894963139012" a="3.6813108270215662" b="0.00077726229365551345" c="7.6701331497122382e-06" d="-4.0917649750077453e-06" /> - <width sOffset="542.15422933436321" a="3.6859163102366233" b="-0.00013438354920609501" c="-2.0291397573838845e-07" d="5.7709730012232451e-08" /> - <width sOffset="542.94345811500136" a="3.6858101528503684" b="-0.00013459600123672671" c="-6.7326955003111814e-08" d="2.1860898931222381e-08" /> - <width sOffset="552.99796659861249" a="3.6844722702531145" b="-0.00012931991931283216" c="-9.6939331003637293e-07" d="1.1879367812836703e-07" /> - <width sOffset="560.15355140075894" a="3.6835407993384477" b="-0.00012494550929874668" c="-2.7387410503109262e-05" d="7.7057055679053659e-07" /> - <width sOffset="563.05247508222362" a="3.6829672071863735" b="-0.00026430646843723558" c="-2.1621200721129522e-05" d="4.1146734498229042e-07" /> - <width sOffset="573.10698356583475" a="3.6785422130935888" b="-0.00057429798180923155" c="-9.2094169920851413e-06" d="4.5296650915313334e-07" /> - <width sOffset="583.16149204944588" a="3.6722973343873226" b="-0.00062211488303491375" c="5.7563092280738768e-06" d="3.1873198440256373e-07" /> - <width sOffset="592.6857526265967" a="3.6671696855981204" b="-0.00042572769791532664" c="-1.5729109500193975e-05" d="9.685468827219509e-07" /> - <width sOffset="592.74749948914837" a="3.6671433385065049" b="-0.00042765906601077182" c="-7.4042276717833008e-06" d="9.1791964113578999e-07" /> - <width sOffset="603.27050901666814" a="3.6628927881170048" b="-0.00027855458690123381" c="2.1140585681639916e-05" d="9.8307935438222767e-07" /> - <width sOffset="613.32501750027927" a="3.6632284698558371" b="0.00044470954817700515" c="5.104028686630221e-05" d="1.0220199351637602e-06" /> - <width sOffset="613.48161264956013" a="3.663299364750503" b="0.00046077005688632572" c="0.00024331955144347414" d="-8.9576611739208505e-06" /> - <width sOffset="623.3795259838904" a="3.6830116092176564" b="0.0026447707740366302" c="-2.240345708917269e-05" d="-8.9289083630764957e-06" /> - <width sOffset="630.78157119339448" a="3.6977396217304177" b="0.00084545598158068864" c="5.0601531053940235e-06" d="1.5957992572254695e-07" /> - <width sOffset="633.43403446750153" a="3.7000207417010866" b="0.00087566792523576052" c="5.1183614385695018e-06" d="3.989741480168992e-08" /> - <width sOffset="643.48854295111266" a="3.7093831369198136" b="0.00099069320717009354" c="6.7898980295209383e-06" d="-7.1078819364765265e-08" /> - <width sOffset="646.4007250728306" a="3.7123240442853791" b="0.0010284316297108557" c="0.00016278567424067705" d="-6.4853096561446062e-06" /> - <width sOffset="648.45097543428403" a="3.7150609682823967" b="0.0016141508907484177" c="-0.00030560178054565287" d="1.2839357079049214e-05" /> - <width sOffset="653.54305143472379" a="3.7170515531802515" b="-0.00049939985788045437" c="-0.00010854438968554992" d="1.3056556578204071e-05" /> - <width sOffset="663.59755991833492" a="3.7143284702200425" b="0.001277664107648014" c="0.00028757930400659192" d="1.2092067579896152e-05" /> - <width sOffset="663.76692149430403" a="3.71455316490434" b="0.0013761143987373939" c="0.00023515402513533956" d="-6.0806686504319849e-05" /> - <width sOffset="665.01326312174638" a="3.7165158308149562" b="0.0016789135164175829" c="-5.8863885340649976e-05" d="0.0002041720778152535" /> - <width sOffset="665.74008024003433" a="3.7177833902872193" b="0.0019169166960231105" c="0.00034574957943835706" d="-6.2690455788445653e-05" /> - <width sOffset="668.6481381718753" a="3.7247400924127336" b="0.0023373541944849969" c="-2.9760369757830595e-05" d="-5.2649893889196843e-06" /> - <width sOffset="673.65206840194605" a="3.7350311935299438" b="0.0016440213399678814" c="-0.00010922524154192233" d="-5.4346061925462186e-06" /> - <width sOffset="681.62047574750068" a="3.7384464290172672" b="-0.0011319004613162776" c="-7.8091331162617831e-05" d="2.9454507916732043e-06" /> - <width sOffset="683.70657688555718" a="3.7357720707007571" b="-0.0014192590939867793" c="-6.0288579704629233e-05" d="2.7868906226534288e-06" /> - <width sOffset="693.76108536916831" a="3.7182400684590018" b="-0.0017863965874741141" c="2.1593289630585142e-05" d="2.8377058953785855e-06" /> - <width sOffset="699.68478193447356" a="3.7090055652905862" b="-0.0012318455557754565" c="1.0796452918451112e-05" d="7.697289323090599e-06" /> - <width sOffset="701.23203378952428" a="3.7071539481025466" b="-0.0011431542303513634" c="-5.7220480375107237e-05" d="-3.5411880429094403e-06" /> - <width sOffset="703.81559385277944" a="3.7037575394884064" b="-0.001509729307146844" c="-8.3695635573099322e-05" d="-3.391882543942582e-06" /> - <width sOffset="704.04907403650566" a="3.7034004419416604" b="-0.0015493665569091698" c="-7.8722100717835909e-05" d="4.3079199768941715e-06" /> - <width sOffset="713.87010233639057" a="3.6846718542395203" b="-0.0018491003082600412" c="4.8360695150015822e-05" d="4.2996616475835557e-06" /> - <width sOffset="720.32003803695807" a="3.6759108818947928" b="-0.00068863423804761139" c="0.00029908620352527173" d="-1.4123539140279013e-05" /> - <width sOffset="723.9246108200017" a="3.6766531981857553" b="0.00091700264040255053" c="0.00014645725638485159" d="-1.4160197956108587e-05" /> - <width sOffset="733.97911930361283" a="3.6862860153633843" b="-0.00043238256517686736" c="-0.00027893138783464076" d="-1.5033852097908798e-05" /> - <width sOffset="735.53340759317621" a="3.6848836722508018" b="-0.0014084190294205632" c="-0.00031902057016401918" d="-1.6123776423268704e-05" /> - <width sOffset="736.34050667086262" a="3.6835306486054309" b="-0.0019548909607225102" c="-0.0022966772059131676" d="0.00044773761060269267" /> - <width sOffset="739.81675129873554" a="3.6677898041988679" b="-0.0016907590149768518" c="0.00010482110695561383" d="-2.6430771042116127e-06" /> - <width sOffset="744.03362778722396" a="3.662325825808356" b="-0.00094772165854569909" c="7.2659706643479025e-05" d="-2.755855295441249e-06" /> - <width sOffset="754.08813627083521" a="3.6573411816764603" b="-0.00032240058742650699" c="-7.7090804828751694e-06" d="-3.0487770074416053e-06" /> - <width sOffset="758.33812055869487" a="3.6555977013321161" b="-0.0005531319118485679" c="-2.788435350246432e-05" d="5.5283016486182867e-08" /> - <width sOffset="764.14264475444634" a="3.6514583517950312" b="-0.00087125485173721539" c="-2.4261555363875544e-05" d="1.7482855125092178e-07" /> - <width sOffset="774.19715323805747" a="3.6404233387179987" b="-0.0013061089781339521" c="-2.3416458543531542e-05" d="2.1559159159164873e-06" /> - <width sOffset="776.37783365251641" a="3.6374861353040915" b="-0.0013774800885206486" c="-0.00020786915965220667" d="8.4778088781328738e-06" /> - <width sOffset="784.2516617216686" a="3.6178912797857792" b="-0.003074131700849476" c="-1.0693617794713594e-05" d="8.175485744316852e-06" /> - <width sOffset="789.21217584913666" a="3.6033767866054687" b="-0.002576708199917282" c="-0.00092685431118036355" d="0.00042695364087412221" /> - <width sOffset="790.56209198113231" a="3.5992597348280038" b="-0.0027449803755454642" c="0.00024714620235432439" d="8.7417486044557124e-06" /> - <width sOffset="794.20055234390725" a="3.5929651183402971" b="-0.00059933692151214915" c="0.00017537049870153707" d="-6.5939376694980433e-06" /> - <width sOffset="794.30617020527973" a="3.5929037661687251" b="-0.00056251307623012491" c="0.00017318191864066791" d="-6.5553119357489342e-06" /> - <width sOffset="804.36067868889086" a="3.5980923844242247" b="0.00093191384568122029" c="-2.3711371010976082e-05" d="-6.5123585081445525e-06" /> - <width sOffset="806.94657363007241" a="3.6002310528424539" b="0.00067864207180806462" c="-5.4530903023234335e-05" d="-6.6705479664986361e-06" /> - <width sOffset="808.9236812927486" a="3.6013080896275769" b="0.00038479052969992957" c="-4.4216834595983115e-05" d="1.4630977907620836e-06" /> - <width sOffset="814.41518717250199" a="3.6023300348807878" b="3.1522841520874117e-05" c="-2.0125482295002913e-05" d="1.5142995161348339e-06" /> - <width sOffset="824.46969565611312" a="3.6021516307319708" b="8.6075059384794084e-05" c="2.3036786652076081e-05" d="1.8775160606170532e-06" /> - <width sOffset="828.7501469619915" a="3.6030894059012359" b="0.00038649177770257767" c="0.0018577655799899703" d="-0.00023106519204684408" /> - <width sOffset="830.05989492568483" a="3.6062633417863061" b="0.0040637659176623268" c="0.00097858469836313577" d="-0.00023099100828513308" /> - <width sOffset="833.78393390788438" a="3.6230385079787242" b="0.0017418679754513098" c="-3.5443427563599766e-05" d="-5.1019903083821129e-07" /> - <width sOffset="834.52420413972425" a="3.6243083310183986" b="0.0016885537795411876" c="-3.5336408345354561e-05" d="-3.6493527481971639e-07" /> - <width sOffset="844.57871262333538" a="3.637342705330898" b="0.00086729598515256307" c="-4.7420399643046382e-05" d="-3.4114815045053722e-07" /> - <width sOffset="854.63322110694651" a="3.6409223057767433" b="-0.00018974484993206065" c="-5.8592148678579469e-05" d="-3.7576668310558061e-07" /> - <width sOffset="864.68772959055764" a="3.6327093052548425" b="-0.0014819376645182148" c="-7.0080051882963481e-05" d="-3.2259095889604234e-07" /> - <width sOffset="864.95856522969166" a="3.6323027968036206" b="-0.0015199690038147494" c="-0.0010746057769763753" d="0.00017010904526870821" /> - <width sOffset="868.25605077998136" a="3.6217053361942941" b="-0.0030579663787021144" c="0.00028402310182729757" d="0.00018640602124076305" /> - <width sOffset="869.02793562311717" a="3.6195998879943332" b="-0.0022863145281983165" c="0.00047807642388422494" d="-1.3960850408174857e-05" /> - <width sOffset="874.74223807416877" a="3.6195409825593541" b="0.0018098305128189619" c="0.00023801708411994024" d="-1.3805564371875084e-05" /> - <width sOffset="882.79139894568857" a="3.642329925635841" b="0.0029581603667548032" c="0.00025987169479212038" d="1.9477619516977706e-05" /> - <width sOffset="884.7967465577799" a="3.6494641926524363" b="0.0042354095422089582" c="0.00037603909516999959" d="1.8461607967952584e-05" /> - <width sOffset="885.50841881319309" a="3.6526755258279682" b="0.004798693885736555" c="0.0021480525831176433" d="-0.00073348557507977468" /> - <width sOffset="887.4971319989661" a="3.664945157325918" b="0.0046396522404592985" c="-0.00080513331423029627" d="2.5847568332288778e-05" /> - <width sOffset="894.85125504139103" a="3.66580206025619" b="-0.0030086948130936394" c="-0.00023257066977871825" d="2.5727906921769867e-05" /> - <width sOffset="902.13002309821911" a="3.6415022838385154" b="-0.0023051213651709762" c="0.00042622520759684653" d="1.6302840107778571e-05" /> - <width sOffset="904.56386435707486" a="3.6386518039100273" b="5.9321319365346001e-05" c="0.00029901596463731894" d="-1.4370991663134055e-05" /> - <width sOffset="904.90576352500216" a="3.6387064649476022" b="0.00025874824539811377" c="0.00028569823461300435" d="-1.3911988060296986e-05" /> - <width sOffset="914.96027200861329" a="3.6560494564737471" b="0.0017846391874114824" c="-0.0001342330205798679" d="-1.3926358493543946e-05" /> - <width sOffset="924.33032280130408" a="3.6495294434941394" b="-0.0043990143341641422" c="0.0046762115675743759" d="-0.0073963119495052652" /> - <width sOffset="924.84022865491443" a="3.6475216090261244" b="-0.0053993706546180079" c="-0.054265013289009026" d="0.2663254514236682" /> - <roadMark sOffset="0" color="standard" width="0.14517703758409278" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.145177" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59187320829938" max="100" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.7992720275105247" b="2.0868592722374766e-10" c="0.080691766726971911" d="-0.097661534241652706" /> - <width sOffset="0.54648170772187932" a="3.8074313894269665" b="0.00069556618149208135" c="-0.0024430188839791858" d="0.0010542824137519163" /> - <width sOffset="1.9026179974844735" a="3.8065111646306633" b="-0.00011375676028668692" c="0.00021797547934448048" d="-2.2151886817055064e-05" /> - <width sOffset="8.5078747185424834" a="3.8088861067910331" b="-0.00013361043906500586" c="0.00022491092015364445" d="-2.6498270491152954e-05" /> - <width sOffset="10.054508483611135" a="3.8091194296520294" b="0.00037194157651168278" c="9.7057072584181046e-05" d="-2.7023393165050696e-05" /> - <width sOffset="12.712370544460427" a="3.8102862481148292" b="0.00031517174478798426" c="1.7043502435777668e-05" d="1.2218277171378755e-05" /> - <width sOffset="15.362263730446637" a="3.8114684479838101" b="0.00066288647063025407" c="-1.2089855360950783e-05" d="-3.5673301523925538e-07" /> - <width sOffset="20.109016967222271" a="3.8143044484952333" b="0.00052399798273415361" c="-2.1901475096069595e-05" d="-4.8544337177348321e-07" /> - <width sOffset="30.163525450833404" a="3.8168654767962558" b="-6.3644137047770555e-05" c="-3.6887677492366428e-05" d="-8.3222292362501501e-07" /> - <width sOffset="36.323747665408696" a="3.8148790398121566" b="-0.00061286114743757921" c="-2.550557381160976e-05" d="2.8084527716323373e-07" /> - <width sOffset="40.218033934444541" a="3.8121221655069415" b="-0.0007987357110711326" c="-1.4718555029972546e-05" d="6.5701693990498668e-07" /> - <width sOffset="48.327586679721641" a="3.8050272151918199" b="-0.00090783165468952482" c="-6.3499061700884524e-05" d="3.8700734174305232e-06" /> - <width sOffset="50.272542418055679" a="3.8030497891935369" b="-0.001110917629087319" c="-2.9130246294723901e-05" d="6.0439501499018652e-06" /> - <width sOffset="56.098075795097316" a="3.7967844030711291" b="-0.0008349783814429637" c="9.1168532825853163e-06" d="4.0290542621235325e-07" /> - <width sOffset="60.327050901666809" a="3.7934468207158329" b="-0.00073625152980014846" c="1.7489657233702088e-05" d="7.3385084276534981e-07" /> - <width sOffset="69.736282119914549" a="3.7886790049903531" b="-0.00021221163049097097" c="7.1178556239105193e-05" d="-1.2267986813270539e-06" /> - <width sOffset="70.381559385277953" a="3.7885713775535637" b="-0.00012188427566980496" c="6.874089514140384e-05" d="-1.2010452177383233e-06" /> - <width sOffset="80.436067868889083" a="3.7930743314505198" b="0.00089617525098914844" c="3.1317340751380791e-05" d="-1.1782944023688829e-06" /> - <width sOffset="90.490576352500213" a="3.8040532337208335" b="0.0011685837415934916" c="-4.1676124652176099e-06" d="-1.5652495066250227e-06" /> - <width sOffset="91.587407503440247" a="3.8053278935785704" b="0.0011537922406384296" c="-5.3896812475243673e-06" d="1.5775545898529349e-06" /> - <width sOffset="97.069983810419274" a="3.8117516201851878" b="0.0012369510137263525" c="0.00027818792302244716" d="-2.7017592411710706e-05" /> - <width sOffset="100.54508483611136" a="3.8182758056606896" b="0.0021915934335903402" c="-2.4756966802784889e-06" d="-2.6896458544494179e-05" /> - <width sOffset="107.09223779928844" a="3.8249700225626677" b="-0.0012995912826051939" c="-0.0001348749412014133" d="6.8303245674408759e-06" /> - <width sOffset="110.59959331972249" a="3.8190474244391943" b="-0.0019936294328663298" c="-6.3459075110050602e-05" d="6.8776687281346667e-06" /> - <width sOffset="120.65410180333362" a="3.7995779334477664" b="-0.0011838736506814146" c="0.00014474111513385318" d="6.7203511109733382e-06" /> - <width sOffset="121.45893240470475" a="3.7987223756218209" b="-0.00093783012460413795" c="0.00015187099223581469" d="-6.201220738319359e-06" /> - <width sOffset="125.69019815140295" a="3.7970034330782427" b="1.4310220620605352e-05" c="1.4720186265628821e-05" d="-6.5920914773861821e-06" /> - <width sOffset="130.70861028694475" a="3.7966128195271924" b="-0.00033600065614149935" c="-7.7114421901806156e-05" d="-9.0982230276851584e-06" /> - <width sOffset="131.85409940289574" a="3.7961130740376992" b="-0.0005484826902384071" c="-7.1943968774477332e-05" d="4.1031526133736422e-06" /> - <width sOffset="140.76311877055591" a="3.7884177917655908" b="-0.00085337373699443156" c="3.7083055037273984e-05" d="4.3773139535121006e-06" /> - <width sOffset="144.17062183233077" a="3.7861136798228427" b="-0.00044817650021058454" c="3.283494585269586e-05" d="1.048527239297064e-06" /> - <width sOffset="150.81762725416704" a="3.7848933182594591" b="0.00012731185985284167" c="5.4257820706985349e-05" d="8.344204314508065e-07" /> - <width sOffset="159.5146820034941" a="3.7906534613288274" b="0.0012604219179357329" c="2.1597706566216566e-05" d="-3.3970036062369473e-06" /> - <width sOffset="160.87213573777817" a="3.7923957263362804" b="0.0013002789144517565" c="1.9065264960858831e-05" d="-5.2089021362252414e-08" /> - <width sOffset="168.19231200309994" a="3.802915177039448" b="0.0015710275469782401" c="0.00018673534808896479" d="-1.6056626029347095e-05" /> - <width sOffset="170.9266442213893" a="3.8082787761114298" b="0.0022320749096136397" c="5.7601563344213258e-05" d="-1.5319304387457673e-05" /> - <width sOffset="179.20334784208728" a="3.8220130972453425" b="3.7284304715356304e-05" c="-7.451041250472468e-06" d="2.0432754841535074e-06" /> - <width sOffset="180.98115270500043" a="3.8220673127623028" b="3.0165178964861773e-05" c="-3.4577911863814648e-06" d="1.3040824446561396e-07" /> - <width sOffset="181.79905476995685" a="3.8220897431398391" b="2.4770625041343215e-05" c="0.00069553653918825618" d="-2.9901402856857408e-05" /> - <width sOffset="191.03566118861158" a="3.8580952611058263" b="0.0052204597332798641" c="-0.00013840321939887916" d="-2.9898943637749738e-05" /> - <width sOffset="197.36461847672095" a="3.8780117842778972" b="-0.00012430577677342399" c="-9.2119908433436877e-05" d="2.3227504650314688e-07" /> - <width sOffset="201.09016967222271" a="3.8762820879900044" b="-0.00080102890077502712" c="-9.0529217568962778e-05" d="-5.3085721564494689e-08" /> - <width sOffset="211.14467815583384" a="3.8590222946204493" b="-0.0026375822798799936" c="-8.9786439058461745e-05" d="-3.4598059250067727e-07" /> - <width sOffset="213.61704231760163" a="3.8519471748741116" b="-0.0030878963350328787" c="-0.0010225192312311639" d="0.0002095172425922449" /> - <width sOffset="216.81937727628829" a="3.8384533143632726" b="-0.0031910284650892478" c="0.00067133653556033504" d="0.00022803273121508799" /> - <width sOffset="217.91748837846242" a="3.8360606910890329" b="-0.00089170582547349394" c="-0.00025237072081377263" d="1.8416307244593717e-05" /> - <width sOffset="221.19918663944497" a="3.8310673405339815" b="-0.0019531092720871631" c="-7.0644301173722758e-05" d="1.8500941571731298e-05" /> - <width sOffset="227.58840350425348" a="3.8205300914362179" b="-0.00059009136814846283" c="0.00018964878543811938" d="-3.987396035065172e-05" /> - <width sOffset="230.21957837968733" a="3.8195640742225181" b="-0.00042024512817029087" c="-6.8619085817172434e-05" d="2.0828978820334465e-06" /> - <width sOffset="231.2536951230561" a="3.8190584140633792" b="-0.00055548308230225015" c="-6.1514719309727593e-05" d="2.0073898168943194e-06" /> - <width sOffset="241.30820360666723" a="3.809294983520187" b="-0.0011836835921529383" c="8.1439975344678494e-08" d="2.0309673871820766e-06" /> - <width sOffset="251.36271209027839" a="3.7994662200565124" b="-0.00056609529792272845" c="5.942829773156917e-05" d="2.7146852310359599e-06" /> - <width sOffset="253.51908226941208" a="3.7985490666837958" b="-0.00027192717184933125" c="0.0001923038010043772" d="-3.6324385886048793e-06" /> - <width sOffset="253.77309479203643" a="3.7984923421384922" b="-0.00017493514519009723" c="0.00013409549296271946" d="-5.9283573110463011e-06" /> - <width sOffset="261.41722057388949" a="3.8023426729209078" b="0.00083592144177862615" c="-4.2778438916322771e-06" d="-6.0242075248342424e-06" /> - <width sOffset="269.6675923563987" a="3.8055650046122653" b="-0.00046484490466553054" c="-1.3660070382951742e-05" d="1.1555173130427923e-06" /> - <width sOffset="271.47172905750068" a="3.8046886841158978" b="-0.00050285086137669653" c="-7.5135424370685248e-06" d="9.4778402418433112e-07" /> - <width sOffset="281.52623754111181" a="3.7998365655999709" b="-0.00036649742217933177" c="2.2178280715141931e-05" d="9.2499327307691672e-07" /> - <width sOffset="286.45190439274813" a="3.7986799587633069" b="-8.0684679354279648e-05" c="0.00069831333764087077" d="-0.00011314888675585079" /> - <width sOffset="288.08513425922399" a="3.7999179530064184" b="0.0012948741885620346" c="0.00018861495318479271" d="-0.00011529362204691213" /> - <width sOffset="290.40100572643388" a="3.8024962878152877" b="0.00031344092542934899" c="-8.3328749758429955e-05" d="2.9114962406148637e-06" /> - <width sOffset="291.58074602472294" a="3.8027548713449466" b="0.00012898490659093921" c="-7.0977319882701553e-05" d="3.6888790463713663e-06" /> - <width sOffset="301.63525450833407" a="3.8006259620005238" b="-0.00017953811621108798" c="3.9659662907902827e-05" d="3.7856890252688249e-06" /> - <width sOffset="310.87876456619171" a="3.805344912803406" b="0.0015240268256735234" c="4.5176942384040367e-05" d="-3.6668814499343472e-06" /> - <width sOffset="311.6897629919452" a="3.8066086539220088" b="0.0015900683572698069" c="3.5447101696248144e-05" d="-3.6767219027967869e-06" /> - <width sOffset="321.74427147555633" a="3.822442294569663" b="0.0011878006311944818" c="-7.4732535056545526e-05" d="-4.241163607985394e-06" /> - <width sOffset="323.43996911548942" a="3.8242208810411453" b="0.00089776806008564183" c="-8.1945653060161493e-05" d="-2.1383153878854602e-06" /> - <width sOffset="323.56102158495355" a="3.8243283534816914" b="0.00087783461005006859" c="-0.00018178207266205163" d="4.1069084770078018e-06" /> - <width sOffset="331.79877995916746" a="3.8215197338438984" b="-0.0012810263758737694" c="-7.7391622457208178e-05" d="4.1025379661114526e-06" /> - <width sOffset="341.85328844277859" a="3.8049858723388033" b="-0.0015930804796717426" c="5.1546738023654564e-05" d="3.847008197405034e-06" /> - <width sOffset="347.5120468112334" a="3.7983187074212932" b="-0.0006401379563435607" c="1.5846439198725596e-05" d="1.3581875528918161e-06" /> - <width sOffset="351.90779692638972" a="3.7959263765605886" b="-0.00042209276032788973" c="3.6395452889692247e-05" d="1.7501565867235686e-06" /> - <width sOffset="357.24843885391402" a="3.7949768162254429" b="0.00011641369677369072" c="0.0033171109445474193" d="-0.00055459925471603323" /> - <width sOffset="361.00252337870353" a="3.8128202717792519" b="0.0015736909345103905" c="-0.00011046453360890647" d="4.7877409773807809e-06" /> - <width sOffset="361.96230541000085" a="3.8142331471731579" b="0.001374878321532685" c="-9.8216419811465955e-05" d="4.8662274473761591e-06" /> - <width sOffset="372.00490321452338" a="3.8230636808163529" b="0.00087451447852035969" c="9.6237962933350211e-05" d="-1.4144506507048847e-05" /> - <width sOffset="372.01681389361198" a="3.8230741105064943" b="0.00087680097765275265" c="9.3096055180680532e-05" d="-1.4090508139050581e-05" /> - <width sOffset="376.07676745959935" a="3.8272254522128284" b="0.00093596133833199254" c="7.6656246503869088e-06" d="4.0133405740001289e-06" /> - <width sOffset="379.59302337726348" a="3.8307857907371226" b="0.0011387334333520069" c="7.7587972324827628e-05" d="-7.1030866662960401e-06" /> - <width sOffset="382.07132237722317" a="3.833976334805965" b="0.0013924250728200795" c="2.2751434707161987e-05" d="-7.6335462520426662e-06" /> - <width sOffset="392.1258308608343" a="3.8425174426911868" b="-0.0004651634398844702" c="-0.00020733609854341168" d="-7.6110359222248069e-06" /> - <width sOffset="392.79427880559433" a="3.8421115894332285" b="-0.00075255256760730597" c="-0.002089868734359675" d="0.00029470235351321028" /> - <width sOffset="397.47092839672501" a="3.8230276508786289" b="-0.00096336912913323421" c="0.00037226283731003424" d="-1.8137204917696638e-05" /> - <width sOffset="402.18033934444543" a="3.8248526070510627" b="0.0013361374351690152" c="0.00011626520519234001" d="-1.8207945064299181e-05" /> - <width sOffset="410.70576549330747" a="3.8334116384597259" b="-0.00065165998413532918" c="-0.00076070497765789308" d="1.2680805351029724e-05" /> - <width sOffset="411.70805472896683" a="3.8320070629351095" b="-0.0021383360138443898" c="-0.00034545235983927974" d="3.0838542779583979e-05" /> - <width sOffset="412.23484782805656" a="3.8307892437734714" b="-0.0024766257506116511" c="-0.00029377228067141328" d="3.1801307515045887e-05" /> - <width sOffset="420.71143124298277" a="3.8080566693597397" b="-0.00060198909665251101" c="9.4782867742609387e-06" d="-4.3518090472693062e-07" /> - <width sOffset="422.28935631166769" a="3.8071286654262826" b="-0.0005753276463264335" c="6.5174839116197262e-06" d="1.5230995012369703e-07" /> - <width sOffset="432.34386479527882" a="3.8021577158507851" b="-0.00039807497804320209" c="1.019985687803077e-05" d="5.9410733105880256e-08" /> - <width sOffset="432.68690507162933" a="3.8020223627833869" b="-0.00039105608083565374" c="-5.8349340820338551e-05" d="2.2234825767189559e-06" /> - <width sOffset="442.39837327888995" a="3.7947580739168751" b="-0.00089526425049651394" c="6.1838065902165867e-06" d="2.3601647498092585e-06" /> - <width sOffset="447.11648456526916" a="3.7909196557041724" b="-0.00067929660818482371" c="6.0401401484379996e-05" d="1.8988749129337177e-06" /> - <width sOffset="448.07210946929462" a="3.7903273197912699" b="-0.00055865217548694646" c="-7.6465960276817733e-06" d="1.6112800544273671e-06" /> - <width sOffset="452.45288176250108" a="3.787868708469166" b="-0.00053288113908253273" c="1.276488882379961e-05" d="1.4959500753815117e-06" /> - <width sOffset="462.50739024611221" a="3.7853218394898467" b="0.00017749910187190492" c="5.8801657770777199e-05" d="1.4074782762504935e-06" /> - <width sOffset="467.50493635106426" a="3.7878531741787613" b="0.00087068437541133639" c="4.5298560441389076e-05" d="-1.1043468429794323e-06" /> - <width sOffset="472.56189872972334" a="3.7932717911627378" b="0.0012441066575514625" c="3.0371381776381492e-05" d="-1.0180080915889717e-06" /> - <width sOffset="473.08946036037366" a="3.7939364376255895" b="0.0012753022090146845" c="0.00010947238507868744" d="-3.9177299080354173e-06" /> - <width sOffset="482.61640721333447" a="3.8126345569824061" b="0.0022944259730282145" c="-1.013169342773789e-06" d="-3.8076617140247679e-06" /> - <width sOffset="492.67091569694566" a="3.8317311912347787" b="0.0011192666876626905" c="-0.00011604971249221703" d="-3.7998980211184137e-06" /> - <width sOffset="493.5251820964798" a="3.8326002845056899" b="0.00091267278048250003" c="-1.9232315676802103e-05" d="-2.4644837060857433e-07" /> - <width sOffset="502.72542418055679" a="3.8391772646238671" b="0.00049620739674659643" c="-2.6411831995776464e-05" d="-2.5445220281052996e-07" /> - <width sOffset="505.65466487163093" a="3.8403977546365198" b="0.00033492422673670982" c="1.6594762685646749e-05" d="-1.7978143936973758e-06" /> - <width sOffset="512.77993266416786" a="3.8429763343487346" b="0.0002975863869227463" c="-2.3457709305175578e-05" d="-1.6484814193451782e-06" /> - <width sOffset="518.76926257641321" a="3.8435630250383839" b="-0.00016080886954736518" c="-3.7695381317370479e-06" d="5.2832588942024024e-07" /> - <width sOffset="522.83444114777899" a="3.8428825069408958" b="-0.00016526373211334772" c="1.7953686526813203e-07" d="2.4351574408265582e-07" /> - <width sOffset="532.88894963139012" a="3.8414865308814767" b="-8.7800107998403263e-05" c="7.758240434820146e-06" d="1.8876621363977732e-07" /> - <width sOffset="542.78072253596633" a="3.8415598574519514" b="0.00012109611710810131" c="5.522516378615831e-06" d="-3.9072017017522298e-07" /> - <width sOffset="542.94345811500136" a="3.8415797086668739" b="0.00012286249474087967" c="5.332815708225469e-06" d="-3.5487127226165675e-07" /> - <width sOffset="552.99796659861249" a="3.8429934357423168" b="0.00012247502177282181" c="-7.1947367448522805e-06" d="-1.7398020977193463e-07" /> - <width sOffset="556.44542926282998" a="3.8433230258627047" b="6.6664585394789579e-05" c="-0.00059723809503089845" d="3.5928953707686181e-05" /> - <width sOffset="563.05247508222362" a="3.8280547620497543" b="-0.0031200686138876414" c="0.00011470416397887066" d="3.5809482307557569e-05" /> - <width sOffset="567.56141385015155" a="3.8196011833848544" b="9.8396625216085837e-05" c="2.192717419997168e-05" d="-3.346288658388534e-07" /> - <width sOffset="573.10698356583475" a="3.8207641134328929" b="0.00031072110226397655" c="1.6497989111287492e-05" d="-2.6657016875711236e-07" /> - <width sOffset="583.16149204944588" a="3.8252851418551344" b="0.00056163419838057454" c="9.7393361680237576e-06" d="-3.9750490193315364e-07" /> - <width sOffset="592.74749948914837" a="3.8312137827202113" b="0.00063877488514982002" c="-9.8375867219793463e-06" d="-3.4687912344012662e-07" /> - <width sOffset="593.21600053305701" a="3.8315108544665066" b="0.00062932863299672726" c="-9.4498217943458848e-06" d="-3.075355291396267e-07" /> - <width sOffset="603.27050901666814" a="3.836570540400511" b="0.00034603280850867881" c="-1.9194248765474294e-05" d="-2.3815357911436706e-07" /> - <width sOffset="613.32501750027927" a="3.8378672540526679" b="-0.00011217174553929278" c="-2.6624362216475812e-05" d="-2.7709457813604909e-07" /> - <width sOffset="613.73306863702089" a="3.837817030308921" b="-0.00013403836158201455" c="-2.6236492363376487e-05" d="4.394661967334179e-07" /> - <width sOffset="623.3795259838904" a="3.8344771044160204" b="-0.00051753432448698312" c="-1.3245081829641573e-05" d="4.6681322232162817e-07" /> - <width sOffset="633.43403446750153" a="3.8284090527286709" b="-0.00064230505523113046" c="-3.4762558280504268e-08" d="5.2907783639153569e-07" /> - <width sOffset="640.536892389694" a="3.8240346889259502" b="-0.00056272201419835016" c="0.00038789253895146818" d="-2.4857017825217389e-05" /> - <width sOffset="643.48854295111266" a="3.8251139330506798" b="0.0010774434542923734" c="0.0001679586469848329" d="-2.5239085203735187e-05" /> - <width sOffset="646.4007250728306" a="3.8290527230613476" b="0.0014135525341476538" c="-0.00020916055072454546" d="-1.8824854367014603e-05" /> - <width sOffset="651.77188759682417" a="3.8276939892966979" b="-0.0024625746075553579" c="-0.00010781852070220796" d="8.3927767254061511e-06" /> - <width sOffset="653.54305143472379" a="3.823040768971059" b="-0.002765518178316963" c="-6.2357240785672108e-05" d="8.7683277932600864e-06" /> - <width sOffset="662.815675843995" a="3.7990263508476829" b="-0.001660205127188803" c="0.00024538506123499779" d="4.3847967056212488e-06" /> - <width sOffset="663.59755991833492" a="3.7978803731948627" b="-0.0012684379438217214" c="0.00025337835224970826" d="5.3492857524287094e-06" /> - <width sOffset="665.01326312174638" a="3.7966076442970422" b="-0.00051885748868839613" c="0.00034275755180177984" d="-0.00025962947856697987" /> - <width sOffset="665.74008024003433" a="3.7963119110520855" b="-0.00043207141439527788" c="-0.00018277807758381839" d="7.2330550367816913e-06" /> - <width sOffset="673.65206840194605" a="3.7850339782878706" b="-0.001965989270486843" c="-1.0895969393289914e-05" d="7.1265397154540076e-06" /> - <width sOffset="681.62047574750068" a="3.7722820604787759" b="-0.00078212637402962841" c="-1.5838332358862404e-06" d="-1.2535172688779402e-06" /> - <width sOffset="683.70657688555718" a="3.77063219335946" b="-0.00080509968354620758" c="-9.1431315247295336e-06" d="-8.6999315775878692e-07" /> - <width sOffset="689.38133035345561" a="3.765610031206351" b="-0.00099291843544773426" c="1.1929345433176472e-05" d="2.1305045441771613e-06" /> - <width sOffset="693.76108536916831" a="3.7616691147420189" b="-0.00076581957652830713" c="3.6739588716007247e-05" d="2.0850315633034409e-06" /> - <width sOffset="699.68478193447356" a="3.7588552328995877" b="-0.00011105882072526556" c="0.00013501883435463379" d="-2.774551863811943e-06" /> - <width sOffset="703.74670428723198" a="3.7604458787596027" b="0.00084847945368650554" c="2.540035516249467e-05" d="-1.1008221915958409e-06" /> - <width sOffset="703.81559385277944" a="3.7605044503249454" b="0.00085196341977372767" c="2.4201388869357045e-05" d="-1.2501260572452487e-06" /> - <width sOffset="713.87010233639057" a="3.7702464377377396" b="0.00095949205043316193" c="-1.3091381494834164e-05" d="-1.2974928025328674e-06" /> - <width sOffset="720.32003803695807" a="3.7755423226498532" b="0.00062868130838372792" c="-0.00020572550183175375" d="1.7125707985324788e-05" /> - <width sOffset="723.9246108200017" a="3.775937535740717" b="-0.00018688363781743916" c="-2.0002801629865653e-05" d="1.7219900087843514e-05" /> - <width sOffset="726.85510662991487" a="3.7756514589574506" b="0.00013952357742334949" c="0.00041004998260661169" d="-2.0775572545386891e-05" /> - <width sOffset="733.97911930361283" a="3.7899445950131412" b="0.0028187481870550518" c="-3.2317111100295111e-05" d="-2.1239954086622909e-05" /> - <width sOffset="736.34050667086262" a="3.7961408702528519" b="0.0023108102223167088" c="0.0017558317917565785" d="-0.00048510134145253009" /> - <width sOffset="736.48625593755412" a="3.79651346608075" b="0.002791717811203802" c="0.0020077887155355309" d="-0.000445501878431973" /> - <width sOffset="739.81675129873554" a="3.8116241006094782" b="0.0013407928776124011" c="-0.00017559902521637982" d="4.8788092749326233e-06" /> - <width sOffset="744.03362778722396" a="3.8145213844318748" b="0.00012009972810364262" c="-0.00011101940792967737" d="5.0977963651503466e-06" /> - <width sOffset="754.08813627083521" a="3.8096872410533527" b="-0.00056633469179081771" c="4.4592823255229839e-05" d="5.0376794357244623e-06" /> - <width sOffset="759.3040270940387" a="3.808661323730524" b="0.00031000592519513244" c="0.001334110776815002" d="-0.00018935582886536083" /> - <width sOffset="763.76967816238789" a="3.8197876618516728" b="0.00089692812070038368" c="-0.00035385131130902941" d="2.3012142007296539e-05" /> - <width sOffset="764.14264475444634" a="3.820074157812432" b="0.00064258193379495578" c="-0.00032722492033219938" d="2.2999147663292026e-05" /> - <width sOffset="771.86617981724146" a="3.8161136588082849" b="-0.00029618031395676992" c="1.4698626383441491e-05" d="1.5907066415921549e-06" /> - <width sOffset="774.19715323805747" a="3.815523281044106" b="-0.00020172708572158897" c="2.5642323546463495e-05" d="2.1033113684818775e-06" /> - <width sOffset="784.2516617216686" a="3.8182251710575428" b="0.00095180589081053678" c="8.5906047735300007e-05" d="2.2047499994934442e-06" /> - <width sOffset="787.43995311183596" a="3.8222045130344586" b="0.001566828102763161" c="0.00032736392795390708" d="-2.41815501030073e-05" /> - <width sOffset="789.21217584913666" a="3.8258748592134761" b="0.0024993053855235968" c="0.0012366231801930823" d="-0.00044295970523284796" /> - <width sOffset="790.56209198113231" a="3.8304125337224031" b="0.0034163992642863988" c="-2.1978668045035399e-06" d="-2.4747812963158e-05" /> - <width sOffset="794.30617020527973" a="3.8418741022614067" b="0.0023591877284188309" c="-0.00027968079790073136" d="-2.4951100795431428e-05" /> - <width sOffset="796.76277691518169" a="3.8456119379356002" b="0.00053332284723022654" c="-3.2324228794739377e-05" d="4.5693695215078539e-07" /> - <width sOffset="804.36067868889086" a="3.8479984741308817" b="0.00012126453842240225" c="-2.0516609886996887e-05" d="3.4560756330788799e-07" /> - <width sOffset="806.94657363007241" a="3.8481808360128449" b="2.2090023536636399e-05" c="-3.7536788091273069e-05" d="5.0379702186357703e-07" /> - <width sOffset="814.41518717250199" a="3.8464618909324106" b="-0.0004542998260671489" c="-2.6296290265240399e-05" d="5.5315746582509556e-07" /> - <width sOffset="818.85189314992647" a="3.8439769798339256" b="-0.00065497199050859102" c="-4.6420142847476136e-05" d="1.0468297722967731e-06" /> - <width sOffset="824.46969565611312" a="3.8390180694599447" b="-0.0010774174637683315" c="-3.066393340667304e-05" d="1.1256219133047849e-06" /> - <width sOffset="830.05989492568483" a="3.8322334743186652" b="-0.0013147242984753644" c="-4.051719367868111e-05" d="1.051438151764291e-06" /> - <width sOffset="834.52420413972425" a="3.8256501791401933" b="-0.0016136211944809884" c="-2.8443400515844941e-05" d="8.8418683921874134e-07" /> - <width sOffset="844.57871262333538" a="3.8074493029562104" b="-0.0019174343440428541" c="-2.9044903061935539e-06" d="9.0572576033867757e-07" /> - <width sOffset="854.63322110694651" a="3.7887974365900909" b="-0.0017011528033152199" c="2.3230796094297437e-05" d="9.1434135299839133e-07" /> - <width sOffset="859.37432671423244" a="3.7813517174817513" b="-0.0014192155672995653" c="3.5186817015396714e-05" d="-1.6595106500742579e-06" /> - <width sOffset="864.68772959055764" a="3.7745553143609243" b="-0.0011858472571028747" c="9.0563288269443886e-06" d="-1.7779133313053068e-06" /> - <width sOffset="868.25605077998136" a="3.7703583642101179" b="-0.0011891295409001787" c="0.00031419130876669777" d="-1.8074891510651418e-05" /> - <width sOffset="868.30681854217926" a="3.7702988021852142" b="-0.0011573677183953823" c="0.00031687407360033311" d="-1.5442227055019072e-05" /> - <width sOffset="874.74223807416877" a="3.7718582063282211" b="0.0010024653792373868" c="1.8466547891602498e-05" d="-1.5357797701200785e-05" /> - <width sOffset="884.7967465577799" a="3.7681940361264639" b="-0.0032838945142064802" c="-0.00044447468279518301" d="-1.543443595283373e-05" /> - <width sOffset="885.50841881319309" a="3.7656262998503234" b="-0.0039399866930960965" c="-0.0022100251077355436" d="0.00073651274709360165" /> - <width sOffset="887.4971319989661" a="3.7548431002453482" b="-0.0039915189860031909" c="0.00076122132031081701" d="-2.2820396318457491e-05" /> - <width sOffset="893.53930875976334" a="3.753482341849363" b="0.002707974315947128" c="0.0003015562150175389" d="-2.2426370421629532e-05" /> - <width sOffset="894.85125504139103" a="3.7575034565910066" b="0.0033834244147015703" c="0.00021944176961765548" d="-2.0129236943715496e-05" /> - <width sOffset="904.56386435707486" a="3.7926231782208015" b="0.0019494673673812312" c="-0.00012083565548463219" d="1.0544594757244325e-05" /> - <width sOffset="905.51328080286066" a="3.7943741383785756" b="0.0017485350772970904" c="-0.00013994755364628831" d="8.3773461330636052e-06" /> - <width sOffset="914.96027200861329" a="3.805465788494609" b="0.0013472933830258847" c="9.70979461903914e-05" d="8.381905589486761e-06" /> - <width sOffset="917.93292630466237" a="3.810549027856438" b="0.0021467751273971996" c="-0.00024432921725142074" d="6.4513922255614458e-05" /> - <width sOffset="924.84022865491443" a="3.8349810670283913" b="0.0080055010853543971" c="0.048719478865387668" d="-0.27365724945109116" /> - <roadMark sOffset="0" color="standard" width="0.30102167138971142" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30102200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59186172057002" max="100" unit="km/h" /> - </lane> - <lane id="-4" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.9868067150994353" b="3.7870161049111562e-10" c="-0.0024903062456674619" d="0.00024391843257078882" /> - <width sOffset="5.7542977128494348" a="3.9508230767946575" b="-0.00443008758972014" c="0.00092309004227847629" d="-9.4825805378311677e-06" /> - <width sOffset="8.5078747185424834" a="3.945425551584504" b="0.0004378153620093056" c="0.00039886485645061081" d="-5.1361968637036017e-06" /> - <width sOffset="10.054508483611135" a="3.9470378044474952" b="0.0016347525515857924" c="0.0003745354211102426" d="-4.7493822556629324e-06" /> - <width sOffset="12.712370544460427" a="3.9539393826482345" b="0.0035250273277106165" c="0.00020120602818291767" d="-4.3991052592081283e-05" /> - <width sOffset="18.5963729490262" a="3.9726851585066876" b="0.0013237142254252827" c="-0.00010804993975115883" d="1.1874282138580335e-05" /> - <width sOffset="20.109016967222271" a="3.9744813364214879" b="0.0010783403826196466" c="-7.2215876483676069e-05" d="4.9224984822698995e-06" /> - <width sOffset="30.163525450833404" a="3.9830264225999459" b="0.0011190425942680443" c="7.723568356625689e-05" d="2.8236723221373955e-06" /> - <width sOffset="31.616884516410842" a="3.9848246028532133" b="0.0013614378834502115" c="6.0880071221395955e-05" d="-2.4768107840150195e-06" /> - <width sOffset="40.218033934444541" a="3.9994624051458847" b="0.00185901337561402" c="2.5078030590608002e-06" d="-2.4070452024365992e-06" /> - <width sOffset="48.327586679721641" a="4.0134193637144548" b="0.0014247908287798434" c="8.7124702276262671e-06" d="-5.620101679792382e-06" /> - <width sOffset="50.272542418055679" a="4.0161821270123639" b="0.0013949015141734703" c="-1.8119109579848878e-05" d="-9.265397486150975e-06" /> - <width sOffset="54.174649636134916" a="4.0207987872462576" b="0.00083025902031616441" c="-4.72943549967167e-05" d="-8.8357692346153628e-06" /> - <width sOffset="56.098075795097316" a="4.0221578864981717" b="0.00055025902881584445" c="-3.0898603632856361e-05" d="-3.1947245109846701e-06" /> - <width sOffset="60.327050901666809" a="4.023690697191566" b="0.00011751460947865546" c="-6.7574422503159331e-05" d="-3.0953840798576789e-06" /> - <width sOffset="66.43242613812815" a="4.0211848380187662" b="-0.0010537667614216577" c="-5.4502567397932079e-05" d="6.5790340038722782e-07" /> - <width sOffset="70.381559385277953" a="4.0162138893344377" b="-0.0014534612631358274" c="-4.6838021102830327e-05" d="7.6716416076328791e-07" /> - <width sOffset="80.436067868889083" a="3.9976448258221917" b="-0.0021626627205335695" c="-2.520118964720347e-05" d="8.1120358541909956e-07" /> - <width sOffset="89.603132641485658" a="3.9763266874105661" b="-0.0024201959300366709" c="-4.3939219106600824e-05" d="-6.2655241757732711e-07" /> - <width sOffset="90.490576352500213" a="3.9741438572374852" b="-0.0024996634333500573" c="-4.555097667002572e-05" d="-5.6939112002464557e-07" /> - <width sOffset="97.069983810419274" a="3.9555635446846837" b="-0.0031730047421673728" c="-0.0003144201592330646" d="2.8025755881544877e-05" /> - <width sOffset="100.54508483611136" a="3.9419161336229633" b="-0.0043429437888548531" c="-2.1783027013884217e-05" d="2.7840046823726734e-05" /> - <width sOffset="104.29051738606037" a="3.926807122039758" b="-0.0033344748434685338" c="0.00062656444997794361" d="1.2539599885812828e-05" /> - <width sOffset="107.09223779928844" a="3.9226589364768509" b="0.00047173590793472657" c="0.00033607536864494218" d="-2.118718322614234e-05" /> - <width sOffset="110.59959331972249" a="3.927533587784386" b="0.0020473023865149277" c="0.00011144037119598643" d="-2.0851475920398665e-05" /> - <width sOffset="114.56555036240302" a="3.9361052150983489" b="0.0019473307982548762" c="0.00029506882255216901" d="-3.3865493586251795e-05" /> - <width sOffset="120.65410180333362" a="3.9512563508338259" b="0.0017741860688662782" c="-0.00032151274535717651" d="-3.4700551524749993e-05" /> - <width sOffset="121.45893240470475" a="3.9524579189865507" b="0.0011892273906172557" c="-0.00039620058703541288" d="-2.1778979675712784e-05" /> - <width sOffset="124.37910081439207" a="3.9520097818816646" b="-0.0016818706241768281" c="-0.00016550837855309352" d="1.2373317858913606e-05" /> - <width sOffset="130.70861028694475" a="3.937871245956301" b="-0.002289919124838744" c="6.9745087205666263e-05" d="1.5312047390554668e-05" /> - <width sOffset="131.85409940289574" a="3.9353626989567054" b="-0.0020698597545408099" c="8.592823860649953e-05" d="2.1106717495023493e-06" /> - <width sOffset="138.15030769587943" a="3.9262636333545791" b="-0.00073680031650793067" c="0.00020666818049757988" d="-9.2317524982617837e-06" /> - <width sOffset="140.76311877055591" a="3.9255847242747248" b="0.00015410002769478267" c="0.00013523112695848702" d="-8.9610593466411889e-06" /> - <width sOffset="144.17062183233077" a="3.9273254572855212" b="0.00076355833266724391" c="9.262185675863411e-05" d="-5.6322726324293069e-06" /> - <width sOffset="150.81762725416704" a="3.9348390155968316" b="0.0012483275843900492" c="-1.8636035617443168e-05" d="-5.7522692830457394e-06" /> - <width sOffset="160.87213573777817" a="3.9396595133235457" b="-0.0008709696785057354" c="-0.00016089997531457036" d="-2.3803135921027325e-05" /> - <width sOffset="162.0245766298398" a="3.9384056451742855" b="-0.0013366653640104558" c="-2.2940880882181987e-05" d="-3.4897217477106439e-07" /> - <width sOffset="168.19231200309994" a="3.9292068756576271" b="-0.0016594776382743304" c="-0.00019821197054409613" d="1.5655564833283967e-05" /> - <width sOffset="170.9266442213893" a="3.923507419781485" b="-0.0023922824875256383" c="-6.8886048835220648e-05" d="1.5449973230642419e-05" /> - <width sOffset="179.20334784208728" a="3.9077481649962658" b="-0.00035743462062284669" c="-5.8892237795039612e-07" d="-1.9126066410316244e-06" /> - <width sOffset="180.98115270500043" a="3.9071001078779193" b="-0.00037766349577802885" c="-1.5266910418802181e-05" d="1.3870232147182297e-06" /> - <width sOffset="185.39045922643228" a="3.9052569582249985" b="-0.00043139702167559245" c="-0.0001302337488379966" d="8.3077248753286986e-06" /> - <width sOffset="191.03566118861158" a="3.9001658908434407" b="-0.0011075293152617103" c="5.3504003606045436e-07" d="7.7512771279665056e-06" /> - <width sOffset="198.30786314318084" a="3.8951210718784011" b="0.00013002956504684475" c="9.6329496177617871e-06" d="7.3919406760654634e-07" /> - <width sOffset="201.09016967222271" a="3.8955733459731228" b="0.00020080001531547637" c="1.4106376351031021e-05" d="-5.341923622750792e-08" /> - <width sOffset="211.14467815583384" a="3.8989640517750317" b="0.000468264421588497" c="1.3617128974230855e-05" d="-7.5248889897506604e-09" /> - <width sOffset="216.81937727628829" a="3.9020584380425909" b="0.00062208368704581071" c="0.00033246642894277649" d="-1.8523013511799507e-05" /> - <width sOffset="219.5402665246794" a="3.905839270746243" b="0.0020199015016715087" c="0.0088748907143216243" d="-0.0056461015617035246" /> - <width sOffset="220.59503312498526" a="3.911217913652691" b="0.0018973622841865609" c="7.9408895324835059e-05" d="-1.8458779114764144e-05" /> - <width sOffset="221.19918663944497" a="3.9123891256352108" b="0.0019731001660856996" c="4.574371562905068e-05" d="-1.8497581569825107e-05" /> - <width sOffset="227.58840350425348" a="3.9220384832521971" b="0.00029230326685801924" c="-0.00021448496764057043" d="3.9877320352551111e-05" /> - <width sOffset="230.21957837968733" a="3.9220490861941162" b="-8.1698656475280877e-06" c="4.3809425876138412e-05" d="-2.0795378824647917e-06" /> - <width sOffset="231.2536951230561" a="3.9220851875640053" b="7.5766698527278561e-05" c="3.808353239480868e-05" d="-2.1016238680593763e-06" /> - <width sOffset="241.30820360666723" a="3.9245607899452297" b="0.00020420982452256905" c="-2.3413343263545254e-05" d="-2.2090216583345462e-06" /> - <width sOffset="246.71459906127461" a="3.924631399042477" b="-0.00024265698380882624" c="-0.00036214217912297142" d="1.9643743214301827e-05" /> - <width sOffset="251.36271209027839" a="3.9176521058843194" b="-0.0023360059974351678" c="-8.9079655303148081e-05" d="1.9657980234400216e-05" /> - <width sOffset="253.77309479203643" a="3.9117791836570275" b="-0.0024228027795853728" c="0.00010851036458831429" d="2.1953898926588316e-05" /> - <width sOffset="258.05137363936251" a="3.9051190660576278" b="-0.00028881682790484278" c="0.00010271960838273838" d="-5.5766216508209957e-06" /> - <width sOffset="261.41722057388949" a="3.9050980110673548" b="0.00021312873495483715" c="4.0360768043389297e-05" d="-6.5591860288793061e-06" /> - <width sOffset="269.18302423686464" a="3.906115277523583" b="-0.00034671206277289137" c="-7.7262200038330389e-05" d="1.9143509170146045e-06" /> - <width sOffset="271.47172905750068" a="3.9049399938686786" b="-0.00067028971690716072" c="-6.4462456961304009e-05" d="1.5290982920562704e-06" /> - <width sOffset="281.52623754111181" a="3.8932380874676311" b="-0.0015028223106676147" c="-1.7647891789485173e-05" d="1.5869831463342725e-06" /> - <width sOffset="286.45190439274813" a="3.8855971652185781" b="-0.0015611665032494518" c="-0.00065666347177183138" d="0.00011566086317524908" /> - <width sOffset="290.40100572643388" a="3.8763143305591656" b="-0.001336294944626265" c="0.00018453400928225002" d="-2.5442551122889968e-06" /> - <width sOffset="291.58074602472294" a="3.8749905040962975" b="-0.00091151371519532925" c="0.0001740279382755543" d="-3.2664069806991237e-06" /> - <width sOffset="292.3060215597929" a="3.8744197022997309" b="-0.00066423193438298509" c="0.00011009153619326903" d="-3.9628699549081106e-06" /> - <width sOffset="301.63525450833407" a="3.8745869838516636" b="0.00035518698480394278" c="-1.3217608373089636e-06" d="-3.8701122923182241e-06" /> - <width sOffset="310.87876456619171" a="3.8747006539762205" b="-0.00066126438976799626" c="-9.1801422634960311e-06" d="3.5824581811944523e-06" /> - <width sOffset="311.6897629919452" a="3.874160242562291" b="-0.00066908580513178268" c="-4.8143142848174414e-06" d="3.887231883366326e-06" /> - <width sOffset="316.40718269234605" a="3.8713048341821925" b="-0.00045498814513355988" c="9.1707625321536344e-06" d="1.8974789164210921e-06" /> - <width sOffset="321.74427147555633" a="3.8694262098779011" b="-0.0001949514879134269" c="3.9376007954818035e-05" d="1.8623951301276623e-06" /> - <width sOffset="323.56102158495355" a="3.8692131629803619" b="-3.3437796674641864e-05" c="0.00014858640215597847" d="-4.3828285536537717e-06" /> - <width sOffset="329.46285502304283" a="3.8732903460665074" b="0.0012624433048224145" c="-5.1938651775007043e-05" d="2.5353363005537352e-06" /> - <width sOffset="331.79877995916746" a="3.8759882288560226" b="0.001061296253341473" c="-2.4821420032477372e-05" d="4.7674462270309832e-06" /> - <width sOffset="341.85328844277859" a="3.8889955975534836" b="0.0020080302354872383" c="0.00011572335813824892" d="5.0013711751770572e-06" /> - <width sOffset="341.95668107104916" a="3.889204455691861" b="0.0020321205143193771" c="-1.4236731053916585e-05" d="-3.3807672431964877e-06" /> - <width sOffset="347.5120468112334" a="3.8994746199398342" b="0.0015609274047760418" c="3.042724170772581e-05" d="-8.919465987017158e-07" /> - <width sOffset="351.90779692638972" a="3.9068482411306342" b="0.0017767242741716901" c="1.9919598507448131e-05" d="-9.1661115107606583e-07" /> - <width sOffset="361.96230541000085" a="3.9257943832688089" b="0.0018992985179459012" c="-1.9451660250911033e-05" d="3.8487589629668876e-06" /> - <width sOffset="363.69914032308259" a="3.9290546383662392" b="0.0018665603197462045" c="0.0015068467576625397" d="-0.00060484410592612778" /> - <width sOffset="365.69367562786425" a="3.9339728553600946" b="0.00065895843987674556" c="-0.00019970494764245269" d="3.2031440783643553e-06" /> - <width sOffset="372.00490321452338" a="3.9309823521064127" b="-0.0014790493096288929" c="-0.00018690333290491808" d="2.2213990679795318e-05" /> - <width sOffset="372.01681389361198" a="3.9309647091473598" b="-0.0014834921464712998" c="-0.0001964453490060148" d="2.1584130273951053e-05" /> - <width sOffset="376.07676745959935" a="3.9231481815988851" b="-0.0020112820419303135" c="-1.9743644749332402e-05" d="3.4802815608905882e-06" /> - <width sOffset="382.07132237722317" a="3.9111316552452262" b="-0.0018728022643549624" c="4.2165271621651969e-05" d="3.3461892647824859e-06" /> - <width sOffset="389.83003446101003" a="3.9007022280001493" b="-0.00061420803830451005" c="5.5851394953125791e-05" d="-9.8230435105432542e-07" /> - <width sOffset="392.1258308608343" a="3.8995746200032859" b="-0.00037329341434786658" c="5.0641004632596734e-05" d="-4.0977663237710221e-07" /> - <width sOffset="402.18033934444543" a="3.9005242823006676" b="0.00052077058660777629" c="3.8586321491355232e-05" d="-4.5082458604724773e-07" /> - <width sOffset="410.70576549330747" a="3.9074892842413416" b="0.0010803985522994074" c="0.00043833461629463151" d="-3.1339575001760086e-05" /> - <width sOffset="412.23484782805656" a="3.9100541263319366" b="0.0022010734865428277" c="0.00029384262454299165" d="-3.2350450678018288e-05" /> - <width sOffset="420.71143124298277" a="3.9301215503591713" b="0.00020925751199136219" c="-2.3372516387024387e-05" d="-1.1396225829734936e-07" /> - <width sOffset="422.28935631166769" a="3.930393101297033" b="0.0001346461070053837" c="-3.0355146876378145e-05" d="8.407928316422658e-07" /> - <width sOffset="426.32677978875859" a="3.930497247081103" b="-6.9350300350082945e-05" c="-3.6744663308738698e-05" d="2.2495491623477355e-06" /> - <width sOffset="432.34386479527882" a="3.929239673704604" b="-0.00026720493799735427" c="-1.9700902816460572e-07" d="1.3959486342529341e-06" /> - <width sOffset="437.1395041726725" a="3.9281076847233978" b="-0.00017278176878118807" c="1.3998437318293029e-06" d="-3.457410732082421e-07" /> - <width sOffset="442.39837327888995" a="3.9271874778852718" b="-0.00018674371750025765" c="-2.9910032095750896e-06" d="-1.8513830262277617e-07" /> - <width sOffset="447.11648456526916" a="3.9262203741146298" b="-0.0002273313442204456" c="-2.6422547618193808e-05" d="2.7615153411876646e-07" /> - <width sOffset="452.45288176250108" a="3.9242967707614227" b="-0.00048574174873623364" c="-2.219175216870187e-05" d="2.782850629981501e-07" /> - <width sOffset="460.39180873645574" a="3.9191810762810775" b="-0.00078548109660830912" c="-1.2800964895864927e-05" d="2.1622629686110612e-07" /> - <width sOffset="462.50739024611221" a="3.9174640812856483" b="-0.00083674078342582279" c="-1.0128735035505838e-05" d="3.2895925446379347e-07" /> - <width sOffset="472.56189872972334" a="3.908361486293205" b="-0.00094065311537817398" c="3.2126208363168498e-06" d="2.5417008381947689e-07" /> - <width sOffset="473.08946036037366" a="3.9078661652627114" b="-0.00093705118157593002" c="-7.7097297330130362e-05" d="3.1538919090032634e-06" /> - <width sOffset="482.61640721333447" a="3.8946685120907691" b="-0.0015472874998144744" c="1.4478892642659436e-05" d="3.2548857800191646e-06" /> - <width sOffset="492.67091569694566" a="3.8838834156291897" b="-0.0002689913221953746" c="0.00011147872977235076" d="3.4259253897521608e-06" /> - <width sOffset="493.5251820964798" a="3.8837371151207343" b="-7.102583215083811e-05" c="1.3702916196916826e-05" d="-1.2752426076220769e-07" /> - <width sOffset="496.73462833241797" a="3.8836460932075552" b="1.2991005255116137e-05" c="-7.4084087553493119e-05" d="2.0487237651348588e-06" /> - <width sOffset="502.72542418055679" a="3.881505559739324" b="-0.00065407043921340477" c="-3.7856851474020779e-05" d="1.9808830808986045e-06" /> - <width sOffset="512.77993266416786" a="3.873115587389381" b="-0.00081457343093343279" c="2.0656980374934053e-05" d="2.0596126199918356e-06" /> - <width sOffset="522.83444114777899" a="3.8691072073899009" b="0.00022545626396651763" c="7.4795704522856224e-05" d="5.8197806611210687e-06" /> - <width sOffset="524.03181748943234" a="3.8694943895062464" b="0.0004296051130752324" c="3.5715074801401041e-05" d="-1.3498899842777873e-06" /> - <width sOffset="532.88894963139012" a="3.8751633173474884" b="0.00074457968021862902" c="6.7229295484315689e-08" d="-1.4074125125168156e-06" /> - <width sOffset="542.78072253596633" a="3.881172899416991" b="0.00033277571490002541" c="-3.3860763960832059e-05" d="-8.2792608236609304e-07" /> - <width sOffset="542.94345811500136" a="3.8812261535673596" b="0.00032168923525692809" c="-3.4698412085642084e-05" d="-5.6825396269909631e-07" /> - <width sOffset="546.80246494512141" a="3.8819181716098665" b="2.8499215754141288e-05" c="-0.00011204911438860893" d="3.6640178662697277e-06" /> - <width sOffset="552.99796659861249" a="3.8786651570889372" b="-0.00093798009963386338" c="-4.5157034064217797e-05" d="3.3774477552906214e-06" /> - <width sOffset="556.44542926282998" a="3.875033198888886" b="-0.001128911589789239" c="0.00057801782849941036" d="-3.272548616216117e-05" /> - <width sOffset="563.05247508222362" a="3.883368061571383" b="0.0022233666758970675" c="-7.0649328880844332e-05" d="-3.2778841177689322e-05" /> - <width sOffset="567.56141385015155" a="3.8889519403728112" b="-0.00041297384499308231" c="6.3122586744634836e-05" d="3.3652699956361763e-06" /> - <width sOffset="569.69650659089632" a="3.888390709301965" b="-9.7405719986498921e-05" c="0.00021989503730433744" d="-1.0791865500373734e-05" /> - <width sOffset="573.10698356583475" a="3.8901880894724226" b="0.0010259162054179519" c="0.0001100111041641815" d="-1.0587451074549427e-05" /> - <width sOffset="583.16149204944588" a="3.9008630124360004" b="2.7175317567744938e-05" c="-0.00020992441551387104" d="-1.0528514330287016e-05" /> - <width sOffset="583.43564621452151" a="3.9008544676911674" b="-9.0301973548358671e-05" c="-2.2903160837455073e-05" d="1.7079092395727608e-07" /> - <width sOffset="593.21600053305701" a="3.8979402552303597" b="-0.00048929284267556898" c="-1.5021850411042263e-05" d="1.2539975387771799e-07" /> - <width sOffset="598.28947986723097" a="3.8950875490292489" b="-0.00063203549648567481" c="-0.00042870609905762104" d="2.7897538469073804e-05" /> - <width sOffset="603.27050901666814" a="3.8847505339440085" b="-0.0028263623438006197" c="-1.3604625715507989e-05" d="2.8260940494939805e-05" /> - <width sOffset="608.0873578469342" a="3.8739791808601618" b="-0.0009902914021697139" c="2.6504713753980387e-05" d="5.6044211279467196e-07" /> - <width sOffset="613.32501750027927" a="3.8696000046321943" b="-0.00066652210479734247" c="3.355602797670786e-05" d="2.2554978045686662e-07" /> - <width sOffset="613.73306863702089" a="3.8693336321251071" b="-0.0006390242880795605" c="3.3105059382284858e-05" d="-4.9101099999050648e-07" /> - <width sOffset="622.60524446332715" a="3.8659270665372358" b="-0.00016754700776327897" c="9.6919120406420442e-05" d="-1.8451414460570268e-06" /> - <width sOffset="623.3795259838904" a="3.865854585650724" b="-2.0780192536060148e-05" c="9.2495843720558508e-05" d="-1.858911006966201e-06" /> - <width sOffset="633.43403446750153" a="3.873106871457022" b="0.0012754508414894502" c="3.5931275184782559e-05" d="-1.8452306904257542e-06" /> - <width sOffset="640.536892389694" a="3.8833177454292032" b="0.0015066013919672588" c="-0.00038004136650350486" d="2.3540864971224683e-05" /> - <width sOffset="643.48854295111266" a="3.8850590591894987" b="-0.00012161616411092121" c="-0.00017132298106808307" d="2.3603088763644334e-05" /> - <width sOffset="651.77188759682417" a="3.8857114066649974" b="0.0018986219706634117" c="1.0538488820873349e-05" d="-3.6145423290610495e-06" /> - <width sOffset="653.54305143472379" a="3.8890871536623006" b="0.0019019360620053335" c="-9.3852556385053381e-06" d="-3.4644810868084415e-06" /> - <width sOffset="655.29741317929222" a="3.8923762450962203" b="0.0018370170099709852" c="-1.1975244075418449e-05" d="-2.3048893764477943e-07" /> - <width sOffset="662.815675843995" a="3.9054125799472867" b="0.0016178662898575836" c="-8.0999944251412495e-05" d="4.1530421492025639e-06" /> - <width sOffset="663.59755991833492" a="3.9066300302591763" b="0.001498817953074336" c="-7.4342268422470626e-05" d="4.3961224804798005e-06" /> - <width sOffset="668.28564656737353" a="3.9124756693750746" b="0.0010916279636423972" c="0.00016730188718442295" d="-1.3356899897521906e-05" /> - <width sOffset="673.65206840194605" a="3.9210876065678746" b="0.0017332775881674341" c="-4.7736436886652172e-05" d="-1.3589671794785252e-05" /> - <width sOffset="681.9889022068877" a="3.9243455297990866" b="-0.0018962245298430229" c="-0.00019841433798061187" d="1.6220867747022773e-05" /> - <width sOffset="683.70657688555718" a="3.9205852347591175" b="-0.002434272647046788" c="-0.00011335673759673624" d="1.7327294675130829e-05" /> - <width sOffset="689.38133035345561" a="3.9062873738207733" b="-0.0020468521123006228" c="0.00014574417201887466" d="1.4326796973311981e-05" /> - <width sOffset="691.01211964486504" a="3.9033991280187199" b="-0.0014571908224479254" c="0.0005175482453732901" d="-2.4989750538475195e-05" /> - <width sOffset="693.76108536916831" a="3.9027852529206637" b="0.00082172537023480932" c="0.00030607120992082876" d="-2.6136087390408266e-05" /> - <width sOffset="703.74670428723198" a="3.9154863510036781" b="-0.00088394422195737371" c="-0.00040107537932201003" d="-2.7809818774694028e-05" /> - <width sOffset="704.65190199965753" a="3.9143369457685662" b="-0.0016784099234529541" c="8.8132897714868841e-06" d="-2.6570293487594708e-06" /> - <width sOffset="713.87010233639057" a="3.8975326376103547" b="-0.0021932695220055528" c="-6.4367340291529942e-05" d="-2.6866345127432372e-06" /> - <width sOffset="723.9246108200017" a="3.8662424862627995" b="-0.0043024344236658749" c="-0.00014508733808582042" d="-2.6593560355724954e-06" /> - <width sOffset="726.85510662991487" a="3.8523213115842632" b="-0.0052213041950276836" c="-0.00044713128231721737" d="3.5336116597683462e-05" /> - <width sOffset="729.12828473430022" a="3.8385569463965417" b="-0.0067063412287251198" c="-0.004128457795068984" d="0.0014259602263759347" /> - <width sOffset="731.18953661488001" a="3.8196808863062079" b="-0.0055502386319528051" c="0.0001056129808753679" d="3.4188251521862859e-05" /> - <width sOffset="733.97911930361283" a="3.8057620477767737" b="-0.0041628708537334433" c="0.00039218192975408721" d="3.4306976787995337e-05" /> - <width sOffset="736.48625593755412" a="3.7983309633976274" b="-0.0015494298855007515" c="0.00018615234654421027" d="-5.2924858925456601e-06" /> - <width sOffset="744.03362778722396" a="3.794965259440132" b="0.00035606728169669468" c="6.7993899471379063e-05" d="-5.3528574580475419e-06" /> - <width sOffset="752.52193812260725" a="3.7996129460067074" b="0.00035333110106954479" c="-7.9047209191643761e-06" d="-9.0750629988660628e-06" /> - <width sOffset="754.08813627083521" a="3.800112077419334" b="0.00026178762992683344" c="-4.3043466776276364e-05" d="-5.8915494572117629e-06" /> - <width sOffset="759.3040270940387" a="3.7994704965453137" b="-0.00066808036493816621" c="-0.0013459224987640078" d="0.00018850195884389021" /> - <width sOffset="763.76967816238789" a="3.7864335323915399" b="-0.0014115803469211788" c="0.00033060033263954103" d="-2.3866012047267357e-05" /> - <width sOffset="764.14264475444634" a="3.7859518097381266" b="-0.0011749341669766396" c="0.00031142283623340956" d="-2.5138926810165393e-05" /> - <width sOffset="767.31027718034238" a="3.7845558263690724" b="4.1287911383718371e-05" c="0.00017626429595758529" d="-2.7516515367837424e-05" /> - <width sOffset="771.86617981724146" a="3.7858004590690086" b="-6.6045067425672286e-05" c="-8.8427753505297463e-06" d="-6.1080743461458353e-06" /> - <width sOffset="774.19715323805747" a="3.7855211031411566" b="-0.00020683312911688972" c="-5.4280448184921659e-05" d="-5.7295093816354873e-06" /> - <width sOffset="780.20654408419068" a="3.7810745501750369" b="-0.0014799434929262812" c="-3.0602907958696241e-05" d="2.0115658436457244e-07" /> - <width sOffset="784.2516617216686" a="3.7746005645670575" b="-0.0017176536569014349" c="-3.4620460336511081e-05" d="-9.8350760138108746e-07" /> - <width sOffset="787.43995311183596" a="3.7687403851157018" b="-0.0019684065484059706" c="-0.00026439731068567286" d="2.5402792501189098e-05" /> - <width sOffset="790.14288590738965" a="3.7619899028228274" b="-0.0028409362257425536" c="-0.00037450561030141126" d="4.7358730739178392e-05" /> - <width sOffset="794.30617020527973" a="3.7470884937417512" b="-0.0034966853119803329" c="0.00021738315220104363" d="4.7305684448263117e-05" /> - <width sOffset="796.76277691518169" a="3.7405117287915157" b="-0.0015721779206345136" c="0.00013477584369098454" d="2.1897646700630632e-05" /> - <width sOffset="799.85262422165601" a="3.7375866294067999" b="-0.00011212359338255411" c="3.4298239452807466e-05" d="-2.5962573066613781e-07" /> - <width sOffset="804.36067868889086" a="3.7377544123417814" b="0.00018128429515053729" c="3.2854721727953654e-05" d="-4.9428150587751628e-08" /> - <width sOffset="811.43198736726322" a="3.7406617002787379" b="0.00063852132520269677" c="0.00055084028759338761" d="-3.061239352983323e-05" /> - <width sOffset="814.41518717250199" a="3.7466560033885017" b="0.0031077513516239402" c="0.00027689866644299132" d="-3.0515615736238555e-05" /> - <width sOffset="818.85189314992647" a="3.7632297132411447" b="0.0037627461977970643" c="-0.0001017813340947567" d="-3.1009288042718591e-05" /> - <width sOffset="822.97597856015409" a="3.7748414172557552" b="0.0013410109687276863" c="5.9411754510762033e-06" d="1.8553196816995793e-06" /> - <width sOffset="824.46969565611312" a="3.7768639475110657" b="0.0013711785558153454" c="8.336360292678724e-06" d="-4.0388118172884971e-07" /> - <width sOffset="834.52420413972425" a="3.7910827010458568" b="0.0014163257148157886" c="-6.5225524195782917e-06" d="-1.5819440175641561e-07" /> - <width sOffset="838.4022179292308" a="3.7964679129702774" b="0.0013585993658330501" c="-0.00024998612405700827" d="6.4170182140452789e-06" /> - <width sOffset="844.57871262333538" a="3.7968345792266129" b="-0.00099506641911277852" c="-0.00013456373192785383" d="6.9117341561319957e-06" /> - <width sOffset="848.1171502457297" a="3.7919349996889919" b="-0.0016877412137798783" c="-0.00093756996676103556" d="0.00019254170832759738" /> - <width sOffset="852.2928576399529" a="3.7825584514437618" b="0.00055400221626111497" c="0.00028421194388486229" d="-1.6879816624985995e-05" /> - <width sOffset="854.63322110694651" a="3.7851953521323525" b="0.0016069531995419348" c="0.00016225103879172217" d="-1.7945310686747283e-05" /> - <width sOffset="859.37432671423244" a="3.7945487301428193" b="0.001935323303324787" c="-9.1941854746509661e-05" d="-1.5371458683701155e-05" /> - <width sOffset="863.23810918562276" a="3.7997671636887427" b="0.00053640366154002672" c="-0.00060974235431308173" d="4.1590991510786181e-05" /> - <width sOffset="864.68772959055764" a="3.799390128995459" b="-0.00096918841195527605" c="-0.00042880267287073845" d="4.1459223238062907e-05" /> - <width sOffset="868.30681854217926" a="3.792231431305312" b="-0.002443863999241081" c="1.5895547601159489e-05" d="3.8826560989767874e-05" /> - <width sOffset="871.93600542834338" a="3.7854274623964241" b="-0.00079433456552283283" c="0.00018276289423867166" d="-6.576067411909655e-06" /> - <width sOffset="874.74223807416877" a="3.7844922979601674" b="7.6057393281686765e-05" c="0.00012733201672042368" d="-6.3440934827689499e-06" /> - <width sOffset="884.7967465577799" a="3.7916810090995798" b="0.00071254606998255544" c="-6.1978857686112719e-05" d="-7.6845278325901067e-06" /> - <width sOffset="886.50888628858877" a="3.7926807326381766" b="0.00043273334815810329" c="-0.00040732441663622252" d="3.817996660428659e-05" /> - <width sOffset="893.53930875976334" a="3.7888574885154487" b="0.00036675320038053599" c="0.00044394996922295327" d="3.7785940708777671e-05" /> - <width sOffset="894.85125504139103" a="3.7901881024649375" b="0.0017267420517991959" c="0.00059861529292978149" d="3.2775782682034591e-05" /> - <width sOffset="896.72806336540521" a="3.795754111517057" b="0.0043200635645064354" c="6.3672639810086513e-05" d="-3.2314051984408494e-06" /> - <width sOffset="904.90576352500216" a="3.8335731927819747" b="0.0047131565437365935" c="-1.4840981496118653e-05" d="-3.0645900739497075e-06" /> - <width sOffset="905.51328080286066" a="3.8364303522021697" b="0.0046917310270128618" c="2.8719177439420464e-05" d="-8.9734144770205338e-07" /> - <width sOffset="911.88333228642159" a="3.8672503285967204" b="0.0049483805364473358" c="0.00083657602774311532" d="-3.3980819662677382e-05" /> - <width sOffset="914.96027200861329" a="3.8894066304982569" b="0.0091314224086017672" c="0.00052196951436595061" d="-3.4219341036893453e-05" /> - <width sOffset="917.93292630466237" a="3.9202647802546986" b="0.011327536808239527" c="0.00063297938736276305" d="-9.0351357703013168e-05" /> - <width sOffset="922.540175909239" a="3.9770535788061157" b="0.011406528119182451" c="0.0034011422639139933" d="-0.0015371775295573873" /> - <roadMark sOffset="0" color="standard" width="0.29540106551871476" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29540100000000002" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59185036388317" max="100" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link /> - <width sOffset="0" a="5.0021542512302979" b="-3.0067464781453608e-10" c="-0.00228819133769301" d="6.8127387858373179e-05" /> - <width sOffset="5.7542977128494348" a="4.9393685083962735" b="-0.019566378282281176" c="-0.00031477397323854516" d="0.00032152840096648236" /> - <width sOffset="7.3727141606921638" a="4.9082404635903512" b="-0.018058738214219976" c="-0.0011123985590445174" d="5.4732861282263612e-05" /> - <width sOffset="10.054508483611135" a="4.8528659095899069" b="-0.022844266866370172" c="-0.00067844196765275079" d="5.3295236086648451e-05" /> - <width sOffset="18.5963729490262" a="4.6414477427797625" b="-0.022768772889259672" c="0.00022000567249959074" d="-2.5700986430439055e-06" /> - <width sOffset="20.109016967222271" a="4.6075011925824079" b="-0.022120834226170782" c="0.00021877913383145053" d="4.6027730099828395e-06" /> - <width sOffset="30.163525450833404" a="4.4118825980594991" b="-0.016325474571324394" c="0.00035613701135838057" d="5.8784336678086172e-06" /> - <width sOffset="31.616884516410842" a="4.3889261188869328" b="-0.015253034453305368" c="0.00041043447759379404" d="1.1178916773935882e-05" /> - <width sOffset="37.418342294521018" a="4.3164330266099826" b="-0.0093620544022994141" c="0.0030648062129112075" d="-0.003621199776961322" /> - <width sOffset="38.169585304595223" a="4.309594219281851" b="-0.010888272666750996" c="-0.0074552692403784624" d="0.001441942129683933" /> - <width sOffset="40.218033934444541" a="4.2684011154742354" b="-0.023279963904344749" c="0.0014756240951736489" d="0.0014319839528623591" /> - <width sOffset="41.714497609167161" a="4.241666857575531" b="-0.0092431584365786496" c="0.0026405968047471182" d="-0.00052286022372412765" /> - <width sOffset="44.832867799550151" a="4.2226659590160738" b="-0.008027685082874365" c="-0.0012459523111999183" d="0.00017130985996044183" /> - <width sOffset="48.651825741104645" a="4.1833785581824001" b="-0.010048789031852967" c="0.000218241599973655" d="-2.6022645518093479e-05" /> - <width sOffset="50.272542418055679" a="4.1675547954417862" b="-0.0095464362396259286" c="0.00012892298421842107" d="-6.3956018274223706e-06" /> - <width sOffset="54.174649636134916" a="4.131886619874269" b="-0.0088324403817290221" c="-2.5234465756338129e-05" d="-6.8252300789525812e-06" /> - <width sOffset="59.089656591581537" a="4.087055135720842" b="-0.0095751327871938397" c="0.0003027301806739062" d="-7.5150680938725474e-05" /> - <width sOffset="60.327050901666809" a="4.0755280618837828" b="-0.0091711392767203706" c="4.3011505572897551e-05" d="-6.5305455940868596e-05" /> - <width sOffset="63.644342535172093" a="4.04319406710158" b="-0.011041722598854727" c="-0.0015415822567212531" d="0.00016438112325584041" /> - <width sOffset="66.43242613812815" a="4.0039880886874091" b="-0.015804437334693489" c="-0.00023642461259637732" d="0.00016062783577562302" /> - <width sOffset="70.381559385277953" a="3.9477800215554737" b="-0.01015649376954225" c="0.0016667902509187489" d="0.00016049282155508628" /> - <width sOffset="71.332412212166489" a="3.9397676444240988" b="-0.0065514344873763009" c="0.0038093822585474027" d="-0.0082123181861707764" /> - <width sOffset="71.689586754755837" a="3.9375394126262195" b="-0.0069732320692380469" c="-0.004257120777311778" d="0.00069286649063496158" /> - <width sOffset="74.850934095398856" a="3.8948394711218253" b="-0.013115940630159152" c="-2.0767982599498775e-05" d="2.0885947840978933e-05" /> - <width sOffset="80.436067868889083" a="3.8245761302213008" b="-0.011393393371427385" c="0.00033128968435053237" d="2.083194284484512e-05" /> - <width sOffset="81.071617969263755" a="3.8174742216009605" b="-0.010947047426453553" c="0.00039960282864767932" d="-4.5718005146266522e-05" /> - <width sOffset="84.905096462170704" a="3.7788058084868705" b="-0.0098988644282312736" c="-1.7037037838474737e-05" d="1.0983949004241594e-06" /> - <width sOffset="89.603132641485658" a="3.732038447305337" b="-0.0099862158546057921" c="3.9490956002046762e-05" d="2.5361509023330486e-06" /> - <width sOffset="90.490576352500213" a="3.7232091167472108" b="-0.009910131768348927" c="4.433174379462884e-05" d="2.1145042062709299e-06" /> - <width sOffset="100.54508483611136" a="3.630198518579002" b="-0.0083773783655573374" c="0.00010822429099352118" d="2.2498219764806672e-06" /> - <width sOffset="104.29051738606037" a="3.6004580219643829" b="-0.0074720015046180312" c="-0.00020202446391446937" d="1.755026891440157e-05" /> - <width sOffset="110.59959331972249" a="3.5496825121186992" b="-0.0079254410386963552" c="0.0001320622071483552" d="1.7189815756448493e-05" /> - <width sOffset="110.7820181871263" a="3.548241213821564" b="-0.0078755420064434128" c="0.00015315045804056984" d="9.2634448393751499e-06" /> - <width sOffset="114.56555036240302" a="3.5211379377009981" b="-0.0063188207805697123" c="-0.0001734205418350281" d="2.2277462505228137e-05" /> - <width sOffset="120.65410180333362" a="3.4812648367689869" b="-0.0059530733025202846" c="0.00023652840059522042" d="2.0550938769788954e-05" /> - <width sOffset="122.43529528843202" a="3.4715278187617917" b="-0.0049148647882295308" c="0.00061661200827807603" d="1.0481172467734277e-06" /> - <width sOffset="124.37910081439207" a="3.4643117696890906" b="-0.0025058365746152499" c="0.00020123694275202855" d="-3.310418028781327e-05" /> - <width sOffset="129.3703125271737" a="3.452701621471471" b="-0.0029710975237556532" c="-0.00039829259752291213" d="1.4798550752937344e-05" /> - <width sOffset="130.70861028694475" a="3.4480475213087729" b="-0.0039576512770434138" c="-0.0003190656156115293" d="2.6020202139661731e-05" /> - <width sOffset="138.15030769587943" a="3.4116496442082322" b="-0.0043835233871446465" c="0.00018096554194345384" d="3.7362626387403026e-05" /> - <width sOffset="139.53835379648655" a="3.4060136921299744" b="-0.0036651897816740524" c="0.00042027692358458839" d="-0.00073432564629920228" /> - <width sOffset="140.07956632080629" a="3.4040367387335886" b="-0.0038555476826150192" c="-0.00044278307515584518" d="1.6450660488446423e-05" /> - <width sOffset="140.76311877055591" a="3.4011996360627936" b="-0.0044378191792297282" c="-0.00040937779684272781" d="1.5954939853417521e-05" /> - <width sOffset="147.01157508987313" a="3.3613790584116767" b="-0.0076849817144064251" c="-0.00039400366282505182" d="3.1597222561133249e-05" /> - <width sOffset="150.81762725416704" a="3.3281641671822131" b="-0.0093110234681580174" c="-3.351024802094203e-05" d="3.0214102068425224e-05" /> - <width sOffset="155.05091850242815" a="3.2904395199080776" b="-0.0079703622041656201" c="-0.00010970486517350401" d="2.2874589132289632e-05" /> - <width sOffset="160.87213573777817" a="3.2448370547612742" b="-0.0069221698035656261" c="0.00027132568808106944" d="4.1483151726061547e-05" /> - <width sOffset="162.0245766298398" a="3.2372835095677752" b="-0.0061315123559193612" c="0.00019449211320671532" d="1.8028987979806382e-05" /> - <width sOffset="169.79024615614583" a="3.2098403981966541" b="0.0001509586642730506" c="0.00093659641565245618" d="-8.6584014614605475e-05" /> - <width sOffset="170.9266442213893" a="3.2110944025223853" b="0.0019442074380148229" c="0.00064838513947411511" d="-7.9637060075160473e-05" /> - <width sOffset="177.40235370790856" a="3.2292483805055259" b="0.00032301928434609275" c="-0.00098378072413761995" d="0.00015314781674692659" /> - <width sOffset="180.98115270500043" a="3.2248241001555407" b="-0.0008340267923932571" c="0.00067185668391774142" d="0.00015176105411297955" /> - <width sOffset="181.57783280046277" a="3.2245978914347839" b="0.00012983338869469458" c="6.6133071878856557e-05" d="-6.0058771537855087e-06" /> - <width sOffset="185.39045922643228" a="3.2257213654357049" b="0.00037220832584981166" c="0.00013075284397361141" d="-1.2926578814467469e-05" /> - <width sOffset="188.76211729345025" a="3.2279672668256705" b="0.00081306501479416803" c="-0.00039953993230264906" d="2.4411729761547443e-05" /> - <width sOffset="191.03566118861158" a="3.2280374686705802" b="-0.00062512530472472096" c="-0.00025275042786372865" d="1.7138833033898953e-05" /> - <width sOffset="198.30786314318084" a="3.2167161655750958" b="-0.0015820721089095414" c="0.00028116938586147049" d="2.4150916093812568e-05" /> - <width sOffset="200.45612416525617" a="3.2148545045178523" b="-3.965036942289813e-05" c="0.00033982322266183944" d="-2.2121407561752465e-05" /> - <width sOffset="201.09016967222271" a="3.2149603393362112" b="0.00036459707851732381" c="0.00029982981708809569" d="-2.1247699811293426e-05" /> - <width sOffset="210.30611244359181" a="3.2271545785417874" b="0.0004770949650376821" c="-3.5389933234741942e-05" d="2.8694688024459327e-08" /> - <width sOffset="211.14467815583384" a="3.2275297850074454" b="0.00041780192955562798" c="-3.7319545155643345e-05" d="9.4026980551313806e-09" /> - <width sOffset="219.5402665246794" a="3.2284125403889439" b="-0.0002068488759037238" c="-0.0087307042119222442" d="0.0056275879508893021" /> - <width sOffset="220.59503312498526" a="3.2250849319957986" b="0.00015806556979776175" c="6.194992078904689e-06" d="-5.4831710579213852e-08" /> - <width sOffset="221.19918663944497" a="3.2251826769551952" b="0.00016549098129714436" c="6.7698717472553443e-06" d="5.0934862291441268e-08" /> - <width sOffset="223.4738681627411" a="3.2255947442238524" b="0.00019708022348575242" c="2.4348207168316296e-05" d="6.4579700381001526e-09" /> - <width sOffset="231.2536951230561" a="3.2286047276517795" b="0.00057710252022877533" c="2.3451625851323792e-05" d="5.9564502488242534e-08" /> - <width sOffset="231.25849793449663" a="3.2286074999073291" b="0.0005773277916967059" c="-2.1917721794113364e-05" d="9.3524007035182238e-07" /> - <width sOffset="241.30820360666723" a="3.2331451147835883" b="0.00042016264287573373" c="6.3489353012331309e-06" d="1.0867937897234991e-06" /> - <width sOffset="246.71459906127461" a="3.2357739935770109" b="0.00058411040437193339" c="0.0003268761482170945" d="-2.0765971082923944e-05" /> - <width sOffset="251.36271209027839" a="3.2434657831550542" b="0.0022768813756322082" c="3.7226168338951989e-05" d="-2.0876027614314475e-05" /> - <width sOffset="258.05137363936251" a="3.254113589605109" b="-2.6999420166338561e-05" c="-9.4106420878663813e-05" d="6.6544929631932527e-06" /> - <width sOffset="261.41722057388949" a="3.2532103343791521" b="-0.00043433026984072076" c="-2.3833822116626857e-05" d="7.6099177213308993e-06" /> - <width sOffset="269.18302423686464" a="3.2519640598158146" b="0.00057230221797503864" c="0.00011826847404457284" d="-8.6361922476265697e-07" /> - <width sOffset="271.3452708172174" a="3.2537457296646641" b="0.0010716403616006052" c="7.0963294224126757e-05" d="-3.2719852678607144e-06" /> - <width sOffset="271.47172905750068" a="3.2538823756248947" b="0.0010894311745535622" c="7.0060466801785543e-05" d="-2.8466963966345042e-06" /> - <width sOffset="281.42720246304265" a="3.2688631338599201" b="0.0016379807736409361" c="-5.4159155841663841e-05" d="-2.6365524698261135e-07" /> - <width sOffset="281.52623754111181" a="3.2690248199675063" b="0.0016272457034728091" c="-5.5541493550980991e-05" d="-3.0016314285909345e-07" /> - <width sOffset="291.58074602472294" a="3.2794660132896789" b="0.00041932756263688461" c="-6.302659637960697e-05" d="-3.2042237542310957e-07" /> - <width sOffset="292.3060215597929" a="3.2797368655265489" b="0.0003273986156517491" c="-6.8945130387400788e-06" d="3.7604059876727471e-07" /> - <width sOffset="301.63525450833407" a="3.2824965145397371" b="0.00029694319432903499" c="3.2781764295921473e-06" d="4.2296716131204102e-07" /> - <width sOffset="311.6897629919452" a="3.2862434550784565" b="0.00049114133621012209" c="2.03866330208057e-05" d="1.1819346191067168e-07" /> - <width sOffset="312.54349720363808" a="3.2866776918306089" b="0.0005262093085550767" c="5.5797824503129516e-06" d="-3.1776561458654239e-06" /> - <width sOffset="316.40718269234605" a="3.2886108156717677" b="0.00042701757974726389" c="9.7754266165906873e-06" d="-1.1879031788836396e-06" /> - <width sOffset="321.74427147555633" a="3.2909877044479323" b="0.00042985167550248384" c="-8.5707626244308341e-06" d="-1.2444034691332405e-06" /> - <width sOffset="328.79002738212569" a="3.2931556036099385" b="0.00012375011693622649" c="1.0848582197612809e-05" d="-1.2478583977692865e-06" /> - <width sOffset="329.46285502304283" a="3.2932433971486219" b="0.00013665386347968173" c="0.00013125468292292546" d="-8.1660232560348435e-06" /> - <width sOffset="331.79877995916746" a="3.294174722652361" b="0.00061618120949304177" c="7.721924156576905e-05" d="-8.4041994616253098e-06" /> - <width sOffset="341.85328844277859" a="3.299634077530686" b="-0.00037983651130604995" c="-0.00016701204837550067" d="-8.5071121574249795e-06" /> - <width sOffset="341.95668107104916" a="3.2995930104680689" b="-0.00041464496459406888" c="-3.8139362505957457e-05" d="-1.2497373904659049e-07" /> - <width sOffset="351.90779692638972" a="3.2915669412846587" b="-0.0012108298580739956" c="-4.0258722892369527e-05" d="4.7002930348589129e-08" /> - <width sOffset="358.76834793425684" a="3.2813802950833422" b="-0.0017565870185546071" c="-0.00019322441514644145" d="1.0367956683942816e-05" /> - <width sOffset="361.96230541000085" a="3.2741364944526419" b="-0.0026735862377560418" c="-9.8171001751160177e-05" d="6.8014903781207171e-06" /> - <width sOffset="363.69914032308259" a="3.2692324095699252" b="-0.0029530478482285216" c="-0.0015689762449996596" d="0.00061549435526745896" /> - <width sOffset="365.69367562786425" a="3.2619844986093183" b="-0.0018661793384448302" c="0.0002013023551854262" d="7.4471057609668593e-06" /> - <width sOffset="365.87223172373376" a="3.261657741285072" b="-0.0017935795210891523" c="8.3188255410465879e-05" d="5.3836439281350845e-07" /> - <width sOffset="372.01681389361198" a="3.2539026885634268" b="-0.00071028609875870615" c="6.8116674971343137e-05" d="6.0842611320432152e-06" /> - <width sOffset="374.47327519520928" a="3.2526591137223173" b="-0.00026549316226321231" c="-1.3211269264485925e-05" d="9.4034964623307468e-08" /> - <width sOffset="382.07132237722317" a="3.249920440614595" b="-0.00044996685060194174" c="-1.3223734547783884e-05" d="-1.4294399135564579e-07" /> - <width sOffset="389.83003446101003" a="3.2455664772746449" b="-0.00068097980996083751" c="4.7649315552272921e-05" d="4.185549624202731e-06" /> - <width sOffset="392.1258308608343" a="3.2443048774954644" b="-0.00039601146375183483" c="7.500244337694033e-05" d="3.8643504540507905e-06" /> - <width sOffset="395.48183214406288" a="3.2439666597691215" b="0.00023797470546334785" c="0.00016127386608129083" d="-2.7108476556740923e-05" /> - <width sOffset="399.75021455577945" a="3.2458125708627419" b="0.00013305657900969825" c="-0.00016326319513397194" d="5.9506838304754223e-06" /> - <width sOffset="402.18033934444543" a="3.2452571620595911" b="-0.0005550178902154479" c="-0.00012024196272848928" d="5.6535842414303286e-06" /> - <width sOffset="412.23484782805656" a="3.2332676318818825" b="-0.0012583497948668507" c="5.446277159026007e-05" d="5.1170232404307255e-06" /> - <width sOffset="417.49678928244077" a="3.228899749019388" b="-0.00026014911749667834" c="8.5456311326543121e-05" d="-3.7157662807247198e-06" /> - <width sOffset="422.28935631166769" a="3.2292067592642599" b="0.00030292213395240446" c="3.5795399545529439e-05" d="-4.139634334872031e-06" /> - <width sOffset="426.32677978875859" a="3.2307408349084747" b="0.00038952659773494537" c="2.2284555808843373e-06" d="-5.548390665567133e-06" /> - <width sOffset="431.49270158275419" a="3.2320476587728297" b="-3.1654857949247445e-05" c="-0.0024240241077916422" d="0.00041304627718946266" /> - <width sOffset="432.34386479527882" a="3.2305192660797886" b="-0.0032604053200836996" c="-0.0013643433557339673" d="0.00041399277694755503" /> - <width sOffset="435.50802976599306" a="3.2196581370910087" b="0.00054019225381061325" c="0.0003123619798589173" d="-1.8137804256955754e-05" /> - <width sOffset="437.1395041726725" a="3.2212920999488306" b="0.0014145807490037314" c="0.00024207443550132901" d="-1.6396114549315085e-05" /> - <width sOffset="442.39837327888995" a="3.2330413202874198" b="0.0026003180037598135" c="-1.763881334069735e-05" d="-1.6077378189605706e-05" /> - <width sOffset="446.27748654673144" a="3.2419243747836548" b="0.0017376980967845031" c="-2.050342436883247e-05" d="-4.5784412382540243e-09" /> - <width sOffset="452.45288176250108" a="3.2518723606012516" b="0.0014839407957570813" c="-2.1614748603942968e-05" d="-1.4549150200743294e-07" /> - <width sOffset="460.39180873645574" a="3.262218156326715" b="0.0011132354870069987" c="-2.7842820725589075e-05" d="-8.3432736130158231e-08" /> - <width sOffset="462.50739024611221" a="3.2644478910427805" b="0.00099430771762893831" c="-2.8153038018592475e-05" d="-2.877206929092003e-07" /> - <width sOffset="472.56189872972334" a="3.2713066360361562" b="0.00034091803283625678" c="-2.8594741066662023e-05" d="-1.6561959894207681e-06" /> - <width sOffset="476.76795183997564" a="3.2721114536328777" b="1.2477326373627784e-05" c="-4.0282975934006946e-05" d="-4.0138810786330856e-07" /> - <width sOffset="482.61640721333447" a="3.2707262755636437" b="-0.00049989680235949904" c="-4.4201471261934369e-05" d="9.0509206289197707e-08" /> - <width sOffset="486.3142090929706" a="3.2682779332550425" b="-0.00082308057166913208" c="-0.0017663875743678182" d="0.00027502888460390171" /> - <width sOffset="490.52659245305421" a="3.2540248205336271" b="-0.0010640030256869196" c="1.8713557473606593e-05" d="4.5943697307913789e-07" /> - <width sOffset="492.67091569694566" a="3.2518338313220072" b="-0.0009774095511530178" c="2.0891497599199699e-05" d="-6.2852294876260078e-08" /> - <width sOffset="496.73462833241797" a="3.2482026991243078" b="-0.00081072924882895792" c="0.00010668441357897617" d="-2.2391003207558776e-06" /> - <width sOffset="502.72542418055679" a="3.2466932270508559" b="0.00022643835602065038" c="6.6468211469086574e-05" d="-2.2019151278308584e-06" /> - <width sOffset="512.77993266416786" a="3.2534513150172959" b="0.00089525319978082441" c="-1.1968143996358113e-06" d="-2.1117706019863845e-06" /> - <width sOffset="522.34841734636757" a="3.2600579369191598" b="0.00029231463072110133" c="0.00017624417087474907" d="-1.4904106587954098e-05" /> - <width sOffset="522.83444114777899" a="3.2602399299203881" b="0.0004530704490011702" c="0.00016321871194442347" d="-1.8635274931930016e-05" /> - <width sOffset="524.03181748943234" a="3.2609844430729886" b="0.00076378615153897063" c="0.00015626443272641059" d="-1.1465604286529625e-05" /> - <width sOffset="531.67737551077118" a="3.2708342010528666" b="0.0011425932520403546" c="0.00013513029100470239" d="-6.6249159557859376e-06" /> - <width sOffset="532.88894963139012" a="3.27240511451578" b="0.0014408596011311048" c="0.00011124542907963469" d="-6.9992035021928271e-06" /> - <width sOffset="542.94345811500136" a="3.2910241161273106" b="0.0015551814256274808" c="-0.00010009078552287193" d="-6.8810976555693981e-06" /> - <width sOffset="546.80246494512141" a="3.2951395830986856" b="0.00047526082517994632" c="-0.00010898137955444096" d="-1.1113369524911592e-05" /> - <width sOffset="547.12838406530363" a="3.2952825185828374" b="0.00040068109906647064" c="8.6313041770531382e-05" d="-2.620780293659036e-06" /> - <width sOffset="552.99796659861249" a="3.3000780350190988" b="0.0011430507827381977" c="3.8595543056595168e-05" d="-2.7153627689113875e-06" /> - <width sOffset="563.05247508222362" a="3.312712585146329" b="0.0010956555603770784" c="-4.3871591941621812e-05" d="-2.718836547227025e-06" /> - <width sOffset="569.69650659089632" a="3.3172581212210179" b="0.00015263301515679802" c="-0.00023328065894618268" d="1.1438298948831327e-05" /> - <width sOffset="573.10698356583475" a="3.3155190425969119" b="-0.0010394349317850869" c="-0.00011788446031180407" d="1.1545947854538094e-05" /> - <width sOffset="576.86933536232721" a="3.3105545385462483" b="-0.0014361717971908266" c="0.0012421102107024048" d="-0.00021724197038161874" /> - <width sOffset="580.64502674043979" a="3.3111461330353409" b="-0.0013474259919764794" c="1.7790207983768856e-05" d="1.3619482117113884e-05" /> - <width sOffset="583.16149204944588" a="3.3080850773291193" b="-0.00099914900810965115" c="0.0001223344833392772" d="1.287023758403883e-05" /> - <width sOffset="583.43564621452151" a="3.3078206163872368" b="-0.00092916999112530334" c="-6.2760791782614654e-05" d="2.1709323348146259e-06" /> - <width sOffset="593.21600053305701" a="3.2947606009705144" b="-0.0015338318024516091" c="1.8447756493234088e-06" d="2.3364670700384839e-06" /> - <width sOffset="598.28947986723097" a="3.2873313465893954" b="-0.0013346896033465292" c="0.0004529997156596278" d="-2.5435671645079346e-05" /> - <width sOffset="601.4206233147703" a="3.2868126559420148" b="0.00075400608090448254" c="0.00011583519099421451" d="-2.558459028617486e-05" /> - <width sOffset="603.27050901666814" a="3.2884419159574856" b="0.00091991248572996444" c="-2.5337538591705894e-05" d="-2.560462890215993e-05" /> - <width sOffset="608.0873578469342" a="3.2894235221047854" b="-0.0011064200081416775" c="-2.7061723895483576e-05" d="2.0958694799672299e-06" /> - <width sOffset="613.32501750027927" a="3.2831872295455895" b="-0.0012174117501203019" c="6.5208014310450411e-06" d="2.2561862029189243e-06" /> - <width sOffset="622.60524446332715" a="3.2742541890250756" b="-0.00051345676544992276" c="-7.5485072704782976e-06" d="3.6103166476598733e-06" /> - <width sOffset="623.3795259838904" a="3.2738537793966191" b="-0.00051865282172646084" c="1.4479436352207861e-06" d="3.7276846268694385e-06" /> - <width sOffset="624.92337684766778" a="3.273070224803492" b="-0.00048752746884329505" c="-7.7936949234044714e-05" d="1.4198701809488641e-06" /> - <width sOffset="631.00815461854654" a="3.267538027166518" b="-0.0012782754633479043" c="0.00021397024497845244" d="-8.3887321457561631e-06" /> - <width sOffset="633.43403446750153" a="3.265576518579806" b="-0.0003882436265045077" c="0.00015134180716570039" d="-8.65789911941732e-06" /> - <width sOffset="643.48854295111266" a="3.2681722874400263" b="2.9328696285249849e-05" c="-0.00010752594637823446" d="-9.8506085757988627e-06" /> - <width sOffset="645.53332971488476" a="3.2676984575170609" b="-0.00053396726966529356" c="-8.1978694362594271e-05" d="4.116597975612357e-06" /> - <width sOffset="653.54305143472379" a="3.2602775239340449" b="-0.0010549113689592095" c="1.8129234490588668e-05" d="3.886900370385928e-06" /> - <width sOffset="655.29741317929222" a="3.258503613179812" b="-0.00095541176556815984" c="2.2942451621269965e-05" d="6.5290822122782073e-07" /> - <width sOffset="663.59755991833492" a="3.2525274609407573" b="-0.00043961902223033957" c="3.8297954806051121e-05" d="7.1246812282604658e-07" /> - <width sOffset="668.28564656737353" a="3.2513816168241085" b="-3.3554553444292007e-05" c="-0.00013149765458448363" d="1.8465490498861827e-05" /> - <width sOffset="669.02772070891388" a="3.2512918502698174" b="-0.00019821117344255264" c="0.00061869530855750447" d="-7.7368002778863221e-05" /> - <width sOffset="673.65206840194605" a="3.2559548940794611" b="0.00056046384842884864" c="-0.0004524388563832763" d="-8.0040449668464437e-05" /> - <width sOffset="674.76558360735191" a="3.2559074837856956" b="-0.00074486157339017636" c="-1.6861842215090143e-05" d="1.6542908169917248e-05" /> - <width sOffset="681.9889022068877" a="3.2558821171539991" b="0.0016009862960495664" c="0.00015241564205092678" d="-1.3267631371617575e-05" /> - <width sOffset="683.70657688555718" a="3.2590145406373656" b="0.0020071525643875062" c="8.2856689226575302e-05" d="-1.4189031809727638e-05" /> - <width sOffset="691.01211964486504" a="3.2725676628191644" b="0.00094593220149085397" c="-0.00052983115867151031" d="2.5127515701779083e-05" /> - <width sOffset="693.76108536916831" a="3.2716861476719687" b="-0.0013973914099504943" c="-0.0003199588448074471" d="2.6464674108963192e-05" /> - <width sOffset="703.81559385277944" a="3.2521902214290117" b="0.00019474183250582232" c="0.0004752262408296038" d="2.6353730898307548e-05" /> - <width sOffset="704.65190199965753" a="3.2527008791342276" b="0.0010449092790024714" c="5.5936938275038666e-05" d="1.2009414746975603e-06" /> - <width sOffset="708.90181420580882" a="3.2582441563483275" b="0.0015854367600918939" c="-4.5015326805906056e-05" d="5.7007141021354677e-06" /> - <width sOffset="713.87010233639057" a="3.2657090262990529" b="0.0015602858796328026" c="4.0474790535784342e-05" d="5.6343957920811692e-06" /> - <width sOffset="722.35431545944687" a="3.2853012547338629" b="0.0034638024531407708" c="0.00020032042169173479" d="-6.081675811192264e-06" /> - <width sOffset="723.9246108200017" a="3.2912108545442553" b="0.0040479378200190524" c="0.00017345903159534022" d="-5.1381678517789854e-06" /> - <width sOffset="729.12828473430022" a="3.3162479652812511" b="0.0054357889433726894" c="0.0040155493539261577" d="-0.0013957622776300288" /> - <width sOffset="731.18953661488001" a="3.3322898427750429" b="0.0041991323214241377" c="-3.1784686090991182e-05" d="-3.9903027760974347e-06" /> - <width sOffset="733.97911930361283" a="3.3436697073649722" b="0.0039286454270681418" c="-6.3299332307742092e-05" d="-4.2497433921727719e-06" /> - <width sOffset="739.79099113998222" a="3.3635300974536442" b="0.0027622285750637794" c="0.00015327774337962964" d="-2.6362450850665987e-05" /> - <width sOffset="744.03362778722396" a="3.3759949941932241" b="0.0026392624827373699" c="-0.00017172806337226033" d="-2.6870295668462883e-05" /> - <width sOffset="746.98806113285718" a="3.381600621540219" b="0.00092091790263518648" c="-0.00021974423695990923" d="1.1753452780033936e-05" /> - <width sOffset="752.52193812260725" a="3.3819593033695563" b="-0.00043135128131722631" c="-8.5029276754521158e-05" d="1.5475658320752482e-05" /> - <width sOffset="754.08813627083521" a="3.381134602080734" b="-0.00058381238789534341" c="-1.4001775992410239e-05" d="1.1880649356001629e-05" /> - <width sOffset="758.03054794513275" a="3.3793433403081199" b="-0.00014024502648554379" c="8.277086539279827e-05" d="-6.267461229448952e-07" /> - <width sOffset="764.14264475444634" a="3.3814351730773815" b="0.0008013206256152186" c="6.9606633434983879e-05" d="7.878339789718565e-07" /> - <width sOffset="767.31027718034238" a="3.384696928211067" b="0.001266012214573851" c="-2.6640760063406265e-05" d="3.1654225366376903e-06" /> - <width sOffset="774.19715323805747" a="3.3931861986733551" b="0.0013494680529595625" c="3.944756101541406e-05" d="2.8679453270730912e-06" /> - <width sOffset="780.20654408419068" a="3.4033426301133787" b="0.0021342880987746051" c="-3.5818749716396849e-05" d="-3.0627206388865149e-06" /> - <width sOffset="784.2516617216686" a="3.4111872531916809" b="0.0016941603069477174" c="-7.1588646568165008e-05" d="-1.981190244024732e-06" /> - <width sOffset="789.03250431483229" a="3.4174340133683954" b="0.0008738032432167094" c="-0.00020672238851479567" d="6.6417514244866279e-05" /> - <width sOffset="790.14288590738965" a="3.4182403189625674" b="0.00066038965407652997" c="0.00033061838967217086" d="4.4461576007380485e-05" /> - <width sOffset="791.60464550040274" a="3.4200509671458077" b="0.0019119674910522356" c="0.00067376626148457847" d="-4.5545643685588445e-05" /> - <width sOffset="794.30617020527973" a="3.4292355050663357" b="0.0045551513600554771" c="0.0003042779707381132" d="-4.5569978981104872e-05" /> - <width sOffset="799.85262422165601" a="3.4560855502699459" b="0.0037248503144529455" c="-0.0001505186498330399" d="-2.3412706549742391e-05" /> - <width sOffset="804.36067868889086" a="3.4676734953711925" b="0.00094033971563235014" c="-0.00046977872270835628" d="-2.3652781665701167e-05" /> - <width sOffset="805.17170873521377" a="3.4681145148343404" b="0.00013165614529834195" c="-1.4716841264154512e-05" d="1.7454477076738414e-08" /> - <width sOffset="811.43198736726322" a="3.4683662323642839" b="-5.0554728626995548e-05" c="-0.00053342316259106831" d="3.0580419856347025e-05" /> - <width sOffset="814.41518717250199" a="3.4642801055984798" b="-0.0024167208745240333" c="-0.00025985963304555422" d="3.0597446859014979e-05" /> - <width sOffset="818.72935975862413" a="3.4514742699099239" b="-0.0029504326301664501" c="-0.00014680452518437665" d="4.0416970598498817e-05" /> - <width sOffset="822.97597856015409" a="3.4393927027589291" b="-0.0020106671371336762" c="-0.00012327549019380065" d="7.5523628746362603e-06" /> - <width sOffset="824.46969565611312" a="3.4361394540186243" b="-0.0023283922647099327" c="-8.6713401469668336e-05" d="9.787226126122399e-06" /> - <width sOffset="834.52420413972425" a="3.4139106302862832" b="-0.0011038492383406537" c="0.00020181900768059032" d="1.2185893915082882e-05" /> - <width sOffset="836.36263335606031" a="3.4126391117403339" b="-0.00023823086164863523" c="0.00018058553229694232" d="-2.221598210350483e-05" /> - <width sOffset="838.4022179292308" a="3.4127159474272366" b="0.00022115892947437133" c="0.0002862745405918683" d="-2.8791194719246704e-05" /> - <width sOffset="840.53915777287796" a="3.4142148719724617" b="0.0010502358739995182" c="0.00017630978224159434" d="-5.6482486786787429e-06" /> - <width sOffset="844.57871262333538" a="3.4209620627543043" b="0.0021981575228170753" c="0.00010781044885288125" d="-6.4268926617417567e-06" /> - <width sOffset="848.1171502457297" a="3.4298052195506985" b="0.0027197141039212347" c="0.00091596342784009961" d="-0.00019205686683321357" /> - <width sOffset="852.2928576399529" a="3.4431495427510797" b="0.00032288736825628918" c="-0.00029974481416701604" d="1.7364658119525194e-05" /> - <width sOffset="854.63322110694651" a="3.4424860193250728" b="-0.00079480187067818573" c="-0.00018031903367454448" d="2.0026915477230296e-05" /> - <width sOffset="856.51668673803317" a="3.4404831754300043" b="-0.0012609182654400191" c="-0.00011098621982704056" d="1.9167816805716974e-05" /> - <width sOffset="863.23810918562276" a="3.4328143744500004" b="-0.00015502553894804422" c="0.00061514334432131328" d="-3.779463338772884e-05" /> - <width sOffset="864.68772959055764" a="3.4337671768735687" b="0.0013901582983059774" c="0.0004510283145408772" d="-3.7743860411666713e-05" /> - <width sOffset="870.98453196145113" a="3.4509804996745164" b="0.0025806301167576339" c="-0.00026068514915575321" d="-4.0592355759902962e-05" /> - <width sOffset="871.93600542834338" a="3.453164936972672" b="0.001974315118370954" c="-0.00012069360624656714" d="4.8102726432932499e-06" /> - <width sOffset="874.74223807416877" a="3.4578611712252778" b="0.0014105682917274498" c="-8.0448265300147139e-05" d="4.8752441581757498e-06" /> - <width sOffset="884.7967465577799" a="3.4688663764199905" b="0.0012713939928622208" c="6.5593238462061546e-05" d="5.9518285311143594e-06" /> - <width sOffset="886.50888628858877" a="3.4712653343372999" b="0.0015483455436092657" c="0.00040203892746530493" d="-3.9912665905759313e-05" /> - <width sOffset="894.04003831338252" a="3.4886802590478991" b="0.00081264832158236145" c="-0.00071760877148736076" d="-1.8149156232030478e-05" /> - <width sOffset="894.85125504139103" a="3.4888575655685985" b="-0.00038745454379638961" c="-0.00077252657293257307" d="-1.5382176383257934e-05" /> - <width sOffset="896.72806336540521" a="3.4853075428909559" b="-0.003449770120981889" c="-0.00013965052455433268" d="2.0625011497216831e-05" /> - <width sOffset="904.90576352500216" a="3.4590367045688097" b="-0.0015959310419016636" c="0.00036582169654356106" d="2.154520551340041e-05" /> - <width sOffset="905.98786454828769" a="3.4577654016332442" b="-0.00072853437908796954" c="0.00025136188097916079" d="-2.5643071851575167e-06" /> - <width sOffset="911.88333228642159" a="3.4616813778582163" b="0.0019678780061132255" c="-0.0006189966738280317" d="3.0519171029825505e-05" /> - <width sOffset="914.96027200861329" a="3.4627650901084293" b="-0.00097452683064087973" c="-0.00033712451571703115" d="3.0725244384082274e-05" /> - <width sOffset="919.86148597442934" a="3.4535078363697247" b="-0.0020649295088651584" c="-0.00088718873357255677" d="0.00035793651893734996" /> - <width sOffset="922.540175909239" a="3.4484903753311977" b="0.00088705479674160669" c="-0.0020277625295248378" d="0.0018047626907819665" /> - <width sOffset="923.05565685338911" a="3.4486560222899207" b="0.00023519680590371357" c="0.0016700553835451346" d="-0.0034045675573979237" /> - <width sOffset="923.45369038689478" a="3.4487995320270919" b="-5.349110372391587e-05" c="0.0055432692019537289" d="-0.0023599476247638447" /> - <roadMark sOffset="0" color="standard" width="0.15832252088411014" weight="standard" type="solid"> - <type name="solid"> - <line length="925.01478049222453" space="0" width="0.15832299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="1000.0" unit="km/h" /> - <speed sOffset="842.59183785908601" max="100" unit="km/h" /> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4930358723659118" b="-0.00013924600432535124" c="0.00010222948440938642" d="-1.1320642978153135e-05" /> - <width sOffset="7.3727141606921638" a="2.4930292925514372" b="-0.00047789412323137256" c="3.7137736089138719e-05" d="-3.5249156762233037e-07" /> - <width sOffset="10.054508483611135" a="2.4920079754865139" b="-0.00028630796366164307" c="3.1808865353042537e-05" d="-7.4368401169853695e-07" /> - <width sOffset="20.109016967222271" a="2.4915890361953519" b="0.0001277929918111799" c="7.0798652561819206e-06" d="-6.8760400192464784e-07" /> - <width sOffset="30.163525450833404" a="2.4928907482527016" b="6.1625977731457476e-05" c="-1.155303777652006e-05" d="-3.9249648151122637e-06" /> - <width sOffset="31.875861467996952" a="2.4929426918403763" b="-1.246449248331824e-05" c="0.0007553154933559454" d="-0.00013652145970155651" /> - <width sOffset="37.418342294521018" a="2.4928320729744762" b="-0.0042212677556509688" c="-0.0039744969193699162" d="0.0034958572340339166" /> - <width sOffset="38.169585304595223" a="2.488899963680641" b="-0.0042740642916891877" c="0.0062630904062013172" d="-0.0015672846726110896" /> - <width sOffset="40.218033934444541" a="2.4929538557264479" b="0.0016555275000960136" c="-0.0034462532453829907" d="-0.0015573066042591018" /> - <width sOffset="40.419804745934677" a="2.4931347985360865" b="7.4620193916966754e-05" c="0.0021021014761959489" d="-0.001811031667878336" /> - <width sOffset="41.714497609167161" a="2.4928247080290706" b="-0.003589342967652666" c="0.00033167534488499819" d="0.00014381250870850257" /> - <width sOffset="44.832867799550151" a="2.4892180317284325" b="0.0026746289246079502" c="0.00067219117511963574" d="-0.00055035757497618083" /> - <width sOffset="46.583197081790296" a="2.4930076353653661" b="-3.0572521594638552e-05" c="0.00062542301591044023" d="-0.00018596245970314536" /> - <width sOffset="48.651825741104645" a="2.4939745544643657" b="0.00016963807048173823" c="-3.0157265873503053e-05" d="1.1370045775529259e-05" /> - <width sOffset="50.272542418055679" a="2.4942186791963277" b="0.00016148316981250046" c="6.3880204242518289e-06" d="-2.4397338837744684e-06" /> - <width sOffset="59.089656591581537" a="2.4944667795439219" b="-0.0002948747517099639" c="-0.00048674902255041203" d="6.5885716975716533e-05" /> - <width sOffset="60.327050901666809" a="2.4934814490653192" b="-0.001196833998776568" c="-0.00025834089838179254" d="5.5978558555834633e-05" /> - <width sOffset="63.644342535172093" a="2.4887117996559205" b="-0.0010627828572483573" c="0.0012334327479266447" d="-0.00017370802064091756" /> - <width sOffset="67.894807093331963" a="2.4931390505297504" b="7.6802359745241355e-06" c="0.0015607673626787805" d="-0.00040473326861661658" /> - <width sOffset="70.381559385277953" a="2.4965858807682793" b="0.0002616288106022744" c="-0.0014597471122765803" d="-0.00040396206739923632" /> - <width sOffset="71.332412212166489" a="2.4951675825247097" b="-0.0036100724101744983" c="-0.0042968493819150657" d="0.0079688489403307236" /> - <width sOffset="71.689586754755837" a="2.493693100847743" b="-0.0036296773058383559" c="0.0035087706043943055" d="-0.00093633573647530701" /> - <width sOffset="73.439756870632863" a="2.4930686093996997" b="4.7956446026554272e-05" c="0.00099803575713883685" d="-0.00070083605589285527" /> - <width sOffset="74.850934095398856" a="2.4931542707146193" b="-0.0013222121475777553" c="0.00036584623407822449" d="-2.8855513100308268e-05" /> - <width sOffset="80.436067868889083" a="2.4921544046252642" b="6.4055843196804407e-05" c="-0.00012272582675741404" d="-2.8946649695383041e-05" /> - <width sOffset="81.071617969263755" a="2.4921381124173951" b="-0.00012701771336905837" c="-0.00020651087931470932" d="3.760329829572807e-05" /> - <width sOffset="84.905096462170704" a="2.4907347859584892" b="-5.2523461585921027e-05" c="0.00011680632460826478" d="-9.2131017509717362e-06" /> - <width sOffset="90.490576352500213" a="2.4924800774248101" b="0.00039003570104193495" c="-3.5276662821763613e-05" d="-9.6590277623525147e-06" /> - <width sOffset="93.15623492423839" a="2.4930861566580358" b="-3.9388691291664113e-06" c="5.7862920514046209e-05" d="-2.4804643120945038e-06" /> - <width sOffset="100.54508483611136" a="2.4952154780956466" b="0.00044487838718461174" c="3.9794888388447393e-06" d="-2.3676930734088827e-06" /> - <width sOffset="110.59959331972249" a="2.4976841883299592" b="-0.0001931705922924333" c="-6.9016534367044745e-05" d="-2.2237998567149798e-06" /> - <width sOffset="110.7820181871263" a="2.4976466389201679" b="-0.00021857327291061046" c="-8.1914264739393523e-05" d="5.7025710876540942e-06" /> - <width sOffset="120.65410180333362" a="2.4929921847571386" b="-0.0001686180979687305" c="8.7878801554033611e-05" d="6.2674616909448444e-06" /> - <width sOffset="122.43529528843202" a="2.4930060700769943" b="0.00020409359099413061" c="-0.00014889852558289498" d="2.5770283214407793e-05" /> - <width sOffset="123.43544460305584" a="2.4930870329763621" b="-1.6413986986996316e-05" c="-0.00025027588032444588" d="2.7959129069715766e-05" /> - <width sOffset="129.3703125271737" a="2.4900188637690572" b="-3.2738112686458293e-05" c="0.00035136495767187849" d="-1.994360197143035e-05" /> - <width sOffset="130.70861028694475" a="2.4905565556967399" b="0.00080056433863806911" c="0.00025472513146186122" d="-3.0941983718602041e-05" /> - <width sOffset="139.53835379648655" a="2.4961841894905206" b="-0.0019382373516332345" c="-0.00064863244631168401" d="0.00074074628896778972" /> - <width sOffset="140.07956632080629" a="2.4950626279453942" b="-0.0019894151579609369" c="0.00022485234910715919" d="-1.0030017827240195e-05" /> - <width sOffset="140.76311877055591" a="2.4938046157959661" b="-0.001696077805334398" c="0.00020399670134663882" d="-9.7110800011637127e-06" /> - <width sOffset="147.01157508987313" a="2.4888023201859344" b="-0.00028420395184594778" c="0.00030566602398074307" d="-2.5353362708853674e-05" /> - <width sOffset="150.81762725416704" a="2.4907506658045211" b="0.00094074875993496732" c="1.9302051080232172e-05" d="-2.4768788819269572e-05" /> - <width sOffset="155.05091850242815" a="2.4931999828133868" b="-0.00022745500506167297" c="0.00016465145900150752" d="-1.7429275886360942e-05" /> - <width sOffset="155.80100548811114" a="2.4931146541702081" b="-9.8678978098431722e-06" c="1.9373568662350355e-05" d="-1.3886756968700052e-06" /> - <width sOffset="160.87213573777817" a="2.4933817318643783" b="7.9488821564888991e-05" c="2.5597936118571256e-06" d="-6.5797436655322503e-07" /> - <width sOffset="169.79024615614583" a="2.4938275202910472" b="-3.1845555026039848e-05" c="-0.00033712668535010987" d="0.00010395502822442131" /> - <width sOffset="170.9266442213893" a="2.4935085241651471" b="-0.00039532303515067897" c="1.1952709238160792e-05" d="9.8898941958685247e-05" /> - <width sOffset="172.04051098908153" a="2.493219692415277" b="-5.8407649050845958e-07" c="-0.00057603399792872695" d="8.259374935216612e-05" /> - <width sOffset="177.40235370790856" a="2.4893877412779215" b="0.00094576017121084728" c="0.00083757655021535226" d="-0.00015019112746996415" /> - <width sOffset="180.98115270500043" a="2.4966156985571111" b="0.001169941620763697" c="-0.00078752961403418518" d="-0.00014988686596131633" /> - <width sOffset="181.57783280046277" a="2.4970015564095256" b="7.0043755228857283e-05" c="-0.00017845112969938222" d="7.8800653054320952e-06" /> - <width sOffset="188.76211729345025" a="2.4912162052634237" b="-0.0012738798719657532" c="0.00039092752829392467" d="-2.9458243270404958e-05" /> - <width sOffset="191.03566118861158" a="2.4899944966935212" b="4.689277755091795e-05" c="0.00020390650909835829" d="-2.1214233023679631e-05" /> - <width sOffset="197.51304378766025" a="2.4930880855200233" b="1.8229755065073214e-05" c="0.00015230889472086736" d="-3.7274244637675829e-05" /> - <width sOffset="200.45612416525617" a="2.493510794049465" b="-5.3833052786038111e-05" c="-7.9800820972773367e-05" d="8.9980790214040892e-06" /> - <width sOffset="201.09016967222271" a="2.4934468739857394" b="-0.00014417570348061455" c="-6.6575182963345841e-05" d="7.6654379738852561e-06" /> - <width sOffset="210.30611244359181" a="2.4924637584242699" b="0.00058187789904248842" c="-0.00010687547602884016" d="-1.3610956525789782e-05" /> - <width sOffset="211.14467815583384" a="2.4928685212362112" b="0.00037392031392863463" c="-0.00012371726308957158" d="-2.2057602595124369e-05" /> - <width sOffset="212.30630140156603" a="2.4931013612158957" b="-2.7968901511642641e-06" c="-1.1620597465702062e-05" d="3.1626538957572873e-07" /> - <width sOffset="221.19918663944497" a="2.492379915362763" b="-0.00013444413508663253" c="-2.7877403641798911e-06" d="3.0353012215647333e-07" /> - <width sOffset="223.4738681627411" a="2.4920632459423082" b="-0.0001424150232338092" c="-1.7947190932789394e-05" d="3.4800701440798091e-07" /> - <width sOffset="231.2536951230561" a="2.4900328846553936" b="-0.00035847699067481935" c="-7.779247232358556e-06" d="2.2164393315884765e-07" /> - <width sOffset="231.25849793449663" a="2.4900311627785836" b="-0.00035855169972418406" c="3.7594152186361948e-05" d="-6.5403163470573693e-07" /> - <width sOffset="241.30820360666723" a="2.4895608717647413" b="0.00019890374621913201" c="1.8557383383227155e-05" d="-6.3888938020441864e-07" /> - <width sOffset="251.36271209027839" a="2.4927873814420103" b="0.00037831248124430689" c="-1.239992938573007e-06" d="-5.7401593549448071e-07" /> - <width sOffset="261.41722057388949" a="2.4958823188983761" b="0.00017929022075722362" c="-1.9652067851517408e-05" d="-6.0216033165727356e-07" /> - <width sOffset="271.3452708172174" a="2.4951360358909636" b="-0.00038898114714151067" c="4.1162042708366578e-06" d="1.8062076959270676e-06" /> - <width sOffset="271.47172905750068" a="2.4950869154973034" b="-0.00038785343831391464" c="5.2839019127588531e-06" d="1.5036046892871529e-06" /> - <width sOffset="279.59574333010102" a="2.4930909294867014" b="-4.2884894104561484e-06" c="-1.7979034150210673e-05" d="-1.1512539868302018e-06" /> - <width sOffset="281.42720246304265" a="2.4930156969168245" b="-8.1728977345341445e-05" c="1.4894534125316923e-05" d="-3.7342975431041038e-06" /> - <width sOffset="281.52623754111181" a="2.4930077453387316" b="-7.8888692046103591e-05" c="2.3817642259499394e-05" d="-6.0358629749433995e-07" /> - <width sOffset="291.58074602472294" a="2.4940088482106777" b="0.0002170053765122214" c="6.0437965502355218e-06" d="-6.084560084174179e-07" /> - <width sOffset="301.63525450833407" a="2.4961832568395703" b="0.00015400799701298926" c="-1.2899739892726491e-05" d="-5.2429912449120256e-07" /> - <width sOffset="311.6897629919452" a="2.4958947367622102" b="-0.00026440222707756032" c="-3.3707609163903423e-05" d="-5.8874802718530065e-07" /> - <width sOffset="312.54349720363808" a="2.4956440729852485" b="-0.00032324425372731128" c="-2.0105944185865047e-05" d="2.707101580565913e-06" /> - <width sOffset="321.74427147555633" a="2.493076441787645" b="-5.7218224704843864e-06" c="5.3746059721136514e-05" d="3.0737991244367373e-06" /> - <width sOffset="321.79377751739781" a="2.4930762906192605" b="-3.777127675063394e-07" c="-5.3186000051560642e-07" d="1.7462474967634145e-06" /> - <width sOffset="328.79002738212569" a="2.4936456155758826" b="0.00024860364811694246" c="-9.6029426646511487e-06" d="1.7497024296578759e-06" /> - <width sOffset="331.79877995916746" a="2.4943543275822826" b="0.00023833591815489367" c="-1.063794062825723e-07" d="-3.831317892908116e-07" /> - <width sOffset="341.85328844277859" a="2.4963504926832751" b="0.00012000074505590325" c="-9.1194712451115893e-06" d="-4.1146116360630199e-07" /> - <width sOffset="351.90779692638972" a="2.4962168988582878" b="-0.00018817056103995113" c="-2.027889627356209e-05" d="-3.2389622195575358e-07" /> - <width sOffset="358.76834793425684" a="2.4938668868229836" b="-0.00051215399161103168" c="0.00012698787432788143" d="-1.0644849975532542e-05" /> - <width sOffset="361.96230541000085" a="2.4931797001194216" b="-2.6742229906109296e-05" c="7.4651552709785126e-06" d="9.4609514958905235e-06" /> - <width sOffset="363.01836247585129" a="2.4931709272294569" b="2.0679193746483493e-05" c="-1.9824491992266045e-05" d="-9.3538633218404318e-06" /> - <width sOffset="365.87223172373376" a="2.492851064120261" b="-0.00032102339727307157" c="2.2194677323918182e-05" d="-2.4451224519918636e-06" /> - <width sOffset="372.01681389361198" a="2.4911492351230606" b="-0.00032522268348419373" c="-2.8599071731136583e-06" d="-7.7470759352649667e-06" /> - <width sOffset="374.47327519520928" a="2.4902182476954504" b="-0.0004795154523158018" c="6.6214116415314143e-05" d="-1.7568497678522482e-06" /> - <width sOffset="382.07132237722317" a="2.4896268083122663" b="0.00022241000592618156" c="2.6089243746086846e-05" d="-1.7012487932427579e-06" /> - <width sOffset="392.1258308608343" a="2.4927712547387273" b="0.00023108529946561703" c="-2.4946840152425184e-05" d="-1.7439498910086183e-06" /> - <width sOffset="395.48183214406288" a="2.4931998899670464" b="4.7170576155600033e-06" c="-8.9870061824506606e-05" d="2.9228877120116459e-05" /> - <width sOffset="397.48180009092016" a="2.4930836749807614" b="-4.0221454540616741e-06" c="-0.00010593396897822492" d="2.9675492283463217e-05" /> - <width sOffset="399.75021455577945" a="2.492875836069036" b="-2.6522526107765278e-05" c="7.342400645056436e-05" d="-3.383668103980383e-06" /> - <width sOffset="402.18033934444543" a="2.493196429548135" b="0.00027038964837488623" c="4.9027954667374392e-05" d="-3.2736570055517135e-06" /> - <width sOffset="412.23484782805656" a="2.4975439725305151" b="0.00026346081440902446" c="-5.1686390164659891e-05" d="-2.7848848526199522e-06" /> - <width sOffset="417.49678928244077" a="2.497093456079396" b="-0.00051180461189727583" c="-4.5865202919859872e-05" d="6.0479046685174505e-06" /> - <width sOffset="422.28935631166769" a="2.4942528816117342" b="-0.00053469122967497761" c="3.0222772429341128e-05" d="8.2285106428940174e-06" /> - <width sOffset="425.99651229546362" a="2.493105271305776" b="2.8643234420643965e-05" c="-0.0002663754123917559" d="2.0722858693606942e-05" /> - <width sOffset="431.49270158275419" a="2.4886566098879577" b="-0.0010214617847350037" c="0.0024155797560802034" d="-0.00039787180917117684" /> - <width sOffset="432.34386479527882" a="2.4892918680137015" b="0.0022258943761186128" c="0.0013891302354378072" d="-0.00039937065242631888" /> - <width sOffset="435.50802976599306" a="2.4975910190292776" b="-0.00097865614632539457" c="-0.00014877465753173014" d="3.2759928777994945e-05" /> - <width sOffset="440.50781205552619" a="2.493073365021079" b="-9.5572444170650278e-06" c="-0.0001143024852680018" d="1.5385733007915239e-05" /> - <width sOffset="442.39837327888995" a="2.4927507198209238" b="-0.0002767728730017514" c="-2.4044244049037702e-05" d="1.6351152170227004e-05" /> - <width sOffset="446.27748654673144" a="2.4922697139109395" b="0.00027481929018110867" c="-1.7993632179073808e-05" d="2.7835242186410537e-07" /> - <width sOffset="452.45288176250108" a="2.4933461878739482" b="8.4429041454509544e-05" c="-1.2346705119982788e-05" d="3.7646686722656469e-07" /> - <width sOffset="462.50739024611221" a="2.4933295698639046" b="-4.9676407194571915e-05" c="-1.4771507995071448e-07" d="2.6568458769561172e-07" /> - <width sOffset="470.02617719258552" a="2.4930606429860394" b="-6.838515033975325e-06" c="-2.6178523182836998e-05" d="-2.0495088530290582e-06" /> - <width sOffset="472.56189872972334" a="2.4928415615552169" b="-0.00017913571590519572" c="-3.5758057861982206e-05" d="2.5383895678802647e-06" /> - <width sOffset="476.76795183997564" a="2.4916443941131874" b="-0.0003452172400960653" c="-1.2938163861139464e-05" d="1.2835816863149816e-06" /> - <width sOffset="482.61640721333447" a="2.4894396356059527" b="-0.00036484124720991332" c="8.6457251685900558e-06" d="9.4962322429618831e-07" /> - <width sOffset="486.3142090929706" a="2.4882567599305894" b="-0.00026194619003622362" c="0.0017423704392451774" d="-0.000273988752173314" /> - <width sOffset="490.52659245305421" a="2.4975909047319398" b="-0.0001679936255538101" c="-2.9586382969544753e-05" d="5.8069545758832594e-07" /> - <width sOffset="492.67091569694566" a="2.497100355868314" b="-0.00028686883697632377" c="-2.4959491751500576e-05" d="9.7677816013571446e-07" /> - <width sOffset="502.72542418055679" a="2.4926856354907354" b="-0.00049254296374397926" c="4.2984566623679563e-06" d="9.6526881774283282e-07" /> - <width sOffset="512.77993266416786" a="2.4891490421834206" b="-0.0001133590561465677" c="3.2824301661688911e-05" d="9.9211214500550477e-07" /> - <width sOffset="522.34841734636757" a="2.4919387672957587" b="0.00078729975753327481" c="-0.00017675698799067725" d="1.3784448156133298e-05" /> - <width sOffset="522.83444114777899" a="2.4922812429004679" b="0.00062525200234051859" c="-0.00016439792537242847" d="1.4333404070446861e-05" /> - <width sOffset="526.34804011374217" a="2.4930703090672246" b="8.4910180411660111e-07" c="-4.669865260148541e-05" d="1.0382361885319174e-05" /> - <width sOffset="531.67737551077118" a="2.4933200110752836" b="0.0003877373258979798" c="-0.00012255407325242776" d="5.5416735542974045e-06" /> - <width sOffset="532.88894963139012" a="2.4936197407863752" b="0.00011517470367834845" c="-0.0001022654079829684" d="5.8076700732739047e-06" /> - <width sOffset="542.94345811500136" a="2.4903425933972478" b="-0.00017993529447960237" c="7.3374583263688858e-05" d="5.6666598748210725e-06" /> - <width sOffset="547.12838406530363" a="2.4912899582984771" b="0.00073193003241858669" c="-6.1642360980312824e-05" d="-2.8259293160326903e-06" /> - <width sOffset="551.62786689323957" a="2.493077869968106" b="5.5767950665838338e-06" c="1.2320542504894463e-05" d="5.3382506570955041e-06" /> - <width sOffset="552.99796659861249" a="2.4931223680496331" b="6.9400001636317119e-05" c="2.3104691086196415e-05" d="-8.4924184854030499e-07" /> - <width sOffset="563.05247508222362" a="2.4952926717959798" b="0.00027645504928826254" c="-2.6883978366300974e-06" d="-8.8913928751083815e-07" /> - <width sOffset="573.10698356583475" a="2.49689675447779" b="-4.7263638098487702e-05" c="-2.8545173391383251e-05" d="-1.1166985376729536e-06" /> - <width sOffset="576.86933536232721" a="2.4962553945866777" b="-0.00030947918529391013" c="-0.0012708243296953141" d="0.00022767121969848698" /> - <width sOffset="580.64502674043979" a="2.4892247780513035" b="-0.000169022996373119" c="7.1628553201088792e-05" d="-3.1902328002860497e-06" /> - <width sOffset="583.16149204944588" a="2.4892021935606774" b="0.00013087115994087013" c="4.9486810177643337e-05" d="-2.8141969647349511e-06" /> - <width sOffset="593.21600053305701" a="2.4926603482725422" b="0.00027251423507505942" c="-3.0188874280572759e-05" d="-3.8533689471860444e-06" /> - <width sOffset="596.14296816697458" a="2.493102730241878" b="-3.2465290619447962e-06" c="-2.3296105519946007e-05" d="-1.4538931637553734e-06" /> - <width sOffset="601.4206233147703" a="2.4922229896580301" b="-0.00037063281868014264" c="5.1920769108931359e-05" d="-1.3049745227412651e-06" /> - <width sOffset="603.27050901666814" a="2.4917067771036603" b="-0.00019193501219648195" c="4.4353560166744581e-05" d="-1.4386483785939323e-06" /> - <width sOffset="613.32501750027927" a="2.4927985031919047" b="0.0002636590322548898" c="6.5378225063457356e-07" d="-1.4870387581156044e-06" /> - <width sOffset="623.3795259838904" a="2.4940040696547889" b="-0.00017418230523312647" c="-4.4031108685039151e-05" d="-1.5122000049871497e-06" /> - <width sOffset="624.92337684766778" a="2.4936246465953023" b="-0.00032095011052393134" c="4.5614917726213661e-05" d="7.9561444091304119e-07" /> - <width sOffset="628.1728791946482" a="2.4930906778926154" b="7.0476625064127147e-07" c="0.00012424195123430338" d="-2.9169689963110677e-06" /> - <width sOffset="631.00815461854654" a="2.4940249465816251" b="0.00063487839318276474" c="-0.00016655769095683836" d="6.8916333305293463e-06" /> - <width sOffset="633.43403446750153" a="2.4946832963424761" b="-5.1549924079376513e-05" c="-0.00011623908370236209" d="7.157068059423236e-06" /> - <width sOffset="643.48854295111266" a="2.4896887565764896" b="-0.00021841216235635153" c="9.7014288148056119e-05" d="8.2575190871468362e-06" /> - <width sOffset="645.53332971488476" a="2.4897183800564662" b="0.00028191275211471626" c="6.169445123274649e-05" d="-5.709687464265976e-06" /> - <width sOffset="653.54305143472379" a="2.4930004394079877" b="0.00017129752900977202" c="-7.6553944536208603e-05" d="-5.9447013398718179e-06" /> - <width sOffset="654.5318615585104" a="2.4930892225023964" b="2.4656839957072933e-06" c="-7.7849461334109606e-05" d="5.1786699756082384e-06" /> - <width sOffset="663.59755991833492" a="2.4905719021073338" b="-0.00013219749543994246" c="6.2507698130387582e-05" d="5.0476043692644079e-06" /> - <width sOffset="669.02772070891388" a="2.4925053992615229" b="0.00099316698031215326" c="-0.00056434906598717743" d="0.00010088109764836102" /> - <width sOffset="670.52754502110633" a="2.4930658413609432" b="-1.8894012889864725e-05" c="-0.00052830808259811835" d="9.4604367015235427e-05" /> - <width sOffset="673.65206840194605" a="2.4907348969570311" b="-0.00054954898850657474" c="0.00035522986647226447" d="9.6771715987177016e-05" /> - <width sOffset="674.76558360735191" a="2.4906970304016554" b="0.00060152515665817374" c="-2.4455589341195564e-05" d="1.8835814879698344e-07" /> - <width sOffset="683.70657688555718" a="2.4942548796534734" b="0.0002093834570294341" c="-1.9829106402954491e-05" d="2.1180098746048005e-07" /> - <width sOffset="693.76108536916831" a="2.494570824137929" b="-0.00012512549890215377" c="-1.4667557585541873e-05" d="2.254395067450929e-07" /> - <width sOffset="703.81559385277944" a="2.4920591054303873" b="-0.00035170449983314362" c="-8.3147681855526565e-06" d="1.293939581252589e-07" /> - <width sOffset="708.90181420580882" a="2.4900721842921829" b="-0.00042624386181839907" c="0.00010992356294277125" d="-4.3703786692844465e-06" /> - <width sOffset="713.87010233639057" a="2.4901318541193795" b="0.00034238620527695957" c="4.4706919650091474e-05" d="-4.3463495716518322e-06" /> - <width sOffset="722.35431545944687" a="2.4936004622647818" b="0.00016241713430948171" c="-8.2354535568548702e-05" d="7.3697220316091309e-06" /> - <width sOffset="723.9246108200017" a="2.4936809691920718" b="-4.1707365747899183e-05" c="-4.8960954586833156e-05" d="6.471901841667069e-06" /> - <width sOffset="729.35484899737708" a="2.4930470600682" b="-9.2629762179271408e-07" c="-2.5648105845388432e-05" d="2.1733604165319721e-06" /> - <width sOffset="733.97911930361283" a="2.4927092330643941" b="-9.8709238093851702e-05" c="3.9887692747633359e-06" d="2.3366663004789647e-06" /> - <width sOffset="739.79099113998222" a="2.4927289966334545" b="0.00018443791465631897" c="-0.00024594398302257468" d="2.4449373758930068e-05" /> - <width sOffset="744.03362778722396" a="2.4909516494339528" b="-0.00058220032777515918" c="5.7455444875269e-05" d="2.4961358798102069e-05" /> - <width sOffset="746.98806113285718" a="2.4903767981815186" b="0.00041093510657369634" c="8.8552138229370606e-05" d="-1.3662389650377342e-05" /> - <width sOffset="752.9889799977185" a="2.493079207682964" b="-2.2665566571585275e-06" c="0.00014172676060718781" d="-2.5322394873876319e-05" /> - <width sOffset="754.08813627083521" a="2.4932143161797029" b="0.00021751382206912861" c="7.5016017144515396e-05" d="-1.197032197405584e-05" /> - <width sOffset="758.03054794513275" a="2.4945043040306594" b="0.00025085173435318358" c="-2.2817203369368324e-05" d="5.370735048835959e-07" /> - <width sOffset="764.14264475444634" a="2.4953077674187849" b="3.212135930679089e-05" c="-1.2970341095153641e-05" d="3.0634046044010408e-07" /> - <width sOffset="774.19715323805747" a="2.4946308966412456" b="-0.00013579269190377302" c="-4.2308269273302287e-06" d="4.4102388069199723e-07" /> - <width sOffset="784.2516617216686" a="2.4932861354118003" b="-8.7116994508369683e-05" c="6.7649418528509649e-06" d="5.5533951618884556e-07" /> - <width sOffset="788.53726183738263" a="2.4930807455028585" b="1.46538701039289e-06" c="0.00031592968298992449" d="-5.9323717210598941e-06" /> - <width sOffset="789.03250431483229" a="2.4931582371739793" b="0.00031002397337639368" c="0.00041383426138975746" d="-7.4331076242790256e-05" /> - <width sOffset="791.60464550040274" a="2.4954286569124591" b="0.00096360107483520435" c="-0.00030790727239103275" d="1.5676143450069691e-05" /> - <width sOffset="794.30617020527973" a="2.4960937457169674" b="-0.00035681256075397426" c="-0.00018060116261410972" d="1.5711358270233104e-05" /> - <width sOffset="804.36067868889086" a="2.4902183139734575" b="0.00077640725946966365" c="0.00029755461810469899" d="1.5346075184962902e-05" /> - <width sOffset="805.17170873521377" a="2.4910519126980546" b="0.0012893412823552562" c="-0.00017771822894450959" d="-8.3241609445646826e-06" /> - <width sOffset="808.17274140376651" a="2.4930957180930609" b="-2.2422412821656948e-06" c="1.865095634948014e-05" d="-3.0584019300892974e-06" /> - <width sOffset="814.41518717250199" a="2.4930645379552718" b="-0.00012692767863574275" c="-3.8583963233731404e-05" d="-3.0634212383357562e-06" /> - <width sOffset="818.72935975862413" a="2.491552842338681" b="-0.00063089340190870119" c="0.00020472054446017487" d="-1.2882944977839866e-05" /> - <width sOffset="824.46969565611312" a="2.4922403020441486" b="0.00044590058661375231" c="-2.2612255339998216e-05" d="-1.0967074988273507e-05" /> - <width sOffset="827.48275839150017" a="2.4930785461500182" b="1.0940979999810117e-05" c="0.00010759381440097614" d="-1.0883360456016398e-05" /> - <width sOffset="834.52420413972425" a="2.4946906053285112" b="-9.2681976540595406e-05" c="-0.00011815263241600797" d="-1.3870903621116004e-05" /> - <width sOffset="836.36263335606031" a="2.4940346934703879" b="-0.00066775603435039691" c="-0.00010621247025229205" d="2.0530972397341442e-05" /> - <width sOffset="840.53915777287796" a="2.4908888269197895" b="-0.00048056679086723041" c="7.6421457228549637e-05" d="-2.6119736430947253e-06" /> - <width sOffset="844.57871262333538" a="2.4900224219133005" b="8.9839613009224956e-06" c="4.5411369826015152e-05" d="-2.2724820976883329e-06" /> - <width sOffset="854.63322110694651" a="2.4923936833443623" b="0.00023296490931405092" c="-2.0352990924257279e-05" d="-3.8475560038726548e-06" /> - <width sOffset="856.51668673803317" a="2.4927345562798013" b="0.00011534963718654425" c="1.7339977321039789e-06" d="-2.9884573324159504e-06" /> - <width sOffset="860.2685208013138" a="2.4930339114054121" b="2.1620838816867501e-06" c="4.5998151069338749e-05" d="-2.2457345288634919e-06" /> - <width sOffset="864.68772959055764" a="2.4937479656381445" b="0.00027713936455141816" c="1.5818837488841602e-05" d="-2.2442108368684624e-06" /> - <width sOffset="870.98453196145113" a="2.495559965768523" b="0.00020940855679029173" c="-2.785864434687772e-05" d="6.0428450963926297e-07" /> - <width sOffset="874.74223807416877" a="2.4959855510518345" b="2.5637496289290709e-05" c="-2.2081042291262307e-05" d="4.5705753087761489e-07" /> - <width sOffset="884.7967465577799" a="2.4944756539560835" b="-0.00027977441376798168" c="-8.2674737189617345e-06" d="4.0997138947825351e-07" /> - <width sOffset="894.04003831338252" a="2.491507025056336" b="-0.0003275298061658923" c="0.00022098361677203607" d="-2.1353538283708274e-05" /> - <width sOffset="894.85125504139103" a="2.4913753512955576" b="-1.1155127162315072e-05" c="0.00017846324065120295" d="-2.1829685037153753e-05" /> - <width sOffset="900.29365662352041" a="2.493081674866815" b="-8.3863371839144538e-06" c="0.00017206683677787137" d="-2.215000116091367e-05" /> - <width sOffset="904.90576352500216" a="2.4945300604222371" b="0.00016530170637357418" c="-0.00013200666237749741" d="-2.2688824004536964e-05" /> - <width sOffset="905.98786454828769" a="2.4945256128255888" b="-0.00020008931589148447" c="-2.1259379031473343e-05" d="1.4206886940187314e-06" /> - <width sOffset="914.96027200861329" a="2.4920450484052026" b="-0.00023847116247021575" c="1.700358695340824e-05" d="1.4089977901592367e-06" /> - <width sOffset="919.86148597442934" a="2.4914505990675142" b="2.9745678244895435e-05" c="0.001039558194387223" d="-0.00032580227676346656" /> - <width sOffset="921.8627076104774" a="2.4930622436647045" b="0.00027611345780752423" c="0.003664708797904519" d="-0.0015854133508711478" /> - <width sOffset="923.05565685338911" a="2.4959153954091207" b="0.0022509987299857096" c="-0.0029160997576024683" d="0.0036239168973194735" /> - <width sOffset="923.45369038689478" a="2.496577895520657" b="0.0016520067537132855" c="-0.006527388397483385" d="0.002579296964685274" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659144" type="poles" s="841.24711840620012" t="-11.932325858658276" zOffset="-2.1170665561053794" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.7829334438946205" name="SgPoleSign01.flt" /> - <object id="276661142" type="poles" s="842.59189572555249" t="11.190668688254274" zOffset="-1.678289403386509" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.2217105966134909" name="SgPoleSign01.flt" /> - <object id="277422286" type="poles" s="739.06606904843864" t="-10.633583576870835" zOffset="-2.4478136180867067" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.4521863819132932" name="SgPoleSign01.flt" /> - <object id="277422274" type="poles" s="741.32632166252597" t="11.225045416583313" zOffset="-1.3978125371963528" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.5021874628036471" name="SgPoleSign01.flt" /> - <object id="5181510" s="0" t="10.647756527251792" orientation="none" validLength="112.78954151165766" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="112.78954151165766" s="0" distance="0" tStart="10.647756527251792" tEnd="10.34282869076417" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616966" s="112.78954151165766" t="10.34282869076417" orientation="none" validLength="15.165511268580488" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="15.165511268580488" s="112.78954151165766" distance="0" tStart="10.34282869076417" tEnd="10.398121137799215" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542052422" s="127.95505278023815" t="10.398121137799215" orientation="none" validLength="12.497802645485294" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="12.497802645485294" s="127.95505278023815" distance="0" tStart="10.398121137799215" tEnd="10.328625512109816" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487878" s="140.45285542572344" t="10.328625512109816" orientation="none" validLength="103.88367272101888" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="103.88367272101888" s="140.45285542572344" distance="0" tStart="10.328625512109816" tEnd="10.250074594353496" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078923334" s="244.33652814674232" t="10.250074594353496" orientation="none" validLength="67.922401692801003" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="67.922401692801003" s="244.33652814674232" distance="0" tStart="10.250074594353496" tEnd="10.340256574780749" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741824" s="312.25892983954333" t="10.340256574780749" orientation="none" validLength="40.528765837996389" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="40.528765837996389" s="312.25892983954333" distance="0" tStart="10.340256574780749" tEnd="10.31263642649372" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741825" s="352.78769567753972" t="10.31263642649372" orientation="none" validLength="100.45658002814474" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="100.45658002814474" s="352.78769567753972" distance="0" tStart="10.31263642649372" tEnd="10.507687190299823" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741826" s="453.24427570568446" t="10.507687190299823" orientation="none" validLength="166.01617558052089" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="166.01617558052089" s="453.24427570568446" distance="0" tStart="10.507687190299823" tEnd="10.476983683302951" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741827" s="619.26045128620535" t="10.476983683302951" orientation="none" validLength="173.96203344453374" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="173.96203344453374" s="619.26045128620535" distance="0" tStart="10.476983683302951" tEnd="10.184891417815825" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741828" s="793.2224847307391" t="10.184891417815825" orientation="none" validLength="69.943031052880883" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="69.943031052880883" s="793.2224847307391" distance="0" tStart="10.184891417815825" tEnd="10.225389115291355" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741829" s="863.16551578361998" t="10.225389115291355" orientation="none" validLength="61.849264708604551" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="61.849264708604551" s="863.16551578361998" distance="0" tStart="10.225389115291355" tEnd="10.511973213146163" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5181885" s="0" t="-11.829627160157392" orientation="none" validLength="79.422750010872093" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="79.422750010872093" s="0" distance="0" tStart="-11.829627160157392" tEnd="-10.72164229212167" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273617341" s="79.422750010872093" t="-10.72164229212167" orientation="none" validLength="41.01906291479844" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="41.01906291479844" s="79.422750010872093" distance="0" tStart="-10.72164229212167" tEnd="-10.454972234292491" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542052797" s="120.44181292567053" t="-10.454972234292491" orientation="none" validLength="46.713663525836338" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="46.713663525836338" s="120.44181292567053" distance="0" tStart="-10.454972234292491" tEnd="-10.281390919034308" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810488253" s="167.15547645150687" t="-10.281390919034308" orientation="none" validLength="87.939616725189865" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="87.939616725189865" s="167.15547645150687" distance="0" tStart="-10.281390919034308" tEnd="-10.26689316098871" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078923709" s="255.09509317669674" t="-10.26689316098871" orientation="none" validLength="1.4964389244406391" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.4964389244406391" s="255.09509317669674" distance="0" tStart="-10.26689316098871" tEnd="-10.381646367739975" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741830" s="256.59153210113737" t="-10.381646367739975" orientation="none" validLength="2.1960336638193212" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.1960336638193212" s="256.59153210113737" distance="0" tStart="-10.381646367739975" tEnd="-10.281764882657638" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741831" s="258.7875657649567" t="-10.281764882657638" orientation="none" validLength="14.582023104592679" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.582023104592679" s="258.7875657649567" distance="0" tStart="-10.281764882657638" tEnd="-10.207807485584214" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741832" s="273.36958886954937" t="-10.207807485584214" orientation="none" validLength="41.201081671623456" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="41.201081671623456" s="273.36958886954937" distance="0" tStart="-10.207807485584214" tEnd="-10.200439661202447" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5181889" s="388.33191773117022" t="-10.276948031577575" orientation="none" validLength="80.386778388502989" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="80.386778388502989" s="388.33191773117022" distance="0" tStart="-10.276948031577575" tEnd="-10.182828194782196" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273617345" s="468.71869611967321" t="-10.182828194782196" orientation="none" validLength="31.165677150836473" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="31.165677150836473" s="468.71869611967321" distance="0" tStart="-10.182828194782196" tEnd="-10.219563990360617" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542052801" s="499.88437327050968" t="-10.219563990360617" orientation="none" validLength="34.26112608607815" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="34.26112608607815" s="499.88437327050968" distance="0" tStart="-10.219563990360617" tEnd="-10.122327929059242" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810488257" s="534.14549935658783" t="-10.122327929059242" orientation="none" validLength="106.55898237953159" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="106.55898237953159" s="534.14549935658783" distance="0" tStart="-10.122327929059242" tEnd="-10.107282272632599" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078923713" s="640.70448173611942" t="-10.107282272632599" orientation="none" validLength="90.700487318687919" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="90.700487318687919" s="640.70448173611942" distance="0" tStart="-10.107282272632599" tEnd="-10.421597771676467" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741833" s="731.40496905480734" t="-10.421597771676467" orientation="none" validLength="47.437615298953233" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="47.437615298953233" s="731.40496905480734" distance="0" tStart="-10.421597771676467" tEnd="-10.406420845588588" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741834" s="778.84258435376057" t="-10.406420845588588" orientation="none" validLength="11.096962225154471" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.096962225154471" s="778.84258435376057" distance="0" tStart="-10.406420845588588" tEnd="-10.504559869428942" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412678" s="1.9639515244879298" t="-11.767866313450698" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848134" s="50.292467789630841" t="-11.115574072600083" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283590" s="98.012916333468027" t="-10.53254922050504" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719046" s="146.41670841527605" t="-10.445937208334833" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154502" s="182.28738708085592" t="-10.207344115704842" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741835" s="214.09173268375898" t="-10.237076463762913" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741836" s="270.17360380205349" t="-10.228248541905394" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741837" s="316.7129769802898" t="-10.319687225302044" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741838" s="387.28247641280319" t="-10.289922770026623" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741839" s="423.60829305376626" t="-10.260809120363556" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741840" s="471.75997975052019" t="-10.208276549318265" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741841" s="515.78616289304591" t="-10.211846297926048" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741842" s="563.88058536888093" t="-10.300887174635685" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741843" s="611.58689051751355" t="-10.099222542355317" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741844" s="671.46876198542179" t="-10.198720377942994" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741845" s="730.7154862285629" t="-10.338424852241857" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741846" s="762.99483644210056" t="-10.444693505583031" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8223688" type="274" subtype="60" value="100" unit="km/h" country="DEU" zOffset="1.7829334438946205" s="841.24711840620012" t="-11.932325858658276" orientation="+" name="Sg274Hoechstgeschw100_03.flt" height="0.76000000000000001" /> - <signal dynamic="no" id="8225686" type="274" subtype="60" value="100" unit="km/h" country="DEU" zOffset="2.2217105966134909" s="842.59189572555249" t="11.190668688254274" orientation="+" name="Sg274Hoechstgeschw100_03.flt" height="0.76000000000000001" /> - <signal dynamic="no" id="8986806" type="123" subtype="-1" country="DEU" zOffset="2.5021874628036471" s="741.32446823433975" t="11.233562167394926" orientation="+" name="Sg123Baustelle03.flt" height="1.04" /> - <signal dynamic="no" id="8986818" type="1004" subtype="36" country="DEU" zOffset="2.1210380656932273" s="741.32632166252597" t="11.225045416583313" orientation="+" name="Sg1004-34nach600m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8986830" type="1004" subtype="36" country="DEU" zOffset="1.017878054858528" s="739.06606904843864" t="-10.633583576870835" orientation="+" name="Sg1004-34nach600m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8986841" type="123" subtype="-1" country="DEU" zOffset="1.4521863819132932" s="739.06333490475095" t="-10.611222968593797" orientation="+" name="Sg123Baustelle03.flt" height="1.04" /> - </signals> - </road> - <road name="" length="5.0000000000001874" id="4939864" junction="33555309"> - <link> - <predecessor elementType="road" elementId="4939858" contactPoint="end" /> - <successor elementType="road" elementId="33782103" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-764.8969343330341" y="-804.13597208467195" hdg="1.2541823082028642" length="5.0000000000001874"> - <paramPoly3 aU="0" bU="4.9999898871517896" cU="9.1649920726749688e-06" dU="-1.2744711398030769e-06" aV="-0" bV="-0" cV="-0.0041107419362389061" dV="2.5037757707946219e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.26756359488729" b="0.00037425284062636479" c="-4.3073640228835386e-05" d="3.4803022484531113e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026490421049647068" b="-3.1047459552927202e-05" c="-5.5511151231253659e-19" d="4.3368086899415298e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="4.0609544452737927" b="-1.4779456092714641e-09" c="-0.21636648343763434" d="0.089130787843284709" /> - <laneOffset s="1.618344525213709" a="3.872063690546403" b="-3.0104659470880625e-10" c="0.0038975278907593712" d="-0.00039874033429595666" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="1.618344525213709" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="3.3816554747864784" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="4.0028138308008554" b="-1.2092709029011341e-09" c="-0.21335452774308564" d="0.088890509772282369" /> - <width sOffset="1.618344525213709" a="3.8207930855560921" b="0.007860871066496607" c="0.0057429254831014489" d="-0.00063901840529829177" /> - <roadMark sOffset="0" color="standard" width="0.30539408610475943" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.305394" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-5" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.4532468494576949" b="7.9547882575807946e-10" c="0.034253468493991739" d="-0.027727650858219512" /> - <width sOffset="0.67968135810726238" a="3.4603646031856652" b="0.0081351306308312631" c="-0.0039043058757395723" d="0.0003848024765352485" /> - <roadMark sOffset="0" color="standard" width="0.16178024958896625" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000001874" space="0" width="0.16178000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="2.4930621925799161" b="0.011722337012795578" c="-0.038103336471358051" d="0.028032307332028321" /> - <width sOffset="0.67968135810726238" a="2.4922290414849826" b="-0.0012239363314385642" c="0.00067564587599676883" d="-8.0146002726443476e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="5.0000000009054864" id="4939871" junction="33554459"> - <link> - <predecessor elementType="road" elementId="33782103" contactPoint="end" /> - <successor elementType="road" elementId="33781870" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-701.63626604093258" y="-632.43206543009728" hdg="1.2141092274364926" length="5.0000000009054864"> - <paramPoly3 aU="0" bU="4.9988572513836065" cU="0.0011925572863397383" dU="-5.0870531202688708e-05" aV="-0" bV="-2.2204460492503131e-16" cV="0.0031526639680671924" dV="-0.00029382487640099272" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.08432448155725" b="-0.00011891142994334829" c="-2.526835467578415e-07" d="-4.902267415849084e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028556750927546001" b="-5.9313973433262702e-06" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.8227373279067169" b="-0.00012385172046825246" c="-0.075162367389922796" d="0.01842182944630821" /> - <laneOffset s="2.6635395477183001" a="2.6372772739886248" b="-0.0084418752155567631" c="0.00035041533932240099" d="1.6298263986007338e-07" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.6635395477183001" color="standard" width="0.1620678747004908" weight="standard" type="solid"> - <type name="solid"> - <line length="2.3364604531871862" space="0" width="0.16206799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="4.1155005092197889" b="-0.0052135566120008114" c="-0.11585868804691397" d="0.10402298777886197" /> - <width sOffset="0.33454202658041815" a="4.1046844062262497" b="-0.047806508265134974" c="-0.055719995856939458" d="0.018421953392960343" /> - <width sOffset="2.2095915962670323" a="3.9405872714751666" b="-0.062457703779312368" c="0.047212292493559599" d="0.018410784843292977" /> - <width sOffset="2.6635395477183001" a="3.9236859299032254" b="-0.0082121950074793126" c="0.00059587560079156629" d="-1.0881620368575178e-05" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000009054864" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4932040199265235" b="-0.0074639487944148731" c="0.044926053749571523" d="-0.085981888131446374" /> - <width sOffset="0.33454202658041815" a="2.4925157839160192" b="-0.0062735003343644359" c="0.0028938796729539567" d="-0.00038085374554471348" /> - <width sOffset="2.2095915962670323" a="2.4884162838313069" b="0.00056180609977133592" c="0.0014454597141354485" d="-0.00036968519588416059" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5177220" s="0" t="-2.8868603209897046" orientation="none" validLength="5.0000000009054864" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.0000000009054864" s="0" distance="0" tStart="-2.8868603209897046" tEnd="-3.2056659017018001" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="810.36456450896367" id="4940030" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554597" /> - <successor elementType="junction" elementId="33554629" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="665.4755797291657" y="-246.96694256282149" hdg="0.045245374476632572" length="203.48871174168644"> - <paramPoly3 aU="0" bU="204.35157648297888" cU="-2.5886427270156855" dU="1.236154755133883" aV="-0" bV="-0" cV="12.029246367972236" dV="0.16446055077071922" /> - </geometry> - <geometry s="203.48871174168644" x="867.71539889364101" y="-225.6040783101808" hdg="0.16567485777310154" length="230.01109833559025"> - <paramPoly3 aU="0" bU="228.8612670895088" cU="3.6016308992070374" dU="-2.9542286818435315" aV="-0" bV="4.2632564145606011e-14" cV="12.143827641507045" dV="0.89029132768085462" /> - </geometry> - <geometry s="433.49981007727672" x="1091.9319104741917" y="-174.89832440627958" hdg="0.28377720918318494" length="351.01049469927557"> - <paramPoly3 aU="0" bU="351.41130454347405" cU="-2.0517904246049437" dU="0.12971653102607217" aV="-0" bV="2.8421709430404007e-14" cV="42.867732494218792" dV="-13.221634219587385" /> - </geometry> - <geometry s="784.51030477655229" x="1419.1427990989807" y="-48.586615334869286" hdg="0.41551192872393572" length="25.854259732411393"> - <paramPoly3 aU="0" bU="25.899092983700484" cU="-0.71367390842275935" dU="0.66762884541479917" aV="-0" bV="-1.7763568394002505e-15" cV="0.0224702809469981" dV="0.1687837018369959" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.08135302663484" b="-0.014831436486142777" c="-0.00014107881827540346" d="1.9430742047301887e-06" /> - <elevation s="10.004500796406958" a="164.92079702347138" b="-0.017070835683341088" c="-4.435731974029126e-05" d="1.9430742047297588e-06" /> - <elevation s="20.009001592813917" a="164.74751780754431" b="-0.017374934262291114" c="3.7772034653144486e-05" d="1.9374980371928335e-06" /> - <elevation s="30.013502389220875" a="164.57941098349499" b="-0.016037380814797744" c="0.00019754385793400986" d="-8.2088500748288593e-06" /> - <elevation s="39.999520773645003" a="164.43078612230718" b="-0.014547801078103068" c="-0.00011977057021482929" d="-1.0161655844123711e-05" /> - <elevation s="40.018003185627833" a="164.43051720287647" b="-0.014552238789792064" c="2.0183892013606141e-05" d="-3.9032746437658677e-06" /> - <elevation s="50.022503982034792" a="164.28304097742691" b="-0.015320415963349782" c="-0.00011765231649636817" d="5.9514091735664461e-06" /> - <elevation s="60.02700477844175" a="164.12395148772006" b="-0.015887491072916354" c="5.1838280413330022e-05" d="-5.0580778026903374e-06" /> - <elevation s="70.031505574848708" a="163.96512865549997" b="-0.01636904840845543" c="8.5056244463654323e-06" d="-9.7307268471925153e-09" /> - <elevation s="80.036006371255667" a="163.8022060820482" b="-0.016201781201766963" c="-6.1042720984512194e-05" d="4.8733254571444436e-06" /> - <elevation s="90.040507167662625" a="163.63888548953258" b="-0.015959871139130662" c="1.2541874961618018e-05" d="-9.7307268471936105e-09" /> - <elevation s="100.04500796406958" a="163.48046051885777" b="-0.01571184258945351" c="0.0001243681906087084" d="-7.5606021450088283e-06" /> - <elevation s="110.04950876047654" a="163.32814857849721" b="-0.015493582092298418" c="-7.719233393034479e-05" d="3.2877420609172482e-06" /> - <elevation s="120.0540095568835" a="163.1687090239158" b="-0.016050912959328215" c="-5.6862646249336914e-05" d="4.5239684862554216e-06" /> - <elevation s="130.05851035329044" a="163.00696634778475" b="-0.01583026523023133" c="4.072236192403317e-05" d="-7.2563517188568199e-07" /> - <elevation s="140.06301114969742" a="162.8519417339663" b="-0.015233337977464307" c="1.7831398985473453e-05" d="8.1733468425039366e-07" /> - <elevation s="150.06751194610439" a="162.70214297618665" b="-0.014631128312395486" c="0.00011345345668169124" d="-4.1385605347053335e-06" /> - <elevation s="160.07201274251133" a="162.56297725082192" b="-0.013603723937962506" c="4.4810595312615613e-06" d="2.5957547726815587e-06" /> - <elevation s="170.07651353891828" a="162.42992655450064" b="-0.012734634843286352" c="0.00012453490553712427" d="-6.8279355605868733e-06" /> - <elevation s="180.08101433532525" a="162.30815043421555" b="-0.012293040672023373" c="0.00010942382650665012" d="-1.2164904484752729e-05" /> - <elevation s="190.08551513173222" a="162.18393559637045" b="-0.013756336343369152" c="3.7340200913870817e-06" d="-9.7307268471987853e-09" /> - <elevation s="200.09001592813917" a="162.04667431280205" b="-0.013684544175819723" c="-0.00029206828671046687" d="2.0034563519513623e-05" /> - <elevation s="210.09451672454611" a="161.90059578145528" b="-0.013512758426945017" c="1.7125682663677001e-05" d="-9.7307268471872958e-09" /> - <elevation s="220.09901752095308" a="161.76711174533719" b="-0.013173012461656213" c="0.00030125099505124998" d="-1.7717502653284142e-05" /> - <elevation s="230.10351831736006" a="161.64773311838525" b="-0.012465317266880455" c="-2.8198519616165047e-05" d="-9.7307268471880287e-09" /> - <elevation s="240.108019113767" a="161.52019170714095" b="-0.013032463337202026" c="-0.00032025270639192047" d="1.7524512834888183e-05" /> - <elevation s="250.11251991017394" a="161.3753024980993" b="-0.014178312878179404" c="4.428567710010219e-05" d="-1.4078743838476263e-06" /> - <elevation s="260.11702070658089" a="161.23647833443491" b="-0.013714943288615644" c="3.2061640467384263e-05" d="-1.6133564896057794e-06" /> - <elevation s="270.12152150298789" a="161.10086068824887" b="-0.013557864601708856" c="-3.9011196812356881e-05" d="3.8579118904479429e-06" /> - <elevation s="280.12602229939483" a="160.965179512281" b="-0.013180024078720898" c="3.0880721341279645e-05" d="7.1031478960367484e-07" /> - <elevation s="290.13052309580178" a="160.83712207772126" b="-0.012348845377232817" c="0.00035515545206262172" d="-2.3269427403436709e-05" /> - <elevation s="300.13502389220878" a="160.72582470552507" b="-0.012229652863679401" c="-2.4214340587500044e-06" d="-9.7307268472618198e-09" /> - <elevation s="310.13952468861572" a="160.60322102841647" b="-0.012281025188024576" c="-3.8326948536268335e-05" d="3.4605850456412817e-06" /> - <elevation s="320.14402548502267" a="160.47998461624195" b="-0.012008798915012761" c="0.00012223618451237531" d="-3.9743782095954452e-06" /> - <elevation s="330.14852628142961" a="160.36809745507844" b="-0.010756361880842665" c="0.00010016519408801336" d="-5.762111753899721e-06" /> - <elevation s="340.15302707783655" a="160.26474106649218" b="-0.010482346274645912" c="2.2079886918158211e-06" d="-1.7523712928117051e-06" /> - <elevation s="350.15752787424356" a="160.15833668402948" b="-0.010964351343717316" c="-8.1883334081143638e-05" d="4.8811451614337888e-06" /> - <elevation s="360.1620286706505" a="160.04533585524842" b="-0.011137093118270897" c="8.8930992812344791e-05" d="-7.3309192737553631e-06" /> - <elevation s="370.16652946705744" a="159.93547508234354" b="-0.011558928667583386" c="-5.2042405443466399e-05" d="3.1040153335953599e-06" /> - <elevation s="380.17103026346444" a="159.81773305342162" b="-0.011668202219817644" c="4.7930115543241704e-06" d="5.0758440893182793e-07" /> - <elevation s="383.99889025982645" a="159.77316750785008" b="-0.011609196105257966" c="2.2794526750102008e-05" d="4.8866008477801588e-07" /> - <elevation s="390.17553105987139" a="159.70244645503882" b="-0.011271680443642237" c="0.00012378219939945971" d="-7.2772457678921214e-06" /> - <elevation s="400.18003185627833" a="159.59478120766906" b="-0.010980061595409528" c="-1.3906015927125416e-05" d="-2.865505137988808e-08" /> - <elevation s="410.18453265268528" a="159.48351062529588" b="-0.011266911345633594" c="-0.00019033362033804216" d="1.1904072288168281e-05" /> - <elevation s="420.18903344909222" a="159.3636604556838" b="-0.011500859979917682" c="1.2662622048190998e-05" d="3.460342572257897e-06" /> - <elevation s="430.19353424549922" a="159.25333251211904" b="-0.010208456115373658" c="0.00022123139998499441" d="-1.1161350419096228e-05" /> - <elevation s="440.19803504190617" a="159.16216863591973" b="-0.0091332565826661629" c="-2.6358324643816171e-05" d="2.3678230257090182e-06" /> - <elevation s="450.20253583831311" a="159.07052777908899" b="-0.0089496738654773287" c="5.6051637098931739e-05" d="-3.5589527896610231e-06" /> - <elevation s="460.20703663472011" a="158.98303720977032" b="-0.0088967837099818963" c="5.1564193779590782e-06" d="-2.0879835695858005e-06" /> - <elevation s="470.21153743112706" a="158.89245463214513" b="-0.0094205679595376068" c="-8.8397981368667456e-05" d="5.3920472412760937e-06" /> - <elevation s="480.216038227534" a="158.79475812640808" b="-0.0095702526990681762" c="1.2736460816202396e-05" d="6.1788996886968618e-07" /> - <elevation s="490.22053902394094" a="158.70090604312594" b="-0.0091298749462818546" c="1.8527380450243734e-05" d="-8.3651564814502429e-07" /> - <elevation s="500.22503982034789" a="158.61058296248189" b="-0.0090103412058194915" c="-2.4842713908058934e-05" d="1.9962131253228082e-06" /> - <elevation s="510.22954061675489" a="158.51995139828165" b="-0.0089080159761342256" c="6.5990471105722599e-05" d="-1.0079889077743133e-06" /> - <elevation s="520.23404141316178" a="158.43642678344858" b="-0.0078902814734298447" c="0.00012622483605672442" d="-8.0940146069039576e-06" /> - <elevation s="530.23854220956878" a="158.36201735619213" b="-0.0077950391723864516" c="-1.8020709464773249e-05" d="-1.8272740420564396e-06" /> - <elevation s="540.24304300597578" a="158.28039844471235" b="-0.0087042913517404504" c="-9.9869293766786723e-05" d="4.1212777367969517e-06" /> - <elevation s="550.24754380238267" a="158.1874472786761" b="-0.0094650796963761646" c="-2.4999510153713977e-05" d="7.0163523009049317e-07" /> - <elevation s="560.25204459878967" a="158.09095426247151" b="-0.0097546148481554643" c="1.291610550030067e-05" d="-2.4438954710315679e-06" /> - <elevation s="570.25654539519667" a="157.99220978712216" b="-0.010230005231012976" c="-8.5919715322666201e-05" d="4.9340346396345408e-06" /> - <elevation s="580.26104619160355" a="157.88620468398977" b="-0.010467629834896587" c="-0.00013909571249597709" d="1.5125966627181071e-05" /> - <elevation s="590.26554698801056" a="157.78270557756284" b="-0.0087089205266252384" c="1.5804218377891082e-06" d="-2.8655051379764423e-08" /> - <elevation s="600.27004778441756" a="157.69570666593734" b="-0.0086859021189440739" c="0.00029805153554445874" d="-1.3154150147077783e-05" /> - <elevation s="610.27454858082444" a="157.62546862086083" b="-0.0066719865621182976" c="0.00028310333919183276" d="-2.4871463246864499e-05" /> - <elevation s="620.27904937723144" a="157.56214948866875" b="-0.0084755283663786526" c="-2.6900114743667472e-05" d="-2.8655051379359886e-08" /> - <elevation s="630.28355017363833" a="157.47463493115933" b="-0.009022377060519924" c="-0.00021715839698110325" d="1.2320968060112402e-05" /> - <elevation s="640.28805097004533" a="157.37497277265959" b="-0.0096678813546837196" c="1.9697595410461398e-05" d="-2.865505138095831e-08" /> - <elevation s="650.29255176645233" a="157.28019328522453" b="-0.0092823563921300267" c="1.4093061800351173e-05" d="-2.8655051375576997e-08" /> - <elevation s="660.29705256285922" a="157.18870982461254" b="-0.0090089725515064001" c="0.00035454365185609799" d="-1.9199251702338392e-05" /> - <elevation s="664.00745260563735" a="157.15918323586541" b="-0.0071709272281741832" c="0.00020463909698437908" d="-1.9395538312043382e-05" /> - <elevation s="670.30155335926622" a="157.11731943430385" b="-0.0068999927704148896" c="0.00018159365478837556" d="-1.5357603285157608e-05" /> - <elevation s="680.30605415567311" a="157.05108581756252" b="-0.0078779142481024082" c="-2.7499221736392691e-05" d="2.7650678090757015e-06" /> - <elevation s="690.31055495208011" a="156.97228762308657" b="-0.0075978790084313807" c="3.5612975567163156e-06" d="1.9755977077632729e-06" /> - <elevation s="700.31505574848711" a="156.89860935333451" b="-0.0069334080617736429" c="3.4255143881240021e-05" d="4.3330830621748079e-07" /> - <elevation s="710.319556544894" a="156.83310655908861" b="-0.0061178873011457436" c="6.6851209022232452e-05" d="-3.0596864721346979e-06" /> - <elevation s="720.324057341301" a="156.77552747100242" b="-0.0056989937424733331" c="3.1739715212790111e-05" d="-3.059686472134769e-06" /> - <elevation s="730.328558137708" a="156.71862489317169" b="-0.0059826461193601566" c="-0.00023660163484586153" d="1.0831439140286718e-05" /> - <elevation s="740.33305893411489" a="156.64593610986714" b="-0.0074644512013826289" c="-0.0001742422117877216" d="1.4979858059874273e-05" /> - <elevation s="750.33755973052189" a="156.56881818614744" b="-0.0064528602887877909" c="7.0288639670978176e-05" d="-2.2494166144886641e-07" /> - <elevation s="760.34206052692889" a="156.51107048721408" b="-0.005113998042756457" c="0.00043172067145613588" d="-2.3736677831872477e-05" /> - <elevation s="770.34656132333578" a="156.47934968490503" b="-0.003603113269273206" c="-7.0392090202619123e-05" d="2.2654482729029165e-06" /> - <elevation s="780.35106211974278" a="156.4385252970238" b="-0.0043313423154265262" c="-1.1725833194000785e-05" d="-1.7829732170453085e-06" /> - <elevation s="790.35556291614967" a="156.39223335857031" b="-0.0051013380919168478" c="1.8437986024159941e-05" d="-7.03085467746724e-06" /> - <elevation s="800.36006371255667" a="156.33600212397081" b="-0.0068435678974351688" c="-4.3268074495666282e-05" d="-2.2494166145281316e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.027780893513750161" b="-8.5458226194449138e-06" c="-8.8832132061845229e-07" d="-5.4136977864845911e-23" /> - <superelevation s="10.004500796406958" a="-0.027955302316077239" b="-2.6320245338631479e-05" c="-9.0519916591246134e-07" d="1.6870252336793734e-09" /> - <superelevation s="20.009001592813917" a="-0.028307535344654092" b="-4.3925813641133537e-05" c="-7.0049356680574431e-06" d="6.1307328746833519e-07" /> - <superelevation s="30.013502389220875" a="-0.028834213991188327" b="0" c="2.1817394652409602e-06" d="-1.4538386336574404e-07" /> - <superelevation s="40.018003185627833" a="-0.028761423863847366" b="0" c="-3.8657158581428018e-05" d="2.5102312246905808e-06" /> - <superelevation s="50.022503982034792" a="-0.030116998102755921" b="-1.9743745291148706e-05" c="9.8674315155435908e-07" d="-2.7068488932422955e-23" /> - <superelevation s="60.02700477844175" a="-0.030215761260500597" b="0" c="1.4164934904249042e-05" d="-7.0370035175400473e-07" /> - <superelevation s="70.031505574848708" a="-0.029502643356443661" b="7.212602404921014e-05" c="7.4631379552524161e-06" d="-7.3752250714626495e-07" /> - <superelevation s="80.036006371255667" a="-0.028772591530416617" b="0" c="-6.9161258993004525e-07" d="0" /> - <superelevation s="90.040507167662625" a="-0.028841815059568936" b="-1.3838477413521822e-05" c="-4.6653578096690163e-06" d="3.5697069473124945e-07" /> - <superelevation s="100.04500796406958" a="-0.029089765042434421" b="0" c="1.9130372098707266e-05" d="-1.1913762583922379e-06" /> - <superelevation s="110.04950876047654" a="-0.028367991031949483" b="2.5044967355771427e-05" c="-2.0902788105320711e-06" d="8.3821653648543038e-08" /> - <superelevation s="120.0540095568835" a="-0.028242709834021083" b="8.3897123467949819e-06" c="-4.0067982681523482e-07" d="-1.2405798753399194e-09" /> - <superelevation s="130.05851035329044" a="-0.028200121264239212" b="0" c="-5.5187059748519356e-06" d="6.2726383446630668e-08" /> - <superelevation s="140.06301114969742" a="-0.028689677627781733" b="-9.1588938674245027e-05" c="-4.9429115370953051e-06" d="6.789922679422766e-08" /> - <superelevation s="150.06751194610439" a="-0.03003272448405632" b="-0.00017010355529275466" c="-7.8625900885513527e-06" d="4.2763495906454398e-07" /> - <superelevation s="160.07201274251133" a="-0.032093279936577769" b="-0.00019902013731760285" c="8.6410215201997855e-06" d="-7.9434878295374596e-07" /> - <superelevation s="170.07651353891828" a="-0.034014918728646273" b="-0.00026464111924517361" c="-1.4907459408105224e-05" d="7.6509113455042796e-07" /> - <superelevation s="180.08101433532525" a="-0.03738848451307851" b="-0.00033319050026012952" c="-4.5549130172522513e-07" d="8.563561949987711e-08" /> - <superelevation s="190.08551513173222" a="-0.04068172797906168" b="-0.00031659060967838086" c="-2.9713878434761228e-06" d="4.2274770873569814e-07" /> - <superelevation s="200.09001592813917" a="-0.043723146526403162" b="-0.00024910661337752647" c="3.5037153679884153e-07" d="5.1346891781158774e-07" /> - <superelevation s="210.09451672454611" a="-0.045666102602913081" b="-8.7916661048268116e-05" c="4.393855467523169e-06" d="0" /> - <superelevation s="220.09901752095308" a="-0.046105883755650501" b="0" c="2.2801770924148047e-05" d="-1.5194341952132298e-06" /> - <superelevation s="230.10351831736006" a="-0.04534514039668814" b="0" c="-2.2019852986240567e-05" d="1.3097800313277141e-06" /> - <superelevation s="240.108019113767" a="-0.046237558935478276" b="-4.7307481284065498e-05" c="2.3643099364368009e-06" d="0" /> - <superelevation s="250.11251991017394" a="-0.046474202802569496" b="0" c="1.08379201956752e-05" d="-5.2179857690331188e-07" /> - <superelevation s="260.11702070658089" a="-0.045911938424814627" b="6.0175447126976617e-05" c="1.2611610140016095e-06" d="-8.6352072161636916e-08" /> - <superelevation s="270.12152150298789" a="-0.045270152185157529" b="5.9481073782924427e-05" c="-1.6062091390310645e-06" d="1.1390387454583869e-07" /> - <superelevation s="280.12602229939483" a="-0.044721781524749808" b="6.1544361336477374e-05" c="3.3753329373761246e-06" d="-2.701223503487873e-07" /> - <superelevation s="290.13052309580178" a="-0.04403871096114724" b="4.7971735994099669e-05" c="-1.293621342448284e-06" d="-7.3559318304373712e-08" /> - <superelevation s="300.13502389220878" a="-0.04376191498283382" b="0" c="-2.9937142691678438e-05" d="1.6978856060731836e-06" /> - <superelevation s="310.13952468861572" a="-0.045058145488839414" b="-8.9188040550954928e-05" c="3.1927676251124499e-06" d="8.427061946422646e-08" /> - <superelevation s="320.14402548502267" a="-0.045546478628277827" b="0" c="8.5820775545095302e-06" d="-4.4169330316938467e-07" /> - <superelevation s="330.14852628142961" a="-0.045129788138424734" b="3.909150736674021e-05" c="3.1400987426165656e-06" d="-3.3943354734680469e-07" /> - <superelevation s="340.15302707783655" a="-0.044764296595111226" b="0" c="-8.9116213991708243e-06" d="5.9384081761624313e-07" /> - <superelevation s="350.15752787424356" a="-0.045061618097882158" b="0" c="9.690503808664018e-06" d="-6.4574295148869933e-07" /> - <superelevation s="360.1620286706505" a="-0.044738310472261136" b="0" c="-9.9523447217564546e-08" d="6.6319115927934116e-09" /> - <superelevation s="370.16652946705744" a="-0.044741630907405572" b="0" c="2.2779981729956976e-06" d="-1.2857602546557781e-07" /> - <superelevation s="380.17103026346444" a="-0.044642375699809278" b="6.972931947661258e-06" c="-1.8705967754415181e-07" d="-1.0757163199705109e-08" /> - <superelevation s="390.17553105987139" a="-0.044602109500958234" b="0" c="-1.6200801697852463e-05" d="7.5593175164602866e-07" /> - <superelevation s="400.18003185627833" a="-0.045466695429547725" b="-9.7178157849573741e-05" c="-1.2939530186915317e-05" d="1.1858830693548878e-06" /> - <superelevation s="410.18453265268528" a="-0.046546547416157075" b="0" c="7.4612551294401143e-06" d="-3.4105420356490417e-07" /> - <superelevation s="420.18903344909222" a="-0.046141265035783564" b="4.6883883041471933e-05" c="6.5975821865538491e-06" d="-5.9577996751423449e-07" /> - <superelevation s="430.19353424549922" a="-0.045608447725702959" b="0" c="-1.9821579096471289e-05" d="1.1911927850803679e-06" /> - <superelevation s="440.19803504190617" a="-0.046399588390761824" b="-3.8930420826267905e-05" c="3.487862604184327e-06" d="-1.5415234499088028e-07" /> - <superelevation s="450.20253583831311" a="-0.046594328103842252" b="-1.5429113788187163e-05" c="-3.3193299505139891e-07" d="7.3503026062182907e-08" /> - <superelevation s="460.20703663472011" a="-0.046708309553125368" b="0" c="2.9863582986138232e-06" d="-6.3515545386241996e-08" /> - <superelevation s="470.21153743112706" a="-0.046473006188107714" b="4.0682228245567074e-05" c="4.5408076435991103e-06" d="-2.8240609414527321e-07" /> - <superelevation s="480.216038227534" a="-0.045894298783360599" b="4.6741147073144006e-05" c="1.3424428979409633e-06" d="-2.4511960084964747e-07" /> - <superelevation s="490.22053902394094" a="-0.045537762501871228" b="0" c="-1.849001037493263e-05" d="1.2321128094382843e-06" /> - <superelevation s="500.22503982034789" a="-0.046154651104369136" b="0" c="5.9825932673334679e-06" d="-3.9866012235094461e-07" /> - <superelevation s="510.22954061675489" a="-0.045955051778832669" b="0" c="-3.5551380435014978e-06" d="2.3690257787298179e-07" /> - <superelevation s="520.23404141316178" a="-0.046073663077305281" b="0" c="1.5089657401765956e-05" d="-6.8484980878731515e-07" /> - <superelevation s="530.23854220956878" a="-0.045249113657849546" b="9.6289052557877578e-05" c="5.737959295946734e-06" d="-4.3495051853137001e-07" /> - <superelevation s="540.24304300597578" a="-0.044147015271304157" b="8.0497249834107868e-05" c="-1.0613530619535e-05" d="7.645123383006929e-07" /> - <superelevation s="550.24754380238267" a="-0.043638444057701738" b="9.7691301576344691e-05" c="9.8288685951542758e-06" d="-5.1429558801701475e-07" /> - <superelevation s="560.25204459878967" a="-0.042192309862459004" b="0.00013992955690864437" c="1.5062919124954232e-06" d="-1.9670792148445064e-07" /> - <superelevation s="570.25654539519667" a="-0.040838593330634915" b="0.00011100344524706123" c="-3.9154739941186866e-06" d="1.4851683482760891e-07" /> - <superelevation s="580.26104619160355" a="-0.039971241749702721" b="7.7253885978185741e-05" c="-3.8392919203951537e-06" d="2.8941888954035339e-07" /> - <superelevation s="590.26554698801056" a="-0.039292820203046336" b="8.7337329208138242e-05" c="-3.965094221925384e-06" d="5.9141234967551277e-07" /> - <superelevation s="600.27004778441756" a="-0.038223708990464962" b="0.00018558320304435676" c="9.5653858263958066e-06" d="-1.6961460008712134e-07" /> - <superelevation s="610.27454858082444" a="-0.035579485597732316" b="0.00032604682889975756" c="1.9468005708677431e-05" d="-1.3290456921513358e-06" /> - <superelevation s="620.27904937723144" a="-0.031699837471677782" b="0.00031650949187552818" c="-1.0306385278299982e-05" d="3.1800823254881236e-07" /> - <superelevation s="630.28355017363833" a="-0.029246446670654142" b="0.00020577737893498092" c="-9.7495225173427831e-06" d="5.8035524098566369e-07" /> - <superelevation s="640.28805097004533" a="-0.02758243756880269" b="0.00018496249856805706" c="9.9082078411479362e-07" d="8.7159335339917846e-08" /> - <superelevation s="650.29255176645233" a="-0.025545531742195031" b="0.00023095917629978137" c="-2.76699506704305e-06" d="5.4993120024326766e-07" /> - <superelevation s="660.29705256285922" a="-0.022961175042345388" b="0.00034072226879134222" c="1.653973501849578e-05" d="-8.2994204237709687e-07" /> - <superelevation s="670.30155335926622" a="-0.018728019323241883" b="0.00042245906596145025" c="4.7041074210802192e-06" d="-4.7685378286584925e-07" /> - <superelevation s="680.30605415567311" a="-0.014508190918624063" b="0.00037339862169618286" c="-9.8582449693188654e-06" d="5.0187254633437171e-07" /> - <superelevation s="690.31055495208011" a="-0.01125668570696846" b="0.00032684230637179153" c="-8.0238949475674309e-07" d="9.8566947466897522e-08" /> - <superelevation s="700.31505574848711" a="-0.0079684026898318838" b="0.00034038400170905737" c="-4.2848825314298664e-06" d="5.4522652919335229e-07" /> - <superelevation s="710.319556544894" a="-0.0044459416746035684" b="0.00041836300942111151" c="1.5566375447109301e-05" d="-8.9377967671074714e-07" /> - <superelevation s="720.324057341301" a="0.00040262343204956367" b="0.00046145531998564686" c="4.05761368836018e-06" d="-6.3720093045226551e-07" /> - <superelevation s="730.328558137708" a="0.0047873185580017347" b="0.00035131172618023095" c="-1.2854850179548787e-05" d="4.1608367276476533e-07" /> - <superelevation s="740.33305893411489" a="0.0074320203207640222" b="0.00021903649805167814" c="-1.5190820194576661e-05" d="1.0656592570766566e-06" /> - <superelevation s="750.33755973052189" a="0.0091700201964021281" b="0.00023506897338827591" c="3.4849089469928496e-06" d="2.6458577839534813e-07" /> - <superelevation s="760.34206052692889" a="0.012135515783711187" b="0.00038424572246059348" c="2.9513377043468194e-05" d="-2.0725042915258318e-06" /> - <superelevation s="770.34656132333578" a="0.016858393469148046" b="0.00035246784213359482" c="-2.0708947304295542e-05" d="8.7496446405939156e-07" /> - <superelevation s="780.35106211974278" a="0.019188045398377932" b="0.00020082815714213409" c="-2.8801501160991506e-06" d="-3.2148713836066964e-08" /> - <superelevation s="790.35556291614967" a="0.020876764385286892" b="0.00013354593108807442" c="2.778343835028969e-06" d="-6.298922600659939e-07" /> - <superelevation s="800.36006371255667" a="0.021860166146233019" b="0" c="-3.3177102853243915e-08" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="8.0643985290141647" b="1.9560120459912565e-09" c="0.0002625867238936278" d="-9.7401962564521067e-07" /> - <laneOffset s="2.1978829964286919" a="8.0656566668372971" b="0.0011401561874577969" c="0.00080333822674159437" d="-4.3799095747326461e-05" /> - <laneOffset s="10.004500796406958" a="8.1026776006243519" b="0.0056750833265940635" c="-0.00021556539624386902" d="-4.4537091692313096e-05" /> - <laneOffset s="13.929394993450089" a="8.1189381515916761" b="0.0019246863511609893" c="-0.00013167122478416758" d="4.2649701391024122e-06" /> - <laneOffset s="20.009001592813917" a="8.1267310964730886" b="0.0007965884276275577" c="-4.5773670675392749e-05" d="4.4927875953776348e-06" /> - <laneOffset s="29.916850566701356" a="8.1344999044945876" b="0.0012126610306731911" c="9.6766148436677705e-05" d="-7.8793918847697997e-06" /> - <laneOffset s="40.23070431180625" a="8.1486558550137271" b="0.00069420021206588695" c="-1.6094292025861035e-05" d="-9.8785576904785543e-06" /> - <laneOffset s="44.55789001771398" a="8.1505580244526588" b="-0" c="1.0555184701401431e-05" d="-2.3571348794430586e-06" /> - <laneOffset s="50.022503982034792" a="8.1504885759542756" b="-9.5806306744238216e-05" c="-8.0380910393186923e-06" d="-4.8512360302918662e-08" /> - <laneOffset s="60.02700477844175" a="8.1486769709660969" b="-0.00027120729484817266" c="-1.3966882263975401e-05" d="3.4659520322418613e-07" /> - <laneOffset s="70.031505574848708" a="8.1449127950178202" b="-0.00044659848501762815" c="-1.3958306672064243e-05" d="3.4604859248444105e-07" /> - <laneOffset s="80.036006371255667" a="8.1393942287499907" b="-0.0006219822170204862" c="-8.279699886572825e-06" d="-1.3802310123208064e-07" /> - <laneOffset s="82.383594388015823" a="8.1378866541844808" b="-0.00066313887161373244" c="3.4695737723741754e-05" d="-3.0558244860515404e-06" /> - <laneOffset s="90.040507167662625" a="8.1334714143462268" b="-0.00066928790267416281" c="-3.1895583444924974e-05" d="-3.2470289935261676e-06" /> - <laneOffset s="97.282295974157748" a="8.125718684291666" b="-0.0016421068059285855" c="-0.00028160547705206559" d="-2.2114747779671839e-06" /> - <laneOffset s="100.04500796406958" a="8.1189860079772824" b="-0.0032487342198366026" c="-0.00030261557431960614" d="-8.5480256557578647e-07" /> - <laneOffset s="108.56996686501964" a="8.0687685247644456" b="-0.0085946730227003075" c="-0.010114347403326448" d="0.021391670527998188" /> - <laneOffset s="109.02660025852106" a="8.0647717232618774" b="-0.0044503786152515759" c="0.00032192167802352168" d="4.5847267673551572e-06" /> - <laneOffset s="110.04950876047654" a="8.0605611403362829" b="-0.00377739419860258" c="0.00030773330792603361" d="-1.3215618355535966e-05" /> - <laneOffset s="120.0540095568835" a="8.0403377643634073" b="-0.0015882131083991035" c="-9.0767222171699624e-05" d="-1.3124070412117241e-05" /> - <laneOffset s="124.53468574011903" a="8.0302186209476449" b="-0.0031920647565543631" c="-0.00015959881677852402" d="6.689190372733365e-06" /> - <laneOffset s="130.05851035329044" a="8.0088438734760921" b="-0.004342941961027187" c="-4.5673770034477101e-05" d="6.4055354809210237e-06" /> - <laneOffset s="139.10650123824769" a="7.9705545733657264" b="-0.0035962642957415303" c="0.00013307263429224295" d="-9.3580160142160314e-06" /> - <laneOffset s="149.31822530353307" a="7.9377421522159484" b="-0.0038060045651443332" c="3.4780293061863774e-05" d="-1.5837322128127809e-05" /> - <laneOffset s="154.42409232069267" a="7.9171078216957058" b="-0.0046894686297970067" c="-0.00013573323228190841" d="5.9815431555178948e-07" /> - <laneOffset s="160.07201274251133" a="7.8864000862876411" b="-0.0061654480361745473" c="-7.5074715132773427e-05" d="1.4837392780293752e-06" /> - <laneOffset s="166.14732274495464" a="7.8465048238569013" b="-0.006913360629477389" c="-4.0354241912774731e-05" d="-4.1612920549018077e-06" /> - <laneOffset s="170.43927565505379" a="7.8157606479159618" b="-0.0074897213738716701" c="-1.5597146122109018e-05" d="-6.1852321141995126e-06" /> - <laneOffset s="174.73111029695499" a="7.7828397321836844" b="-0.0079653951609085644" c="-1.4623819968438248e-05" d="-3.9118481792786314e-06" /> - <laneOffset s="180.08101433532525" a="7.7392080866278832" b="-0.0084577558016292482" c="0.000131134072554288" d="-4.9863075921197965e-05" /> - <laneOffset s="181.99836605155062" a="7.723122207139534" b="-0.0085048210677079773" c="0.00063081315926539886" d="-0.0006181432853748438" /> - <laneOffset s="182.88009083592812" a="7.7156899850031584" b="-0.0088341192166133883" c="6.2886905855435009e-05" d="-3.6154519271645393e-06" /> - <laneOffset s="190.18963563171033" a="7.6530646109505049" b="-0.0084942846767723634" c="-0.00010143251960178671" d="1.3526608387882469e-05" /> - <laneOffset s="200.15967395739719" a="7.5716990942791931" b="-0.0064831547377271525" c="0.00035808959336882968" d="-1.3102351221407385e-05" /> - <laneOffset s="210.09451672454611" a="7.5297859058987893" b="-0.0032476765905600866" c="7.5814799496022635e-06" d="-1.5454559267024288e-05" /> - <laneOffset s="213.76412926759633" a="7.5172065935084715" b="-0.0038163702943794426" c="5.437305625462968e-05" d="-2.0389656298376567e-06" /> - <laneOffset s="220.09901752095308" a="7.4946939945162443" b="-0.0033729518455094276" c="1.2384691811149312e-05" d="-1.0395890663708669e-06" /> - <laneOffset s="230.10351831736006" a="7.4611478859512648" b="-0.0034373040491463519" c="-9.703893998047029e-06" d="-4.3013199878955387e-06" /> - <laneOffset s="234.21916054102914" a="7.4465369454784049" b="-0.0037357534275588339" c="-4.438867966837503e-05" d="4.0178564803223653e-07" /> - <laneOffset s="240.108019113767" a="7.4230803338994304" b="-0.0042167505831888271" c="-1.6791040387138192e-05" d="2.2837797129391916e-06" /> - <laneOffset s="250.11251991017394" a="7.3815000982410215" b="-0.0038669717547183875" c="4.5159221905460884e-05" d="3.9838299425476155e-06" /> - <laneOffset s="254.02925415722655" a="7.3672863483190447" b="-0.003329872911957531" c="-5.6492027919060736e-07" d="3.6011919172079514e-06" /> - <laneOffset s="260.11702070658089" a="7.3478064170757778" b="-0.0029363608600939104" c="3.7260909774403754e-05" d="5.0292015939759821e-06" /> - <laneOffset s="264.09428817539515" a="7.3370335544424732" b="-0.0024013020137545115" c="-9.6745614703972914e-06" d="5.2550354674226437e-06" /> - <laneOffset s="270.12152150298789" a="7.3233595079091192" b="-0.0019452161339794047" c="6.7915359516802751e-05" d="4.641817212833956e-06" /> - <laneOffset s="278.030134568064" a="7.3145194817495405" b="-0" c="0.00086203810072976966" d="-2.9940157948266799e-05" /> - <laneOffset s="280.12602229939483" a="7.318030545549199" b="0.0032189116867955892" c="0.00063907870880216806" d="-3.8101862732874466e-05" /> - <laneOffset s="289.38150985490927" a="7.3723596730442287" b="0.0052570021492364038" c="0.00068957108068990228" d="-9.5294230019877819e-05" /> - <laneOffset s="296.50706163929135" a="7.4103542276511556" b="0.00056888963872319418" c="-0.00013369560210802761" d="1.3892982348671571e-05" /> - <laneOffset s="300.13502389220878" a="7.4113218342233251" b="0.00014738733329680551" c="3.8762532761837717e-05" d="7.7220925642749552e-06" /> - <laneOffset s="303.04377216861542" a="7.4122685532281514" b="0.0005688938593859462" c="0.00067054473234204337" d="-3.2067452876724521e-05" /> - <laneOffset s="310.13952468861572" a="7.4386103039054943" b="0.0052411725436597679" c="2.606578380050615e-05" d="-3.2594856384857729e-05" /> - <laneOffset s="314.56092047658916" a="7.459475893272546" b="0.0035601016488488943" c="-0.00010436279857337942" d="1.0473401808365619e-06" /> - <laneOffset s="320.14402548502267" a="7.4762814853859032" b="0.0024927048377064061" c="-8.5713246250276922e-05" d="1.9693673794900086e-06" /> - <laneOffset s="330.14852628142961" a="7.4946127386941646" b="0.0013690105137851435" c="-3.4543363668374594e-05" d="1.9328716028409769e-06" /> - <laneOffset s="340.15302707783655" a="7.5067870415662075" b="0.0012582158611327829" c="2.2784145655715669e-05" d="1.4860796356632617e-06" /> - <laneOffset s="350.15752787424356" a="7.5231434162155697" b="0.0021603291613719305" c="6.3037718197615325e-05" d="2.9745933761491028e-06" /> - <laneOffset s="353.96471553300876" a="7.5324460559945114" b="0.0027696693252265347" c="-0.00021448318047311319" d="6.8154346131859433e-05" /> - <laneOffset s="357.38520291306833" a="7.5421377334434556" b="0.0036945584462585394" c="0.0004475470121090262" d="-4.3956479428945746e-05" /> - <laneOffset s="360.1620286706505" a="7.5549066351291367" b="0.0051632648283565152" c="7.3449062986467747e-05" d="-4.5913343590368145e-05" /> - <laneOffset s="361.92658860497573" a="7.5639939617815832" b="0.004993598131592121" c="9.6997737174000045e-05" d="-3.1952865872344484e-06" /> - <laneOffset s="370.16652946705744" a="7.6099390857171016" b="0.0059412618382516571" c="1.7033656909644036e-05" d="-3.1232482852135884e-06" /> - <laneOffset s="380.13291413928965" a="7.6677520623958619" b="0.0053501040601283863" c="-2.0726606656915181e-05" d="1.0769755686376191e-07" /> - <laneOffset s="390.17553105987139" a="7.7194998239192723" b="0.0049663905568446591" c="-3.4919957494024003e-06" d="-3.0698046509631598e-06" /> - <laneOffset s="393.22295743184907" a="7.7345152258654641" b="0.0048595813024721428" c="1.6675041416861408e-05" d="-2.2178136710417391e-06" /> - <laneOffset s="400.18003185627833" a="7.7683839802178296" b="0.004769567880489948" c="-2.053863991880043e-06" d="-1.4633514029636731e-06" /> - <laneOffset s="410.18453265268528" a="7.814430226389022" b="0.0042890714279815124" c="-3.8633207501827767e-05" d="-4.1908219807467707e-07" /> - <laneOffset s="420.67277234979019" a="7.8546817484939764" b="0.0033403816336073106" c="-0.00012246772611714947" d="5.5230799560917458e-06" /> - <laneOffset s="430.19353424549922" a="7.8801501163901193" b="0.0025103267212261103" c="4.2937134687511556e-05" d="3.5787282588503558e-06" /> - <laneOffset s="436.21858541137033" a="7.8976163627542526" b="0.0034174604249567328" c="0.00017836091741604894" d="-1.433124781689402e-05" /> - <laneOffset s="440.19803504190617" a="7.9131373655543618" b="0.0041561672450546993" c="3.3886755029426141e-05" d="-1.0829010089223115e-05" /> - <laneOffset s="447.02787898271498" a="7.9396540309168575" b="0.0031036347698630128" c="-6.1065343420324471e-05" d="-9.8221434136100664e-07" /> - <laneOffset s="450.20253583831311" a="7.9488601359957318" b="0.0026862141645610962" c="-6.4473295726288337e-05" d="-8.4624592016333277e-08" /> - <laneOffset s="460.20703663472011" a="7.9691964943353062" b="0.0013707576522491776" c="-6.8342616129671172e-05" d="1.6618211746357703e-07" /> - <laneOffset s="470.63200840707162" a="7.9762474082188097" b="-0" c="-0.00094002774361569839" d="0.00015034412067657372" /> - <laneOffset s="474.80034674707662" a="7.9708030669213734" b="-0" c="4.7955147164542018e-05" d="-1.6902509962548608e-06" /> - <laneOffset s="480.216038227534" a="7.9719410970593554" b="0.00037069682788991727" c="1.6322090026491034e-06" d="-2.56367427890823e-06" /> - <laneOffset s="487.37402766748136" a="7.9737379361080443" b="-0" c="-0.00039412994697968478" d="2.0887856783707748e-05" /> - <laneOffset s="490.22053902394094" a="7.9710262103102263" b="-0.0017360512090641967" c="-0.00021533521031239053" d="1.9131468215850653e-05" /> - <laneOffset s="500.63002571849722" a="7.951200886879068" b="-0" c="1.0472631783122528e-05" d="1.6457644454210786e-07" /> - <laneOffset s="510.22954061675489" a="7.9523115317182711" b="0.0002465618665838829" c="1.5240180935760979e-05" d="-2.7606725966781149e-07" /> - <laneOffset s="516.01956225116123" a="7.9541964609189488" b="0.00039527889449803916" c="0.0014081707998874541" d="-0.00015550333796601312" /> - <laneOffset s="520.23404141316178" a="7.969233557434638" b="0.003978618170486242" c="-0.00057026361421911578" d="-0.00014991956531561367" /> - <laneOffset s="522.19933803725894" a="7.9737121403576809" b="-0" c="-0.001750703025234912" d="0.00010352817361038619" /> - <laneOffset s="530.23854220956878" a="7.9143558255334368" b="-0.008075812093352102" c="0.00065809933849863135" d="0.0001361392693993614" /> - <laneOffset s="531.72300455393201" a="7.9042631322559416" b="-0.0052219636172662585" c="0.0010488798272584815" d="-0.005525456652172224" /> - <laneOffset s="531.91209319279619" a="7.9032758640970684" b="-0.0054179811403912417" c="5.5717871049991151e-05" d="2.5981573699098119e-05" /> - <laneOffset s="539.56514309958311" a="7.8767209272633698" b="-0" c="4.232001380112323e-05" d="3.2167644498078678e-07" /> - <laneOffset s="550.24754380238267" a="7.8819423461720337" b="0.0010142817436693866" c="7.6236432221099199e-06" d="8.314106933035435e-06" /> - <laneOffset s="553.44269466841683" a="7.8855321590715457" b="0.0013176350042445782" c="0.00098020197546017335" d="-0.00013386400096706525" /> - <laneOffset s="558.9229732951344" a="7.9001591139627934" b="-0" c="-0.00049134437369273388" d="7.2746461869789591e-05" /> - <laneOffset s="560.25204459878967" a="7.8994619760110325" b="-0.00092055870094094822" c="-0.00032560508960623532" d="1.8255897958473045e-05" /> - <laneOffset s="569.946767365097" a="7.8765690434500728" b="-0.0020863740342647349" c="-0.00015979340675452593" d="1.2015239850288052e-05" /> - <laneOffset s="580.26104619160355" a="7.8512341388287732" b="-0.0015479811758822883" c="0.00018212136979449891" d="1.6408752179045777e-05" /> - <laneOffset s="583.21348944497424" a="7.8486736490478455" b="-4.3473759341514772e-05" c="-7.3866115068843945e-06" d="8.4325378864775459e-07" /> - <laneOffset s="590.26554698801056" a="7.8482954593327658" b="-2.1846511320634695e-05" c="-9.9503883901348672e-06" d="1.0746785778742146e-06" /> - <laneOffset s="597.3893701222039" a="7.8480233819349259" b="-0" c="0.00081447884240632557" d="-2.9940279917739759e-05" /> - <laneOffset s="600.27004778441756" a="7.8540664602444243" b="0.0039471414000651281" c="0.00048289560230859547" d="-3.8998684044776268e-05" /> - <laneOffset s="609.14463358704575" a="7.8998697137527563" b="0.0033037312792667207" c="-0.00036850027629440615" d="0.00014419183286508964" /> - <laneOffset s="610.27454858082444" a="7.9033401890621668" b="0.0030232558579196237" c="-0.00015145772655791691" d="4.2037380443357508e-06" /> - <laneOffset s="620.27904937723144" a="7.9226363620188591" b="0.0012549948448916535" c="-0.00017558043104376727" d="4.4716739481328348e-05" /> - <laneOffset s="622.14733932917807" a="7.9246598018630507" b="0.0010671768574860466" c="-7.6297038343989393e-05" d="3.134753921045952e-06" /> - <laneOffset s="630.28355017363833" a="7.929980251389849" b="0.00044818190873337389" c="-3.1731685217606991e-05" d="2.2164828230756099e-06" /> - <laneOffset s="640.16192672819852" a="7.9334476990377949" b="0.00047013546880140205" c="-3.1756457773356736e-05" d="1.349186188223355e-06" /> - <laneOffset s="650.29255176645233" a="7.9363540648600326" b="0.0002421091057145239" c="-1.8369083840283409e-05" d="1.5070725481343228e-06" /> - <laneOffset s="660.29705256285922" a="7.93844679170686" b="0.00032709091552543778" c="-8.7687343606154572e-06" d="1.8765205228281389e-06" /> - <laneOffset s="670.42682195080465" a="7.9428108950048504" b="0.00072710225610867309" c="0.00078439541672380793" d="-3.6562063444895252e-05" /> - <laneOffset s="680.30605415567311" a="7.991297154213318" b="0.0055202635766329264" c="-0.00037856666006128178" d="-1.6217774314198376e-05" /> - <laneOffset s="682.24400286287596" a="8.0004553428391425" b="0.0038702534193510284" c="0.00024837393755879631" d="-4.6993257841327257e-05" /> - <laneOffset s="689.53355520472087" a="8.0236629488648159" b="-0" c="-8.5665230182441616e-05" d="2.8579876159684251e-06" /> - <laneOffset s="700.31505574848711" a="8.0172869301904246" b="-0.00085055554559195564" c="-6.2086653264684428e-05" d="4.2663609610604185e-05" /> - <laneOffset s="701.33749955935855" a="8.0163979812530215" b="-0.00084371526944585656" c="-0.0001302958823274367" d="7.7756687238868724e-06" /> - <laneOffset s="710.319556544894" a="8.0039423833667929" b="-0.0013024043620270007" c="6.6178389077914827e-05" d="8.3209875497154871e-06" /> - <laneOffset s="715.36275135270807" a="8.0001245870326265" b="-0" c="1.9336865153891116e-05" d="2.6597388933134231e-07" /> - <laneOffset s="720.324057341301" a="8.0006330362286846" b="0.00021151269824533939" c="2.6432031443366052e-05" d="-1.8917902847170434e-06" /> - <laneOffset s="722.12684494610494" a="8.0010891696826185" b="0.00028837017540253872" c="0.00038170947882412617" d="-1.580357222651255e-05" /> - <laneOffset s="730.328558137708" a="8.0204121236407371" b="0.0033604847146583398" c="3.6387717386649717e-06" d="-1.6312535916626342e-05" /> - <laneOffset s="735.9973499419973" a="8.0366073263594018" b="0.0018291197554467056" c="-6.3917050014894087e-05" d="2.2072144575126209e-07" /> - <laneOffset s="740.33305893411489" a="8.0433543105586196" b="0.0012873159102929843" c="-4.8488319619716721e-05" d="1.2952226778238178e-06" /> - <laneOffset s="749.20611495253593" a="8.0518640208795009" b="0.00073275976613513952" c="-7.3934933843346415e-05" d="-1.4923250231154146e-05" /> - <laneOffset s="750.33755973052189" a="8.0525768335953174" b="0.00050814040630191217" c="-7.3517344284783429e-05" d="9.0180206944788919e-06" /> - <laneOffset s="757.84267538835593" a="8.0560617599851216" b="0.00092849575293995907" c="0.0025795349993983732" d="-0.00029204477427801869" /> - <laneOffset s="760.34206052692889" a="8.0699367593662448" b="0.0083498522938497792" c="0.00049092293061230301" d="-0.00029958247997931281" /> - <laneOffset s="762.55442887266918" a="8.087568507919471" b="0.0061230714176429306" c="-0.00030481297549141069" d="1.9441344805798777e-05" /> - <laneOffset s="770.34656132333578" a="8.1259709016883459" b="0.004914064797733971" c="0.00022831748842050038" d="5.1905916219538386e-06" /> - <laneOffset s="772.66010446053792" a="8.1386261439111447" b="0.0060538571569163958" c="-0.00029378343592545317" d="7.4800168350432257e-05" /> - <laneOffset s="778.06485647646946" a="8.1745733874579205" b="0.0094332443479860344" c="0.0016522320318530723" d="-0.00033049985416927469" /> - <laneOffset s="780.35106211974278" a="8.2008262320241023" b="0.011805622039814834" c="-0.00049272258467933415" d="-0.00036744416043027716" /> - <laneOffset s="781.48826033433215" a="8.2130739850031684" b="0.0092594173845080719" c="0.0004509831332379939" d="-0.00023529509760442408" /> - <laneOffset s="785.80487173785161" a="8.2425212658369187" b="-0" c="1.6669719526216043e-05" d="-5.2347585990059416e-06" /> - <laneOffset s="790.35556291614967" a="8.2423731555287727" b="-0.00017349906154209783" c="-3.0655563319354139e-05" d="-3.3758477686470053e-06" /> - <laneOffset s="798.5388830411955" a="8.237050455461052" b="-0.0013534360786562401" c="0.00029241414985552969" d="-4.5508125188445289e-05" /> - <laneOffset s="800.36006371255667" a="8.2352805704632868" b="-0.00074116834821979778" c="5.1843892210888142e-05" d="-4.2546179781471925e-05" /> - <laneOffset s="804.17880193167446" a="8.2308369687039704" b="-0.0022065342314578117" c="-0.0046992567433460893" d="0.00039124209999255415" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4931495171549134" b="0.00027439945441416329" c="0.0002972952794862423" d="-2.0957075830107889e-05" /> - <width sOffset="2.1978829964286919" a="2.494966248918514" b="0.0012775285448926436" c="-0.00038806216874742814" d="2.1868000291566377e-05" /> - <width sOffset="10.004500796406958" a="2.4916935836473648" b="-0.00078325443200174052" c="0.00012351840343973564" d="2.2173705793448662e-05" /> - <width sOffset="13.929394993450089" a="2.4918628392658153" b="0.0012110830381372303" c="-0.00022369753864098029" d="-2.6628356038197009e-05" /> - <width sOffset="15.938913715697693" a="2.4931771226607609" b="-1.0554871534271476e-05" c="9.2142610498469201e-05" d="-5.6582891246082209e-06" /> - <width sOffset="20.009001592813917" a="2.4942790607328078" b="0.0004583030492278841" c="2.8669680406350371e-05" d="-4.7426445361335058e-06" /> - <width sOffset="29.916850566701356" a="2.4970214936515855" b="-0.00037027903172342895" c="-0.00012129677309227002" d="7.6295337849908271e-06" /> - <width sOffset="30.013502389220875" a="2.4969845792940077" b="-0.00039351232450156727" c="-0.0001149594594201521" d="7.9935660518563154e-06" /> - <width sOffset="40.018003185627833" a="2.48954575261134" b="-0.0002935073850078788" c="0.00013701856377790054" d="7.1006607071904388e-06" /> - <width sOffset="40.23070431180625" a="2.4894895905517096" b="-0.00023425563998631546" c="1.0609273274039388e-05" d="9.0998261931115129e-06" /> - <width sOffset="44.55789001771398" a="2.4894118858934462" b="0.00036873102441850852" c="-2.6149350865828114e-05" d="1.5784033820934673e-06" /> - <width sOffset="50.022503982034792" a="2.4909035572362352" b="0.00022434168137268877" c="-6.6415775102890593e-06" d="5.4801999244366543e-08" /> - <width sOffset="60.02700477844175" a="2.4925381040612091" b="0.0001079057486527346" c="-6.3658065197403116e-06" d="1.7569216609834537e-07" /> - <width sOffset="70.031505574848708" a="2.4931564229039207" b="3.3287421646833939e-05" c="-3.7067674374868112e-06" d="1.2011090509618735e-07" /> - <width sOffset="80.036006371255667" a="2.493238709609864" b="-4.8155794025813879e-06" c="4.6057049966605685e-06" d="6.0418256391285845e-07" /> - <width sOffset="80.481734115334959" a="2.4932375317056596" b="-3.4969371811124136e-07" c="9.5069094744186381e-05" d="-5.3440876865077359e-06" /> - <width sOffset="82.383594388015823" a="2.4935439755760598" b="0.00030327671741863877" c="2.0630468803425615e-05" d="-2.4262863018776512e-06" /> - <width sOffset="90.040507167662625" a="2.4959864797895133" b="0.00019246089738528407" c="-3.5723867938372726e-05" d="-2.3391512513559324e-06" /> - <width sOffset="97.282295974157748" a="2.4946183820479408" b="-0.00069296838840369719" c="9.2624212964547282e-05" d="-3.3747054670295442e-06" /> - <width sOffset="100.04500796406958" a="2.4933397103503214" b="-0.00025845344442972269" c="6.0332573788182865e-05" d="-3.7562770034663607e-06" /> - <width sOffset="107.58191948259504" a="2.4932107717196601" b="1.0862753585735851e-05" c="0.00092678902046016505" d="-1.2230084729772413e-05" /> - <width sOffset="108.56996686501964" a="2.4941144741906509" b="0.001806467278245817" c="0.010680407669641312" d="-0.021404755415289235" /> - <width sOffset="109.02660025852106" a="2.4951283399196953" b="-0.0018290482373020224" c="0.00022621359882486807" d="-1.7669614055784285e-05" /> - <width sOffset="110.04950876047654" a="2.4934751756735523" b="-0.0014217219778183536" c="0.00017763798841860209" d="-5.5987418248119052e-06" /> - <width sOffset="120.0540095568835" a="2.4914250448360136" b="0.00045150199988082114" c="9.1949508185537268e-06" d="-5.6125204402774504e-06" /> - <width sOffset="124.53468574011903" a="2.4931278006301767" b="0.00019586258364634544" c="-0.00017383124372715925" d="-2.5425781256134372e-05" /> - <width sOffset="125.03708248178125" a="2.4931791017695897" b="1.9454915694931685e-06" c="5.7441639495085326e-05" d="-3.2996694956683686e-06" /> - <width sOffset="130.05851035329044" a="2.4942194624854945" b="0.00032922268649889126" c="8.6482339801380152e-06" d="-3.3586129495043427e-06" /> - <width sOffset="139.10650123824769" a="2.4954184583907288" b="-0.00033914905331376352" c="-8.7392588469737477e-05" d="1.2404938544004509e-05" /> - <width sOffset="140.06301114969742" a="2.4950249583310287" b="-0.0004722845554052885" c="-2.5967829222533429e-05" d="9.7297714923989956e-06" /> - <width sOffset="144.88389226649281" a="2.4932347541246624" b="-4.4274405128527042e-05" c="-5.1351675243790377e-05" d="6.4164070972158646e-06" /> - <width sOffset="149.31822530353307" a="2.4925881528216944" b="-0.00012119186963980861" c="-0.00015438630809941925" d="1.2895713199829692e-05" /> - <width sOffset="150.06751194610439" a="2.4924160930646764" b="-0.00033083092747041454" c="-7.8000447607982077e-05" d="1.5093728556626255e-05" /> - <width sOffset="154.42409232069267" a="2.4907424242326721" b="-0.00015103385508663178" c="4.7194420481098788e-05" d="-1.3417478870963771e-06" /> - <width sOffset="160.07201274251133" a="2.491153118716011" b="0.00025366553932898526" c="1.360669144732689e-05" d="-2.209724659931516e-06" /> - <width sOffset="166.14732274495464" a="2.492700930397441" b="0.00017431649805292691" c="-3.4345540529355288e-05" d="3.4353066730137481e-06" /> - <width sOffset="170.07651353891828" a="2.4930639972018049" b="6.3524496222417889e-05" c="6.2933627239898464e-05" d="2.2758131921032566e-06" /> - <width sOffset="170.43927565505379" a="2.4930954319614571" b="0.00011008283396432995" c="-1.2926940756756002e-05" d="4.2997532273450937e-06" /> - <width sOffset="174.73111029695499" a="2.4936696937199772" b="0.00023672460837048225" c="-3.8176757719959295e-05" d="2.0263692924248541e-06" /> - <width sOffset="180.08101433532525" a="2.4941537546022658" b="2.2336510845707286e-06" c="-3.8597691806814359e-05" d="1.7463608357057715e-05" /> - <width sOffset="181.99836605155062" a="2.4941392377077403" b="4.682407104355038e-05" c="-0.00072464030273461789" d="0.0005857438178107036" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="182.88009083592812" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8103425103325668" b="5.6891130713347393e-11" c="7.3577029421699361e-05" d="-9.3272297828842531e-07" /> - <width sOffset="2.1978829964286919" a="3.810688035262304" b="0.00030991037491969364" c="0.00061460082786685176" d="-4.3757799099976417e-05" /> - <width sOffset="10.004500796406958" a="3.8297449282167273" b="0.0019055862985121615" c="-0.00040763271337356888" d="-4.3669031101647846e-05" /> - <width sOffset="12.827019606936359" a="3.8308940914917002" b="-0.0014391984427557063" c="-0.014483321559237518" d="0.042373817738156676" /> - <width sOffset="13.091518380881311" a="3.8302842726832198" b="-0.00020747383429466516" c="-0.00054612416548214648" d="-4.4345041678257996e-05" /> - <width sOffset="13.929394993450089" a="3.8297009510544644" b="-0.0012160387749939497" c="-4.9286895733119461e-05" d="4.457020153230866e-06" /> - <width sOffset="20.009001592813917" a="3.8214877366596092" b="-0.0013211126405039688" c="3.617500164212321e-05" d="4.6225352277980145e-06" /> - <width sOffset="29.916850566701356" a="3.8164454060372313" b="0.00075704031286241832" c="0.00018257138029891559" d="-7.7496423731926481e-06" /> - <width sOffset="30.013502389220875" a="3.8165202738703981" b="0.00079211484456706495" c="0.00017905181461867889" d="-8.0508651353511813e-06" /> - <width sOffset="32.629977088003855" a="3.8196743913373741" b="0.0015637367146517896" c="3.6995935722877377e-05" d="-7.9166856650241666e-06" /> - <width sOffset="40.018003185627833" a="3.830054182030465" b="0.00081404290249135558" c="-0.00014322322965704655" d="-7.53510078577277e-06" /> - <width sOffset="40.23070431180625" a="3.8302207776902106" b="0.00075209271412906545" c="-1.7091156930605551e-05" d="-9.5342666674699295e-06" /> - <width sOffset="44.55789001771398" a="3.8323826889271437" b="6.8605332032318697e-05" c="1.4027753376932082e-05" d="-2.0128438564285846e-06" /> - <width sOffset="50.022503982034792" a="3.8328480228512873" b="4.1595181397604021e-05" c="-6.047003450652009e-06" d="3.4854029831985731e-07" /> - <width sOffset="53.311686783306229" a="3.8329318188708283" b="1.3128065246821401e-05" c="-5.592129350390036e-06" d="7.4730475302363774e-08" /> - <width sOffset="60.02700477844175" a="3.8327904288323724" b="-5.1867764968215491e-05" c="-6.1910978412600391e-06" d="2.4796690748959142e-07" /> - <width sOffset="70.031505574848708" a="3.831900152402258" b="-0.00010128840130485002" c="-3.6388660401221452e-06" d="2.4775242146556951e-07" /> - <width sOffset="80.036006371255667" a="3.8307706853741221" b="-9.9705831209020187e-05" c="1.5820850956381278e-06" d="-3.5942414029658857e-08" /> - <width sOffset="82.383594388015823" a="3.8305448712773398" b="-9.2871917397603426e-05" c="4.5276452900001524e-05" d="-2.9537437988475793e-06" /> - <width sOffset="90.040507167662625" a="3.8311622704864421" b="8.0964733582603726e-05" c="-2.0743206579549285e-05" d="-3.0203916790051427e-06" /> - <width sOffset="97.172861080270863" a="3.8295886456315227" b="-0.00067587730167276193" c="0.00029275458662190502" d="-1.5285806471670837e-05" /> - <width sOffset="97.282295974157748" a="3.8295181670650447" b="-0.0006123513557269773" c="0.0001085691856764229" d="-1.425025251310436e-05" /> - <width sOffset="100.04500796406958" a="3.8283545897938271" b="-0.00033875904549738201" c="-1.1452811312441557e-05" d="-1.3507307341318869e-05" /> - <width sOffset="108.56996686501964" a="3.8162658883668099" b="-0.0034789561510536644" c="-0.010146770889941812" d="0.021379018023222639" /> - <width sOffset="109.02660025852106" a="3.8145971285651532" b="0.00062781228768019406" c="0.00027216552283427175" d="-8.0677780082412281e-06" /> - <width sOffset="110.04950876047654" a="3.8155154662168052" b="0.0011592881819982837" c="0.00022338267285013194" d="-2.5946838636202036e-05" /> - <width sOffset="114.14588960361928" a="3.8222292378456286" b="0.0016832191732063042" c="8.7140226846080951e-05" d="-1.1677356067294276e-05" /> - <width sOffset="120.0540095568835" a="3.8328074056953882" b="0.0014900637819031642" c="-0.00012100275835398869" d="-1.1535749748216662e-05" /> - <width sOffset="124.53468574011903" a="3.8360168808745696" b="-0.00028907559562661462" c="-0.00016848410125050854" d="8.2775110366261079e-06" /> - <width sOffset="130.05851035329044" a="3.8306743287397698" b="-0.0013927227441846426" c="-2.9956923322833598e-05" d="8.3479998782698039e-06" /> - <width sOffset="133.68323545493931" a="3.8256300632131772" b="-0.001280850071481726" c="-6.0661918753624172e-05" d="1.079422257022098e-05" /> - <width sOffset="139.10650123824769" a="3.8186212615461983" b="-0.0009863885612596524" c="0.00011983261940525005" d="-4.9693289243749564e-06" /> - <width sOffset="140.06301114969742" a="3.8177830585504315" b="-0.00077078586913389372" c="9.7017973689618201e-05" d="-5.0264155569793513e-06" /> - <width sOffset="149.31822530353307" a="3.814974828320798" b="-0.00026661464781261137" c="0.00014584840724559168" d="-1.1505721667445735e-05" /> - <width sOffset="150.06751194610439" a="3.8148521011276868" b="-6.7429109300367728e-05" c="9.9480219594999875e-05" d="-9.6461240822028074e-06" /> - <width sOffset="154.42409232069267" a="3.8156488457424738" b="0.00025011373311889865" c="4.5484131752925342e-05" d="6.789352329191188e-06" /> - <width sOffset="154.83369282944506" a="3.8157593900072699" b="0.00029079158153488393" c="9.1549152249348884e-06" d="5.6025005852198305e-08" /> - <width sOffset="160.07201274251133" a="3.8175419131769806" b="0.00039131630871279237" c="3.713504836196877e-05" d="-5.5053727904173086e-07" /> - <width sOffset="166.14732274495464" a="3.8211664628292876" b="0.00078157018211247146" c="3.4778939437079036e-05" d="-6.1955686119590117e-06" /> - <width sOffset="170.07651353891828" a="3.8243985080474241" b="0.00076792475242751929" c="-6.018268536155737e-05" d="-5.756696996771038e-06" /> - <width sOffset="170.43927565505379" a="3.8246688874195627" b="0.00072198807483919106" c="1.1889684310073787e-05" d="-7.7806370320109735e-06" /> - <width sOffset="174.73111029695499" a="3.827371449293905" b="0.00039409081794309839" c="-7.6786318185838103e-06" d="-5.5072530970889954e-06" /> - <width sOffset="180.08101433532525" a="3.8284167412442338" b="-0.0001609461599072267" c="4.5364829758997685e-05" d="-3.9826563892957144e-05" /> - <width sOffset="181.99836605155062" a="3.827994199610977" b="-0.00042622122694676613" c="0.00060277448715690025" d="-0.00060810677334660298" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6768236945816608" b="1.8437243908305661e-09" c="0.0005475814918838802" d="-1.8619239663217161e-05" /> - <width sOffset="10.004500796406958" a="3.712986772962064" b="0.0053657596721211369" c="-7.5070016552518577e-06" d="-1.9341458174497806e-05" /> - <width sOffset="12.827019606936359" a="3.7276370148420335" b="0.0048611246616975835" c="0.013534636970278046" d="-0.042436828226036699" /> - <width sOffset="12.866431008441266" a="3.7278470235516923" b="0.0057302165842281145" c="0.0088664542465640931" d="-0.042418331590401079" /> - <width sOffset="13.091518380881311" a="3.7291023014627922" b="0.0032743819202041332" c="-9.0767032788366701e-05" d="-1.688106353194496e-07" /> - <width sOffset="20.009001592813917" a="3.7473535596165477" b="0.0019943895053652714" c="-9.0833021074155824e-05" d="-1.1295716516069513e-07" /> - <width sOffset="30.013502389220875" a="3.7581018408922087" b="0.0001429937817672287" c="-9.3117628523813734e-05" d="1.5227783592538018e-07" /> - <width sOffset="32.629977088003855" a="3.7578412304558753" b="-0.00034115860160268595" c="-1.3061111099629275e-05" d="1.8098363623808062e-08" /> - <width sOffset="32.96456033530071" a="3.7577256230425031" b="-0.00034989258141917878" c="-9.5947066497449062e-05" d="2.1094811143133329e-06" /> - <width sOffset="40.018003185627833" a="3.751224458994284" b="-0.0013885601423929146" c="-4.7191715468144592e-05" d="1.7790429558049868e-06" /> - <width sOffset="50.022503982034792" a="3.7343906336051629" b="-0.0017986258308975119" c="1.2304311649795796e-05" d="1.7658578033331248e-06" /> - <width sOffset="52.683686821487399" a="3.7297245789774527" b="-0.0016956209309670666" c="-0.00011040119504656636" d="4.3173503551600994e-06" /> - <width sOffset="53.311686783306229" a="3.7286172579295092" b="-0.0018291767424307612" c="-9.9282943305089194e-05" d="4.5911601839116601e-06" /> - <width sOffset="60.02700477844175" a="3.7132468846512983" b="-0.0025414878799655998" c="-8.816135404093284e-06" d="4.7819858906065869e-06" /> - <width sOffset="70.031505574848708" a="3.6917266054411138" b="-0.0012820025248235151" c="0.00013124236373969356" d="4.4311018566757339e-06" /> - <width sOffset="72.949115068593187" a="3.6892134669324053" b="-0.00040301605733343663" c="0.00010725821281629198" d="5.012828283283217e-08" /> - <width sOffset="80.036006371255667" a="3.6917621177320599" b="0.0011247914666529136" c="0.00010630746641958532" d="-9.9655936639650518e-08" /> - <width sOffset="90.040507167662625" a="3.7135556224601469" b="0.0032219740326568389" c="0.00010441067409684476" d="4.0145719037313132e-08" /> - <width sOffset="91.649067044359967" a="3.719008686655024" b="0.0035581873016730264" c="0.0020651760534357534" d="-0.00035187832709668835" /> - <width sOffset="95.634964531266434" a="3.7437186326476519" b="0.0032500745874056393" c="-0.00026963642175876357" d="7.5941280171148883e-06" /> - <width sOffset="97.172861080270863" a="3.748106809347731" b="0.0024746119465901607" c="-0.00061272477229252706" d="1.9859543066606323e-05" /> - <width sOffset="100.04500796406958" a="3.750630284189798" b="-0.00055358146450159998" c="-0.00044225793148076756" d="2.0419103649593359e-05" /> - <width sOffset="110.04950876047654" a="3.7212730523511204" b="-0.0032714746504567517" c="0.00016701059318453008" d="2.0441483496363866e-05" /> - <width sOffset="112.79500237979995" a="3.7139731536948961" b="-0.0018921741446462901" c="9.1599165633313043e-05" d="1.8050562294341973e-05" /> - <width sOffset="114.14588960361928" a="3.7116286975664869" b="-0.0015458726469442341" c="-1.7869964593288071e-05" d="3.7810797252607957e-06" /> - <width sOffset="120.0540095568835" a="3.7026514946887792" b="-0.0013610826745403112" c="4.8539060118272174e-05" d="3.7351450490058126e-06" /> - <width sOffset="130.05851035329044" a="3.6976330089284772" b="0.00073168786601668628" c="0.00016216892737107893" d="3.4228628150807157e-06" /> - <width sOffset="133.54880852766598" a="3.7023079272616521" b="0.001988817494912008" c="0.00012563839449338202" d="-3.0092552558204189e-06" /> - <width sOffset="133.68323545493931" a="3.7025775409374102" b="0.0020224327244281687" c="0.00024590742944712409" d="-5.4554770870752132e-06" /> - <width sOffset="140.06301114969742" a="3.7240724130045884" b="0.0044939622850036481" c="0.00014921810684733806" d="-5.4070089642963455e-06" /> - <width sOffset="150.06751194610439" a="3.7785531949731186" b="0.0058561044539167557" c="5.8012208819859272e-06" d="-7.1323350560121265e-06" /> - <width sOffset="154.83369282944506" a="3.8058240073860174" b="0.0054253391455407205" c="-5.1508793016546143e-05" d="-3.9900797487319666e-07" /> - <width sOffset="154.89775075867308" a="3.8061713319100345" b="0.005418735140413293" c="0.00028471742671004212" d="-7.4732215975786885e-05" /> - <width sOffset="159.07331955768447" a="3.8283210881883951" b="0.0038874969629654078" c="-0.00049172647099904603" d="8.6466321997879066e-06" /> - <width sOffset="160.07201274251133" a="3.8317216755696468" b="0.002931201355793161" c="-0.00044239664225164001" d="1.0138779444894163e-05" /> - <width sOffset="170.07651353891828" a="3.8269198613188209" b="-0.0028763413591323412" c="-0.0001171522959295051" d="9.7342788209182751e-06" /> - <width sOffset="178.10000898292424" a="3.8013276895949581" b="-0.0028763073920498681" c="-0.00010081356869522202" d="1.5176220293947082e-05" /> - <width sOffset="180.08101433532525" a="3.7953520615890666" b="-0.0030970599637702035" c="5.2676813183610728e-05" d="3.1057198948905087e-06" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.8367259557758486" b="3.6668516438420065e-09" c="0.00083030923590534343" d="-7.6909426913558221e-05" /> - <width sOffset="8.3004433063903829" a="3.8499492426271327" b="-0.0021126960630407925" c="9.9045422471081689e-05" d="1.7008849666061918e-05" /> - <width sOffset="10.004500796406958" a="3.8467208606085133" b="-0.0016269663733219958" c="0.00019154158724038977" d="1.8408334917588336e-05" /> - <width sOffset="12.866431008441266" a="3.8440649562017417" b="-7.8280678983658024e-05" c="2.8979308010920759e-07" d="-8.8302045049277779e-08" /> - <width sOffset="20.009001592813917" a="3.8434884389289268" b="-8.765547864226028e-05" c="1.387042457272183e-05" d="-9.301835036036968e-06" /> - <width sOffset="21.013867336193101" a="3.8434049243962241" b="-8.7957377480192122e-05" c="-0.00035140030601778861" d="2.8337436228035475e-05" /> - <width sOffset="29.79055151926109" a="3.8347225990197762" b="0.00029229749342573659" c="0.001022311521417106" d="-0.00013287952608202733" /> - <width sOffset="30.013502389220875" a="3.8348371105287775" b="0.00072833281571475566" c="0.00093360158515490049" d="-0.00013284354020706661" /> - <width sOffset="32.96456033530071" a="3.8417028794639352" b="0.0027678568153358539" c="-0.00015958124796174676" d="-0.00013493492295579241" /> - <width sOffset="34.87810737557578" a="3.8454695140184603" b="0.00067486601485433335" c="-0.0010968720838512897" d="0.00011622957141581225" /> - <width sOffset="40.018003185627833" a="3.8357431456857345" b="-0.0013889075532797323" c="0.00069598666441628501" d="0.00011617842477096447" /> - <width sOffset="40.660493398084462" a="3.8351688974332534" b="-0.00035070515741446686" c="0.00034787415424315712" d="-2.5269906044378167e-05" /> - <width sOffset="49.403685729144208" a="3.8418059215096561" b="-6.2797409618581528e-05" c="-0.0016561818920007901" d="0.00025512593924457077" /> - <width sOffset="50.022503982034792" a="3.8411933062413381" b="-0.0018194578363154707" c="-0.0011815271114606111" d="0.00025508636276101108" /> - <width sOffset="52.683686821487399" a="3.8327913588369231" b="-0.0026884933569423768" c="0.00099177056016843974" d="0.00025253487020299224" /> - <width sOffset="54.142184761043545" a="3.8317634069200635" b="0.0018160861110433821" c="0.00050885426657502539" d="-0.00018977893634864259" /> - <width sOffset="55.670451259630305" a="3.8350499495912382" b="0.0020416737756762623" c="-0.0013467335425267684" d="0.00013838897389059984" /> - <width sOffset="60.02700477844175" a="3.8298269588551785" b="-0.0018128748285299898" c="0.00045815404514029938" d="0.00013982398481057922" /> - <width sOffset="61.869659692010991" a="3.8289168718407258" b="0.0012998302573339394" c="2.5030873177374748e-05" d="-4.4468516211470334e-06" /> - <width sOffset="70.031505574848708" a="3.8387755501996548" b="0.00081973573868430831" c="-0.00010919119632807852" d="7.9428114083713497e-06" /> - <width sOffset="71.139590543904021" a="3.8395606230975199" b="0.00060700728961545609" c="0.00083042796043098768" d="-6.6405902285661454e-05" /> - <width sOffset="72.949115068593187" a="3.8429846939933325" b="0.0029600525335436653" c="0.00053270745957863849" d="-6.2024928711826004e-05" /> - <width sOffset="80.036006371255667" a="3.8686403079262539" b="0.0011651069264080828" c="-0.00078854443832554878" d="-6.232903192299347e-05" /> - <width sOffset="81.60107212351754" a="3.868293352225693" b="-0.0017611528159543746" c="-0.00017643333747420134" d="6.4944706594020796e-06" /> - <width sOffset="87.783791790480805" a="3.8521952016170959" b="-0.0031980552027022074" c="0.00066401743151860593" d="-4.7549666941338672e-05" /> - <width sOffset="90.040507167662625" a="3.8478133010355413" b="-0.00092753624376874528" c="0.00034580312342747613" d="-4.7543576082286599e-05" /> - <width sOffset="91.649067044359967" a="3.8470181761394482" b="-0.00018409818431305413" c="-0.0018441985921749046" d="0.00030437489673344368" /> - <width sOffset="95.498014978976016" a="3.8363443083114595" b="-0.00085315231283909776" c="0.0021701395257442075" d="0.00032873479748427329" /> - <width sOffset="95.634964531266434" a="3.8362690152010956" b="-0.00024025659914747978" c="0.00043235943196250645" d="-3.0737657558579568e-05" /> - <width sOffset="100.04500796406958" a="3.8409818807113449" b="0.00177978870915893" c="2.1791960899099312e-05" d="-2.7973361968172722e-05" /> - <width sOffset="101.38033649047428" a="3.8433307353012869" b="0.0016883494672635881" c="0.00041454950388270125" d="-8.6102078278962966e-05" /> - <width sOffset="106.20416667835788" a="3.8514566101199215" b="-0.00032283271399894558" c="-0.00017057170711898219" d="5.7250702947990312e-06" /> - <width sOffset="110.04950876047654" a="3.8480185488520893" b="-0.0013806819103932126" c="-0.00011132135567897786" d="4.9750620829240565e-06" /> - <width sOffset="112.79500237979995" a="3.8434917425084087" b="-0.0018794439518564114" c="0.00017343296301143432" d="7.36598328513094e-06" /> - <width sOffset="115.36821733591225" a="3.8399294087439038" b="-0.0008405632199976617" c="0.0017220055623904155" d="-0.00016755473278755027" /> - <width sOffset="120.0540095568835" a="3.8565614250398692" b="0.0042605360807638701" c="-0.00063480238374970265" d="-0.00016739761130169591" /> - <width sOffset="122.51459767136271" a="3.8607076170664993" b="-0.0019039617542256164" c="-0.001191621961946106" d="0.0001152797342024895" /> - <width sOffset="127.66377757148983" a="3.8350476854283873" b="-0.005006114294142926" c="-0.0062672307515315977" d="0.012887292158097955" /> - <width sOffset="128.10329986673995" a="3.8327309032841743" b="-0.0030465941621574026" c="0.0014958935431266364" d="-0.00021651525681825085" /> - <width sOffset="130.05851035329044" a="3.8308744067872174" b="0.00031986454257494634" c="0.00022749741335639293" d="-0.00021710868788338489" /> - <width sOffset="132.06271541241927" a="3.8306814531463114" b="-0.0013845037539757989" c="-0.00022114075320847206" d="-8.7216232086162791e-06" /> - <width sOffset="133.54880852766598" a="3.8281069439889954" b="-0.0020995596571654826" c="-0.00018765321730545962" d="-2.2895059983865158e-06" /> - <width sOffset="137.43130293998382" a="3.8169927846624896" b="-0.0036602192039197311" c="-0.00071899519842314418" d="0.00010512340845551221" /> - <width sOffset="140.06301114969742" a="3.8042965510407085" b="-0.0052603714454906155" c="0.00013344421425696024" d="0.00010385470909968675" /> - <width sOffset="142.43934917494889" a="3.793943328258774" b="-0.0028667571777862937" c="0.0059244483718023846" d="-0.00081375931120630221" /> - <width sOffset="146.3784690625057" a="3.8248399104479747" b="0.005926974570021698" c="-0.00060877736141695248" d="3.4762246086398204e-05" /> - <width sOffset="150.06751194610439" a="3.840165114944301" b="0.002854605105342984" c="-0.00022242056529252267" d="3.4627974558201031e-05" /> - <width sOffset="150.35413188367352" a="3.8409658449661923" b="0.0027356389352890514" c="-0.00054527353648910789" d="1.6868669637564873e-05" /> - <width sOffset="154.89775075867308" a="3.8437209527323226" b="-0.0011746569711861398" c="-0.00065164201779601587" d="9.1201877912989955e-05" /> - <width sOffset="159.07331955768447" a="3.8340942033961074" b="-0.0018461923561155121" c="0.00033111249945467727" d="7.8230297396138404e-06" /> - <width sOffset="160.07201274251133" a="3.8325884637314553" b="-0.0011614249731085741" c="0.0003761039086238254" d="6.0575619352097608e-06" /> - <width sOffset="164.36272647239542" a="3.8350077839788468" b="0.0024006466581109158" c="0.0003633881587342783" d="-4.2855646085600109e-05" /> - <width sOffset="167.76465107143122" a="3.8456928667824957" b="0.0033851680173571479" c="0.0003814371138286069" d="-9.9528974412024714e-05" /> - <width sOffset="170.07651353891828" a="3.854327776790047" b="0.0035529683739004211" c="-0.00018924814083901584" d="-0.00012944657518284701" /> - <width sOffset="171.40164327156231" a="3.8584023995037429" b="0.0023694992522525563" c="-0.0012095841507802042" d="0.00010434700250388364" /> - <width sOffset="178.10000898292424" a="3.851363182958174" b="0.00021058148291720931" c="0.0011052490982632673" d="9.8905061031244202e-05" /> - <width sOffset="179.27436683021779" a="3.8532949323554453" b="0.0032157021477693974" c="0.00078729353185025101" d="-6.9083661006604245e-05" /> - <width sOffset="180.08101433532525" a="3.8563648868702911" b="0.00435098476371539" c="0.00062392582378948335" d="-6.8645077553641383e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid broken"> - <type name="solid broken"> - <line length="6" space="12" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.9720890399898625" b="-1.8121613443197428e-09" c="0.012995115663854695" d="-0.0093892095300332629" /> - <width sOffset="0.9969742311678097" a="3.9757013939693158" b="-0.0020858399235566955" c="-0.071372123234684226" d="0.12036426577785125" /> - <width sOffset="1.3875928576358521" a="3.9711703778311387" b="-0.0027478111332184989" c="0.0022908283495025289" d="-0.00044566772166227298" /> - <width sOffset="5.1846763594330616" a="3.9693670977049758" b="-0.0046275799537419948" c="0.00015521050265518129" d="0.00010522726133032602" /> - <width sOffset="8.3004433063903829" a="3.9596383224221463" b="-0.00059574052892744848" c="-4.5081829063637536e-05" d="1.1308984750643997e-05" /> - <width sOffset="10.004500796406958" a="3.9585481969834837" b="-0.00065086709140446165" c="1.6910855617961124e-05" d="8.6341750158605795e-06" /> - <width sOffset="12.745535076756672" a="3.9570690170827363" b="-0.00036354798494201844" c="5.4019125036153637e-05" d="-2.7157669296848305e-06" /> - <width sOffset="20.009001592813917" a="3.9562376395171666" b="-8.6506267763472068e-06" c="-1.0394869533323998e-05" d="6.0692372627013426e-06" /> - <width sOffset="21.013867336193101" a="3.9562246087885797" b="-1.1156192408766315e-05" c="0.00034513088076337746" d="-3.1570034001362338e-05" /> - <width sOffset="26.035728153818692" a="3.9608742274367406" b="0.0010667400874184887" c="-0.00066126659520602735" d="-2.2012335611676476e-06" /> - <width sOffset="29.79055151926109" a="3.9554401205120824" b="-0.0039922420224714709" c="-0.0013136479671733896" d="0.00015901572870609596" /> - <width sOffset="30.013502389220875" a="3.954486511312115" b="-0.0045542873091029747" c="-0.001202195658374786" d="0.00015998903446366605" /> - <width sOffset="34.87810737557578" a="3.9223000823779421" b="-0.0048925765724532871" c="0.0012953325746019317" d="-9.1175459907935107e-05" /> - <width sOffset="39.465952443487687" a="3.9183137869261695" b="0.0012357223385844004" c="-0.00040222428048138439" d="-0.00011878863539362441" /> - <width sOffset="40.660493398084462" a="3.9190134846575817" b="-0.00023373293598872918" c="-0.00025587493762208046" d="2.2659695421608036e-05" /> - <width sOffset="49.403685729144208" a="3.9125547810088332" b="0.00048849278745574892" c="0.0016797163881143874" d="-0.00025773614985962157" /> - <width sOffset="50.022503982034792" a="3.9134392180177606" b="0.0022712817346184503" c="0.0012095944433184189" d="-0.00025729192436560927" /> - <width sOffset="54.142184761043545" a="3.9253357249328578" b="-0.00086253018247922902" c="-0.00038240628572565701" d="0.00018502188218648934" /> - <width sOffset="55.670451259630305" a="3.923784821645409" b="-0.00073495712678399731" c="0.0014513713838521112" d="-0.0001431460280527412" /> - <width sOffset="60.02700477844175" a="3.9362932342093551" b="0.0037604518249130222" c="-0.00042251275565836151" d="-0.00014344961159789313" /> - <width sOffset="61.869659692010991" a="3.9408903654006773" b="0.00074216482259663514" c="-9.4319207390579593e-06" d="8.2122483384991609e-07" /> - <width sOffset="64.515807659135717" a="3.9428034162322922" b="0.00070949919973804494" c="0.00046421934734802115" d="-2.8843204328743888e-05" /> - <width sOffset="70.031505574848708" a="3.9559997140506975" b="0.0031980027768004865" c="-9.1710179296875477e-06" d="-4.115856663662195e-05" /> - <width sOffset="71.139590543904021" a="3.9594761133113248" b="0.0030260683205982266" c="-0.0010592078120015595" d="3.3190147057431878e-05" /> - <width sOffset="76.268295708888672" a="3.9516123961033647" b="-0.0052195981156182422" c="-0.00041186126223590586" d="8.5018688306932045e-05" /> - <width sOffset="80.036006371255667" a="3.9306470560896782" b="-0.0047024612492595191" c="0.00054422699541499552" d="8.3925565098132208e-05" /> - <width sOffset="81.60107212351754" a="3.9249421717618334" b="-0.0023822495908820233" c="3.3515877883722795e-05" d="1.5102062515736105e-05" /> - <width sOffset="87.765545420625898" a="3.9150682116109006" b="-0.000247365875385895" c="0.0002647265310979304" d="-1.8951334695022465e-05" /> - <width sOffset="87.783791790480805" a="3.9150637861019288" b="-0.00023772420743758071" c="-0.00045630114589576904" d="3.5092725262081927e-05" /> - <width sOffset="90.040507167662625" a="3.9126067939107823" b="-0.0017610508980314648" c="-0.00021709130478294686" d="3.5720758966644655e-05" /> - <width sOffset="95.498014978976016" a="3.9023362700142452" b="-0.00093884267092497406" c="-0.00013202106904611669" d="1.1360858145079304e-05" /> - <width sOffset="100.04500796406958" a="3.8964058355254898" b="-0.0014347782451401597" c="2.6741020642978328e-05" d="8.6507290145829607e-06" /> - <width sOffset="100.73312787046554" a="3.8954340168432897" b="-0.00138568759361213" c="5.8268208575315214e-05" d="2.5510354972684162e-05" /> - <width sOffset="101.38033649047428" a="3.8945685111276354" b="-0.0012782069641084407" c="-0.00039701865413977789" d="8.3639071283574695e-05" /> - <width sOffset="106.20416667835788" a="3.888552559391794" b="0.00073016927710938938" c="0.00015245917437050718" d="-8.1880772902262671e-06" /> - <width sOffset="110.04950876047654" a="3.8931490993403717" b="0.0015394617952237313" c="5.8270522078362607e-05" d="-7.6959867564921561e-06" /> - <width sOffset="115.36821733591225" a="3.9018275114575474" b="0.0015061821669935169" c="-0.0015562374345074817" d="0.00016722472931616507" /> - <width sOffset="120.0540095568835" a="3.8919202076273214" b="-0.0020631444364412133" c="0.00079462980790434654" d="0.00016705419348509554" /> - <width sOffset="122.51459767136271" a="3.8941434494165876" b="0.0048816546558383047" c="0.0013489143567072925" d="-0.00011562315201910022" /> - <width sOffset="127.32692786980455" a="3.9359886559106139" b="0.0098315133356131814" c="-0.00059720849351414037" d="-0.00012036119378423697" /> - <width sOffset="127.66377757148983" a="3.9392280339642243" b="0.0093882029985852874" c="0.0061375576701435423" d="-0.012892373617685488" /> - <width sOffset="128.10329986673995" a="3.9434453601169204" b="0.0073117495390995508" c="-0.001632266868856999" d="0.00021143379723059889" /> - <width sOffset="130.05851035329044" a="3.953081817401348" b="0.0033537367776829557" c="-0.00039064174792995468" d="0.00021168431065785978" /> - <width sOffset="132.06271541241927" a="3.959938427732514" b="0.0043387891404126659" c="2.5381725800990001e-05" d="3.2972459830642335e-06" /> - <width sOffset="137.43130293998382" a="3.984473331732544" b="0.0048964141941320169" c="0.00058316138516273136" d="-0.00010411566847105522" /> - <width sOffset="138.84381146269124" a="3.9922596508990447" b="0.0059206664471325009" c="0.00033962235014702404" d="-0.00014050072066100475" /> - <width sOffset="140.06301114969742" a="3.9997283303050524" b="0.0061222603793820406" c="-0.00014188894030251362" d="-0.00011506588206485639" /> - <width sOffset="142.43934917494889" a="4.0119315610259942" b="0.0034985831748500056" c="-0.00601281770772236" d="0.00080254813824112822" /> - <width sOffset="146.3784690625057" a="3.9814673703854653" b="-0.006513223452007607" c="0.00038792156232720217" d="-4.597341905160032e-05" /> - <width sOffset="150.06751194610439" a="3.960410984450029" b="-0.0055280668316380699" c="-3.9945544432197592e-05" d="-7.3543951746673087e-05" /> - <width sOffset="150.35413188367352" a="3.958821517039834" b="-0.0055690903355597671" c="0.00024944514190699619" d="-5.5784646825568367e-05" /> - <width sOffset="151.77602906730871" a="3.9512468006941686" b="-0.00519807443728446" c="0.00015519798448616735" d="-1.2235957104445924e-05" /> - <width sOffset="160.07201274251133" a="3.9118186948556617" b="-0.0051493930425654325" c="-0.00013927197288646616" d="-9.8907568556603233e-06" /> - <width sOffset="164.36272647239542" a="3.8863787945878641" b="-0.0068908185320475188" c="-0.00017589764922040817" d="3.9022451165147207e-05" /> - <width sOffset="167.76465107143122" a="3.8624374144714353" b="-0.0067327684791387349" c="-0.000233067324592955" d="9.5695779491576454e-05" /> - <width sOffset="170.07651353891828" a="3.8468089419718003" b="-0.0062760096650554334" c="0.00031201931780829397" d="0.00012557900924312415" /> - <width sOffset="170.82063553358532" a="3.8423633384577593" b="-0.0056030428894346621" c="8.0614493991367083e-05" d="0.00020097868539219925" /> - <width sOffset="171.40164327156231" a="3.8391745583226093" b="-0.0053058344804226927" c="0.00093666050138246785" d="-3.2814892293510009e-05" /> - <width sOffset="176.39194365189525" a="3.831944562730492" b="0.0015910226074537818" c="0.022233742798912923" d="-0.0040662287539906744" /> - <width sOffset="179.27436683021779" a="3.9238776401926709" b="0.028414015566313445" c="-0.01226162785761347" d="-0.0038982400319499161" /> - <width sOffset="179.71378310971855" a="3.9336649165161854" b="0.015380003257512442" c="0.0097851275646468963" d="-0.0043633943977333754" /> - <roadMark sOffset="0" color="standard" width="0.27156284648318907" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.271563" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="127.32692786980455" color="standard" width="0.29238300025702485" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.292383" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.6885453629290401" b="-9.2419806313461077e-10" c="-0.014369073975341963" d="0.0095132986007165649" /> - <width sOffset="0.9969742311678097" a="3.6836903159724486" b="-0.00028374704410157064" c="0.070369305740719118" d="-0.12024017670716837" /> - <width sOffset="1.3875928576358521" a="3.6871501104141915" b="-0.00034841260360909471" c="-0.0031482313364164941" d="0.00056975679234502589" /> - <width sOffset="3.0157586405641066" a="3.6806962675526931" b="-0.0060689521293451083" c="-0.00051142409740967572" d="0.00054863785466379117" /> - <width sOffset="5.1846763594330616" a="3.6707251357711597" b="-0.0005447124141925695" c="0.00011733218248317411" d="-2.2571283288818987e-06" /> - <width sOffset="10.004500796406958" a="3.6705727011981422" b="0.00042902456186413027" c="9.8365229557402585e-05" d="-1.1660980523449805e-05" /> - <width sOffset="11.24891419647633" a="3.6712364386880454" b="0.00061966523260946883" c="0.00022516071519901817" d="-1.9930473986478803e-05" /> - <width sOffset="12.745535076756672" a="3.6726013624814193" b="0.0011597004331683832" c="0.00016956706431731051" d="-8.5805320412332245e-06" /> - <width sOffset="20.009001592813917" a="3.6866827100427457" b="0.0022649160870884966" c="1.4408860108073443e-05" d="-2.7532239291555022e-05" /> - <width sOffset="21.287177618406702" a="3.6895437189189577" b="0.0021668091438291396" c="0.00054929981518227363" d="-0.00010342968906559708" /> - <width sOffset="25.853793023741051" a="3.7010439628607061" b="0.00071293029901591518" c="4.4556372263805514e-05" d="4.773109202584298e-06" /> - <width sOffset="26.035728153818692" a="3.7011751735050176" b="0.00072961701316042555" c="0.00057793808676761594" d="-2.4595691181043332e-05" /> - <width sOffset="30.013502389220875" a="3.7116739290373086" b="0.0041599216422135727" c="0.00028586013898421561" d="-2.3527283174274296e-05" /> - <width sOffset="31.745390746815733" a="3.719613651501966" b="0.0049383715044443652" c="0.00094327837696656937" d="-7.8855911620074462e-05" /> - <width sOffset="39.465952443487687" a="3.7776772192258168" b="0.005402539096989489" c="-0.00044049721256893796" d="-5.1242736116487191e-05" /> - <width sOffset="40.018003185627833" a="3.7805168277721446" b="0.0048693352586436679" c="-0.00049479633678976744" d="-6.0915543822439089e-05" /> - <width sOffset="42.205372255349879" a="3.7881629459925961" b="0.0018303643448927093" c="-0.0026841831134785613" d="0.00025226170084629603" /> - <width sOffset="49.192451579789804" a="3.7559594832891552" b="0.0012668655926264269" c="0.00039260109719657047" d="-6.5516068260892884e-05" /> - <width sOffset="50.022503982034792" a="3.7572440768341089" b="0.0017832054042362974" c="0.00022110223055997897" d="-6.5960293765465267e-05" /> - <width sOffset="53.513699883481593" a="3.7633577297147554" b="0.00091516681190583014" c="-0.00039470262012104704" d="1.6834259714043635e-05" /> - <width sOffset="60.02700477844175" a="3.7572255213627299" b="-0.0020839837004689235" c="-6.8942151220648408e-05" d="1.7315384578227478e-05" /> - <width sOffset="64.515807659135717" a="3.7480479050457385" b="-0.0016562378540944023" c="-0.0003028981274880272" d="4.697981370868367e-05" /> - <width sOffset="64.814928859678602" a="3.7475266451774836" b="-0.0018248340131238399" c="-0.00043918387843165066" d="2.6966106444620586e-05" /> - <width sOffset="70.031505574848708" a="3.7298839188703825" b="-0.0042054473209669103" c="-3.0739352442970098e-05" d="2.715766133646461e-05" /> - <width sOffset="75.360823577359781" a="3.7107093244973059" b="-0.0022191213125590482" c="0.00020749178645933309" d="5.9019263307921533e-05" /> - <width sOffset="76.268295708888672" a="3.7089105100061035" b="-0.0016967271912595395" c="0.00023148768264536857" d="7.1907220620050231e-06" /> - <width sOffset="80.036006371255667" a="3.706188445854794" b="0.00035386081257861236" c="0.00030978520845058722" d="6.8599308085538775e-06" /> - <width sOffset="82.654264359998947" a="3.7093617355797122" b="0.0021171361405899567" c="0.00017608388649515249" d="-2.9470135872298612e-05" /> - <width sOffset="87.765545420625898" a="3.7208479973134345" b="0.0016074255510909845" c="-0.00022772842642352123" d="4.5833389820693567e-06" /> - <width sOffset="90.040507167662625" a="3.723380195669856" b="0.00064244117171081624" c="-0.00019763804739448003" d="3.6287323468089045e-06" /> - <width sOffset="100.04500796406958" a="3.7136595337766014" b="-0.0022224989777094341" c="-0.00010325358132838937" d="1.3308376502747985e-05" /> - <width sOffset="100.73312787046554" a="3.712085632768737" b="-0.0023456957587701856" c="-8.9449276357673823e-05" d="-3.5512494660912242e-06" /> - <width sOffset="101.22626008039236" a="3.7109067165517944" b="-0.0024365071693096462" c="-0.00078188830681709008" d="7.7394552401145779e-05" /> - <width sOffset="108.37508004788627" a="3.6818053803793376" b="-0.0017497732858238627" c="0.00079104332778477063" d="-7.4240689831866713e-05" /> - <width sOffset="110.04950876047654" a="3.6807448355742931" b="0.000274869605499276" c="0.00038605499994737711" d="-8.1203181498565121e-05" /> - <width sOffset="111.94798140019431" a="3.682102456304734" b="0.00086268219349151798" c="0.0011709293378350844" d="-0.00018454300262820683" /> - <width sOffset="117.36734090649806" a="3.6917946630270073" b="-0.0027057273249899514" c="-0.00016908680273089064" d="-4.3175612395842821e-06" /> - <width sOffset="120.0540095568835" a="3.6832210398926124" b="-0.003707782661016081" c="-0.00020703828982176407" d="-4.6867164452829062e-06" /> - <width sOffset="123.85038194248632" a="3.6659045548772191" b="-0.0054824126584531148" c="-0.0025312879289522963" d="0.00015682779522286749" /> - <width sOffset="127.32692786980455" a="3.6228403288054443" b="-0.017396253115349491" c="-0.00061875833872386153" d="0.00016156583708024371" /> - <width sOffset="127.68010615463619" a="3.6166262867738013" b="-0.017772858436948053" c="-0.0011427078021329935" d="-1.1514709179236259e-06" /> - <width sOffset="130.05851035329044" a="3.5678756765975477" b="-0.023228041450436911" c="-0.0011495352573722784" d="-1.3822116982917643e-06" /> - <width sOffset="137.4467083814468" a="3.3329569543772406" b="-0.040440375720065473" c="1.6304395696990743e-05" d="-0.00034671311570733321" /> - <width sOffset="138.84381146269124" a="3.2755439182221568" b="-0.042425062768775529" c="-0.0016345312632644554" d="-0.00031032806351784101" /> - <width sOffset="140.06301114969742" a="3.2208272491018128" b="-0.047794562251297613" c="-0.0028236177411468007" d="-0.00033448558425287636" /> - <width sOffset="140.83298703465007" a="3.182199881276806" b="-0.052737709633066454" c="-0.003986856183488016" d="0.00030858021294734409" /> - <width sOffset="146.16351679349151" a="2.8345342119949155" b="-0.06893731932945818" c="-0.0017396993970210366" d="5.4252473249930287e-05" /> - <width sOffset="150.06751194610439" a="2.5421162858154602" b="-0.080040260525500867" c="-0.0011303430732065554" d="8.6837419735782788e-05" /> - <width sOffset="151.77602906730871" a="2.4024997009264792" b="-0.083142238216039943" c="-0.00082896635728170118" d="4.3288730014198874e-05" /> - <width sOffset="160.07201274251133" a="1.6804168307266742" b="-0.087958595331424944" c="0.00025197406093660111" d="4.2827436948184573e-05" /> - <width sOffset="170.05119013619267" a="0.87031544480526524" b="-0.070134827565655991" c="-0.00059215753587505164" d="0.00019108038333569239" /> - <width sOffset="170.82063553358532" a="0.81608698604844321" b="-0.070706708090919584" c="0.00036066336095596016" d="0.00011568070718774001" /> - <width sOffset="175.2160741682344" a="0.52209149322954662" b="-0.060831348331178529" c="0.0019138789550915743" d="-0.00021302803975088393" /> - <width sOffset="176.39194365189525" a="0.45286167910639907" b="-0.057214046441061789" c="-0.020625951364237914" d="0.0038203858219465615" /> - <width sOffset="179.71378310971855" a="0.17524343178169666" b="-0.067776757226618564" c="-0.0097394320784813127" d="0.0042855401877457339" /> - <width sOffset="180.08101433532525" a="0.14925248090028465" b="-0.073196176309526892" c="-0.0048493779984666932" d="0.004269130954614119" /> - <roadMark sOffset="0" color="standard" width="0.29238300025702485" weight="bold" type="solid"> - <type name="solid"> - <line length="182.88009083592812" space="0" width="0.292383" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link> - <successor id="-5" /> - </link> - <width sOffset="0" a="2.4931495171548477" b="-0.00023050356653928918" c="0.00014613431591844065" d="-2.6900291189887263e-05" /> - <width sOffset="3.0157586405641066" a="2.4930456227204001" b="-8.3050234022690101e-05" c="4.8928261805408099e-05" d="-5.7813535080192511e-06" /> - <width sOffset="7.7359685532566189" a="2.4931357346898224" b="-7.5791885658292547e-06" c="0.00014746973425419689" d="-1.540570314285591e-05" /> - <width sOffset="10.004500796406958" a="2.4936976030209586" b="0.00042365623585177085" c="3.5814248804684761e-05" d="-1.5583003414951143e-06" /> - <width sOffset="11.24891419647633" a="2.4942772642697388" b="0.00050555231135474043" c="-0.00014033198758068736" d="6.7111931218266941e-06" /> - <width sOffset="20.009001592813917" a="2.4924485343991893" b="-0.00040805525177911085" c="4.5334527887992952e-06" d="2.5959565497917695e-05" /> - <width sOffset="21.287177618406702" a="2.4919885831685082" b="-0.00026923307980978054" c="-0.0005363879641027186" d="0.00010185701527196189" /> - <width sOffset="25.853793023741051" a="2.4892733337383106" b="0.0012041831752333063" c="-5.3189910365652025e-05" d="-6.3457830528125903e-06" /> - <width sOffset="30.013502389220875" a="2.4929052856677263" b="0.0004322673212536861" c="-0.00013516237112231799" d="-6.8012802429437816e-06" /> - <width sOffset="31.318854199879411" a="2.4932241098575982" b="4.4631440787350454e-05" c="0.00092345317280228222" d="-6.7537686174239499e-05" /> - <width sOffset="31.745390746815733" a="2.4934059127883792" b="0.00079554240808861519" c="5.7373177029899306e-05" d="-1.2209057699207301e-05" /> - <width sOffset="40.018003185627833" a="2.4970014215410465" b="-0.0007618269634804475" c="-0.00024141758901369362" d="-1.0131147719163062e-05" /> - <width sOffset="42.205372255349879" a="2.4940739131598431" b="-0.0019633856627116041" c="0.0014817531809165564" d="-0.00032330839238839534" /> - <width sOffset="43.198952465753315" a="2.4932687996166454" b="2.3583891583802211e-05" c="0.00047612791261268357" d="-7.5427376249871545e-05" /> - <width sOffset="49.192451579789804" a="2.4942742181946613" b="-0.0023975854498271658" c="0.0013308395067556566" d="0.00024235039285771805" /> - <width sOffset="49.937649035109224" a="2.4933268744548869" b="-1.0363508780665163e-05" c="-0.00042775402550525738" d="6.8791009674893969e-05" /> - <width sOffset="53.513699883481593" a="2.4909655200558998" b="-0.00043057668106329675" c="0.00023521034894372536" d="-1.4003543804641696e-05" /> - <width sOffset="60.02700477844175" a="2.4942700174667163" b="0.00085119382771367915" c="-3.611037865455343e-05" d="-1.4935331729199249e-05" /> - <width sOffset="64.814928859678602" a="2.4958783735271872" b="-0.00052173603229994925" c="-7.2194356211298258e-05" d="5.0783755669748579e-06" /> - <width sOffset="70.031505574848708" a="2.4919130070404485" b="-0.00086036231214123987" c="2.3172335966914758e-05" d="5.1615189494732183e-06" /> - <width sOffset="75.360823577359781" a="2.488767249124276" b="-0.00017359015760047536" c="0.00030165876504193427" d="-2.6700083025627509e-05" /> - <width sOffset="80.036006371255667" a="2.4918207375812642" b="0.00089625166822063218" c="-7.0610828321795001e-05" d="-2.5777333776726412e-05" /> - <width sOffset="82.654264359998947" a="2.4932206248069182" b="-3.6351898148556888e-06" c="-8.550143070739841e-05" d="1.0552733054299925e-05" /> - <width sOffset="82.902653335504922" a="2.4932146083962774" b="-4.4157196854810845e-05" c="-3.2538125411990559e-06" d="-2.2693272494649072e-07" /> - <width sOffset="90.040507167662625" a="2.4926511146590915" b="-0.00012529363064744405" c="-7.2465306032846625e-06" d="-2.2835544315425619e-07" /> - <width sOffset="100.04500796406958" a="2.4904436450048397" b="-0.0003388577867355011" c="-1.1091407286721973e-05" d="-8.0167624891284202e-06" /> - <width sOffset="101.22626008039236" a="2.4900146782869683" b="-0.00039862000984766373" c="0.00064768446371343054" d="-8.8962564352700009e-05" /> - <width sOffset="105.69717540692075" a="2.4932285610158562" b="5.8024304351948428e-05" c="0.00049452480005528492" d="-0.00010706215302404875" /> - <width sOffset="108.37508004788627" a="2.4948742761819549" b="0.00040332106990197082" c="-0.0002786743791673089" d="4.4573089208447658e-05" /> - <width sOffset="110.04950876047654" a="2.4949775394922611" b="-0.00015500944375654497" c="-3.7982287402327567e-05" d="4.892576190845413e-05" /> - <width sOffset="111.94798140019431" a="2.4948811357613181" b="0.00022978834243053692" c="-0.0010066900192076812" d="0.00015226558303810025" /> - <width sOffset="117.36734090649806" a="2.4907956474394464" b="0.0027344307817648958" c="-0.00019144270072547469" d="-2.7959858350390559e-05" /> - <width sOffset="120.0540095568835" a="2.4962180652145474" b="0.0011002859982607639" c="-0.00041429006389744028" d="-2.7647742638271155e-05" /> - <width sOffset="123.85038194248632" a="2.4929114822571155" b="-0.0032407272867854111" c="0.0015416986325287236" d="-0.00018916225430641931" /> - <width sOffset="127.68010615463619" a="2.492486960006465" b="0.00024462609074502213" c="6.3514935511364314e-05" d="-2.6444946394469563e-05" /> - <width sOffset="130.05851035329044" a="2.493072276561799" b="9.7972632820002986e-05" c="-0.0001294052732845794" d="-2.591314945822979e-05" /> - <width sOffset="130.41186851989374" a="2.4930895948770555" b="-3.1868899549661323e-06" c="6.0270095772292729e-05" d="-3.8612277279221384e-06" /> - <width sOffset="137.4467083814468" a="2.494705605872122" b="0.00027152948311987002" c="-0.001217695074732687" d="0.00034146967628185333" /> - <width sOffset="139.68103516455798" a="2.4930421299306449" b="-5.5856632844242249e-05" c="-0.0013138565050387729" d="0.00052336441372382832" /> - <width sOffset="140.83298703465007" a="2.4920343389399111" b="-0.00099935263419013987" c="0.00088541628147289489" d="-0.00011970138347315091" /> - <width sOffset="146.16351679349151" a="2.4937354418796005" b="-0.0017636589025752034" c="0.0016587321590077525" d="0.00013462635619303085" /> - <width sOffset="146.6592731391685" a="2.4932851740524278" b="-1.9741798074457417e-05" c="2.3838050314277685e-05" d="-4.0204625748906694e-06" /> - <width sOffset="150.06751194610439" a="2.4933356224892833" b="2.6435516275319371e-06" c="3.6762454556484112e-06" d="-2.7111652454502933e-07" /> - <width sOffset="160.07201274251133" a="2.4934585426829106" b="-5.2066354517266156e-06" c="6.839538689876987e-06" d="-5.7616737420173371e-07" /> - <width sOffset="168.96831823319934" a="2.4935478585176689" b="-2.0314390758405243e-05" c="-0.00067764407118750091" d="-0.00015700543145329363" /> - <width sOffset="170.05119013619267" a="2.4925318837343973" b="-0.0020402369915128588" c="0.00093858499962527764" d="-0.00030525869629334577" /> - <width sOffset="170.07651353891828" a="2.4924808149250683" b="-0.0019932879237456458" c="0.0012531437013892162" d="-0.00017004738044760462" /> - <width sOffset="174.02335651412344" a="2.4936796629876774" b="-4.8139741058481067e-05" c="0.00091209477679066045" d="-0.00031264119807328364" /> - <width sOffset="175.2160741682344" a="2.4943893015136887" b="0.00079333630944925654" c="-0.00023439649740734751" d="1.6067548865919925e-05" /> - <width sOffset="180.08101433532525" a="2.4945512669596015" b="-0.00034647053796851845" c="3.7145684492339041e-05" d="6.6656903734797833e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="182.88009083592812"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4940186800134727" b="0.00015942337758987485" c="-8.7118738752661368e-05" d="4.0959893282279532e-06" /> - <width sOffset="7.2054242958041073" a="2.492176628028818" b="-0.00045806314273772256" c="9.5148900073474511e-05" d="6.5789668638391358e-06" /> - <width sOffset="7.3095447957822159" a="2.4921299732082662" b="-0.0004380352713541924" c="0.00018224141813310472" d="-1.0563092768923471e-05" /> - <width sOffset="17.209925092211051" a="2.4954055715644712" b="6.4378631649086686e-05" c="-2.7532757391251692e-05" d="-1.693490906666456e-05" /> - <width sOffset="17.279583121469074" a="2.4954099167335428" b="6.0296359551390011e-05" c="-8.6011415828383107e-05" d="9.6940517011760999e-06" /> - <width sOffset="22.047358404218159" a="2.4947928490835354" b="-9.8783568416608777e-05" c="-7.8992366848212335e-05" d="6.7588106091065028e-06" /> - <width sOffset="27.214425888617995" a="2.4931058440761653" b="-0.0003737492821419006" c="3.2906682980436366e-05" d="1.4005583441912439e-05" /> - <width sOffset="30.884038431668216" a="2.4928695410954544" b="0.00043356019299348875" c="-2.9836432911809313e-05" d="5.8998980472739307e-07" /> - <width sOffset="37.218926685024968" a="2.4945687259545126" b="0.000126569561063169" c="-3.0867710983459967e-05" d="3.0480132963560082e-06" /> - <width sOffset="41.922742435716088" a="2.4947983357604313" b="3.8497464065756059e-05" c="-6.5670451715326331e-05" d="4.5376475675730066e-06" /> - <width sOffset="47.223427481431941" a="2.4938330521517642" b="-0.00027521288155896986" c="-1.0558199384802364e-05" d="4.4602107592496357e-06" /> - <width sOffset="51.339069705101025" a="2.4928324682272596" b="-0.00013547243808546263" c="2.6088398988142904e-05" d="-2.428948766831203e-07" /> - <width sOffset="57.227928277838885" a="2.4928897973622393" b="0.00014651954287597975" c="1.6738513194769173e-05" d="-1.5302562447476252e-06" /> - <width sOffset="67.232429074245829" a="2.4944986872505961" b="2.1950271323012416e-05" c="-2.7011960502176177e-05" d="-2.5016809401462775e-06" /> - <width sOffset="71.149163321298431" a="2.4940199596901671" b="-0.00030478048488719869" c="3.6127732953428963e-05" d="-2.1190429148198144e-06" /> - <width sOffset="77.236929870652773" a="2.4930253591320612" b="-0.00010050699913059617" c="9.0670599333476183e-06" d="-3.4841568006892193e-06" /> - <width sOffset="81.214197339467034" a="2.492549838798177" b="-0.00019372679316824503" c="7.4437700360722276e-05" d="-3.7099906741337896e-06" /> - <width sOffset="87.241430667059774" a="2.4932740214589568" b="0.00029925546223307582" c="5.5967618546352648e-06" d="-2.6311218908390807e-06" /> - <width sOffset="94.009713470803092" a="2.4947400663761075" b="1.3424060822951058e-05" c="0.00048645610951845802" d="-2.0586693687295203e-05" /> - <width sOffset="95.150043732135885" a="2.4953574123432176" b="0.0010425553926448367" c="-0.00026796251230238211" d="1.3995281474497821e-05" /> - <width sOffset="97.245931463466718" a="2.4964942506854317" b="0.00010374983287385689" c="-0.00017740751030115401" d="1.797606944633313e-05" /> - <width sOffset="106.50141901898115" a="2.4965096123782429" b="0.0014394725548248083" c="-0.00078672197010795002" d="7.5168436724703638e-05" /> - <width sOffset="107.25043225987366" a="2.4971780156467807" b="0.00038745538722465001" c="-0.00063224897079238785" d="7.5037965513588642e-05" /> - <width sOffset="113.62697080336324" a="2.4933964568263827" b="0.0014775214398976247" c="-0.0004106067623068537" d="-3.4149246854679467e-05" /> - <width sOffset="115.13252895935892" a="2.4945736870738973" b="8.9178773367599323e-06" c="7.3163566093127578e-05" d="7.4140021466056409e-07" /> - <width sOffset="117.25493305628066" a="2.4949292751668048" b="0.00032950231450915349" c="7.2331329173444683e-05" d="4.0059280252060793e-06" /> - <width sOffset="120.1636813326873" a="2.4965982839951559" b="0.0008519698388636804" c="-0.000457109291380809" d="4.379547346620107e-05" /> - <width sOffset="125.93520688534699" a="2.4947086941346051" b="-4.7917768933772309e-05" c="-0.0001351549163743692" d="-2.4466411572298438e-05" /> - <width sOffset="127.25943385268761" a="2.4943514212847413" b="-0.00053458055328775567" c="-0.00014841937204789369" d="3.3760885834066922e-05" /> - <width sOffset="131.68082964066105" a="2.4920044624442896" b="0.0001329262841843655" c="-2.5243565878913405e-06" d="1.1868926837884084e-07" /> - <width sOffset="137.26393464909455" a="2.4926885726215664" b="0.00011583779983100539" c="-6.9942401104711323e-07" d="1.3777384511970743e-08" /> - <width sOffset="147.2684354455015" a="2.4937912626032999" b="0.00010597996042252924" c="-2.9276276227048934e-06" d="1.5328573073145402e-09" /> - <width sOffset="157.27293624190844" a="2.4945600477750229" b="4.7861325887478849e-05" c="8.6145159518130146e-07" d="-9.3834572529059089e-07" /> - <width sOffset="162.29974893779053" a="2.4947032152621533" b="-1.46107030220288e-05" c="4.5029669168053189e-05" d="-2.1894423643869116e-06" /> - <width sOffset="167.27743703831544" a="2.495476172086839" b="0.00027093066511443917" c="2.0365545736173671e-05" d="-2.3083233444993543e-06" /> - <width sOffset="171.08462469708064" a="2.4966754655764047" b="0.00032562636400645419" c="0.0003054962895327329" d="-6.7488076100227331e-05" /> - <width sOffset="174.50511207714021" a="2.498662700450959" b="4.6741171152471853e-05" c="-0.00034969699834480855" d="4.4622749460627816e-05" /> - <width sOffset="177.28193783472238" a="2.4970514998090758" b="-0.00086312798624187809" c="2.5657253759798603e-05" d="4.6281817373651367e-05" /> - <width sOffset="179.04649776904762" a="2.4958626313711418" b="-0.00034026129869752213" c="4.0591617967970258e-06" d="3.5637603705147755e-06" /> - <width sOffset="184.31804375631151" a="2.4947037916272619" b="-3.6306451994122524e-07" c="-4.4596482348684274e-05" d="2.8400411644640319e-06" /> - <width sOffset="187.28643863112933" a="2.4943840409224975" b="-0.00019004905915983358" c="-1.9569437930790967e-05" d="2.8821555131905058e-06" /> - <width sOffset="197.25282330336154" a="2.4933993173746325" b="0.00027872119660970682" c="1.0982352193757064e-05" d="-3.4876146638149875e-07" /> - <width sOffset="197.29093942753633" a="2.4934099570826476" b="0.00027955688606871171" c="9.0459787505329884e-06" d="-4.0203586618477542e-07" /> - <width sOffset="207.29544022394327" a="2.4967096175574151" b="0.00033983853611388361" c="-5.5875912638649441e-06" d="1.9417577979570201e-06" /> - <width sOffset="210.34286659592095" a="2.497748313009768" b="0.00035988118276501779" c="-3.6067547616318969e-05" d="1.0897668180463781e-06" /> - <width sOffset="217.29994102035022" a="2.4988732875811719" b="1.6268990450762043e-05" c="-1.358488243814372e-05" d="1.104849487995132e-07" /> - <width sOffset="227.30444181675716" a="2.497786973531313" b="-0.00022237561632331825" c="-8.1102043356128038e-06" d="4.7601988219073e-07" /> - <width sOffset="237.30894261316411" a="2.4952271287673744" b="-0.00024171816609230585" c="-1.65489075094534e-05" d="2.1344172476757521e-06" /> - <width sOffset="237.79268151386208" a="2.4951065693966461" b="-0.00025623048455239439" c="5.7196809433340408e-05" d="-3.8077448974945992e-06" /> - <width sOffset="242.81639212979826" a="2.494780084127048" b="3.0154144260389776e-05" c="9.0191641330637662e-05" d="-5.2593828068477077e-06" /> - <width sOffset="247.31344340957111" a="2.4962613570947383" b="0.00052225810180427015" c="1.069681103556305e-05" d="-5.8855819564679148e-06" /> - <width sOffset="253.33849457544221" a="2.4985090205274005" b="1.0193972589182289e-05" c="-0.00016642370637394142" d="1.2024394119278664e-05" /> - <width sOffset="257.31794420597805" a="2.4966718588724719" b="-0.00074309992682841186" c="-3.5317419080638323e-05" d="9.0893768714003614e-06" /> - <width sOffset="264.14778814678687" a="2.4928449447949745" b="4.6445321274641866e-05" c="2.3990409192653346e-05" d="-7.5741887639192788e-07" /> - <width sOffset="267.322445002385" a="2.4932099447221674" b="0.00017586713922228096" c="1.5282306627207065e-05" d="-1.5728594488740864e-06" /> - <width sOffset="277.326945798792" a="2.4949240301389723" b="9.36815941070669e-06" c="-3.0595274014421384e-05" d="-1.823666941132981e-06" /> - <width sOffset="277.46664379176428" a="2.4949247367972482" b="7.1319318247073035e-07" c="-5.9900252414289414e-05" d="3.2937934446471226e-06" /> - <width sOffset="287.33144659519894" a="2.4922646170759588" b="-0.00021949521304052521" c="2.564755405671846e-05" d="3.6136101842421279e-06" /> - <width sOffset="287.75191757114351" a="2.4921771287172367" b="-0.0001960104951242266" c="0.00090708826779678075" d="-0.00014656432834588346" /> - <width sOffset="291.9202559111485" a="2.4965058587963735" b="-0.00027359407500604537" c="-3.3628263115661221e-05" d="5.4700433269348321e-06" /> - <width sOffset="297.33594739160588" a="2.4949067157688134" b="-0.00015653024861187766" c="3.8083166394577187e-06" d="4.2764033217406994e-05" /> - <width sOffset="298.45196323664663" a="2.494796210253897" b="1.1756737295139466e-05" c="-0.00012412689389726809" d="5.9013194686360248e-06" /> - <width sOffset="304.49393683155324" a="2.4916375608025518" b="-0.00084189521491469157" c="0.00032354985104991534" d="-1.7550211593773278e-05" /> - <width sOffset="307.34044818801283" a="2.4914579183073648" b="0.0005734729860623121" c="0.00017661696861839192" d="-1.679794043446245e-05" /> - <width sOffset="317.34494898441977" a="2.4980521961557587" b="-0.00093651720530591961" c="-0.00032155517854860635" d="-1.6014998543070532e-05" /> - <width sOffset="317.74993488256911" a="2.4976191167117445" b="-0.001204847862498318" c="3.0625725176916128e-05" d="2.9518932195021518e-06" /> - <width sOffset="327.34944978082677" a="2.4914865936072808" b="0.00019919330573626824" c="0.00011441999810733505" d="3.0885889918117599e-06" /> - <width sOffset="333.13947141523312" a="2.49707529914342" b="0.0018348106546218624" c="-0.0012296569358151246" d="0.00015831585969815613" /> - <width sOffset="337.35395057723366" a="2.4948181388975357" b="-9.3976063340061016e-05" c="0.00078433742166440648" d="0.00015273207027501515" /> - <width sOffset="337.40778924557452" a="2.4948153766684982" b="-8.192570095467977e-06" c="-0.0011189972866430674" d="0.00022629353756743368" /> - <width sOffset="339.31924720133082" a="2.4922916661454009" b="-0.0018056183443270974" c="0.00047518462572909096" d="-2.7154201358487289e-05" /> - <width sOffset="347.35845137364066" a="2.4943781960186504" b="0.00056976345758379728" c="-0.00019181560113608299" d="-2.5428781337396178e-05" /> - <width sOffset="348.8429137180039" a="2.4947181153830211" b="-0.00016782937446593264" c="-8.9559437933748849e-05" d="0.0056361671402341889" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="349.03200235686808" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8276701607287009" b="-0.00078155584464884367" c="-0.00011602227996207708" d="-2.4570553014920619e-06" /> - <width sOffset="7.2054242958041073" a="3.8150958930884356" b="-0.0028362325725389071" c="-0.00021175224360490063" d="-2.2936260901655385e-06" /> - <width sOffset="7.3095447957822159" a="3.8147982849232349" b="-0.0028804026676302772" c="-0.00029750618619265917" d="1.4848433542592962e-05" /> - <width sOffset="14.167796347760145" a="3.7858402111214611" b="-0.0048659316125462017" c="-0.00038003441827640875" d="0.0001095878840506813" /> - <width sOffset="17.279583121469074" a="3.7703206275539753" b="-0.0040476140043841837" c="0.00069794766700429195" d="8.295892444146427e-05" /> - <width sOffset="17.971066585379134" a="3.7678829215539782" b="-0.0029633751884891686" c="0.0007220190607914762" d="-2.6176965274904046e-05" /> - <width sOffset="27.214425888617995" a="3.7815072133735343" b="0.0036747325272651534" c="2.2350694931879119e-05" d="-2.9008192790421015e-05" /> - <width sOffset="30.884038431668216" a="3.7938595877588286" b="0.0026668914436698324" c="-8.0067479507191024e-05" d="-1.5592599153237413e-05" /> - <width sOffset="35.288407370383396" a="3.8027201748510127" b="0.0010541805023799814" c="-0.00013415639180339905" d="3.8485650796266019e-06" /> - <width sOffset="37.218926685024968" a="3.8042829924618311" b="0.0005792271985420633" c="-0.00011352559369274213" d="3.8168369846958256e-06" /> - <width sOffset="47.223427481431941" a="3.8025370835967278" b="-0.00054622453074667328" c="5.6790499950725919e-06" d="2.162040915312839e-06" /> - <width sOffset="51.320324160874378" a="3.8005432504170886" b="-0.0003908248366346124" c="-6.5061991452499302e-05" d="-3.4039593340925062e-06" /> - <width sOffset="51.339069705101025" a="3.8005359013079172" b="-0.00039326767028951453" c="-4.6830134016672045e-05" d="1.2990670635653581e-06" /> - <width sOffset="57.227928277838885" a="3.7968612900249292" b="-0.00080967004593585079" c="-1.3379569776429661e-05" d="2.2665187597031604e-06" /> - <width sOffset="67.232429074245829" a="3.789691364261623" b="-0.00039681404488385802" c="5.1714061114752182e-05" d="2.4064408914293599e-06" /> - <width sOffset="69.416801177399464" a="3.789096409006897" b="-0.00013644167552839814" c="0.00026078115716997622" d="-5.6607412902368613e-06" /> - <width sOffset="71.149163321298431" a="3.7896132374238394" b="0.0007161281449218882" c="0.00013882684372231254" d="-6.0433793152395071e-06" /> - <width sOffset="77.236929870652773" a="3.7977544105183183" b="0.0017344997179868592" c="7.7812225211117008e-06" d="-4.4653501186692146e-06" /> - <width sOffset="81.214197339467034" a="3.8044951306800732" b="0.0015844882051015098" c="-0.00015244136369677318" d="-4.239516245217381e-06" /> - <width sOffset="87.241430667059774" a="3.8075791293642975" b="-0.00071514473855135118" c="-0.00022855466149571048" d="-1.0075851153241818e-05" /> - <width sOffset="89.06762235940721" a="3.8054495486378017" b="-0.001650722154957554" c="-0.00045710235800461795" d="2.6301422399056024e-05" /> - <width sOffset="95.150043732135885" a="3.7844167311696784" b="-0.0042921700443732044" c="0.00070681837564228757" d="-8.2805527620544163e-06" /> - <width sOffset="97.245931463466718" a="3.778449461213981" b="-0.0014384692005241007" c="0.00062921066829724334" d="-1.6888965470177887e-05" /> - <width sOffset="102.93926043394242" a="3.7875382647524658" b="0.0040838209371099341" c="0.00015650590577018513" d="-4.5463082310734483e-05" /> - <width sOffset="106.50141901898115" a="3.8020164443543663" b="0.0034681790699331461" c="0.00077911209988783953" d="-0.00010265544959951331" /> - <width sOffset="107.25043225987366" a="3.8050081174651353" b="0.0044625340896847837" c="0.00055669577009313386" d="-0.00010166703377681557" /> - <width sOffset="113.62697080336324" a="3.8297396481123323" b="-0.00083930097865176484" c="-0.00017435027886670703" d="7.520178591710019e-06" /> - <width sOffset="117.25493305628066" a="3.824758979125682" b="-0.0018074291836970991" c="-8.195046955146188e-05" d="4.4237727614139506e-06" /> - <width sOffset="119.93208643977272" a="3.8194177440512598" b="-0.0021510996053655182" c="-0.0001124477040166229" d="1.5728317170131266e-05" /> - <width sOffset="120.1636813326873" a="3.8189137244766824" b="-0.0022006534120704124" c="0.00046287741905401701" d="-2.4061228266782631e-05" /> - <width sOffset="127.25943385268761" a="3.8180078415679142" b="0.00073384666263622174" c="-2.3573406356098889e-05" d="-2.5336136356357421e-05" /> - <width sOffset="131.68082964066105" a="3.8186017665266769" b="-0.00096047673747226645" c="-5.7720966249695439e-05" d="8.3060602093378136e-06" /> - <width sOffset="137.26393464909455" a="3.8128856147896744" b="-0.00082827502729213237" c="8.3529264310566604e-05" d="8.4833601412746209e-06" /> - <width sOffset="141.18581511988873" a="3.8114337368657396" b="0.00021835996716963908" c="7.6891428197940382e-05" d="-3.2924703212105161e-06" /> - <width sOffset="147.2684354455015" a="3.8148658287741983" b="0.00078831557722832866" c="1.4893595807109671e-05" d="-2.9885731131936803e-06" /> - <width sOffset="157.27293624190844" a="3.821250622920255" b="0.00018894238632930112" c="-7.7300983481518211e-05" d="-2.4164372949030051e-06" /> - <width sOffset="159.96448604961739" a="3.8211520508386205" b="-0.00027969371577677956" c="-0.00015061128683240514" d="5.3254294229680529e-06" /> - <width sOffset="167.27743703831544" a="3.8131348137333494" b="-0.0016281196847139478" c="-3.8986464165702221e-05" d="6.5184690392428269e-06" /> - <width sOffset="171.08462469708064" a="3.8067308752496332" b="-0.0016415279284042383" c="-0.000276030763770267" d="7.1698221794954897e-05" /> - <width sOffset="174.50511207714021" a="3.800755839437552" b="-0.0010132970643733858" c="0.00042236477475822063" d="-4.0412603765867548e-05" /> - <width sOffset="177.28193783472238" a="3.8003335519405201" b="0.00039753388492280717" c="7.7789001303254295e-05" d="-4.2369467928253193e-05" /> - <width sOffset="178.00506585937194" a="3.8006456754713396" b="0.0004435699169746234" c="-0.00022064463027501115" d="-3.6329171224402384e-05" /> - <width sOffset="179.04649776904762" a="3.8008272820865621" b="-0.00013420852398466753" c="-6.7548490933379843e-05" d="6.3888857777896451e-06" /> - <width sOffset="187.28643863112933" a="3.798709449930548" b="5.395168812446019e-05" c="9.0190222610516232e-05" d="6.3636604138099118e-06" /> - <width sOffset="192.86414975821077" a="3.8029205418112699" b="0.001653998576261524" c="0.00016417930741549695" d="-3.6423726577008248e-05" /> - <width sOffset="196.1204495655914" a="3.8087896870100382" b="0.0015645769798719091" c="2.5032847578577053e-05" d="-1.2564351141498247e-05" /> - <width sOffset="197.25282330336154" a="3.8105752282159422" b="0.0015729373759929555" c="3.7972440964537923e-05" d="-9.333400273688752e-06" /> - <width sOffset="197.29093942753633" a="3.8106352371432748" b="0.0015757914207999617" c="4.0930864375172095e-05" d="-7.1731071101819627e-06" /> - <width sOffset="207.29544022394327" a="3.8233142184855917" b="0.00024090750062017927" c="-0.0001674183592043576" d="-8.7790019333175555e-06" /> - <width sOffset="210.34286659592095" a="3.8222451309607526" b="-0.0010240694481583237" c="-0.0001994463971824194" d="-7.9270056862843466e-06" /> - <width sOffset="210.39916181065217" a="3.8221868472612393" b="-0.0010466005693530985" c="-0.00033340387162057538" d="4.8628284715896648e-05" /> - <width sOffset="214.82322303897485" a="3.8152418167155169" b="-0.0011412941323965375" c="0.00024820689428665829" d="-9.8170843710685637e-06" /> - <width sOffset="217.29994102035022" a="3.8137885406577103" b="-9.2475048996940035e-05" c="0.00017334184031874306" d="-1.5011210002629616e-05" /> - <width sOffset="227.30444181675716" a="3.815181677179754" b="-0.0011314955470032211" c="-0.00027180329564848458" d="-1.684255837493236e-05" /> - <width sOffset="228.37114936964855" a="3.813644983897281" b="-0.0017688584769737312" c="-0.00042609063645726033" d="7.8351934101261993e-05" /> - <width sOffset="232.11552020878395" a="3.8051610588733862" b="-0.0016641852686407129" c="0.00037515625264932748" d="-1.6852123270673868e-05" /> - <width sOffset="237.30894261316411" a="3.8042762569513284" b="0.0008689164889462515" c="0.00012245592969937279" d="-1.6477027910115952e-05" /> - <width sOffset="237.79268151386208" a="3.8047233756110206" b="0.00097582284465879895" c="2.7895976592936568e-05" d="-1.0534865767282119e-05" /> - <width sOffset="245.40266041410615" a="3.809122079034891" b="-0.00042988001876573647" c="-4.3683920574021833e-05" d="5.987044164241579e-06" /> - <width sOffset="247.31344340957111" a="3.8081829458844849" b="-0.00053124326301155723" c="-5.26429605442049e-07" d="6.3130150539923989e-06" /> - <width sOffset="253.33849457544221" a="3.8063438306842112" b="0.0001499240595501921" c="0.00018432000665180717" d="-1.1596961021748687e-05" /> - <width sOffset="257.31794420597805" a="3.8091285163937831" b="0.0010659593264502019" c="6.6645013911898648e-05" d="-8.2829789865171898e-06" /> - <width sOffset="264.14778814678687" a="3.81687875126274" b="0.00081718681159828653" c="2.3859900762470502e-05" d="1.5638167612526249e-06" /> - <width sOffset="265.79210339840512" a="3.8182939282494495" b="0.00090833782399975466" c="1.6897639754876405e-05" d="-8.4446629656269357e-07" /> - <width sOffset="267.322445002385" a="3.819720542214724" b="0.00095412306431477234" c="1.3008925237023968e-05" d="-2.2113396086225624e-06" /> - <width sOffset="277.326945798792" a="3.8283538041797422" b="0.00055041948576870696" c="-5.3899947497850314e-05" d="-2.1304450553195707e-06" /> - <width sOffset="285.00106677540549" a="3.8284406622982532" b="-0.00065324930882545149" c="-0.00010357627461756618" d="7.9102560852323985e-07" /> - <width sOffset="287.33144659519894" a="3.8263658655571593" b="-0.0011231060318098261" c="-8.5310962008168447e-05" d="3.2587311876764608e-06" /> - <width sOffset="287.75191757114351" a="3.825878791690541" b="-0.0011931192083519573" c="-0.00095808281549433598" d="0.00015343666975189128" /> - <width sOffset="291.9202559111485" a="3.8153713962404687" b="-0.0011824389714768181" c="6.8572447922900709e-05" d="1.4022980790613716e-06" /> - <width sOffset="297.33594739160588" a="3.8112016238620257" b="-0.0003163175217606162" c="8.328601490898468e-05" d="-5.9054825382777832e-07" /> - <width sOffset="301.04434618482179" a="3.8111438428738227" b="0.00027703394122676042" c="0.00037403073517043811" d="-1.609237893024261e-05" /> - <width sOffset="304.49393683155324" a="3.8158897647708399" b="0.0022830575243388087" c="-0.0001332155200882136" d="7.3591521324726929e-06" /> - <width sOffset="307.34044818801283" a="3.8214788513845104" b="0.0017035439349071821" c="-7.0897069045751371e-05" d="6.1058816338363146e-06" /> - <width sOffset="317.34494898441977" a="3.8375399975758455" b="0.0021183781084663498" c="0.00011140925525070905" d="5.4151229732373245e-06" /> - <width sOffset="317.74993488256911" a="3.8384165431569865" b="0.0022112809241341641" c="-0.00025365004885841445" d="-1.3551768789347253e-05" /> - <width sOffset="321.07485605567678" a="3.8424666241054153" b="7.5099577862528221e-05" c="-0.00023039113151053042" d="9.9970164068857845e-06" /> - <width sOffset="327.34944978082677" a="3.8363368268472833" b="-0.0016353585227726736" c="-4.0887986155471746e-05" d="9.8120749617814588e-06" /> - <width sOffset="333.13947141523312" a="3.8274019120767022" b="-0.0011220128503830825" c="0.0015272743179356489" d="-0.00014541519574456279" /> - <width sOffset="337.30478880166191" a="3.8387175583808757" b="0.0040323479306461681" c="0.00012633564822131971" d="-0.00017875149365629523" /> - <width sOffset="337.35395057723366" a="3.8389160798640756" b="0.004043473637481824" c="8.7634745219252581e-05" d="-0.00017316771882365994" /> - <width sOffset="339.31924720133082" a="3.8458867128284977" b="0.0023814059524799071" c="-0.0012298732186141683" d="8.0280020102343601e-05" /> - <width sOffset="347.35845137364066" a="3.827256706936371" b="-0.0018277928820306507" c="0.00065745644738250577" d="9.9409255650662677e-05" /> - <width sOffset="348.8429137180039" a="3.8263173948638087" b="0.00078132898874988185" c="0.00088466396918870211" d="-0.0055621866659209228" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.7871639769875292" b="-0.0027291687486701247" c="9.1082047522503815e-05" d="3.9708929566121488e-07" /> - <width sOffset="7.2054242958041073" a="3.7723765166249437" b="-0.0013547507403305009" c="0.00014155410572196935" d="2.1859865334642355e-07" /> - <width sOffset="14.167796347760145" a="3.7698797967566375" b="0.00064814342167663708" c="0.0005341511104333728" d="-9.452085185548426e-05" /> - <width sOffset="14.467051560366258" a="3.7701190591502138" b="0.00094244435890431313" c="0.00028384547201497313" d="-8.8051065929873609e-05" /> - <width sOffset="17.209925092211051" a="3.7730225475264669" b="0.00051223048627567274" c="-0.00044116918770074632" d="-8.8149852586673596e-05" /> - <width sOffset="17.971066585379134" a="3.7731179717564332" b="-0.00031255910978809963" c="-0.00049442993943914139" d="2.0986037130292675e-05" /> - <width sOffset="27.214425888617995" a="3.7445586521346534" b="-0.0040738246744932965" c="0.0001012582572585589" d="2.1461942291611956e-05" /> - <width sOffset="32.527418967141074" a="3.7289915038283921" b="-0.0011803794449358439" c="0.00049239394420390835" d="1.9862816706752358e-06" /> - <width sOffset="35.288407370383396" a="3.7295278425660343" b="0.0015840331095722483" c="0.00035690848032247674" d="-1.7454882562105215e-05" /> - <width sOffset="37.218926685024968" a="3.7337904275493661" b="0.0027669124811373772" c="0.00025415507661393264" d="-1.6415689904151346e-05" /> - <width sOffset="47.223427481431941" a="3.770472531500312" b="0.0029231608243878229" c="-0.00023382418319474349" d="-1.8137925252912677e-05" /> - <width sOffset="49.118351066770231" a="3.77504868360742" b="0.0018416174347185912" c="-9.4372197104856942e-05" d="-1.8812060735318181e-05" /> - <width sOffset="51.320324160874378" a="3.778445444284833" b="0.0011523660582637438" c="-0.00012132912796229331" d="-1.3245981247665225e-05" /> - <width sOffset="53.184981530675486" a="3.7800864793181144" b="0.00056172482448538404" c="-0.00024933600872394514" d="6.8041336923292583e-06" /> - <width sOffset="57.227928277838885" a="3.7787316435165321" b="-0.0011207303501968428" c="-0.00015628061568848065" d="7.7951866270568963e-06" /> - <width sOffset="67.232429074245829" a="3.7596828800855171" b="-0.0019070879037135567" c="7.3851467136154799e-05" d="9.4056140834657882e-06" /> - <width sOffset="69.416801177399464" a="3.7559675031881614" b="-0.0014498135941721419" c="-5.7809858814121491e-05" d="1.7472796264824223e-05" /> - <width sOffset="70.351322026477845" a="3.7545763954425313" b="-0.0015120841203990092" c="3.3077584940327331e-05" d="-7.8573042764364032e-07" /> - <width sOffset="77.236929870652773" a="3.7454765305241637" b="-0.001168323763083842" c="9.1368287184219585e-06" d="-9.4713578402921078e-07" /> - <width sOffset="87.181589250739535" a="3.7338300486339095" b="-0.0012676029966182888" c="0.00029385148540378209" d="9.5051790929588091e-06" /> - <width sOffset="87.241430667059774" a="3.733755247792875" b="-0.0012323319044335438" c="0.00027758347913837679" d="1.4728296250878891e-05" /> - <width sOffset="89.06762235940721" a="3.7325202076004556" b="-7.113506951558364e-05" c="0.00053161994540645678" d="-2.1648977301412411e-05" /> - <width sOffset="97.245931463466718" a="3.7556536259009747" b="0.0042804107679954113" c="-9.0535666246603588e-06" d="-2.1199920376873068e-05" /> - <width sOffset="102.93926043394242" a="3.7758176420131386" b="0.00211579857728504" c="-0.0001869064758361577" d="7.3741964637089395e-06" /> - <width sOffset="107.25043225987366" a="3.7820562135376421" b="0.00091540163839584892" c="-0.00010005667951369373" d="6.3778226096760605e-06" /> - <width sOffset="117.25493305628066" a="3.7875861113553806" b="0.00082843686599257745" c="0.00010250437382727636" d="3.2391926202559197e-06" /> - <width sOffset="119.93208643977272" a="3.7906007803659438" b="0.0014469240689070763" c="0.00019454640938469826" d="-8.0653517925485186e-06" /> - <width sOffset="123.14134830450507" a="3.7969814555564416" b="0.0024464208875799873" c="-9.7384554962876111e-05" d="4.7931175801214676e-07" /> - <width sOffset="127.25943385268761" a="3.8054379912962641" b="0.0016687304409995713" c="-7.8033157777102611e-05" d="1.3677073246414406e-06" /> - <width sOffset="137.26393464909455" a="3.8156920196242767" b="0.00051804648958835324" c="-3.8051350995436727e-05" d="2.1932153557379803e-06" /> - <width sOffset="138.74577999052246" a="3.8163832653245602" b="0.00041972207373694621" c="-0.00011896251633442379" d="-8.6631742283198308e-06" /> - <width sOffset="141.18581511988873" a="3.8165732728012949" b="-0.00031555904183872387" c="-7.5927855174404821e-05" d="3.1126562341536604e-06" /> - <width sOffset="147.2684354455015" a="3.8125451398423125" b="-0.00089375098462302527" c="-2.5316004498574154e-05" d="2.7683174458705372e-06" /> - <width sOffset="157.27293624190844" a="3.8038417846169668" b="-0.00056905597897006447" c="5.9640461086185507e-05" d="1.7054219280871027e-06" /> - <width sOffset="159.29580016025153" a="3.8029488259465243" b="-0.00030683125611861875" c="0.00020048649324377828" d="-1.7310446047467989e-06" /> - <width sOffset="159.96448604961739" a="3.8028327803331354" b="-4.1028340144335035e-05" c="0.00025081233727852357" d="-9.4729113234049335e-06" /> - <width sOffset="167.27743703831544" a="3.8122412265403089" b="0.002107515679463874" c="4.3847016230226007e-05" d="-9.1664185732737148e-06" /> - <width sOffset="174.57241011662035" a="3.8263903561234045" b="0.0012838235076125895" c="-0.00014526771810639824" d="5.170774413235055e-07" /> - <width sOffset="177.28193783472238" a="3.828812708433099" b="0.00050799812496492552" c="-0.00014115150531978594" d="4.9604356426049445e-07" /> - <width sOffset="178.00506585937194" a="3.8291064335665812" b="0.00030463507110804061" c="6.6442586323214777e-05" d="-5.5442531373595445e-06" /> - <width sOffset="187.28643863112933" a="3.8332246715052172" b="0.00010518145462825278" c="-8.8715719425500164e-05" d="-5.4468477118209097e-06" /> - <width sOffset="192.86414975821077" a="3.8301061435123001" b="-0.0013928482291136104" c="-0.00014736365500106344" d="3.7340539271176717e-05" /> - <width sOffset="192.97430998873125" a="3.8299509686493787" b="-0.0014239560442305165" c="-0.00028207995968131984" d="3.7497147769866158e-05" /> - <width sOffset="196.1204495655914" a="3.8238466244035925" b="-0.0020854197383271553" c="-0.00014483943950200506" d="1.3637772333825859e-05" /> - <width sOffset="197.29093942753633" a="3.8212290948526526" b="-0.0023684327819694234" c="-0.00010096566593084563" d="1.1478466634311653e-05" /> - <width sOffset="207.29544022394327" a="3.7989224223261226" b="-0.00094201453005882813" c="0.00025039305176499226" d="9.9509974465186886e-06" /> - <width sOffset="210.29758096713061" a="3.7986203694113514" b="0.00083047634837614837" c="0.00021770030612952023" d="8.3869986833351929e-06" /> - <width sOffset="210.39916181065217" a="3.7987069850675503" b="0.00087496433779703751" c="0.00035287489741025612" d="-4.8168297427898801e-05" /> - <width sOffset="214.82322303897485" a="3.8053136094196334" b="0.0011689489734717229" c="-0.00022263083271831119" d="1.0277071659107e-05" /> - <width sOffset="217.29994102035022" a="3.8069992540199986" b="0.00025528414140390653" c="-0.00011730658698083223" d="1.6217285010792132e-05" /> - <width sOffset="227.30444181675716" a="3.814051215957488" b="0.0027776623863295987" c="0.00037131739271818568" d="1.899597645605727e-05" /> - <width sOffset="228.37114936964855" a="3.8174597352017168" b="0.0036346810914435162" c="0.00053249593552237595" d="-7.6198516020618018e-05" /> - <width sOffset="228.81850132587164" a="3.8191854602636539" b="0.0040653598848080334" c="0.00054757358420611251" d="-0.0001239869757842766" /> - <width sOffset="232.11552020878395" a="3.8340976806748919" b="0.0036327414440251843" c="-0.00059989941437119175" d="-2.8782918413259068e-05" /> - <width sOffset="232.49404454561193" a="3.8353852466807252" b="0.0031662162802352156" c="-0.00050255130006738376" d="1.8591096522954125e-05" /> - <width sOffset="237.30894261316411" a="3.841054716510381" b="-0.00038024453950002458" c="-0.00024340028215112067" d="1.8247029971867859e-05" /> - <width sOffset="245.40266041410615" a="3.8317070680734941" b="-0.00073427695218643676" c="3.0728230291855506e-05" d="1.7251200402028437e-06" /> - <width sOffset="247.31344340957111" a="3.8304282509476049" b="-0.00059795127819022974" c="3.8996325166857169e-05" d="-3.1430006964925905e-07" /> - <width sOffset="249.11019886812772" a="3.8294779486341293" b="-0.00046086155117511327" c="-0.00017076545384392283" d="7.481489761097512e-06" /> - <width sOffset="257.31794420597805" a="3.8183280978851535" b="-0.0017520418294650324" c="1.880420289448043e-05" d="7.645636645405755e-06" /> - <width sOffset="265.79210339840512" a="3.8094840556441589" b="0.00021378880642432306" c="0.00022785171328568214" d="1.0053920259852786e-05" /> - <width sOffset="265.85456455999685" a="3.8094983005312648" b="0.00024237024478333553" c="-5.8548896702099437e-05" d="5.624642300100417e-08" /> - <width sOffset="267.322445002385" a="3.8097280952432162" b="7.0848261945115646e-05" c="-5.2821982247961049e-05" d="2.1301980935655742e-06" /> - <width sOffset="277.326945798792" a="3.807283018286383" b="-0.00034643205218938989" c="1.0382253276470009e-05" d="2.2891903122796852e-06" /> - <width sOffset="285.00106677540549" a="3.8062704787661525" b="0.00021736318249398351" c="6.3713271315635599e-05" d="-6.3228035158631827e-07" /> - <width sOffset="287.33144659519894" a="3.8071150214588201" b="0.00050401430793921688" c="4.6946433178620274e-05" d="-3.1110382996327841e-06" /> - <width sOffset="297.33594739160588" a="3.813741062364076" b="0.00050921375623474443" c="-5.6299218499864751e-05" d="-2.0922046239556399e-06" /> - <width sOffset="300.93339930030947" a="3.814746922234697" b="2.2916489974357266e-05" c="6.2358542571355535e-06" d="-3.4210514685647354e-06" /> - <width sOffset="301.04434618482179" a="3.8147495368342872" b="2.417385586115451e-05" c="-0.00029221749625194557" d="1.2080779054061348e-05" /> - <width sOffset="307.34044818801283" a="3.8063331321450264" b="-0.0022188095922143249" c="-6.3155102617190747e-05" d="1.1618675877107521e-05" /> - <width sOffset="317.34494898441977" a="3.7894482242338055" b="6.2609258192963466e-06" c="0.00028646074392141545" d="1.2204952218620716e-05" /> - <width sOffset="319.17408286412012" a="3.7904927885629398" b="0.0011767144814563209" c="0.00047239914886969606" d="7.6076172197592131e-06" /> - <width sOffset="321.07485605567678" a="3.7944884494584388" b="0.0030550193218203446" c="0.00035734560716880272" d="-1.5941167976462948e-05" /> - <width sOffset="327.34944978082677" a="3.8237883277773719" b="0.0056565798059804787" c="5.6024934372423181e-05" d="-1.618045614719573e-05" /> - <width sOffset="334.35710118291541" a="3.8606107781949182" b="0.004058056596962469" c="-0.00021069366349638785" d="-8.7713412789788603e-06" /> - <width sOffset="337.30478880166191" a="3.8705173211055013" b="0.0025872994608705001" c="-0.00070442184612604943" d="2.4564955235663471e-05" /> - <width sOffset="337.35395057723366" a="3.8706428177564987" b="0.0025182163151141741" c="-0.00070062771833896383" d="2.4523273354776425e-05" /> - <width sOffset="347.35845137364066" a="3.8502668617439633" b="-0.0041370388647141588" c="-1.5438109760868395e-06" d="3.7229653653707386e-05" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.8719265721601901" b="0.0062303496009517689" c="-0.0008438926530298593" d="0.00057380215538339451" /> - <width sOffset="0.79880698478288537" a="3.8766574116004691" b="0.0059805516354757152" c="7.6879455238325423e-05" d="2.1264035707139172e-05" /> - <width sOffset="3.9152578263392854" a="3.8966857960456376" b="0.0070792996247856345" c="0.00088046929285437328" d="-0.00019784267017614496" /> - <width sOffset="7.2054242958041073" a="3.9224626204086177" b="0.0064480240268326681" c="-0.0010716075480156414" d="-0.00019782761054385931" /> - <width sOffset="7.2660832584598438" a="3.9228497637126596" b="0.0063158350965139944" c="-0.00095208306504369704" d="1.2801463908296018e-05" /> - <width sOffset="10.26990395733182" a="3.9335777744790574" b="0.0009425819367060214" c="-0.0001008187958489027" d="-0.00037173236209984875" /> - <width sOffset="12.257306139341779" a="3.9321348371516414" b="-0.0038629221859175131" c="-0.0028918897367504587" d="0.00053046153835069744" /> - <width sOffset="14.467051560366258" a="3.9152014873844996" b="-0.0088729113803343619" c="0.0007901131950156016" d="0.00052399175242563093" /> - <width sOffset="15.920796471648856" a="3.9055822060856982" b="-0.0032534932499359869" c="0.002258254610867619" d="-0.00023070548895142299" /> - <width sOffset="17.209925092211051" a="3.9046466711167316" b="0.0014186725026480791" c="0.0014953261156989582" d="-0.00018136608937471371" /> - <width sOffset="21.863349983546129" a="3.9253529837243719" b="0.0035533465126115567" c="-2.4927896232442915e-05" d="-7.6637238834804654e-06" /> - <width sOffset="27.214425888617995" a="3.9424791678472411" b="0.0026282348670415038" c="-0.00012984011811237407" d="-5.8653320145798922e-06" /> - <width sOffset="32.527418967141074" a="3.9518981973250158" b="0.00075185763264605521" c="-0.00027238175770683974" d="1.3610328606347931e-05" /> - <width sOffset="37.218926685024968" a="3.9508357733910966" b="-0.00090520461646874471" c="-8.9109976546662657e-05" d="1.7012249304126922e-05" /> - <width sOffset="39.425779652884614" a="3.9485869810015921" b="-0.0010499506780919637" c="-0.00033235114266873305" d="6.2657874441178206e-05" /> - <width sOffset="45.361289472641204" a="3.9437485321297592" b="0.0016270651646993848" c="0.0022957166475680614" d="-0.00029269551193777162" /> - <width sOffset="47.223427481431941" a="3.9528489267165341" b="0.0071321316582500689" c="0.00065867787587814408" d="-0.00029805557011014982" /> - <width sOffset="49.118351066770231" a="3.9667008886455783" b="0.0064177040873714458" c="-0.0012782616458946365" d="-0.00029738143462761671" /> - <width sOffset="51.298254931008756" a="3.9715360586389865" b="-0.0033947235694357604" c="8.5656416112821264e-05" d="1.1234283759920215e-05" /> - <width sOffset="53.184981530675486" a="3.9655115099874831" b="-0.0029515297964788981" c="0.00020315371320758552" d="-8.8158311800891498e-06" /> - <width sOffset="57.227928277838885" a="3.9563166822832185" b="-0.0017411458560628165" c="0.00010894502507780769" d="-8.1637095519898307e-06" /> - <width sOffset="62.995837343333534" a="3.9483318342565861" b="-0.0012991657089420319" c="-0.0010902182143771332" d="0.00011864377347992446" /> - <width sOffset="67.232429074245829" a="3.9322816227473369" b="-0.0041482767822393248" c="0.00041352443643125026" d="0.00012117906862244555" /> - <width sOffset="68.838644515485726" a="3.9271876162131401" b="-0.001881958279650729" c="0.00065787581422243517" d="-5.4223112609066771e-05" /> - <width sOffset="70.351322026477845" a="3.9256584848689151" b="-0.00026386926241696697" c="0.00036990819861220129" d="-3.5964585916611192e-05" /> - <width sOffset="74.411218167651612" a="3.9282776216605479" b="0.00096132191788044809" c="0.001211907959057688" d="-0.00011191035857800239" /> - <width sOffset="77.236929870652773" a="3.9381457409157581" b="0.0051296329216842674" c="0.00024285945957765772" d="-0.00011437435476187122" /> - <width sOffset="82.669175520833448" a="3.9548433712974327" b="-0.0023571415643015743" c="0.00010976730016741922" d="1.2637546530014946e-05" /> - <width sOffset="87.181589250739535" a="3.9476031948245396" b="-0.0005945380900877963" c="-3.21266695699868e-05" d="2.1852328717948551e-06" /> - <width sOffset="87.241430667059774" a="3.9475675022460037" b="-0.0005983596250058571" c="-4.2735261616561588e-05" d="1.2353169030400395e-06" /> - <width sOffset="97.245931463466718" a="3.9385408246463407" b="-0.0010825208021843142" c="-1.1913644715690451e-05" d="1.251370602375061e-06" /> - <width sOffset="107.25043225987366" a="3.9277713683003266" b="-0.00094515175165791254" c="2.5914314432662951e-05" d="1.2593286213927346e-06" /> - <width sOffset="107.76660827651307" a="3.9272905813777412" b="-0.00091739245866763691" c="7.9281793687507944e-05" d="-7.1436181794638349e-06" /> - <width sOffset="117.25493305628066" a="3.9196214635215081" b="-0.001342273197771053" c="-0.00011157549636674611" d="-1.2232457942951132e-05" /> - <width sOffset="119.1651625281317" a="3.9165650124072027" b="-0.0019024506604355075" c="-0.00026241123997605942" d="2.1025052154424259e-05" /> - <width sOffset="123.14134830450507" a="3.9061734922168432" b="-0.0029920207529711145" c="0.00020266678654282875" d="1.2480388603876787e-05" /> - <width sOffset="127.25943385268761" a="3.8981606394913988" b="-0.0006878715987717306" c="0.00035582529588609941" d="1.2339497622815148e-05" /> - <width sOffset="127.79003360793678" a="3.8978976759666306" b="-0.00029984792683562063" c="0.00014583285457316937" d="-5.1058216559463338e-06" /> - <width sOffset="137.26393464909455" a="3.9038045215746595" b="0.0010885481196579185" c="2.2620757878850277e-08" d="-4.5531765885452708e-06" /> - <width sOffset="138.74577999052246" a="3.9054028154742197" b="0.0010586206688454199" c="7.0442493420818744e-05" d="6.3032129955076233e-06" /> - <width sOffset="142.49651777609978" a="3.9106970036314332" b="0.001853064755395816" c="4.1118401792341201e-05" d="-4.0864338536510366e-06" /> - <width sOffset="147.2684354455015" a="3.9200319501260275" b="0.0019663330253244541" c="-2.835490173677325e-05" d="-4.1946001246244637e-06" /> - <width sOffset="152.13329341853813" a="3.9284438612431662" b="0.0013926290567243054" c="-0.0025096227731777753" d="0.00024673357360079453" /> - <width sOffset="157.27293624190844" a="3.9028060933524267" b="-0.0048514110876526672" c="0.0012961837638597201" d="0.00024416885309523406" /> - <width sOffset="158.58359434852269" a="3.8992239100241179" b="-0.00019538573186631187" c="0.00015624483687979085" d="2.0697479563686458e-06" /> - <width sOffset="159.29580016025153" a="3.899164756062556" b="3.0320788857150956e-05" c="3.017057374587464e-05" d="5.5062144899741991e-06" /> - <width sOffset="167.27743703831544" a="3.9041286410463716" b="0.0015642873273456607" c="0.00016201700827034223" d="5.4951958680554918e-06" /> - <width sOffset="167.83968081185554" a="3.9050603450495833" b="0.001751684827549102" c="0.033176368846803153" d="-0.045195529879368049" /> - <width sOffset="168.32799738768279" a="3.9085641348682896" b="0.0018217868292563647" c="-0.00018499971490799184" d="5.7797785723491528e-06" /> - <width sOffset="174.57241011662035" a="3.9141337849168223" b="0.00018746502814471567" c="-8.8217342057913596e-05" d="-3.9037174422276053e-06" /> - <width sOffset="177.28193783472238" a="3.9139164222547387" b="-0.00037656753748513145" c="-0.00012192715524294705" d="-4.0571479049718574e-06" /> - <width sOffset="179.09373751945634" a="3.912809787352808" b="-0.00085833690176083562" c="-0.0005415213866206386" d="3.9065288641173699e-05" /> - <width sOffset="187.28338959709794" a="3.8909181588413593" b="-0.0018677066588682926" c="-4.5409005873969712e-05" d="4.1121521774624299e-06" /> - <width sOffset="187.28643863112933" a="3.8909124637181627" b="-0.001867983451386339" c="-4.5371679238302346e-05" d="4.1119487154289123e-06" /> - <width sOffset="192.97430998873125" a="3.8795764083962299" b="-0.0019850321795723555" c="0.00017184965865177108" d="3.9553402245764147e-06" /> - <width sOffset="197.29093942753633" a="3.8745280244370983" b="-0.0002803065874605196" c="0.0002216558448823577" d="4.0861897858131758e-06" /> - <width sOffset="200.85358962958122" a="3.8765275245291666" b="0.0014546494966772971" c="0.00027208729769958684" d="-1.4641281540835219e-05" /> - <width sOffset="207.29544022394327" a="3.893275173502694" b="0.0031374138711009634" c="-4.5038646070846112e-06" d="-1.5589559831079439e-05" /> - <width sOffset="210.29758096713061" a="3.9022317190253859" b="0.0026888523520616934" c="-2.2594392639292767e-05" d="-1.402556062607839e-05" /> - <width sOffset="212.13016492908224" a="3.9069970664395406" b="0.0024647312961836539" c="0.00023834686540430482" d="-2.1598118900414314e-05" /> - <width sOffset="217.29994102035022" a="3.9231251510761087" b="0.0031973992774452205" c="-7.4497419641446499e-05" d="-2.1286600176958499e-05" /> - <width sOffset="223.70668837825781" a="3.9349544065142554" b="-0.00037838867965773624" c="-0.00059741305384188384" d="2.1238497926361403e-05" /> - <width sOffset="227.30444181675716" a="3.9268492938614021" b="-0.0038523559096166771" c="-0.00036066162267441644" d="2.3270328046196672e-05" /> - <width sOffset="228.81850132587164" a="3.9202705921594028" b="-0.0047844491900441277" c="-0.00037230395259168017" d="7.1058787810340519e-05" /> - <width sOffset="232.49404454561193" a="3.9011838954470783" b="-0.0046413564992125594" c="0.00028120176500901341" d="2.3684772875039608e-05" /> - <width sOffset="236.81424446902247" a="3.888290461662216" b="-0.00088549395830909679" c="0.00017238935530716325" d="6.5022875538505528e-06" /> - <width sOffset="237.30894261316411" a="3.8878953848490116" b="-0.00071015872860580483" c="0.0001815707896069595" d="6.4712587556562902e-06" /> - <width sOffset="245.55595536116908" a="3.8980176778148201" b="0.0036050679265240714" c="0.00054634857336982676" d="-7.478030957563234e-05" /> - <width sOffset="247.31344340957111" a="3.9056351411598191" b="0.0048325338641600057" c="0.00015552252303764917" d="-7.8749175916528565e-05" /> - <width sOffset="249.11019886812772" a="3.9143633146537891" b="0.004628720725275674" c="-6.0888894104411186e-05" d="-8.6544965747023764e-05" /> - <width sOffset="250.3490520291495" a="3.9198396189927309" b="0.0040793794112955811" c="-0.0017587279616877278" d="0.00013540622298766598" /> - <width sOffset="257.31794420597805" a="3.9086828347348579" b="-0.00070519587914022984" c="0.0010972325169649206" d="0.0001242086656361015" /> - <width sOffset="258.32232389512831" a="3.9092072627651007" b="0.0018747773460619337" c="0.0013156232788289191" d="-0.00035580962786264291" /> - <width sOffset="261.1896220888126" a="3.9170114999418697" b="0.0006435871649833314" c="-0.0064730403257551479" d="0.00087336517112577389" /> - <width sOffset="265.5961766504177" a="3.8688855119401837" b="-0.0055277343989887789" c="-0.0022566615872524551" d="0.0029599899524029951" /> - <width sOffset="265.85456455999685" a="3.8673576108021677" b="-0.0061010574628335146" c="0.00032609980982719851" d="0.0029699876256765569" /> - <width sOffset="266.75376464753771" a="3.8642945640042319" b="0.0016896471812104573" c="0.0050251219763384368" d="-0.00075951476734138637" /> - <width sOffset="267.322445002385" a="3.8667408621269503" b="0.006668148298527023" c="0.0037298377457165009" d="-0.00075932425595073296" /> - <width sOffset="271.18749066910812" a="3.9043899507268267" b="0.0014704608440763833" c="-0.00026385965361586079" d="7.2994781098134509e-06" /> - <width sOffset="277.326945798792" a="3.9051613419920721" b="-0.00094403246498105109" c="-0.00013005308079348611" d="7.5255163796966198e-06" /> - <width sOffset="283.58749415784433" a="3.8960004226128269" b="-0.0016875638859617107" c="-0.00045952013985640298" d="3.8933344006486452e-05" /> - <width sOffset="287.33144659519894" a="3.8852842956911147" b="-0.0034911999255457841" c="-3.2032953707739315e-05" d="3.861559935157512e-05" /> - <width sOffset="293.38897204565836" a="3.8715440444014497" b="0.00037155696826840951" c="0.0047290048175385214" d="-0.0016701318822477009" /> - <width sOffset="295.28646953323471" a="3.877865609219679" b="0.00027819341955421606" c="-0.006362055577311264" d="0.0011076902834728725" /> - <width sOffset="297.33594739160588" a="3.8612484402363831" b="-0.011841498470308203" c="0.00042168922807863952" d="0.0011085946444090923" /> - <width sOffset="299.10741015787829" a="3.8477576305486951" b="8.9092212953644797e-05" c="0.0085753743024289536" d="-0.0010396169133884538" /> - <width sOffset="300.93339930030947" a="3.8701831584547106" b="0.021007187447282395" c="0.0027952718246075352" d="-0.0010382880663901207" /> - <width sOffset="304.3336034653247" a="3.9331128817128103" b="0.0040040225409782877" c="-0.00026625931079122037" d="2.0231344666969078e-06" /> - <width sOffset="307.34044818801283" a="3.9428000740361271" b="0.0024576959091919103" c="-0.00024794712105165361" d="1.2483541139034213e-06" /> - <width sOffset="317.34494898441977" a="3.943821098847835" b="-0.0021286350055662127" c="-0.00021042576348667848" d="1.3528364242352731e-06" /> - <width sOffset="318.20754027474834" a="3.9418292549337952" b="-0.0024886380776899682" c="-0.0094849660206802675" d="0.0010838363075347695" /> - <width sOffset="319.17408286412012" a="3.9315416299522807" b="-0.017786310795273687" c="-0.0064612090973998372" d="0.001088433642533648" /> - <width sOffset="324.02826576103024" a="3.8174521195188889" b="-0.0035735073354887493" c="0.024034059438100559" d="-0.0043283473680630607" /> - <width sOffset="327.34944978082677" a="3.9121231864036674" b="0.012841127653364169" c="-0.019091700788643265" d="-0.00432836378214936" /> - <width sOffset="327.70652549093751" a="3.9140771280414697" b="-0.0024488764960609553" c="-0.00025348234339196034" d="5.6075101471754135e-06" /> - <width sOffset="330.23255154955285" a="3.9063641624555552" b="-0.0036221411747611749" c="-0.0035394872992636096" d="0.00036419906587850507" /> - <width sOffset="334.35710118291541" a="3.8567655844690916" b="-0.014232558419010395" c="0.00089354168090685247" d="0.00035678995101027746" /> - <width sOffset="336.92010080790209" a="3.8321641968994675" b="-0.002621040107359173" c="0.0047817021209203324" d="-0.00045477321624652622" /> - <width sOffset="337.35395057723366" a="3.8318899605831214" b="0.0012712407020215367" c="0.0041896211986033596" d="-0.00045473153514892338" /> - <width sOffset="342.83760992686683" a="3.8898614661613107" b="0.0061981106364681609" c="-0.0010270633786874112" d="6.5981483998718427e-05" /> - <width sOffset="347.35845137364066" a="3.9029875032734953" b="0.00095731942688831494" c="-0.00017739252058061847" d="7.7403549360656376e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid broken"> - <type name="solid broken"> - <line length="6" space="12" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="3.9152578263392854" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.9419527193489134" b="-0.053890238764222984" c="0.0058709625673046021" d="0.00031566259810265299" /> - <width sOffset="0.79880698478288537" a="3.9028119352498885" b="-0.043906441049071016" c="0.0070817224324448086" d="0.00086820071777890518" /> - <width sOffset="2.6796707280038561" a="3.8510594103843747" b="-0.0080527644296424384" c="-0.0028375227677034671" d="0.00021001349480379684" /> - <width sOffset="3.9152578263392854" a="3.8371736990883809" b="-0.014102910118229943" c="-0.0026638377454288593" d="0.00042912020068717983" /> - <width sOffset="7.2054242958041073" a="3.7772200562677449" b="-0.017695919314992831" c="0.0017600634302251611" d="0.00040572118710048273" /> - <width sOffset="7.2660832584598438" a="3.7761532068844521" b="-0.017477913506050019" c="0.0016783707733431465" d="0.00019509211264841475" /> - <width sOffset="9.6720084176481009" a="3.7465348413428279" b="-0.0060139866055640648" c="0.0010734266264089683" d="-1.9490228127279347e-05" /> - <width sOffset="10.26990395733182" a="3.7433186673878649" b="-0.0047512946675968403" c="0.00030256290261236813" d="0.00036504359788164069" /> - <width sOffset="12.257306139341779" a="3.7379364977223597" b="0.00077684562177597269" c="0.0030537540497072991" d="-0.00053715030256891222" /> - <width sOffset="15.920796471648856" a="3.7553566255845969" b="0.001524099753937088" c="-0.0020326711565884985" d="0.00021754693880888425" /> - <width sOffset="17.209925092211051" a="3.7544094462404058" b="-0.0026320565364860334" c="-0.0012616620912064107" d="0.00017039249283271534" /> - <width sOffset="21.863349983546129" a="3.7320108119396886" b="-0.0033049333069105698" c="0.00010539749883704043" d="-3.3098726585198669e-06" /> - <width sOffset="27.214425888617995" a="3.7168366684546927" b="-0.0024612780875401929" c="5.8199874107068577e-05" d="-4.0399596005023238e-06" /> - <width sOffset="37.218926685024968" a="3.6939926204063633" b="-0.0025098358216346143" c="-5.4684035771555281e-05" d="-7.4499682973810135e-06" /> - <width sOffset="37.756056705080169" a="3.6926275809266405" b="-0.0025750288371753269" c="0.000137836932432272" d="-1.1044661033671123e-05" /> - <width sOffset="39.425779652884614" a="3.688660867566691" b="-0.0022071065662403596" c="0.00043838412521835613" d="-5.6690286170781653e-05" /> - <width sOffset="45.361289472641204" a="3.6791504728271569" b="-0.0029946834305997656" c="-0.0020834216286797691" d="0.00029866310020794384" /> - <width sOffset="47.223427481431941" a="3.6682780627133829" b="-0.0076470258019621625" c="-0.00041266685223396624" d="0.00030287756035495396" /> - <width sOffset="51.298254931008756" a="3.6507582330749928" b="0.0040770175582008714" c="-1.8852339348285713e-05" d="-5.7381580327031608e-06" /> - <width sOffset="57.227928277838885" a="3.673074379759794" b="0.0032481625585406727" c="-0.00011915568880695209" d="-6.4127634232565957e-06" /> - <width sOffset="62.995837343333534" a="3.6866147689178392" b="0.0012335698530554552" c="0.00082778023880297638" d="-0.00013322024646236313" /> - <width sOffset="63.574548630499578" a="3.6875800589167316" b="0.0020578123071468518" c="0.00088185152949108142" d="-0.00012689044643143251" /> - <width sOffset="67.232429074245829" a="3.7006961729904457" b="0.0034158107059561798" c="-0.00050974770857648596" d="-0.00012860212313717834" /> - <width sOffset="68.838644515485726" a="3.7043346715384677" b="0.00078292875277805333" c="-0.00078986816071577749" d="4.6800058094324306e-05" /> - <width sOffset="74.411218167651612" a="3.6922680404704433" b="-0.0036603406112131706" c="-0.0012875150599375785" d="0.00012274583075571195" /> - <width sOffset="77.236929870652773" a="3.6744140497997417" b="-0.0079963871054166986" c="-0.00023910789367665309" d="0.00012527284023668256" /> - <width sOffset="82.669175520833448" a="3.6440012585784567" b="0.00049596603264934246" c="7.1594016675839237e-05" d="-1.7390610552147405e-06" /> - <width sOffset="87.241430667059774" a="3.6475994229910818" b="0.0010415903430214576" c="4.6102376050662655e-05" d="-8.605305892383762e-07" /> - <width sOffset="97.245931463466718" a="3.6617727098603376" b="0.0017056612454049601" c="1.3992246821536907e-05" d="-7.9070341079832685e-07" /> - <width sOffset="107.25043225987366" a="3.6794457121091613" b="0.0017482075353483365" c="-3.407391111901753e-05" d="3.0875574334985284e-06" /> - <width sOffset="107.76660827651307" a="3.6803394409650627" b="0.0017154991888372411" c="-8.0710115387383166e-05" d="1.1490504234168928e-05" /> - <width sOffset="109.88941357465751" a="3.6837273257426313" b="0.0015281745258650347" c="-2.4437350014736463e-05" d="7.4142154367886679e-06" /> - <width sOffset="117.25493305628066" a="3.6966199932060482" b="0.0023748700449862216" c="0.0001369136332779104" d="1.13922242270847e-05" /> - <width sOffset="119.1651625281317" a="3.7017355427694447" b="0.0030226528398379507" c="0.00028293425926540508" d="-2.1865285870290952e-05" /> - <width sOffset="127.25943385268761" a="3.7331433113591039" b="0.003305287385829918" c="-0.00020504778229686463" d="-2.784824311967638e-05" /> - <width sOffset="127.79003360793678" a="3.7348352076303435" b="0.0030641699223213394" c="-1.9742150694913039e-05" d="-1.0402923854996769e-05" /> - <width sOffset="130.11431829426465" a="3.7417199337287892" b="0.0028037980403668142" c="-0.00024437670653152749" d="5.975236953192504e-07" /> - <width sOffset="137.26393464909455" a="3.7494925817355309" b="-0.0005989704738125377" c="-0.00022977817237093256" d="7.6691788782595326e-07" /> - <width sOffset="142.49651777609978" a="3.7401769841355232" b="-0.0029406427837510773" c="-0.00011749009848510018" d="1.115656473699967e-05" /> - <width sOffset="147.2684354455015" a="3.7246813863496531" b="-0.0032998038956036451" c="3.4251800677243e-05" d="1.3969348650950658e-05" /> - <width sOffset="150.53983825652773" a="3.7147420421047146" b="-0.0026271979140159449" c="9.5583088683603521e-05" d="4.5955789030110071e-06" /> - <width sOffset="152.13329341853813" a="3.7108170084266421" b="-0.002287577287626207" c="0.0025376011053218663" d="-0.00024633259482198777" /> - <width sOffset="157.27293624190844" a="3.7326485759443546" b="0.0042758368048523357" c="-0.0012641914800530134" d="-0.00024440129745112812" /> - <width sOffset="158.58359434852269" a="3.7355308119633923" b="-0.00029752455464186018" c="-0.00012516651831128789" d="-2.3021923122463877e-06" /> - <width sOffset="167.64869794113446" a="3.7208330409632779" b="-0.0031343750430089553" c="-0.00017872583249786271" d="1.1664159175232086e-06" /> - <width sOffset="167.83968081185554" a="3.72022791821722" b="-0.0032025145549740997" c="-0.033183140455664686" d="0.045202191491171197" /> - <width sOffset="168.32799738768279" a="3.7160148251649447" b="-0.0032744644888643183" c="0.00018798703244202715" d="8.8183323080194138e-07" /> - <width sOffset="177.28193783472238" a="3.7023999957558487" b="0.00030408267560812826" c="0.00021016459456257657" d="8.0440949035249423e-07" /> - <width sOffset="179.09373751945634" a="3.7036456069355936" b="0.0010735566754061206" c="0.00061207889463791155" d="-4.2318027055794641e-05" /> - <width sOffset="187.28338959709794" a="3.7302454561522183" b="0.0025841219058258874" c="3.6050137452315794e-05" d="-7.4251006978174662e-06" /> - <width sOffset="187.28643863112933" a="3.7302533355627845" b="0.0025843415365398217" c="3.5004674339600915e-05" d="-7.2950177798965088e-06" /> - <width sOffset="197.29093942753633" a="3.7523071294137895" b="0.0010942743404693004" c="-0.00018436028190795849" d="-7.4132548589802511e-06" /> - <width sOffset="200.85358962958122" a="3.7535304386873962" b="-0.00050162573912372176" c="-0.00027035124189038462" d="1.1314216467653138e-05" /> - <width sOffset="203.9137529138377" a="3.7497878847588577" b="-0.0018384043159645333" c="0.00052731491732997758" d="-0.00010638480509081924" /> - <width sOffset="207.29544022394327" a="3.7454871005925754" b="-0.00192176494200924" c="-0.00054438920722066212" d="-0.00010895209519513576" /> - <width sOffset="210.10340084941328" a="3.7333863718474212" b="-0.0075561569426466782" c="-0.0042830912143382973" d="0.00077006465463802119" /> - <width sOffset="212.13016492908224" a="3.7068890220130601" b="-0.015428036243311632" c="6.1076618365814848e-05" d="0.0007776372129125864" /> - <width sOffset="214.80366389701351" a="3.6809386754984361" b="0.0015732519130077743" c="-9.2182916843520381e-06" d="3.7121259137929532e-06" /> - <width sOffset="217.29994102035022" a="3.6848662486322232" b="0.0015966243101394626" c="5.9141295144379838e-05" d="1.3578537996193625e-05" /> - <width sOffset="223.70668837825781" a="3.7010937574742235" b="0.0040264817659149453" c="0.00043390610831096525" d="-2.8946560108232693e-05" /> - <width sOffset="224.64145473040736" a="3.7052130759592976" b="0.0047618039438508293" c="-2.6306870664211275e-05" d="-1.7600417816919908e-05" /> - <width sOffset="227.30444181675716" a="3.7173747668062029" b="0.0042472541295589007" c="-0.00015826235244743866" d="-1.4174347647344523e-05" /> - <width sOffset="236.81424446902247" a="3.7312622566212399" b="-0.0026084619936619399" c="-0.00014686682740367259" d="3.0081376550858832e-06" /> - <width sOffset="237.30894261316411" a="3.7299362773274916" b="-0.002751562976787613" c="-0.00015307358101899541" d="3.2053476446914873e-06" /> - <width sOffset="245.55595536116908" a="3.6986309737129459" b="-0.0046223444883366641" c="-0.0002784420757568408" d="8.4456915976393644e-05" /> - <width sOffset="246.36753096248435" a="3.6947413407522198" b="-0.0049074141794753275" c="-0.00057425320498336908" d="9.0915256093209118e-05" /> - <width sOffset="247.31344340957111" a="3.6896624899634092" b="-0.0057497613145334097" c="-0.00031927373450818032" d="9.4653219957175375e-05" /> - <width sOffset="250.3490520291495" a="3.6719141072097345" b="-0.0050714760542174032" c="0.0019189062110350741" d="-0.00012729796877776489" /> - <width sOffset="257.31794420597805" a="3.6866804248954148" b="0.0031269723758105246" c="-0.00074843930604365162" d="-0.00011872674141853112" /> - <width sOffset="258.32232389512831" a="3.6889457893706399" b="0.0012642309269883284" c="-0.00095031226788274683" d="0.00036129155207991517" /> - <width sOffset="259.93779150931817" a="3.6900312344428761" b="0.0010224598325987789" c="0.00042500425928281417" d="0.00034200546043673788" /> - <width sOffset="261.1896220888126" a="3.6926481149265369" b="0.0036943760343427778" c="0.0064374296352551234" d="-0.00088716933855172164" /> - <width sOffset="265.5961766504177" a="3.7580169388004929" b="0.008747720194693694" c="0.0020385644459286617" d="-0.0029737941198234993" /> - <width sOffset="266.75376464753771" a="3.7662620030316645" b="0.0015126143451424138" c="-0.0049759034586015424" d="0.00075570827318712788" /> - <width sOffset="267.322445002385" a="3.7656519852168091" b="-0.003413600594235921" c="-0.0036833333008390629" d="0.00075582295095115871" /> - <width sOffset="271.18749066910812" a="3.7410744230458688" b="0.0019866569129532402" c="0.00026976598734385597" d="-1.0800783109386516e-05" /> - <width sOffset="277.326945798792" a="3.7609402272957921" b="0.0040777504485876581" c="7.0163077206149255e-05" d="-1.0777169141506494e-05" /> - <width sOffset="283.58749415784433" a="3.7865746961506299" b="0.0036890529637338362" c="0.00033855874818279993" d="-4.2184996768321956e-05" /> - <width sOffset="287.33144659519894" a="3.802918119786959" b="0.0044502046042052788" c="-0.00017345784604633305" d="-1.2475772742605393e-05" /> - <width sOffset="288.35160747404967" a="3.8072642762965576" b="0.0040573431206451117" c="-0.00040856650445788266" d="-2.94376748205322e-05" /> - <width sOffset="293.38897204565836" a="3.8135723788271378" b="-0.0022998004383672456" c="-0.0049127242487677298" d="0.0016793098067787353" /> - <width sOffset="295.28646953323471" a="3.802993198630074" b="-0.0028045159466224155" c="0.0062305814122983845" d="-0.0010985123589416618" /> - <width sOffset="297.33594739160588" a="3.8139594953391764" b="0.0088919209102172499" c="-0.00050794303897152421" d="-0.00109957661133691" /> - <width sOffset="299.10741015787829" a="3.8220046979932909" b="-0.0032593626652770379" c="-0.0086137027838847444" d="0.0010486349464606459" /> - <width sOffset="304.3336034653247" a="3.7193895890188098" b="-0.0073687119318964489" c="0.00029776094547929809" d="8.3237456038492928e-06" /> - <width sOffset="307.34044818801283" a="3.7001513903738754" b="-0.0053523022484622297" c="0.0003835764738479271" d="6.0091970731531265e-06" /> - <width sOffset="310.73306422780848" a="3.6866426391477107" b="-0.0025421520978283789" c="0.00024072429296790289" d="-8.9072806233533944e-07" /> - <width sOffset="317.34494898441977" a="3.6801005045442614" b="0.00052431053897342584" c="0.00023144799631625378" d="2.9274943876626428e-07" /> - <width sOffset="318.20754027474834" a="3.6807251702022992" b="0.00092425406326548552" c="0.0095102466576086273" d="-0.001082190721670806" /> - <width sOffset="324.02826576103024" a="3.7949001724483002" b="0.0016407153547271102" c="-0.02403205930580778" d="0.0043345902889259189" /> - <width sOffset="327.34944978082677" a="3.6940607099640759" b="-0.014554050836798518" c="0.019156357185850743" d="0.0043340842343396217" /> - <width sOffset="327.70652549093751" a="3.6915036293950125" b="0.00078431589604246966" c="0.00032426664418336391" d="1.1294204308561497e-07" /> - <width sOffset="330.23255154955285" a="3.6955557352796666" b="0.0024246898666932951" c="0.0036536216339553983" d="-0.00035847861368847723" /> - <width sOffset="331.85513429042675" a="3.7075777750454733" b="0.011449916347910614" c="0.0026108850139169339" d="-0.00039194650176701596" /> - <width sOffset="336.92010080790209" a="3.7816225748571655" b="0.0077331542855074726" c="-0.0044895056184696136" d="0.00041961666548806016" /> - <width sOffset="337.35395057723366" a="3.784166828657332" b="0.0040745601555769295" c="-0.0039494466747840322" d="0.00042045121378233154" /> - <width sOffset="342.83760992686683" a="3.7570793421421502" b="-0.0013107204863723899" c="0.00070329308819546343" d="-0.00010026180536530238" /> - <width sOffset="347.35845137364066" a="3.756263802857545" b="-0.0010992219577140973" c="-0.00068486672650214632" d="-8.638663845855486e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="349.03200235686808" space="0" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <predecessor id="-6" /> - <successor id="-6" /> - </link> - <width sOffset="0" a="2.49401868001355" b="0.0024815034748816231" c="-0.0011027218015098711" d="7.0409426257166618e-05" /> - <width sOffset="2.6796707280038561" a="2.4941048489728077" b="-0.0019116059743914345" c="0.00070568085786182995" d="-6.1585227453725546e-05" /> - <width sOffset="7.2054242958041073" a="2.4941986028079173" b="0.00069162117774335553" c="-8.3665845876839512e-05" d="-6.1633286126926417e-05" /> - <width sOffset="9.6720084176481009" a="2.4944706007430435" b="-0.00084605413845063957" c="0.0014733383127653571" d="0.00015294905464006679" /> - <width sOffset="9.9210302876818162" a="2.4943536411431362" b="-8.381323410270935e-05" c="-6.0680583221608454e-06" d="-4.4479534838951406e-07" /> - <width sOffset="17.209925092211051" a="2.4932481071014161" b="-0.00024316535674809704" c="4.9667115042705597e-06" d="5.4461747714212537e-07" /> - <width sOffset="27.214425888617995" a="2.4918578306022381" b="1.9745930635456117e-05" c="2.9835006858653763e-05" d="8.2793495001490364e-07" /> - <width sOffset="37.218926685024968" a="2.4958706190603133" b="0.00086531874771040998" c="5.0176452092469908e-05" d="1.9473493122131225e-06" /> - <width sOffset="37.756056705080169" a="2.4963501858517239" b="0.00092090678656320127" c="-0.00015121138164879292" d="5.5420420485598656e-06" /> - <width sOffset="47.223427481431941" a="2.496218323820548" b="-0.00045202351304087646" c="1.6634119098590138e-05" d="3.1887270420674316e-06" /> - <width sOffset="52.203225962351439" a="2.4947736163271612" b="-4.9128472782448453e-05" c="-9.5432610343919519e-05" d="6.1268852647396203e-06" /> - <width sOffset="57.227928277838885" a="2.4928945807689216" b="-0.00054410133072356395" c="1.3802172069574315e-05" d="9.6316274191019699e-06" /> - <width sOffset="63.574548630499578" a="2.4924595441749062" b="0.00079496696916738743" c="-8.8172451709918136e-05" d="3.3018273954012182e-06" /> - <width sOffset="67.232429074245829" a="2.494349283592908" b="0.00028245463220614823" c="-5.6798420175527422e-05" d="4.2021284080392808e-06" /> - <width sOffset="72.291715410634907" a="2.4948686417439383" b="3.0413494316585462e-05" c="-2.1683706827947886e-05" d="2.3896115154746602e-06" /> - <width sOffset="77.236929870652773" a="2.4947777546976946" b="-8.7327709080177712e-06" c="-2.8815198065549653e-06" d="1.7162398208878159e-07" /> - <width sOffset="87.241430667059774" a="2.4945738320822635" b="-1.4855553575248933e-05" c="-1.7659259766135734e-06" d="1.4874730602949509e-07" /> - <width sOffset="97.245931463466718" a="2.4943974063306342" b="-5.5255995244158013e-06" c="-1.4155167470409457e-06" d="1.7685594698490521e-07" /> - <width sOffset="107.25043225987366" a="2.4943775411956235" b="1.9255878029680109e-05" c="1.5093272870833397e-05" d="-4.0757337063601185e-06" /> - <width sOffset="109.88941357465751" a="2.4944585643273829" b="1.3764660521667044e-05" c="-2.7053798664882188e-07" d="5.5509119805142383e-10" /> - <width sOffset="117.25493305628066" a="2.4945454930861235" b="9.8696974526907988e-06" c="1.0055770694920024e-05" d="-1.3847073896392838e-06" /> - <width sOffset="124.3330672095953" a="2.4946281088884499" b="-5.5899564984963912e-05" c="-1.0684117459715241e-05" d="-1.2750371268238903e-05" /> - <width sOffset="127.25943385268761" a="2.4940535034351621" b="-0.00044599892423932089" c="-9.4140943933114578e-05" d="7.4962563115855134e-06" /> - <width sOffset="130.11431829426465" a="2.492187370495472" b="-0.00080023027738681206" c="0.00012215837861625513" d="-3.504191238972811e-06" /> - <width sOffset="137.26393464909455" a="2.4914297361713791" b="0.00040916942779448302" c="4.6968264338932716e-05" d="-3.4628601820856699e-06" /> - <width sOffset="147.2684354455015" a="2.4967567893394245" b="0.00030916410097474442" c="-4.8736517981516026e-05" d="-6.2150647796016012e-06" /> - <width sOffset="150.53983825652773" a="2.4970290133053199" b="-0.00020925175628663936" c="-3.3965647824109777e-05" d="3.1587049679224297e-06" /> - <width sOffset="157.27293624190844" a="2.4950444519429382" b="-0.00023704386707789401" c="3.6934835012140869e-05" d="1.0451468209206028e-06" /> - <width sOffset="160.00169833699061" a="2.4946938737495872" b="-1.212417482779728e-05" c="-4.2196324733667081e-05" d="2.5394112287795319e-06" /> - <width sOffset="167.27743703831544" a="2.4933499983479424" b="-0.00022286137569140505" c="1.5132463391303631e-05" d="3.4162802856078734e-06" /> - <width sOffset="167.64869794113446" a="2.4932695192303234" b="-0.00021021254618553298" c="9.8879360802669655e-06" d="-5.2327970542577689e-08" /> - <width sOffset="177.28193783472238" a="2.4921153059891124" b="-3.4274824371940439e-05" c="7.5504037575137718e-06" d="-9.9535508759202527e-08" /> - <width sOffset="187.28643863112933" a="2.4924284537007146" b="8.6913678418325951e-05" c="4.2423929224609907e-06" d="-7.6694101615980075e-08" /> - <width sOffset="197.29093942753633" a="2.4936458052232027" b="0.00014877077894416731" c="1.3433855175827087e-06" d="-7.2070984312973068e-08" /> - <width sOffset="203.9137529138377" a="2.4946690737350785" b="0.00015708130369196729" c="6.6153087098104989e-06" d="-1.1461962387994076e-05" /> - <width sOffset="207.29544022394327" a="2.4948326641973377" b="-0.00019140732535689268" c="-0.00010687240248680006" d="-1.0634651489685516e-05" /> - <width sOffset="210.10340084941328" a="2.4932171005342854" b="-0.0010431456088850662" c="0.0026244449765749373" d="-0.00088965140132328112" /> - <width sOffset="211.84600025998702" a="2.4946611026176813" b="-1.120075320767272e-06" c="0.0028503075027965278" d="-0.00086691946583861493" /> - <width sOffset="214.80366389701351" a="2.4971618517420024" b="-0.0058914655482542001" c="0.0014654707302631405" d="-9.2994378839974485e-05" /> - <width sOffset="217.29994102035022" a="2.4901404991549425" b="-0.00031347880136395296" c="0.00077232374256150274" d="-0.00010522807847177071" /> - <width sOffset="222.02348293085191" a="2.4948016518339537" b="-6.0770401926511092e-05" c="-0.00026116435370321123" d="7.4470292453056723e-06" /> - <width sOffset="224.64145473040736" a="2.4929862165613548" b="-0.0012750914094094806" c="0.0001763621517400249" d="-3.8991130450058541e-06" /> - <width sOffset="227.30444181675716" a="2.4907677037554699" b="-0.00041874282727515739" c="0.00014620281462618458" d="-6.0223266591454069e-06" /> - <width sOffset="237.30894261316411" a="2.4951813739134225" b="0.00069830484375279708" c="-3.6709984182813863e-05" d="-6.1101616105401426e-06" /> - <width sOffset="246.36753096248435" a="2.4939528157994824" b="-0.0014709397700497315" c="0.00029868234582249215" d="-1.2568501729088171e-05" /> - <width sOffset="247.31344340957111" a="2.492818044277227" b="-0.0009396220870308827" c="0.00026648064579069477" d="-1.3765130615241087e-05" /> - <width sOffset="257.31794420597805" a="2.4963059266421821" b="0.00025913231492421781" c="-0.00014732707340748278" d="-1.1389341692831689e-05" /> - <width sOffset="259.93779150931817" a="2.4957688212527929" b="-0.00074733221029484422" c="0.00013880579606183704" d="7.8967499507064385e-06" /> - <width sOffset="262.1771284153586" a="2.4948800284550723" b="-6.8684941314597512e-06" c="1.9997963997322999e-06" d="-2.4948005512917599e-07" /> - <width sOffset="267.322445002385" a="2.4948636472382457" b="-6.1037395412677758e-06" c="4.9711865788564674e-08" d="2.546977058478333e-09" /> - <width sOffset="277.326945798792" a="2.4948101084512251" b="-4.344273661420657e-06" c="-2.9629221242771537e-07" d="8.3728042721038504e-08" /> - <width sOffset="287.33144659519894" a="2.494820831410129" b="1.4868243465018132e-05" c="4.1929325837954557e-06" d="-1.0886802952035128e-05" /> - <width sOffset="288.35160747404967" a="2.4948288044838138" b="-1.0567434091294983e-05" c="0.00016780083372460708" d="6.0750991302079386e-06" /> - <width sOffset="288.84940076674548" a="2.4948658742014524" b="0.00016100902019131497" c="-2.5986576603598504e-05" d="1.0636462883309456e-06" /> - <width sOffset="297.33594739160588" a="2.4950108082875655" b="-5.0247448466793441e-05" c="-9.7875052236780921e-06" d="1.9842736829235834e-06" /> - <width sOffset="302.78761675585179" a="2.4947674910690614" b="1.9958068512580633e-05" c="6.7567492643718204e-05" d="-9.3184427329438844e-06" /> - <width sOffset="307.34044818801283" a="2.4953795110713211" b="5.5739173060493198e-05" c="-6.8697856020375376e-05" d="-7.7853236470299771e-06" /> - <width sOffset="310.73306422780848" a="2.4944739060512333" b="-0.0006792152959151131" c="5.6077178349824545e-05" d="-8.853985115379047e-07" /> - <width sOffset="317.34494898441977" a="2.4921786137985498" b="-5.3784567867663996e-05" c="3.5725365655032302e-05" d="-1.3356443535804141e-06" /> - <width sOffset="327.34944978082677" a="2.4938788305832444" b="0.00025999025538628534" c="-4.1924364286739785e-06" d="-1.5081760299395781e-06" /> - <width sOffset="331.85513429042675" a="2.4948271991656039" b="0.0001303573461042735" c="-1.4754309123021412e-05" d="3.6818705237104973e-07" /> - <width sOffset="337.35395057723366" a="2.4951591020833668" b="1.4934697223616816e-06" c="-1.072112064349901e-05" d="6.5010960809026581e-07" /> - <width sOffset="347.35845137364066" a="2.4947519539557668" b="-1.7816967715513117e-05" c="-1.5181410831321398e-05" d="8.8894123605765397e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="531.91209319279619"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4947212834433881" b="-1.2401885027296666e-05" c="0.0002171930010152143" d="-2.532117799964179e-05" /> - <width sOffset="7.6530499067869187" a="2.4959974030317218" b="-0.0011371454877154034" c="0.00024575298201298939" d="3.3871925170662642e-07" /> - <width sOffset="8.3309498131795863" a="2.4953395730934291" b="-0.00080348666716984353" c="0.00018019640845248061" d="1.6204860156729832e-05" /> - <width sOffset="10.162733229833066" a="2.4945719979709775" b="1.9797763670673736e-05" c="-0.00012398138863050289" d="1.0354528761435393e-05" /> - <width sOffset="18.335450609586474" a="2.4921050318219802" b="6.8107793225119246e-05" c="0.00012882986773207978" d="7.1045609878781197e-06" /> - <width sOffset="21.530601475620642" a="2.4938696147299959" b="0.0011089606762686593" c="-0.00069595355402583977" d="0.00014928266888834715" /> - <width sOffset="23.036201014422659" a="2.4944711495550393" b="2.8501260402622429e-05" c="-0.00079961624571850561" d="0.0001463897053094986" /> - <width sOffset="27.010880102338206" a="2.4911441788683764" b="0.00061009144688869987" c="0.00021665033441388263" d="-6.0220757527471011e-05" /> - <width sOffset="28.339951405993475" a="2.4921963506653455" b="0.00086685157773520112" c="4.4473705500463936e-05" d="-9.4522373681965488e-06" /> - <width sOffset="38.034674172300811" a="2.496167486039627" b="-0.00093600865052993363" c="0.00013470916885336689" d="-3.2115791282570097e-06" /> - <width sOffset="38.344452202400475" a="2.4958903626718376" b="-0.00085347334140158668" c="0.00010333272061632779" d="-3.6536012092096632e-06" /> - <width sOffset="48.348952998807363" a="2.4940358270292409" b="0.00011704399829152675" c="-2.2060837199360146e-05" d="5.6256164237539812e-07" /> - <width sOffset="50.828351345026022" a="2.494198983082569" b="1.8023693346270629e-05" c="-0.00038580898313517068" d="-8.7434916995869209e-06" /> - <width sOffset="51.301396252178051" a="2.4941202505169207" b="-0.00035285588820661997" c="-6.3371465493037874e-05" d="6.8220066823027554e-06" /> - <width sOffset="58.353453795214364" a="2.4908728740830863" b="-0.00022884813565996173" c="7.7540486952975697e-05" d="6.4744070301602761e-06" /> - <width sOffset="65.477276929407708" a="2.4955183571152908" b="0.0018616275450200927" c="-0.00058555369175330974" d="3.748936552572688e-05" /> - <width sOffset="68.357954591621365" a="2.4969181770526072" b="-0.00057866090222119916" c="-0.00026462586243935333" d="5.5839060156609747e-05" /> - <width sOffset="72.49851754379165" a="2.493949221616556" b="0.00010189737129218199" c="-0.00032718006304572461" d="5.0701075994505923e-05" /> - <width sOffset="77.232540394249554" a="2.4924782655099404" b="0.00041292281842704968" c="0.00020598446922184439" d="-0.00013248944091478237" /> - <width sOffset="78.362455388028252" a="2.4930166897143859" b="0.00037096175401909624" c="-8.5571223558391496e-05" d="6.1847659527067709e-06" /> - <width sOffset="85.756996060397114" a="2.4935814855584928" b="0.00011997672068830671" c="-0.00012658505896734982" d="3.1772388795461619e-05" /> - <width sOffset="88.366956184435253" a="2.4935972101525925" b="0.00010850303706415494" c="0.00011014490696426227" d="-4.2683718027097799e-05" /> - <width sOffset="90.235246136381875" a="2.4939060344251054" b="7.3104789146387177e-05" c="2.2256334929711378e-05" d="-1.1017324668225353e-06" /> - <width sOffset="98.37145698084214" a="2.49538076020922" b="0.00021647204044790858" c="-1.0826828108452384e-05" d="-7.5522601070214468e-07" /> - <width sOffset="108.24983353540233" a="2.4957346416567452" b="-0.00021852105579087919" c="3.250247960136218e-05" d="1.1206992330143447e-07" /> - <width sOffset="108.37595777724914" a="2.4957075981065877" b="-0.00021031700637601084" c="8.4397323550083479e-07" d="2.5442075942417343e-07" /> - <width sOffset="118.38045857365614" a="2.4939427192033614" b="-0.00011703499551046762" c="-4.2205933377607903e-07" d="2.7509907185936939e-07" /> - <width sOffset="128.38495937006303" a="2.4930050692521197" b="-4.2875953221466602e-05" c="-1.1417485286624565e-05" d="1.5658692618104469e-06" /> - <width sOffset="136.31459844543713" a="2.4927279131256919" b="7.1432677924171731e-05" c="0.00029059556194519881" d="2.4651309938782408e-05" /> - <width sOffset="138.38946016647003" a="2.4943473498285753" b="0.0015956993449366447" c="0.00029578580551527597" d="-1.4452265951885028e-05" /> - <width sOffset="138.51472875800846" a="2.4945518539645466" b="0.0016691243230400766" c="-0.00044578343005940963" d="2.3986318215148212e-05" /> - <width sOffset="148.39396096287692" a="2.4906611403246108" b="-0.00011573322424141691" c="0.0003096288433167844" d="3.0178540786895924e-06" /> - <width sOffset="150.33190967007977" a="2.4916216760385801" b="0.0011183583764738259" c="-0.00039405405937006064" d="3.3793337605821303e-05" /> - <width sOffset="157.62146201192468" a="2.4919247511376259" b="0.0007604908606386393" c="-0.000348679420020594" d="-1.6057907852878101e-05" /> - <width sOffset="158.62320735210892" a="2.4923205295687243" b="1.3572862812218697e-05" c="-1.0051912160536641e-05" d="-1.7952436486772343e-07" /> - <width sOffset="168.40296255569092" a="2.4913239457549441" b="-0.0002345486937118485" c="3.6506918985818147e-05" d="-4.0218677651792644e-05" /> - <width sOffset="169.42540636656236" a="2.491079309020952" b="-0.00028602891971551644" c="0.00011221556469643438" d="-5.3307367650763057e-06" /> - <width sOffset="178.40746335209781" a="2.4937005245098423" b="0.00043961516347759862" c="-2.834448445159099e-05" d="-6.1293145541741135e-06" /> - <width sOffset="183.45065815991188" a="2.4944104881320524" b="-0.00031395388671314384" c="5.1656141087162198e-05" d="1.9256991061863947e-06" /> - <width sOffset="188.41196414850481" a="2.4943595269168508" b="0.00034081064942642923" c="7.7576389347579477e-05" d="3.6586508523482189e-06" /> - <width sOffset="190.21475175330875" a="2.4952474992822857" b="0.000656190475107615" c="-0.00026814523504087366" d="1.7570432794137764e-05" /> - <width sOffset="198.41646494491181" a="2.492285612802446" b="-0.00019652129526856899" c="0.00015339932292916531" d="1.80793964708139e-05" /> - <width sOffset="198.97568648152651" a="2.492226848045437" b="-7.991045168180555e-06" c="-0.00011318487863497496" d="1.8315878728732208e-05" /> - <width sOffset="204.08525674920111" a="2.4916743424646928" b="0.00026991363202514868" c="-4.2287358479508295e-05" d="1.7826213663287836e-06" /> - <width sOffset="208.4209657413187" a="2.4921949671685919" b="3.7534124226817293e-06" c="-2.1713499295915106e-05" d="7.8473361991480825e-07" /> - <width sOffset="217.29402175973973" a="2.4910669468794264" b="-0.00019622790108906013" c="5.9099821165561436e-05" d="1.7003206529094055e-05" /> - <width sOffset="218.4254665377257" a="2.4909452116035791" b="2.8093132261941068e-06" c="8.2610917834063523e-05" d="-7.7859032795707977e-06" /> - <width sOffset="225.55144065863874" a="2.4923428163974926" b="-5.9171558669636817e-06" c="0.001773931701944085" d="-0.00017943011167322899" /> - <width sOffset="225.93058219555974" a="2.4925857935211582" b="0.0012618469045934722" c="-0.00088016500166673037" d="0.00012163268340794307" /> - <width sOffset="228.4299673341327" a="2.4921404179882796" b="-0.00085840460155148669" c="3.4057938314902437e-05" d="0.0001275668361049221" /> - <width sOffset="230.64233567987299" a="2.4917893801394602" b="0.0011654486496620311" c="-0.00031189205202509167" d="-0.00019145698867758693" /> - <width sOffset="231.64302063789546" a="2.4924514569300289" b="-3.392079582271567e-05" c="8.2689798329068644e-05" d="-9.3499000567981399e-06" /> - <width sOffset="238.43446813053959" a="2.4931062209966601" b="-0.00020451156071934692" c="-0.00012940220799635401" d="5.838513832876997e-06" /> - <width sOffset="240.74801126774173" a="2.4920127511802797" b="-0.00070951512329246041" c="0.00046924765005236654" d="-6.3771062895497766e-05" /> - <width sOffset="244.75026843294859" a="2.4926012662091477" b="-1.7882181405769193e-05" c="0.00067737029694666783" d="-0.00020052278985492795" /> - <width sOffset="246.15276328367327" a="2.4933553869715723" b="0.00069885447173424417" c="-0.00089951262945257837" d="0.0002047772326653617" /> - <width sOffset="248.43896892694659" a="2.4926985605609175" b="-0.00020313747621772925" c="0.00043598326356266369" d="0.00024478261948229497" /> - <width sOffset="249.57616714153596" a="2.4933913640453529" b="0.0017381344770199918" c="-0.00092619391044953582" d="0.00011263355665647369" /> - <width sOffset="253.89277854505542" a="2.4926956619858007" b="3.8244550857084897e-05" c="-9.5804115122255607e-07" d="-5.0557436193703987e-07" /> - <width sOffset="258.44346972335347" a="2.49280221627434" b="-1.8844481517122302e-06" c="-5.5910171467568956e-07" d="5.6617100419451776e-08" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="266.62678984839931" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.826459161351166" b="0.00051926896816376945" c="-0.00020235519903615359" d="6.0199527555480648e-06" /> - <width sOffset="6.5402177475754115" a="3.8228837685945063" b="-0.0013551246882696154" c="0.00051834471429697347" d="1.8407843042874912e-05" /> - <width sOffset="7.6530499067869187" a="3.8220430263105865" b="-0.0001330747877668732" c="-3.0113464316660432e-05" d="-7.2520542058103227e-06" /> - <width sOffset="8.3309498131795863" a="3.8219367171175467" b="-0.00018390062423292894" c="-1.4425384099447654e-05" d="2.8865405539838731e-06" /> - <width sOffset="18.335450609586474" a="3.8215434857872976" b="0.00039420368784049136" c="4.1431993901345465e-05" d="9.857329682162081e-06" /> - <width sOffset="21.530601475620642" a="3.8235475436162698" b="0.00096086674279331633" c="0.0010288028146493732" d="-0.00013232077821793379" /> - <width sOffset="24.717310382116807" a="3.832775071276024" b="0.0034866593026756029" c="-0.00027047884163643393" d="-0.0001379023977877262" /> - <width sOffset="27.010880102338206" a="3.8376852987494603" b="6.9644145137986738e-05" c="-0.00049005541236712274" d="6.870806504981446e-05" /> - <width sOffset="28.339951405993475" a="3.8370735186999196" b="-0.00086888895508871857" c="-0.0003119071974868783" d="1.783322459273142e-05" /> - <width sOffset="38.034674172300811" a="3.8155838093890653" b="-0.0018882879837292554" c="-0.00015838861794488277" d="1.1592566487682784e-05" /> - <width sOffset="38.697746662710983" a="3.8142654792003556" b="-0.0020830437127634703" c="8.1036370451204883e-05" d="3.9956229683145955e-06" /> - <width sOffset="48.348952998807363" a="3.8053017326549927" b="0.00059768004990551349" c="0.00017470851812986384" d="8.4387331325730869e-06" /> - <width sOffset="51.301396252178051" a="3.8088064505162107" b="0.0018499933355553206" c="-8.5392550060576865e-05" d="-7.1267652578213083e-06" /> - <width sOffset="57.517053825819744" a="3.815294877200035" b="-3.756324468341839e-05" c="-1.707774809501142e-05" d="5.6340145801313396e-07" /> - <width sOffset="58.353453795214364" a="3.8152518419652903" b="-6.4948492977480929e-05" c="-3.6067860807348828e-05" d="7.9482625030981451e-07" /> - <width sOffset="65.477276929407708" a="3.8132461079678519" b="-0.0004578210465398331" c="0.00078238051453367766" d="-3.0220132245388118e-05" /> - <width sOffset="68.357954591621365" a="3.8176972999426617" b="0.0032974235824343289" c="0.00046475491614855996" d="-3.978628042566663e-05" /> - <width sOffset="77.232540394249554" a="3.8557553596455856" b="0.0021459421172069833" c="-0.00040760973743422964" d="0.00014340423648399379" /> - <width sOffset="78.362455388028252" a="3.8578665640994094" b="0.001774069371229985" c="-0.00016555437259705981" d="3.1472528409881168e-06" /> - <width sOffset="88.366956184435253" a="3.8621964036900769" b="-0.00059348238154546774" c="-0.00019446705120756847" d="4.3850150155622421e-05" /> - <width sOffset="90.235246136381875" a="3.860694776947855" b="-0.00086094624352584101" c="-0.00010004077889685681" d="2.2681645953422675e-06" /> - <width sOffset="96.87809187542257" a="3.8512259749523974" b="-0.0018897925513989321" c="-0.00029699809783036743" d="2.5619264898568101e-07" /> - <width sOffset="98.37145698084214" a="3.8477423307854925" b="-0.0027751317068316836" c="-0.00027193253941582869" d="2.1291313507862557e-05" /> - <width sOffset="108.24983353540233" a="3.8143165925371196" b="-0.001914668232358757" c="0.00029332776878353105" d="2.0424017213522169e-05" /> - <width sOffset="108.37595777724914" a="3.8140798134945824" b="-0.0018397020730978122" c="0.00033000255471683304" d="1.5201837180123635e-05" /> - <width sOffset="111.12673850127908" a="3.8118326780895035" b="0.00032091479776763694" c="9.155553847749692e-06" d="4.8588271981360106e-07" /> - <width sOffset="118.38045857365614" a="3.8148276814308453" b="0.00053043472583025146" c="9.7554405452049547e-06" d="9.0975180952704598e-07" /> - <width sOffset="127.59070706793364" a="3.8212514410842218" b="0.00094165391710716851" c="0.0013797918601244816" d="-0.00021566118375138514" /> - <width sOffset="128.38495937006303" a="3.8227617196083203" b="0.0027253186588251615" c="0.00083029150905427175" d="-0.00021529173577582657" /> - <width sOffset="131.98361789469368" a="3.8332883442801196" b="0.00033688430845867968" c="-0.00052072715569730522" d="2.4125096531226165e-05" /> - <width sOffset="138.38946016647003" a="3.8204200139017157" b="-0.0033646011092864064" c="-2.6282593587395115e-05" d="2.4560235572627e-05" /> - <width sOffset="138.51472875800846" a="3.8199981709065201" b="-0.0033700296623934123" c="0.00071908527533991488" d="-1.3878348595402718e-05" /> - <width sOffset="145.16363676777632" a="3.8253011302218507" b="0.0043516328548486808" c="0.00015393972112318329" d="-4.2748175158249116e-05" /> - <width sOffset="148.39396096287692" a="3.8395237020251498" b="0.0040079523604509724" c="-0.00031113369180795386" d="-1.7937463188030633e-05" /> - <width sOffset="150.33190967007977" a="3.8459918470660055" b="0.0025999298467169114" c="0.00030580889932262871" d="-4.8712946715159247e-05" /> - <width sOffset="157.62146201192468" a="3.8623251974353883" b="-0.00070711353356436857" c="-6.5837554597840674e-05" d="1.1382987453042258e-06" /> - <width sOffset="158.39846175928392" a="3.8617365563558046" b="-0.00080736338958926088" c="-5.262972534961433e-05" d="1.0215060076346942e-06" /> - <width sOffset="166.05001513178718" a="3.852935302177241" b="-0.0014333455980128341" c="1.4043400655027395e-05" d="-9.7083680068368282e-07" /> - <width sOffset="168.40296255569092" a="3.8496278178231735" b="-0.0013833835419140453" c="-4.4014574079151535e-05" d="4.2881169447555683e-05" /> - <width sOffset="169.42540636656236" a="3.8482132071335471" b="-0.0013389055892296801" c="-0.00011155647501556861" d="7.9932285608392218e-06" /> - <width sOffset="178.40746335209781" a="3.8329792816725572" b="-0.001408301381281779" c="0.00010555728019158943" d="4.4061552823665658e-06" /> - <width sOffset="180.26857033161218" a="3.8307523065472875" b="-0.00096960954566809086" c="0.0025059555290338135" d="-0.00036708033295557293" /> - <width sOffset="183.45065815991188" a="3.8412138084146141" b="0.0038279144259556752" c="-0.0011710246570281828" d="-0.00037513534661520905" /> - <width sOffset="184.51881003547373" a="3.8435093438706192" b="4.2219805037006191e-05" c="-0.00067158909686424145" d="2.7481583406852372e-05" /> - <width sOffset="188.41196414850481" a="3.8351162823691096" b="-0.0039373937677260606" c="-0.0003480433223381968" d="2.5568848746217754e-05" /> - <width sOffset="190.21475175330875" a="3.8270366532750177" b="-0.004942990557603371" c="0.00015575122403749153" d="1.1657066804419151e-05" /> - <width sOffset="198.41646494491181" a="3.8034041141729551" b="-3.5690638764596019e-05" c="0.00044333625238070765" d="1.3379297247537845e-05" /> - <width sOffset="200.87848627584231" a="3.8062032156149099" b="0.0023906137804273701" c="-6.6610004995979149e-05" d="-1.7876242990252221e-05" /> - <width sOffset="204.08525674920111" a="3.8125948948512942" b="0.0014119233549217201" c="-2.8723741603197494e-05" d="-1.3429856280167021e-06" /> - <width sOffset="208.4209657413187" a="3.8180671649775508" b="0.0010871099532598944" c="-3.8145273604957892e-05" d="-3.8394940294817556e-07" /> - <width sOffset="217.29402175973973" a="3.8244417107096425" b="0.00031949335105972839" c="-0.00010829005164036059" d="-1.6602422311992588e-05" /> - <width sOffset="218.4254665377257" a="3.8246405228226656" b="1.0683290475208928e-05" c="-0.00012962706483626179" d="1.185882658805321e-05" /> - <width sOffset="220.46875179099652" a="3.8242223215762214" b="-0.00037051452616977004" c="-0.00035404486042587391" d="1.84965288093295e-05" /> - <width sOffset="225.93058219555974" a="3.8146506461067382" b="-0.0025826378251674218" c="0.0023990383285961907" d="-0.00028256626616324264" /> - <width sOffset="228.4299673341327" a="3.8187704134863933" b="0.0041140919409788706" c="0.00036224766666876891" d="-0.00028905200584769606" /> - <width sOffset="230.64233567987299" a="3.8265153196436765" b="0.0014725834482271494" c="-0.00036359637653177971" d="2.9971818937418734e-05" /> - <width sOffset="234.56979044249624" a="3.828506097231501" b="3.5038186905122712e-06" c="-0.00044927704031622691" d="3.9571754468929271e-05" /> - <width sOffset="238.43446813053959" a="3.824093508919626" b="-0.0016960185358778019" c="5.8874363214853531e-05" d="2.1571720459438396e-05" /> - <width sOffset="240.74801126774173" a="3.8207519477137879" b="-0.0010772150513844187" c="-0.00034953121652634545" d="9.118129718791499e-05" /> - <width sOffset="246.15276328367327" a="3.8191153005558602" b="0.0031351106666353441" c="0.0018620920685755876" d="-0.00031411872533198746" /> - <width sOffset="248.43896892694659" a="3.8322619439785424" b="0.0067239142783718951" c="-0.00019112766948669885" d="-0.00034829280283331235" /> - <width sOffset="249.57616714153596" a="3.8391489813647706" b="0.0049379567645702616" c="0.00081791471742926778" d="-0.00021614374000744664" /> - <width sOffset="251.66611428563237" a="3.8510685049659799" b="0.0055244846690789828" c="-0.00094208306867934327" d="-0.00023492542462972968" /> - <width sOffset="253.89277854505542" a="3.8561052502324156" b="-0.0021652252617457147" c="0.00010133588218582472" d="-4.8650856240591091e-06" /> - <width sOffset="258.44346972335347" a="3.8478920399518612" b="-0.0015451787640148144" c="4.8881519942168125e-05" d="-3.3009899409753315e-06" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8435134966017568" b="-0.0038293907431132803" c="0.00021501367713184404" d="2.0720785104406266e-05" /> - <width sOffset="6.5402177475754115" a="3.8334622654602564" b="0.0016420422376316032" c="1.8984508806688717e-05" d="8.3328948151151446e-06" /> - <width sOffset="8.3309498131795863" a="3.8365114518154044" b="0.0017901983896240869" c="3.3860430560116631e-05" d="-1.7829766286443084e-06" /> - <width sOffset="18.335450609586474" a="3.856025199593347" b="0.0019323372127990701" c="-3.3080431601356632e-05" d="-8.3433089708821378e-07" /> - <width sOffset="23.68619852231177" a="3.8652897245052174" b="0.001506665171792298" c="-3.8339516238919539e-05" d="-2.3477439144852845e-06" /> - <width sOffset="24.717310382116807" a="3.8667999288182768" b="0.0014201122067075095" c="-1.1323627119596053e-05" d="3.233875654459371e-06" /> - <width sOffset="28.339951405993475" a="3.8719496239887845" b="0.0014653889074044179" c="-3.5563162849957181e-06" d="-2.8419421185201396e-07" /> - <width sOffset="38.344452202400475" a="3.8859695785396329" b="0.0013088955423496344" c="-1.1599859645525249e-05" d="-2.7535860643010631e-07" /> - <width sOffset="38.697746662710983" a="3.886430544081942" b="0.0013005961017621382" c="-0.00022825656024479026" d="7.3215849269551441e-06" /> - <width sOffset="48.348952998807363" a="3.8843036084068685" b="-0.001059381920455501" c="-2.3821497547470385e-05" d="7.275337658072736e-06" /> - <width sOffset="57.517053825819744" a="3.8781952874198478" b="0.00033838757972041392" c="-2.4925809263926402e-05" d="-4.1482906086864403e-07" /> - <width sOffset="58.353453795214364" a="3.8784606348365362" b="0.00029582108794698058" c="-2.5204407180311479e-05" d="-5.8849065378019192e-07" /> - <width sOffset="60.678371504550341" a="3.8790047631822691" b="0.00016908193891103935" c="-9.2778534550349689e-05" d="2.1404549211562881e-06" /> - <width sOffset="68.357954591621365" a="3.8758009711785393" b="-0.00087721260552411451" c="-5.9066913601070711e-05" d="2.6384135275633168e-06" /> - <width sOffset="78.362455388028252" a="3.8637548650681133" b="-0.0012668458575139303" c="-6.2972589870494043e-06" d="2.8891864272834128e-06" /> - <width sOffset="88.366956184435253" a="3.8533435010731245" b="-0.00052531140045744876" c="5.5613600736449176e-05" d="2.5266400788067133e-06" /> - <width sOffset="92.434512981714875" a="3.8522969324802161" b="5.2521477953382419e-05" c="-6.4316625323371113e-07" d="6.9747229116697228e-06" /> - <width sOffset="96.87809187542257" a="3.8531295799163576" b="0.00045996150089637087" c="0.00033449354979110218" d="8.9866948583883609e-06" /> - <width sOffset="97.175022124849306" a="3.853295883152275" b="0.00066098101246420604" c="0.00033816758412726631" d="2.9468982863258396e-07" /> - <width sOffset="98.37145698084214" a="3.8545712807141985" b="0.0014714374889867165" c="0.00028714732320198066" d="-1.9754113998277206e-05" /> - <width sOffset="108.37595777724914" a="3.8782520654358859" b="0.0012853987816183767" c="-0.00033395795565444275" d="-1.4536184681763212e-05" /> - <width sOffset="111.12673850127908" a="3.8789583596107109" b="-0.00088186840338342091" c="-7.6177626012413259e-06" d="1.7976977854782186e-07" /> - <width sOffset="118.38045857365614" a="3.8722293252484494" b="-0.0009640060930279934" c="-2.0493378582501674e-05" d="-8.8498291011438465e-08" /> - <width sOffset="127.59070706793364" a="3.8615430202697962" b="-0.0013640258904083769" c="-0.0013678379512106849" d="0.0002164824372690255" /> - <width sOffset="128.9151840889308" a="3.8578398701877008" b="-0.0038480797110063774" c="-0.00051255204911048293" d="0.00021861884567421153" /> - <width sOffset="131.98361789469368" a="3.8475224063942308" b="-0.00081846689603001029" c="0.00052663466487542436" d="-2.0797986632839133e-05" /> - <width sOffset="138.38946016647003" a="3.8584227808282701" b="0.0033682856853430431" c="9.7542466520787938e-05" d="-2.1235953098596813e-05" /> - <width sOffset="145.16363676777632" a="3.8791148350305709" b="0.0017663056636564416" c="-4.570785843815559e-05" d="7.6338734642421948e-06" /> - <width sOffset="146.84471474236943" a="3.8819912278527937" b="0.0016773492250389233" c="-2.014914267240106e-06" d="2.6177961136642758e-06" /> - <width sOffset="148.39396096287692" a="3.8845947528060529" b="0.0016899554472237647" c="-1.5093223240165529e-05" d="-5.9372137776528015e-07" /> - <width sOffset="158.39846175928392" a="3.8993967087590877" b="0.0012096783368169145" c="-4.2744974847661439e-05" d="-4.9335365524520876e-07" /> - <width sOffset="165.0756973896282" a="3.9054213358199861" b="0.00057285257650720742" c="-2.2629259400276259e-05" d="1.7024361476507563e-06" /> - <width sOffset="166.05001513178718" a="3.905959569013465" b="0.00053360474134682184" c="-6.0877920959449015e-05" d="3.694778956515913e-06" /> - <width sOffset="168.40296255569092" a="3.9069262017595818" b="0.00030848654353898022" c="-5.1612080824278117e-05" d="-2.2899509758379115e-07" /> - <width sOffset="178.40746335209781" a="3.9046172961579368" b="-0.00079298004669236632" c="-7.3010399938533077e-05" d="3.9095297688247196e-06" /> - <width sOffset="180.26857033161218" a="3.9029137901400217" b="-0.0010241158366558981" c="-0.0024269795103163301" d="0.00037539601800676948" /> - <width sOffset="184.51881003547373" a="3.8835411760971605" b="-0.001310538807800162" c="0.00065804953849920775" d="-2.7220912016081027e-05" /> - <width sOffset="188.41196414850481" a="3.8868066434045021" b="0.0025755043045714468" c="0.00034066481730254521" d="-2.7454126247173931e-05" /> - <width sOffset="198.41646494491181" a="3.9191792195978188" b="0.0011482137080472813" c="-0.00047443995931552719" d="-2.9223784947173366e-05" /> - <width sOffset="199.8815625060206" a="3.9197511698176211" b="-0.00043017546211518345" c="-0.00061399725270844512" d="-2.9217534662515116e-05" /> - <width sOffset="200.87848627584231" a="3.9186831434812164" b="-0.0017415065280682283" c="-9.2613614084939206e-05" d="2.0380055758500024e-06" /> - <width sOffset="208.4209657413187" a="3.9011536464514083" b="-0.002790758816850421" c="-4.2307585018706093e-05" d="2.1489042011489086e-06" /> - <width sOffset="218.4254665377257" a="3.8711507369715714" b="-0.0029920396551225718" c="3.8243487663898283e-05" d="-2.3710737733595143e-06" /> - <width sOffset="218.9093282902611" a="3.8697116884678682" b="-0.0029566958961863474" c="4.0298506379712629e-05" d="-3.7517362934536707e-06" /> - <width sOffset="220.46875179099652" a="3.8651847180105028" b="-0.002858381455976838" c="0.00031985756120172425" d="-1.0389438514636905e-05" /> - <width sOffset="228.4299673341327" a="3.8574590033312006" b="0.00025905097946307253" c="8.9283123776593364e-05" d="-1.1329587857962102e-05" /> - <width sOffset="234.56979044249624" a="3.8597929787767691" b="7.4127191657931933e-05" c="0.00031941768062207124" d="-2.0929523372282788e-05" /> - <width sOffset="234.68363323729432" a="3.8598055264547821" b="0.00014604024330872826" c="0.00021361099944129774" d="-1.2721955485904902e-05" /> - <width sOffset="238.43446813053959" a="3.862687209127035" b="0.0012115329170335797" c="9.6727989634600787e-05" d="-9.3689161686415169e-06" /> - <width sOffset="248.43896892694659" a="3.8751079270046351" b="0.00033375794069279499" c="-0.00016729070023768227" d="-1.121400364301262e-05" /> - <width sOffset="250.41527894868318" a="3.8750275702060275" b="-0.000458877644242552" c="-0.0010354924088066221" d="0.00013548250330310175" /> - <width sOffset="251.66611428563237" a="3.8730986148791153" b="-0.002413415316995968" c="-0.00012228269111614785" d="0.00015426418792550828" /> - <width sOffset="254.86940849412269" a="3.8691835376362054" b="0.001551927710944825" c="-9.8479584729455288e-05" d="2.4634924630060602e-06" /> - <width sOffset="258.44346972335347" a="3.8735847227163682" b="0.00094238889978969008" c="-6.3677814636050247e-05" d="2.5498025736014959e-06" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9044555986993497" b="0.0010139378611400641" c="-0.00024851095881067882" d="1.6705087846812964e-05" /> - <width sOffset="5.9892584093188361" a="3.9052028984190938" b="-0.00016515938052032012" c="-0.00019689415755782893" d="1.9121017917218157e-05" /> - <width sOffset="8.3309498131795863" a="3.9039820007523454" b="-0.00077273871899340412" c="-8.651495734963909e-05" d="1.3806907802011419e-05" /> - <width sOffset="14.489651695140083" a="3.8991667092173357" b="-0.00026730654234838206" c="9.0173146311579096e-05" d="-3.2380212694586397e-06" /> - <width sOffset="18.335450609586474" a="3.8992881994014845" b="0.00028259638582399903" c="3.7534371767059971e-05" d="-4.074759045750034e-06" /> - <width sOffset="23.68619852231177" a="3.9012506982710122" b="0.00033428310259224926" c="-3.6008451893046649e-05" d="-2.5613460275555271e-06" /> - <width sOffset="28.339951405993475" a="3.9017683655912663" b="-0.00016728217964210191" c="-7.2900748063713415e-05" d="-2.6589996187059625e-06" /> - <width sOffset="28.599247313683236" a="3.9017200422150244" b="-0.00020562423939008713" c="-6.224640092441594e-05" d="3.4552331165498729e-06" /> - <width sOffset="38.344452202400475" a="3.897002504761137" b="-0.0004344118091086193" c="1.1418803688326904e-05" d="8.9603278378385267e-06" /> - <width sOffset="40.633518951131691" a="3.8961754126595483" b="-0.00024128330953015835" c="8.5591535532414476e-05" d="-1.4430938830004815e-06" /> - <width sOffset="48.348952998807363" a="3.8987461039104909" b="0.00082175524267606281" c="4.407563360256561e-05" d="-1.6587658179113576e-06" /> - <width sOffset="58.353453795214364" a="3.9097178800961765" b="0.0012055868734209413" c="-1.4631646945393649e-05" d="-1.2568284879351437e-06" /> - <width sOffset="60.678371504550341" a="3.9124258885290897" b="0.0011171717354921513" c="4.0071834968838566e-05" d="-3.9857740628737782e-06" /> - <width sOffset="66.33213725701853" a="3.9193026936693882" b="0.0011880686647656666" c="-0.0010043839386346589" d="6.583893821237811e-05" /> - <width sOffset="68.357954591621365" a="3.9181349498620497" b="-0.0020707317810541889" c="-0.00065463227385301247" d="5.6137305202911278e-05" /> - <width sOffset="74.939933516762949" a="3.8921525735353479" b="-0.0033922672256096369" c="-0.0013430228401859123" d="0.00024487251629977521" /> - <width sOffset="78.362455388028252" a="3.8746277561242257" b="-0.0039802600844368137" c="0.001057648366060149" d="0.0002654782126614441" /> - <width sOffset="80.195318295098559" a="3.8725201622455758" b="0.0025723205534097949" c="0.00045391387031402697" d="-4.4265373716798261e-05" /> - <width sOffset="87.164747110307189" a="3.8975107338239936" b="0.002449063607547295" c="-0.005318985880884813" d="0.0013909372342732396" /> - <width sOffset="88.366956184435253" a="3.8951842925934859" b="-0.0043090100384556183" c="-0.000304508890162485" d="0.0013911098847451051" /> - <width sOffset="89.134929380865287" a="3.8923255799676193" b="-0.0023153611940816424" c="4.7098884726291321e-05" d="-1.0346038480415057e-06" /> - <width sOffset="92.434512981714875" a="3.8851614630798843" b="-0.0020383397570114684" c="0.00012394612212542853" d="-5.4826866809179576e-06" /> - <width sOffset="97.175022124849306" a="3.8776999902997495" b="-0.0012328321341801996" c="5.0305173406357267e-05" d="3.209318349067682e-06" /> - <width sOffset="98.37145698084214" a="3.8763024930442169" b="-0.0010986764108489107" c="4.4202939851167982e-05" d="1.0225844386440369e-06" /> - <width sOffset="108.37595777724914" a="3.870759023659573" b="9.2831823439424753e-05" c="5.7202590131720799e-05" d="2.3239707522573548e-06" /> - <width sOffset="113.17197805083856" a="3.8727763839316092" b="0.0008018879916937364" c="0.00047235409342695104" d="-2.3136063766862298e-05" /> - <width sOffset="118.38045857365614" a="3.8864980931464994" b="0.0038394580735135282" c="9.0059901115551128e-05" d="-2.3946163343305042e-05" /> - <width sOffset="126.37791869500711" a="3.9107154185380715" b="0.00068521456033117866" c="-0.00023727654102678671" d="2.2767626322922746e-05" /> - <width sOffset="128.38495937006303" a="3.9113189431412665" b="7.9057174049574882e-06" c="-0.00015087215773944312" d="1.0204526903448299e-05" /> - <width sOffset="128.9151840889308" a="3.9112822401658862" b="-0.00014347992885632677" c="-0.00012974794177773405" d="8.0681184975290495e-06" /> - <width sOffset="137.59014706492212" a="3.9055405215788301" b="-0.00057309875884040953" c="-0.00024825123504768239" d="2.9437192554143497e-05" /> - <width sOffset="138.38946016647003" a="3.9049388612150855" b="-0.0009135372945040395" c="-0.00017907617407721867" d="2.944002017876293e-05" /> - <width sOffset="144.57696949421052" a="3.8994044210909986" b="0.00025174922304175163" c="2.2720173158916092e-05" d="-5.8834476865611662e-07" /> - <width sOffset="146.84471474236943" a="3.9000853050834534" b="0.00034571936613345757" c="1.3523990451847734e-05" d="4.4277325819213096e-06" /> - <width sOffset="148.39396096287692" a="3.9006698335768948" b="0.00041950519938690009" c="8.6498507638645405e-06" d="4.0602029814742963e-07" /> - <width sOffset="158.39846175928392" a="3.9061391063235482" b="0.00071449583609906259" c="1.2089176221772306e-05" d="3.4870004669024175e-07" /> - <width sOffset="165.0756973896282" a="3.9115527757485031" b="0.00092258126485443885" c="-1.0924197913329164e-05" d="-1.8470897567221449e-06" /> - <width sOffset="168.40296255569092" a="3.9144334720107654" b="0.00078854016487643966" c="-4.1182664116398423e-05" d="-7.9481784740363136e-07" /> - <width sOffset="171.97207500046011" a="3.9166871158542191" b="0.00046419453366198875" c="-0.00069911137917326807" d="4.7810242263862039e-05" /> - <width sOffset="178.40746335209781" a="3.9034634569071027" b="-0.0025938397800905986" c="0.00021547194142359358" d="4.8269827730917372e-05" /> - <width sOffset="182.22104402060609" a="3.8993824952025653" b="0.0011556213587932203" c="0.00033422108383129065" d="-1.9332715482406053e-05" /> - <width sOffset="188.41196414850481" a="3.914759396722296" b="0.0030709699331998366" c="-2.4125362468662619e-05" d="-1.9722737681396974e-05" /> - <width sOffset="192.55868653515381" a="3.9256727001946654" b="0.0018534720105044401" c="-0.00021037382425455225" d="4.0432473506410868e-06" /> - <width sOffset="198.41646494491181" a="3.9301239498998934" b="-0.00019495975340687484" c="-0.00013366944321461217" d="3.7807767032289422e-06" /> - <width sOffset="199.8815625060206" a="3.9295632818960913" b="-0.00056229086910522183" c="-0.00010594161779725367" d="3.7745264181231966e-06" /> - <width sOffset="208.4209657413187" a="3.9193866591555584" b="-0.0015459159181770736" c="-5.6693910105673652e-06" d="3.8008123152403329e-06" /> - <width sOffset="218.9093282902611" a="3.9069341688391566" b="-0.00041050755871714683" c="0.00010842666740381961" d="5.1814697467575698e-06" /> - <width sOffset="218.95935857784093" a="3.9069139030719682" b="-0.00039961941588171138" c="-2.9219551428786784e-06" d="8.6435550507495066e-07" /> - <width sOffset="228.4299673341327" a="3.903601406470433" b="-0.00022238636634593599" c="2.3322642658544428e-05" d="7.5253882767665885e-07" /> - <width sOffset="228.93528653667613" a="3.9034950828491342" b="-0.00019823913124505585" c="-1.5868373196751854e-05" d="3.8784178614809024e-06" /> - <width sOffset="234.68363323729432" a="3.9025678769351941" b="3.7964303630051363e-06" c="0.00014967375324235596" d="-4.3291500421917655e-06" /> - <width sOffset="238.43446813053959" a="3.9044593936527274" b="0.00094388215292564963" c="0.0001236953432208739" d="-5.2987706884142198e-06" /> - <width sOffset="242.6523777837001" a="3.9102436188581726" b="0.0017045462152481825" c="8.5115208298907596e-05" d="-1.3438003752060063e-05" /> - <width sOffset="248.43896892694659" a="3.9203534095524826" b="0.0013397000009342823" c="-0.00013016829530824924" d="-1.4739063907882244e-05" /> - <width sOffset="250.41527894868318" a="3.9223788886643831" b="0.00065249062286855614" c="0.00058415949077509624" d="-0.00016143557085442227" /> - <width sOffset="253.14158440203596" a="3.925228365798862" b="0.00023795846865978148" c="-0.0010890447887227494" d="-0.00011325879597245812" /> - <width sOffset="254.86940849412269" a="3.9218040958392777" b="-0.0045397574834943706" c="-0.00021746098479739478" d="3.8541899489971143e-05" /> - <width sOffset="258.44346972335347" a="3.9045605175510629" b="-0.0046172025424426394" c="0.00020950043740193574" d="3.869364016172346e-05" /> - <width sOffset="263.25997833174904" a="3.8915053825406209" b="9.3851632770158123e-05" c="0.0019972097434666058" d="-0.00029200599735125716" /> - <width sOffset="266.50416046320618" a="3.9028596407748548" b="0.0038326338895263942" c="-0.0031216468199885884" d="0.026501607082915248" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.7521011281246675" b="-0.0041173887908054901" c="-0.00023523867003752847" d="-8.234884429191697e-07" /> - <width sOffset="5.9892584093188361" a="3.7188258055806234" b="-0.0070238177523971115" c="-1.4984629407412478e-06" d="-3.2394185132094369e-06" /> - <width sOffset="8.3309498131795863" a="3.7023283786494479" b="-0.0070841258632859689" c="-1.9041742198610279e-05" d="1.3179792674499712e-06" /> - <width sOffset="14.489651695140083" a="3.658284989734665" b="-0.0071686993759717092" c="8.3719165517858292e-05" d="1.836290833890196e-05" /> - <width sOffset="18.335450609586474" a="3.632998316625923" b="-0.005709993655253251" c="0.0002776603924425562" d="2.2950967283079008e-05" /> - <width sOffset="22.905883682671629" a="3.6148923361915912" b="-0.0017336786514827768" c="0.00044167567433663388" d="-1.9264511416041216e-05" /> - <width sOffset="28.339951405993475" a="3.6154224476708854" b="0.0013599218096275057" c="8.0605303936731067e-05" d="-2.04369508596812e-05" /> - <width sOffset="28.599247313683236" a="3.6157801329879975" b="0.0013976008641247777" c="5.1984900501885877e-05" d="-2.6551183584971041e-05" /> - <width sOffset="34.755005219465374" a="3.6201599171302061" b="-0.00098072651858194379" c="-0.00067674497423095541" d="3.9810464652439124e-05" /> - <width sOffset="38.344452202400475" a="3.6097614918922716" b="-0.0043002373672943288" c="-0.0002621827683491551" d="2.9272838188624381e-05" /> - <width sOffset="40.633518951131691" a="3.5988952768622915" b="-0.0050403912946771229" c="-7.3800693043569193e-05" d="3.9676259909456354e-05" /> - <width sOffset="46.500102868069234" a="3.5747964115166071" b="-0.0018097166903791278" c="0.0013167334522463734" d="-5.7871116859562299e-05" /> - <width sOffset="48.348952998807363" a="3.5755857011022942" b="0.0024657156592001652" c="0.00096147024223681944" d="-7.0461499435379678e-05" /> - <width sOffset="58.353453795214364" a="3.6259308645936912" b="0.00054629318308529714" c="-0.0011451665218280079" d="-7.0689775170661425e-05" /> - <width sOffset="59.127062631149215" a="3.6256354051907969" b="-0.0013524459597909022" c="5.5121116626976038e-05" d="2.8550509614689948e-06" /> - <width sOffset="66.33213725701853" a="3.6198203360552501" b="-0.00011349880094982411" c="0.0010936855572631738" d="-6.6969661313601199e-05" /> - <width sOffset="68.357954591621365" a="3.6235220496028231" b="0.0034931979336262913" c="0.0007045882037691266" d="-5.6549148286407415e-05" /> - <width sOffset="74.939933516762949" a="3.6609138452752239" b="0.0054188249840279642" c="0.0013848465426141926" d="-0.00024528435938336499" /> - <width sOffset="78.362455388028252" a="3.6858479985095114" b="0.0062786303508813235" c="-0.0010717790097863114" d="-0.00026538718946062754" /> - <width sOffset="80.195318295098559" a="3.6921212801600536" b="-0.00032483200612411792" c="-0.00046754401489478844" d="4.4356396917613211e-05" /> - <width sOffset="87.164747110307189" a="3.6821631775438952" b="-0.00037829991218281503" c="0.0053072588754586574" d="-0.0013908462110726147" /> - <width sOffset="88.366956184435253" a="3.6869623187186691" b="0.006351971778466004" c="0.00024559921406398306" d="-0.0013916686151846244" /> - <width sOffset="89.134929380865287" a="3.6913549742167713" b="0.0042668522407237697" c="-0.00010729583082951259" d="4.7587340852264639e-07" /> - <width sOffset="98.37145698084214" a="3.7219870842797902" b="0.0024065656305480381" c="-0.00010724970796650899" d="3.5271387941626876e-07" /> - <width sOffset="108.37595777724914" a="3.7356821352377856" b="0.00036651548787825763" c="-0.00010209064814157242" d="-8.4460291938382264e-07" /> - <width sOffset="113.17197805083856" a="3.7349985070230924" b="-0.00067102433739275912" c="-0.00049595691708124144" d="2.4615431599734427e-05" /> - <width sOffset="118.38045857365614" a="3.7215271251743443" b="-0.0038340660466415076" c="-0.00011716545031184233" d="2.5552950506404283e-05" /> - <width sOffset="126.37791869500711" a="3.6964411602118479" b="-0.0008050663547089791" c="0.00024872164061083698" d="-2.1160839159747299e-05" /> - <width sOffset="128.38495937006303" a="3.6956561820031122" b="-6.2398511686064797e-05" c="0.00013873970860354195" d="-8.2237357232195389e-06" /> - <width sOffset="137.59014706492212" a="3.7004234046375637" b="0.00040132501118892838" c="0.00024011179696483808" d="-2.9592809776563967e-05" /> - <width sOffset="138.38946016647003" a="3.7008824842246875" b="0.00072845335566335131" c="0.00013429347685109497" d="-2.9860023359197469e-05" /> - <width sOffset="144.57696949421052" a="3.703457703267695" b="-0.0010392596831077807" c="-7.529919117513788e-05" d="1.683415882347767e-07" /> - <width sOffset="148.39396096287692" a="3.6984031537958857" b="-0.0016067345038700571" c="-7.5841210417305766e-05" d="2.5203871871285896e-06" /> - <width sOffset="158.39846175928392" a="3.6772614195212165" b="-0.002367444469627859" c="-8.3011214392204289e-06" d="2.442974237147907e-06" /> - <width sOffset="168.40296255569092" a="3.6551917342150464" b="-0.0017999894823400747" c="6.16839618898993e-05" d="1.5291211995600929e-06" /> - <width sOffset="171.97207500046011" a="3.649622656482522" b="-0.0013012390671359472" c="0.00072747511064430719" d="-4.7075938911737264e-05" /> - <width sOffset="175.21449418004431" a="3.651446898439084" b="0.0019315515529021881" c="-0.000347348603218329" d="-1.6721459736201139e-05" /> - <width sOffset="178.40746335209781" a="3.6535287207798262" b="-0.00079802367244789871" c="-0.00051482950388670446" d="-1.9837394321548128e-05" /> - <width sOffset="182.22104402060609" a="3.64189779311398" b="-0.005590220693501435" c="-0.00030829051106855999" d="4.7765148891780077e-05" /> - <width sOffset="188.41196414850481" a="3.6068070123621485" b="-0.00391526946354313" c="0.00058041337095629964" d="4.6535381791874158e-05" /> - <width sOffset="190.4163250330987" a="3.6016659119746324" b="-0.0010276912866734047" c="0.00038450391521221441" d="8.1070660900858293e-06" /> - <width sOffset="192.55868653515381" a="3.6013087036236588" b="0.00073142879915251468" c="0.00037750302224765018" d="-1.5658918941939871e-05" /> - <width sOffset="198.41646494491181" a="3.6153992643303394" b="0.0035421467708718866" c="0.0001102746161223517" d="-1.7022795117649606e-05" /> - <width sOffset="202.46585100410289" a="3.63042070291108" b="0.0035978405063131491" c="-0.00099616391150372254" d="5.1413257344286171e-05" /> - <width sOffset="208.4209657413187" a="3.6273767971761819" b="-0.002796834848218634" c="-6.9517897522111338e-05" d="5.1316186149945394e-05" /> - <width sOffset="213.56243861521921" a="3.6181338221651704" b="0.00055790700909506136" c="0.00027743530797084542" d="-1.5651972575452177e-05" /> - <width sOffset="218.4254665377257" a="3.6256079484919383" b="0.0021457959042478288" c="6.2789367298139167e-05" d="-1.5157109957826086e-05" /> - <width sOffset="218.95935857784093" a="3.6267691627471543" b="0.0021998802108867069" c="0.00015063890056695866" d="-1.0839990630387246e-05" /> - <width sOffset="228.4299673341327" a="3.6519065942126221" b="0.0021363690829482953" c="-0.00010783788819224559" d="-2.0173768043229931e-05" /> - <width sOffset="228.93528653667613" a="3.6529560033376796" b="0.0020119300081206594" c="-9.8088632515887621e-05" d="-2.3299647076990922e-05" /> - <width sOffset="231.34075949361886" a="3.6569037734344412" b="0.0011355746484293123" c="-0.00027715478193754943" d="4.0905049138048901e-06" /> - <width sOffset="238.43446813053959" a="3.6524727341438172" b="-0.0021790246532006566" c="-0.00017891449099039541" d="6.9282169687624624e-06" /> - <width sOffset="242.6523777837001" a="3.6406186721218701" b="-0.0033185401962307895" c="-0.00011971578448284641" d="1.5067450032416219e-05" /> - <width sOffset="248.43896892694659" a="3.6203264950305369" b="-0.0031904485053971072" c="0.000143334055980977" d="1.5563885809497716e-05" /> - <width sOffset="253.14158440203596" a="3.6101114051960708" b="-0.00080979163772225806" c="0.00071574321470299174" d="-3.2612889072372498e-05" /> - <width sOffset="258.44346972335347" a="3.6210770236107077" b="0.0040295414924763238" c="0.00024329589658893293" d="-6.113409022987098e-05" /> - <width sOffset="259.61556881973604" a="3.6260358483218043" b="0.0043479142661526672" c="0.00018252802131951045" d="-6.4654654038876045e-05" /> - <width sOffset="263.25997833174904" a="3.641176168864777" b="0.0031021528113635262" c="-0.0017529606404832151" d="0.0002660449834741295" /> - <width sOffset="266.50416046320618" a="3.6418745685154641" b="0.0001284506787050492" c="0.0031132291509256465" d="-0.026527568096451171" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link> - <successor id="-6" /> - </link> - <width sOffset="0" a="0" b="0" c="0.0027954323710970338" d="-4.2256579288153819e-05" /> - <width sOffset="8.3309498131795863" a="0.16958315265333113" b="0.037778794811346557" c="0.0017389989663779224" d="-4.2239638852508262e-05" /> - <width sOffset="18.335450609586474" a="0.67930090677125854" b="0.059891126955898197" c="0.0004817745043922423" d="-4.5081663941206753e-05" /> - <width sOffset="22.905883682671629" a="0.9587890162518935" b="0.061469849719454364" c="1.4318618688240539e-05" d="-2.866185242115134e-06" /> - <width sOffset="27.673593302659128" a="1.251874264382371" b="0.06141092950827079" c="0.0035617818904502647" d="-8.2511451309049848e-05" /> - <width sOffset="28.339951405993475" a="1.2943530701193113" b="0.066047860506342829" c="0.0034438517591729358" d="-8.1339011868536903e-05" /> - <width sOffset="34.755005219465374" a="1.838304839685982" b="0.10019083679807828" c="0.0021168712443084916" d="-0.00014770066010591775" /> - <width sOffset="38.344452202400475" a="2.2183778823998344" b="0.10967864764075065" c="0.00054260102278762138" d="-0.00014285187601282309" /> - <width sOffset="46.500102868069234" a="3.0714766499379493" b="0.090023954058391864" c="-0.0036447907907848943" d="-4.5304499243039865e-05" /> - <width sOffset="48.348952998807363" a="3.2251723381348052" b="0.076082024318787467" c="-0.0038772524813422485" d="-3.1892622329354688e-05" /> - <width sOffset="54.845862233672278" a="3.5470661546920681" b="0.021663162952282017" c="-0.00053462224256648058" d="7.8008345637440113e-05" /> - <width sOffset="58.353453795214364" a="3.6198405372518696" b="0.020791946516756785" c="0.00024514145537787684" d="7.373528315408671e-05" /> - <width sOffset="59.127062631149215" a="3.6361062188762787" b="0.021303618912942728" c="-0.00094807808742946545" d="1.9045701763694808e-07" /> - <width sOffset="68.357954591621365" a="3.7521222958920601" b="0.0038490922880285144" c="-0.0010565502530780718" d="4.3203434607073562e-05" /> - <width sOffset="70.324422907363214" a="3.7559342696907372" b="0.00019494983328004477" c="-0.00022036887998725288" d="5.0675891827491527e-06" /> - <width sOffset="78.362455388028252" a="3.7458950435007017" b="-0.0023654643000156862" c="-0.00013375114860286579" d="3.9468739489612725e-06" /> - <width sOffset="88.366956184435253" a="3.7127948022945567" b="-0.003856562976340106" c="-3.8180700635369441e-05" d="3.5246728061958426e-06" /> - <width sOffset="98.37145698084214" a="3.6739197413171123" b="-0.0035621667900287268" c="5.413677176614166e-05" d="3.3182087052854755e-06" /> - <width sOffset="108.37595777724914" a="3.6470232833710305" b="-0.0014825851493814228" c="0.00010953526237612598" d="1.2327477368184975e-05" /> - <width sOffset="111.72195760877526" a="3.6437506771818384" b="-0.00033553044532827784" c="6.2955116039532635e-06" d="1.688409230444881e-06" /> - <width sOffset="118.38045857365614" a="3.6422940962725816" b="-2.7123018532551895e-05" c="1.7681226654483982e-05" d="1.9315894271147426e-07" /> - <width sOffset="128.38495937006303" a="3.643985878498551" b="0.00038466053045526873" c="6.9881583048977836e-06" d="3.7976311177134512e-07" /> - <width sOffset="138.38946016647003" a="3.6489139362129803" b="0.0006385181119077021" c="1.0647198556008808e-06" d="2.4871622588500685e-07" /> - <width sOffset="148.39396096287692" a="3.6556576112243357" b="0.00073450414133948458" c="-3.7409037818565622e-06" d="4.3332541718922031e-08" /> - <width sOffset="158.39846175928392" a="3.6626749223737818" b="0.0006726638586160114" c="-1.0507355914638261e-05" d="-3.1366541000399053e-08" /> - <width sOffset="168.40296255569092" a="3.6683214979369216" b="0.00045300372271243894" c="-2.5133904250180984e-05" d="1.6280960856045882e-06" /> - <width sOffset="172.89156428999354" a="3.6699957004946775" b="0.00032577797033326206" c="-0.00015561518816515507" d="1.7505758475427605e-06" /> - <width sOffset="175.21449418004431" a="3.6699347024728972" b="-0.00036885003451881358" c="0.00047348813890728828" d="-2.8603903328050769e-05" /> - <width sOffset="178.40746335209781" a="3.672653083748302" b="0.0017799611702407673" c="0.00019978009424449926" d="-2.719003076731762e-05" /> - <width sOffset="188.41196414850481" a="3.6832299432241644" b="-0.0023869920959496164" c="-0.00061806110809754951" d="-2.6044194857793177e-05" /> - <width sOffset="190.4163250330987" a="3.6757527928347953" b="-0.0051785218475701861" c="-0.00029893645164458797" d="1.2384120843982745e-05" /> - <width sOffset="198.41646494491181" a="3.6215322939643029" b="-0.0075837543517246553" c="-5.2240797487183537e-06" d="1.3446964825509625e-05" /> - <width sOffset="202.46585100410289" a="3.5916299602013622" b="-0.0069645720583461114" c="0.0010577746958723075" d="-5.4989087636415287e-05" /> - <width sOffset="208.4209657413187" a="3.576054346153188" b="-0.00021653133300628732" c="7.3890546230070085e-05" d="-5.4874068819278445e-05" /> - <width sOffset="213.56243861521921" a="3.5694362061885556" b="-0.0038084646261872055" c="-0.00032794093096158287" d="1.2094089906117486e-05" /> - <width sOffset="218.4254665377257" a="3.5445509402214164" b="-0.0061399955658589453" c="-0.00015044162146709043" d="1.1235412984585293e-05" /> - <width sOffset="228.4299673341327" a="3.4793162326618843" b="-0.0057765235328674364" c="0.00016912558589266761" d="1.9793233090901935e-05" /> - <width sOffset="231.34075949361886" a="3.4644230721315994" b="-0.0042888376431475857" c="0.00035289368553959754" d="-7.596918899928023e-06" /> - <width sOffset="238.43446813053959" a="3.449045366358126" b="-0.00042903455447739196" c="0.00019536252319462362" d="-8.5020697442366168e-06" /> - <width sOffset="248.43896892694659" a="3.4557933770946372" b="0.00092705707824761868" c="-4.4174274533879409e-05" d="-9.7395748151812791e-06" /> - <width sOffset="254.57659792013351" a="3.4575673803025015" b="-0.00071587719506394044" c="-0.00092814892185545748" d="4.2096449011792372e-05" /> - <width sOffset="258.44346972335347" a="3.4433548684665274" b="-0.0060055765762213409" c="-0.00046397415116576521" d="7.4181157756010769e-05" /> - <width sOffset="259.61556881973604" a="3.435797772463256" b="-0.0067874900936786987" c="-0.00035732890772311376" d="7.7701721565033276e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="266.62678984839931" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link> - <predecessor id="-5" /> - <successor id="-7" /> - </link> - <width sOffset="0" a="2.4947212834436669" b="0.00099559156422369564" c="-9.0379577300478929e-05" d="2.2118762664045565e-06" /> - <width sOffset="8.3309498131795863" a="2.4980216600680176" b="-4.9759890413364483e-05" c="-4.123657932994019e-05" d="1.9656257784113848e-06" /> - <width sOffset="18.335450609586474" a="2.4953647475250182" b="-0.00028464400604463064" c="-5.6639153922552043e-06" d="5.9896632319324238e-06" /> - <width sOffset="23.139430529222864" a="2.4945306682442947" b="7.5629674842210559e-05" c="-0.0009502331831645304" d="0.00018895430737227571" /> - <width sOffset="27.673593302659128" a="2.4929516906307168" b="0.0031125320664635997" c="-0.0019684431126821712" d="0.00026859957343853511" /> - <width sOffset="28.665720719610135" a="2.494364453048254" b="-1.9946806124881977e-07" c="-3.0071912113361406e-05" d="1.6773849694546342e-06" /> - <width sOffset="38.344452202400475" a="2.4930663065005731" b="-0.00011091397505863521" c="9.7281641149545082e-06" d="1.426281834076716e-06" /> - <width sOffset="48.012196900073604" a="2.4941920503426154" b="0.00047710836422366898" c="-0.00065052466795953185" d="7.985696869581798e-05" /> - <width sOffset="48.348952998807363" a="2.4942819966735215" b="6.6140525149721574e-05" c="-0.00054658185287896751" d="7.9247795777616243e-05" /> - <width sOffset="54.845862233672278" a="2.4933729737826464" b="0.0029990630192780199" c="-0.0029662253005654066" d="-3.0653172197170605e-05" /> - <width sOffset="55.343607172792872" a="2.4941270797955255" b="2.3432783500518251e-05" c="-2.0311520157901631e-05" d="3.6378094290963487e-06" /> - <width sOffset="58.353453795214364" a="2.4941127944059254" b="3.0337964494753233e-08" c="-3.1079803911167282e-06" d="2.0693822742144691e-07" /> - <width sOffset="68.357954591621365" a="2.4940092378215564" b="-1.9882619138773816e-08" c="-2.9485173378445166e-05" d="9.9976960581734062e-06" /> - <width sOffset="70.324422907363214" a="2.4939712053905989" b="0" c="-9.5580022201629698e-06" d="7.9165163626151113e-07" /> - <width sOffset="78.362455388028252" a="2.4937647971816119" b="-2.0930830464714958e-07" c="-9.7653757248996644e-06" d="6.5072506040750695e-07" /> - <width sOffset="88.366956184435253" a="2.493436890437069" b="-2.1144221006626912e-07" c="-5.5819092628664899e-06" d="3.7290671054694045e-07" /> - <width sOffset="98.37145698084214" a="2.4932494920135611" b="7.2864914990589114e-08" c="-3.5128890615008208e-06" d="2.3598791242638382e-07" /> - <width sOffset="108.37595777724914" a="2.4931349224933061" b="6.4357817016347935e-07" c="-0.00010901741586622586" d="7.2130508790224296e-05" /> - <width sOffset="109.67233582306767" a="2.4931096924367893" b="8.1654750890140012e-05" c="-0.00011663171989020648" d="-1.1713638076082823e-05" /> - <width sOffset="111.72195760877526" a="2.4926862312199418" b="-0.00054407228190136384" c="3.8325659101379347e-05" d="-1.0745699383822548e-06" /> - <width sOffset="118.38045857365614" a="2.4904454952665294" b="-0.00017661462771995909" c="1.4266535326994498e-05" d="4.3473272496521941e-08" /> - <width sOffset="128.38495937006303" a="2.4901500241182024" b="0.00012189822461606138" c="4.3032207916515304e-06" d="1.7079167891191335e-07" /> - <width sOffset="138.38946016647003" a="2.4919712869204869" b="0.00025928501225579631" c="-2.4002996732197522e-06" d="8.1029472159987499e-08" /> - <width sOffset="148.39396096287692" a="2.4944061968815117" b="0.00023558814067404165" c="-8.3418199684389527e-06" d="-5.9399605332301043e-08" /> - <width sOffset="158.39846175928392" a="2.4958687257149172" b="5.0840725696330523e-05" c="-1.5621957388703802e-05" d="-1.1059476859615277e-07" /> - <width sOffset="168.40296255569092" a="2.4947030153501473" b="-0.00029494734774732903" c="-1.6438130829695772e-05" d="-1.7088175179868044e-06" /> - <width sOffset="172.89156428999354" a="2.4928933904548014" b="-0.00054580122908650546" c="0.00011295617400099614" d="-1.8312972799248877e-06" /> - <width sOffset="175.63775059467753" a="2.4922084549802612" b="3.3163766274654522e-05" c="-2.6517989463286658e-05" d="5.3333954552531533e-06" /> - <width sOffset="178.40746335209781" a="2.4922102017711385" b="9.0117086437337124e-06" c="7.9330234206646658e-07" d="2.7215824748755679e-08" /> - <width sOffset="188.41196414850481" a="2.4924070136667211" b="3.305699512137425e-05" c="1.7280238072511951e-06" d="-7.8223110553526741e-08" /> - <width sOffset="198.41646494491181" a="2.4928323615881585" b="4.4144964337269194e-05" c="1.4378039148782635e-06" d="-1.020374625718656e-07" /> - <width sOffset="208.4209657413187" a="2.4933157444653506" b="4.2275185196884342e-05" c="6.6102941906414855e-07" d="-9.3432210124153517e-08" /> - <width sOffset="218.4254665377257" a="2.4937112906250629" b="2.744682401676149e-05" c="1.2965568441656417e-06" d="-1.789396944993897e-07" /> - <width sOffset="228.4299673341327" a="2.4939364734046432" b="-3.406095160137651e-07" c="3.4057937549826324e-06" d="-3.6266183257020683e-07" /> - <width sOffset="238.43446813053959" a="2.4939108000635279" b="-4.1090584682057681e-05" c="7.7812527816984855e-07" d="-2.3073622441769093e-07" /> - <width sOffset="248.43896892694659" a="2.4933465439499169" b="-9.4804265903773374e-05" c="1.3700509624485713e-06" d="-4.9717656379461567e-07" /> - <width sOffset="254.57659792013351" a="2.4927013300842908" b="-0.00013417319069964403" c="2.2739602759105785e-05" d="-1.4898315459305344e-06" /> - <width sOffset="258.44346972335347" a="2.4924363756536394" b="-2.5141934737605252e-05" c="1.3573516006867267e-05" d="-6.5550670590930002e-07" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="798.5388830411955"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="2.4927803807663764" b="0.00036009624290912713" c="-2.9588886405967386e-05" d="-6.5361955915100832e-06" /> - <width sOffset="1.8211806713611622" a="2.4932985630170226" b="0.00018728704600316163" c="-6.2858408425502566e-05" d="-5.6395689874984726e-06" /> - <width sOffset="5.6399188904789526" a="2.4927830591314919" b="-0.00053951403727167148" c="0.00017924103002600177" d="-1.4877129669423311e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="11.825681467768163" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="3.8367118068631161" b="-0.0014083220014319397" c="0.00015835214521287404" d="-2.6251726951125313e-05" /> - <width sOffset="1.8211806713611622" a="3.8345136359416614" b="-0.0010927535017215551" c="1.8680986396279311e-05" d="-2.4872623766666596e-05" /> - <width sOffset="5.0966162281085872" a="3.8302607759124045" b="-0.0017709129646616972" c="0.0041445958999358065" d="-0.00042968423576791181" /> - <width sOffset="5.6399188904789526" a="3.8304531179757841" b="0.0023521272888781313" c="-0.00081943233499350227" d="4.1040440183949404e-06" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.8784296156111022" b="0.00041245282398652116" c="-4.9580432644067161e-05" d="1.4465824403376956e-06" /> - <width sOffset="1.8211806713611622" a="3.8790250611525012" b="0.00024625660853188475" c="-3.7878790286989487e-05" d="2.8417782225465739e-06" /> - <width sOffset="4.7201030083083424" a="3.8794898469160368" b="9.8286053327276623e-05" c="0.0024967076010839638" d="-0.00015872609916830818" /> - <width sOffset="5.0966162281085872" a="3.8798723196282516" b="0.0019108688036205525" c="-0.0020529007652577013" d="0.00024608551282913034" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="3.9033315626152025" b="0.0042626134366445185" c="-0.00022876608473967089" d="2.7329736881597186e-05" /> - <width sOffset="1.8211806713611622" a="3.9105008835956308" b="0.0037012982291136851" c="-7.5624116830550313e-05" d="2.8734201983044764e-05" /> - <width sOffset="4.7201030083083424" a="3.9212951509574023" b="0.0039872665575657277" c="-0.0023356015652147869" d="0.00019030207936542384" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - </link> - <width sOffset="0" a="3.6418882175811791" b="-0.015720655596769436" c="0.0015621671535994402" d="-5.0552295214462318e-05" /> - <width sOffset="1.8211806713611622" a="3.6181339503200314" b="-0.010533678592311049" c="0.0012895296131005827" d="-4.9248525265449273e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="restricted" level="false"> - <link /> - <width sOffset="0" a="0" b="0.088763403321537676" c="-0.0043413495163326949" d="-2.9038109111704293e-08" /> - <width sOffset="1.8211806713611622" a="0.1472550692909822" b="0.072950350735997843" c="-0.0043414563475808925" d="7.4263880899503936e-11" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="-6" type="driving" level="false"> - <link> - <predecessor id="-5" /> - </link> - <width sOffset="0" a="3.3974239477134507" b="-0.073686824363549175" c="0.004760744738382873" d="8.5144843201537872e-05" /> - <width sOffset="1.8211806713611622" a="3.2795311860341858" b="-0.055499272307348343" c="0.0052292208604282128" d="8.6341731774160817e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="11.825681467768163" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-7" type="shoulder" level="false"> - <link> - <predecessor id="-6" /> - </link> - <width sOffset="0" a="2.4927803807664812" b="-4.2061015555201579e-05" c="-3.8762839588668465e-05" d="2.8899436209397741e-06" /> - <width sOffset="1.8211806713611622" a="2.4925926715352631" b="-0.00015449406432860475" c="-2.0532487594707854e-05" d="3.785852304825178e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5172994" s="210.78724072719942" t="9.0497233734097513" orientation="none" validLength="7.3685715275122163" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="7.3685715275122163" s="210.78724072719942" distance="0" tStart="9.0497233734097513" tEnd="8.9336950596599767" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="273608450" s="218.15581225471163" t="8.9336950596599767" orientation="none" validLength="9.1493013721482157" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="9.1493013721482157" s="218.15581225471163" distance="0" tStart="8.9336950596599767" tEnd="9.0157234159963551" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5172999" s="227.30511362685985" t="9.1457234159963559" orientation="none" validLength="14.9764858457917" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.9764858457917" s="227.30511362685985" distance="0" tStart="9.1457234159963559" tEnd="9.7382611806338257" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273608455" s="242.28159947265155" t="9.7382611806338257" orientation="none" validLength="7.6005310701871167" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.6005310701871167" s="242.28159947265155" distance="0" tStart="9.7382611806338257" tEnd="9.931823595432963" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542043911" s="249.88213054283867" t="9.931823595432963" orientation="none" validLength="12.945149448944363" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.945149448944363" s="249.88213054283867" distance="0" tStart="9.931823595432963" tEnd="10.039516945369645" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810479367" s="262.82727999178303" t="10.039516945369645" orientation="none" validLength="16.579338064055037" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.579338064055037" s="262.82727999178303" distance="0" tStart="10.039516945369645" tEnd="9.9472688238160707" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078914823" s="279.40661805583807" t="9.9472688238160707" orientation="none" validLength="51.318209122042674" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="51.318209122042674" s="279.40661805583807" distance="0" tStart="9.9472688238160707" tEnd="9.9678816684339466" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741847" s="330.72482717788074" t="9.9678816684339466" orientation="none" validLength="12.061474555245866" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.061474555245866" s="330.72482717788074" distance="0" tStart="9.9678816684339466" tEnd="10.064935665207981" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741848" s="342.78630173312661" t="10.064935665207981" orientation="none" validLength="22.127674581702195" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="22.127674581702195" s="342.78630173312661" distance="0" tStart="10.064935665207981" tEnd="10.070853737271614" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741849" s="364.9139763148288" t="10.070853737271614" orientation="none" validLength="9.8337584139056844" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.8337584139056844" s="364.9139763148288" distance="0" tStart="10.070853737271614" tEnd="9.8476616914082413" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741850" s="374.74773472873449" t="9.8476616914082413" orientation="none" validLength="4.6408284063330711" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.6408284063330711" s="374.74773472873449" distance="0" tStart="9.8476616914082413" tEnd="9.8652373352562233" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741851" s="379.38856313506756" t="9.8652373352562233" orientation="none" validLength="8.5443052824715551" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.5443052824715551" s="379.38856313506756" distance="0" tStart="9.8652373352562233" tEnd="10.056611347577499" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741852" s="387.93286841753911" t="10.056611347577499" orientation="none" validLength="17.967486286352255" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.967486286352255" s="387.93286841753911" distance="0" tStart="10.056611347577499" tEnd="10.274701824767707" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741853" s="405.90035470389137" t="10.274701824767707" orientation="none" validLength="20.374291246461212" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="20.374291246461212" s="405.90035470389137" distance="0" tStart="10.274701824767707" tEnd="10.350388423588099" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741854" s="426.27464595035258" t="10.350388423588099" orientation="none" validLength="10.765493307407951" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.765493307407951" s="426.27464595035258" distance="0" tStart="10.350388423588099" tEnd="10.552533490362046" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741855" s="437.04013925776053" t="10.552533490362046" orientation="none" validLength="12.504701079138727" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.504701079138727" s="437.04013925776053" distance="0" tStart="10.552533490362046" tEnd="10.493803861088447" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741856" s="449.54484033689926" t="10.493803861088447" orientation="none" validLength="12.729386192840423" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.729386192840423" s="449.54484033689926" distance="0" tStart="10.493803861088447" tEnd="10.58515926220891" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741857" s="462.27422652973968" t="10.58515926220891" orientation="none" validLength="8.5550813213141055" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.5550813213141055" s="462.27422652973968" distance="0" tStart="10.58515926220891" tEnd="10.432579212560695" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741858" s="470.82930785105378" t="10.432579212560695" orientation="none" validLength="22.102253034062414" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="22.102253034062414" s="470.82930785105378" distance="0" tStart="10.432579212560695" tEnd="10.306601367842653" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741859" s="492.9315608851162" t="10.306601367842653" orientation="none" validLength="10.059257722552331" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.059257722552331" s="492.9315608851162" distance="0" tStart="10.306601367842653" tEnd="10.377916798728357" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741860" s="502.99081860766853" t="10.377916798728357" orientation="none" validLength="32.554589780136553" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="32.554589780136553" s="502.99081860766853" distance="0" tStart="10.377916798728357" tEnd="10.234100295295228" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741861" s="535.54540838780508" t="10.234100295295228" orientation="none" validLength="9.9720339544197714" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.9720339544197714" s="535.54540838780508" distance="0" tStart="10.234100295295228" tEnd="10.33852728167269" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741862" s="545.51744234222485" t="10.33852728167269" orientation="none" validLength="12.557206861611917" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.557206861611917" s="545.51744234222485" distance="0" tStart="10.33852728167269" tEnd="10.02465551872795" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741863" s="558.07464920383677" t="10.02465551872795" orientation="none" validLength="17.984146758376255" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.984146758376255" s="558.07464920383677" distance="0" tStart="10.02465551872795" tEnd="10.132505611957749" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741864" s="576.05879596221303" t="10.132505611957749" orientation="none" validLength="8.5356389431144635" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.5356389431144635" s="576.05879596221303" distance="0" tStart="10.132505611957749" tEnd="10.287541939949209" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741865" s="584.59443490532749" t="10.287541939949209" orientation="none" validLength="12.243283111403343" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.243283111403343" s="584.59443490532749" distance="0" tStart="10.287541939949209" tEnd="10.307611142402939" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741866" s="596.83771801673083" t="10.307611142402939" orientation="none" validLength="4.5175539928463877" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.5175539928463877" s="596.83771801673083" distance="0" tStart="10.307611142402939" tEnd="10.400258365319269" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741867" s="601.35527200957722" t="10.400258365319269" orientation="none" validLength="14.723562054446575" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.723562054446575" s="601.35527200957722" distance="0" tStart="10.400258365319269" tEnd="10.457631911884752" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741868" s="616.07883406402379" t="10.457631911884752" orientation="none" validLength="18.565761989826115" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.565761989826115" s="616.07883406402379" distance="0" tStart="10.457631911884752" tEnd="10.664927944014805" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741869" s="634.64459605384991" t="10.664927944014805" orientation="none" validLength="57.873547640499282" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="57.873547640499282" s="634.64459605384991" distance="0" tStart="10.664927944014805" tEnd="10.438207903577332" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741870" s="692.51814369434919" t="10.438207903577332" orientation="none" validLength="72.206654013622483" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="72.206654013622483" s="692.51814369434919" distance="0" tStart="10.438207903577332" tEnd="10.582203371358874" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741871" s="764.72479770797167" t="10.582203371358874" orientation="none" validLength="29.723446688255081" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="29.723446688255081" s="764.72479770797167" distance="0" tStart="10.582203371358874" tEnd="10.803753377253329" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741872" s="794.44824439622676" t="10.803753377253329" orientation="none" validLength="15.916320112736912" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.916320112736912" s="794.44824439622676" distance="0" tStart="10.803753377253329" tEnd="10.774038970377861" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5173312" s="0" t="9.5738595799752559" orientation="none" validLength="81.224866962122462" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="81.224866962122462" s="0" distance="0" tStart="9.5738595799752559" tEnd="9.6162584421932316" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273608768" s="81.224866962122462" t="9.6162584421932316" orientation="none" validLength="69.308020442948134" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="69.308020442948134" s="81.224866962122462" distance="0" tStart="9.6162584421932316" tEnd="9.4326317798498795" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542044224" s="150.5328874050706" t="9.4326317798498795" orientation="none" validLength="49.214645003811768" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="49.214645003811768" s="150.5328874050706" distance="0" tStart="9.4326317798498795" tEnd="9.2054658395630327" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810479680" s="199.74753240888236" t="9.2054658395630327" orientation="none" validLength="12.892945528137801" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="12.892945528137801" s="199.74753240888236" distance="0" tStart="9.2054658395630327" tEnd="9.0796132834822085" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078915136" s="212.64047793702017" t="9.0796132834822085" orientation="none" validLength="1.3774419791999435" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="1.3774419791999435" s="212.64047793702017" distance="0" tStart="9.0796132834822085" tEnd="9.1892959950212081" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5173983" s="784.41125515903013" t="-11.452756361003448" orientation="none" validLength="10.439287902629076" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.439287902629076" s="784.41125515903013" distance="0" tStart="-11.452756361003448" tEnd="-11.344227898638968" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273609439" s="794.85054306165921" t="-11.344227898638968" orientation="none" validLength="5.9304405217363865" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.9304405217363865" s="794.85054306165921" distance="0" tStart="-11.344227898638968" tEnd="-11.438353204057588" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542044895" s="800.7809835833956" t="-11.438353204057588" orientation="none" validLength="9.5835809255680715" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.5835809255680715" s="800.7809835833956" distance="0" tStart="-11.438353204057588" tEnd="-11.752012827737438" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5174155" s="0" t="-14.429190097099502" orientation="none" validLength="127.74854113924131" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="127.74854113924131" s="0" distance="0" tStart="-14.429190097099502" tEnd="-14.39235669994498" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273609611" s="127.74854113924131" t="-14.39235669994498" orientation="none" validLength="8.4276074057721218" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.4276074057721218" s="127.74854113924131" distance="0" tStart="-14.39235669994498" tEnd="-14.228472250191109" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542045067" s="136.17614854501343" t="-14.228472250191109" orientation="none" validLength="10.787097766744552" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.787097766744552" s="136.17614854501343" distance="0" tStart="-14.228472250191109" tEnd="-13.79642063868314" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810480523" s="146.96324631175798" t="-13.79642063868314" orientation="none" validLength="15.838946121190844" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.838946121190844" s="146.96324631175798" distance="0" tStart="-13.79642063868314" tEnd="-12.624415827084707" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078915979" s="162.80219243294883" t="-12.624415827084707" orientation="none" validLength="13.442982607442701" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.442982607442701" s="162.80219243294883" distance="0" tStart="-12.624415827084707" tEnd="-11.834522939534928" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741873" s="176.24517504039153" t="-11.834522939534928" orientation="none" validLength="8.4308678084614144" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.4308678084614144" s="176.24517504039153" distance="0" tStart="-11.834522939534928" tEnd="-11.557536134883977" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741874" s="184.67604284885294" t="-11.557536134883977" orientation="none" validLength="19.225547733982324" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.225547733982324" s="184.67604284885294" distance="0" tStart="-11.557536134883977" tEnd="-11.454840532343969" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741875" s="203.90159058283527" t="-11.454840532343969" orientation="none" validLength="87.26858665429242" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="87.26858665429242" s="203.90159058283527" distance="0" tStart="-11.454840532343969" tEnd="-11.46307487221997" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741876" s="291.17017723712769" t="-11.46307487221997" orientation="none" validLength="63.544147576661942" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="63.544147576661942" s="291.17017723712769" distance="0" tStart="-11.46307487221997" tEnd="-11.309637520965865" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741877" s="354.71432481378963" t="-11.309637520965865" orientation="none" validLength="18.768293665507088" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.768293665507088" s="354.71432481378963" distance="0" tStart="-11.309637520965865" tEnd="-11.381552480469111" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741878" s="373.48261847929672" t="-11.381552480469111" orientation="none" validLength="14.411281407768854" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.411281407768854" s="373.48261847929672" distance="0" tStart="-11.381552480469111" tEnd="-11.196344094708893" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741879" s="387.89389988706557" t="-11.196344094708893" orientation="none" validLength="37.372559190536037" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="37.372559190536037" s="387.89389988706557" distance="0" tStart="-11.196344094708893" tEnd="-10.992929391296824" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741880" s="425.26645907760161" t="-10.992929391296824" orientation="none" validLength="11.184419519845846" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.184419519845846" s="425.26645907760161" distance="0" tStart="-10.992929391296824" tEnd="-11.166891761836437" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412696" s="42.034194465647474" t="-14.628137984124391" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848152" s="90.739274107500307" t="-14.112536010587998" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283608" s="150.72827549461641" t="-13.532521715172463" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719064" s="220.13074181670561" t="-11.61427206705266" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154520" s="268.54916249114416" t="-11.945446630825252" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741881" s="308.35956741114825" t="-10.841387672125823" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741882" s="356.51155388585954" t="-11.122327202221406" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741883" s="449.31009991894553" t="-11.207158668281613" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741884" s="499.2878871745562" t="-10.913758745710281" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741885" s="602.11516996008936" t="-12.248667144072323" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741886" s="645.99601494551462" t="-12.930232889471039" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="148.21037829549289" id="4940168" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556490" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-563.13465225446271" y="-223.09689532607879" hdg="1.2518580200767282" length="148.21037829549289"> - <paramPoly3 aU="0" bU="148.18713016636738" cU="0.037399877851305385" dU="-0.021314317598637111" aV="-0" bV="7.1054273576010019e-15" cV="3.6086271350797423" dV="-2.2478177016941969" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.97593924436515" b="-0.00046532277977402362" c="-0.00017925958253698797" d="3.2330195150923071e-06" /> - <elevation s="10.586455592535206" a="156.9547587950108" b="-0.0031737670040738191" c="-0.00011752369690624789" d="1.9438638705567312e-06" /> - <elevation s="21.172911185070411" a="156.91029492284162" b="-0.0050085215891152012" c="4.9545260383296421e-05" d="-2.6660073787006469e-06" /> - <elevation s="31.759366777605617" a="156.85966201829928" b="-0.004855866862256494" c="4.6596839050754832e-05" d="-1.1657781889431699e-06" /> - <elevation s="42.345822370140823" a="156.8120947040432" b="-0.0042612330513706635" c="-1.1769401717333188e-05" d="7.0694652374352375e-06" /> - <elevation s="47.996316752455343" a="156.78891625465684" b="-0.003717095429502131" c="4.911940595718203e-08" d="5.3108532281000808e-06" /> - <elevation s="52.932277962676025" a="156.7712086869405" b="-0.0033284342139373113" c="7.8617381911817759e-05" d="-2.6923714347043009e-06" /> - <elevation s="63.518733555211234" a="156.7415888740847" b="-0.0025691021398620197" c="5.6661408646147735e-05" d="-2.9402708509215367e-06" /> - <elevation s="74.105189147746444" a="156.71725290197705" b="-0.0023579904627884685" c="3.0349532592858301e-05" d="-3.0246097051277459e-06" /> - <elevation s="84.691644740281646" a="156.69210293791002" b="-0.002732334136356067" c="-1.9421741800511929e-05" d="-9.7730510151814903e-07" /> - <elevation s="95.278100332816848" a="156.65984102044925" b="-0.003472137617662741" c="-0.00024703973374601149" d="9.8270836727439274e-06" /> - <elevation s="105.86455592535205" a="156.60705630045084" b="-0.0053986344754966527" c="-0.00014574683230957075" d="1.0456511021322292e-05" /> - <elevation s="116.45101151788727" a="156.5459757986481" b="-0.0049688402144951755" c="9.6146351855444449e-05" d="-1.5657822067722818e-06" /> - <elevation s="127.03746711042247" a="156.50229107436573" b="-0.0034595879710183968" c="1.5169270818498974e-05" d="4.8880604269061263e-06" /> - <elevation s="137.62392270295769" a="156.47316583627003" b="-0.0014949509424799395" c="6.5463248641533503e-05" d="1.8525186125241518e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028198181843912082" b="0" c="-1.8947798104209926e-06" d="-4.569077633030524e-23" /> - <superelevation s="10.586455592535206" a="0.027985828106613923" b="-4.0118004641306922e-05" c="-1.1000334927318215e-05" d="6.3623932598237894e-07" /> - <superelevation s="21.172911185070411" a="0.027083149778968363" b="-5.9111288930542764e-05" c="4.317835658518468e-06" d="-1.7448066807792118e-07" /> - <superelevation s="31.759366777605617" a="0.026734270036052506" b="-2.6353875752715141e-05" c="-6.1867966994069377e-07" d="1.1734348941201429e-07" /> - <superelevation s="42.345822370140823" a="0.026525161508273744" b="0" c="3.7291620232906185e-06" d="-1.4477652035363168e-07" /> - <superelevation s="52.932277962676025" a="0.026771329028266396" b="3.0280581169726206e-05" c="4.8517782843636984e-06" d="-3.9559573377487591e-07" /> - <superelevation s="63.518733555211234" a="0.027166289564012673" b="0" c="-8.2492100581893707e-07" d="0" /> - <superelevation s="74.105189147746444" a="0.027073838157470345" b="-1.7465979190904622e-05" c="-4.1517933373485308e-06" d="7.9083132328313673e-08" /> - <superelevation s="84.691644740281646" a="0.02651745991444274" b="-7.8782269145567357e-05" c="-1.4873918081770354e-05" d="1.1709816163766375e-06" /> - <superelevation s="95.278100332816848" a="0.025405788169892935" b="0" c="2.0533279305453035e-06" d="0" /> - <superelevation s="105.86455592535205" a="0.025635910877318837" b="4.3474929907261434e-05" c="2.1025758282304256e-05" d="-1.4533719374482745e-06" /> - <superelevation s="116.45101151788727" a="0.026728214717660698" b="0" c="-1.1071924393419279e-05" d="5.6966502736060776e-07" /> - <superelevation s="127.03746711042247" a="0.026163233120524092" b="-4.2892594195991159e-05" c="1.0006782926453165e-06" d="-1.0518776960125734e-09" /> - <superelevation s="137.62392270295769" a="0.025820053630251711" b="-2.2058982980637149e-05" c="9.7840697960994147e-07" d="4.5690776330305293e-23" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="5.7781324235740543" b="0.034704787831218067" c="-0.01508961510039708" d="0.002888232031537593" /> - <laneOffset s="2.4985758724520606" a="5.8156938385240862" b="0.013392361404865681" c="-0.0010932898123441857" d="7.5569827833198416e-05" /> - <laneOffset s="8.2643090394547123" a="5.8710504302953348" b="0.0083217840255844552" c="-0.00028499133463974626" d="7.133066025359725e-06" /> - <laneOffset s="10.586455592535206" a="5.888927374458194" b="0.0071135930132761351" c="-0.00024780144793026603" d="5.3206341662742557e-06" /> - <laneOffset s="19.366020755967057" a="5.9358815653490602" b="0.003992770740711105" c="-0.000327699287807649" d="1.9004018198408797e-05" /> - <laneOffset s="21.172911185070411" a="5.9421382836818797" b="0.0029946733059620966" c="-0.00024590580713221402" d="1.1819253757229408e-05" /> - <laneOffset s="31.759366777605617" a="5.9603048756691024" b="0.0017619906603379776" c="0.00012213867981511456" d="1.3472095629832484e-05" /> - <laneOffset s="33.984080662719826" a="5.9649776478477037" b="0.0025054723192438713" c="-5.2742537382087497e-06" d="5.5101562382946328e-06" /> - <laneOffset s="41.18122002559933" a="5.9847908855819734" b="0.0032858119318355077" c="0.001514296536563625" d="-0.00056751963425594773" /> - <laneOffset s="42.345822370140823" a="5.9897749633481592" b="0.0045037402336242909" c="-0.00046823899899016907" d="-0.00056914817370334674" /> - <laneOffset s="43.718680635485988" a="5.9936027917895789" b="-0" c="-0.00070007618142584982" d="4.1684088876713243e-05" /> - <laneOffset s="53.513438639381256" a="5.9656091922729511" b="-0.001716978699797557" c="0.0002828622955081352" d="-2.0555477005428428e-05" /> - <laneOffset s="62.687416340318592" a="5.9577930217348589" b="-0.0017169958736999752" c="-0.0002721114326595627" d="6.3349281221494787e-06" /> - <laneOffset s="74.105189147746444" a="5.9121442397977066" b="-0.005453240008266848" c="-5.8764577831426982e-05" d="6.7268690619034989e-06" /> - <laneOffset s="79.498164431663383" a="5.8820810427898573" b="-0.0055001353793027721" c="-0.00013132395839685036" d="1.1014914102869421e-05" /> - <laneOffset s="84.691644740281646" a="5.8515170637833904" b="-0.005972901518458063" c="-1.700945083535453e-06" d="2.9551854583066711e-05" /> - <laneOffset s="85.927493896541449" a="5.8441886409260544" b="-0.005841700047811183" c="-9.5065406002666042e-05" d="2.834687206317053e-06" /> - <laneOffset s="95.278100332816848" a="5.7835707945607133" b="-0.0068759956731665756" c="-1.9792515524379732e-05" d="2.411408265485148e-06" /> - <laneOffset s="105.86455592535205" a="5.7114211947743581" b="-0.0064842992669506124" c="6.2037879436494049e-05" d="2.1946359938547597e-06" /> - <laneOffset s="116.45101151788727" a="5.6523320620670061" b="-0.0044328981597060117" c="0.00013329483981143215" d="2.688974888085552e-06" /> - <laneOffset s="124.91409997498569" a="5.6259930912362064" b="-0.0015989417862468961" c="2.2807729459084367e-05" d="3.6140288776575988e-06" /> - <laneOffset s="127.03746711042247" a="5.6227353829982682" b="-0.0014531998341047452" c="3.2976756235632618e-05" d="8.4446371511751548e-08" /> - <laneOffset s="137.62392270295769" a="5.6111471448024828" b="-0.00072659341792926302" c="3.3838092812256406e-05" d="3.0165879144956121e-08" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4931786441896131" b="-0.0067512631183931499" c="0.006019795986884539" d="-0.0013279103388643564" /> - <width sOffset="2.4985758724520606" a="2.4931778125358894" b="-0.0015393893264186737" c="0.00070978730519529929" d="-6.9320793856724776e-05" /> - <width sOffset="8.2643090394547123" a="2.4946110392573546" b="-0.00026793555948922965" c="9.5796148704845084e-06" d="-8.840320487004265e-07" /> - <width sOffset="10.586455592535206" a="2.4940294406713326" b="-0.00023774608960180823" c="4.2955226640125732e-06" d="1.7698518983823435e-06" /> - <width sOffset="16.777798139788111" a="2.493142173018982" b="1.8973740123464505e-05" c="-0.00010963504888707268" d="3.0755731021478325e-06" /> - <width sOffset="19.366020755967057" a="2.4925101724667549" b="-0.00048673725006494672" c="0.00013428215769225761" d="-1.0607810929750882e-05" /> - <width sOffset="21.172911185070411" a="2.4920065251622869" b="-0.00010536978973309675" c="8.2184855441782336e-05" d="-5.3672560097609577e-06" /> - <width sOffset="31.759366777605617" a="2.4937337247072495" b="-0.00016985126953199649" c="-8.4498500271284023e-05" d="-7.0579979619175177e-06" /> - <width sOffset="33.984080662719826" a="2.4928599265670481" b="-0.00065061878942608477" c="8.5723029708970519e-05" d="9.0394142961785397e-07" /> - <width sOffset="41.18122002559933" a="2.4929546761646568" b="0.00072377167809555085" c="-0.0012953582961904293" d="0.00057393373193967922" /> - <width sOffset="41.681675067313364" a="2.4930643998333313" b="-0.0001415313553761394" c="-0.0016495873645873335" d="0.00060674719198913632" /> - <width sOffset="42.345822370140823" a="2.4924205294521045" b="-0.0015297760116484505" c="-0.00044094738574129732" d="0.00060837573143821021" /> - <width sOffset="43.718680635485988" a="2.4910634531395512" b="0.00069939735586758305" c="-4.754857270885583e-05" d="-2.4565311418275532e-06" /> - <width sOffset="48.972652644597623" a="2.4930692507642487" b="-3.6722763335156686e-06" c="0.00035901653195528828" d="-5.3703609886026377e-05" /> - <width sOffset="52.932277962676025" a="2.4953495970103035" b="0.00031347210705712485" c="-0.00027111984191522157" d="-5.2948159250257413e-05" /> - <width sOffset="53.513438639381256" a="2.495429811593886" b="-5.5305636668593131e-05" c="-0.0001215157935586859" d="9.2914066302626219e-06" /> - <width sOffset="62.687416340318592" a="2.4918693294801644" b="6.1074385693072469e-05" c="0.00012344894328789434" d="-1.759899850221317e-05" /> - <width sOffset="63.518733555211234" a="2.4919953049260144" b="0.00022983746262712594" c="8.1401737603788881e-05" d="-1.7356437664365207e-05" /> - <width sOffset="67.688374614266507" a="2.493110667591619" b="3.3973069983889853e-06" c="7.1723217191186373e-05" d="-4.9244603411630412e-06" /> - <width sOffset="74.105189147746444" a="2.4947845881795168" b="0.00031556499221527604" c="-2.4070206519945932e-05" d="-5.2408475430964695e-06" /> - <width sOffset="79.498164431663383" a="2.4949643317175019" b="-0.00040133236329227811" c="7.2531406012489499e-05" d="-9.5288925840724592e-06" /> - <width sOffset="84.691644740281646" a="2.4935015490875525" b="-0.00041899817337225" c="-4.3699618322055716e-05" d="-2.7872083450382018e-05" /> - <width sOffset="85.927493896541449" a="2.4928643774098198" b="-0.00065471948002858611" c="5.5892673808175169e-05" d="-1.1549160736324498e-06" /> - <width sOffset="95.278100332816848" a="2.4906850518341184" b="8.7605066772528627e-05" c="2.2603060922893134e-05" d="-1.2176343387736048e-06" /> - <width sOffset="105.86455592535205" a="2.4927010028687278" b="0.00015678571498768754" c="-2.1782590682975611e-06" d="-4.2724389110506646e-06" /> - <width sOffset="109.41265375595725" a="2.4930390348072908" b="-2.002881504613134e-05" c="6.9555851377082068e-05" d="-4.2821304968121561e-06" /> - <width sOffset="116.45101151788727" a="2.4948507075002775" b="0.00032269841008204792" c="-1.6039180012190064e-05" d="-3.6605251465903056e-06" /> - <width sOffset="124.91409997498569" a="2.4942140839207267" b="-0.00073532647868460596" c="6.9780983005390411e-05" d="-4.5855791360081132e-06" /> - <width sOffset="127.03746711042247" a="2.4929234360222221" b="-0.00050101002345981208" c="4.8234021191672467e-05" d="-1.1387847799015905e-06" /> - <width sOffset="137.62392270295769" a="2.4916741307845074" b="0.00013736339988675776" c="1.1259017675268748e-05" d="-1.162824492407749e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16603545738128378" weight="standard" type="solid"> - <type name="solid"> - <line length="148.21037829549289" space="0" width="0.16603499999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.6536873698155201" b="-4.1617348541189703e-05" c="-0.010613648923315743" d="0.0026249735536443457" /> - <width sOffset="2.4985758724520606" a="3.6282687929901116" b="-0.0039174359404737548" c="0.0014093625214895646" d="-0.00018768865006004804" /> - <width sOffset="5.8192425222107076" a="3.6239286049987145" b="-0.00076622051697584209" c="0.00035555682700501491" d="4.9731017878015829e-05" /> - <width sOffset="8.2643090394547123" a="3.6249077294895149" b="0.0018644280014322948" c="0.00022149585646765525" d="-1.8705743929949786e-05" /> - <width sOffset="10.586455592535206" a="3.6301973602415223" b="0.0025905151057312361" c="8.1876266235720468e-05" d="-2.0500614807710262e-05" /> - <width sOffset="19.003176668788608" a="3.6455777125432247" b="-0.00038808957510283373" c="-0.00035585714519982667" d="2.1441209409140446e-05" /> - <width sOffset="19.366020755967057" a="3.6453910701253753" b="-0.00063786231635108541" c="-0.00055255410000905358" d="3.5124593433293605e-05" /> - <width sOffset="21.172911185070411" a="3.6426417230015096" b="-0.0022906418409556553" c="-0.0003762352464802346" d="2.9917516976525304e-05" /> - <width sOffset="31.759366777605617" a="3.6117219422586335" b="-0.00019779588829528646" c="0.00056978006772019781" d="3.0725799416831168e-05" /> - <width sOffset="33.724998955426358" a="3.6137679643132703" b="0.0023983069048385264" c="0.00072296211553135755" d="-8.2727458127658025e-05" /> - <width sOffset="33.984080662719826" a="3.6144364107203688" b="0.0027562605955486104" c="0.0004413349940787291" d="-9.06893974576062e-05" /> - <width sOffset="36.463910522799466" a="3.6226024823942629" b="0.0032720333672480563" c="7.644679867440445e-07" d="6.798351924110341e-06" /> - <width sOffset="41.18122002559933" a="3.6387683406461742" b="0.0037330971899847583" c="0.001497572961618888" d="-0.00056623143857010617" /> - <width sOffset="42.345822370140823" a="3.6442526804786777" b="0.0049173143966903454" c="-0.00048042095576051588" d="-0.00056778278440593015" /> - <width sOffset="43.718680635485988" a="3.6486288607275918" b="0.00038784617370807788" c="-0.00070663468024907792" d="4.3049478174129511e-05" /> - <width sOffset="52.932277962676025" a="3.6258868016108381" b="-0.0016699895001229749" c="0.00048151035879615754" d="4.3169327570310001e-05" /> - <width sOffset="53.513438639381256" a="3.6250873719362544" b="-0.0010665787007398766" c="0.00031485709313076887" d="-1.9070238309798756e-05" /> - <width sOffset="59.17791304326304" a="3.625682302753507" b="0.00066474272740777124" c="0.0024188788295946436" d="-0.00045101925809585728" /> - <width sOffset="62.137613355865" a="3.6371453669676193" b="0.0031305049935168154" c="-0.00041124597730710067" d="-1.2024180426475342e-05" /> - <width sOffset="62.687416340318592" a="3.6387402167818728" b="0.0026673923345820394" c="-0.00042032603327723546" d="1.4866224713044591e-05" /> - <width sOffset="63.518733555211234" a="3.6406757243881858" b="0.0019993654223372584" c="-0.00038445036264076566" d="1.4203283339229835e-05" /> - <width sOffset="74.105189147746444" a="3.6356069707493308" b="-0.0013651524497356972" c="6.2991467061572449e-05" d="1.4595224273871303e-05" /> - <width sOffset="74.508141004574497" a="3.6350680628990757" b="-0.0013072779041000708" c="2.3892013305115155e-05" d="5.171767676270036e-06" /> - <width sOffset="79.498164431663383" a="3.6297822435753671" b="-0.00068249826740394808" c="-8.0079157435098558e-05" d="9.4598127172451414e-06" /> - <width sOffset="84.691644740281646" a="3.6254029167284014" b="-0.00074882036986826349" c="2.7967102550420353e-05" d="2.7952568198703138e-05" /> - <width sOffset="85.927493896541449" a="3.6245729641277271" b="-0.00055161631724150086" c="-7.1326788554891077e-05" d="1.235400821952958e-06" /> - <width sOffset="95.278100332816848" a="3.6141886555679217" b="-0.0015614662574238167" c="-3.9547750389126601e-05" d="9.581460951687205e-07" /> - <width sOffset="101.04252124787621" a="3.6040571189773023" b="-0.0019218926044574777" c="5.2397351985951365e-05" d="1.1821005600392322e-06" /> - <width sOffset="105.86455592535205" a="3.5961405699116491" b="-0.0013341102358624991" c="7.2013639070709387e-05" d="9.0891461046566838e-07" /> - <width sOffset="116.45101151788727" a="3.5911662461909453" b="0.00049622262426933517" c="0.00010156671712112715" d="1.2596301745905505e-06" /> - <width sOffset="124.91409997498569" a="3.603403959427895" b="0.0024860175962377745" c="-4.5210405469163774e-05" d="2.1846841641620706e-06" /> - <width sOffset="127.03746711042247" a="3.6084997631697253" b="0.0023235711957013648" c="-4.4146449462726729e-05" d="-1.3448983420113121e-06" /> - <width sOffset="127.91163864565584" a="3.6104963288974758" b="0.0022433048401044823" c="0.00078972192047560173" d="-0.00039666461322206299" /> - <width sOffset="129.92395718606818" a="3.6149761784732437" b="0.00060285707998175954" c="-6.4732906798193246e-05" d="3.2785355497229843e-08" /> - <width sOffset="137.62392270295769" a="3.6157951449279429" b="-0.00038819374137523312" c="-6.3355492101638131e-05" d="-6.8912294154616631e-07" /> - <width sOffset="139.33237534274684" a="3.6149435752205941" b="-0.00061070771450085534" c="-0.00057404694137958164" d="9.9677049119830329e-05" /> - <width sOffset="143.40033763348742" a="3.6096697810435137" b="-0.00033264805694309282" c="0.0018516342994367712" d="-0.00025184205335605087" /> - <roadMark sOffset="0" color="standard" width="0.309946502090447" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30994699999999997" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - <speed sOffset="16.596370165599318" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.7660633390009002" b="-4.2978790217841623e-05" c="-0.0031549292013040341" d="0.00025041567074556253" /> - <width sOffset="4.9299934943399997" a="3.7191768949197295" b="-0.012891604346885153" c="-0.0010860198638761684" d="0.0041791482405902176" /> - <width sOffset="5.3631186734603569" a="3.7137290509801915" b="-0.011480377149947821" c="0.00010851808665151381" d="0.00026334780653216461" /> - <width sOffset="5.8192425222107076" a="3.7085401449235276" b="-0.011217014059194997" c="-0.00034707289601134344" d="2.5928138598080935e-05" /> - <width sOffset="10.586455592535206" a="3.6499876449922546" b="-0.012758401391668008" c="1.8984808185382868e-05" d="2.5875719740716423e-05" /> - <width sOffset="19.003176668788608" a="3.5593770581628323" b="-0.0069396211003717708" c="0.00059244049652141997" d="-1.606610446804839e-05" /> - <width sOffset="21.172911185070411" a="3.5469448749806611" b="-0.0045956494194016517" c="0.00047953734024318306" d="-1.8079345416449479e-05" /> - <width sOffset="31.759366777605617" a="3.5305860920122392" b="-0.00052106961976833982" c="-9.8856748488051409e-05" d="-1.7118592373764293e-05" /> - <width sOffset="33.724998955426358" a="3.5290498975903382" b="-0.0011081254537682376" c="-0.00017179850421238953" d="9.6334665109035734e-05" /> - <width sOffset="35.308477350710262" a="3.5272469257087202" b="-0.0009275541690069762" c="0.00010970075283770156" d="9.3838885576529743e-05" /> - <width sOffset="36.463910522799466" a="3.5264664017781575" b="-0.00029821838721028006" c="0.00020086213518645958" d="-3.6488638054258371e-06" /> - <width sOffset="42.345822370140823" a="3.5309189834999453" b="0.0016859703720166648" c="0.00013646604908867119" d="-3.7667744948947024e-06" /> - <width sOffset="50.351893413245911" a="3.5512310875283148" b="0.0031467653444305164" c="0.00012486436250955745" d="-5.9005061144549139e-06" /> - <width sOffset="52.932277962676025" a="3.560080969399924" b="0.0036732979740189769" c="8.2770321921201592e-05" d="-5.7691087371761593e-06" /> - <width sOffset="59.17791304326304" a="3.5848462243992407" b="0.0040320809801301866" c="-0.0024534152886259023" d="0.00042617991104887534" /> - <width sOffset="60.195625742760413" a="3.586857855978359" b="0.00036257082940562447" c="-0.0010039693420565946" d="0.00042413580869806778" /> - <width sOffset="62.137613355865" a="3.5868819850148661" b="0.0012618291208704039" c="0.00029250940762200292" d="-1.4859268981875003e-05" /> - <width sOffset="63.518733555211234" a="3.5891435359466284" b="0.0019847785686726849" c="0.00023270987251869287" d="-1.405878840410267e-05" /> - <width sOffset="74.105189147746444" a="3.6195556716196489" b="0.0021850904810172302" c="-0.00021492487383091072" d="-1.3838877665585303e-05" /> - <width sOffset="74.508141004574497" a="3.6204003550503838" b="0.0020051406630854926" c="-0.00017491110626367801" d="-4.4154210679876755e-06" /> - <width sOffset="77.202537490049124" a="3.6244468154302458" b="0.00096641606682229455" c="-0.00020719868081918336" d="1.1369278974811643e-05" /> - <width sOffset="84.691644740281646" a="3.6248388595207066" b="-0.00022405326672890642" c="4.0228039559606372e-05" d="1.2392841269140233e-05" /> - <width sOffset="87.47781866586223" a="3.6247949264738333" b="0.00028871951176896119" c="0.00021489099803194449" d="-8.4558981348816038e-06" /> - <width sOffset="95.278100332816848" a="3.6361087344538192" b="0.0020976581410985856" c="1.4426921187311985e-05" d="-8.7436168747612239e-06" /> - <width sOffset="101.04252124787621" a="3.6470051229864575" b="0.001392370741765632" c="-0.00021215437297414732" d="-8.9675713396322269e-06" /> - <width sOffset="104.86226102202959" a="3.6487284203011279" b="-0.00062089993155409196" c="-5.5379713065903442e-05" d="-9.6570467206733125e-06" /> - <width sOffset="105.86455592535205" a="3.6480407375919741" b="-0.00076101780453351805" c="-7.5295687334730842e-05" d="-6.4791940747225691e-06" /> - <width sOffset="114.98339950951529" a="3.6299271230288466" b="-0.0037505362628028598" c="-1.4520408984660517e-05" d="-2.2243508875932903e-08" /> - <width sOffset="116.45101151788727" a="3.624391445367281" b="-0.0037933006458677658" c="-1.1497278509831776e-05" d="1.4688772610153296e-06" /> - <width sOffset="127.03746711042247" a="3.5846880602075908" b="-0.0035428668736706089" c="3.2726684010111699e-05" d="1.8663382350463447e-06" /> - <width sOffset="127.91163864565584" a="3.5816172425285848" b="-0.0034813707705099567" c="-0.00079977420219190336" d="0.000397186053114585" /> - <width sOffset="129.78302502917109" a="3.5749044350800281" b="-0.0023018035389476086" c="0.0011165563150645705" d="0.00041647048499161019" /> - <width sOffset="129.92395718606818" a="3.5746033796165162" b="-0.0019622705079360074" c="-0.00024755327299909037" d="1.9773086406384149e-05" /> - <width sOffset="137.62392270295769" a="3.553843607453322" b="-0.0022575664610281301" c="0.00020458885325787447" d="2.118543134839217e-05" /> - <width sOffset="139.07836271864662" a="3.5510580804076017" b="-0.0015279953162489731" c="0.00042012528907177035" d="-6.3514147356949128e-05" /> - <width sOffset="139.33237534274684" a="3.5506960168396131" b="-0.0013268553201749992" c="0.00087888455090859318" d="-0.00016388031940847502" /> - <width sOffset="143.40033763348742" a="3.5488103958354262" b="-0.0023121474228328985" c="-0.0023303261373372954" d="0.00018763878306636561" /> - <width sOffset="143.87151787404144" a="3.5472232283930816" b="-0.0043831811629876398" c="-0.0042697085992872644" d="0.00073365129512675592" /> - <roadMark sOffset="0" color="standard" width="0.30101077355352895" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30101099999999997" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.4112627774108573" b="-0.0065403820169963184" c="0.011143818054599538" d="-0.0045245792810887451" /> - <width sOffset="1.3048470945821915" a="3.411650226365158" b="-0.00056942295276091182" c="-0.00098526529197626297" d="0.00035539999003203747" /> - <width sOffset="2.2881305444766498" a="3.4104755951422376" b="-0.0014761615216517879" c="-0.0010158075125444696" d="0.00040012936259518038" /> - <width sOffset="4.1994216883146001" a="3.4067371491833605" b="-0.00097411102516223314" c="0.0013660579423693849" d="-0.00010575448480150649" /> - <width sOffset="4.9299934943399997" a="3.4067133672487833" b="0.00085256114922983503" c="0.0027690077530416772" d="-0.004034487054646198" /> - <width sOffset="5.3631186734603569" a="3.4072742768135487" b="0.00098063701031061989" c="0.0017624390087348299" d="-0.00011868662059198617" /> - <width sOffset="10.586455592535206" a="3.443567553108791" b="0.0096777927795004635" c="-0.00011112538850047591" d="-0.00011356916405544154" /> - <width sOffset="12.295966197753726" a="3.4592197043621469" b="0.0083021601121569446" c="0.00034834607261640386" d="-3.1264316174949026e-05" /> - <width sOffset="21.172911185070411" a="3.5384977130190425" b="0.0070957593293242303" c="-0.0004938833276736073" d="-2.9902261832390001e-05" /> - <width sOffset="23.945947339827285" a="3.5537390482023445" b="0.0036668257653969891" c="-0.00034057114406447814" d="-1.358128051536563e-05" /> - <width sOffset="27.117664499193502" a="3.5615097729961986" b="0.0010965606030548854" c="-0.0017914420909780761" d="0.00035424359300119152" /> - <width sOffset="30.963873804680134" a="3.5593818204852039" b="0.0030373610089362213" c="-0.00022923168496736184" d="3.1790241171561893e-07" /> - <width sOffset="31.759366777605617" a="3.5616531199652153" b="0.0026732601343976595" c="-0.00022744893864568667" d="2.0170880185369173e-07" /> - <width sOffset="35.308477350710262" a="3.5682848441117048" b="0.0010663995530934291" c="-4.9168952406109884e-05" d="2.6974879347996047e-06" /> - <width sOffset="35.450393300760382" a="3.5684352006579632" b="0.0010526068192550082" c="0.00053881739460267175" d="-0.00012922316584358697" /> - <width sOffset="39.712197218884853" a="3.5727049489088865" b="-0.001395955489476865" c="-0.0018574177651475602" d="0.00050828873101392276" /> - <width sOffset="41.971430186892754" a="3.5659319461651329" b="-0.0020055136131446128" c="0.00070349507974832421" d="-4.2525689221983281e-05" /> - <width sOffset="42.345822370140823" a="3.5652774744246365" b="-0.0014966299101873389" c="0.0006556995121763154" d="-4.2484972154149318e-05" /> - <width sOffset="49.88170111223161" a="3.5730540726497657" b="0.0011478171669874943" c="0.00016641007059479024" d="-1.0658626519555393e-05" /> - <width sOffset="50.351893413245911" a="3.5736294495467291" b="0.0012972373819666876" c="7.2505752160140484e-05" d="-8.5248948992459222e-06" /> - <width sOffset="52.932277962676025" a="3.5773131241563481" b="0.0015011367449921115" c="1.1550679410908985e-05" d="-8.219640835586406e-06" /> - <width sOffset="59.056482243203611" a="3.5850516112299453" b="0.00071775964470764328" c="4.9482521429776071e-05" d="-1.4988919932667724e-07" /> - <width sOffset="60.195625742760413" a="3.5859332317868096" b="0.00082991151974471603" c="-9.9289537824887603e-05" d="1.8942131516873227e-06" /> - <width sOffset="63.518733555211234" a="3.5876641707319186" b="0.00023276548831372996" c="-7.8960314311248106e-05" d="2.1276580723297342e-06" /> - <width sOffset="74.105189147746444" a="3.5838033829009754" b="-0.00072369489615645936" c="-1.489814580786725e-05" d="3.0136648142497063e-06" /> - <width sOffset="76.660186301585384" a="3.5819073543099376" b="-0.00074080463017521178" c="0.0020788883905008258" d="-0.00086188717410266933" /> - <width sOffset="77.202537490049124" a="3.5819795755940529" b="0.0007536116269544384" c="0.00067314868044649227" d="-0.00087767187414438774" /> - <width sOffset="78.97129317303893" a="3.5805618359301734" b="-0.0051024978615678007" c="-0.00016826833605364157" d="4.4145076865777237e-05" /> - <width sOffset="82.201332499120795" a="3.5638126646284265" b="-0.0048078073849334418" c="0.00091027026510589343" d="-5.2114669351161096e-05" /> - <width sOffset="84.691644740281646" a="3.556680043288309" b="-0.0012436846254252781" c="0.00050913616358647345" d="-5.583542257834353e-05" /> - <width sOffset="87.47781866586223" a="3.5559595944512421" b="0.00029308736517944314" c="-2.8642556796761015e-05" d="-3.4986683174314937e-05" /> - <width sOffset="93.372153211811323" a="3.5495271656987781" b="-0.0036912161248930961" c="-0.00076490079276904041" d="0.00011610959205709136" /> - <width sOffset="95.278100332816848" a="3.5405171954302874" b="-0.0053415859479523063" c="-0.00010667282490823755" d="0.00011343654431795416" /> - <width sOffset="99.295669360320744" a="3.5246912361152027" b="-0.00070582637751451759" c="0.010288538143098486" d="-0.0067977036084651103" /> - <width sOffset="100.46269294720921" a="3.5270755216831398" b="-0.004466168999960907" c="-0.00041160152658686953" d="8.7923368081287067e-05" /> - <width sOffset="104.83630763744256" a="3.5070246289047255" b="-0.0030210140875156495" c="0.00075935594754310937" d="-2.9613973075912645e-05" /> - <width sOffset="104.86226102202959" a="3.5069467343321588" b="-0.0029816582155975132" c="0.00049751417183714944" d="-2.8924514238364195e-05" /> - <width sOffset="105.86455592535205" a="3.5044289096766228" b="-0.0020715186515737139" c="0.00042370569641026363" d="-2.2205171276819545e-05" /> - <width sOffset="114.98339950951529" a="3.5039342476692656" b="0.00011659293105904561" c="-0.00042177430479460761" d="-2.8662121843263385e-05" /> - <width sOffset="116.30550754578539" a="3.5032849091331579" b="-0.0011489710227435823" c="-0.00017106738093162674" d="3.2578370843615689e-05" /> - <width sOffset="116.45101151788727" a="3.5031142079070028" b="-0.0011966837998445984" c="-0.00015909741349693978" d="3.1230873334339746e-05" /> - <width sOffset="120.90991893522407" a="3.4973838130281409" b="-0.00075270195522528823" c="0.00029503340018931153" d="-1.1544242029026517e-05" /> - <width sOffset="127.03746711042247" a="3.5011931843142694" b="0.0015626111355851258" c="7.8524865868169626e-05" d="-1.2116803858150069e-05" /> - <width sOffset="129.78302502917109" a="3.505824578564412" b="0.0017197876585400564" c="0.00029225790282542421" d="-3.1401235727516452e-05" /> - <width sOffset="132.91483176579231" a="3.513112583801921" b="0.002626408129872383" c="7.226216965476793e-05" d="-1.006230460202445e-05" /> - <width sOffset="137.62392270295769" a="3.5260322584896331" b="0.0026375753485725546" c="-7.3650853604257429e-05" d="-9.9625488554020304e-06" /> - <width sOffset="139.07836271864662" a="3.5296820009817456" b="0.0023601096504306325" c="-0.00024021826124075515" d="7.4737029839060665e-05" /> - <width sOffset="139.74943195638275" a="3.5311802054563186" b="0.0021386733387721612" c="8.0032877374435157e-05" d="2.3573574847409853e-05" /> - <width sOffset="143.87151787404144" a="3.5430069988535822" b="0.0040001358517921335" c="0.0025761673028759664" d="-0.00052243893721185604" /> - <width sOffset="145.59349841446996" a="3.554866452768902" b="0.0082249213552404443" c="-0.0014072791801436042" d="-4.1839537178042937e-05" /> - <roadMark sOffset="0" color="standard" width="0.31142079886616042" weight="bold" type="solid"> - <type name="solid"> - <line length="148.21037829549289" space="0" width="0.311421" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4931786441895127" b="0.0050075877079636955" c="-0.01106556567437162" d="0.0045499188058222492" /> - <width sOffset="1.3048470945821915" a="2.4909806635404523" b="-0.00062972537792881089" c="0.001162710287884128" d="-0.00033006046529853269" /> - <width sOffset="2.2881305444766498" a="2.4911718439821069" b="0.00069946892690105414" c="0.0012680003143481975" d="-0.00037478983786165722" /> - <width sOffset="4.1994216883146001" a="2.4945239939474622" b="0.0014391445914239721" c="-0.0009685715129283273" d="0.00013109400953496801" /> - <width sOffset="8.1933729825621846" a="2.4931735691205255" b="-2.4214235365615719e-05" c="-0.00049444424638316314" d="0.00010610019403017363" /> - <width sOffset="10.586455592535206" a="2.4917381003818511" b="-0.00056784819149890454" c="0.00026766367790527479" d="9.8877609792621626e-05" /> - <width sOffset="12.295966197753726" a="2.4920435698446148" b="0.0012141872446412953" c="-0.00026715388666988319" d="1.6572761912127438e-05" /> - <width sOffset="19.786800306254861" a="2.4931141784775166" b="1.5984151637222013e-06" c="-0.0003827320196509426" d="6.8035988268260584e-05" /> - <width sOffset="21.172911185070411" a="2.4925622390674311" b="-0.00066726629676323868" c="-0.00012103422876469976" d="5.2292304485501225e-05" /> - <width sOffset="23.945947339827285" a="2.4908962407856388" b="-0.00013218984969758617" c="-8.808121902294419e-05" d="3.5971323168479023e-05" /> - <width sOffset="27.117664499193502" a="2.4907386235200368" b="0.00039466456584390935" c="0.0015758343753361622" d="-0.00033185355034807664" /> - <width sOffset="30.963873804680134" a="2.496686538678321" b="-0.0022110110426947376" c="0.00027197434053064098" d="2.2072140243642432e-05" /> - <width sOffset="31.759366777605617" a="2.4951109137690368" b="-0.0017364013376592238" c="0.00031567223892938157" d="2.4122150226573203e-05" /> - <width sOffset="33.961157470557765" a="2.4930755436731866" b="4.5110898888778197e-06" c="-0.00016927838113556308" d="8.7071218874920054e-06" /> - <width sOffset="35.450393300760382" a="2.4927355906242967" b="-0.00044174719613720602" c="-0.00071721540462275977" d="0.00014062777606552325" /> - <width sOffset="39.712197218884853" a="2.4887117651163688" b="0.0011076453065905646" c="0.0018248323927132183" d="-0.00049688412079201794" /> - <width sOffset="41.971430186892754" a="2.4947985993247208" b="0.0017445994977146819" c="-0.00065878343801291546" d="5.3930299490004404e-05" /> - <width sOffset="42.345822370140823" a="2.4953622525640036" b="0.0012739909088850814" c="-0.00059779250133209822" d="5.3653638020963864e-05" /> - <width sOffset="48.467105829969924" a="2.493067636453441" b="-1.3300444666458112e-05" c="0.00014032018844711353" d="4.2057032516301426e-05" /> - <width sOffset="49.88170111223161" a="2.4934486652051513" b="0.00063617054473648089" c="-0.00015239412616468729" d="1.023068688151669e-05" /> - <width sOffset="52.932277962676025" a="2.494261605861694" b="-7.9885389032332416e-06" c="-5.9435560668877701e-05" d="1.015244447651089e-05" /> - <width sOffset="59.056482243203611" a="2.4943154516458961" b="0.00040634946490318655" c="-6.1856749693821046e-05" d="2.0826928399736783e-06" /> - <width sOffset="63.518733555211234" a="2.4950820620924592" b="-2.1281477637666996e-05" c="-3.4400976425674774e-05" d="1.8744461317920965e-06" /> - <width sOffset="74.105189147746444" a="2.493225292987332" b="-0.00011942565594179073" c="2.1464651965524424e-05" d="3.4134412090444609e-06" /> - <width sOffset="76.052244819685299" a="2.4930993333999405" b="2.9814197341137758e-06" c="-0.00047804658901152156" d="3.8523488119235912e-05" /> - <width sOffset="76.660186301585384" a="2.4929331192038164" b="-0.00053555326698207558" c="-0.0024784733308895832" d="0.00090342432703288276" /> - <width sOffset="78.97129317303893" a="2.4896093165665283" b="0.002484563864451375" c="-3.0487149837075738e-05" d="-1.8392623977160925e-05" /> - <width sOffset="82.201332499120795" a="2.4966966562335848" b="0.0017119352407190872" c="-0.00085948144427658215" d="7.786712223965597e-05" /> - <width sOffset="84.691644740281646" a="2.4968322863868764" b="-0.0011201039851654435" c="-0.00028421519702147399" d="8.4006542583420002e-05" /> - <width sOffset="88.202317368094583" a="2.4930318962432905" b="-9.5798822955526011e-06" c="-0.00031397297752130168" d="4.9655665317677793e-05" /> - <width sOffset="93.372153211811323" a="2.4914519344097359" b="0.0007255137005520401" c="0.00057375052781181394" d="-0.00010144060991351483" /> - <width sOffset="95.278100332816848" a="2.4942166159460699" b="0.0018071000779389945" c="-6.3118645417979344e-06" d="-9.9465400532216806e-05" /> - <width sOffset="99.295669360320744" a="2.4949248512259432" b="-0.0030599882053408923" c="-0.010233132728891297" d="0.0068116747522508443" /> - <width sOffset="100.46269294720921" a="2.4882434363173083" b="0.00088675701609841617" c="0.00051592090379547098" d="-7.3952224295547534e-05" /> - <width sOffset="104.83630763744256" a="2.4958036698803001" b="0.001155848925430485" c="-0.00047172337199552776" d="4.3585133406750785e-05" /> - <width sOffset="105.86455592535205" a="2.496540803082997" b="0.00032399839713162602" c="-0.00034485294431281348" d="3.2708074214653919e-05" /> - <width sOffset="112.34118854917809" a="2.4930596819494069" b="-2.6979049178987597e-05" c="-0.00013771407506907941" d="4.2821555656405357e-05" /> - <width sOffset="116.30550754578539" a="2.4934563299299199" b="0.00090006414152699824" c="7.1706558034580886e-06" d="-1.841893674188866e-05" /> - <width sOffset="116.45101151788727" a="2.4935873879105523" b="0.0009009809949618667" c="7.6919383657401096e-06" d="-1.6360910136280783e-05" /> - <width sOffset="120.90991893522407" a="2.4963072919491136" b="-6.2794694577035992e-06" c="-0.00024752750772252666" d="2.6414205227083904e-05" /> - <width sOffset="127.03746711042247" a="2.4930520559706846" b="-6.4442587683922201e-05" c="0.00024475692321598315" d="2.6589305940767761e-05" /> - <width sOffset="127.16617018263801" a="2.4930478729687611" b="-1.1933757310925337e-07" c="-8.2741339227456753e-05" d="1.2039848263245942e-05" /> - <width sOffset="132.91483176579231" a="2.4926001148583996" b="0.00024222331584709714" c="4.9865628707895997e-05" d="-9.2990828622228242e-06" /> - <width sOffset="137.62392270295769" a="2.4938754917817123" b="9.3230395385698059e-05" c="-7.8042327128765708e-05" d="-1.0219026921748715e-05" /> - <width sOffset="139.74943195638275" a="2.493622945772592" b="-0.00037703122178797709" c="-0.00031299420965715099" d="4.0944428070926071e-05" /> - <width sOffset="145.59349841446996" a="2.488902047437664" b="0.00015978986094943121" c="0.0016894090992432586" d="-0.00043965497196297168" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276670170" type="poles" s="16.65104144346698" t="-10.270831531400715" zOffset="-2.0605170940281368" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.8394829059718631" name="SgPoleSign01.flt" /> - <object id="276670214" type="poles" s="16.596371004345425" t="8.0935834179688477" zOffset="-1.6368986585042307" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.2631013414957692" name="SgPoleSign01.flt" /> - <object id="5177140" s="0" t="6.9375071576389189" orientation="none" validLength="32.0495409724358" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="32.0495409724358" s="0" distance="0" tStart="6.9375071576389189" tEnd="7.1584541504012007" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273612596" s="32.0495409724358" t="7.1584541504012007" orientation="none" validLength="19.132452450103159" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.132452450103159" s="32.0495409724358" distance="0" tStart="7.1584541504012007" tEnd="7.1938409741993947" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542048052" s="51.181993422538959" t="7.1938409741993947" orientation="none" validLength="22.508535698150006" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="22.508535698150006" s="51.181993422538959" distance="0" tStart="7.1938409741993947" tEnd="7.0073577266187863" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810483508" s="73.690529120688964" t="7.0073577266187863" orientation="none" validLength="64.53429806233315" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="64.53429806233315" s="73.690529120688964" distance="0" tStart="7.0073577266187863" tEnd="6.6726562780802521" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078918964" s="138.22482718302211" t="6.6726562780802521" orientation="none" validLength="9.9855511124707732" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.9855511124707732" s="138.22482718302211" distance="0" tStart="6.6726562780802521" tEnd="6.6965909913093826" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5182586" s="0" t="-8.6886518379395703" orientation="none" validLength="9.7650576938798821" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.7650576938798821" s="0" distance="0" tStart="-8.6886518379395703" tEnd="-8.4607707080464518" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273618042" s="9.7650576938798821" t="-8.4607707080464518" orientation="none" validLength="19.23803471782669" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.23803471782669" s="9.7650576938798821" distance="0" tStart="-8.4607707080464518" tEnd="-8.3307239261815056" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542053498" s="29.003092411706572" t="-8.3307239261815056" orientation="none" validLength="17.602449692475449" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.602449692475449" s="29.003092411706572" distance="0" tStart="-8.3307239261815056" tEnd="-8.3262831520653098" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810488954" s="46.605542104182021" t="-8.3262831520653098" orientation="none" validLength="72.0636002032645" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="72.0636002032645" s="46.605542104182021" distance="0" tStart="-8.3262831520653098" tEnd="-8.6381763515800394" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078924410" s="118.66914230744652" t="-8.6381763515800394" orientation="none" validLength="29.541235988046367" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="29.541235988046367" s="118.66914230744652" distance="0" tStart="-8.6381763515800394" tEnd="-8.5591938001732633" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412777" s="39.575889489214426" t="-8.2087284560232163" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848233" s="89.589984927751487" t="-8.6760988498597911" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283689" s="139.42088615008191" t="-8.5356415469115348" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412810" s="39.176529761197692" t="7.2731953242093859" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848266" s="88.649586625591851" t="7.0568956102114919" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283722" s="138.06917632885515" t="6.8385794195310412" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8234714" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="1.8394829059718631" s="16.65104144346698" t="-10.270831531400715" orientation="+" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8234758" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.2631013414957692" s="16.596371004345425" t="8.0935834179688477" orientation="+" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - </signals> - </road> - <road name="" length="1163.1043927229293" id="4940763" junction="-1"> - <link> - <successor elementType="junction" elementId="33555309" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-415.30543576688046" y="310.38136974918422" hdg="4.4187803177054619" length="95.996254286175144"> - <paramPoly3 aU="0" bU="96.00370961624435" cU="0.098741341877372157" dU="-0.13013449729593862" aV="0" bV="3.5527136788005009e-15" cV="6.690181735028065" dV="-4.8811209658585195" /> - </geometry> - <geometry s="95.996254286175144" x="-441.34898070272914" y="217.99256093070298" hdg="4.4055988556460264" length="51.494086941831796"> - <paramPoly3 aU="0" bU="52.539136320613231" cU="-2.2406611966577872" dU="1.1594841169444152" aV="0" bV="3.3750779948604759e-14" cV="-2.9738112840281974" dV="1.1939724641736014" /> - </geometry> - <geometry s="147.49034122800694" x="-458.58602893160355" y="169.47479548526815" hdg="4.3597273594658761" length="107.0039687322692"> - <paramPoly3 aU="0" bU="107.10641626350123" cU="-0.34047932781930457" dU="0.16235087749368338" aV="0" bV="-1.4210854715202004e-14" cV="6.6263980573801806" dV="-2.8838306796496895" /> - </geometry> - <geometry s="254.49430996027615" x="-492.0064845595723" y="67.834553991787118" hdg="4.4027388486051411" length="260.49755919956112"> - <paramPoly3 aU="0" bU="260.52616177030018" cU="-0.07550874916736286" dU="0.036898948699666534" aV="0" bV="1.1368683772161603e-13" cV="-0.16479284728326593" dV="-1.5642012670743379" /> - </geometry> - <geometry s="514.99186915983728" x="-573.03042851139458" y="-179.73740455436084" hdg="4.3834611507182339" length="332.00074021005554"> - <paramPoly3 aU="0" bU="331.97225568157307" cU="0.028860084478175008" dU="-0.044463627764962155" aV="0" bV="-4.2632564145606011e-14" cV="8.7963469820543025" dV="-3.7693609651661726" /> - </geometry> - <geometry s="846.99260936989276" x="-675.50441039721761" y="-495.52146451264503" hdg="4.4023943377300458" length="316.11178335303657"> - <paramPoly3 aU="0" bU="316.10148423195994" cU="0.031965184384954631" dU="-0.022706126022018824" aV="0" bV="1.4210854715202004e-13" cV="0.44750325223679882" dV="-0.96960154491015249" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="155.42077433269137" b="-0.00037960631195406181" c="0.00011662216918917177" d="-9.5542206751669507e-07" /> - <elevation s="10.026762006232149" a="155.42772971853643" b="0.0016709163444980255" c="0.00016243062809982421" d="-7.6737855162385225e-06" /> - <elevation s="20.053524012464297" a="155.45307815727608" b="0.0026137487488272155" c="-0.00011102209035363551" d="5.6103801987092402e-06" /> - <elevation s="30.080286018696448" a="155.47377942625789" b="0.002079499409956605" c="-0.00012193063842803875" d="1.0397859515416379e-05" /> - <elevation s="40.107048024928595" a="155.49285322199239" b="0.0027704366748751174" c="0.00020946639816124156" d="-1.6533666513184165e-05" /> - <elevation s="50.133810031160742" a="155.52502387154198" b="0.0019842921965920056" c="-0.00020716005156972621" d="9.256452665112541e-06" /> - <elevation s="56.000445592686212" a="155.531404088946" b="0.00050937660330829218" c="6.1548958841364936e-05" d="1.0106115538891796e-05" /> - <elevation s="60.160572037392896" a="155.53531598513743" b="0.0015461885811486067" c="0.00012133873497586654" d="-4.8247811723188917e-06" /> - <elevation s="70.187334043625043" a="155.5581545346401" b="0.0025242658489085064" c="4.1307583615366073e-05" d="-1.8793263724054532e-06" /> - <elevation s="80.21409604985719" a="155.58572318981888" b="0.0027858088465203532" c="-0.00031493905485746533" d="1.758923557846518e-05" /> - <elevation s="90.240858056089337" a="155.59972396386235" b="0.0017752228074373068" c="6.9813892843563538e-06" d="2.8608307786034608e-06" /> - <elevation s="100.26762006232148" a="155.62110944188177" b="0.0027780733397638436" c="4.8191619292078556e-05" d="1.4001194167384705e-06" /> - <elevation s="110.29438206855363" a="155.65522090315619" b="0.0041667721680494988" c="3.1738173559414995e-05" d="-1.0575919391235564e-07" /> - <elevation s="120.32114407478579" a="155.70008435308364" b="0.0047713365885331009" c="0.00020086614989586515" d="-1.1828854086846825e-06" /> - <elevation s="130.34790608101792" a="155.76692727221953" b="0.0084426432013896772" c="0.00059361495452316311" d="-4.1747342746225877e-05" /> - <elevation s="140.37466808725009" a="155.86917588011789" b="0.0077553878644410178" c="-0.00013008047881339331" d="-1.0575919391231415e-07" /> - <elevation s="150.40143009348222" a="155.93375293259658" b="0.0051149180539019129" c="-0.00012828621726165371" d="6.70843221037738e-06" /> - <elevation s="160.42819209971438" a="155.97890405687687" b="0.0045656432588052891" c="1.9309399554860715e-05" d="-1.5148215271247499e-06" /> - <elevation s="170.45495410594654" a="156.0250969481859" b="0.0044959826737504087" c="-1.7633937212983116e-05" d="4.4331184500301294e-07" /> - <elevation s="180.48171611217867" a="156.0688511322511" b="0.0042760664312844416" c="2.4694926487399964e-05" d="-3.5464832499429535e-06" /> - <elevation s="190.50847811841084" a="156.11063392791107" b="0.0037016394771655688" c="-9.2494318419230842e-05" d="4.3831611174294382e-06" /> - <elevation s="200.53524012464297" a="156.14286882725841" b="0.003168798325791733" c="-2.4317860961721761e-05" d="1.7553547910831363e-06" /> - <elevation s="210.56200213087513" a="156.1739662800945" b="0.0032105683349220497" c="3.213174510070603e-05" d="-2.3307026863908487e-06" /> - <elevation s="220.58876413710726" a="156.20703881532293" b="0.0031519647863724833" c="-3.3865371085380775e-05" d="1.7091728469657034e-06" /> - <elevation s="230.61552614333942" a="156.23696106049096" b="0.0029883447342277342" c="6.6132707293806277e-06" d="-8.3023289235377189e-07" /> - <elevation s="240.64228814957158" a="156.26675243707476" b="0.0028705593441730169" c="-5.133330099726397e-05" d="3.9072067258556864e-06" /> - <elevation s="250.66905015580372" a="156.29431267009502" b="0.0030195900542696026" c="-2.4870211732218181e-05" d="-1.0575919426514268e-07" /> - <elevation s="255.99430995864179" a="156.30967152110949" b="0.002745711894566218" c="3.9184953672982035e-06" d="-4.0405514163074812e-10" /> - <elevation s="260.69581216203585" a="156.32266706454467" b="0.0027825307299192835" c="1.5757650913179014e-05" d="-4.2093928983028019e-07" /> - <elevation s="270.72257416826801" a="156.35172672055646" b="0.0029715685587073559" c="1.5352755899009986e-05" d="-8.0230525734205969e-07" /> - <elevation s="280.74933617450017" a="156.38225667137579" b="0.0030374638388401569" c="1.1703088822938265e-05" d="-1.2414260345575686e-06" /> - <elevation s="290.77609818073233" a="156.41263775997001" b="0.0028977281507807499" c="-3.7401198830955527e-06" d="4.0728185905282748e-07" /> - <elevation s="300.80286018696444" a="156.44172713448907" b="0.0029455649804823398" c="8.2314474733531577e-05" d="-4.4828631828725968e-06" /> - <elevation s="310.8296221931966" a="156.47501822724738" b="0.003244193464569777" c="-1.0656469724218559e-05" d="3.0574548832706238e-07" /> - <elevation s="320.85638419942876" a="156.50678383141627" b="0.0031227089382543454" c="-1.7440324682114332e-06" d="-4.0405514164195782e-10" /> - <elevation s="330.88314620566092" a="156.537918745475" b="0.0030876130750643253" c="-2.1062297854244438e-05" d="1.0639020600624015e-06" /> - <elevation s="340.90990821189308" a="156.56783245527441" b="0.0029861210124348414" c="-1.8651419064582414e-05" d="1.8865516083324918e-06" /> - <elevation s="350.93667021812519" a="156.5978001802863" b="0.003181093142683378" c="3.5525397410485369e-05" d="-1.1042309280460463e-06" /> - <elevation s="360.96343222435735" a="156.63215470384495" b="0.0035604578156273152" c="3.7683923843467606e-05" d="-2.424546486516356e-06" /> - <elevation s="370.99019423058951" a="156.66919909197173" b="0.0035848909882435376" c="-2.2339290915703305e-05" d="1.136399850311715e-06" /> - <elevation s="381.01695623682167" a="156.70404358674412" b="0.0034796566186158367" c="1.2746528877824342e-05" d="-1.2272257813018276e-06" /> - <elevation s="391.04371824305377" a="156.73897765491265" b="0.0033651284888762262" c="-4.7339130085257089e-05" d="3.2980435514686402e-06" /> - <elevation s="401.07048024928594" a="156.77128430583161" b="0.0034105279943732682" c="0.00010975048474720857" d="-6.7316664452868591e-06" /> - <elevation s="411.0972422555181" a="156.80972887120677" b="0.0035810884043242118" c="-1.0293462687417583e-05" d="6.2648345738292314e-07" /> - <elevation s="421.12400426175026" a="156.84523225596138" b="0.0035636205436887169" c="-4.0199648888841882e-06" d="6.264834573829351e-07" /> - <elevation s="431.15076626798242" a="156.88119120673528" b="0.003671958421798256" c="0.00021514869797124471" d="-1.3655080142594432e-05" /> - <elevation s="441.17752827421452" a="156.92587423502968" b="0.0038679683801350279" c="-3.9421318359716052e-05" d="2.7675577581005482e-06" /> - <elevation s="451.20429028044668" a="156.96348401037855" b="0.00391214922352976" c="6.9398000303720321e-05" d="-3.127760517342279e-06" /> - <elevation s="461.23105228667885" a="157.00653425457892" b="0.0043604665046943162" c="8.372793492531591e-05" d="-7.685497864908305e-06" /> - <elevation s="471.25781429291101" a="157.05092591552034" b="0.0037215000250797408" c="-7.4065569355060673e-05" d="2.221121142018675e-06" /> - <elevation s="481.28457629914317" a="157.0830332591371" b="0.0029061319659315515" c="-0.00017855870437728474" d="1.4862857855425147e-05" /> - <elevation s="491.31133830537527" a="157.10920328806691" b="0.0038081555849262738" c="7.893137003172452e-05" d="-5.1056026758784252e-06" /> - <elevation s="501.33810031160743" a="157.15017549524555" b="0.0038511177662186456" c="-2.1596518367499984e-05" d="1.5775607915524782e-06" /> - <elevation s="511.3648623178396" a="157.18820877024297" b="0.0038938362150908838" c="0.00020717526980187312" d="-1.3633992856669587e-05" /> - <elevation s="521.3916243240717" a="157.23433615517976" b="0.0039363109315420572" c="-0.00018513909183406153" d="8.8866849996440122e-06" /> - <elevation s="531.41838633030386" a="157.26414969618773" b="0.0029039138329197862" c="-0.00012216041871100815" d="1.1491503947879331e-05" /> - <elevation s="541.44514833653602" a="157.29256904634266" b="0.0039200949601228708" c="7.0959893320646042e-06" d="-4.0405514239002259e-10" /> - <elevation s="551.47191034276818" a="157.33258790031545" b="0.0040622726863751733" c="0.00013577061087954688" d="-8.632586492548103e-06" /> - <elevation s="561.49867234900034" a="157.37826709021326" b="0.0041812958759556394" c="-1.8024503936585453e-06" d="-4.0405514033152893e-10" /> - <elevation s="571.52543435523251" a="157.42001033045722" b="0.004145028527495302" c="-6.8470238197021298e-05" d="3.9124250323548951e-06" /> - <elevation s="575.99164018088914" a="157.43750565325803" b="0.0037675475355966161" c="-1.3484675770644262e-05" d="3.8852374983426061e-06" /> - <elevation s="581.55219636146467" a="157.4587063632689" b="0.0039779750660008497" c="1.5608704499527072e-05" d="-3.7806786008632686e-07" /> - <elevation s="591.57895836769683" a="157.49978069720945" b="0.0041769563548717586" c="1.8719389709728489e-05" d="-1.1215571605848595e-06" /> - <elevation s="601.60572037392888" a="157.54241343042062" b="0.0042140756207612829" c="-9.4232475633666948e-05" d="6.8381063492316735e-06" /> - <elevation s="611.63248238016104" a="157.58208636552939" b="0.0043868090917985585" c="3.4993077201598469e-05" d="-2.2438575850340224e-06" /> - <elevation s="621.6592443863932" a="157.62732799786193" b="0.0044117785011942232" c="-9.690986631026093e-05" d="5.4962629773166464e-06" /> - <elevation s="631.68600639262536" a="157.66736143331372" b="0.0041261103340875481" c="1.4573417260984114e-05" d="-1.8123005018608539e-07" /> - <elevation s="641.71276839885752" a="157.7100154231149" b="0.0043636982978409872" c="6.3641753554681581e-06" d="-5.0590781232638854e-07" /> - <elevation s="651.73953040508968" a="157.75389903544553" b="0.0043387366639708247" c="-4.9530900518888911e-05" d="1.5329253107064622e-06" /> - <elevation s="661.76629241132184" a="157.79396814445508" b="0.0038078098973375681" c="-5.8205631434016493e-05" d="3.8758251979805025e-06" /> - <elevation s="671.793054417554" a="157.83020341524693" b="0.0038095612482511049" c="3.4820976780921489e-05" d="-1.5813642663555958e-06" /> - <elevation s="681.81981642378616" a="157.87030764501412" b="0.0040308926357941295" c="-1.2737126592221111e-06" d="3.8192335124317882e-07" /> - <elevation s="691.84657843001821" a="157.91098139010077" b="0.004120541296482972" c="7.2873708413004852e-06" d="-2.4129542409295635e-07" /> - <elevation s="701.87334043625037" a="157.95278648193599" b="0.0041939021639792818" c="1.2860918406692917e-05" d="-1.0936411719462592e-06" /> - <elevation s="711.90010244248253" a="157.99502828044234" b="0.0041219581167610524" c="-1.0835408222498994e-05" d="1.2084245352651933e-07" /> - <elevation s="721.9268644487147" a="158.03539064059908" b="0.0039411170326778319" c="-1.6973813250557627e-05" d="7.9870385492553456e-07" /> - <elevation s="731.95362645494686" a="158.0740059380833" b="0.0038416276287119694" c="3.0072606947947989e-07" d="-1.8061872717290002e-07" /> - <elevation s="741.98038846117902" a="158.11237318508867" b="0.0037931822167653483" c="1.3315965038431128e-05" d="-1.714470688096259e-06" /> - <elevation s="752.00715046741118" a="158.15001698134117" b="0.0035431163907320819" c="-4.4713271184004692e-05" d="2.3033107289153157e-06" /> - <elevation s="762.03391247364334" a="158.18336952729948" b="0.003341154373935147" c="2.0652977276636553e-05" d="-1.967739938646586e-06" /> - <elevation s="772.0606744798755" a="158.21696327339851" b="0.0031618335000615848" c="3.1632504948968335e-06" d="-2.2463584873133959e-06" /> - <elevation s="782.08743648610755" a="158.24671980390667" b="0.0025477484234748158" c="-3.2956341654640161e-05" d="1.335898897380576e-06" /> - <elevation s="792.11419849233971" a="158.27029882670192" b="0.002289775254364035" c="0.00014623069825738948" d="-8.3645085808385384e-06" /> - <elevation s="802.14096049857187" a="158.29952745754775" b="0.0026994144650222566" c="-6.2974163851103909e-06" d="-1.5720995103762851e-06" /> - <elevation s="812.16772250480403" a="158.3243759720861" b="0.0020989714911639353" c="-5.9333633825306282e-05" d="2.5346382799477527e-06" /> - <elevation s="822.19448451103619" a="158.34201173845651" b="0.001673589890774029" c="-1.9532726489903675e-05" d="1.0446257389307729e-06" /> - <elevation s="831.9926112686785" a="158.35751720807312" b="0.0015916841475025125" c="2.5880733096157817e-05" d="1.0729837192463306e-06" /> - <elevation s="832.22124651726836" a="158.35788248888926" b="0.0016036869108930162" c="3.1891504854780807e-05" d="-1.5975236692182168e-06" /> - <elevation s="842.24800852350052" a="158.37555813491068" b="0.0017613982597598078" c="1.6683495126881822e-05" d="-1.6767726925820266e-06" /> - <elevation s="852.27477052973268" a="158.39320627630451" b="0.0015902332913101836" c="-2.7334552914582632e-05" d="1.0380435266177151e-06" /> - <elevation s="862.30153253596484" a="158.40744946152105" b="0.0013551612740484759" c="-2.8155819778452012e-06" d="-3.6773300705212241e-07" /> - <elevation s="872.32829454219689" a="158.42038358057206" b="0.0011877877646328415" c="-3.4398837679747121e-06" d="-6.7166968624575126e-07" /> - <elevation s="882.35505654842905" a="158.43127033709845" b="0.00091622511015867613" c="-2.1112441219223985e-05" d="7.6638929744723167e-10" /> - <elevation s="892.38181855466121" a="158.43833532131254" b="0.00049307741225004483" c="-9.0933168387374484e-05" d="6.0331728272455675e-06" /> - <elevation s="902.40858056089337" a="158.44021897864508" b="0.00048919933613141432" c="1.6115471854299432e-05" d="7.6638929744733279e-10" /> - <elevation s="912.43534256712553" a="158.44674502089549" b="0.00081260248697662" c="2.56647918506981e-05" d="-1.8178763031408617e-06" /> - <elevation s="922.46210457335769" a="158.45564051662856" b="0.00077898620875382788" c="-4.5416711604395201e-05" d="2.9097753302356121e-06" /> - <elevation s="932.48886657958985" a="158.4618184127489" b="0.0007458322286166473" c="2.46672590430742e-06" d="7.6638929745377105e-10" /> - <elevation s="942.51562858582201" a="158.46954546220843" b="0.00079552992481366619" c="0.00017010144370536892" d="-1.117234239158634e-05" /> - <elevation s="952.54239059205418" a="158.48336108180402" b="0.00083699693037384308" c="-1.4588411741847773e-05" d="5.2030718984747801e-07" /> - <elevation s="962.56915259828634" a="158.49081128661751" b="0.00070137660795446431" c="-9.356046572937479e-06" d="5.2030718984749336e-07" /> - <elevation s="972.59591460451838" a="158.49742769957103" b="0.00067068364609181215" c="2.9950299173968998e-05" d="-1.7722706712202609e-06" /> - <elevation s="982.62267661075055" a="158.50537702920161" b="0.00073676190933928709" c="1.242634909204877e-06" d="-6.7990437857415667e-07" /> - <elevation s="992.64943861698271" a="158.51220391732912" b="0.00055661660759180576" c="-1.3377867174483192e-05" d="7.9028272001126297e-07" /> - <elevation s="1002.6762006232149" a="158.51723666749274" b="0.00052669871405406699" c="2.9527549299021301e-05" d="-1.5821991273803466e-06" /> - <elevation s="1012.702962629447" a="158.52389139455448" b="0.00064162642582599216" c="-1.0300008814718715e-05" d="8.0926013018466348e-07" /> - <elevation s="1022.7297246356792" a="158.53010508354774" b="0.00067915417505408089" c="1.2280563468438555e-05" d="-6.3197730434289343e-07" /> - <elevation s="1032.7564866419114" a="158.53751237422975" b="0.00073481342144282027" c="3.1097756599010261e-05" d="-3.139118725746448e-06" /> - <elevation s="1042.7832486481434" a="158.54484222725696" b="0.00041165012075943831" c="-1.1908594302741095e-05" d="7.6638929749396706e-10" /> - <elevation s="1052.8100106543757" a="158.54777327568971" b="0.00017307198799755398" c="-2.5397764446867299e-05" d="3.4654793895722243e-07" /> - <elevation s="1062.8367726606077" a="158.54730457647301" b="-0.000231721105829238" c="-4.1734052277981535e-05" d="2.3238971901553192e-06" /> - <elevation s="1072.86353466684" a="158.54312799604739" b="-0.00036773024605122478" c="1.2929801673526846e-05" d="-8.0246813827159167e-07" /> - <elevation s="1082.890296673072" a="158.53993183427136" b="-0.00035047286283030373" c="-4.7167807428413122e-05" d="4.3903170136775001e-06" /> - <elevation s="1092.9170586793043" a="158.53610132519458" b="2.7800536969558903e-05" c="1.1215708881643307e-05" d="7.663892976679552e-10" /> - <elevation s="1102.9438206855364" a="158.53750842913956" b="0.00025294617338728526" c="0.00013763431325209414" d="-9.2334647291271897e-06" /> - <elevation s="1112.9705826917684" a="158.54457406241718" b="0.00022811355879134648" c="-2.1795761129569091e-05" d="7.663892976597111e-10" /> - <elevation s="1122.9973446980007" a="158.54467081765128" b="-0.00020873711134752361" c="-0.00011201746531929724" d="5.8886088461372515e-06" /> - <elevation s="1133.0241067042327" a="158.53725209009096" b="-0.00067903127655103671" c="1.5630516459023996e-05" d="-9.5197772422633147e-07" /> - <elevation s="1143.050868710465" a="158.53105539275938" b="-0.00065270831214155186" c="-2.4421102490098211e-05" d="2.0920492169176842e-06" /> - <elevation s="1153.0776307166971" a="158.52416453339794" b="-0.00051145897120323763" c="1.7539541120213385e-05" d="7.6638927185086246e-10" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.025463469629529185" b="0.00012720128517464073" c="-6.3430888803173551e-06" d="0" /> - <superelevation s="10.026762006232149" a="-0.024825761122862691" b="0" c="-2.7195998683568236e-05" d="1.8082273996107966e-06" /> - <superelevation s="20.053524012464297" a="-0.025737153034859902" b="0" c="2.6321819279127386e-05" d="-1.0982154888229922e-06" /> - <superelevation s="30.080286018696448" a="-0.024197920002518778" b="0.00019661480169126506" c="3.2505188353763096e-05" d="-2.8131175082320567e-06" /> - <superelevation s="40.107048024928595" a="-0.021794333387938212" b="0" c="-0.00010029500092216393" d="6.6684871852498639e-06" /> - <superelevation s="50.133810031160742" a="-0.025155417998868185" b="0" c="4.5200524753033995e-05" d="-2.5460712720154487e-06" /> - <superelevation s="60.160572037392896" a="-0.023177707434879732" b="0.00013851467786461406" c="-3.7570324934631439e-06" d="-2.0945387384331488e-07" /> - <superelevation s="70.187334043625043" a="-0.022377710580231389" b="0" c="-4.4188413970191083e-06" d="-1.0755439285771497e-22" /> - <superelevation s="80.21409604985719" a="-0.022821963025949632" b="-8.8613342062396027e-05" c="-8.0408724820401283e-05" d="4.34051294249005e-06" /> - <superelevation s="90.240858056089337" a="-0.027418981427530905" b="-0.00039195877715694956" c="7.8578985404636675e-06" d="-1.2207758012685287e-07" /> - <superelevation s="100.26762006232148" a="-0.030682117775562661" b="-0.00027119977888162978" c="1.6968611504385175e-05" d="-1.1527947547966623e-06" /> - <superelevation s="110.29438206855363" a="-0.032857492705508674" b="-0.00027861128999602172" c="-4.6233723416129053e-05" d="3.9977749146575664e-06" /> - <superelevation s="120.32114407478579" a="-0.036269255969641541" b="0" c="2.5144665058531299e-05" d="0" /> - <superelevation s="130.34790608101792" a="-0.033741313021394125" b="0.0005042391445366258" c="0.0002299447390655991" d="-1.6960570385905151e-05" /> - <superelevation s="140.37466808725009" a="-0.02266481767542252" b="0" c="-4.5390602114590558e-05" d="2.7004887339843157e-06" /> - <superelevation s="150.40143009348222" a="-0.024505977309642556" b="-9.575287715971723e-05" c="9.2137973057794309e-06" d="-4.4270841800050706e-07" /> - <superelevation s="160.42819209971438" a="-0.02498602296498879" b="-4.450811417885449e-05" c="1.597115040393265e-06" d="-1.2578154589918942e-07" /> - <superelevation s="170.45495410594654" a="-0.025398521846077719" b="-5.0417033382439332e-05" c="-7.8039913730444473e-06" d="6.8603834000927123e-07" /> - <superelevation s="180.48171611217867" a="-0.025997062154560751" b="0" c="1.1013193055384414e-05" d="-4.1286329534804588e-07" /> - <superelevation s="190.50847811841084" a="-0.025306027147623724" b="9.6330512696413855e-05" c="4.3597823744653565e-06" d="-1.6216135629802586e-07" /> - <superelevation s="200.53524012464297" a="-0.024065295905070221" b="0.00013485037212648281" c="1.6772672036531853e-05" d="-1.5622986069427285e-06" /> - <superelevation s="210.56200213087513" a="-0.022601801972095555" b="0" c="-1.9551557882115995e-06" d="5.3777196428857707e-23" /> - <superelevation s="220.58876413710726" a="-0.022798365429036814" b="-3.9207763547012569e-05" c="-1.3455504864664361e-05" d="8.2622910492552393e-07" /> - <superelevation s="230.61552614333942" a="-0.023711374054605806" b="-5.9840853817225549e-05" c="2.984056756310431e-06" d="0" /> - <superelevation s="240.64228814957158" a="-0.024011379054343331" b="0" c="5.3453950929756553e-05" d="-3.309534828836758e-06" /> - <superelevation s="250.66905015580372" a="-0.021973511916968523" b="7.3758341461090734e-05" c="-3.6780738096330417e-06" d="0" /> - <superelevation s="260.69581216203585" a="-0.021603733249066143" b="0" c="-1.3604834898404335e-05" d="6.6113983102767275e-07" /> - <superelevation s="270.72257416826801" a="-0.022305046258751404" b="-7.3419907780850974e-05" c="-1.3785558244619407e-06" d="1.0291501907857513e-07" /> - <superelevation s="280.74933617450017" a="-0.023076061132742354" b="-7.0024830517985201e-05" c="4.6491635398223067e-06" d="-3.9533306519942992e-07" /> - <superelevation s="290.77609818073233" a="-0.023709290879012565" b="-9.602828116991871e-05" c="-1.900637807958905e-05" d="1.5685742310167491e-06" /> - <superelevation s="300.80286018696444" a="-0.025001766575058985" b="-4.0788092111302028e-06" c="2.0339613170215829e-07" d="0" /> - <superelevation s="310.8296221931966" a="-0.0250222151996734" b="0" c="1.6689193530802568e-06" d="-7.9049014577027649e-08" /> - <superelevation s="320.85638419942876" a="-0.024934114164091782" b="9.6259094896159061e-06" c="-6.7632885740362068e-07" d="7.5800831617373305e-08" /> - <superelevation s="330.88314620566092" a="-0.024829181792581579" b="1.8925259799049382e-05" c="1.4065406901672437e-06" d="-5.6129361624153504e-08" /> - <superelevation s="340.90990821189308" a="-0.02455459601226942" b="3.0202300156660648e-05" c="4.2149616443289913e-07" d="-1.401718474144716e-08" /> - <superelevation s="350.93667021812519" a="-0.024223519241158332" b="3.4427090392186142e-05" c="3.8547268910846965e-06" d="-3.7044109306103632e-07" /> - <superelevation s="360.96343222435735" a="-0.023864211528410437" b="0" c="-1.5579881150739028e-05" d="1.0358865032769486e-06" /> - <superelevation s="370.99019423058951" a="-0.024386324278740896" b="0" c="1.096523102143838e-05" d="-7.2906427915099914e-07" /> - <superelevation s="381.01695623682167" a="-0.024018857616369051" b="0" c="-3.0631013176195946e-05" d="2.0366171489963467e-06" /> - <superelevation s="391.04371824305377" a="-0.025045363684040398" b="0" c="2.9051443641319844e-05" d="-1.9315935774854513e-06" /> - <superelevation s="401.07048024928594" a="-0.024071792127628343" b="0" c="-2.3076940098045587e-05" d="1.5092868150059835e-06" /> - <superelevation s="411.0972422555181" a="-0.024870417633905441" b="-7.5611924234151697e-06" c="7.4893158949029747e-07" d="-3.708884593323677e-08" /> - <superelevation s="421.12400426175026" a="-0.024908324772361896" b="-3.7287625950599256e-06" c="-3.5637245033796869e-07" d="3.6057700091688982e-08" /> - <superelevation s="431.15076626798242" a="-0.024945192464142254" b="0" c="4.9661780417600997e-05" d="-3.3019486840473458e-06" /> - <superelevation s="441.17752827421452" a="-0.023280927601703888" b="0" c="-3.9121725841647759e-05" d="2.6011538465645956e-06" /> - <superelevation s="451.20429028044668" a="-0.024591974308622321" b="0" c="6.0553126721402006e-06" d="-4.0261004621941482e-07" /> - <superelevation s="461.23105228667885" a="-0.024389048758499489" b="0" c="-7.4556606686122419e-06" d="1.8670294612692865e-07" /> - <superelevation s="471.25781429291101" a="-0.024950404809032354" b="-9.3201192531515366e-05" c="-1.5974285004894803e-05" d="1.2229946559033752e-06" /> - <superelevation s="481.28457629914317" a="-0.026258061110920543" b="-4.4677088507340948e-05" c="2.2278921390360788e-06" d="0" /> - <superelevation s="491.31133830537527" a="-0.02648204437771778" b="0" c="5.6622538036834243e-05" d="-3.764760614419718e-06" /> - <superelevation s="501.33810031160743" a="-0.024584510707269958" b="0" c="-4.281372225052332e-06" d="2.8466299970626601e-07" /> - <superelevation s="511.3648623178396" a="-0.024727987990952861" b="0" c="2.2182544091413957e-05" d="-1.4748891734358131e-06" /> - <superelevation s="521.3916243240717" a="-0.02398460689626811" b="0" c="-2.6727476885518891e-05" d="1.7770759805213568e-06" /> - <superelevation s="531.41838633030386" a="-0.024880297712589271" b="0" c="2.9438359142811731e-05" d="-1.8874284302190242e-06" /> - <superelevation s="541.44514833653602" a="-0.023823306554780155" b="2.1079575250570647e-05" c="-1.051165632407979e-06" d="-2.6888598214428624e-23" /> - <superelevation s="551.47191034276818" a="-0.023717626612665188" b="0" c="-2.2338849024804334e-05" d="1.485281689869542e-06" /> - <superelevation s="561.49867234900034" a="-0.024466245796002428" b="0" c="1.4139529986324502e-05" d="-9.4011938433936451e-07" /> - <superelevation s="571.52543435523251" a="-0.023992402072926935" b="0" c="-2.5184871128803178e-05" d="1.4269670031583379e-06" /> - <superelevation s="581.55219636146467" a="-0.025085932936414677" b="-7.4660940992262009e-05" c="2.8463711387196295e-06" d="5.8291479836064002e-08" /> - <superelevation s="591.57895836769683" a="-0.025489617045908443" b="0" c="6.8507877558739384e-07" d="-4.555001738756413e-08" /> - <superelevation s="601.60572037392888" a="-0.025466658695953513" b="0" c="-1.9610893714512249e-06" d="1.3039034071898585e-07" /> - <superelevation s="611.63248238016104" a="-0.025532378694422413" b="0" c="3.2870024653677668e-05" d="-2.1854861774417495e-06" /> - <superelevation s="621.6592443863932" a="-0.024430838906710512" b="0" c="-1.3448693125900544e-05" d="6.1511650661223605e-07" /> - <superelevation s="631.68600639262536" a="-0.025162847871084158" b="-8.4169711797323543e-05" c="-7.3440604369923209e-06" d="6.2139910601553155e-07" /> - <superelevation s="641.71276839885752" a="-0.026118738243360341" b="-4.4025143962607548e-05" c="2.1953819156794732e-06" d="-5.3777196428857249e-23" /> - <superelevation s="651.73953040508968" a="-0.026339453063761929" b="0" c="1.2131393512443032e-05" d="-6.7215931822515239e-07" /> - <superelevation s="661.76629241132184" a="-0.025797382088160476" b="4.0548651515536825e-05" c="7.3393518167477075e-10" d="-1.3449042174633719e-07" /> - <superelevation s="671.793054417554" a="-0.025526309706922063" b="0" c="-4.6411695571926773e-06" d="3.085854671932295e-07" /> - <superelevation s="681.81981642378616" a="-0.02568184451356216" b="0" c="1.53967676352334e-05" d="-8.342922624374258e-07" /> - <superelevation s="691.84657843001821" a="-0.024974924159543568" b="5.7130338099840012e-05" c="-2.2967645796217325e-06" d="9.604619078967046e-08" /> - <superelevation s="701.87334043625037" a="-0.024536179906636823" b="4.0040401379988772e-05" c="1.0190276442274669e-07" d="-4.7134134673217975e-08" /> - <superelevation s="711.90010244248253" a="-0.024171973009001254" b="2.7867884997853148e-05" c="-1.7252794646169249e-06" d="8.7962268079700675e-08" /> - <superelevation s="721.9268644487147" a="-0.023977330605655781" b="1.9800064052891595e-05" c="-1.0007748261749709e-06" d="1.0366744678283757e-07" /> - <superelevation s="731.95362645494686" a="-0.023774911949068261" b="3.0997919752807866e-05" c="6.3258868732599764e-06" d="-5.2337574810320848e-07" /> - <superelevation s="741.98038846117902" a="-0.023355713077556406" b="0" c="-3.3375530722366938e-05" d="1.9675850936690765e-06" /> - <superelevation s="752.00715046741118" a="-0.024727729612167404" b="-7.5857859613944766e-05" c="3.7827695305221723e-06" d="0" /> - <superelevation s="762.03391247364334" a="-0.025108033964493001" b="0" c="1.0161720623957935e-06" d="-6.7563989369260276e-08" /> - <superelevation s="772.0606744798755" a="-0.025073980021130201" b="0" c="-1.5174101743223868e-05" d="9.4120028699575008e-07" /> - <superelevation s="782.08743648610755" a="-0.025650745801138554" b="-2.0420800822824027e-05" c="3.0549444791048714e-06" d="-2.0311937707014648e-07" /> - <superelevation s="792.11419849233971" a="-0.025753123056052117" b="-2.0420800822824027e-05" c="-7.4945403154014511e-06" d="5.6600892268633601e-07" /> - <superelevation s="802.14096049857187" a="-0.026140782988556793" b="0" c="2.1986595257611634e-05" d="-1.4266798267835107e-06" /> - <superelevation s="812.16772250480403" a="-0.025368504360209806" b="1.061085366527511e-05" c="-1.3629442951166563e-06" d="8.3159215344188221e-08" /> - <superelevation s="822.19448451103619" a="-0.025315308108017472" b="8.3604912422488354e-06" c="8.2217862794304171e-07" d="-5.1610639703584912e-08" /> - <superelevation s="832.22124651726836" a="-0.025200847048327372" b="9.2818950420879894e-06" c="-1.1385086875268806e-06" d="9.2324133384239522e-08" /> - <superelevation s="842.24800852350052" a="-0.025129173402909787" b="1.4296468864631727e-05" c="8.2398903345069496e-06" d="-5.1972981306692515e-07" /> - <superelevation s="852.27477052973268" a="-0.024681334551013654" b="2.2780706178646513e-05" c="-2.1199461709193799e-06" d="9.8132479091978446e-08" /> - <superelevation s="862.30153253596484" a="-0.024567126191420059" b="9.8658426325085714e-06" c="-4.9537605227831216e-07" d="3.4241553456558385e-08" /> - <superelevation s="872.32829454219689" a="-0.02448348963887945" b="1.0259329041846088e-05" c="1.5970579166384584e-06" d="-1.4020180728113901e-07" /> - <superelevation s="882.35505654842905" a="-0.024361390490127626" b="0" c="-8.1416676732294276e-07" d="2.6888598214428624e-23" /> - <superelevation s="892.38181855466121" a="-0.024443243524692224" b="-1.6326912818659008e-05" c="-4.3464041674807962e-06" d="5.5277049207960265e-08" /> - <superelevation s="902.40858056089337" a="-0.024988197458015133" b="-8.6815640143504084e-05" c="-8.8573917473615602e-06" d="5.6044884779532775e-07" /> - <superelevation s="912.43534256712553" a="-0.026184203048967444" b="-9.5401775576210002e-05" c="2.6941703939908689e-06" d="-3.1175339968837514e-08" /> - <superelevation s="922.46210457335769" a="-0.026901339255364393" b="-5.0776892739646723e-05" c="1.1428482676235422e-06" d="9.2367475874057916e-08" /> - <superelevation s="932.48886657958985" a="-0.027202458686800275" b="0" c="3.0026689037584788e-05" d="-1.9964364048215199e-06" /> - <superelevation s="942.51562858582201" a="-0.026196204720865035" b="0" c="-1.5527856208215e-05" d="1.0324274309468723e-06" /> - <superelevation s="952.54239059205418" a="-0.026716574012078945" b="0" c="5.0912055884225187e-06" d="-1.5970531414578659e-07" /> - <superelevation s="962.56915259828634" a="-0.026365715748419019" b="5.3928234054116369e-05" c="4.7255275561879434e-06" d="-2.8294042664449644e-07" /> - <superelevation s="972.59591460451838" a="-0.025635122875524937" b="6.3354655242648406e-05" c="3.4732805504187615e-06" d="-4.4099038466203989e-07" /> - <superelevation s="982.62267661075055" a="-0.02509523164820918" b="0" c="-8.7258435700522499e-06" d="4.4745298756354127e-07" /> - <superelevation s="992.64943861698271" a="-0.025521437644232904" b="-4.0028571509310237e-05" c="-1.7422084260726965e-06" d="1.9840643323721464e-07" /> - <superelevation s="1002.6762006232149" a="-0.025897945568155778" b="-1.5125048493921501e-05" c="7.5423394334690849e-07" d="0" /> - <superelevation s="1012.702962629447" a="-0.025973773198946414" b="0" c="4.6692123179867966e-06" d="-2.3852033939207345e-07" /> - <superelevation s="1022.7297246356792" a="-0.025744789926941802" b="2.1694550063498598e-05" c="9.6776639095447222e-07" d="-1.0788402335224987e-07" /> - <superelevation s="1032.7564866419114" a="-0.025538721018308435" b="8.5630062417437916e-06" c="-4.2700755420458332e-07" d="1.3444299107214771e-23" /> - <superelevation s="1042.7832486481434" a="-0.025495791405486513" b="0" c="-6.5901828202032184e-06" d="4.3817288280483979e-07" /> - <superelevation s="1052.8100106543757" a="-0.025716641516225242" b="0" c="1.9843184410380039e-05" d="-1.2974873351774464e-06" /> - <superelevation s="1062.8367726606077" a="-0.025029620242200845" b="6.5933848544096156e-06" c="-3.2878933649321251e-07" d="0" /> - <superelevation s="1072.86353466684" a="-0.024996565091825514" b="0" c="-4.0038045742321365e-06" d="2.2360266930074194e-07" /> - <superelevation s="1082.890296673072" a="-0.025173688718897139" b="-1.2850066582559157e-05" c="1.5907387017060119e-07" d="3.2028590433408743e-08" /> - <superelevation s="1092.9170586793043" a="-0.025254254210600628" b="0" c="3.0787102966890134e-06" d="-2.0469953608655632e-07" /> - <superelevation s="1102.9438206855364" a="-0.025151080515954136" b="0" c="-1.9607114974456636e-06" d="5.4445892132733235e-08" /> - <superelevation s="1112.9705826917684" a="-0.025293318334036082" b="-2.2897865594191895e-05" c="-4.1713159329491854e-07" d="-4.5054215768386951e-08" /> - <superelevation s="1122.9973446980007" a="-0.025610263413481448" b="-4.485153002355658e-05" c="-8.4350640434537607e-06" d="7.0954478105323355e-07" /> - <superelevation s="1133.0241067042327" a="-0.026192749568359232" b="0" c="3.1669416236668e-06" d="-2.1056592491829443e-07" /> - <superelevation s="1143.050868710465" a="-0.02608661906676742" b="0" c="-7.2033386172907569e-07" d="0" /> - <superelevation s="1153.0776307166971" a="-0.026159038520432963" b="-1.4445232393175702e-05" c="-1.7975677192251003e-06" d="3.5811955272841752e-08" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-4.3987348436975111" b="1.5219767441249236e-09" c="-0.0043326045025927941" d="0.00022747647951899081" /> - <laneOffset s="8.7126934247653427" a="-4.5771767307687421" b="-0.023693388661037134" c="-0.0018692903921854794" d="0.00010735441173412201" /> - <laneOffset s="10.026762006232149" a="-4.6112957164722781" b="-0.028050009067761759" c="-0.0014472425078598556" d="0.00010867540854711039" /> - <laneOffset s="20.053524012464297" a="-4.9284961340015467" b="-0.024294963067600862" c="0.001827514029443517" d="0.0001060815909037942" /> - <laneOffset s="22.576780707249679" a="-4.9764588866152488" b="-0.013046180480934826" c="0.00053033108134223914" d="0.00013526189661524962" /> - <laneOffset s="27.088659857403332" a="-5.0121020870235142" b="-0" c="0.0010040275493958513" d="-1.4235362456334237e-05" /> - <laneOffset s="30.080286018696448" a="-5.003497359300674" b="0.005625138069266033" c="0.00090989515581282301" d="-9.1010921962491328e-06" /> - <laneOffset s="40.107048024928595" a="-4.8647926159425552" b="0.02112678140240155" c="0.00061769328506656996" d="-1.5138219065608483e-06" /> - <laneOffset s="42.6365533705969" a="-4.8074245632796231" b="0.024222640233550231" c="0.0012759498387151446" d="-0.00012713207204618181" /> - <laneOffset s="47.158021339937434" a="-4.6835690758857087" b="0.027963833513255851" c="0.0052293828790835103" d="-0.00043606042764313444" /> - <laneOffset s="50.133810031160742" a="-4.5655376371120928" b="0.047502548680578474" c="0.001318276507633873" d="-0.00044336096867862224" /> - <laneOffset s="56.132889299959245" a="-4.3288445806964244" b="0.015451149256682558" c="-0.0023784623655798212" d="0.00012573483111927915" /> - <laneOffset s="60.281374322502877" a="-4.2967020310228037" b="0.0022087804213750139" c="-0.00018364627816877315" d="-6.2109020465797669e-07" /> - <laneOffset s="66.122001300770975" a="-4.2901898264900673" b="-0" c="-0.0052763915954785233" d="0.00036293398955264091" /> - <laneOffset s="70.187334043625043" a="-4.3530077658053825" b="-0.024906020776906124" c="-0.00084869252443569155" d="0.00036374398754746349" /> - <laneOffset s="72.509500502303979" a="-4.4108653611216893" b="-0.022963209901830314" c="-0.0021344598656407284" d="0.00020747104438566643" /> - <laneOffset s="79.723548572694199" a="-4.6097133555504675" b="-0.021367473066417907" c="0.00084909433341947844" d="2.8208560718875394e-07" /> - <laneOffset s="83.239019431268048" a="-4.6743242665841285" b="-0.015387081800934352" c="0.0022209483911482713" d="-0.00092721383853756954" /> - <laneOffset s="84.765729871503567" a="-4.6959387127402135" b="-0.015089166182972784" c="-0.0038740828480003137" d="0.00078592658490662069" /> - <laneOffset s="88.84936070033379" a="-4.7686410076951686" b="-0.0074113832258369001" c="0.0044962778123266781" d="-0.0013845067790462713" /> - <laneOffset s="90.4299398479112" a="-4.7745894813686842" b="-0.003574388268774157" c="-4.5276267805426337e-06" d="5.8945072474736682e-06" /> - <laneOffset s="100.26762006232148" a="-4.8045792509256628" b="-0.001952060572128328" c="0.00013649118654102284" d="7.4917086225399038e-06" /> - <laneOffset s="105.3182754489775" a="-4.8099914510768409" b="-0" c="0.0029106301813870473" d="-9.1785062556350782e-05" /> - <laneOffset s="110.29438206855363" a="-4.7492289212277976" b="0.022148966997734564" c="0.0015020780032797482" d="-9.3272524691027982e-05" /> - <laneOffset s="119.78332601555144" a="-4.4835020767587395" b="0.025460444568719591" c="0.002318686399477036" d="-0.00014334264564257559" /> - <laneOffset s="130.34790608101792" a="-4.1247514450270604" b="0.026456771403699633" c="-0.0021084445237784292" d="-0.0001593007076091393" /> - <laneOffset s="134.586168030762" a="-4.0626221943181191" b="-0" c="-0.0039670231355352576" d="0.00026169291588582275" /> - <laneOffset s="140.37466808725009" a="-4.1447878630217474" b="-0.019620803381933952" c="0.00062252078777969282" d="0.00027498295532641835" /> - <laneOffset s="141.55979480021796" a="-4.1667089347661257" b="-0.016986609777233475" c="-0.00071075833435954485" d="4.1391341735769386e-05" /> - <laneOffset s="150.40143009348222" a="-4.3438522269435547" b="-0.01984789757149585" c="0.00036208257542812063" d="4.9164251649265654e-05" /> - <laneOffset s="151.86761037256127" a="-4.3720195024774151" b="-0.018469078003008003" c="-0.00017943114705552905" d="1.0311470889346952e-05" /> - <laneOffset s="160.42819209971438" a="-4.5368060070544329" b="-0.019274164128959239" c="8.2329930784284938e-05" d="1.0281057346622863e-05" /> - <laneOffset s="170.45495410594654" a="-4.7114225243583654" b="-0.014522311087764828" c="0.0003879584853097055" d="1.0331695031916882e-05" /> - <laneOffset s="180.48171611217867" a="-4.8076156377947097" b="-0.0036262557651480978" c="0.0007003007835947408" d="9.1739810401684677e-06" /> - <laneOffset s="182.95097501275259" a="-4.8121617801398546" b="-0" c="9.3352538005629694e-05" d="-2.0818234990614941e-06" /> - <laneOffset s="190.50847811841084" a="-4.8077284961380871" b="0.0010543088157651845" c="5.4620592378450894e-05" d="-2.0136310814985006e-06" /> - <laneOffset s="200.53524012464297" a="-4.7936957000988185" b="0.0015423171971806551" c="3.3167173938737274e-06" d="-2.0459957434381112e-06" /> - <laneOffset s="210.56200213087513" a="-4.779960269497975" b="0.00099174065294277414" c="-5.3981740779696452e-05" d="-1.6608468367977923e-06" /> - <laneOffset s="217.51609425600103" a="-4.7762326737376064" b="-0" c="-0.00051538119736546282" d="1.321971480837549e-05" /> - <laneOffset s="220.58876413710726" a="-4.7807150384283039" b="-0.0027927586767433291" c="-0.0004000938501293408" d="1.2657751691440768e-05" /> - <laneOffset s="230.61552614333942" a="-4.8361815349159096" b="-0.0069983727937054695" c="-2.3542395334098417e-05" d="1.2537300168835985e-05" /> - <laneOffset s="240.10054032772359" a="-4.893980824388092" b="-0.0040611994887832133" c="0.00016371184777204671" d="-1.4580060513559684e-05" /> - <laneOffset s="247.64391596336876" a="-4.9215586638315916" b="-0.004080245940388999" c="-0.00068204732619946606" d="0.00015769626933828971" /> - <laneOffset s="251.65798670980072" a="-4.9387272835348126" b="-0.0019330500855352024" c="1.6998718294836753e-05" d="-8.7614145241048917e-08" /> - <laneOffset s="260.69581216203585" a="-4.9548740379935996" b="-0.0016472567595852852" c="1.3528567520996636e-05" d="1.5163873195005653e-07" /> - <laneOffset s="270.72257416826801" a="-4.9698777225716286" b="-0.0013302258711489535" c="1.3211168018207694e-05" d="1.727675477801084e-07" /> - <laneOffset s="280.74933617450017" a="-4.9817132250401714" b="-0.0010131873441465815" c="1.3605586753212209e-05" d="1.4658612536671872e-07" /> - <laneOffset s="290.77609818073233" a="-4.9903565965726093" b="-0.00069613585459246078" c="1.1118527004903734e-05" d="3.1195776647976702e-07" /> - <laneOffset s="300.80286018696444" a="-4.9959043043052596" b="-0.00037908128915366089" c="1.5735215274368004e-05" d="5.0725953274032506e-09" /> - <laneOffset s="310.8296221931966" a="-4.998118193826695" b="-6.2004837140991156e-05" c="1.6379588993756738e-05" d="-1.931477762192992e-07" /> - <laneOffset s="312.79037128404138" a="-4.9981782538001021" b="-0" c="3.943580143390606e-05" d="-3.9152793655657801e-08" /> - <laneOffset s="320.85638419942876" a="-4.9956330848808657" b="0.00062853745883599641" c="3.9350947240970165e-05" d="-2.5866762853188626e-08" /> - <laneOffset s="330.88314620566092" a="-4.9854007792488346" b="0.0014098610050241943" c="3.9968650535773424e-05" d="-6.6980894990854108e-08" /> - <laneOffset s="340.90990821189308" a="-4.9673136720831454" b="0.0021911713332881332" c="4.0154978084616244e-05" d="-7.941747249508379e-08" /> - <laneOffset s="350.93667021812519" a="-4.941386356277917" b="0.0029724672158881055" c="4.0230044096984757e-05" d="-8.4457385011037905e-08" /> - <laneOffset s="360.96343222435735" a="-4.9076227062524191" b="0.0037537483592959696" c="3.5205427548486868e-05" d="5.2752174162598024e-07" /> - <laneOffset s="365.7128737348321" a="-4.8889438467378303" b="0.004123858829123089" c="0.0027960076017200181" d="-0.00049481770570296963" /> - <laneOffset s="368.87711231845924" a="-4.863576847559095" b="0.006955382075557205" c="-0.00068811207333551241" d="3.1339322059193549e-05" /> - <laneOffset s="370.99019423058951" a="-4.8516563638258967" b="0.0044671087709753643" c="-0.00049291513402964569" d="2.975440260428147e-05" /> - <laneOffset s="381.01695623682167" a="-4.8264274929778868" b="0.0035565852571184512" c="0.00039492405058222922" d="3.164556972002574e-05" /> - <laneOffset s="384.14440905081938" a="-4.8104736816541509" b="0.0069553701833522949" c="0.0012809206195812915" d="-0.00019218729393354053" /> - <laneOffset s="388.50413623799659" a="-4.7717292734031567" b="0.0071654598908711667" c="-0.00065897962425378101" d="3.1793438363405375e-05" /> - <laneOffset s="391.04371824305377" a="-4.7572613302425282" b="0.0044335474255377096" c="-0.00042107671076899769" d="2.9011605883304452e-05" /> - <laneOffset s="399.04027781926641" a="-4.7338991531697019" b="0.0032646557911693835" c="-0.00079260538215514568" d="0.0002831064099540536" /> - <laneOffset s="401.73852303557572" a="-4.7252993706610695" b="0.0051708602242261795" c="0.0015830142456246304" d="-0.00019330314898951127" /> - <laneOffset s="406.12874200168721" a="-4.6884438769788401" b="0.0078932307840948769" c="-0.00028899797616995318" d="1.5307687029205923e-05" /> - <laneOffset s="411.0972422555181" a="-4.6544830362403271" b="0.0061551141941189021" c="-6.6712906778439561e-05" d="1.457302772885549e-05" /> - <laneOffset s="417.59222825557947" a="-4.6133270658623324" b="0.0071327980695130274" c="0.00026182516045762286" d="-7.5835142668303978e-05" /> - <laneOffset s="420.38398828072013" a="-4.5930234390237814" b="0.0068215440784977844" c="-0.00013400633221137139" d="-3.1272357411156918e-06" /> - <laneOffset s="429.26139011333566" a="-4.5452145110259394" b="0.0037029319071469492" c="8.6540591197387779e-05" d="-4.8841763425481457e-05" /> - <laneOffset s="431.15076626798242" a="-4.5382387696417972" b="0.0035068898460383926" c="-0.00017802779691480458" d="-5.1137096665846445e-05" /> - <laneOffset s="434.91027168392247" a="-4.5302880632927351" b="-0" c="-0.00029721385735797298" d="5.373665660206346e-06" /> - <laneOffset s="441.17752827421452" a="-4.5406393522692605" b="-0.0030922223492800766" c="-0.0001930030741518031" d="6.9086987976657978e-06" /> - <laneOffset s="448.89600792388069" a="-4.5728279395566416" b="-0.0048368472471536023" c="-0.00031361554029835179" d="1.9366058979255244e-05" /> - <laneOffset s="451.20429028044668" a="-4.5854255633172798" b="-0.0059751168694379356" c="-0.00018975407782468988" d="1.607567351761055e-05" /> - <laneOffset s="459.67905774274959" a="-4.6399069332494003" b="-0.0057276144303861614" c="0.00026339844879704215" d="-2.0655119228743999e-05" /> - <laneOffset s="461.23105228667885" a="-4.6482389295543562" b="-0.0050592836750607689" c="0.00016709848715832721" d="-1.97209772821513e-05" /> - <laneOffset s="470.54416001372101" a="-4.6967933403118414" b="-0.0070783075345769008" c="-0.00069485736202856197" d="7.237629137241304e-05" /> - <laneOffset s="477.76276746240308" a="-4.7568724027007061" b="-0.0057958974937706645" c="0.001145518299632285" d="-0.00032445394801350065" /> - <laneOffset s="480.23995041391709" a="-4.7691325503237243" b="-0.0060935527414856241" c="-0.00090055012529674842" d="6.8931461886774834e-05" /> - <laneOffset s="481.28457629914317" a="-4.7764021746918965" b="-0.007749365709701834" c="-0.00070967691964224128" d="5.417829355700519e-05" /> - <laneOffset s="487.81897086248534" a="-4.8422254378772287" b="-0.010084018624513302" c="-0.00018370459266001362" d="1.0985035617170233e-05" /> - <laneOffset s="491.31133830537527" a="-4.8792152043735255" b="-0.010965205244928699" c="-5.938469850580387e-05" d="9.9812057804999312e-06" /> - <laneOffset s="499.29876333649361" a="-4.9655013244853112" b="-0.010003495295615377" c="0.00016360802489063587" d="-2.5922795905945815e-05" /> - <laneOffset s="501.33810031160743" a="-4.9854412549915246" b="-0.0096596220884643553" c="2.1665438221100043e-05" d="-1.9557045776569021e-05" /> - <laneOffset s="503.29165397539748" a="-5.0043749690504908" b="-0.0097988837768979015" c="0.00011463370216644739" d="-1.1951394990530082e-05" /> - <laneOffset s="511.3648623178396" a="-5.0823005987242498" b="-0.010284817460111418" c="-0.00016870769727764045" d="-1.3686600310722683e-05" /> - <laneOffset s="514.09203579883285" a="-5.1118814486885107" b="-0.011510389027184631" c="-0.00029894767329098084" d="2.4344986187760452e-05" /> - <laneOffset s="520.52664069971627" a="-5.1918379519399585" b="-0.012333659688435552" c="0.00030847674355518516" d="-3.277435757175419e-05" /> - <laneOffset s="529.48558299573847" a="-5.3011423430247282" b="-0.014698079081622878" c="-0.00052865033667889242" d="3.9079535645151236e-05" /> - <laneOffset s="531.41838633030386" a="-5.3312435625259154" b="-0.016303661716520281" c="-0.00030310482701719529" d="3.4750443484956669e-05" /> - <laneOffset s="536.15446040628308" a="-5.4115660639501861" b="-0.016836316745625603" c="-6.675024914583284e-05" d="5.0385877538825231e-06" /> - <laneOffset s="541.83340863353988" a="-5.5084085502982783" b="-0.017106968951594324" c="1.0724572310852784e-07" d="-4.9510997744409875e-07" /> - <laneOffset s="549.32053979892714" a="-5.6366924599701669" b="-0.017188626363699108" c="-9.9347355683912922e-06" d="-5.6764263301644212e-07" /> - <laneOffset s="551.47191034276818" a="-5.6737231985415617" b="-0.017239254781966813" c="-1.913261659206589e-05" d="3.1123856830214297e-07" /> - <laneOffset s="556.76845063646829" a="-5.7655220943262888" b="-0.01741573428809845" c="-7.6661187958300159e-05" d="1.2250395625099222e-05" /> - <laneOffset s="561.75736076911846" a="-5.8527945321958246" b="-0.017265937309013178" c="6.6597753138847067e-07" d="1.0654248168717709e-05" /> - <laneOffset s="565.94306970271589" a="-5.9242717305095356" b="-0.016700369758137466" c="6.6156595348674109e-05" d="3.9823461726186383e-06" /> - <laneOffset s="572.51020239036438" a="-6.0299642347691673" b="-0.015316208779769806" c="-0.0021117052283588277" d="0.00035811518670605366" /> - <laneOffset s="578.7319810167412" a="-6.1207520726974813" b="-4.8484326839888408e-06" c="0.00099785636572352295" d="-2.5297613573685426e-05" /> - <laneOffset s="581.55219636146467" a="-6.1133966297619136" b="0.0050198688309190578" c="0.00076357974928673456" d="-2.9523626559501797e-05" /> - <laneOffset s="591.57895836769683" a="-6.0160576742811358" b="0.011427775577238253" c="-0.00012614194782293797" d="-2.9677345676937311e-05" /> - <laneOffset s="596.30066752878315" a="-5.9680354023867022" b="0.0082516363164243378" c="-3.6580448452685745e-05" d="1.2054395878894249e-06" /> - <laneOffset s="601.60572037392888" a="-5.9251095646556129" b="0.0079652900691502722" c="-1.7849547304759518e-05" d="1.3429221575184099e-06" /> - <laneOffset s="605.50633588358392" a="-5.894231909467158" b="0.0078873385086180511" c="0.00015981817357233965" d="-2.2326632421331608e-05" /> - <laneOffset s="611.63248238016104" a="-5.8450481613979548" b="0.0073317440957893654" c="-0.00023798498797918214" d="-2.7600060731559183e-05" /> - <laneOffset s="613.30054561141583" a="-5.8336086259361055" b="0.0063074099594486082" c="-0.00032410446585257827" d="3.0618930128928634e-05" /> - <laneOffset s="617.87863353568548" a="-5.8085876816413888" b="0.0052650687543073886" c="-0.0002067332584448888" d="1.6374495890198001e-05" /> - <laneOffset s="621.6592443863932" a="-5.7907525300119689" b="0.0044040356675174742" c="-1.4636401056974391e-05" d="1.8695771940798457e-05" /> - <laneOffset s="627.6516880633269" a="-5.7608641297820471" b="0.0062426808551257094" c="0.00039891478108728111" d="-7.1912703316693024e-05" /> - <laneOffset s="631.31632112138141" a="-5.7361688897170717" b="0.0062691708478323982" c="-0.00020901620276526033" d="3.3587038559874751e-06" /> - <laneOffset s="641.71276839885752" a="-5.6898093205553923" b="0.0030122067471546475" c="-0.00010925584177614609" d="3.1669378103714373e-06" /> - <laneOffset s="651.73953040508968" a="-5.6673983489264739" b="0.001776415464800717" c="-1.050046141858411e-05" d="2.1545052236202236e-06" /> - <laneOffset s="654.8891179481376" a="-5.6618402219554289" b="0.0017743886598773162" c="-2.6596726511509797e-05" d="-2.6611348345567558e-06" /> - <laneOffset s="661.76629241132184" a="-5.6517609074710693" b="0.0010309886671340366" c="-7.4497450598482763e-05" d="-2.6059051458035211e-06" /> - <laneOffset s="667.30016511172983" a="-5.6487785558348573" b="-3.2937889275185709e-05" c="-0.0054927811624135951" d="0.00058363258797895215" /> - <laneOffset s="671.793054417554" a="-5.7068723177526115" b="-0.014046136015183111" c="0.0023735062755096095" d="0.00058452394823527403" /> - <laneOffset s="673.5767317539927" a="-5.7210577268343066" b="-0" c="0.027940323352687629" d="-0.036453724113282286" /> - <laneOffset s="674.06138239795996" a="-5.7186447398380107" b="0.0013951561056777663" c="-0.00015938962299504939" d="9.0414672073923642e-06" /> - <laneOffset s="681.81981642378616" a="-5.7131922833535205" b="0.00055463556123643508" c="5.6236880623194268e-05" d="6.4502042997505137e-06" /> - <laneOffset s="683.46113122967517" a="-5.7121019344841004" b="0.00079136930349303245" c="9.2885849106950078e-05" d="-6.1845964171444107e-06" /> - <laneOffset s="691.84657843001821" a="-5.70258122932161" b="0.0010445249321152888" c="-5.454611842770089e-05" d="-6.3859878873282983e-06" /> - <laneOffset s="696.91319469922951" a="-5.6995198351820395" b="-0" c="-0.0010779804509832465" d="0.00011488777402652892" /> - <laneOffset s="701.63491588320278" a="-5.7114588975387601" b="-0.0024956978053308279" c="-6.183438297518985e-06" d="1.0382831945773843e-06" /> - <laneOffset s="711.90010244248253" a="-5.7366061804080042" b="-0.0022944217690793961" c="2.9858194590642324e-05" d="6.6367958420324254e-07" /> - <laneOffset s="715.55749266515522" a="-5.7445659086587497" b="-0.0020493824948284154" c="5.6357786810210385e-05" d="-1.4429678339170255e-06" /> - <laneOffset s="721.9268644487147" a="-5.7557056750126767" b="-0.0015070739405699648" c="3.075626851080877e-05" d="-1.3789364819041995e-06" /> - <laneOffset s="731.95362645494686" a="-5.7691146729410869" b="-0.0013062004652326209" c="-7.1052765984492489e-06" d="-1.5800046841507104e-06" /> - <laneOffset s="739.19747686652579" a="-5.7795500058883622" b="-0.0016578640922781337" c="8.2676252417373088e-05" d="-5.5524075584951781e-06" /> - <laneOffset s="741.98038846117902" a="-5.7836430692642118" b="-0.0013267061651921995" c="3.3848770119125221e-05" d="-4.3997859738029708e-06" /> - <laneOffset s="752.00715046741118" a="-5.7979778224827756" b="-0.0019749291123818667" c="-0.0001086942843582687" d="-4.2193392468336412e-06" /> - <laneOffset s="757.36395940618274" a="-5.8123247456394944" b="-0.0035026650481381795" c="-0.00027187789295786147" d="2.6445277850946029e-05" /> - <laneOffset s="762.03391247364334" a="-5.8319179597291759" b="-0.0043117865648355947" c="9.7347490576408816e-05" d="2.6083144508354831e-05" /> - <laneOffset s="764.08078610183975" a="-5.8401121029395693" b="-0.003585429544127616" c="0.00023441224025035111" d="-8.7841971971508519e-06" /> - <laneOffset s="772.0606744798755" a="-5.8582600574549755" b="-0.0015223591479627335" c="2.1506584791314454e-05" d="-8.5664096713708224e-06" /> - <laneOffset s="781.45828743592062" a="-5.8777769464175051" b="-0.0033877687607741184" c="-0.00022051797809006206" d="2.1913671207684988e-05" /> - <laneOffset s="788.29373233267734" a="-5.9042385125236105" b="-0.0033308081788984241" c="0.00011273867585719083" d="-3.724945562064355e-06" /> - <laneOffset s="792.11419849233971" a="-5.9155259386091981" b="-0.0026324870749223359" c="6.4673966624366713e-05" d="-3.4477434474309142e-06" /> - <laneOffset s="797.19259551196853" a="-5.9276783634098242" b="-0.0022423600295483001" c="6.2672989419128156e-05" d="-1.0359545488235805e-06" /> - <laneOffset s="802.14096049857187" a="-5.9373652723832651" b="-0.0016982025081115969" c="4.7494056685525912e-05" d="-1.6702782160393973e-06" /> - <laneOffset s="812.50109060765601" a="-5.9517185353828328" b="-0.0012519376818146183" c="4.0598242686180545e-05" d="-9.4713640498613198e-07" /> - <laneOffset s="822.19448451103619" a="-5.9609020339484902" b="-0.00073185233246459813" c="1.3759002117683849e-05" d="-9.5898391278348317e-07" /> - <laneOffset s="833.08903686587576" a="-5.968482214896337" b="-0.000773525053088344" c="5.6135438442933401e-06" d="-2.5324915283627797e-07" /> - <laneOffset s="842.24800852350052" a="-5.9752905824147273" b="-0.00073442922925023965" c="2.8176944642459576e-06" d="-7.3709755874037746e-07" /> - <laneOffset s="847.245664788353" a="-5.9789826386040499" b="-0.00076149599467569972" c="3.1155363890533959e-05" d="-1.5936461318059093e-06" /> - <laneOffset s="852.27477052973268" a="-5.9822270088683229" b="-0.00056904779343586111" c="1.1756800323392689e-05" d="-1.077800255241619e-06" /> - <laneOffset s="862.30153253596484" a="-5.9878372111622138" b="-0.00065835555402105755" c="-1.9794567235667414e-05" d="-1.068783421304925e-06" /> - <laneOffset s="872.32829454219689" a="-5.9975058386074362" b="-0.0013776598735079336" c="-4.8637749307931107e-05" d="-2.0651822777867201e-06" /> - <laneOffset s="874.24784015001205" a="-6.0003441396627641" b="-0.0015872130843493431" c="-0.00016795323410712164" d="6.1647066162471167e-06" /> - <laneOffset s="882.35505654842905" a="-6.0209661327024637" b="-0.0030949172782237457" c="-1.7725104612240983e-05" d="6.2423211352341094e-06" /> - <laneOffset s="892.38181855466121" a="-6.0474875695339634" b="-0.0015676349140471989" c="0.00016594381023136631" d="6.8718590302678556e-06" /> - <laneOffset s="896.19976164873788" a="-6.0506713596663255" b="-0" c="6.7209538898934889e-05" d="-6.0768903649941909e-06" /> - <laneOffset s="902.40858056089337" a="-6.0495349521984698" b="0.00013180169151802179" c="-9.1501546492979861e-05" d="1.8657746577546496e-05" /> - <laneOffset s="903.47972287072298" a="-6.049475827926087" b="-0" c="-0.00019290717506545156" d="3.8137585644890674e-06" /> - <laneOffset s="912.43534256712553" a="-6.0622082827130797" b="-0.0025375805383480183" c="-0.00010027382646952134" d="3.5744312474682533e-06" /> - <laneOffset s="922.39590372254679" a="-6.0939001474008778" b="-0.0034712599328366512" c="-0.00054743187407506973" d="5.1222348402858726e-05" /> - <laneOffset s="931.89810338521079" a="-6.1323660868519827" b="-0" c="0.001608376793099708" d="-0.00022371792876947123" /> - <laneOffset s="936.69097448542834" a="-6.1200504168967305" b="-0" c="-0.0064049429408666661" d="0.0013101819513682464" /> - <laneOffset s="939.12282801590959" a="-6.1390859519372096" b="-0.007906865510342035" c="-0.0039862598583137142" d="0.0019813539308490293" /> - <laneOffset s="941.12760676399034" a="-6.1549940718271881" b="-0" c="0.00020542418869879206" d="-1.4406442354124495e-05" /> - <laneOffset s="942.51562858582201" a="-6.1546368259092015" b="0.00048699995992266198" c="0.00015610944103846026" d="-7.8984644212921538e-06" /> - <laneOffset s="952.54239059205418" a="-6.1420212291736167" b="0.0012353053619695929" c="-8.1856354941837081e-05" d="-8.3871536569015128e-06" /> - <laneOffset s="957.0143481497023" a="-6.1388840725701828" b="-0" c="-0.0028673532605686227" d="0.00028251533571101769" /> - <laneOffset s="962.94077615970718" a="-6.1807869053320621" b="-0.0042183492265310948" c="0.00088402645044105392" d="-9.2117251341293385e-05" /> - <laneOffset s="967.7718825265124" a="-6.1909201614411167" b="-0.0021266338832399982" c="-2.8036892654860376e-05" d="1.7476524567610855e-06" /> - <laneOffset s="972.59591460451838" a="-6.2016353720853354" b="-0.0022751252645345872" c="9.488544326647588e-06" d="2.3012189054483506e-06" /> - <laneOffset s="979.24453123946023" a="-6.2156660558299928" b="-0.0018437839235708837" c="-0.00010496900058670984" d="1.3635672449279574e-05" /> - <laneOffset s="982.62267661075055" a="-6.2225668501128339" b="-0.0020861596039423811" c="3.4298138847313098e-05" d="1.4710127744877628e-05" /> - <laneOffset s="988.76477396131827" a="-6.2306778104867666" b="-0" c="0.00077101174438636022" d="-7.4254143669347914e-05" /> - <laneOffset s="992.64943861698271" a="-6.2233956917567852" b="0.0026286210627052089" c="-0.00010759812856693907" d="-7.379544259656089e-05" /> - <laneOffset s="995.64331430517791" a="-6.2184706597633355" b="-0" c="-2.0966894126576712e-05" d="6.8667621144917196e-07" /> - <laneOffset s="1002.6762006232149" a="-6.2192688484350978" b="-0.00019302348004949317" c="-9.2397743331403889e-06" d="4.8386082886815375e-07" /> - <laneOffset s="1012.702962629447" a="-6.2216454225196172" b="-0.00023237728302676021" c="6.7562068761027406e-06" d="1.5405751914567203e-07" /> - <laneOffset s="1016.644511174979" a="-6.2224469520172905" b="-0.00017193722555437354" c="-3.5340740721693263e-06" d="5.6557259779944392e-08" /> - <laneOffset s="1022.7297246356792" a="-6.2236113485786335" b="-0.00020866549985090619" c="7.0807958443757235e-07" d="2.3537308194546649e-07" /> - <laneOffset s="1032.7564866419114" a="-6.2253951325658878" b="-0.0001234756352388503" c="9.3098633773620253e-06" d="2.3506098292236226e-07" /> - <laneOffset s="1038.2464506349065" a="-6.2257535182493777" b="-0" c="5.6787122322391301e-05" d="-1.210830719662059e-06" /> - <laneOffset s="1042.7832486481434" a="-6.2246977611787369" b="0.00044049750605300016" c="3.8591814708300969e-05" d="-9.6283675234632618e-07" /> - <laneOffset s="1048.6492342216427" a="-6.2209802190597046" b="0.00079386254075553215" c="4.2103016506557365e-05" d="-5.5475663668411971e-08" /> - <laneOffset s="1052.8100106543757" a="-6.2169522405408886" b="0.0011413438242697388" c="4.235606584822453e-05" d="-6.3631316571210182e-07" /> - <laneOffset s="1062.8367726606077" a="-6.2018913856161406" b="0.0017988151499108334" c="2.6600855275164445e-05" d="-4.3161203814818303e-07" /> - <laneOffset s="1072.86353466684" a="-6.1816158383518216" b="0.0022020784528679377" c="1.2447276548196721e-05" d="-2.4986543501159113e-07" /> - <laneOffset s="1078.0072727495419" a="-6.1699935979891638" b="0.0023102966635637394" c="3.4464612300149792e-05" d="-3.3751014891697634e-07" /> - <laneOffset s="1082.890296673072" a="-6.1579298890178276" b="0.0026227370186752991" c="2.7167049227879852e-05" d="-5.8313555255273768e-07" /> - <laneOffset s="1092.9170586793043" a="-6.1294888937081105" b="0.0029916538213774499" c="9.7274670132155751e-06" d="-6.3945574361430159e-07" /> - <laneOffset s="1102.9438206855364" a="-6.0991589360681777" b="0.0029938589305630423" c="-9.8667960013522585e-06" d="-4.0237083675999124e-07" /> - <laneOffset s="1105.6501205294148" a="-6.0911368965386385" b="0.0029316129505494197" c="-6.5740684307030899e-05" d="5.6196865311733336e-06" /> - <laneOffset s="1112.9705826917684" a="-6.0709945345469114" b="0.0028725715142766802" c="5.4119878377953274e-05" d="5.8516032781333021e-06" /> - <laneOffset s="1117.8755322013603" a="-6.0549121480501249" b="0.0038258249697275299" c="0.00012448425256518506" d="-5.8594204964285792e-06" /> - <laneOffset s="1122.9973446980007" a="-6.0328386726944396" b="0.0046398650829145432" c="2.3318774913404768e-05" d="-5.0000809630760494e-06" /> - <laneOffset s="1127.0135448196359" a="-6.0141518263716023" b="0.004585218947175204" c="4.5505507558165763e-05" d="-1.6109970618907167e-06" /> - <laneOffset s="1133.0241067042327" a="-5.9852979295396702" b="0.0049576455179494204" c="1.2894196331420009e-05" d="-2.0932402875263427e-06" /> - <laneOffset s="1143.050868710465" a="-5.9364025585568543" b="0.0045848818513002975" c="-4.991128703913844e-05" d="-1.9368932657222926e-06" /> - <laneOffset s="1144.8561227294983" a="-5.9282997353271245" b="0.0043857400793875399" c="-0.00020408248741884773" d="2.0056430666305944e-05" /> - <laneOffset s="1153.8284820225281" a="-5.8908917608568778" b="0.0055673597042495875" c="0.00022759844176853188" d="-9.3857208566557467e-06" /> - <laneOffset s="1161.5521406333032" a="-5.8386385216894885" b="0.0074034322502148" c="8.87383162565044e-05" d="-6.7691093270851765e-06" /> - <laneSection s="0"> - <left> - <lane id="4" type="shoulder" level="false"> - <link> - <successor id="-4" /> - </link> - <width sOffset="0" a="2.4929956709256391" b="-0.020684618710890737" c="0.070180193595642676" d="-0.046572413838830047" /> - <width sOffset="0.86308716984601053" a="2.4974788119161859" b="-0.0036194618592415295" c="-0.040872811221756677" d="0.039789363903748022" /> - <width sOffset="1.6807165674443758" a="2.4889440899879922" b="0.0093426119649057532" c="1302.9243837162239" d="-280847.6910486375" /> - <width sOffset="1.6838082386499986" a="2.493127409210226" b="0.012380514959930679" c="-0.0098440509144156231" d="0.0019464579447203046" /> - <width sOffset="4.198439615690587" a="2.4929627795643183" b="-0.00020327671170468006" c="0.00016694795129000442" d="-4.627360862660755e-05" /> - <width sOffset="5.9586869607370474" a="2.4928698658852753" b="-4.5669599391597038e-05" c="-0.00094495440813036156" d="0.0010658592031864782" /> - <width sOffset="7.089477072918875" a="2.4931510762395783" b="0.0019059388098271075" c="-0.00099120480994232857" d="0.00012564557411860383" /> - <width sOffset="10.026762006232149" a="2.493381691250633" b="-0.0006648877073685347" c="0.00012364057621479962" d="0.00011783216547424838" /> - <width sOffset="11.106320798608467" a="2.4929562551910127" b="1.4048332017790877e-05" c="0.00039529986019295018" d="-6.495583100074851e-05" /> - <width sOffset="17.883980290817895" a="2.490986679040037" b="-0.0035790993360865359" c="0.0021400457158673577" d="-0.00027938784250302679" /> - <width sOffset="20.053524012464297" a="2.4904416184924676" b="0.0017615775202160615" c="0.00031384305543079717" d="-0.00027768127416544447" /> - <width sOffset="21.895817805233118" a="2.4930158657398236" b="9.0570343556816563e-05" c="0.0013531851959072009" d="-0.00046305161792624497" /> - <width sOffset="24.914628104338387" a="2.4928821037989488" b="-0.0043990785592523144" c="0.0016802995605659119" d="-0.00015999037869674014" /> - <width sOffset="30.080286018696448" a="2.4929419604944849" b="0.00015306668268029889" c="-0.0007682143630082679" d="-0.00016124339697627909" /> - <width sOffset="30.174832728997469" a="2.4929494290392364" b="3.4782979666885504e-06" c="-0.00087137479974195567" d="0.00020067480333397958" /> - <width sOffset="34.550277321062239" a="2.4930922785596357" b="0.0039036395629323591" c="-0.0026952028801798425" d="0.00045296618486145314" /> - <width sOffset="37.5514388874766" a="2.4927764166347748" b="-3.4279502173554383e-05" c="-0.00075359679962579791" d="0.00016789351391428956" /> - <width sOffset="40.107048024928595" a="2.4905692835871402" b="-0.00059647007834304211" c="0.00051539365419590443" d="0.00017165295258748199" /> - <width sOffset="42.001449571591301" a="2.4924559431508451" b="0.0032043173117522888" c="-0.0022797539491391018" d="0.00030583041867428496" /> - <width sOffset="46.743862119336541" a="2.4889989876323693" b="0.0022160656264374468" c="-0.00039514733155529704" d="2.2221903818583428e-05" /> - <width sOffset="50.133810031160742" a="2.4928360874644282" b="0.00030311336278381756" c="-0.00018823147015105835" d="2.7150781953733002e-05" /> - <width sOffset="51.237446402048825" a="2.4929778432413237" b="-1.3154794797524266e-05" c="0.0022547560776198759" d="-0.00039650867416000869" /> - <width sOffset="52.10880100579211" a="2.4944160005746783" b="0.0030130712278324846" c="-0.0041607243555408461" d="0.0008623890676308603" /> - <width sOffset="55.669092035221794" a="2.4913222599483849" b="0.0061803754572008866" c="-0.0058081689901752585" d="-0.00049913356598908483" /> - <width sOffset="56.167745918895669" a="2.4928980047393505" b="1.5506196918111791e-05" c="6.9982030805705407e-05" d="-6.5176300325793542e-06" /> - <width sOffset="60.160572037392896" a="2.4936607300165816" b="0.00026263327085864949" c="-2.2955506845066527e-05" d="-8.396124052822394e-06" /> - <width sOffset="65.904192404056019" a="2.4928210376992306" b="-0.00083200577742036834" c="0.00053928777806093713" d="-5.6276908687944295e-05" /> - <width sOffset="70.187334043625043" a="2.4947288486021799" b="0.00069043539048020686" c="-0.00018463764358216919" d="-5.661147742745074e-05" /> - <width sOffset="73.311776206552395" a="2.493356895581619" b="-0.002121291192430156" c="0.0019565420985061294" d="0.00024343500180602025" /> - <width sOffset="73.809155301993755" a="2.4928157841056366" b="5.6622940683009881e-06" c="4.8506049162713315e-05" d="-2.5944451556259623e-05" /> - <width sOffset="79.674839483543778" a="2.4892818979632203" b="-0.0021032493058642625" c="0.0020472647352507592" d="-0.00033482811187765315" /> - <width sOffset="80.21409604985719" a="2.4886905408106692" b="-0.00018734908148915555" c="0.0015573201851679494" d="-0.00034508299281333298" /> - <width sOffset="83.153803189014909" a="2.4928312683557223" b="2.2286013519310505e-05" c="0.0012990696364682426" d="-0.00034067837989993911" /> - <width sOffset="86.2772195498017" a="2.4951933680939051" b="-0.0018333419048161461" c="-0.0027922731734904729" d="0.0024491874815410586" /> - <width sOffset="87.271049033691497" a="2.4930175473121112" b="-0.00012626301842389494" c="-0.0011874820736837114" d="0.0027602242186884822" /> - <width sOffset="87.541955453923634" a="2.4929510707006211" b="-0.00016193509837460901" c="0.00062538112242733817" d="-8.9304784807253809e-05" /> - <width sOffset="90.240858056089337" a="2.4953137031742099" b="0.001262242059189362" c="-5.5881884028824742e-05" d="-8.5660924327079493e-05" /> - <width sOffset="94.212254300816639" a="2.4940796707142878" b="-0.0032347453953242445" c="0.0030003449507391526" d="0.00032779956657143358" /> - <width sOffset="94.708157762396326" a="2.4932533708775741" b="-1.7144853919212437e-05" c="-0.00036189241423816585" d="4.2150008909211349e-05" /> - <width sOffset="100.26762006232148" a="2.4892154467689052" b="-0.0001327298114242835" c="0.00035295125351188488" d="4.5614506683275239e-05" /> - <width sOffset="104.20193325065672" a="2.4969343713897141" b="0.0047626879827700058" c="-0.0055808028619654688" d="0.0012479355947579093" /> - <width sOffset="106.68261973697608" a="2.4934564950675409" b="0.00011290206591979546" c="-0.0029945267398645741" d="0.0017877559554625698" /> - <width sOffset="107.73424970427061" a="2.492342706475978" b="-0.00025399087975655141" c="0.0018907305680629055" d="-0.00042848802166335924" /> - <width sOffset="110.29438206855363" a="2.4968948782037952" b="0.0010017616746857434" c="-0.0012426301832563923" d="-0.0004558507374798356" /> - <width sOffset="111.22296808430426" a="2.4963886180683561" b="-0.0024852183129552771" c="-0.0011322293270014066" d="0.0011188625172516837" /> - <width sOffset="112.46470391429074" a="2.4936990615802834" b="-0.00012152899182020852" c="-0.0016026596195670762" d="0.00048790839047750141" /> - <width sOffset="114.96924948371827" a="2.4910068343515768" b="0.0010321827963911678" c="0.00054149541690313204" d="-0.00020177894895323788" /> - <width sOffset="117.4547905455525" a="2.4938192708448641" b="-1.5718221538209287e-05" c="0.00099881783550001069" d="-0.00021362326118648818" /> - <width sOffset="119.93280540009536" a="2.49666304383324" b="0.00099915481272895568" c="-0.0016370449239388732" d="0.00023096973163538591" /> - <width sOffset="120.32114407478579" a="2.4968177031246519" b="-0.00016780539374253167" c="-0.0013394021062874931" d="0.00024357582029260451" /> - <width sOffset="125.13600958068892" a="2.4921470657531906" b="0.0038745160637072493" c="-0.001451999608198079" d="0.00014735721211221482" /> - <width sOffset="130.12209338826364" a="2.4936337995471769" b="0.00038528957424636273" c="-0.0018171913014251779" d="0.00039350041807447215" /> - <width sOffset="130.34790608101792" a="2.4936326727055986" b="-0.00037520476895269023" c="-0.0013623549712237699" d="0.00037026142713153976" /> - <width sOffset="133.94683613957466" a="2.4918962291028981" b="0.0042059632630080321" c="-0.0016202425427893031" d="0.00016303136185111424" /> - <width sOffset="138.94644427308117" a="2.4927988117282629" b="0.00023024329073912959" c="0.00039661859889923349" d="-0.00013057258824475062" /> - <width sOffset="140.37466808725009" a="2.4935562822477078" b="0.00056412853773824337" c="-0.00022361690232399888" d="-0.00018412826584059998" /> - <width sOffset="142.24950567137031" a="2.4926144939037593" b="-0.0022160035912264535" c="0.0023596990953053554" d="-0.00059577369120038942" /> - <width sOffset="144.25271479199466" a="2.4928553169388312" b="6.5692291335801845e-05" c="0.0016302167014487542" d="-0.00041871212935969793" /> - <width sOffset="147.1718843774791" a="2.4965232374981579" b="-0.0011207800638443101" c="-0.00039896478256286393" d="7.3327226882792933e-05" /> - <width sOffset="150.40143009348222" a="2.4912123961272989" b="-0.0014033287257897258" c="0.00033353748908621235" d="7.5084380765744348e-05" /> - <width sOffset="151.31548822347898" a="2.4902656851882696" b="-0.00060538390808519832" c="0.00031992606398866902" d="-2.5503593424496662e-05" /> - <width sOffset="158.59971617744517" a="2.4929740368452693" b="-4.2153838588181169e-06" c="-0.00037320916986874965" d="5.164953474364515e-05" /> - <width sOffset="160.42819209971438" a="2.4920343131742406" b="-0.00085097992798603694" c="-7.5507152770506038e-05" d="5.5519366434650101e-05" /> - <width sOffset="160.50616880232545" a="2.4919675237775607" b="-0.00086174279135055321" c="0.0011950273286017072" d="-0.00017973458715012835" /> - <width sOffset="164.97616182028713" a="2.4959403348055709" b="-0.00095195794150826005" c="-0.0006337501434559885" d="0.00021647913311457451" /> - <width sOffset="167.48561583930072" a="2.4929814931152308" b="-4.2950871367086058e-05" c="-0.00013541857580344426" d="0.00015858040012482448" /> - <width sOffset="168.65166859531092" a="2.4929987068170947" b="0.00028809405533323715" c="3.8376030914371933e-06" d="-1.444130319365964e-05" /> - <width sOffset="170.45495410594654" a="2.4934460182108573" b="0.00016105228053110016" c="-8.0944352783036239e-05" d="-1.3685536514626038e-05" /> - <width sOffset="172.92204015141499" a="2.4931451777758555" b="-0.00048823269643203174" c="0.00036894245518301328" d="-3.7414086127446813e-05" /> - <width sOffset="180.48171611217867" a="2.4943750335280308" b="-0.001324561100250303" c="-0.00047997902446163579" d="-3.6968245512768314e-05" /> - <width sOffset="181.22854906987027" a="2.4931026955599815" b="-0.0021033475758911874" c="0.00019439340152388798" d="1.4569687634809439e-05" /> - <width sOffset="188.33514750239945" a="2.4932018468321795" b="0.0028670753138061141" c="-0.0014510943082446787" d="0.00017923447677823436" /> - <width sOffset="190.50847811841084" a="2.4944188199466213" b="-0.00090056997694384997" c="-0.00029429294749948017" d="0.00019331926912819234" /> - <width sOffset="192.34399181560801" a="2.4929698016916362" b="-2.6985491866540756e-05" c="-0.00087912464424813553" d="0.00016141232570456373" /> - <width sOffset="196.62823669583827" a="2.489410934368296" b="0.001328294682185825" c="-0.00089336871245798818" d="0.00014011519746585092" /> - <width sOffset="200.53524012464297" a="2.489319952457552" b="0.00076394462550070322" c="0.00071179198877678932" d="0.00014632350079096617" /> - <width sOffset="201.37916964849401" a="2.4905595676138388" b="0.0022779914462205115" c="-0.00055616658969394491" d="-1.9217114964981934e-06" /> - <width sOffset="203.382315367117" a="2.4928756000415566" b="2.669286327645345e-05" c="0.00013334429519548687" d="-1.1911205937221503e-05" /> - <width sOffset="206.62521604170499" a="2.4939582492580818" b="0.00051574828361208532" c="2.1651644214902184e-05" d="-1.1757928325921678e-05" /> - <width sOffset="210.56200213087513" a="2.4956068117166668" b="0.00013954090466622286" c="-0.00011872798150735502" d="-1.1382902070890826e-05" /> - <width sOffset="215.39020691674941" a="2.492231629450818" b="-0.0018030047758590684" c="0.0016951996388894122" d="-0.00035139099711923742" /> - <width sOffset="217.89204422998588" a="2.4928287828397977" b="8.0953659529159512e-05" c="0.0018517114450591935" d="-0.00048599353524657541" /> - <width sOffset="219.47906670079374" a="2.4956784696178005" b="0.0022862402615017878" c="-0.0012491020266794735" d="0.00013823933227119883" /> - <width sOffset="220.58876413710726" a="2.4968662307006149" b="2.4685147434530715e-05" c="-0.00078794674396828876" d="0.00013260782666672577" /> - <width sOffset="224.48093885418407" a="2.4928445940970496" b="-8.2330185590583083e-05" c="-0.0014328500796504783" d="0.00030903619888984985" /> - <width sOffset="226.5059931078365" a="2.4893683457343609" b="-0.0020836000798676274" c="0.0066118897593440123" d="-0.0036344919961725803" /> - <width sOffset="227.56939069489118" a="2.4902589747613817" b="-0.00035127281279818783" c="0.0012673907996830123" d="-0.00029114778543433038" /> - <width sOffset="230.31871756424843" a="2.4928226434368677" b="1.5488246667180738e-05" c="0.00092166274944069522" d="-0.00017045490431957073" /> - <width sOffset="230.61552614333942" a="2.4929039777066571" b="0.0005175542243127107" c="0.00075768419547974611" d="-0.00017186889668690346" /> - <width sOffset="234.90929042503686" a="2.4954897934253548" b="-0.0024817483217016" c="-9.5666545511496979e-05" d="0.00040087071316251488" /> - <width sOffset="236.40858196975034" a="2.4929049052706063" b="-6.5290480634479231e-05" c="-0.0012612512109498534" d="0.00027802271910317951" /> - <width sOffset="239.31166602563988" a="2.4888880184366853" b="-0.00035888649214975855" c="0.00095489166748681715" d="-0.00011778671248962536" /> - <width sOffset="240.64228814957158" a="2.4898236661487561" b="0.0015566698234495135" c="0.00048234075559134166" d="-0.00011823876505626022" /> - <width sOffset="245.44320853138922" a="2.4953307223325432" b="-0.0019877689432350873" c="0.00026043480217594447" d="5.6042474497266873e-05" /> - <width sOffset="247.6908349879881" a="2.492814971941165" b="3.2301628740462622e-05" c="-5.4222807829327585e-05" d="3.3190825192963229e-05" /> - <width sOffset="248.8464042469457" a="2.4928311088485087" b="3.9948349646413593e-05" c="2.4302404588447477e-06" d="-1.5102771920938301e-06" /> - <width sOffset="250.66905015580372" a="2.4929028493198651" b="3.3755690146941716e-05" c="-1.1542401162190452e-05" d="6.8218937417468827e-07" /> - <width sOffset="260.33951372486428" a="2.4927668073121465" b="1.9056329762006657e-06" c="0.0019236839413642372" d="-0.00018393586121870546" /> - <width sOffset="261.67179569142235" a="2.495748871968134" b="0.0041482396844909819" c="-0.0031866173235824014" d="0.00043298797031039802" /> - <width sOffset="266.41601636369995" a="2.4899407922672081" b="0.0031488069363945683" c="-0.00035308994407631626" d="-0.00031782367193739262" /> - <width sOffset="267.91593499428507" a="2.4927968999312275" b="-5.5482476139687934e-05" c="0.00049316834021351935" d="-0.00013552625327641852" /> - <width sOffset="270.53782128765937" a="2.4935989411744899" b="-0.0002643592352379689" c="1.1270283131804881e-05" d="-3.8431204398747799e-06" /> - <width sOffset="270.72257416826801" a="2.493550460504089" b="-0.00026058833957705806" c="2.6360734010910238e-05" d="-8.1967309614941448e-07" /> - <width sOffset="280.74933617450017" a="2.492761533292458" b="2.08174170999555e-05" c="5.2045537623822896e-06" d="-1.0402638675172529e-06" /> - <width sOffset="285.5367073119711" a="2.492866337563032" b="-8.7550256075076373e-07" c="-0.00016784624429940127" d="-9.6663377567864344e-07" /> - <width sOffset="285.66330607842167" a="2.4928635346508292" b="-4.3420234970615198e-05" c="-0.0011487409759722976" d="0.00052291125308152821" /> - <width sOffset="287.06180856996383" a="2.4919863621385074" b="-0.00018831052078834969" c="-2.8436289792945883e-05" d="2.0441385530940283e-06" /> - <width sOffset="290.77609818073233" a="2.4909993628134277" b="-0.00031494926894585639" c="-1.0299642433506906e-05" d="3.2106873021066138e-06" /> - <width sOffset="294.76768778136068" a="2.4897823031310624" b="-0.00024370756427759044" c="6.7027701705124854e-05" d="-5.2432723717039904e-06" /> - <width sOffset="300.80286018696444" a="2.4896002754367847" b="-7.5920343581793379e-06" c="-2.1498761660701123e-05" d="-4.8309947662951493e-06" /> - <width sOffset="300.83515679882117" a="2.4896000076523155" b="-8.995826033497494e-06" c="7.1166192493427396e-05" d="-3.8501362355530202e-06" /> - <width sOffset="310.68142343862371" a="2.4927356374298482" b="0.00027264659846624204" c="-0.00010043671790825407" d="1.1990924948414873e-05" /> - <width sOffset="310.8296221931966" a="2.4927738764664245" b="0.00024366747092110396" c="-9.5719587589087964e-05" d="1.2151695330101991e-05" /> - <width sOffset="313.93091526473165" a="2.4929713922715546" b="5.8418265019084988e-07" c="-0.00010954799070881071" d="1.1299425450014065e-05" /> - <width sOffset="319.79449002548699" a="2.4914863402113747" b="-0.00011862759160817386" c="-1.7587941972538843e-05" d="3.7997670610099614e-07" /> - <width sOffset="320.85638419942876" a="2.4913409927500592" b="-0.00015469525070250861" c="-1.429397684379154e-05" d="2.2370539990527319e-06" /> - <width sOffset="330.88314620566092" a="2.4906079041795524" b="0.00023337323089413665" c="5.4311320226593481e-05" d="1.5211796468947016e-06" /> - <width sOffset="333.29248707273683" a="2.4915067281746337" b="0.00052157319167479973" c="0.00045336578374436336" d="-0.00011700970092278163" /> - <width sOffset="335.73364755284064" a="2.4937794975765133" b="0.00064317519334006375" c="-0.00011621733036999508" d="5.096655846960609e-06" /> - <width sOffset="340.90990821189308" a="2.4947017112299044" b="-0.0001502927848129425" c="-3.6285294138435229e-05" d="5.0758895633022056e-06" /> - <width sOffset="345.67915306357759" a="2.4937102253163381" b="-0.00015003575959302126" c="-5.0218146730966251e-05" d="9.9206526141121311e-06" /> - <width sOffset="350.17810300960934" a="2.492922165773984" b="5.0479752310194151e-07" c="-0.00013987304426926557" d="1.6980506219430696e-05" /> - <width sOffset="351.0165090210819" a="2.4928342760177165" b="-0.00019822795612901368" c="-3.4450016829949283e-05" d="2.4628418519100952e-06" /> - <width sOffset="360.96343222435735" a="2.4898778226607687" b="-0.00015254111489562596" c="3.8761082684854667e-05" d="2.4451245157613731e-06" /> - <width sOffset="370.16716501420166" a="2.4936635834404317" b="0.0011823221176130317" c="-0.0021129787440622421" d="0.00067212377884024973" /> - <width sOffset="371.91663287606673" a="2.4928638337238622" b="-3.9472362681580546e-05" c="-0.00095141679895006091" d="0.0007956999418734014" /> - <width sOffset="373.35826155146026" a="2.4932136243155218" b="0.0021784415834281102" c="-0.0010147051095590037" d="9.581983382023188e-05" /> - <width sOffset="380.9478158959671" a="2.493188065523654" b="0.0033341735233127431" c="-0.0030899318789509248" d="0.00069363045923552644" /> - <width sOffset="381.01695623682167" a="2.4934040496052168" b="0.002916843102153083" c="-0.0029353362351537335" d="0.00068954200229273883" /> - <width sOffset="383.19700287127557" a="2.4929566884198877" b="-5.0137813233009157e-05" c="-0.0020404664700667064" d="0.00060399939363867854" /> - <width sOffset="385.60172328753896" a="2.4894358078615388" b="0.00061456557711851018" c="0.0011234670462624461" d="-0.00032238786016593397" /> - <width sOffset="388.10087590867477" a="2.4929564210304225" b="0.00018932150126580848" c="0.0019405151446255464" d="-0.00070578041556704099" /> - <width sOffset="389.52272987091385" a="2.4951199090148863" b="0.0014270172912446803" c="-0.0036925119983713499" d="0.00082072540453719824" /> - <width sOffset="391.04371824305377" a="2.4916359638463161" b="-0.0041095060256145146" c="5.2339691479866138e-05" d="0.00081951138868371974" /> - <width sOffset="393.00912883434069" a="2.4899830601061455" b="0.0055931530912647206" c="-0.002276522270328863" d="-0.00034421921885407407" /> - <width sOffset="394.00878056835057" a="2.4929554687119841" b="9.7557184462537955e-06" c="0.00041944892692442757" d="-1.4659339194922294e-05" /> - <width sOffset="396.07364093719366" a="2.4946349371759151" b="0.0015544558485720865" c="-0.00035639572260327178" d="1.6812193498274899e-05" /> - <width sOffset="401.07048024928594" a="2.4956012125488209" b="-0.00074792759283001404" c="-0.00010535883880153778" d="1.6918179805351878e-05" /> - <width sOffset="409.31267634762384" a="2.4917521101154456" b="0.00096324454031042599" c="-0.00027985485527919551" d="1.7098154768709087e-05" /> - <width sOffset="411.0972422555181" a="2.4926770099028852" b="0.00012776189524334961" c="-0.00019215938283691434" d="1.4387748977912801e-05" /> - <width sOffset="421.12400426175026" a="2.4891426925980875" b="0.00061374740607779161" c="0.00024128857006727164" d="1.4342231316074623e-05" /> - <width sOffset="421.56304741242627" a="2.489459878484892" b="0.00083391337180957221" c="9.4433187872847103e-05" d="-0.00012655489691839285" /> - <width sOffset="422.38722329802033" a="2.490140465214167" b="0.00073167921008268286" c="0.00016164004548858499" d="-4.2041889989352858e-05" /> - <width sOffset="426.38540761712193" a="2.4929627283665372" b="8.033496976199081e-06" c="0.00041998654109660737" d="-5.145899196621286e-05" /> - <width sOffset="430.48430467758635" a="2.4965080889661664" b="0.00085731574325063637" c="-0.0003682282079001221" d="2.1184556547898051e-05" /> - <width sOffset="431.15076626798242" a="2.4969221717844317" b="0.00039472452940089546" c="-0.00033417107265461949" d="2.1796240357183073e-05" /> - <width sOffset="441.17752827421452" a="2.4892554747600419" b="0.00026733450574979202" c="0.0003273160937564764" d="1.8931190044361672e-05" /> - <width sOffset="442.11023798798408" a="2.4898049289650688" b="0.00092732372524248399" c="0.00031049259826820694" d="-9.3639551450487097e-05" /> - <width sOffset="445.35856542262013" a="2.492883873486484" b="-1.9663040520847587e-05" c="4.4060325944642433e-05" d="-8.1493659089088333e-05" /> - <width sOffset="447.07837286894812" a="2.4925658387345901" b="-0.00059122307899555238" c="-0.0002320503226329579" d="3.461673205958945e-05" /> - <width sOffset="451.20429028044668" a="2.4886076143546889" b="-0.00073820192497356645" c="0.00020000155097617083" d="3.3489446964467998e-05" /> - <width sOffset="452.46098121014165" a="2.4880622446217417" b="-7.6854807918101675e-05" c="9.7605601545494729e-05" d="-2.3870059625404824e-06" /> - <width sOffset="458.64776764126145" a="2.4907574833861901" b="0.00085677775694397319" c="6.6540058161576056e-05" d="-1.0028056274660829e-05" /> - <width sOffset="461.23105228667885" a="2.4932419544032465" b="0.0009997991024487049" c="-9.8323565782184057e-06" d="-9.4331203002343053e-06" /> - <width sOffset="465.10660499952985" a="2.4964199412650432" b="0.00049853364934862848" c="-0.0005406939557645301" d="4.6135353342170184e-05" /> - <width sOffset="471.25781429291101" a="2.4897658870018864" b="-0.00091638761959424858" c="0.00030499116405310184" d="4.9129371415388784e-05" /> - <width sOffset="473.7663313923756" a="2.4901618370215868" b="0.0015412264826940164" c="-0.00012884242443069165" d="-2.307426388756536e-05" /> - <width sOffset="477.01437834772798" a="2.4930178809606041" b="-2.603323825082235e-05" c="9.9362401100007478e-06" d="5.4768851014392089e-05" /> - <width sOffset="480.15604053104266" a="2.4947324553232155" b="0.0016581118414807153" c="-0.0018839025758188733" d="0.00038792253177568898" /> - <width sOffset="481.28457629914317" a="2.4947619279537223" b="-0.0011118247997520992" c="-0.00056656009737228593" d="0.00037124208905646151" /> - <width sOffset="482.90430969126976" a="2.4930522442458516" b="-2.527616909061333e-05" c="-0.0012028184713404591" d="0.00036765156353243825" /> - <width sOffset="485.65164800891523" a="2.4915279109576689" b="0.0016905815088147961" c="-0.00050778653781123509" d="4.6313279045153888e-05" /> - <width sOffset="490.39864032111188" a="2.493064717363719" b="5.253258977717945e-07" c="0.0035782315583089033" d="-0.00048941571114520196" /> - <width sOffset="490.67220722092327" a="2.4933226317864108" b="0.0018484148292998027" c="-0.00166298894294573" d="0.00023363907110177085" /> - <width sOffset="495.4106784993927" a="2.4895996777529348" b="0.0018261354752853454" c="0.0034118873290941982" d="-0.0021773515622368366" /> - <width sOffset="496.65983171244693" a="2.4929606512616367" b="0.00015756352953388841" c="0.0039306832293144779" d="-0.0019582943775521911" /> - <width sOffset="498.07551719114144" a="2.4955052452740087" b="-0.00048745148650289295" c="-0.00053315889627641565" d="8.85509819771655e-05" /> - <width sOffset="501.33810031160743" a="2.4913149455852004" b="-0.0011386727843616098" c="0.00032866280688943712" d="8.8758241172637287e-05" /> - <width sOffset="503.83391811176546" a="2.4919002004724273" b="0.0021605457918177397" c="-0.0002857294910788516" d="-0.0010022595656221593" /> - <width sOffset="504.58340562707281" a="2.492937037229499" b="4.3242004574964299e-05" c="0.0012286511912215901" d="-0.00078947786685622809" /> - <width sOffset="505.3552908940311" a="2.4933393773491339" b="0.0005288685107026599" c="-0.00073788458172891771" d="0.00012928648367424521" /> - <width sOffset="509.87011055310563" a="2.4925843921310662" b="0.0017720074485581246" c="-0.0010433466948823727" d="0.00016449314882064991" /> - <width sOffset="511.3648623178396" a="2.4934513292528244" b="-0.00024450852002605092" c="-0.00031126294132573299" d="0.00016808930570390713" /> - <width sOffset="512.86863888617268" a="2.4929513676040109" b="-4.0325143186805204e-05" c="-0.00096591963122536514" d="0.00026714901094615582" /> - <width sOffset="516.00393021666514" a="2.49156344940255" b="0.0017810617546477577" c="-0.00033214544491145154" d="2.0782062633734948e-05" /> - <width sOffset="521.3916243240717" a="2.4947681025495934" b="1.1803887227361358e-05" c="5.3014223960821233e-06" d="2.4758054730937226e-05" /> - <width sOffset="522.48818396356069" a="2.494820065620079" b="0.00011274099089816914" c="-0.00069165709349104025" d="0.00014789702173879224" /> - <width sOffset="525.49046531936551" a="2.4929264973293979" b="-4.1062202601445733e-05" c="-0.0006267340978176664" d="9.4990080146168589e-05" /> - <width sOffset="530.33857750103357" a="2.4888207554231503" b="0.00057997853628783281" c="0.00031611052379716231" d="-3.9668773232048689e-05" /> - <width sOffset="531.41838633030386" a="2.4897656574646527" b="0.0011238965710222365" c="0.0001893927892720499" d="-4.5300523824950691e-05" /> - <width sOffset="535.77934823569854" a="2.4945117204700873" b="0.00019119149326733134" c="-8.4567392354581406e-05" d="4.8556739483626494e-06" /> - <width sOffset="541.44514833653602" a="2.4937633983323666" b="-0.00029947218290768797" c="-1.8121424601232376e-06" d="5.6201051822576218e-06" /> - <width sOffset="545.7864197564711" a="2.4928889833506949" b="2.5540684951447668e-06" c="2.7301920961115317e-05" d="-8.989435616891347e-07" /> - <width sOffset="549.32053979892714" a="2.4931993304251172" b="0.00016184717330278067" c="1.6913802763251407e-05" d="-1.0292684146144259e-06" /> - <width sOffset="551.47191034276818" a="2.4936155585999282" b="0.00022033130437964414" c="1.1427527616241696e-05" d="-1.1763811317928154e-06" /> - <width sOffset="561.49867234900034" a="2.4957877944428546" b="9.4687697556780984e-05" c="-2.0262889672407952e-05" d="-2.7690855615265126e-06" /> - <width sOffset="563.22025917515009" a="2.4958766217610533" b="2.9749395160597741e-07" c="-0.00011605278717636793" d="8.8228918915860335e-06" /> - <width sOffset="571.52543435523251" a="2.49292850035659" b="-0.00010167831448187285" c="9.9093686670413165e-05" d="1.0045717473160969e-05" /> - <width sOffset="571.97589777333678" a="2.4929037240650151" b="-6.2868035329149974e-06" c="-0.00012345140817288645" d="1.6756702499589042e-05" /> - <width sOffset="576.08302937969142" a="2.4919563852271605" b="-0.00017236634619415079" c="0.00010203026121231023" d="-5.8920341928760989e-06" /> - <width sOffset="581.55219636146467" a="2.4931016994274344" b="0.00041495090162374168" c="9.6848428276590209e-07" d="-6.1693734898858462e-06" /> - <width sOffset="587.03070450305881" a="2.4943896356459643" b="-0.00012994108047799336" c="-0.00011475671046034776" d="1.701336722226675e-05" /> - <width sOffset="591.57895836769683" a="2.4930254561006153" b="-0.00011797954241930114" c="0.00011574420909150271" d="1.6752829660210384e-05" /> - <width sOffset="592.03355478877825" a="2.4929973163391699" b="-2.3594218857394059e-06" c="-9.750061290058384e-05" d="6.1994531062729924e-06" /> - <width sOffset="601.60572037392888" a="2.4894784145508986" b="-0.00016484358999040768" c="8.040955665837671e-05" d="6.3824173104525676e-06" /> - <width sOffset="603.47254641438985" a="2.4894924344900513" b="0.000202106647186034" c="0.00033778107535597656" d="-4.7574072065635471e-05" /> - <width sOffset="608.47525115074745" a="2.4930007649348811" b="9.8279095628018252e-06" c="0.00057017558884958641" d="-7.8458989431494527e-05" /> - <width sOffset="611.63248238016104" a="2.4962461344524112" b="0.0012639169757732403" c="-0.00017908528777288636" d="-7.7773018594831e-05" /> - <width sOffset="612.13615753164913" a="2.4968273685426912" b="0.0010243249586717098" c="-0.0015483598007235801" d="0.00022829140595085677" /> - <width sOffset="616.21038526972654" a="2.4907381877722541" b="-0.00022396164989678651" c="0.00035061651310152643" d="-4.3621825913460373e-05" /> - <width sOffset="621.21281047720197" a="2.4929310879502413" b="9.09264413679646e-06" c="0.00010189172109498817" d="-8.4940568159900251e-06" /> - <width sOffset="621.6592443863932" a="2.4929546987997275" b="9.498980383871973e-05" c="9.5955225341641694e-05" d="-7.2718772126330857e-06" /> - <width sOffset="631.68600639262536" a="2.4962236726967415" b="-0.00017402517030277575" c="-0.00012970492917226356" d="-4.6067703454946266e-06" /> - <width sOffset="634.72952330789178" a="2.4943626935589664" b="-0.0010915609371419063" c="7.9242227150772758e-05" d="-1.45555378542654e-06" /> - <width sOffset="641.71276839885752" a="2.490108681095939" b="-0.00019776849974977376" c="4.9367938678155926e-05" d="-1.6347223309907523e-06" /> - <width sOffset="651.73953040508968" a="2.4914410743226743" b="0.00029918752533987384" c="-1.2849009300038921e-06" d="-1.4079545826181432e-06" /> - <width sOffset="659.73981586666207" a="2.4930314704865708" b="8.2818046611668646e-06" c="-0.00041258960311928074" d="5.5961066997124708e-05" /> - <width sOffset="661.76629241132184" a="2.4918196147580431" b="-0.00097449414231287894" c="-8.7837331586966848e-05" d="5.0801451392107439e-05" /> - <width sOffset="667.52729733097442" a="2.4930036911238513" b="0.003071618449496368" c="-0.0011147434527868129" d="0.0001011224137545735" /> - <width sOffset="671.793054417554" a="2.493671223351777" b="-0.00091855343725943256" c="0.00017949867696182009" d="0.00010056286724503555" /> - <width sOffset="673.02460832514771" a="2.4930000696717656" b="-1.8850190506403131e-05" c="0.014011837258513422" d="0.0021916344608351136" /> - <width sOffset="673.04170997636618" a="2.4930038562568306" b="0.00046232385580126205" c="-0.00017862898957754676" d="4.4601210603207469e-05" /> - <width sOffset="677.17164705966411" a="2.4950082492685191" b="0.0012690765106579342" c="-0.00085968519938894406" d="0.00010643773055390131" /> - <width sOffset="681.67302595544686" a="2.4930096048181172" b="-4.0568163739429508e-07" c="-1.6042685003532094e-05" d="5.4759141489760054e-07" /> - <width sOffset="681.81981642378616" a="2.4930092013211107" b="-5.0801105358668896e-06" c="-1.4135348584492281e-05" d="1.3736033268615094e-07" /> - <width sOffset="691.84657843001821" a="2.491675619571895" b="-0.00024711470557445617" c="-1.0504409335800213e-05" d="-1.3875524526474027e-07" /> - <width sOffset="697.81210452154562" a="2.4897981671801714" b="-0.00038725721902945127" c="0.00010306680531464911" d="-3.8382413255190921e-06" /> - <width sOffset="701.87334043625037" a="2.4896682678695568" b="0.00025998032447754741" c="5.7087759544848523e-05" d="-3.2950217190016177e-06" /> - <width sOffset="711.90010244248253" a="2.494692854212933" b="0.00041098660238786389" c="-4.0735881695408289e-05" d="-3.922153587441287e-06" /> - <width sOffset="715.03708675906807" a="2.4954601673491439" b="3.9621093866711162e-05" c="-2.7477212031370835e-05" d="8.5950745145801932e-07" /> - <width sOffset="721.9268644487147" a="2.4947099339593155" b="-0.00021660269894095132" c="-1.0070865095301154e-05" d="8.9117305627447311e-07" /> - <width sOffset="730.2860826465178" a="2.4927161335436736" b="-0.00019815557707773606" c="8.6635469740983714e-05" d="-9.6065074178581862e-06" /> - <width sOffset="731.95362645494686" a="2.4925820630653286" b="1.0642791895574231e-05" c="3.949004840970176e-05" d="-6.0790373511369223e-06" /> - <width sOffset="736.28685609570346" a="2.4928750625802172" b="1.044563994672407e-05" c="5.9021821194634207e-05" d="-8.0760809089586018e-06" /> - <width sOffset="741.56494498160134" a="2.4933869464255922" b="-4.1465294628000027e-05" c="-7.0381127154481554e-05" d="3.8916436598572154e-06" /> - <width sOffset="741.98038846117902" a="2.4933578516709618" b="-9.7929040671592684e-05" c="-6.1187416921711262e-05" d="2.9197979804870341e-06" /> - <width sOffset="752.00715046741118" a="2.4891677076782743" b="-0.0004443183283996101" c="2.8708746735987515e-05" d="3.2810247980937436e-06" /> - <width sOffset="758.79709990282038" a="2.4885014714077025" b="0.00039934287627373523" c="-4.7428906856150111e-07" d="-3.7642697774005314e-07" /> - <width sOffset="762.03391247364334" a="2.4897763349744615" b="0.00038444108041385192" c="-3.4986939286626322e-06" d="-5.5197684843517667e-07" /> - <width sOffset="772.0606744798755" a="2.4927228693319385" b="0.00014779937671555729" c="-1.7616431875689787e-05" d="-1.2565593904249431e-06" /> - <width sOffset="775.2974066754449" a="2.4929740897297687" b="-5.7327572151374268e-06" c="-0.00015504880571693203" d="1.7466313429777892e-05" /> - <width sOffset="775.97606117849" a="2.4929042474718015" b="-0.00019204841630265446" c="0.00010640107869528602" d="-8.0648630767722001e-06" /> - <width sOffset="782.08743648610755" a="2.4938637008730353" b="0.00020482394287789796" c="-4.0141154579271862e-05" d="-7.9095780359374525e-06" /> - <width sOffset="786.19673043914577" a="2.4934786956032955" b="-0.00052577011133826592" c="8.2265486293077894e-05" d="4.020268273944593e-05" /> - <width sOffset="787.69664552625363" a="2.493010822482395" b="-7.6502374368811335e-06" c="-0.00032304335318670933" d="2.9219665516462153e-05" /> - <width sOffset="792.11419849233971" a="2.4891918647940185" b="-0.0011511269585486917" c="6.8168718080910247e-05" d="2.929106903203359e-05" /> - <width sOffset="792.79711271838335" a="2.4884468647586448" b="-0.0010170385945630276" c="0.0057663656394718833" d="-0.0024035699780186708" /> - <width sOffset="794.05796496125708" a="2.4915137932507623" b="0.0020608170804668892" c="-0.00022667196148662343" d="6.5113428747538544e-06" /> - <width sOffset="802.14096049857187" a="2.4968004443241147" b="-0.00032730764316458646" c="-7.1146674868244729e-05" d="6.7235430076023352e-06" /> - <width sOffset="811.05616713560232" a="2.4929918534398992" b="7.2976783769290341e-06" c="4.082995271978689e-05" d="3.7307091865423876e-06" /> - <width sOffset="812.16772250480403" a="2.4930555365914131" b="0.00011189567767716974" c="3.519350767413377e-05" d="-6.8947737853333351e-06" /> - <width sOffset="812.44247815605513" a="2.4930887943347404" b="0.00012967343468232338" c="8.4818353582134586e-05" d="-6.2851199161092258e-06" /> - <width sOffset="822.19448451103619" a="2.4965907146758131" b="-9.2037266174869905e-06" c="-9.8990790272325646e-05" d="-6.3486338034596852e-06" /> - <width sOffset="827.75778876226491" a="2.492382564158711" b="-0.0017001128898784489" c="0.00083928142387819349" d="-9.6005190659166121e-05" /> - <width sOffset="832.22124651726836" a="2.4929776554982928" b="5.4104160535787919e-05" c="-0.00044448252340010435" d="-9.5964467957731679e-05" /> - <width sOffset="832.25686027046515" a="2.4929790142610653" b="2.2079632279598839e-05" c="0.00032210515164403169" d="-0.00010155912261618079" /> - <width sOffset="836.02085302920329" a="2.4922097589743126" b="-0.001869677168171339" c="0.00027962637784549268" d="-1.2579547437481103e-05" /> - <width sOffset="842.24800852350052" a="2.488372565829251" b="0.00014946779995041198" c="4.6268060447698467e-05" d="-1.3260561143657746e-05" /> - <width sOffset="845.53395640259987" a="2.4888928034826927" b="2.3995794572579515e-05" c="0.00032841778263180508" d="-3.6622526084353235e-05" /> - <width sOffset="851.53394188530365" a="2.492949352648659" b="9.785973306939387e-06" c="5.3939444733981995e-05" d="-2.4270067303666732e-05" /> - <width sOffset="852.27477052973268" a="2.4929763379164358" b="4.9745534218501811e-05" c="5.8091719327888185e-06" d="-2.4688266838877761e-05" /> - <width sOffset="854.88798748157456" a="2.4927054319484059" b="-0.00042567453903832246" c="2.5582757232177386e-05" d="-3.7048360166152241e-07" /> - <width sOffset="862.30153253596484" a="2.4908047647978337" b="-0.00010744275131560404" c="1.7000675903545545e-05" d="-3.580837831492994e-07" /> - <width sOffset="872.32829454219689" a="2.4910756747153249" b="0.0001254798243891062" c="6.6073494741289683e-06" d="-4.942809775051803e-07" /> - <width sOffset="877.10384878909372" a="2.4917717645100446" b="0.00015476974120724881" c="-4.6360990281009074e-05" d="2.0172636860016271e-06" /> - <width sOffset="882.35505654842905" a="2.4915981856510161" b="-0.00016525339709253775" c="-1.4386497221691279e-05" d="2.0585581065491394e-06" /> - <width sOffset="891.4547258886962" a="2.4904542757168127" b="8.4292293375530167e-05" c="4.9218455197243358e-05" d="-3.4365591617617577e-06" /> - <width sOffset="892.38181855466121" a="2.4905719874088259" b="0.0001666912549011996" c="4.3399403927545595e-05" d="-3.6322198734463424e-06" /> - <width sOffset="901.9546632379122" a="2.4929584279021348" b="-9.601016653943556e-07" c="8.6181240163944579e-05" d="-5.2522144243950232e-06" /> - <width sOffset="902.40858056089337" a="2.4929752577425113" b="7.4031700455212505e-05" c="6.9704073450110301e-05" d="-4.6382122588249983e-06" /> - <width sOffset="909.19999672075687" a="2.4952401356791691" b="0.00037902101016207236" c="-5.9768524057476262e-05" d="3.728515053407512e-06" /> - <width sOffset="912.43534256712553" a="2.4959670443078465" b="0.00010936159530946154" c="-3.0494607649457844e-05" d="9.393605581980106e-07" /> - <width sOffset="922.46210457335769" a="2.4949447049650804" b="-0.00021884421526914566" c="-1.3887839623070124e-06" d="1.169331055705338e-06" /> - <width sOffset="928.77627437478532" a="2.4938018814192251" b="-9.6522982291941724e-05" c="-0.00016220371194296219" d="3.9172607782975184e-05" /> - <width sOffset="931.77615983481587" a="2.4931101408616945" b="-1.2128447580796783e-05" c="-0.00043475461219179745" d="6.8206200776074007e-05" /> - <width sOffset="932.48886657958985" a="2.4929053548482152" b="-0.00052789733239917659" c="-0.00027817231277584942" d="6.0508316983506464e-05" /> - <width sOffset="933.59868847113171" a="2.49205956992766" b="-0.00092175565435645163" c="0.00017062730976205988" d="-7.2347848574572091e-06" /> - <width sOffset="942.51562858582201" a="2.4922777400781353" b="0.00039543859592830986" c="-2.053644218530303e-05" d="-7.8273251249531421e-06" /> - <width sOffset="945.84778210706145" a="2.4930777877823438" b="-2.1487350819280465e-06" c="-4.8021652644300128e-05" d="-4.2893764505008084e-05" /> - <width sOffset="946.34815485733952" a="2.4930593155729408" b="-8.2424495139840799e-05" c="0.0010897064334734717" d="-0.00021685783109542714" /> - <width sOffset="950.12953865246163" a="2.4966038079570492" b="-0.0011436895132569615" c="2.1280117441661037e-05" d="5.9875632890387655e-06" /> - <width sOffset="952.54239059205418" a="2.4940522531792091" b="-0.00093642180145380349" c="6.4012387377371672e-05" d="4.9532508755248575e-06" /> - <width sOffset="959.09973278519851" a="2.4920608726634095" b="0.00054203104550809523" c="-7.6879151691429105e-05" d="7.1266496178671173e-07" /> - <width sOffset="962.56915259828634" a="2.4930457828412926" b="3.4313716029700167e-05" c="-5.8713410754363911e-05" d="1.4431022209176007e-06" /> - <width sOffset="962.84948027014275" a="2.4930508198043571" b="1.7359410721524927e-06" c="-0.00024301232847968881" d="2.3751938784204969e-05" /> - <width sOffset="969.20163003693301" a="2.4893441585732647" b="-0.00021040705707729137" c="0.00064174270473313832" d="-7.5197038431745774e-05" /> - <width sOffset="972.59591460451838" a="2.4930829379397048" b="0.0015470345842402262" c="-0.00011671605884485851" d="-7.5380968842308842e-05" /> - <width sOffset="975.38875123332764" a="2.4948510798337251" b="-0.00086880348057153138" c="-4.7204423274828697e-05" d="4.2796126719319487e-05" /> - <width sOffset="978.38851015523483" a="2.4929753241881709" b="3.3024588114704276e-06" c="-0.00046746525103449855" d="4.584397196902328e-05" /> - <width sOffset="981.62438628741052" a="2.4896445404468563" b="-0.0015819346778536767" c="0.0011986848211950002" d="-0.00012734465942054491" /> - <width sOffset="982.62267661075055" a="2.4891332073429275" b="0.00043060745181907126" c="0.000816070510033591" d="-0.00012842854315023601" /> - <width sOffset="987.82147203816726" a="2.4953826376855401" b="-0.0014975225686886385" c="-0.00080270567578019094" d="0.0004039422989216213" /> - <width sOffset="989.10782378606177" a="2.492987861379734" b="-0.0015574353079156693" c="-0.026314552202072641" d="0.0086631444617667631" /> - <width sOffset="991.10763238075674" a="2.4539204856091681" b="-0.0028677341947733626" c="-0.053268212741559261" d="0.028452596859106855" /> - <width sOffset="992.35751158749031" a="2.422676036598598" b="-0.0026796247591777851" c="-0.013432262427331134" d="0.0023984219778106033" /> - <width sOffset="992.8908877072231" a="2.4177893803341881" b="-0.014961538966895453" c="-0.009441869493121138" d="0.0024818930897228079" /> - <width sOffset="995.39063680154436" a="2.3601573516976444" b="-0.01563999331017123" c="-0.015600282490473497" d="0.0077950153725578741" /> - <width sOffset="996.39053482922077" a="2.3367144831635747" b="-0.023457099591150665" c="0.0056404590397050366" d="-0.0015042876309329565" /> - <width sOffset="998.89028398237224" a="2.2898259935121521" b="-0.023457367352163881" c="0.001410772849197136" d="-0.00013474955600173088" /> - <width sOffset="1002.6762006232149" a="2.2139271234285438" b="-0.018569393323026716" c="-0.00011709147323901057" d="-0.00013381084988541453" /> - <width sOffset="1004.8656250958491" a="2.1713051829591645" b="-0.021006418046360768" c="-0.0009803547099812948" d="-0.00015935955862812152" /> - <width sOffset="1005.8655135569918" a="2.1491616656775534" b="-0.023444880804171099" c="0.0078136506946981897" d="-0.0019534157697217265" /> - <width sOffset="1007.8652867742624" a="2.1179027253907732" b="-0.015629495553979605" c="-0.0062778802720970693" d="0.0020949914018358281" /> - <width sOffset="1010.6149793272516" a="2.0710152262944401" b="-0.002634486427163719" c="-0.073179690755640778" d="0.065197081158603051" /> - <width sOffset="1011.364893922434" a="2.0553810081746304" b="-0.0023965035342554237" c="-0.073861107549056879" d="0.065710053083697359" /> - <width sOffset="1012.1148106022654" a="2.0397583785264191" b="-0.0023147780478699545" c="-0.011585286344768624" d="0.0022142954283733886" /> - <width sOffset="1012.702962629447" a="2.0348398322716568" b="-0.013644671475338158" c="-0.0076768330521674102" d="0.0022135747709655837" /> - <width sOffset="1014.3664162193943" a="2.0010890355141093" b="-0.020809381348442672" c="0.0036212712235710832" d="0.0022069071966064387" /> - <width sOffset="1015.61626989964" a="1.9850461174933089" b="-0.0014148072465981969" c="-0.066310518471267052" d="0.044284050375838969" /> - <width sOffset="1016.6161539139507" a="1.9616049803378344" b="-0.0011991270286520882" c="-0.012203342747329057" d="0.0023152030466286238" /> - <width sOffset="1019.3328790319113" a="1.9147015961931615" b="-0.016242651922387854" c="-0.0013184389775179161" d="0.00017512327732043578" /> - <width sOffset="1022.7297246356792" a="1.8511788336383788" b="-0.019137707854014498" c="0.00045441155827764378" d="0.00017710620735273189" /> - <width sOffset="1023.4395227961793" a="1.8378871966675181" b="-0.018224941420983881" c="0.0011374310657279918" d="0.00011044159971583366" /> - <width sOffset="1024.4393961371823" a="1.8209121061913232" b="-0.015619126547350466" c="-0.0071121600677686685" d="0.003553081818624355" /> - <width sOffset="1026.4391440295294" a="1.7896502289892569" b="-0.0014379473669041394" c="-0.066038977517758043" d="0.044031758708355337" /> - <width sOffset="1027.4390171791226" a="1.7662052440827907" b="-0.0014373826885117024" c="-0.013563127584756743" d="0.00365445655260583" /> - <width sOffset="1029.9387025560573" a="1.7349433552532263" b="-0.00074067126498727001" c="-0.075310004767178057" d="0.085402557560855991" /> - <width sOffset="1030.3896050491517" a="1.7271271025665964" b="-0.016565243586345868" c="-0.00099870162733598834" d="0.00018590447120666421" /> - <width sOffset="1032.7564866419114" a="1.6847892918540728" b="-0.018168478388290544" c="0.00031835728655231791" d="0.0001867049907540599" /> - <width sOffset="1034.3890700458674" a="1.6567886850517732" b="-0.015636098304638461" c="0.0050046322403571103" d="-0.006004442735104842" /> - <width sOffset="1035.6389017053821" a="1.6333411363980135" b="-0.031264447568433031" c="0.030025113451260809" d="-0.016016300564147788" /> - <width sOffset="1036.8887342414146" a="1.6098982167736278" b="-0.03126801428218566" c="0.022965196941489213" d="-0.0087494660559585928" /> - <width sOffset="1038.6385001946014" a="1.5786257564528476" b="-0.031264793937439597" c="0.021660464338598119" d="-0.0069503670965022687" /> - <width sOffset="1040.1515903553839" a="1.5568326891111477" b="-0.013453706590875442" c="-0.0071370128002495176" d="-0.0075654773053304408" /> - <width sOffset="1040.6515166748168" a="1.5473778330595058" b="-0.026262103489056107" c="0.0072572635698450634" d="-0.0011660979534645326" /> - <width sOffset="1042.7832486481434" a="1.5130769019125294" b="-0.011218252950874067" c="-0.00019768234671501783" d="-0.0011667674624126034" /> - <width sOffset="1043.5325807219488" a="1.5040687907112522" b="-0.01347992713542613" c="-0.00054851930124028513" d="-0.00049464567470135353" /> - <width sOffset="1045.7822523108914" a="1.4653354566380781" b="-0.023458142020002543" c="0.0043936276638968548" d="-0.00073230245038347639" /> - <width sOffset="1049.7816683016165" a="1.3949472735037407" b="-0.023454506800986263" c="0.0066841692409259157" d="-0.0011888538633780033" /> - <width sOffset="1050.1688438235815" a="1.3867992517245389" b="-0.018813258375800387" c="0.0054929294623434401" d="-0.0013913293270096634" /> - <width sOffset="1052.8100106543757" a="1.3497936048408379" b="-0.018914519874685551" c="-0.00552670505464164" d="-0.0013938308414596001" /> - <width sOffset="1053.1683899067216" a="1.3422410509785978" b="-0.023412885596894941" c="0.01003367967207875" d="-0.0029527631737508377" /> - <width sOffset="1055.113566156949" a="1.3129311125838594" b="-0.017895539149031667" c="-0.00073827866257491191" d="0.00013143085764227727" /> - <width sOffset="1060.1619722809751" a="1.2206817405330233" b="-0.015300700228982892" c="-8.5533042051577372e-05" d="-6.5837622356861182e-05" /> - <width sOffset="1062.8367726606077" a="1.1778835353540167" b="-0.017171384935374276" c="-0.00060658548188708133" d="-6.406988685483123e-05" /> - <width sOffset="1063.161471998503" a="1.1722418526329808" b="-0.017585565343227139" c="0.002615848797190983" d="-0.00031711992632690346" /> - <width sOffset="1068.6605524225733" a="1.1019060146187902" b="-0.017585050312875179" c="0.0078150122554980477" d="-0.0043426937777301831" /> - <width sOffset="1070.1603011944808" a="1.0784615165862457" b="-0.023447305009511945" c="0.022512257158506126" d="-0.012008726183055979" /> - <width sOffset="1071.4100926289013" a="1.0608781352695855" b="-0.023448173675349189" c="0.0078177580194221264" d="-0.0017375642110294411" /> - <width sOffset="1072.86353466684" a="1.0379775439830174" b="-0.011734638027563072" c="0.00024213279941076314" d="-0.001738270468854973" /> - <width sOffset="1074.4095914605164" a="1.0139900704146481" b="-0.02345085585761017" c="0.0062550615524046733" d="-0.0011121829060891488" /> - <width sOffset="1078.1589645961403" a="0.95537559618637502" b="-0.023450267300376072" c="0.0065909526353085911" d="-0.0013816754634949754" /> - <width sOffset="1079.7682259769094" a="0.92894853531816945" b="-0.012971603051766038" c="-0.00026064435638238067" d="-0.0013671944859365939" /> - <width sOffset="1080.7680390494165" a="0.91435238216281434" b="-0.017592844525034339" c="0.0007081194552640373" d="-9.4725227870985439e-05" /> - <width sOffset="1082.890296673072" a="0.87929974718296577" b="-0.015867141562887984" c="0.00010805069594666442" d="-9.4466291934201341e-05" /> - <width sOffset="1085.767105338211" a="0.83229814206690556" b="-0.017590876264606016" c="0.00045111953103156186" d="-2.1126475559715265e-05" /> - <width sOffset="1092.9170586793043" a="0.72186413248972059" b="-0.014379981520714787" c="-2.0529998033950493e-06" d="-2.1096160932377046e-05" /> - <width sOffset="1098.0754697813986" a="0.64473596270679234" b="-0.016085218173775763" c="0.0043586902612711151" d="-0.0010894843555390766" /> - <width sOffset="1100.0750650821863" a="0.6212891570059238" b="-0.011722506885975191" c="-0.0011006760996642281" d="0.00018346736389976298" /> - <width sOffset="1102.9438206855364" a="0.58293336249812278" b="-0.013507971933618981" c="0.00047828904714272604" d="0.00018287214537924892" /> - <width sOffset="1104.0742527858279" a="0.56853888034390376" b="-0.011725561170117693" c="7.1372178721720603e-05" d="-2.168648853010269e-06" /> - <width sOffset="1112.9705826917684" a="0.4683462088403223" b="-0.010970571370304792" c="1.2717719884975748e-05" d="-1.221062471605388e-06" /> - <width sOffset="1114.5422706774434" a="0.45113056833402787" b="-0.010939643612206645" c="-0.00085450623630151752" d="6.6670207147117856e-05" /> - <width sOffset="1115.0421617351844" a="0.44545673316971524" b="-0.011743982796699264" c="0.00048300962825793391" d="-3.884619979295162e-05" /> - <width sOffset="1120.8463093669855" a="0.38596898268267132" b="-0.0100630318713479" c="-0.00068617269628845937" d="-9.9967358584748429e-05" /> - <width sOffset="1121.8460810184677" a="0.3751224904386774" b="-0.01173482901789058" c="-0.0025233471673852554" d="0.00031973792025600237" /> - <width sOffset="1122.9973446980007" a="0.35875602955668207" b="-0.016273555257617912" c="-0.0014089321315934795" d="0.00032628981605024632" /> - <width sOffset="1128.3446001564901" a="0.28133940298085669" b="-0.0033524432290124402" c="-0.004474335226792376" d="0.00087270932867754508" /> - <width sOffset="1130.3189421173206" a="0.26399586077476034" b="-0.010814647371484158" c="0.00058468111259019258" d="0.00087441278510836664" /> - <width sOffset="1131.818587163177" a="0.25204168699795559" b="-0.0031615258616640466" c="-0.0011298119113198357" d="7.175050381996678e-05" /> - <width sOffset="1133.0241067042327" a="0.24671417931689277" b="-0.0055727263861496956" c="-0.00086925098882290996" d="7.3452489696397962e-05" /> - <width sOffset="1138.5056936370854" a="0.20214604975010086" b="-0.0084812199850009002" c="0.00056349135492969507" d="7.100760386720592e-06" /> - <width sOffset="1143.0729173058467" a="0.17584107756351841" b="-0.0028896822618494516" c="-0.0019006169758960397" d="0.00030952456471335061" /> - <width sOffset="1147.8217162070364" a="0.15240474139414584" b="-6.2799486705896607e-07" c="-0.00066584276631679999" d="2.2999527117557632e-05" /> - <width sOffset="1148.7650862924017" a="0.15183089335290223" b="-0.0011954952008528166" c="-0.0019487873116470576" d="0.00027216182362205162" /> - <width sOffset="1153.0776307166971" a="0.13226034796368591" b="-0.002818929944711954" c="0.0015747056956684081" d="0.00027214054686738951" /> - <width sOffset="1154.0717952530888" a="0.13128165292039373" b="0.0011190242154299551" c="0.0011825564838232896" d="-0.00016708114113791507" /> - <width sOffset="1158.6088541472957" a="0.14509701302583533" b="0.0015316335854745407" c="-0.00044907363400541027" d="2.1397778699270557e-05" /> - <width sOffset="1160.6083022059031" a="0.14653517214615253" b="-7.5335857834942996e-06" c="0.0029484726909708462" d="-0.00080303932078779517" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="3" type="driving" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.2259558614803465" b="-6.2133989532690374e-10" c="-0.070508860649189486" d="0.047214339102059161" /> - <width sOffset="0.86308716984601053" a="3.2037879737321244" b="-0.016197946240487558" c="0.042206256544288952" d="-0.039147438640518929" /> - <width sOffset="1.6807165674443758" a="3.1973617084307513" b="-0.025692076417562448" c="-1302.9214757000027" d="280847.69169056276" /> - <width sOffset="1.6838082386499986" a="3.1931278698550836" b="-0.028711979745158517" c="0.012758021001337137" d="-0.0013045326814912022" /> - <width sOffset="6.7074389427374763" a="3.2054723899665474" b="0.00070424502838664985" c="-0.0024684883937783515" d="-0.00092342431935746457" /> - <width sOffset="7.089477072918875" a="3.2053296649778273" b="-0.0015861983695420294" c="0.00013520125085760763" d="1.6789309718821598e-05" /> - <width sOffset="10.026762006232149" a="3.2022624885884685" b="-0.00035739267501922259" c="0.00028515862823634986" d="1.6116107331361754e-05" /> - <width sOffset="17.883980290817895" a="3.2248763718511437" b="0.0071085406653305649" c="-0.0024004494215063696" d="0.00023054811883354884" /> - <width sOffset="20.053524012464297" a="3.2313542654328224" b="-5.1704650858932361e-05" c="-0.00089841198792936202" d="0.00023361500780957518" /> - <width sOffset="24.914628104338387" a="3.2367083904060894" b="0.0077749482471488702" c="-0.002012240721068018" d="-6.9446231419897038e-05" /> - <width sOffset="26.471010197355646" a="3.2436730624769208" b="0.0010066533236323849" c="-0.0016567827510679128" d="5.0768837807691427e-05" /> - <width sOffset="30.080286018696448" a="3.2281106828109198" b="-0.0089688410774552661" c="-0.0011323640025340349" d="5.2614401634152905e-05" /> - <width sOffset="34.550277321062239" a="3.1700936853684851" b="-0.015938318542876501" c="0.0040311462799888873" d="-0.00019967697989329745" /> - <width sOffset="40.107048024928595" a="3.1717399953586654" b="0.01036529452168021" c="0.00071271465835388045" d="-0.00020836664873257932" /> - <width sOffset="42.001449571591301" a="3.1925171947059336" b="0.01082229807877156" c="0.0032992108134060078" d="-0.0003425441148194761" /> - <width sOffset="43.355872284717329" a="3.2123763369587399" b="0.017874198859983394" c="-0.0012375750362057505" d="-0.00023502267392119314" /> - <width sOffset="46.743862119336541" a="3.2495886800714886" b="0.0013953098301393504" c="-0.001159822899230469" d="4.8585840934507057e-05" /> - <width sOffset="50.133810031160742" a="3.2428830471556105" b="-0.0047931600477294709" c="-0.00065539898470355173" d="5.7913373211064632e-05" /> - <width sOffset="52.10880100579211" a="3.2313063001492868" b="-0.0067042853465853411" c="0.0050667176407062078" d="-0.0012009843685799472" /> - <width sOffset="55.669092035221794" a="3.2174618230447418" b="-0.016296159188493368" c="0.0030976688376300444" d="0.00016053826503595003" /> - <width sOffset="57.834197227005809" a="3.1983291604028103" b="-0.00062494514349306098" c="0.0014899974853886029" d="-8.0879526678984926e-05" /> - <width sOffset="60.160572037392896" a="3.2039208950980962" b="0.0049944753022922814" c="0.00091668712394222434" d="-8.1183214210703387e-05" /> - <width sOffset="62.903391750160381" a="3.2228409659371162" b="0.0081908517614335836" c="0.0016702312894995551" d="-6.7393392845420592e-05" /> - <width sOffset="65.904192404056019" a="3.2606391067153027" b="0.016394321058288832" c="-0.0039580505188627803" d="0.00026530265588430919" /> - <width sOffset="70.187334043625043" a="3.2790929689037438" b="-0.0029102886461890888" c="-0.00055013024543981281" d="0.00026466073925738236" /> - <width sOffset="73.311776206552395" a="3.2727019727604958" b="0.001402975723933185" c="-0.00074119633064307743" d="-3.538573998170055e-05" /> - <width sOffset="77.695639015946981" a="3.2616266720109586" b="-0.007135786657450089" c="0.00026521076984986939" d="4.4030672241192884e-06" /> - <width sOffset="79.674839483543778" a="3.2485765494433276" b="-0.0060342325576654421" c="-0.0021639501353856944" d="0.00031328672754874079" /> - <width sOffset="80.21409604985719" a="3.244742406225972" b="-0.0080947720699325078" c="-0.0016636190464606295" d="0.00031284205576102484" /> - <width sOffset="86.2772195498017" a="3.2042348780289442" b="0.0062333707878498949" c="0.0049258825470263464" d="-0.0024770238056792794" /> - <width sOffset="87.541955453923634" a="3.2149866139249776" b="0.0068068302084404089" c="-0.0040420360899713279" d="0.00037250519773208339" /> - <width sOffset="90.240858056089337" a="3.2112381739019429" b="-0.0068712255535332539" c="-0.00094261902111698686" d="0.00038408046562860687" /> - <width sOffset="93.883710201469029" a="3.192265629039631" b="0.0015518026857466467" c="0.0039765513678030433" d="0.00041199051467745651" /> - <width sOffset="94.212254300816639" a="3.193219309088259" b="0.0042981599438283533" c="0.0003058152711983527" d="-1.4699762383659571e-06" /> - <width sOffset="99.466124352977417" a="3.2240295669584009" b="0.0073898594073857193" c="-0.0011573142121025998" d="4.8222330113575066e-05" /> - <width sOffset="100.26762006232148" a="3.2292338828473026" b="0.0056276280617471577" c="-0.00099997691018446086" d="4.6470237596559771e-05" /> - <width sOffset="104.20193325065672" a="3.2387262402940986" b="-8.2903263656846846e-05" c="0.0060206478768867477" d="-0.0011558508504781195" /> - <width sOffset="107.73424970427061" a="3.2626120441095274" b="-0.0008147892626314962" c="-0.0054729291513234916" d="0.0010603931266470778" /> - <width sOffset="110.58992619870624" a="3.2403482850334475" b="-0.0061304572113358678" c="0.0027091144751631019" d="0.0011040112553586776" /> - <width sOffset="111.22296808430426" a="3.2378331776120439" b="-0.0013732202087501401" c="0.003425479859062463" d="-0.00047070199937539463" /> - <width sOffset="114.18311366501155" a="3.2515747374279185" b="0.0065330929750420201" c="-0.0015070572078404944" d="-0.00053832829381865249" /> - <width sOffset="114.96924948371827" a="3.2555177190043594" b="0.0031655136309901404" c="-0.0012548433133263096" d="0.00015135904560906432" /> - <width sOffset="119.93280540009536" a="3.2588236677893869" b="0.001895590988427405" c="0.0020467718615883737" d="-0.00029323394718645758" /> - <width sOffset="120.32114407478579" a="3.2598512934544397" b="0.0033526072019220005" c="0.0017026416139151897" d="-0.00029430537295372083" /> - <width sOffset="125.13600958068892" a="3.2826147101251086" b="-0.00071999448467407329" c="0.0010824711961119698" d="-0.00019808676477332403" /> - <width sOffset="129.99109931288677" a="3.2819651944039903" b="-0.004216846942876936" c="-0.0032110256005974096" d="0.00014924379080364389" /> - <width sOffset="130.34790608101792" a="3.2800585752368403" b="-0.0064512771167569358" c="-0.0032395361798060831" d="0.00017248278174097846" /> - <width sOffset="132.75391192063998" a="3.2481858773545911" b="-0.019044524899899141" c="-0.012302671297999619" d="0.0034357926561500124" /> - <width sOffset="133.94683613957466" a="3.2137923067613583" b="-0.033728732266782253" c="0.0042487720247275868" d="0.0036430227214305651" /> - <width sOffset="135.32034332982005" a="3.184920676292152" b="-0.0014393668658972769" c="0.0012937650905885572" d="-4.2222565518033467e-05" /> - <width sOffset="140.37466808725009" a="3.2052447024998245" b="0.0084029728375955501" c="0.00062376574604706579" d="-5.0302669549191176e-05" /> - <width sOffset="142.24950567137031" a="3.2228599595310694" b="0.010211447706426895" c="-0.0032781100372301858" d="0.00036134275581054822" /> - <width sOffset="147.1718843774791" a="3.2367933222210525" b="0.0042050508788653886" c="0.00042019396791363349" d="-0.00013069660043073808" /> - <width sOffset="147.5424282100978" a="3.2384025222605972" b="0.0044626164446225081" c="0.0017615495543600557" d="-0.00025495870769391487" /> - <width sOffset="150.40143009348222" a="3.2596016926005191" b="0.0082831487848912463" c="-0.00043651366687283167" d="-0.00025589285484713554" /> - <width sOffset="151.31548822347898" a="3.266612839163122" b="0.0068437538732970156" c="-0.00091871060889489185" d="-0.00015530488065683621" /> - <width sOffset="153.02868164824366" a="3.274860152565771" b="0.0023284216758148006" c="-0.0008477153001548699" d="2.0012238754588773e-05" /> - <width sOffset="160.42819209971438" a="3.2537824151175072" b="-0.0069297591590431612" c="-0.00040468759699206422" d="2.0020988147274653e-05" /> - <width sOffset="160.50616880232545" a="3.2532396041921183" b="-0.0069925063630191832" c="-0.0016575509158393007" d="0.0002552749347017143" /> - <width sOffset="164.97616182028713" a="3.2116635716565343" b="-0.0065091673784138659" c="0.0011842210346078154" d="-0.00014093878556301602" /> - <width sOffset="167.08359885606455" a="3.2018862308003246" b="-0.0033956752649780715" c="0.00080548048554148822" d="-0.00017800209273001474" /> - <width sOffset="168.65166859531092" a="3.1978558135638262" b="-0.002182613557809833" c="0.00038360455909257655" d="-4.9803894114763582e-06" /> - <width sOffset="170.45495410594654" a="3.1951381533136294" b="-0.00084770273944311317" c="0.00037268272826333071" d="-4.3598982199346695e-06" /> - <width sOffset="172.92204015141499" a="3.1952496681667419" b="0.00091156823827650765" c="-0.00021076300035689348" d="1.936865139288481e-05" /> - <width sOffset="180.48171611217867" a="3.1984637514220449" b="0.0010456480441215794" c="0.00022871282886596203" d="1.9219608262289393e-05" /> - <width sOffset="181.22854906987027" a="3.1993802485773983" b="0.0014194283563710615" c="-0.00048542539887773775" d="-3.2318324885301155e-05" /> - <width sOffset="184.9699834685043" a="3.1962031663454198" b="-0.0035701540764569322" c="-5.3745623252712143e-05" d="1.784281167415283e-05" /> - <width sOffset="188.33514750239945" a="3.1842603370075047" b="-0.0033257061454434605" c="0.0020824968087677551" d="-0.00014682197746905347" /> - <width sOffset="190.50847811841084" a="3.1853616809802494" b="0.0036457202045082479" c="0.0011068500468602277" d="-0.00015052393087870055" /> - <width sOffset="196.62823669583827" a="3.2146265901581357" b="0.00028101416467252865" c="0.00043217355377897092" d="-0.00012922680263999551" /> - <width sOffset="200.53524012464297" a="3.2146145271877651" b="-0.0022597944604982037" c="-0.0010792016014258628" d="-0.00012939667710905117" /> - <width sOffset="201.37916964849401" a="3.2118610188586105" b="-0.0043578102033001338" c="0.00023161211579619654" d="1.8848535178180418e-05" /> - <width sOffset="206.62521604170499" a="3.1980952267709659" b="-0.00037152262794087963" c="0.00052406506344222748" d="1.8695257559951079e-05" /> - <width sOffset="206.94923593879875" a="3.198030503042979" b="-2.6019228861509296e-05" c="0.00014679376763476355" d="-3.0985160165306811e-06" /> - <width sOffset="210.56200213087513" a="3.1997063578159302" b="0.00091331766029116037" c="0.0001084112816942246" d="-4.0234087760850327e-06" /> - <width sOffset="215.39020691674941" a="3.2061904320718098" b="0.0016788055757102883" c="-0.0019286708099950328" d="0.0003359846862722865" /> - <width sOffset="219.47906670079374" a="3.2037779770497057" b="0.0027584330003826655" c="0.002979677493693148" d="-0.00028824818124649146" /> - <width sOffset="220.58876413710726" a="3.2101143676983077" b="0.0083066429619232315" c="0.0020321309914285894" d="-0.00028209715904392325" /> - <width sOffset="222.74479276053407" a="3.2346427687361095" b="0.013135356536868509" c="0.00041341798308537701" d="-0.0002871662381367409" /> - <width sOffset="226.5059931078365" a="3.2746163187195814" b="0.0040579503794833027" c="-0.0089941459124668211" d="0.0036563619569256233" /> - <width sOffset="227.56939069489118" a="3.2731576181521298" b="-0.0026667551760519714" c="-0.0035798775623239591" d="0.0003130177461873643" /> - <width sOffset="230.61552614333942" a="3.2406642663127521" b="-0.015762919307060672" c="-0.00070842879026942573" d="0.00031436564223065011" /> - <width sOffset="234.90929042503686" a="3.1848068107064389" b="-0.0044592485587385093" c="0.0019804642595447016" d="-0.00025837396761888346" /> - <width sOffset="239.31166602563988" a="3.1815137286399464" b="-0.0020443220487809926" c="-0.0012266864025087837" d="0.00013743546397321563" /> - <width sOffset="240.25134193617967" a="3.1786236092965616" b="-0.003985634615436431" c="-0.00074053163926406486" d="0.00014956009350493358" /> - <width sOffset="240.64228814957158" a="3.1769611949492238" b="-0.004496074876716361" c="-0.00057542067845306293" d="0.00015157491999889309" /> - <width sOffset="245.44320853138922" a="3.1588857384034439" b="0.00045970404804807725" c="0.00012661795210893481" d="-2.2706319554768988e-05" /> - <width sOffset="248.8464042469457" a="3.1610216895548691" b="0.00053257925052835754" c="-4.6794352636111121e-05" d="1.199478283061797e-05" /> - <width sOffset="250.66905015580372" a="3.1619095675248285" b="0.00048154155676769639" c="-2.8986466030773708e-06" d="3.8755750492703977e-06" /> - <width sOffset="260.33321717327567" a="3.1697906207364674" b="0.0015114066122391954" c="0.00013961176441919265" d="-4.8864971931102651e-06" /> - <width sOffset="261.67179569142235" a="3.1720521924220608" b="0.001858902463380344" c="0.0044951268561371086" d="-0.00062181032872140555" /> - <width sOffset="266.41601636369995" a="3.2156482572730472" b="0.0025242199438931202" c="-0.001025845331855858" d="0.00012900131352648072" /> - <width sOffset="270.53782128765937" a="3.2176577381655873" b="0.00064246795802056725" c="-1.4795804549527011e-05" d="-2.6818193410827031e-06" /> - <width sOffset="270.72257416826801" a="3.2177759140247382" b="0.00063672620233361471" c="-1.72505588393332e-05" d="-2.675374846633752e-06" /> - <width sOffset="280.74933617450017" a="3.2197290027876253" b="-0.00051612239981883769" c="-9.6312929682850434e-05" d="-1.0920708630048683e-06" /> - <width sOffset="281.9947163418089" a="3.2189347461639191" b="-0.00076109613799314247" c="7.7386574393541635e-05" d="2.0427120842067579e-06" /> - <width sOffset="285.66330607842167" a="3.2172849644788579" b="-0.00011082112066960498" c="0.0010803957998095639" d="-0.00052183517503130706" /> - <width sOffset="287.06180856996383" a="3.2178157032384727" b="-0.0001507788230363394" c="-3.5394192866624269e-05" d="-9.6806050290828526e-07" /> - <width sOffset="290.77609818073233" a="3.2167177651071102" b="-0.00045377332380925988" c="-3.0453857943639249e-05" d="-1.7358602669150675e-06" /> - <width sOffset="294.76768778136068" a="3.2143108776142366" b="-0.0007798632076375893" c="-9.012048931304341e-05" d="6.7180994069006483e-06" /> - <width sOffset="300.80286018696444" a="3.2077985614140916" b="-0.001133562417591103" c="3.0555521743962908e-05" d="6.6563572788916603e-06" /> - <width sOffset="300.83515679882117" a="3.2077619832844961" b="-0.0011315679086367509" c="-6.1932573336481023e-05" d="5.675498748150302e-06" /> - <width sOffset="310.68142343862371" a="3.1960337130545091" b="-0.00070047595201897872" c="0.00016358935481828744" d="-1.0165562042439103e-05" /> - <width sOffset="310.8296221931966" a="3.1959334631951011" b="-0.00065265826950883211" c="0.00015912124816471984" d="-1.017102577999345e-05" /> - <width sOffset="319.79449002548699" a="3.195542675560167" b="-0.00025195744727964607" c="-7.6194284414416586e-06" d="7.4842296411355851e-07" /> - <width sOffset="320.85638419942876" a="3.1952674277715971" b="-0.00026560769222768029" c="-8.4751861827650527e-06" d="-1.1493520355770248e-06" /> - <width sOffset="330.88314620566092" a="3.190593577263992" b="-0.000782218660022208" c="-4.6243689280649048e-05" d="-3.7792027762515011e-07" /> - <width sOffset="331.69580509578634" a="3.1899271574876042" b="-0.00085812810249574528" c="-2.2507865522693691e-05" d="-1.8232203168427831e-06" /> - <width sOffset="333.29248707273683" a="3.1884921968634332" b="-0.00094394822611084165" c="-0.00041930051723224727" d="0.00011670766025270286" /> - <width sOffset="335.73364755284064" a="3.1853869522097815" b="-0.00090463248378780782" c="0.00014807060764057619" d="-5.3986965170357427e-06" /> - <width sOffset="340.90990821189308" a="3.1839229434744265" b="0.00019431888824166053" c="6.0826732149443791e-05" d="-5.3423960862665192e-06" /> - <width sOffset="345.67915306357759" a="3.1856537021815168" b="0.00040996448737148678" c="7.0946480153988097e-05" d="-1.0187159137056122e-05" /> - <width sOffset="350.93667021812519" a="3.188289708775871" b="0.00031120449103528235" c="-8.6893044212810967e-05" d="-1.1690547749823417e-05" /> - <width sOffset="351.0165090210819" a="3.188313995143822" b="0.00029710606288214773" c="-0.00015240647473872877" d="2.8271123290183257e-06" /> - <width sOffset="352.07067679816487" a="3.188461141946215" b="-1.4792873667371321e-05" c="-0.00011321903203144502" d="5.7110765498274036e-06" /> - <width sOffset="360.96343222435735" a="3.1833924151964528" b="-0.00067353656525830628" c="3.9812853855224811e-05" d="5.5508820738306532e-06" /> - <width sOffset="370.16716501420166" a="3.1848935282980237" b="0.0014699411391797808" c="0.0024123320047105879" d="-0.0006641277722504921" /> - <width sOffset="371.1267771944996" a="3.1879386450727121" b="0.0042650502802521126" c="0.00043653572297166593" d="-0.00066253918356816194" /> - <width sOffset="373.35826155146026" a="3.1922678233310156" b="-0.003684090632266821" c="-0.00049420187879449106" d="3.7340924485380852e-05" /> - <width sOffset="380.9478158959671" a="3.1521648037961061" b="-0.0047329733467222461" c="0.0046129173262010855" d="-0.00056046970329956536" /> - <width sOffset="381.01695623682167" a="3.1518594306893637" b="-0.0041031337799786963" c="0.0044960828575844195" d="-0.00056039069123892463" /> - <width sOffset="385.60172328753896" a="3.1735494895824665" b="0.0017854648440849951" c="-0.0020182839690262504" d="0.0003659965625656708" /> - <width sOffset="389.52272987091385" a="3.1715838825820661" b="0.0028388701446812941" c="0.0049094179268740186" d="-0.001160509257538493" /> - <width sOffset="391.04371824305377" a="3.1831758050693986" b="0.0097190193623298803" c="-0.00038525323556147772" d="-0.0011538461261133216" /> - <width sOffset="393.00912883434069" a="3.1920294235650406" b="-0.0051667069457034757" c="-2.7706375690328533e-05" d="9.8844814233404565e-06" /> - <width sOffset="396.07364093719366" a="3.1762202614715989" b="-0.0050580375462098417" c="0.0007482031470832925" d="-2.158705126984049e-05" /> - <width sOffset="401.07048024928594" a="3.1669342310058988" b="0.00080228165710268928" c="0.0004217272180664553" d="-2.2560389856963445e-05" /> - <width sOffset="409.31267634762384" a="3.1895642284252244" b="0.0031563597176254825" c="0.00045671062965032188" d="-2.2740367820996411e-05" /> - <width sOffset="409.33683597598588" a="3.1896407511586524" b="0.0031783878159723873" c="0.00023701272973884017" d="3.1691972066725309e-06" /> - <width sOffset="411.0972422555181" a="3.1959878043735399" b="0.00404232952571279" c="0.00025940948966499475" d="5.2891932100918699e-06" /> - <width sOffset="414.99053787250557" a="3.2159699869446277" b="0.0063027620011681263" c="0.00068005900445250499" d="-0.00012993747111542968" /> - <width sOffset="419.69808750516847" a="3.2471557433959974" b="0.0040669429644624279" c="-0.0016111471201445677" d="0.00011339679821313731" /> - <width sOffset="421.12400426175026" a="3.2500077822916511" b="0.00016390785320532369" c="-0.0011263948700663306" d="0.00011330768447134431" /> - <width sOffset="421.56304741242627" a="3.2498722114583991" b="-0.00075964086227567774" c="-0.0008114080242516672" d="0.00025420481268950999" /> - <width sOffset="422.38722329802033" a="3.2488372846251155" b="-0.0015791087409058784" c="-0.0005629969347377365" d="0.00016969180576046928" /> - <width sOffset="425.4647875843948" a="3.2435914264128076" b="-0.00022276936708000902" c="0.0011588626575172311" d="-0.0039248769012805934" /> - <width sOffset="425.70048386707106" a="3.2435519078290906" b="-0.00033060309668050784" c="-0.0014290103506970566" d="0.00011565837764718713" /> - <width sOffset="430.48430467758635" a="3.2219295288778831" b="-0.0060623563692222878" c="0.00038629592726892168" d="4.3014829137365806e-05" /> - <width sOffset="431.15076626798242" a="3.2180735160551146" b="-0.0054901357474571328" c="0.00047619098715314013" d="4.231456939317977e-05" /> - <width sOffset="434.92566638981953" a="3.206410640583726" b="-8.6057459698266059e-05" c="-4.7612068780298179e-05" d="-4.1725199833529117e-07" /> - <width sOffset="441.95361122803968" a="3.2033093394781016" b="-0.00081711418867325743" c="0.00017659678210136956" d="-0.00014906911995207498" /> - <width sOffset="442.11023798798408" a="3.2031851170152166" b="-0.00077276549007637089" c="0.00017634755235050408" d="-3.6498378199670964e-05" /> - <width sOffset="446.41004533826595" a="3.2002212618189025" b="-0.0012806281190954772" c="-0.00037820367859576229" d="0.00013725971516592077" /> - <width sOffset="447.07837286894812" a="3.1992374279594991" b="-0.0016022300119965961" c="-0.00024734989571505991" d="2.1149324012996484e-05" /> - <width sOffset="451.20429028044668" a="3.1899015240253146" b="-0.0025632333271285133" c="1.9825375363884107e-05" d="2.3286531575913354e-05" /> - <width sOffset="452.46098121014165" a="3.1867578573903685" b="-0.0024030772799685423" c="0.0003362708965632793" d="5.9162984502918398e-05" /> - <width sOffset="455.68604555889704" a="3.1844899101319957" b="0.0016119829946109488" c="4.220306007686643e-05" d="-2.8563584357132754e-06" /> - <width sOffset="458.64776764126145" a="3.1895601453420181" b="0.0017868042695440775" c="3.5856955974447163e-06" d="4.7846918764359745e-06" /> - <width sOffset="461.23105228667885" a="3.1942823822112381" b="0.0019011199221198923" c="4.1058083020099e-05" d="4.0160702689350512e-06" /> - <width sOffset="465.10660499952985" a="3.2025007385977817" b="0.0024003284800707156" c="0.00050893749337290329" d="-5.1552403373458866e-05" /> - <width sOffset="471.25781429291101" a="3.2245239246765367" b="0.0028096675830255103" c="-0.00042453601631367197" d="-5.5314493258720469e-05" /> - <width sOffset="473.7663313923756" a="3.2280274113091414" b="-0.00036446970141600787" c="-3.7248879548879414e-05" d="1.6889142044266645e-05" /> - <width sOffset="475.29208647148778" a="3.2274445947597874" b="-0.00036018488731348039" c="0.0006376067280901268" d="-1.9311372255403005e-05" /> - <width sOffset="480.15604053104266" a="3.2385550115522408" b="0.0044717866010329926" c="0.0027658523457537651" d="-0.00035246505301659469" /> - <width sOffset="481.28457629914317" a="3.2466175564696851" b="0.0093678221524402111" c="0.0015951709235812216" d="-0.00033978222554297975" /> - <width sOffset="485.65164800891523" a="3.2896504802220079" b="0.0038599918890423269" c="-0.00052123135979965972" d="-1.8443941055654236e-05" /> - <width sOffset="488.72802089057802" a="3.2960552889588124" b="0.00012932359472115414" c="-0.00045019901564315938" d="4.9967499435233382e-05" /> - <width sOffset="490.67220722092327" a="3.2949722274691542" b="-0.0010546074193134975" c="0.0046807960572449259" d="-0.0006730872828670418" /> - <width sOffset="491.31133830537527" a="3.2960345185507025" b="0.0041038317703177675" c="0.0033936531680087917" d="-0.00067350448878183663" /> - <width sOffset="495.4106784993927" a="3.3234902749774058" b="-0.002026591001865672" c="-0.006642719085344779" d="0.0017374861445574896" /> - <width sOffset="498.07551719114144" a="3.3037975378119286" b="-0.00041456947215189424" c="0.0033944972134992016" d="-0.00030935921497452092" /> - <width sOffset="498.53262434356384" a="3.3042877577237215" b="0.0024948094460339682" c="0.033655280687813732" d="-0.032280834327153479" /> - <width sOffset="499.18303863106917" a="3.3112658192466653" b="0.0053064293029369521" c="0.0013212390737539883" d="-0.00028937806438911738" /> - <width sOffset="501.33810031160743" a="3.3259414123834956" b="0.0069692650130620789" c="-0.00055915422998175312" d="-0.00029118679110952096" /> - <width sOffset="503.83391811176546" a="3.335325398800733" b="-0.0012633297396747061" c="-0.0014604362665893316" d="0.00079983101568437598" /> - <width sOffset="505.3552908940311" a="3.3328395840895144" b="-0.00015325875052444438" c="0.0023284639173419756" d="-0.00011893333491607238" /> - <width sOffset="505.50833191710547" a="3.3328702391470193" b="0.00055108543883599509" c="0.001833595850199969" d="-0.00017300008510362833" /> - <width sOffset="509.87011055310563" a="3.3558021965465565" b="0.0066725254151845962" c="0.0016264092120930058" d="-0.00020820675024957132" /> - <width sOffset="511.3648623178396" a="3.3687144761643495" b="0.010139103188472427" c="0.00069054478489432528" d="-0.00020768190664545213" /> - <width sOffset="513.13220987799639" a="3.3876442491829453" b="0.01063387432378206" c="0.0015289610697484923" d="-0.00037981902256632412" /> - <width sOffset="516.00393021666514" a="3.4217957234853533" b="0.010018522385817973" c="0.00013575478099080743" d="-0.00013345207425392451" /> - <width sOffset="521.14609630334803" a="3.4587569620238936" b="0.0008285016257445748" c="-0.0019956096354668425" d="0.00024508691628735056" /> - <width sOffset="521.3916243240717" a="3.4588437066718485" b="-0.00010713007655564798" c="-0.001811291591757142" d="0.00023896863571035455" /> - <width sOffset="522.48818396356069" a="3.4568633493968637" b="-0.0032174700658078948" c="-0.00024675694208787721" d="0.00011582966870245087" /> - <width sOffset="528.35520320638193" a="3.4528848133104733" b="0.0058483114397803182" c="0.002099082187657769" d="-0.00034274542558992478" /> - <width sOffset="530.33857750103357" a="3.4700673683118257" b="0.010129994033905016" c="0.00049842785995106095" d="-0.00020808657221089782" /> - <width sOffset="531.41838633030386" a="3.4813249957906502" b="0.010478528860271095" c="-0.00017403552531284399" d="-0.00020219122803075222" /> - <width sOffset="534.59159001368619" a="3.5063627482275201" b="0.0032663036686481068" c="-9.8141197131601456e-05" d="6.2380109968450913e-05" /> - <width sOffset="535.77934823569854" a="3.5102084000786444" b="0.0032971795282611036" c="-0.00019456512607625841" d="1.2223912194035595e-05" /> - <width sOffset="541.44514833653602" a="3.5248670474897725" b="0.0022696553859036196" c="7.331469575741371e-06" d="1.156182574159887e-05" /> - <width sOffset="548.31407287653985" a="3.5445501307035538" b="0.0040069085075532286" c="0.0032912529798460738" d="-0.00052527979055903753" /> - <width sOffset="549.32053979892714" a="3.5513813740893632" b="0.0090356960855872345" c="0.0017049843150182035" d="-0.0005248361716933712" /> - <width sOffset="551.47191034276818" a="3.5734858456465561" b="0.0090843544714944106" c="-0.0016821194371248935" d="-0.00052391250744760365" /> - <width sOffset="552.7344395754036" a="3.5812194980264405" b="0.0023315862718958787" c="3.0680016405459562e-05" d="8.7243706313936994e-07" /> - <width sOffset="561.49867234900034" a="3.6045979707865472" b="0.0030704002035377301" c="5.1617188183090954e-05" d="2.6873890829023174e-06" /> - <width sOffset="563.22025917515009" a="3.6100506300313784" b="0.0032720222905917164" c="0.0001469851429430033" d="-8.9045883702070185e-06" /> - <width sOffset="566.99413910130102" a="3.6240136306825921" b="0.0040009688754306053" c="-0.001154248771651357" d="0.00011466602215744797" /> - <width sOffset="571.42760175801277" a="3.629056599124568" b="0.00052781656764738566" c="-0.00069544855276269476" d="2.9826662781237677e-05" /> - <width sOffset="571.52543435523251" a="3.6291016084301742" b="0.00039259792373491035" c="-0.00068201397872908267" d="2.8603837154693797e-05" /> - <width sOffset="576.08302937969142" a="3.6194322327951851" b="-0.0040416405035194744" c="-0.00030993558306126253" d="5.1252573847152281e-05" /> - <width sOffset="581.55219636146467" a="3.5964416384936646" b="-0.0028326511289158782" c="0.00054062747527097851" d="5.2261739024733872e-05" /> - <width sOffset="584.87645510520406" a="3.5949193376947806" b="0.0024943058964400776" c="0.0095249371540310768" d="-0.0091844042565769508" /> - <width sOffset="585.55662550591751" a="3.5981323871571735" b="0.0027044748348484422" c="-0.0019461129693748235" d="0.00011821641795863209" /> - <width sOffset="587.03070450305881" a="3.5982689223771702" b="-0.0022623531570770588" c="-0.0014090036468197007" d="9.5033677246396438e-05" /> - <width sOffset="591.57895836769683" a="3.5677731780562216" b="-0.0091815909495390341" c="-0.00011112058317019781" d="9.5228477642412361e-05" /> - <width sOffset="597.01146342951279" a="3.5298822122476299" b="-0.0019577369325294433" c="0.00058448379375700035" d="-4.6788724942626952e-05" /> - <width sOffset="601.60572037392888" a="3.5286874893609257" b="0.00045006403803862002" c="-5.9909362674122584e-05" d="-4.7008387219120044e-05" /> - <width sOffset="603.47254641438985" a="3.5290130593328004" b="-0.0002650949325578634" c="-0.00054480573700507208" d="6.9481021569591295e-06" /> - <width sOffset="606.31203940290243" a="3.5240267778991377" b="-0.0031909772575425925" c="-0.00038122869802204463" d="8.6394939770163151e-05" /> - <width sOffset="611.99011564216426" a="3.5094329720788249" b="0.00083599258743767037" c="0.0012071520396846123" d="1.1364533744471372e-05" /> - <width sOffset="612.13615753164913" a="3.5095808438348786" b="0.0011893092733098014" c="0.0024638886359367594" d="-0.00029469989080826005" /> - <width sOffset="616.21038526972654" a="3.5353948715731622" b="0.006590732436847855" c="-0.00024677755103752344" d="-2.2786658943955975e-05" /> - <width sOffset="621.6592443863932" a="3.5602936454176" b="0.0018718080177658352" c="-0.0006248006851215694" d="-2.2985323548253975e-05" /> - <width sOffset="622.91462665480003" a="3.5616133281141185" b="0.00019440706442492087" c="-0.00064356315129973434" d="4.3880187484925534e-05" /> - <width sOffset="631.02575158055083" a="3.5442658927304755" b="-0.0015849568141359186" c="0.00020904192802717299" d="-3.3434825571422638e-06" /> - <width sOffset="631.68600639262536" a="3.5433095840044562" b="-0.0013132875737470245" c="0.00021905193173262961" d="-6.1469656706356474e-06" /> - <width sOffset="634.72952330789178" a="3.5411683522902595" b="-0.00015072899540062752" c="-8.8082756992727279e-05" d="-9.298182230722616e-06" /> - <width sOffset="637.00997430391044" a="3.5402562808955462" b="-0.00069753020073317273" c="-0.00016924661172052033" d="7.0789570412141729e-06" /> - <width sOffset="641.71276839885752" a="3.5339691059449572" b="-0.0018197137085534984" c="-6.5801429087726751e-05" d="7.1982693037065249e-06" /> - <width sOffset="651.73953040508968" a="3.5163640762117763" b="-0.00096820958172022542" c="0.00015019415534512677" d="7.2766256569044735e-06" /> - <width sOffset="658.49896461880371" a="3.5189291909162534" b="0.0020596514496759879" c="0.00034469785211807584" d="1.5284047047477362e-05" /> - <width sOffset="661.76629241132184" a="3.5298716550235119" b="0.0048016245587244686" c="0.0004933409199826519" d="1.5889982260689239e-05" /> - <width sOffset="667.28652402652551" a="3.5740842689578738" b="0.011700981088406129" c="0.0016034070806724026" d="-8.3303177547568646e-05" /> - <width sOffset="667.52729733097442" a="3.5769933424583984" b="0.012458608629310803" c="0.019526695386343391" d="-0.0021710253073124182" /> - <width sOffset="671.793054417554" a="3.8169391388695799" b="0.060534505768537521" c="-0.0082558667259169365" d="-0.0021721580219799994" /> - <width sOffset="673.04170997636618" a="3.8754250063666467" b="0.029756938041914829" c="-0.002089790341467542" d="-2.5124896916753648e-05" /> - <width sOffset="677.17164705966411" a="3.9609051870351708" b="0.011209913395488026" c="-0.001167426281237321" d="-8.696141686744117e-05" /> - <width sOffset="680.42263532146944" a="3.9820220970049611" b="0.00086206912744078029" c="-4.0550272057951941e-05" d="5.3463055509480069e-07" /> - <width sOffset="681.81981642378616" a="3.9831488630855589" b="0.00075188796084656672" c="-3.9597221142218504e-05" d="6.023725648524431e-07" /> - <width sOffset="691.84657843001821" a="3.9873141419573566" b="0.00013950444146695456" c="-2.6398709557832724e-05" d="7.9885205000798001e-07" /> - <width sOffset="697.81210452154562" a="3.9873764900530753" b="-9.0172494132196467e-05" c="-0.00012815645007336517" d="4.4983381302784322e-06" /> - <width sOffset="701.68039603320074" a="3.9853703657850992" b="-0.00087973044369541408" c="5.0808920600610858e-05" d="5.217152729613853e-07" /> - <width sOffset="701.87334043625037" a="3.9852025219584593" b="-0.00086006558340856248" c="4.5452266300834165e-05" d="-5.4344414833737514e-08" /> - <width sOffset="711.90010244248253" a="3.9810936542105768" b="3.5021827126979418e-05" c="3.994019883989688e-05" d="5.1213606905501734e-07" /> - <width sOffset="715.03708675906807" a="3.9816123651290756" b="0.00030072466892908274" c="-5.4099852475563882e-06" d="-4.2695249698407901e-06" /> - <width sOffset="720.54691067512476" a="3.9823909125183401" b="-0.0001477362244475598" c="-1.3788717614795731e-05" d="-1.375080241447194e-06" /> - <width sOffset="721.9268644487147" a="3.9821571724365605" b="-0.00019364739238441784" c="-1.9480591235476548e-05" d="-5.8541667783352169e-07" /> - <width sOffset="730.2860826465178" a="3.9788352459533409" b="-0.00064205307408754606" c="-0.00010851927322595146" d="9.9122637965686542e-06" /> - <width sOffset="731.95362645494686" a="3.977508797128702" b="-0.00092128519262279986" c="-6.6808788881081419e-05" d="7.2956517772764192e-06" /> - <width sOffset="741.56494498160134" a="3.9689599898664487" b="-0.00018366530667936632" c="0.00014507784010035719" d="-4.6720728071715384e-06" /> - <width sOffset="741.98038846117902" a="3.9689083917728363" b="-6.5541126456950287e-05" c="0.00013807060518161016" d="-4.5244596205027523e-06" /> - <width sOffset="752.00715046741118" a="3.9775714048237694" b="0.0013386484455021092" c="6.1721166309764978e-06" d="-4.1373508334220886e-06" /> - <width sOffset="755.36029072165582" a="3.9819734942262865" b="0.0012404848634747449" c="-2.0146118398496912e-05" d="-6.1344987379897727e-06" /> - <width sOffset="758.79709990282038" a="3.9857498185750186" b="0.00088463234284193106" c="1.2621590078614269e-05" d="-2.477046962113699e-06" /> - <width sOffset="762.03391247364334" a="3.9886614420299358" b="0.000888484052442488" c="-1.0398599249059989e-05" d="-2.1850466659916765e-06" /> - <width sOffset="772.0606744798755" a="3.9943219905242566" b="2.0928224134445731e-05" c="-7.3102749520816688e-05" d="-1.8760807448139442e-06" /> - <width sOffset="773.09372393984324" a="3.9942635274985028" b="-0.00013611569820491708" c="-1.4511424090185641e-05" d="-2.7581901986794999e-06" /> - <width sOffset="775.97606117849" a="3.9936845893221906" b="-0.00028851337420261053" c="-0.00026425063468086917" d="2.2772986310753981e-05" /> - <width sOffset="782.08743648610755" a="3.9872499100137313" b="-0.0009667444597213277" c="0.00015808547501134282" d="2.3027893362034327e-05" /> - <width sOffset="786.19673043914577" a="3.9875446740602691" b="0.0014990624387844107" c="0.00022205563938851685" d="-2.5084367413314954e-05" /> - <width sOffset="792.11419849233971" a="3.9989932269682145" b="0.0014919818945657887" c="-0.00022386341152859493" d="-2.5060767548661684e-05" /> - <width sOffset="792.79711271838335" a="3.9998997373847582" b="0.0011511599688931249" c="-0.0059133935337272693" d="0.0024078002795029506" /> - <width sOffset="794.05796496125708" a="3.9967766581480531" b="-0.0022772812618367848" c="9.5645422574700597e-05" d="-2.2810413904738042e-06" /> - <width sOffset="802.14096049857187" a="3.9834137597236632" b="-0.0011781724786295426" c="4.035221524861568e-05" d="-2.072531997144586e-06" /> - <width sOffset="809.15247760519503" a="3.9764223604272226" b="-0.00091797753394716225" c="7.3883139366998557e-05" d="-5.3927306493773449e-07" /> - <width sOffset="812.16772250480403" a="3.9743113733474851" b="-0.00048713474535276287" c="7.153089536648545e-05" d="6.7226319723545538e-10" /> - <width sOffset="812.44247815605513" a="3.9741829302522866" b="-0.00044782755761033544" c="1.6223469480742738e-05" d="-6.0898144852713015e-07" /> - <width sOffset="822.19448451103619" a="3.9707938027351464" b="-0.00030515018409256445" c="-2.4123758260337493e-06" d="-5.361503884393512e-07" /> - <width sOffset="827.75778876226491" a="3.9689291778145801" b="-0.00038177387873660368" c="-0.0010555910374679407" d="8.912040646720267e-05" /> - <width sOffset="829.16043144557398" a="3.9665628426626416" b="-0.0028169997691698625" c="-0.0005998248260289669" d="8.6426263335827661e-05" /> - <width sOffset="832.22124651726836" a="3.9547993329831708" b="-0.0040598291100666668" c="0.00019252113732004961" d="8.6475000523429486e-05" /> - <width sOffset="836.02085302920329" a="3.9468965917125587" b="0.0011485012739883612" c="7.3909430110539198e-05" d="-2.5045746552772493e-06" /> - <width sOffset="842.24800852350052" a="3.9563097201847457" b="0.0017776291293364213" c="2.2888491379534598e-05" d="-1.6985191422832481e-06" /> - <width sOffset="845.53395640259987" a="3.962337791035464" b="0.0018730308645571628" c="-0.00040672550522129311" d="2.166344579842565e-05" /> - <width sOffset="849.76342923432071" a="3.964623066774621" b="-0.00040486230474791004" c="-8.4853858741822113e-05" d="2.2714065377404482e-05" /> - <width sOffset="852.27477052973268" a="3.9634309194013762" b="-0.00040129470931813847" c="8.2365303751613477e-05" d="2.3593166864222343e-05" /> - <width sOffset="854.88798748157456" a="3.96336574353063" b="0.00051252843912272228" c="5.4006516998993012e-05" d="-7.246163729892194e-07" /> - <width sOffset="862.30153253596484" a="3.9698383821977301" b="0.001193811771954021" c="3.7576891581595778e-05" d="-8.4084934604165192e-07" /> - <width sOffset="864.8577691941905" a="3.9731215430300777" b="0.0013694394261693401" c="5.4104223288962768e-05" d="-1.1558821111947251e-06" /> - <width sOffset="872.32829454219689" a="3.9858895528431635" b="0.0019842883654320291" c="2.6876914659455107e-05" d="-1.0028569336942398e-06" /> - <width sOffset="877.10384878909372" a="3.9958693602438702" b="0.002172379473236466" c="5.8396264484525577e-05" d="-3.5144015971943576e-06" /> - <width sOffset="882.35505654842905" a="4.0083783679199358" b="0.0024949505067771473" c="2.6469846810957486e-06" d="-3.6028419319280061e-06" /> - <width sOffset="884.92898178912628" a="4.014756283094826" b="0.0024369693196041875" c="-4.1224945172175712e-05" d="-9.8155957313509249e-07" /> - <width sOffset="891.4547258886962" a="4.0286309667168352" b="0.0017735223013461046" c="-6.7849523107077722e-05" d="4.5135576940254605e-06" /> - <width sOffset="892.38181855466121" a="4.0302204660844971" b="0.0016593549303224897" c="-5.6019076142047257e-05" d="4.5379191563985415e-06" /> - <width sOffset="902.40858056089337" a="4.0458009415540754" b="0.0019046471681570061" c="8.9807783391401705e-05" d="3.9239170155926251e-06" /> - <width sOffset="902.60770951474092" a="4.0461838040238733" b="0.001940880605540871" c="0.00012365008672364804" d="-1.966060364631277e-06" /> - <width sOffset="909.19999672075687" a="4.0637890076669576" b="0.0033148297429024393" c="0.00011974009140526441" d="-1.0332787676889895e-05" /> - <width sOffset="912.43534256712553" a="4.0754170744902751" b="0.0037651567474463591" c="3.4989237145439509e-05" d="-7.3389017922290037e-06" /> - <width sOffset="918.49631186333363" a="4.0978888959132815" b="0.003380502779868867" c="2.2124918817372931e-06" d="-4.9503052473049911e-06" /> - <width sOffset="922.46210457335769" a="4.1110213054912119" b="0.0031644833953662008" c="-5.270843850562953e-05" d="-5.2856585043659677e-06" /> - <width sOffset="928.77627437478532" a="4.1275703708590123" b="0.0018666656956028596" c="3.0132918067938487e-05" d="-4.3288935231638345e-05" /> - <width sOffset="932.48886657958985" a="4.1327006935513326" b="0.00030040971727444618" c="-0.00046134417755123118" d="-3.5785819886635733e-05" /> - <width sOffset="933.59868847113171" a="4.1324169368309445" b="-0.00085584269852240907" c="-0.00082783109461408784" d="3.1957281954326639e-05" /> - <width sOffset="939.18279335009925" a="4.1073887602956383" b="-0.0071117363180100198" c="-0.00025549722206531745" d="3.4813774472823167e-05" /> - <width sOffset="942.51562858582201" a="4.0821373263574987" b="-0.0076546842448176559" c="9.4011392587266127e-05" d="3.407874011675212e-05" /> - <width sOffset="946.34815485733952" a="4.0560998105000934" b="-0.0054324100382019212" c="-0.00071628230588236116" d="0.00020804280670711127" /> - <width sOffset="950.12953865246163" a="4.0365645288954664" b="-0.0019251596194711082" c="0.00025214503902336262" d="-1.4802587677465437e-05" /> - <width sOffset="952.54239059205418" a="4.0331794195108186" b="-0.00096691786080162234" c="0.00014865371609620528" d="-1.3154906091559093e-05" /> - <width sOffset="959.09973278519851" a="4.0295218066999876" b="-0.00071430431893533314" c="0.00012820207575983569" d="-8.9143201778034101e-06" /> - <width sOffset="962.56915259828634" a="4.0282144667102617" b="-0.00014663231752927279" c="2.5744850211597322e-05" d="-9.6690921719211779e-06" /> - <width sOffset="969.20163003693301" a="4.0255533761922013" b="-0.0010811510855601302" c="-0.00059877267282219229" d="8.9279885044070715e-05" /> - <width sOffset="972.59591460451838" a="4.0184764714139805" b="-0.0020601351808791244" c="0.00029401420148352658" d="8.9685047596946762e-05" /> - <width sOffset="975.38875123332764" a="4.0169698369324003" b="0.0016807450930464854" c="0.00034434943117580446" d="-2.8492047964766522e-05" /> - <width sOffset="976.33588946295299" a="4.0188464324222828" b="0.002256359959271394" c="0.00040507779173768919" d="-4.2302310968141038e-05" /> - <width sOffset="981.62438628741052" a="4.0358515576690364" b="0.0029915068787047124" c="-0.0014871829480646239" d="0.0001308863204228582" /> - <width sOffset="982.62267661075055" a="4.0374860640947601" b="0.00041354365581326409" c="-0.0010950022436228607" d="0.0001309957970310773" /> - <width sOffset="987.82147203816726" a="4.0284471081549249" b="-0.00035038520422212829" c="0.00056381382540297506" d="-0.00040137504504137746" /> - <width sOffset="989.10782378606177" a="4.0280749949965067" b="-0.00089232625227905478" c="-0.00075468719593200411" d="6.0537793122398866e-05" /> - <width sOffset="990.73617352504334" a="4.0248822837887257" b="-0.0028685636199627194" c="-0.0001284771385551179" d="7.4057451365599857e-05" /> - <width sOffset="992.64943861698271" a="4.019442333555225" b="-0.0025469048567798801" c="0.00029391945315007651" d="7.3271291086164826e-05" /> - <width sOffset="992.8908877072231" a="4.0188455518725732" b="-0.0023921570525129517" c="0.00019438340268529964" d="-1.0199820735304073e-05" /> - <width sOffset="1002.6762006232149" a="4.004493321621899" b="-0.0015179225907989806" c="-0.00010141840441455078" d="-1.0875169888861754e-05" /> - <width sOffset="1004.8656250958491" a="4.0005696506985977" b="-0.0021184114390142427" c="-0.00018849250529330599" d="1.4673538851834289e-05" /> - <width sOffset="1012.702962629447" a="3.979452842598477" b="-0.0023690540405935222" c="0.00015523101099526419" d="1.5374961373348922e-05" /> - <width sOffset="1014.3664162193943" a="3.9760123369368379" b="-0.0017249837305781121" c="-1.9609962529889791e-05" d="2.2042535732435563e-05" /> - <width sOffset="1019.3328790319113" a="3.9696618195660927" b="-0.00028868081300822881" c="0.0001393820286529901" d="-2.3475051343217209e-05" /> - <width sOffset="1022.7297246356792" a="3.9693693855646561" b="-0.00015436721967246401" c="-9.9240716471843678e-05" d="-2.3504223137888674e-05" /> - <width sOffset="1023.4395227961793" a="3.9692014119428922" b="-0.00033077420540516292" c="-0.00045518100638668949" d="4.3160384498514679e-05" /> - <width sOffset="1028.5884290370864" a="3.9613224350607581" b="-0.00158543750422028" c="1.8425956264055354e-05" d="4.9903180251848258e-05" /> - <width sOffset="1030.3896050491517" a="3.958818167347367" b="-0.0010333677874644982" c="0.00010863141989006804" d="-1.1325996719644547e-05" /> - <width sOffset="1032.7564866419114" a="3.9568306974229168" b="-0.00070948143736327936" c="2.6080954734924753e-05" d="-1.1876262289923433e-05" /> - <width sOffset="1040.1515903553839" a="3.9482073123439352" b="-0.0022721900885931514" c="-0.0029895166831338024" d="0.00060323394652314253" /> - <width sOffset="1042.7832486481434" a="3.9325178810519654" b="-0.0054736458576307122" c="0.0017725878868245159" d="0.00060330568782962404" /> - <width sOffset="1043.5325807219488" a="3.9296654483817681" b="-0.0018008661240190658" c="0.00085676490117764519" d="-6.8816099880247641e-05" /> - <width sOffset="1047.1553720844922" a="3.9311139468339587" b="0.0016973399273706785" c="-1.0438121561816274e-05" d="-7.7585732480817655e-05" /> - <width sOffset="1050.1688438235815" a="3.9340108815378336" b="-0.00047924092627444709" c="-0.00090149092482780236" d="0.00012488973113698731" /> - <width sOffset="1052.8100106543757" a="3.9287575273237891" b="-0.0026276135766850226" c="8.3768302472748686e-05" d="0.00012730004463595569" /> - <width sOffset="1055.113566156949" a="3.9247052328092935" b="-0.0002151810764992993" c="0.0014645971025852435" d="-0.00019386329779399786" /> - <width sOffset="1060.1619722809751" a="3.9360026645787345" b="-0.00025005432633067287" c="-0.00013370145753751364" d="3.4051822051192073e-06" /> - <width sOffset="1062.8367726606077" a="3.9344424094759409" b="-0.00089221603381869159" c="-0.00011285003749126522" d="1.6617118891541333e-06" /> - <width sOffset="1066.9547513991831" a="3.9289706403023312" b="-0.0017371074650532438" c="-0.00027022023329796195" d="1.1454548250708447e-05" /> - <width sOffset="1072.86353466684" a="3.9116351011402219" b="-0.003730690390351345" c="-6.6498653867007806e-05" d="1.1370363459247006e-05" /> - <width sOffset="1079.7682259769094" a="3.8864484188536723" b="-0.0030227576270263302" c="0.00035019399465334227" d="-3.1106140986212712e-06" /> - <width sOffset="1082.1585276135625" a="3.8811814824848243" b="-0.0014019369419886389" c="0.00021470419485988625" d="-1.1231985947775801e-05" /> - <width sOffset="1082.890296673072" a="3.8802661582116595" b="-0.0011057528807114966" c="0.00019276771923622959" d="-1.0739375056252016e-05" /> - <width sOffset="1092.9170586793043" a="3.8777332960653892" b="-0.00047916081916780234" c="-0.0001306508004636643" d="-1.0640730857263503e-05" /> - <width sOffset="1098.0754697813986" a="3.8703245139418412" b="-0.0026764860677136126" c="-5.0574917007338364e-05" d="1.3509862920388645e-06" /> - <width sOffset="1098.9472569114835" a="3.8679536453720109" b="-0.0027615868905932197" c="2.9957613132070029e-06" d="-5.9189014875017944e-07" /> - <width sOffset="1102.9438206855364" a="3.8569268536819652" b="-0.002766003323580703" c="-4.2794055676244543e-06" d="-6.9300266658926886e-07" /> - <width sOffset="1112.9705826917684" a="3.8280639811043748" b="-0.0030608355433638869" c="-1.9252293419143798e-05" d="-3.1374426770224353e-06" /> - <width sOffset="1114.5422706774434" a="3.823193564807795" b="-0.0031446031019988089" c="0.00082742103223953174" d="-7.1028712309595095e-05" /> - <width sOffset="1118.5595706153617" a="3.8193091746911882" b="6.4460840423923721e-05" c="-2.0322376730224259e-05" d="-6.6751700031918214e-05" /> - <width sOffset="1120.8463093669855" a="3.8185521100653697" b="-0.0010756518788189512" c="1.4521614617476466e-05" d="-5.6305412399010066e-06" /> - <width sOffset="1122.9973446980007" a="3.8162494963889486" b="-0.0010913356155717942" c="-1.1861967067613245e-05" d="-3.6844858877983114e-06" /> - <width sOffset="1130.3189421173206" a="3.8061772192226861" b="-0.0018575620272019257" c="1.7272668093834121e-05" d="-5.3879423183379849e-06" /> - <width sOffset="1133.0241067042327" a="3.8011719475343391" b="-0.0018823967259847304" c="-2.310069993457649e-05" d="-4.2691729265692298e-06" /> - <width sOffset="1136.2349175549127" a="3.794748460623441" b="-0.0021627773162855497" c="-3.4266518399981925e-05" d="-1.0099160333241891e-05" /> - <width sOffset="1138.5056936370854" a="3.7895423330042188" b="-0.0024746271557200901" c="-0.00032789903424116225" d="5.6252568976439961e-05" /> - <width sOffset="1143.050868710465" a="3.7768027280321617" b="-0.0019690434497152379" c="0.0004392506714464982" d="5.627874395545548e-05" /> - <width sOffset="1143.0729173058467" a="3.7767595275306496" b="-0.0019495916510335466" c="0.00018097979547716342" d="-6.2242768617871965e-06" /> - <width sOffset="1148.7650862924017" a="3.7703780622347085" b="-0.0004942709139061233" c="0.0014227266312365394" d="-0.00025538657336672007" /> - <width sOffset="1152.5189941895592" a="3.7750616293678112" b="-0.00060928975579731173" c="-0.0015914634432016392" d="-0.00023240811274154155" /> - <width sOffset="1154.0717952530888" a="3.7694080417738407" b="-0.0072328831590837547" c="-0.0014703074834394056" d="0.00020681357526471805" /> - <width sOffset="1158.6088541472957" a="3.725641224508021" b="-0.0078029140372048817" c="0.00070212781531946774" d="1.8334655427572714e-05" /> - <roadMark sOffset="0" color="standard" width="0.1799245489105335" weight="standard" type="solid"> - <type name="solid"> - <line length="673.04170997636618" space="0" width="0.179925" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="673.04170997636618" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="260.55697849476553" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="933.59868847113171" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="229.50570425179762" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="1049.0917559909308" max="100" unit="km/h" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.9435127023902603" b="1.1112995985010025e-09" c="0.0036339334138071593" d="-0.00048456052656033964" /> - <width sOffset="4.9571275961542609" a="2.9737844512728611" b="0.00030626114381853212" c="0.0018894667748585153" d="0.00023512266669917136" /> - <width sOffset="6.7074389427374763" a="2.9813698380147793" b="0.0090815296312553757" c="-0.0013098815155971062" d="-0.0001459856954437048" /> - <width sOffset="8.7346042472516068" a="2.9931806499550833" b="0.0019710964205051397" c="-0.00022310642402946783" d="4.9593389984673906e-06" /> - <width sOffset="10.026762006232149" a="2.9953658026828056" b="0.0014193604302738319" c="-0.00020325371896497005" d="4.2864978822550561e-06" /> - <width sOffset="20.053524012464297" a="2.9934840895541899" b="-0.0013637514119205288" c="-7.6685428807869802e-05" d="4.9021102986850768e-06" /> - <width sOffset="26.137581804134214" a="2.9834523625241371" b="-0.0017525025698664938" c="0.0016200242009634285" d="7.2354830489000695e-05" /> - <width sOffset="26.471010197355646" a="2.983050815879869" b="-0.00064804640237820627" c="0.0010126870825486584" d="-4.7860238738619103e-05" /> - <width sOffset="30.080286018696448" a="2.9916537103077454" b="0.0047916799955936328" c="0.00047788928296931086" d="-4.9613315393317536e-05" /> - <width sOffset="40.107048024928595" a="3.0377310934164932" b="-0.00058872212233275142" c="-0.0010097872128412065" d="-5.1000961638365766e-05" /> - <width sOffset="40.508992024876484" a="3.0373280080173526" b="-0.0014251969350727173" c="-0.0071770234401272387" d="0.00095044528795660199" /> - <width sOffset="43.355872284717329" a="2.9970326285401523" b="-0.019180150275505476" c="0.0040853256064346212" d="0.0008429238470582833" /> - <width sOffset="44.476610868978717" a="2.9818546793403051" b="-0.0068467101296600351" c="0.0024297936861940013" d="-0.00012129886996158991" /> - <width sOffset="50.133810031160742" a="2.9989228988776335" b="0.0089988319098604566" c="0.00037812618084470152" d="-0.00011944844901639931" /> - <width sOffset="57.834197227005809" a="3.0360983592438329" b="-0.0064261645150029689" c="0.0002691463043083236" d="0.00012196934269445678" /> - <width sOffset="58.224175408362811" a="3.0336404617509061" b="-0.0061605937584319707" c="-0.00055150424727837591" d="8.529778608465907e-05" /> - <width sOffset="60.160572037392896" a="3.0202624988399625" b="-0.0073369497887170393" c="-7.0999180356200219e-05" d="8.3743077434781461e-05" /> - <width sOffset="60.730633340040967" a="3.0160724287262655" b="-0.0073362556235224332" c="0.00055612238094383641" d="4.8271994873116424e-05" /> - <width sOffset="62.903391750160381" a="3.0032530459224493" b="-0.00423595770661803" c="-0.00055078439696124005" d="3.4482173507933105e-05" /> - <width sOffset="70.187334043625043" a="2.9565020846841339" b="-0.0067712817439208491" c="0.00020189958200494978" d="3.4260314547411427e-05" /> - <width sOffset="76.522026604980752" a="2.9304189832430882" b="-8.8910574934729369e-05" c="0.0024201017736708717" d="-0.00017946994570450209" /> - <width sOffset="77.695639015946981" a="2.9333578907296514" b="0.0048500249270338781" c="0.00031643151768946486" d="-0.00021925875291048093" /> - <width sOffset="80.21409604985719" a="2.9440771185064252" b="0.002271834599908245" c="-0.0013336550418701963" d="-0.00021881408112118386" /> - <width sOffset="80.698946435629907" a="2.944840162781349" b="0.00082427190214817356" c="-0.0005575565966631996" d="2.4832177285274442e-05" /> - <width sOffset="90.240858056089337" a="2.9235143541635611" b="-0.0030332736389769611" c="0.00018176823089784057" d="2.3001577761750886e-05" /> - <width sOffset="93.883710201469029" a="2.9159886611002168" b="-0.0007932455957824114" c="-0.00028858307269864395" d="-4.9084712625130375e-06" /> - <width sOffset="96.506993105379038" a="2.9118332266334002" b="-0.0024086502795257745" c="-7.4511128226524375e-05" d="-2.9149590380244152e-06" /> - <width sOffset="99.466124352977417" a="2.9039777297975937" b="-0.0029262008420788172" c="0.0013395719235396856" d="-5.2607265388227913e-05" /> - <width sOffset="100.26762006232148" a="2.9024658409042079" b="-0.00088026253540020478" c="0.0012299261207289534" d="-5.0545674940516289e-05" /> - <width sOffset="110.29438206855363" a="2.9663388836794331" b="0.0085391171547819882" c="-0.00025048319540962806" d="-6.467336048101038e-05" /> - <width sOffset="110.58992619870624" a="2.9688390213195133" b="0.0083741125359574464" c="0.00059455086179600685" d="-0.00010829148917443875" /> - <width sOffset="111.97537236375493" a="2.9812941400165354" b="0.009397965063683289" c="-0.0064728526048726002" d="0.00095638061439242989" /> - <width sOffset="114.18311366501155" a="2.9807843648060728" b="-0.0051982566176182153" c="0.00061396807853048192" d="0.0010240069088387125" /> - <width sOffset="115.32371998971735" a="2.9771734956021785" b="0.00019898121891169865" c="-0.0010220349888224263" d="5.5908406778870401e-05" /> - <width sOffset="120.32114407478579" a="2.9596210896513027" b="-0.0058272921566020694" c="-0.00017517605002223107" d="5.8434152259748893e-05" /> - <width sOffset="129.99109931288677" a="2.9397283091068704" b="0.0071770068609866636" c="0.002928300603675449" d="-0.00028889640331743004" /> - <width sOffset="130.34790608101792" a="2.9426487955627811" b="0.0091563426795246428" c="0.0025893975218712877" d="-0.00028538039148301778" /> - <width sOffset="132.75391192063998" a="2.97569389013037" b="0.01666046888742196" c="0.010837635715109248" d="-0.0035486902658923062" /> - <width sOffset="134.9859215552994" a="3.0274119488896618" b="0.012002574668840797" c="-0.015304663559183475" d="-0.0036339305273178878" /> - <width sOffset="135.32034332982005" a="3.029578316651139" b="0.00054691544654494808" c="-0.00098429940500548304" d="5.131475962516134e-05" /> - <width sOffset="140.37466808725009" a="3.0138231961055899" b="-0.0054703311112125792" c="-0.00024514515498369114" d="4.5153002081539598e-05" /> - <width sOffset="147.5424282100978" a="2.9786462901914144" b="-0.0020251661792670718" c="-0.00076084953589957544" d="0.00016941510934335841" /> - <width sOffset="148.61120279280061" a="2.9758195700755428" b="-0.0030709614494605041" c="0.0020798195162831396" d="-0.00022365239450393491" /> - <width sOffset="150.40143009348222" a="2.9757042822770217" b="0.0022253779789544945" c="0.00090049782883512303" d="-0.00022056539297346089" /> - <width sOffset="152.98449195305412" a="2.9836594961499396" b="0.0024624862555603193" c="0.00090118956793448454" d="0.00017048334294926512" /> - <width sOffset="153.02868164824366" a="2.9837700871572221" b="0.0025431315635790451" c="5.4593179145143948e-05" d="-4.8337742125980784e-06" /> - <width sOffset="160.42819209971438" a="3.0036187700990435" b="0.0025570697984825426" c="-5.0318317568424128e-05" d="-4.8435412198036022e-06" /> - <width sOffset="167.08359885606455" a="3.0169804241722251" b="0.0012436662323992154" c="-0.00065934382879848379" d="3.2219765947346568e-05" /> - <width sOffset="168.41235888927361" a="3.0175444081662044" b="-0.00033789125522394603" c="-6.8597277959964664e-05" d="5.31155753629924e-06" /> - <width sOffset="170.45495410594654" a="3.0166132975257121" b="-0.00055164163402166011" c="-3.0366313239857765e-05" d="6.4562068199564725e-06" /> - <width sOffset="180.48171611217867" a="3.014537391783747" b="0.00078664955497134877" c="0.00016314318495388753" d="6.8174011935346816e-06" /> - <width sOffset="184.9699834685043" a="3.0219709195311264" b="0.0026631103299434326" c="-0.0005394923102721807" d="-4.3343735365891981e-05" /> - <width sOffset="186.11158011105604" a="3.0242435419791946" b="0.0012618828643839446" c="-0.018272716707163794" d="0.0053232940833958615" /> - <width sOffset="188.16063670395843" a="2.9959063392476448" b="-0.0065701050549172493" c="0.00073654595005855452" d="-1.7558938383136495e-05" /> - <width sOffset="190.50847811841084" a="2.9843136300906412" b="-0.0034018924168020626" c="0.00060274313175818735" d="-1.9253636335890719e-05" /> - <width sOffset="200.53524012464297" a="2.991392391456865" b="0.002878183223704138" c="1.2640727914016295e-05" d="-1.8176056725309078e-05" /> - <width sOffset="204.41991020757089" a="3.0016984194738394" b="0.0021535271721195956" c="-0.00043871897840138595" d="-1.719499498267449e-05" /> - <width sOffset="206.94923593879875" a="3.0040604535422117" b="-0.00039581358553347214" c="-0.00017375000607486318" d="4.5987786007129402e-06" /> - <width sOffset="210.56200213087513" a="3.0005795240195567" b="-0.001471179008667358" c="-0.00012808230524450159" d="3.9271957979672415e-06" /> - <width sOffset="220.58876413710726" a="2.9769102953295081" b="-0.002855207436732776" c="-1.5898910238366949e-06" d="1.353891756343538e-07" /> - <width sOffset="221.80090173264702" a="2.9734472961847835" b="-0.0028584649972697787" c="0.00073730187605450118" d="-1.8874604193835722e-05" /> - <width sOffset="222.74479276053407" a="2.9713902288514609" b="-0.001517047614739715" c="0.00047793952727860926" d="-1.3805525101546709e-05" /> - <width sOffset="230.61552614333942" a="2.9823262679847389" b="0.0034407291746524748" c="0.00015500778359348743" d="-1.3661112578352919e-05" /> - <width sOffset="240.25134193617967" a="3.0176505492892836" b="0.0026227223609811903" c="-0.00033862048838906311" d="-2.5785742105258932e-05" /> - <width sOffset="240.64228814957158" a="3.0186225975233345" b="0.0023461343689486639" c="-0.00037449362924567542" d="-2.4467455871335843e-05" /> - <width sOffset="243.75914936954425" a="3.0215561644713866" b="-0.00070144604390925101" c="5.500810609610371e-05" d="-2.6559094310959399e-06" /> - <width sOffset="250.66905015580372" a="3.0184594476863991" b="-0.00032167789535802717" c="-6.7130072830987744e-06" d="-3.1322398373230163e-06" /> - <width sOffset="260.33321717327567" a="3.0118965835766338" b="-0.001329046324568241" c="-0.0001276722713887124" d="5.6298324019397669e-06" /> - <width sOffset="260.69581216203585" a="3.0113981606981826" b="-0.0014194124274142825" c="-0.00012111608944433662" d="5.5382270744013991e-06" /> - <width sOffset="270.72257416826801" a="2.9905723386165923" b="-0.002177843969495415" c="4.8470815501501121e-05" d="5.5111059118918897e-06" /> - <width sOffset="279.97265323934238" a="2.9789363586033764" b="0.00013352996660615521" c="0.00042359610933744089" d="-6.4188528194480158e-06" /> - <width sOffset="280.74933617450017" a="2.9792925902513288" b="0.00077991344900066534" c="0.000412786701052615" d="-8.3210620442364956e-06" /> - <width sOffset="281.9947163418089" a="2.9808880269666402" b="0.0017693489938810014" c="0.00020391840987165599" d="-1.1455844991474282e-05" /> - <width sOffset="290.77609818073233" a="3.004392656947116" b="0.0027005475558919811" c="-9.1788702666103155e-05" d="-1.1864508158361153e-05" /> - <width sOffset="296.63232152686714" a="3.0146768582001737" b="0.00040478482244675831" c="-0.00017541912457131822" d="4.8459455368899975e-06" /> - <width sOffset="300.80286018696444" a="3.0136654192289791" b="-0.00080553735764226687" c="-0.00011041696342700947" d="5.4463249512495438e-06" /> - <width sOffset="310.8296221931966" a="2.9999777812945001" b="-0.0013771321227420939" c="5.3208380128521768e-05" d="5.4749194772588212e-06" /> - <width sOffset="316.54384678546779" a="2.9948674449169204" b="-0.00023273568482613458" c="3.4725910274823966e-05" d="1.0373395628423639e-07" /> - <width sOffset="320.85638419942876" a="2.994517915244769" b="7.2565615566975343e-05" c="3.538393977354518e-05" d="5.489538572411274e-08" /> - <width sOffset="330.88314620566092" a="2.9988582089252023" b="0.00079869518177710496" c="3.575589145504284e-05" d="3.0026234410209838e-07" /> - <width sOffset="331.69580509578634" a="2.9995310505216453" b="0.00085740476069958544" c="1.1830739466579346e-05" d="1.7455623834304294e-06" /> - <width sOffset="333.81963630342739" a="3.0014221202167155" b="0.00093127865809409095" c="2.6331080813504772e-05" d="6.2159375526792162e-08" /> - <width sOffset="340.90990821189308" a="3.0093710102561992" b="0.0013140423234423175" c="2.6089185938803207e-05" d="3.6858559366113197e-08" /> - <width sOffset="350.93667021812519" a="3.0252066564324109" b="0.0018483392716763089" c="1.9401218115463956e-05" d="3.9315699206597708e-06" /> - <width sOffset="352.07067679816487" a="3.0273333681374224" b="0.0019075091434902389" c="2.5298060897322586e-06" d="1.047605400312634e-06" /> - <width sOffset="352.17037931902831" a="3.0275235777936551" b="0.0019080448410353837" c="-0.00044934887228877579" d="1.4207481740867292e-05" /> - <width sOffset="360.96343222435735" a="3.0192175489899493" b="-0.0026987791558991019" c="-7.4219093094941643e-05" d="1.4055302204561414e-05" /> - <width sOffset="370.22630379250381" a="2.9990216632889997" b="-0.00045587492502114409" c="0.00012979319722180213" d="-3.447076169331119e-06" /> - <width sOffset="371.1267771944996" a="2.9987138862770482" b="-0.00023050949071833993" c="0.0001843621791683895" d="-5.0356648516219962e-06" /> - <width sOffset="381.01695623682167" a="3.0095960372430861" b="0.0019385400671400794" c="3.6702316752034062e-05" d="-5.2552051734465051e-06" /> - <width sOffset="390.30883033401608" a="3.0265615555002197" b="0.0012594203958328012" c="9.3656011154604854e-05" d="-8.0629091061179647e-06" /> - <width sOffset="391.04371824305377" a="3.0275344681717478" b="0.0013840103663925623" c="7.587410661462716e-05" d="-7.9465280617332206e-06" /> - <width sOffset="401.07048024928594" a="3.0410291881344937" b="0.00050881819075367356" c="-0.00016314336028567557" d="-8.2187091035019876e-06" /> - <width sOffset="409.33683597598588" a="3.0294448087640431" b="-0.003873202107730676" c="-0.00014890997598061473" d="-3.4128271130311774e-05" /> - <width sOffset="411.0972422555181" a="3.0219787343591422" b="-0.0047147798571198938" c="-0.00032672836057302899" d="-3.3282135154663656e-05" /> - <width sOffset="411.22596957555913" a="3.0213663282641354" b="-0.004800552116710332" c="-0.00073341137179756724" d="2.826964443196302e-05" /> - <width sOffset="414.99053787250557" a="2.994408658866369" b="-0.0091205964776378736" c="-0.00077301468677476394" d="0.00016349630875749075" /> - <width sOffset="419.69808750516847" a="2.9513988098421979" b="-0.005528869843988914" c="0.0019921311192653409" d="-7.9837960570911158e-05" /> - <width sOffset="420.83235564005395" a="2.9475740853029553" b="-0.0013177981318464576" c="0.0015664811788356735" d="-0.00018447510967478021" /> - <width sOffset="421.12400426175026" a="2.947318418156704" b="-0.00045114773838260316" c="0.0014054063784731321" d="-0.0001843859959424786" /> - <width sOffset="425.4647875843948" a="2.956760239002977" b="0.001327157410885617" c="-0.0011508798588340528" d="0.0039101827110985523" /> - <width sOffset="425.70048386707106" a="2.9570603088101102" b="0.0014363052649588176" c="0.0014266030513716123" d="-0.00013035256782921198" /> - <width sOffset="428.39817938848137" a="2.9687580484338882" b="0.0062874402489722292" c="0.00073181471121198873" d="-7.8603636090088391e-05" /> - <width sOffset="431.15076626798242" a="2.9899702121910745" b="0.0085295307425350131" c="7.4666716014017113e-05" d="-7.7183674640575578e-05" /> - <width sOffset="434.92566638981953" a="3.019080478057238" b="0.0057936773287335696" c="0.00020358760301560777" d="-3.4451853246473306e-05" /> - <width sOffset="435.18945603049212" a="3.0206223243649575" b="0.0058938939360269858" c="-0.00016605453780649525" d="-6.2076255367509277e-06" /> - <width sOffset="441.17752827421452" a="3.0486283016079385" b="0.0032374401405900902" c="-0.00027792561450981537" d="-7.0301257676215695e-06" /> - <width sOffset="441.95361122803968" a="3.0509701416458803" b="0.0027933506424285539" c="-0.00052729961968472688" d="0.00014162174192842173" /> - <width sOffset="445.58263284160546" a="3.0609314381418686" b="0.0045615763554252963" c="0.00041316328445099127" d="0.0001109771784723312" /> - <width sOffset="446.41004533826595" a="3.0650514634291124" b="0.0054732180226159848" c="0.00077237824375983653" d="-6.2780914888580265e-05" /> - <width sOffset="451.20429028044668" a="3.1021262355122952" b="0.00855014158916724" c="-0.00012558876777600569" d="-6.1949399078841858e-05" /> - <width sOffset="455.68604555889704" a="3.1323465310075536" b="0.003691454223556359" c="-9.2033773985741402e-05" d="6.99438598165362e-08" /> - <width sOffset="461.23105228667885" a="3.1499978228258376" b="0.0026772501441635231" c="-9.0243214972061917e-05" d="-8.6935789037595512e-08" /> - <width sOffset="471.25781429291101" a="3.1676816493015822" b="0.00084133514768869853" c="-8.0439345904223606e-05" d="-2.9827533258311371e-06" /> - <width sOffset="473.25651764520364" a="3.169018072723059" b="0.00048403972306789941" c="0.00028781313354449506" d="-1.0147444048071823e-06" /> - <width sOffset="475.29208647148778" a="3.1711873754310251" b="0.0016431527044922071" c="-0.00031593313755805919" d="3.5185769894866388e-05" /> - <width sOffset="479.41550146327302" a="3.1750579307509561" b="0.00083244939473819425" c="0.0011405923677799041" d="-7.3850435036433858e-05" /> - <width sOffset="481.28457629914317" a="3.1801162262378231" b="0.0043221780242137728" c="0.00073552268090023968" d="-7.1872752342145592e-05" /> - <width sOffset="486.66214074936181" a="3.2134521142645984" b="0.0059975275120148957" c="-0.0007052617349779356" d="0.00040230791491961356" /> - <width sOffset="488.72802089057802" a="3.2263794325085624" b="0.0082345375747130203" c="0.0015468443968414186" d="0.0003338964744288221" /> - <width sOffset="489.55784265976558" a="3.2344685892463136" b="0.011491515395339101" c="0.0026953635606843693" d="-0.0004903544294229535" /> - <width sOffset="491.31133830537527" a="3.2602626993283286" b="0.016420984527554087" c="0.00010593034941042968" d="-0.00048623860426608525" /> - <width sOffset="492.56987741847445" a="3.2801276551551046" b="0.014377129333406929" c="-0.00042078424649401628" d="-1.2849711900463711e-05" /> - <width sOffset="495.62157421903225" a="3.3197184038841807" b="0.011449915007866095" c="-0.000910815662642475" d="3.1105307542588097e-06" /> - <width sOffset="498.53262434356384" a="3.3454079678642543" b="0.0062261328103983401" c="-0.031568665333633457" d="0.031974585642935927" /> - <width sOffset="499.18303863106917" a="3.3449005864654606" b="0.0057401766538218582" c="0.00016781072119175742" d="-1.6870619828357991e-05" /> - <width sOffset="501.33810031160743" a="3.3578815294746649" b="0.006228405367716368" c="4.9166199996992271e-05" d="-1.9370075019324207e-05" /> - <width sOffset="504.39472923905589" a="3.3768256412660485" b="0.005986048332281035" c="-0.00046097848561372416" d="-4.8045237574506398e-05" /> - <width sOffset="505.50833191710547" a="3.382853706230498" b="0.0047806103081085346" c="-0.00018122537190170244" d="6.0215126817462068e-06" /> - <width sOffset="508.95059683779971" a="3.3974080656515655" b="0.0037470089307684749" c="-0.00030137110059002577" d="1.2451557601646527e-05" /> - <width sOffset="511.3648623178396" a="3.4048729629355847" b="0.0025095575935018821" c="-0.00021376163538325868" d="1.3579001088684156e-05" /> - <width sOffset="513.13220987799639" a="3.4087154959527588" b="0.0018812181224616481" c="-0.0020813198099027871" d="0.00018571611700958696" /> - <width sOffset="521.14609630334803" a="3.3857067287053768" b="0.0043036876657748064" c="0.0024562700225805533" d="-0.00019282287371531211" /> - <width sOffset="521.2658871998633" a="3.3862571869782583" b="0.0048838642988603383" c="0.0020788200046592403" d="-0.00018248482208405918" /> - <width sOffset="527.88711419087349" a="3.4567596860796379" b="0.0084117846170239374" c="-0.0015077874184488502" d="-0.00021903878287830324" /> - <width sOffset="528.35520320638193" a="3.4603443177924884" b="0.0068562481541191303" c="-0.0021224908074041087" d="0.00023953631140893972" /> - <width sOffset="531.41838633030386" a="3.4683155200908713" b="0.0005958650262409531" c="8.0050393077377011e-05" d="0.00024128503542672237" /> - <width sOffset="534.59159001368619" a="3.4787218312594748" b="0.0083925549137552624" c="0.0003763139057726139" d="-2.3286302571381046e-05" /> - <width sOffset="541.44514833653602" a="3.5464203017044542" b="0.01026937248033071" c="-0.00010470657191572896" d="-2.3459581638581859e-05" /> - <width sOffset="542.28360907430476" a="3.5549433286033056" b="0.010044310368749049" c="8.6547119993235817e-05" d="-1.9653709486722681e-05" /> - <width sOffset="548.31407287653985" a="3.6143524013905663" b="0.0089439394124357155" c="-0.0033146854155000696" d="0.00051718790681247603" /> - <width sOffset="549.32053979892714" a="3.6205237716760621" b="0.0038433932476283758" c="-0.0017538251645392322" d="0.00051681283703614272" /> - <width sOffset="549.34693313374714" a="3.6206239994140583" b="0.0037518947060913117" c="-0.0012321587007202367" d="0.00050055378639544035" /> - <width sOffset="551.47191034276818" a="3.6278358538602582" b="0.005296070514678698" c="0.0019619858615959732" d="0.00049920217154674352" /> - <width sOffset="552.7344395754036" a="3.6386542816769492" b="0.012637354450185798" c="0.00015559384379639174" d="-2.5582772964000705e-05" /> - <width sOffset="561.49867234900034" a="3.7441402094803862" b="0.0094695010929914617" c="-0.00051752783681031998" d="-2.5044304017978889e-05" /> - <width sOffset="565.73018501256047" a="3.7730462637028381" b="0.0037443425626481927" c="-0.00027101343051973083" d="2.5886501255372587e-07" /> - <width sOffset="566.99413910130102" a="3.7773464978926521" b="0.0030604861680825781" c="0.00093038752264498195" d="-0.00012331174551503347" /> - <width sOffset="571.42760175801277" a="3.7984566930366164" b="0.0040388670903771977" c="0.00035659582884362256" d="-3.8472386091622588e-05" /> - <width sOffset="571.85515994398247" a="3.8002457245715915" b="0.0043226990724763922" c="-0.002838697183559506" d="0.00034653927003928681" /> - <width sOffset="576.21767351091955" a="3.7938503440160742" b="-0.00065949892850627589" c="-4.1400965860391751e-05" d="-3.168354137840558e-05" /> - <width sOffset="581.55219636146467" a="3.784344351733433" b="-0.0038060760772255092" c="-0.00053754857934918809" d="-3.2304846938797205e-05" /> - <width sOffset="584.70040997719593" a="3.7660262340180242" b="-0.0081512557333437048" c="-0.00097009452578236503" d="-3.5705490928197858e-05" /> - <width sOffset="584.87645510520406" a="3.7645609852908928" b="-0.0084961363049110596" c="-0.0094520669089276799" d="0.0092009605047255524" /> - <width sOffset="585.55662550591751" a="3.7573045902540838" b="-0.0085841985363396475" c="0.0020527664242903417" d="-0.00010166016980993644" /> - <width sOffset="591.57895836769683" a="3.7578537245779491" b="0.0050795033514822053" c="0.00021718368596140939" d="-0.00010152693851980117" /> - <width sOffset="597.01146342951279" a="3.7755804260236712" b="-0.0015496166142456849" c="-0.00058106995275993435" d="4.0490264065230613e-05" /> - <width sOffset="601.60572037392888" a="3.7601227485066548" b="-0.0043248780205744795" c="-2.2690740058377808e-05" d="4.0408753854549175e-05" /> - <width sOffset="605.06633477399316" a="3.7465589649592337" b="-0.0030301380540193037" c="0.00032820441148893387" d="3.7068321485675109e-05" /> - <width sOffset="606.31203940290243" a="3.7433652642812589" b="-0.0020398809025335253" c="0.00036234317356235475" d="-4.2378516127382742e-05" /> - <width sOffset="611.63248238016104" a="3.7363866085548931" b="-0.0017830689109240329" c="-0.0003154484458083095" d="-4.2259177077855027e-05" /> - <width sOffset="611.99011564216426" a="3.7357066444458304" b="-0.0020249136670220684" c="-0.00047749788158738855" d="3.2771228944287006e-05" /> - <width sOffset="621.6592443863932" a="3.7011099916351657" b="-0.0020673424601765065" c="0.00047264466714263539" d="3.1579001262123012e-05" /> - <width sOffset="622.91462665480003" a="3.6993220451944597" b="-0.00073133892860975398" c="0.00052377218518798283" d="-3.5286509771054491e-05" /> - <width sOffset="631.02575158055083" a="3.7090191461313919" b="0.00080088909860538378" c="-0.00011971971360839901" d="1.1937160268275736e-05" /> - <width sOffset="631.68600639262536" a="3.7094991826920047" b="0.00065840959321191318" c="-9.3767727178352878e-05" d="1.1915815772907588e-05" /> - <width sOffset="637.00997430391044" a="3.7121448894852302" b="0.00067322517412562012" c="0.00011410224319743952" d="-4.4613234990099499e-06" /> - <width sOffset="641.71276839885752" a="3.7173704305788799" b="0.0014504203492231916" c="5.5781044198281293e-05" d="-4.0393550742418068e-06" /> - <width sOffset="651.73953040508968" a="3.7334495785375248" b="0.0013507255824625258" c="-6.7253145842021024e-05" d="-3.7900772431590034e-06" /> - <width sOffset="658.49896461880371" a="3.7383364056231945" b="-7.796617682916579e-05" c="-0.00019105555870540706" d="-1.1797498635843023e-05" /> - <width sOffset="659.07957301373426" a="3.7382244227258212" b="-0.0003117541259524185" c="0.00040025442707463472" d="-6.7096353536348955e-05" /> - <width sOffset="661.76629241132184" a="3.7389747825827926" b="0.00038599128226699409" c="-0.00014821379801291124" d="-6.8160267618776042e-05" /> - <width sOffset="667.17723862440675" a="3.7259257175155946" b="-0.0072048207447481518" c="0.00095094091672779323" d="-8.1750984167678907e-05" /> - <width sOffset="667.28652402652551" a="3.7251495864514279" b="-0.0069999019531667263" c="7.7221335752842126e-05" d="1.7442175297205991e-05" /> - <width sOffset="671.793054417554" a="3.6967689374294199" b="-0.005241211565455128" c="0.00031255238195342035" d="1.7263391613435799e-05" /> - <width sOffset="680.42263532146944" a="3.6859093305938071" b="0.0040099776204356192" c="-0.001215527759812336" d="-7.0232655808884168e-05" /> - <width sOffset="681.81981642378616" a="3.6889475888979089" b="0.00020204612016604622" c="-0.0015102893012813739" d="-6.9890151427855481e-05" /> - <width sOffset="681.8284502237708" a="3.6889492206979742" b="0.00017595141942275844" c="-1.1218631761270817e-06" d="1.2844754788829897e-07" /> - <width sOffset="691.84657843001821" a="3.6907284785142926" b="0.00019214758358676389" c="-7.0762648693258407e-07" d="1.1757354331074722e-07" /> - <width sOffset="699.15074274076437" a="3.6921400200121761" b="0.00020062827684915602" c="5.2258656769360156e-05" d="-6.4092986100076803e-07" /> - <width sOffset="701.68039603320074" a="3.6929715756270349" b="0.00045271663231315754" c="-7.9368055371390988e-05" d="3.3356929312021321e-06" /> - <width sOffset="701.87334043625037" a="3.6930559940495069" b="0.00042246192713099563" c="-7.9944711591048353e-05" d="2.8779660640498546e-06" /> - <width sOffset="711.90010244248253" a="3.6921557352155849" b="-0.0003126940548293434" c="5.0973509167059401e-06" d="2.854220759488858e-06" /> - <width sOffset="720.54691067512476" a="3.6916782940876329" b="0.00041566465302566875" c="1.6942789599351304e-05" d="-4.0223969215877222e-08" /> - <width sOffset="721.9268644487147" a="3.6922840500801657" b="0.00046219539372797328" c="1.4245676689601672e-05" d="-8.5857587451916435e-07" /> - <width sOffset="731.95362645494686" a="3.6974850885206676" b="0.00048891817341766594" c="-1.3494255459737008e-05" d="-7.8528312833159235e-07" /> - <width sOffset="739.70057793404351" a="3.7000977468393677" b="0.00013845258202063553" c="9.5384420662750713e-07" d="5.3652145163245278e-09" /> - <width sOffset="741.98038846117902" a="3.7004184137075651" b="0.00014288540783434674" c="2.9889003001441897e-06" d="-6.0149227115443729e-07" /> - <width sOffset="752.00715046741118" a="3.7015452492877237" b="2.1408589658007855e-05" c="-8.4875134654577388e-06" d="-8.7592359140999537e-07" /> - <width sOffset="755.36029072165582" a="3.7014885821438437" b="-6.505652740528868e-05" c="-3.2599915274376788e-05" d="1.1212243131394999e-06" /> - <width sOffset="762.03391247364334" a="3.6999357651091342" b="-0.00035036686855428878" c="-9.1859315044558616e-06" d="1.2123455422497797e-06" /> - <width sOffset="772.0606744798755" a="3.6967213085485047" b="-0.00016892421107959433" c="2.9023141784474162e-05" d="5.7658395469286193e-08" /> - <width sOffset="772.66641965003816" a="3.6966296457194012" b="-0.00013369948586029181" c="-1.7483615857547917e-05" d="3.2717944752116847e-06" /> - <width sOffset="773.09372393984324" a="3.6965695783092025" b="-0.00014684895335974595" c="-7.7695038447045793e-05" d="4.1539039245926558e-06" /> - <width sOffset="782.08743648610755" a="3.6919862067669795" b="-0.00053639383502615632" c="3.6567890468689722e-05" d="4.2652843348347008e-06" /> - <width sOffset="789.83724749020018" a="3.6920107856843938" b="0.00079890808177548751" c="0.00063188083186540732" d="-0.00014189671871907758" /> - <width sOffset="792.11419849233971" a="3.6954307783954752" b="0.0014694383567150056" c="-0.00033260479904768833" d="-0.00014296910598660475" /> - <width sOffset="793.67807358938842" a="3.6963685180817079" b="-0.00061984727702854374" c="-1.6211908090158304e-05" d="2.1579649628140763e-06" /> - <width sOffset="802.14096049857187" a="3.6912696931247346" b="-0.00043058307004539744" c="3.7101937760316979e-05" d="2.4746370167138002e-06" /> - <width sOffset="809.15247760519503" a="3.6909276317229498" b="0.00045466832638945337" c="1.2029112311992945e-05" d="9.4137808458203203e-07" /> - <width sOffset="812.16772250480403" a="3.6924337398406761" b="0.00055288595197118399" c="1.6693615099604891e-05" d="3.244916037802182e-07" /> - <width sOffset="822.19448451103619" a="3.6999828080522903" b="0.00098552098434703177" c="2.5772032122991641e-05" d="3.7460872716015146e-07" /> - <width sOffset="827.62917252131058" a="3.7061601370457411" b="0.0012988400355872034" c="2.6882428900124907e-05" d="-2.4483693436359375e-06" /> - <width sOffset="829.16043144557398" a="3.7082032394339501" b="0.0013639454832543388" c="-6.511878656585216e-05" d="2.4577378774920015e-07" /> - <width sOffset="832.22124651726836" a="3.7117750008755626" b="0.00097222001725394988" c="-6.3899936182166463e-05" d="1.0566090120858318e-07" /> - <width sOffset="842.24800852350052" a="3.7152054898955758" b="-0.00027733072812108567" c="-6.3332603637153415e-05" d="4.7343578127085009e-07" /> - <width sOffset="845.78225064422293" a="3.7134551569802259" b="-0.0007072553682461269" c="-9.4779961845985937e-05" d="5.7368248614999249e-06" /> - <width sOffset="849.76342923432071" a="3.7094992035590941" b="-0.0011891449910780556" c="-7.3258769046625057e-05" d="4.6862052825937993e-06" /> - <width sOffset="852.27477052973268" a="3.7061250466639315" b="-0.0014684351630791866" c="-4.1229950074518699e-05" d="4.1142318777615443e-06" /> - <width sOffset="862.30153253596484" a="3.6914036561873562" b="-0.0010543562477534172" c="8.0698527492199882e-05" d="4.7717611904184299e-06" /> - <width sOffset="863.60475895244804" a="3.6901772113881313" b="-0.00081970627752650711" c="0.00020710121078243714" d="-7.8484237535619286e-06" /> - <width sOffset="864.8577691941905" a="3.689459827142648" b="-0.00033767329325009926" c="0.00015462318327308887" d="-7.5333909886103148e-06" /> - <width sOffset="872.32829454219689" a="3.6924257302196928" b="0.00071127214696566987" c="-1.481359263848723e-05" d="-7.5338543308807983e-06" /> - <width sOffset="882.34774784929573" a="3.6904872525154664" b="-0.0018545344078535531" c="-8.4299342761896449e-05" d="3.7947840744238884e-06" /> - <width sOffset="882.35505654842905" a="3.6904736937799028" b="-0.0018557660368782247" c="-8.4262214799971823e-05" d="3.7628121378142647e-06" /> - <width sOffset="884.92898178912628" a="3.6852030111974416" b="-0.0022147483997785435" c="-3.9155030894697066e-05" d="1.1415297790265104e-06" /> - <width sOffset="892.38181855466121" a="3.6669945501675851" b="-0.0026081624602744984" c="-1.1897937010614881e-05" d="1.0689857807511756e-06" /> - <width sOffset="902.60770951474092" a="3.6402226884755464" b="-0.002516148645097473" c="-1.0602147865395659e-05" d="6.9589636701487148e-06" /> - <width sOffset="902.67886346908904" a="3.6400436033791874" b="-0.0025175517172823843" c="0.00026061511066190364" d="-1.0573009152431363e-05" /> - <width sOffset="912.43534256712553" a="3.6304695823105368" b="-0.00045147879528067199" c="-4.2064215454252769e-05" d="-1.0676212322494434e-05" /> - <width sOffset="918.49631186333363" a="3.6238108614499991" b="-0.0021379617828514064" c="-0.00033685463074171936" d="-1.3064808867167924e-05" /> - <width sOffset="919.66169841696342" a="3.6208411403486291" b="-0.0029763244599840481" c="-3.5391806052904701e-05" d="1.4383387443745954e-06" /> - <width sOffset="922.46210457335769" a="3.6122602588986323" b="-0.0031407077807176003" c="-1.719156628916603e-05" d="2.5164090236103465e-06" /> - <width sOffset="932.48886657958985" a="3.5815774252785442" b="-0.0027264905049939319" c="5.5816102631090782e-05" d="2.869185905605319e-06" /> - <width sOffset="939.18279335009925" a="3.5666881424498937" b="-0.0015935396083713012" c="7.6459033350469272e-05" d="1.2693387141526865e-08" /> - <width sOffset="942.51562858582201" a="3.5622268983485532" b="-0.0010834659010285953" c="7.3842850156906749e-05" d="-6.8168107596667543e-07" /> - <width sOffset="952.54239059205418" a="3.5580999364940054" b="0.00019174309108927162" c="5.3560834531602672e-05" d="-1.8712540964099835e-07" /> - <width sOffset="954.12047031496149" a="3.5585351714385407" b="0.00035939160970746488" c="0.0066183168465883471" d="-0.0014235747019172285" /> - <width sOffset="957.2153418206874" a="3.5808396208048108" b="0.00041909585748666812" c="-2.182633816817839e-05" d="-8.0943354176012382e-07" /> - <width sOffset="962.56915259828634" a="3.5823335521514466" b="0.00011578460379933135" c="-3.8850469839482271e-05" d="-9.0196640941516242e-07" /> - <width sOffset="972.59591460451838" a="3.578679400342871" b="-0.00093534439266563531" c="-7.0769742244132923e-05" d="-6.5122792115578775e-07" /> - <width sOffset="976.33588946295299" a="3.5741572828869872" b="-0.0014920254857310631" c="-0.00021976255456579761" d="1.3159035082310933e-05" /> - <width sOffset="982.62267661075055" a="3.5593611267034002" b="-0.0026949453187896711" c="2.8161181513815822e-05" d="1.2916207400751853e-05" /> - <width sOffset="990.73617352504334" a="3.5462480864176862" b="0.00031280254793095418" c="1.2068049728021428e-05" d="-6.0345095049101989e-07" /> - <width sOffset="990.94995388994357" a="3.5463155030992315" b="0.00031787963525452099" c="-1.1699079943181978e-05" d="-1.4791739695754734e-06" /> - <width sOffset="992.64943861698271" a="3.5468146842605588" b="0.00026529815461108166" c="-1.1007191412109495e-05" d="1.178528363919906e-06" /> - <width sOffset="1002.6762006232149" a="3.5495561628459882" b="0.00040001860570337833" c="2.6060399068026066e-05" d="1.1586665770953268e-06" /> - <width sOffset="1006.8413900846544" a="3.5517581593291991" b="0.00067741604025549904" c="0.00010992665978857479" d="-1.4073226908470834e-05" /> - <width sOffset="1010.6543644238536" a="3.5551591651166947" b="0.00090188873884508732" c="3.4785888394098432e-05" d="-1.7232839732529823e-06" /> - <width sOffset="1012.702962629447" a="3.5571379447342957" b="0.0010227167560663707" c="2.3773774998586957e-05" d="-1.6320927164345182e-06" /> - <width sOffset="1022.7297246356792" a="3.5681373702144681" b="0.0010072127176714691" c="-2.6927317723152097e-05" d="-1.5738830823484508e-06" /> - <width sOffset="1028.5884290370864" a="3.5727975647478667" b="0.00052962646902043452" c="0.00013848929171428263" d="-8.3166788361136314e-06" /> - <width sOffset="1029.7515106299054" a="3.573587820948541" b="0.00081802377977534843" c="0.00016302347336222617" d="-6.5079568249130578e-06" /> - <width sOffset="1032.7564866419114" a="3.5773414546769411" b="0.0016214888096892821" c="0.00010300788333546959" d="-6.7501654808300613e-06" /> - <width sOffset="1042.7832486481434" a="3.5971512280916116" b="0.0016512568456349892" c="-9.9309015428076101e-05" d="-6.853213083911017e-06" /> - <width sOffset="1047.1553720844922" a="3.6018996305856641" b="0.0003898672675922678" c="-6.9914390054484339e-05" d="1.9164195166939208e-06" /> - <width sOffset="1052.8100106543757" a="3.6022151823473902" b="-0.00021698176360959378" c="-3.8481686394677458e-05" d="2.1144852502287255e-06" /> - <width sOffset="1062.8367726606077" a="3.5983022717842559" b="-0.00035092979543540422" c="2.3070056871009585e-05" d="2.0133887005958006e-06" /> - <width sOffset="1066.9547513991831" a="3.5973889648330712" b="-5.8498168034305689e-05" c="0.00022584221094984076" d="-7.7794476609607684e-06" /> - <width sOffset="1072.86353466684" a="3.6033234220835073" b="0.0017955788210844282" c="8.8400539101670986e-05" d="-7.8279723809037677e-06" /> - <width sOffset="1081.5347414896059" a="3.6204363460303646" b="0.0015629058515084116" c="-0.00016871239063649996" d="-7.5920618846782726e-06" /> - <width sOffset="1082.1585276135625" a="3.6213437747304043" b="0.0013435625333224318" c="-6.9735977326016485e-05" d="5.2930996738395072e-07" /> - <width sOffset="1082.890296673072" a="3.6222898169964872" b="0.0012423515864023742" c="-6.63602394506308e-05" d="1.5401574416826259e-06" /> - <width sOffset="1092.9170586793043" a="3.6296275464201484" b="0.00037611853499941146" c="-2.0317559108423664e-05" d="1.6096753144973558e-06" /> - <width sOffset="1098.9472569114835" a="3.6315097685808571" b="0.00030667999123795307" c="-4.1234936316153413e-05" d="3.5525519371737901e-06" /> - <width sOffset="1099.0183955320665" a="3.6315313779735727" b="0.00030086713348794316" c="-2.1972196652258211e-06" d="-4.2827830628484751e-07" /> - <width sOffset="1102.9438206855364" a="3.6326526473574248" b="0.00026381911754752661" c="-7.4741593789904824e-06" d="-5.5918422489337161e-07" /> - <width sOffset="1112.9705826917684" a="3.633982791383001" b="-5.4718479474264153e-05" c="-2.2766026969142975e-05" d="-6.4817313490172264e-07" /> - <width sOffset="1118.5595706153617" a="3.6328526735742264" b="-0.00036993711560909205" c="-4.1921438124568655e-05" d="-4.9251854125334994e-06" /> - <width sOffset="1120.7349287708746" a="3.6317988471217948" b="-0.00062224603783145923" c="-0.00011257250870557127" d="4.3287128360126201e-06" /> - <width sOffset="1122.9973446980007" a="3.6298649899910558" b="-0.0010651478257849992" c="-7.7560826185120611e-05" d="5.2651487676608519e-06" /> - <width sOffset="1133.0241067042327" a="3.6166948881858092" b="-0.0010325054163913367" c="8.1688690501471005e-05" d="5.6144560519909338e-06" /> - <width sOffset="1134.7597493431124" a="3.6151782667362715" b="-0.0006982007728448163" c="-0.0001285053975528565" d="6.1983608968626525e-06" /> - <width sOffset="1136.2349175549127" a="3.6138885574605712" b="-0.0010368697732268629" c="-0.00013103122447430404" d="1.2028348303638739e-05" /> - <width sOffset="1143.050868710465" a="3.6045427369756142" b="-0.0011466648317910982" c="0.00011468628553278128" d="1.1974274860743219e-05" /> - <width sOffset="1151.6255384790916" a="3.6106919781697924" b="0.0034613535185218846" c="0.00071483329688315348" d="-0.00010135241248850565" /> - <width sOffset="1152.5189941895592" a="3.6142828834542042" b="0.0044959796258346833" c="0.0005812686724312394" d="-0.00012433087311586921" /> - <width sOffset="1153.0776307166971" a="3.6169542257928748" b="0.0050290138651473432" c="0.0003755258196041372" d="-0.00012394626451656763" /> - <width sOffset="1155.7040244754064" a="3.6305072530976608" b="0.0044366479625343926" c="-0.00040118442732036227" d="1.1757679917686459e-05" /> - <roadMark sOffset="0" color="standard" width="0.16803765159562165" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16803799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="409.33683597598588" color="standard" width="0.16803765159562165" weight="standard" type="solid"> - <type name="solid"> - <line length="257.94968805053963" space="0" width="0.16803799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="667.28652402652551" color="standard" width="0.16803765159562165" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16803799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="1050.3947359028189" max="100" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="2.9937811288879663" b="-2.7764582624423234e-09" c="-0.0055043830716700187" d="0.0007091805356025106" /> - <width sOffset="4.9571275961542609" a="2.9449080254365416" b="-0.0022915387717040193" c="-0.00041950629630705912" d="-1.0502657657027973e-05" /> - <width sOffset="8.7126934247653427" a="2.9298288478303895" b="-0.0058869029001047679" c="0.0029446478073003055" d="0.0001096194169005629" /> - <width sOffset="8.7346042472516068" a="2.9297012757777594" b="-0.0057577057096347625" c="0.00097726686131367215" d="-4.1325624314298285e-05" /> - <width sOffset="10.026762006232149" a="2.923803967292252" b="-0.0034391404677490585" c="0.00081769961761567732" d="-4.2154216307410517e-05" /> - <width sOffset="20.053524012464297" a="2.9290351750964598" b="0.00024457509971652705" c="-0.00045420285102773538" d="-3.9985609325457892e-05" /> - <width sOffset="22.576780707249679" a="2.9261180969851313" b="-0.0028113097226171047" c="0.0013433114811213444" d="-6.9165915036918503e-05" /> - <width sOffset="26.137581804134214" a="2.930017101468938" b="0.0041242931849777365" c="-0.0010027821799679674" d="-0.00013661863522575795" /> - <width sOffset="27.088659857403332" a="2.932915027498082" b="0.0018461099982707435" c="-3.5427611468823151e-05" d="1.2878623844364075e-05" /> - <width sOffset="30.080286018696448" a="2.9384656466575194" b="0.0019799220293179026" c="5.7548303372492856e-05" d="8.9048855172820052e-06" /> - <width sOffset="40.107048024928595" a="2.9730800981512626" b="0.0058197518573319812" c="0.00034384822109130228" d="1.3176152293927012e-06" /> - <width sOffset="40.508992024876484" a="2.9754749498219186" b="0.006096805933770072" c="0.0064511746794186199" d="-0.0010001286343657037" /> - <width sOffset="42.6365533705969" a="3.0080159501191868" b="0.019966047062163025" c="-0.00060207460571866617" d="-0.00087451038422596203" /> - <width sOffset="44.476610868978717" a="3.0372678368802308" b="0.008867561073738206" c="-0.00093989901822390709" d="8.9712332794085445e-05" /> - <width sOffset="47.158021339937434" a="3.0560171552311939" b="0.0057621357572999778" c="-0.0058961360679059861" d="0.00039864068839099673" /> - <width sOffset="50.133810031160742" a="3.0314566943153505" b="-0.018738903717542971" c="-0.0023240686027079134" d="0.00040486760440700648" /> - <width sOffset="56.132889299959245" a="2.9228108810576172" b="-0.00291116483194424" c="0.00067989603974133472" d="-0.00016422819539088987" /> - <width sOffset="58.224175408362811" a="2.9181942498182067" b="-0.0022221955409910165" c="0.00061289830777891885" d="-0.00012755663877714882" /> - <width sOffset="60.281374322502877" a="2.9151060443250421" b="-0.0013199729417890708" c="-0.00080431872485298085" d="-1.20071745369473e-06" /> - <width sOffset="60.730633340040967" a="2.914350587106334" b="-0.0020433948576291487" c="-0.0012898425221520978" d="3.4270365109804405e-05" /> - <width sOffset="66.122001300770975" a="2.8712127478842033" b="-0.012963031623441269" c="0.0043463125719084257" d="-0.00032928471464749147" /> - <width sOffset="70.187334043625043" a="2.8682211087680991" b="0.0060491854015728291" c="0.00032929315344126147" d="-0.00032999249577890408" /> - <width sOffset="72.509500502303979" a="2.879911797006665" b="0.0022401213409349377" c="0.0018501902409922453" d="-0.00017371955261710309" /> - <width sOffset="76.522026604980752" a="2.9074662537158931" b="0.0086971496227529234" c="-0.0018080889897984934" d="4.0010707634860232e-05" /> - <width sOffset="79.723548572694199" a="2.9180908644384456" b="-0.001649825217406" c="8.2760551689297192e-05" d="0.000247199666412743" /> - <width sOffset="80.698946435629907" a="2.9167897668472742" b="-0.0007828182640852166" c="-0.00028826008943751006" d="3.5534080054974047e-06" /> - <width sOffset="83.239019431268048" a="2.9129997405725052" b="-0.0021784421475629975" c="-0.0016300614088194769" d="0.00093104933215023601" /> - <width sOffset="84.765729871503567" a="2.909187632459715" b="-0.00064531129502022958" c="0.0044825368947548523" d="-0.00078209109129395065" /> - <width sOffset="88.84936070033379" a="2.9280439270756329" b="-0.0031618083023497237" c="-0.0038408355456909424" d="0.0013883422726589597" /> - <width sOffset="90.240858056089337" a="2.919948025128428" b="-0.0057862381157579561" c="0.001939174742100023" d="0.0013888164933773027" /> - <width sOffset="90.4299398479112" a="2.918932670537655" b="-0.0049039542608063785" c="0.00066281228062556319" d="-1.5847926648290726e-06" /> - <width sOffset="96.506993105379038" a="2.9132534452627343" b="0.0029763548780678841" c="0.00038121880163318898" d="-3.5783048893898951e-06" /> - <width sOffset="100.26762006232148" a="2.9296474136038846" b="0.0056917817359894568" c="0.00035694712114101045" d="-7.2370967124423863e-06" /> - <width sOffset="105.3182754489775" a="2.9665676371492342" b="0.0087435796343926109" c="-0.0024133340026593294" d="9.2039674466450739e-05" /> - <width sOffset="110.29438206855363" a="2.9616593317014726" b="-0.0084372759264782285" c="-0.0010409999395957058" d="0.00010765482212602093" /> - <width sOffset="111.97537236375493" a="2.9450461324563761" b="-0.011024487662036106" c="0.0061192075755971027" d="-0.00095701728144081174" /> - <width sOffset="115.32371998971735" a="2.9408111842030893" b="-0.0022346213616109174" c="0.0016458972862897323" d="1.108122061910538e-05" /> - <width sOffset="119.78332601555144" a="2.9645622269428484" b="0.013106638352908935" c="-0.0016776307509333524" d="6.1151341571498636e-05" /> - <width sOffset="120.32114407478579" a="2.9711354748436554" b="0.011355181882077715" c="-0.0015851227460200882" d="5.9697021858524493e-05" /> - <width sOffset="130.34790608101792" a="2.9858069392249384" b="-0.0024270236202082254" c="0.00012430960496774947" d="7.213907198574005e-05" /> - <width sOffset="134.586168030762" a="2.9832455770349653" b="0.0025141628114864773" c="0.0008746466855024445" d="-0.00034885455150582615" /> - <width sOffset="134.9859215552994" a="2.9843681080954156" b="0.0030462051155024277" c="0.002836445858566722" d="-0.00026361429007797896" /> - <width sOffset="140.37466808725009" a="3.0418989363394124" b="0.010651019463244446" c="-0.0014566980139327323" d="-0.00027483268683808307" /> - <width sOffset="141.55979480021796" a="3.052018304639855" b="0.0060402475981097565" c="-0.00012288463019457716" d="-4.1241073247433428e-05" /> - <width sOffset="148.61120279280061" a="3.0740408013664613" b="-0.0018445815428426056" c="-0.0032927768945612886" d="0.00035182643060033844" /> - <width sOffset="150.40143009348222" a="3.0622041277052201" b="-0.010251499590884804" c="-0.0013887317523598979" d="0.00034190066630742109" /> - <width sOffset="151.86761037256127" a="3.0452658570275521" b="-0.012118826005053655" c="0.00087289698176677667" d="0.00038075344706737271" /> - <width sOffset="152.98449195305412" a="3.0333499119122318" b="-0.0087440973890103683" c="0.0004387726155912514" d="-1.0295291105052958e-05" /> - <width sOffset="160.42819209971438" a="2.9883270338910974" b="-0.0039232590429985024" c="0.0002107463399931706" d="-1.0263856620677878e-05" /> - <width sOffset="168.41235888927361" a="2.9652135548460752" b="-0.0025208589052478879" c="-0.00049740822852651528" d="1.6644351790404382e-05" /> - <width sOffset="170.45495410594654" a="2.9581310212014928" b="-0.0043445357869931079" c="-0.0003956397197759799" d="1.5671008697291083e-05" /> - <width sOffset="180.48171611217867" a="2.8905905392451108" b="-0.0075520068697095821" c="7.4668152681714125e-05" d="1.6616571443761354e-05" /> - <width sOffset="182.95097501275259" a="2.8726481221751814" b="-0.006879311220326677" c="0.00087266705208588122" d="2.7872375983004096e-05" /> - <width sOffset="186.11158011105604" a="2.86050278187659" b="-0.00052771235857572766" c="0.01872172898157095" d="-0.0053387654427787768" /> - <width sOffset="188.16063670395843" a="2.892096475477353" b="0.008949503006552291" c="-0.00038263874848577003" d="2.0875790002926852e-06" /> - <width sOffset="190.50847811841084" a="2.9110262647594167" b="0.0071872752622101407" c="-0.00036866816928608445" d="3.6186871130591677e-06" /> - <width sOffset="200.53524012464297" a="2.9496747742516041" b="0.00088560378550794992" c="-0.00026142976165683659" d="2.7433466324938259e-06" /> - <width sOffset="204.41991020757089" a="2.9493307258330397" b="-0.0010213362147976478" c="1.0076983070494699e-05" d="1.7622848898449196e-06" /> - <width sOffset="210.56200213087513" a="2.943846084999691" b="-0.00069810055965647828" c="4.0673868307898051e-05" d="1.6770912877001994e-06" /> - <width sOffset="217.51609425600103" a="2.9415223917468367" b="0.00011090846653425574" c="0.00050241222111810022" d="-1.3203470357490104e-05" /> - <width sOffset="220.58876413710726" a="2.9462235687956975" b="0.0028244284840810915" c="0.00038140013093291647" d="-9.5612384120918811e-06" /> - <width sOffset="221.80090173264702" a="2.9501905191514548" b="0.0037069030205144704" c="-0.00039176791483486813" d="9.4487549579086241e-06" /> - <width sOffset="230.61552614333942" a="2.9588972667631417" b="-0.00099723418143512089" c="-0.00013952027223075215" d="9.4908902957749861e-06" /> - <width sOffset="240.10054032772359" a="2.9449852805334431" b="-0.0010823797995726464" c="0.00030003858170658771" d="3.6608250975703747e-05" /> - <width sOffset="240.64228814957158" a="2.9444927828055398" b="-0.00072505675946921882" c="0.00036516652854212521" d="3.5289964746789333e-05" /> - <width sOffset="243.75914936954425" a="2.9468489815996683" b="0.0025797973989266569" c="3.6861567850457098e-05" d="1.3478418306556054e-05" /> - <width sOffset="247.64391596336876" a="2.9582173794321012" b="0.0034764196443240925" c="0.000709753649613946" d="-0.00015879791154529179" /> - <width sOffset="250.66905015580372" a="2.9708330681592052" b="0.0034109325180154493" c="-0.00072637990281375201" d="-0.00015839030872607919" /> - <width sOffset="251.65798670980072" a="2.9733426765003581" b="0.0015095302107985681" c="3.6720991144019459e-06" d="-6.0642524263136651e-07" /> - <width sOffset="260.69581216203585" a="2.9868378110507825" b="0.0014273031868729648" c="-1.2107705537427673e-05" d="-7.5407279012430006e-07" /> - <width sOffset="270.72257416826801" a="2.9991716375042197" b="0.00095706673585021053" c="-3.1938812583193785e-05" d="-7.5452493737666144e-07" /> - <width sOffset="279.97265323934238" a="3.0046945826807461" b="0.00017251322112110776" c="-0.00027506785605328456" d="1.1175433795270239e-05" /> - <width sOffset="280.74933617450017" a="3.0046678757697309" b="-0.00023454351375305749" c="-0.00024422607137377446" d="1.1201615216364137e-05" /> - <width sOffset="290.77609818073233" a="2.9890544515505497" b="-0.0017536416058756923" c="9.4979962839641133e-05" d="1.1420483005316296e-05" /> - <width sOffset="296.63232152686714" a="2.9843358098566819" b="0.00053381459563177185" c="0.00017080945334242971" d="-5.2899706899568584e-06" /> - <width sOffset="300.80286018696444" a="2.9891493266621074" b="0.0016825178399911237" c="0.0001059775631012138" d="-5.5217494534695245e-06" /> - <width sOffset="310.8296221931966" a="3.0111078881423778" b="0.0021423383606725818" c="-6.0459823929943815e-05" d="-5.3466599589295414e-06" /> - <width sOffset="312.79037128404138" a="3.0150357320607513" b="0.001843578974994612" c="-0.00011610255531056815" d="-5.5006549414861466e-06" /> - <width sOffset="316.54384678546779" a="3.0200289597632786" b="0.00073951355678168783" c="-6.570504759799943e-05" d="-1.2946942052918952e-07" /> - <width sOffset="320.85638419942876" a="3.0219857745255507" b="0.00016557899600567582" c="-6.7704393146294993e-05" d="-9.3498927076984411e-08" /> - <width sOffset="330.88314620566092" a="3.0167450181955884" b="-0.0012203326898514652" c="-7.0633333313416458e-05" d="-2.9775175271424738e-07" /> - <width sOffset="333.81963630342739" a="3.0125449144775871" b="-0.0016428633744960148" c="-7.6634870286036445e-05" d="1.3856512552059993e-06" /> - <width sOffset="340.90990821189308" a="2.9975378857139203" b="-0.0025206093147903475" c="-4.8283287948132601e-05" d="1.4232297858956375e-06" /> - <width sOffset="350.93667021812519" a="2.9688448164134447" b="-0.0030596020862534629" c="-2.9773792558441864e-06" d="-9.6304875947283019e-07" /> - <width sOffset="352.17037931902831" a="2.9650638174226547" b="-0.0030713459168674679" c="0.0004456502798089975" d="-1.4122924800439124e-05" /> - <width sOffset="360.96343222435735" a="2.9629123981887382" b="0.0014900475059662958" c="7.5329662552366035e-05" d="-1.4631760945232067e-05" /> - <width sOffset="365.7128737348321" a="2.9701209573289846" b="0.0012154407189163413" c="-0.0028864342890609599" d="0.00048071346649936303" /> - <width sOffset="368.87711231845924" a="2.9602965416595222" b="-0.0026119978534829323" c="0.00046379785235254987" d="-4.5443561262842299e-05" /> - <width sOffset="370.22630379250381" a="2.9575051084006461" b="-0.0016086587850406733" c="0.00046642674334034992" d="-2.7941182893342089e-05" /> - <width sOffset="370.99019423058951" a="2.9565359878459132" b="-0.00094497436455783261" c="0.00040586546046086707" d="-2.63562634339083e-05" /> - <width sOffset="381.01695623682167" a="2.9612965928195214" b="-0.00075519805618597634" c="-0.00038092647470832112" d="-2.8106901641901879e-05" /> - <width sOffset="384.14440905081938" a="2.9543491435927125" b="-0.0039625947418138446" c="-0.0012337219913911631" d="0.00019572596201166439" /> - <width sOffset="388.50413623799659" a="2.929842770889401" b="-0.0035593574241207008" c="0.00075246113472335872" d="-2.8254770285199999e-05" /> - <width sOffset="390.30883033401608" a="2.9257038515118046" b="-0.0011195037349274618" c="0.00039604167448954096" d="-2.5447066356582178e-05" /> - <width sOffset="391.04371824305377" a="2.9250849285873444" b="-0.00057864010501461382" c="0.00034426266869215158" d="-2.2665233872696366e-05" /> - <width sOffset="399.04027781926641" a="2.9308820284313066" b="0.00057921101118987373" c="0.00086803876570521723" d="-0.0002767600379434519" /> - <width sOffset="401.07048024928594" a="2.9333198498527455" b="0.00068161610015927705" c="-0.0008174918589969936" d="-0.00027662518607030214" /> - <width sOffset="401.73852303557572" a="2.933327895727186" b="-0.00078098080870394639" c="-0.0014558323178629976" d="0.00019978437287373286" /> - <width sOffset="406.12874200168721" a="2.9187446641445636" b="-0.002011880579476156" c="0.00050154187999196481" d="-8.8264631449842915e-06" /> - <width sOffset="411.0972422555181" a="2.9200471085674815" b="0.0023182712674519072" c="0.00037586269810896509" d="-8.091803778177628e-06" /> - <width sOffset="411.22596957555913" a="2.9203517444708327" b="0.0024146366020039948" c="0.00076656784053160624" d="-6.9643583417671823e-05" /> - <width sOffset="417.59222825557947" a="2.948822949436301" b="0.0037071684170860942" c="-0.00060812259579357767" d="2.0764586979494158e-05" /> - <width sOffset="420.38398828072013" a="2.9548846244924052" b="0.00079721655123933272" c="-0.00067352243092654246" d="-5.1943319946866791e-05" /> - <width sOffset="420.83235564005395" a="2.9551019879400355" b="0.00016191859428643391" c="-0.00058941452199371379" d="5.2693829166917762e-05" /> - <width sOffset="428.39817938848137" a="2.9454086241926776" b="0.00029195716090351601" c="0.00024643587517299807" d="9.4489742845462422e-07" /> - <width sOffset="429.26139011333566" a="2.9458448799521415" b="0.00071952156385460958" c="-5.4949296351289759e-05" d="4.6659425112100126e-05" /> - <width sOffset="431.15076626798242" a="2.9473228705130055" b="0.001011568147448304" c="0.00020141543532966732" d="4.823505664767194e-05" /> - <width sOffset="434.91027168392247" a="2.9565356855945253" b="0.004571258635477366" c="0.00028787079027858586" d="-8.2757056862570456e-06" /> - <width sOffset="435.18945603049212" a="2.9578341671362942" b="0.0047300615501247338" c="0.0006233174626758839" d="-3.6519933390688458e-05" /> - <width sOffset="441.17752827421452" a="3.0006670632265546" b="0.0082665147823918206" c="-3.5554948223076642e-05" d="-3.723246629697608e-05" /> - <width sOffset="445.58263284160546" a="3.0332093217405127" b="0.0057857862310657544" c="7.3788512849437185e-05" d="-6.587902841044878e-06" /> - <width sOffset="448.89600792388069" a="3.0529502456725441" b="0.0060577892972288891" c="0.00028889035286807041" d="-1.9045263022624258e-05" /> - <width sOffset="451.20429028044668" a="3.0682383539293747" b="0.0070870412554088829" c="0.00016476698228315103" d="-1.6090581152939489e-05" /> - <width sOffset="459.67905774274959" a="3.1303393353384861" b="0.0064128070934105549" c="-0.00028876456056708478" d="2.0640211593443303e-05" /> - <width sOffset="461.23105228667885" a="3.1396735921639469" b="0.0056656324804642824" c="-0.00019293172469635257" d="1.9762351506797337e-05" /> - <width sOffset="470.54416001372101" a="3.1916677958356301" b="0.0072142465446853633" c="0.00067018009232675327" d="-7.233491714863944e-05" /> - <width sOffset="471.25781429291101" a="3.1971313068302969" b="0.0080602792788394082" c="0.00050788004321508716" d="-7.0104489654730992e-05" /> - <width sOffset="473.25651764520364" a="3.2147105550917354" b="0.0092503189491653821" c="-0.00029861158889887346" d="-7.2072498575773261e-05" /> - <width sOffset="477.76276746240308" a="3.2437361017343185" b="0.0021685075009949214" c="-0.0015459491931296069" d="0.00032475774081010272" /> - <width sOffset="479.41550146327302" a="3.2445633779251395" b="-0.00028032186802055218" c="-0.00095700362437291784" d="0.00043379394574130902" /> - <width sOffset="480.23995041391709" a="3.2439248704214281" b="-0.00097375298492386516" c="-0.00024920767506929559" d="4.0408535841260208e-05" /> - <width sOffset="481.28457629914317" a="3.2426817800009178" b="-0.001362123936540084" c="-0.00010325781705105631" d="5.3441837420475207e-05" /> - <width sOffset="486.66214074936181" a="3.2406815530069228" b="0.0021636500661874891" c="0.0010401863002217125" d="-0.0004207388298403949" /> - <width sOffset="487.81897086248534" a="3.2439252036247166" b="0.0028811190593032079" c="0.00011611096948965149" d="-0.00037754557190160969" /> - <width sOffset="489.55784265976558" a="3.2473011293101375" b="-0.00013980222592576037" c="-0.0021706945464477793" d="0.00044670533195023546" /> - <width sOffset="491.31133830537527" a="3.2427900867785882" b="-0.0036318914862339298" c="0.00017646448000381782" d="0.00044401054254533472" /> - <width sOffset="492.56987741847445" a="3.2393838172584521" b="-0.0010778841189170059" c="0.00054374207387049831" d="-2.9378349820289061e-05" /> - <width sOffset="495.62157421903225" a="3.2403232990991597" b="0.0014199989836722136" c="0.00064717176747795368" d="-4.5338592474998863e-05" /> - <width sOffset="499.29876333649361" a="3.2520414573050513" b="0.0043403777131913474" c="0.00016319570620688869" d="-9.4345907885540793e-06" /> - <width sOffset="501.33810031160743" a="3.2614916454826046" b="0.0048882873630784439" c="9.2901622949169215e-05" d="-1.5175752514525766e-05" /> - <width sOffset="503.29165397539748" a="3.271282581684531" b="0.0050775150276867438" c="-0.0002036237970626412" d="-2.2781403300502248e-05" /> - <width sOffset="504.39472923905589" a="3.2766051214862006" b="0.0045451307518717737" c="5.3510686298750517e-05" d="5.8937592547535917e-06" /> - <width sOffset="508.95059683779971" a="3.2989801207899316" b="0.0053996973117732012" c="0.00031639290107999033" d="-5.3628566525989453e-07" /> - <width sOffset="511.3648623178396" a="3.3138530292947697" b="0.0069180327211204942" c="0.00030691133947176688" d="1.0026845422018384e-06" /> - <width sOffset="514.09203579883285" a="3.335022687883427" b="0.0086144059774027112" c="0.00033337759932791481" d="-3.7028901956280543e-05" /> - <width sOffset="520.52664069971627" a="3.3943909861427821" b="0.0083052626988283154" c="-0.0005188947772194006" d="2.0090441802873412e-05" /> - <width sOffset="521.2658871998633" a="3.4002551703976032" b="0.007571017801473132" c="-0.00016618466766955931" d="9.7523902885997827e-06" /> - <width sOffset="527.88711419087349" a="3.4459298673592671" b="0.0066529782835812326" c="-1.0679163444026472e-05" d="4.6306351087605304e-05" /> - <width sOffset="529.48558299573847" a="3.4567262860394208" b="0.0069737900874088567" c="0.0001676349550080298" d="-2.5547542129034743e-05" /> - <width sOffset="531.41838633030386" a="3.4706470252798152" b="0.0073354848261223474" c="1.9044373710936941e-05" d="-2.1825593020607306e-05" /> - <width sOffset="536.15446040628308" a="3.5034970207350487" b="0.0060472057639673702" c="-3.3671056500114547e-05" d="7.886262710467274e-06" /> - <width sOffset="541.83340863353988" a="3.5381972407544948" b="0.0064277800246338897" c="0.00011967011853158259" d="1.3419960438992564e-05" /> - <width sOffset="542.28360907430476" a="3.5411165094753709" b="0.0065436909951839522" c="-0.00011246837145000839" d="9.6140882898587408e-06" /> - <width sOffset="549.32053979892714" a="3.5849448578096155" b="0.0063890493543061425" c="8.9413769210166299e-05" d="9.6866086891071423e-06" /> - <width sOffset="549.34693313374714" a="3.5851135485928598" b="0.0063937894527619187" c="-0.00039056446413437686" d="2.5945700873882301e-05" /> - <width sOffset="551.47191034276818" a="3.5971855598638198" b="0.0050853839100212204" c="-0.0002206398750774191" d="2.5192213325477395e-05" /> - <width sOffset="556.76845063646829" a="3.6216740165822121" b="0.0048683050405296246" c="0.00024212887804036352" d="1.3253056268683696e-05" /> - <width sOffset="561.49867234900034" a="3.6515224980468042" b="0.0080485628934422321" c="0.00043070868137694106" d="1.2916920842960501e-05" /> - <width sOffset="561.75736076911846" a="3.6536336145704729" b="0.0082739947794429804" c="0.00054675425807080495" d="1.4513068380986181e-05" /> - <width sOffset="565.73018501256047" a="3.6960443791847553" b="0.013305505673000186" c="0.00015528759270749926" d="-1.0790100356434641e-05" /> - <width sOffset="565.94306970271589" a="3.6988838511522055" b="0.013370155356551977" c="0.0002166925784099465" d="-4.118198653490587e-06" /> - <width sOffset="571.85515994398247" a="3.7846524291479264" b="0.015500539655051044" c="0.0032895965537812059" d="-0.00038912985478746319" /> - <width sOffset="572.51020239036438" a="3.796108071472712" b="0.019309286181078265" c="0.0047812264485418907" d="-0.00074326269531879859" /> - <width sOffset="576.21767351091955" a="3.8955392775398501" b="0.024112604064968759" c="-0.0017475979017303267" d="-0.00036503988390108075" /> - <width sOffset="578.7319810167412" a="3.9393156780742316" b="0.0084015428687406763" c="-0.00092628681257677292" d="1.8372916378633562e-05" /> - <width sOffset="581.55219636146467" a="3.956054631043068" b="0.0036152795911976836" c="-0.00075786053391867485" d="2.2820508291095999e-05" /> - <width sOffset="584.70040997719593" a="3.9606370211752067" b="-0.00047799489431594663" c="-0.00041489075968884493" d="2.6221152228428388e-05" /> - <width sOffset="591.57895836769683" a="3.9462525853492769" b="-0.0024637707744416173" c="0.00012720201963305661" d="2.6307377212365101e-05" /> - <width sOffset="596.30066752878315" a="3.9402246199391007" b="0.00049698352399704139" c="-1.0095512652441159e-05" d="-4.5754080524616425e-06" /> - <width sOffset="601.60572037392888" a="3.9418938967654" b="3.5639019863049209e-06" c="-8.2651209184673413e-05" d="-4.6667519275043223e-06" /> - <width sOffset="605.06633477399316" a="3.9407230034435616" b="-0.00073614901896493137" c="-6.2478501077265936e-05" d="-1.3263195520653326e-06" /> - <width sOffset="605.50633588358392" a="3.9403868881775219" b="-0.00079190056883757937" c="-0.00022618229918622978" d="2.2343235020080429e-05" /> - <width sOffset="611.63248238016104" a="3.9321840257321234" b="-0.0010475495970640233" c="0.00017330017604550303" d="2.7497324274407871e-05" /> - <width sOffset="613.30054561141583" a="3.9310464659422171" b="-0.00023986974606270573" c="0.00025890554119885692" d="-3.0721666586080021e-05" /> - <width sOffset="617.87863353568548" a="3.9324268994696996" b="0.00019903891379525768" c="0.00014012332418955007" d="-1.6477232347354025e-05" /> - <width sOffset="621.6592443863932" a="3.9342918040613322" b="0.00055201427794514518" c="-5.2573964416111668e-05" d="-1.8629795686660068e-05" /> - <width sOffset="627.6516880633269" a="3.9317029684504563" b="-0.0020850320694860746" c="-0.00046493906959957593" d="7.1978679570839618e-05" /> - <width sOffset="631.31632112138141" a="3.9213605570224219" b="-0.0025927735514943346" c="0.00014371725054358687" d="-3.2927276079032663e-06" /> - <width sOffset="631.68600639262536" a="3.9204215219016767" b="-0.0024878632735814612" c="0.00013775814795129513" d="-3.2713831045006056e-06" /> - <width sOffset="641.71276839885752" a="3.9060282380107716" b="-0.0007120018325222203" c="4.2725714117080487e-05" d="-3.1465773138398432e-06" /> - <width sOffset="651.73953040508968" a="3.9000127280182131" b="-0.00080423317676119857" c="-5.4728094145783531e-05" d="-2.2449689585924e-06" /> - <width sOffset="654.8891179481376" a="3.896866686999843" b="-0.0012157846380235415" c="-3.9486599411219479e-05" d="2.5706710995875631e-06" /> - <width sOffset="659.07957301373426" a="3.8912677751655913" b="-0.001411295991428789" c="-0.00061902892023857977" d="5.7869526002287168e-05" /> - <width sOffset="661.76629241132184" a="3.8841299030577967" b="-0.0034844232360929624" c="-0.00015573880536416896" d="5.8426226048310305e-05" /> - <width sOffset="667.17723862440675" a="3.8699721910390927" b="-3.7943289989458688e-05" c="-0.001412904646570101" d="7.2016943864661826e-05" /> - <width sOffset="667.30016511172983" a="3.8699463102866503" b="-0.00038204537310294504" c="0.003988675192964683" d="-0.00051422155016316268" /> - <width sOffset="671.793054417554" a="3.902108777913694" b="0.0043189944409813014" c="-0.0029418008453469956" d="-0.00051503054417478974" /> - <width sOffset="673.5767317539927" a="3.8975304327424269" b="-0.011091169059273077" c="-0.028136756492961025" d="0.03652321751734277" /> - <width sOffset="674.06138239795996" a="3.8897038750503565" b="-0.012627758926260791" c="6.3996551809822447e-05" d="6.0451936853091484e-05" /> - <width sOffset="681.81981642378616" a="3.8238158053055176" b="-0.0007183284303608256" c="0.0014658500147322058" d="6.3043193755908113e-05" /> - <width sOffset="681.8284502237708" a="3.8238097127102284" b="-0.00069300262040528624" c="-4.3494757481562454e-05" d="-6.9754143043137736e-06" /> - <width sOffset="683.46113122967517" a="3.8225319607524844" b="-0.00089081073143163349" c="-8.2549157840569037e-05" d="5.6593864125641839e-06" /> - <width sOffset="691.84657843001821" a="3.8125945477410976" b="-0.0010814023687264254" c="5.3558226453097733e-05" d="5.8481513148740012e-06" /> - <width sOffset="696.91319469922951" a="3.809250997319011" b="-8.8307738939932687e-05" c="0.0010688175244241097" d="-0.00011542561059899431" /> - <width sOffset="699.15074274076437" a="3.8131115072140238" b="0.0029610764377639913" c="0.00024361652378854172" d="-0.00011466710719468761" /> - <width sOffset="701.63491588320278" a="3.8202128590077908" b="0.0020485755596607708" c="-5.5335223742269881e-05" d="-8.176163710220813e-07" /> - <width sOffset="701.87334043625037" a="3.8206981330374572" b="0.0020220495723708366" c="-5.3412577117448763e-05" d="-3.5988943792367963e-07" /> - <width sOffset="711.90010244248253" a="3.8352400717574122" b="0.00084239368813380892" c="-6.7536702156730395e-05" d="3.0295565257260164e-08" /> - <width sOffset="715.55749266515522" a="3.8374191114334897" b="0.00034959328603620041" c="-8.6421880597040143e-05" d="2.1369429833768394e-06" /> - <width sOffset="721.9268644487147" a="3.8366919433006466" b="-0.00049123263064594397" c="-4.701439788524982e-05" d="2.0721558752975969e-06" /> - <width sOffset="731.95362645494686" a="3.8291286701230085" b="-0.00080905846980827158" c="1.2843180905097343e-05" d="2.2172925241763674e-06" /> - <width sOffset="739.19747686652579" a="3.8247847099245851" b="-0.00027394388225990968" c="-6.3089094761671375e-05" d="6.189695397094713e-06" /> - <width sOffset="739.70057793404351" a="3.824631708138436" b="-0.00033272422999808043" c="-8.6445718220134248e-05" d="5.3990470557472029e-06" /> - <width sOffset="741.98038846117902" a="3.8234878306543614" b="-0.0006426987218893091" c="-4.7861473811945273e-05" d="4.7056697669099136e-06" /> - <width sOffset="752.00715046741118" a="3.8169753954001542" b="-0.00018322290568606719" c="0.00010138195744519716" d="4.4337272797457015e-06" /> - <width sOffset="757.36395940618274" a="3.8195846351998668" b="0.0012846274060973072" c="0.00026801087323798827" d="-2.6230889818032914e-05" /> - <width sOffset="762.03391247364334" a="3.8287572180884739" b="0.0020716577411727705" c="-9.8734712596810939e-05" d="-2.5908628379360881e-05" /> - <width sOffset="764.08078610183975" a="3.8323617852635037" b="0.0013418152904299701" c="-0.00023472782488435017" d="8.9587133261451558e-06" /> - <width sOffset="772.0606744798755" a="3.8326745325461813" b="-0.00069295292802664418" c="-1.7644311735661626e-05" d="8.7409257976460963e-06" /> - <width sOffset="772.66641965003816" a="3.8322502482752858" b="-0.00070470699067642136" c="4.4851545543211545e-05" d="5.5267897255279278e-06" /> - <width sOffset="781.45828743592062" a="3.8332773652357912" b="0.0013655625137066266" c="0.00019113711452518301" d="-2.4953291157332381e-05" /> - <width sOffset="782.08743648610755" a="3.8342059508704183" b="0.0015764383083521978" c="0.00014285948370584497" d="-2.5008224562936096e-05" /> - <width sOffset="788.29373233267734" a="3.8435141349529696" b="0.0004598862551353786" c="-0.00020665341486949407" d="6.3039220683130929e-07" /> - <width sOffset="789.83724749020018" a="3.8437339553555248" b="-0.00017355348825838501" c="-0.00069988185406523213" d="0.00014679239526074547" /> - <width sOffset="792.11419849233971" a="3.8414431055190503" b="-0.0010776087632426647" c="0.00030402827000646534" d="0.00014756398055112448" /> - <width sOffset="793.67807358938842" a="3.8410658229807639" b="0.00095600975373565165" c="9.1928087656014288e-06" d="2.4369096016924608e-06" /> - <width sOffset="797.19259551196853" a="3.8446450769794951" b="0.0011109275400672006" c="-1.5639527517284653e-05" d="2.5120703098707302e-08" /> - <width sOffset="802.14096049857187" a="3.8497624413138842" b="0.00095799269974509082" c="-1.4994423006826601e-05" d="5.1624212618109051e-07" /> - <width sOffset="812.16772250480403" a="3.8583809253919648" b="0.00081300436548441789" c="1.8593643707520099e-06" d="5.9318321987634103e-07" /> - <width sOffset="812.50109060765601" a="3.8586521837306615" b="0.00081444184000420091" c="-4.2564475471877237e-05" d="-1.2995859122182062e-07" /> - <width sOffset="822.19448451103619" a="3.8624290834040922" b="-4.7380076827353477e-05" c="-4.6631420584436969e-05" d="-1.5316928784349229e-07" /> - <width sOffset="827.62917252131058" a="3.8607697031477115" b="-0.00056780646940498495" c="-4.4131454564148741e-05" d="2.6698087830316134e-06" /> - <width sOffset="832.22124651726836" a="3.8574902150318753" b="-0.0008042203557688583" c="-6.8365482184622325e-06" d="2.7204413139928747e-06" /> - <width sOffset="833.08903686587576" a="3.856788949841091" b="-0.00080993976955542283" c="-2.2951873132604057e-05" d="2.0147065531628848e-06" /> - <width sOffset="842.24800852350052" a="3.8489933083675183" b="-0.00072334925425879075" c="3.0030673390819308e-05" d="2.190584241437062e-06" /> - <width sOffset="845.78225064422293" a="3.8469086311067637" b="-0.00042899102098252592" c="8.9723906924307498e-05" d="-3.0728048392000085e-06" /> - <width sOffset="847.245664788353" a="3.8464633603580278" b="-0.00018612653304904208" c="3.684459861098078e-05" d="-2.2162562657259432e-06" /> - <width sOffset="852.27477052973268" a="3.8461772822297742" b="1.630420593047425e-05" c="1.386579109189283e-07" d="-2.621030688773554e-06" /> - <width sOffset="862.30153253596484" a="3.8437125704612654" b="-0.00077143869491781117" c="-7.8266720978974343e-05" d="-3.1938645725377878e-06" /> - <width sOffset="863.60475895244804" a="3.8425672137522024" b="-0.00099171058161693021" c="-0.00019850033460466887" d="9.4263203716420969e-06" /> - <width sOffset="872.32829454219689" a="3.8250678742446116" b="-0.0023029290381601274" c="4.5230679911446885e-05" d="1.0421085361427014e-05" /> - <width sOffset="874.24784015001205" a="3.8208876633098265" b="-0.0020140900087447355" c="0.00021266477590123052" d="2.1911964673925052e-06" /> - <width sOffset="882.34774784929573" a="3.8196907899316441" b="0.0018623234740640618" c="0.00010894073951665388" d="-9.1409289581369977e-06" /> - <width sOffset="882.35505654842905" a="3.81970440690933" b="0.0018639144392830923" c="0.00010844804924458205" d="-9.2148878659172249e-06" /> - <width sOffset="892.38181855466121" a="3.8400072930339446" b="0.0012593973067041974" c="-0.00016564769989114197" d="-9.7962432247944555e-06" /> - <width sOffset="896.19976164873788" a="3.841855815162031" b="-0.00043386006336624226" c="-0.00010040882587843874" d="3.152506170465944e-06" /> - <width sOffset="902.40858056089337" a="3.8360458945037408" b="-0.0013161185280586771" c="3.8313438248148895e-06" d="-2.1582130742275145e-05" /> - <width sOffset="902.67886346908904" a="3.8356900239132261" b="-0.0013187773430673637" c="-0.00028340028459394298" d="-4.0501584811026751e-06" /> - <width sOffset="903.47972287072298" a="3.8344500222291527" b="-0.001780497928433711" c="-0.00013177017321369441" d="1.0793829532876949e-05" /> - <width sOffset="912.43534256712553" a="3.8156890500233835" b="-0.0015435684955685041" c="0.00016402858852986558" d="1.1067738563868057e-05" /> - <width sOffset="919.66169841696342" a="3.8172768262667125" b="0.0025609685955114677" c="5.6827358048752522e-05" d="-3.435409047965577e-06" /> - <width sOffset="922.39590372254679" a="3.8246336528431475" b="0.0027946758197696323" c="0.0005826160879423679" d="-5.1083326688807793e-05" /> - <width sOffset="922.46210457335769" a="3.8248212012850957" b="0.0028711435550906944" c="0.00056827176602685086" d="-5.1914827200728899e-05" /> - <width sOffset="931.89810338521079" a="3.8588942066856546" b="-0.00027162163898312172" c="-0.0015969666993528658" d="0.00022302544996758496" /> - <width sOffset="932.48886657958985" a="3.8582223821271042" b="-0.0019249715194549187" c="-0.0012004290196446674" d="0.0002228674415320438" /> - <width sOffset="936.69097448542834" a="3.8454732919937844" b="-0.0002076495442467721" c="0.0064056762421698683" d="-0.0013110324386056676" /> - <width sOffset="939.12282801590959" a="3.8639959589269579" b="0.0076876934098203866" c="0.0039807883784440477" d="-0.0019822044180864435" /> - <width sOffset="941.12760676399034" a="3.879435843830219" b="-0.00025136498993446536" c="-0.00021601078478577086" d="1.3555955116816271e-05" /> - <width sOffset="942.51562858582201" a="3.8787070272897011" b="-0.00077266946044765843" c="-0.00016934982376949368" d="7.2314754193514696e-06" /> - <width sOffset="952.54239059205418" a="3.8612235975849809" b="-0.0019876603270397599" c="4.850211435178379e-05" d="7.2841289027092167e-06" /> - <width sOffset="954.12047031496149" a="3.8582363239182502" b="-0.0017801601438632952" c="-0.0064826549857876416" d="0.0014306717054103353" /> - <width sOffset="957.0143481497023" a="3.8334677099358712" b="-0.003356578564876353" c="0.0086108883455272879" d="0.0011397692160513354" /> - <width sOffset="957.2153418206874" a="3.8331501802169368" b="0.00024302430194976608" c="0.0027209483829963173" d="-0.0002829960523330907" /> - <width sOffset="962.56915259828634" a="3.869014658379736" b="0.0050431162415225132" c="-0.0018214235631169844" d="-0.00028287918475647345" /> - <width sOffset="962.94077615970718" a="3.8706227350571174" b="0.0035721481173748059" c="-0.00086525658796440482" d="9.1753402269760431e-05" /> - <width sOffset="967.7718825265124" a="3.8780311795652658" b="0.0016363149152484439" c="4.1533374433424909e-05" d="-2.1115015282997316e-06" /> - <width sOffset="972.59591460451838" a="3.8866543100437765" b="0.0018896195117665904" c="1.0002735581708029e-06" d="-2.6408281390595378e-06" /> - <width sOffset="979.24453123946023" a="3.8984857527741354" b="0.001552714064154337" c="0.00010868402367176536" d="-1.3975281682913844e-05" /> - <width sOffset="982.62267661075055" a="3.9044325738487111" b="0.0018085627952515227" c="-3.3957505060245823e-05" d="-1.4916385905893127e-05" /> - <width sOffset="988.76477396131827" a="3.9108035654688651" b="-0.00029675588697623638" c="-0.00077447168371228036" d="7.4047885508331284e-05" /> - <width sOffset="990.94995388994357" a="3.9072296242119653" b="-0.0026207373693725605" c="-0.00026566771238594101" d="7.4923608635099677e-05" /> - <width sOffset="992.64943861698271" a="3.9023761718262207" b="-0.0028745398444827118" c="0.00012402403253432384" d="7.2593365420883034e-05" /> - <width sOffset="995.64331430517791" a="3.8968298620203186" b="-0.00017988825757339846" c="2.6596189199131291e-05" d="-1.8887533871239809e-06" /> - <width sOffset="1002.6762006232149" a="3.8962231993449392" b="-8.6053977407972752e-05" c="-1.1684047490044575e-05" d="-1.6473165703239072e-06" /> - <width sOffset="1006.8413900846544" a="3.8955430271549467" b="-0.00026912343355842697" c="-0.00010165626761709426" d="1.3584576915244346e-05" /> - <width sOffset="1010.6543644238536" a="3.8937919831704995" b="-0.00045183966033847574" c="-3.210512587709002e-05" d="1.234633979881015e-06" /> - <width sOffset="1012.702962629447" a="3.8927422226392974" b="-0.0005678362993294209" c="-2.5682807644632585e-05" d="1.4924809192748633e-06" /> - <width sOffset="1016.644511174979" a="3.8901964574719239" b="-0.00070073568826327273" c="4.0772068649453608e-06" d="1.5899811786454422e-06" /> - <width sOffset="1022.7297246356792" a="3.8864415868948763" b="-0.00047448417587109612" c="3.0900314074662476e-05" d="1.3821275215942879e-06" /> - <width sOffset="1029.7515106299054" a="3.8851119251774513" b="0.00016390598590488486" c="6.4622152445829945e-06" d="-4.2659448926905513e-07" /> - <width sOffset="1032.7564866419114" a="3.8856512363066069" b="0.00019118729728860551" c="2.0331974665316404e-06" d="-2.4014653571515777e-07" /> - <width sOffset="1038.2464506349065" a="3.8867223915947187" b="0.00019179782207902969" c="-4.5527819983680334e-05" d="1.2057451668732707e-06" /> - <width sOffset="1042.7832486481434" a="3.8867680526174828" b="-0.00014685134373593732" c="-2.7719454751582511e-05" d="9.890574937689787e-07" /> - <width sOffset="1048.6492342216427" a="3.8851524428240718" b="-0.00036995541476424215" c="-3.0769225077113499e-05" d="8.1696405098352151e-08" /> - <width sOffset="1052.8100106543757" a="3.8830863470902419" b="-0.00062176014854456051" c="-2.9877174780038243e-05" d="5.5566909028066705e-07" /> - <width sOffset="1062.8367726606077" a="3.8744085180029035" b="-0.00105330862023845" c="-1.5277107297667055e-05" d="4.2779933189480636e-07" /> - <width sOffset="1072.86353466684" a="3.8627425877189077" b="-0.0012306408134258617" c="-1.5401851749698323e-06" d="2.775129271523082e-07" /> - <width sOffset="1078.0072727495419" a="3.8564095110496748" b="-0.0012244580861054523" c="-2.3130886552383267e-05" d="3.6515764107316108e-07" /> - <width sOffset="1081.5347414896059" a="3.8518184826323623" b="-0.0013740140358870928" c="3.4212387126741027e-05" d="1.2924714309232154e-07" /> - <width sOffset="1082.890296673072" a="3.8500191190048683" b="-0.0012805479920164151" c="3.4877604803690675e-05" d="-6.3597492919573612e-07" /> - <width sOffset="1092.9170586793043" a="3.8400447278092429" b="-0.00077294414971351222" c="1.5822067839380931e-05" d="-6.2346616457320659e-07" /> - <width sOffset="1099.0183955320665" a="3.8357761243721655" b="-0.0006495006552749618" c="-3.3869409195802863e-05" d="3.3573638964540572e-06" /> - <width sOffset="1102.9438206855364" a="3.8329077416638726" b="-0.00076020383235137629" c="6.1764174675598852e-06" d="3.2026018419645641e-06" /> - <width sOffset="1105.6501205294148" a="3.830959117685202" b="-0.00065640522405252446" c="8.4785099969851945e-05" d="-2.8194555259672466e-06" /> - <width sOffset="1112.9705826917684" a="3.82959142564621" b="0.00013165019554867239" c="2.5549539564331117e-05" d="-3.0131757447647165e-06" /> - <width sOffset="1117.8755322013603" a="3.8304962751290108" b="0.00016481086429618588" c="-3.0478034095262843e-06" d="8.6978480298118222e-06" /> - <width sOffset="1120.7349287708746" a="3.8311459611538732" b="0.00036072580474372229" c="0.00011007293086285345" d="-5.5605021877727058e-07" /> - <width sOffset="1122.9973446980007" a="3.8325190449075137" b="0.0008502488363853599" c="0.00011338427247984745" d="-2.255910882845411e-06" /> - <width sOffset="1127.0135448196359" a="3.8376165475961979" b="0.0016518340909728322" c="3.7729938325598784e-06" d="-5.6449947840308539e-06" /> - <width sOffset="1133.0241067042327" a="3.8464555356534982" b="0.0010853820067792293" c="-9.4966675876648714e-05" d="-5.4082222920478854e-06" /> - <width sOffset="1134.7597493431124" a="3.8480250109322642" b="0.00070684949807433596" c="0.00011630125649948281" d="-5.9921271370011099e-06" /> - <width sOffset="1143.050868710465" a="3.858465207821367" b="0.0013996404165900755" c="-3.2782836135698092e-05" d="-6.1206150017889883e-06" /> - <width sOffset="1144.8561227294983" a="3.8608490680306224" b="0.0012214375339838941" c="7.7750816694081956e-05" d="-2.811393893381836e-05" /> - <width sOffset="1151.6255384790916" a="3.8639592366856172" b="-0.0015908701368705178" c="-0.00078531465971380405" d="8.5212748416170207e-05" /> - <width sOffset="1153.0776307166971" a="3.8602541619841677" b="-0.003332537167830964" c="-0.0004167287968447602" d="8.4828139819307169e-05" /> - <width sOffset="1153.8284820225281" a="3.8575528885764014" b="-0.0038148672539293242" c="-0.00011746926114963377" d="0.00011427029134125634" /> - <width sOffset="1155.7040244754064" a="3.8507386267277357" b="-0.0030496125011595697" c="0.00032560224668951206" d="-2.1433653093053104e-05" /> - <width sOffset="1161.5521406333032" a="3.839752977998935" b="-0.0014404155340647894" c="-0.00012905341786629746" d="-2.4050264622452099e-05" /> - <roadMark sOffset="0" color="standard" width="0.16109079863826911" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16109100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="411.22596957555913" color="standard" width="0.16109079863826911" weight="standard" type="solid"> - <type name="solid"> - <line length="255.95126904884762" space="0" width="0.16109100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="667.17723862440675" color="standard" width="0.16109079863826911" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16109100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="1049.0924972572845" max="100" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="47.158021339937434" color="standard" width="0.16677984138680607" weight="standard" type="solid"> - <type name="solid"> - <line length="531.57395967680372" space="0" width="0.16678000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="578.7319810167412" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="88.568184094988624" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="667.30016511172983" color="standard" width="0.16677984138680607" weight="standard" type="solid"> - <type name="solid"> - <line length="495.80422761119951" space="0" width="0.16678000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929956709256444" b="0.0017373860741385094" c="-0.00040952840643827901" d="2.4068523157414552e-05" /> - <width sOffset="8.4487708896537228" a="2.4929570364361968" b="-2.8478851693523183e-05" c="0.0030125925280057777" d="0.00013793395249698921" /> - <width sOffset="8.7126934247653427" a="2.4931618983888928" b="0.0015905266744519371" c="-0.00036068020851673919" d="1.7811884665777493e-05" /> - <width sOffset="10.026762006232149" a="2.4946695624968696" b="0.00073488103203628655" c="-0.00028992654291318666" d="1.7384847840387003e-05" /> - <width sOffset="20.053524012464297" a="2.4904147951797873" b="0.00016423905171033051" c="0.00023053219316433986" d="1.8033422272011949e-05" /> - <width sOffset="22.576780707249679" a="2.4925866797590421" b="0.0016720697472255835" c="-0.0017331551478304177" d="4.721372798709477e-05" /> - <width sOffset="23.075199960311156" a="2.4929953639935762" b="-2.0419290168176632e-05" c="-0.00066952519758414265" d="0.00015149711570808507" /> - <width sOffset="27.088659857403332" a="2.4919228172524264" b="0.0019262387963844656" c="-0.00020260192771762186" d="1.999856636503046e-06" /> - <width sOffset="30.080286018696448" a="2.4959256966428569" b="0.00076771545510514929" c="-0.00017844843324776687" d="6.507133237414771e-06" /> - <width sOffset="40.107048024928595" a="2.4922424292650653" b="-0.0008482018970523697" c="1.4919171361756447e-05" d="1.0360739312185374e-05" /> - <width sOffset="42.6365533705969" a="2.4903600431059791" b="-0.00057384927049728557" c="0.00076328602325095711" d="-0.00011525751082739288" /> - <width sOffset="46.63566622876462" a="2.4929007411457915" b="1.1778319680966209e-06" c="-0.0043104759854947789" d="0.00016435874933805927" /> - <width sOffset="47.158021339937434" a="2.4917486476425772" b="-0.0043674822415611624" c="0.0016249887281354772" d="-0.00014456960624191999" /> - <width sOffset="50.133810031160742" a="2.4893321017595271" b="0.0014631342651060669" c="0.00033737486526001933" d="-0.00013978835203637944" /> - <width sOffset="53.160198763325376" a="2.4929753781295556" b="-0.00033578736249156166" c="0.0022398342626655005" d="-0.00063168873989492532" /> - <width sOffset="56.132889299959245" a="2.4951763090344672" b="-0.0037656090113821865" c="0.0008889227592831046" d="-6.2592940097010478e-05" /> - <width sOffset="60.160572037392896" a="2.4903402416987186" b="0.00034879781340777438" c="9.5758694064451352e-05" d="-5.9392600696261927e-05" /> - <width sOffset="60.281374322502877" a="2.4903836699939559" b="0.00036933336864047807" c="0.00070422330481177144" d="-0.00018574852140740617" /> - <width sOffset="63.03892387500661" a="2.4928622037819324" b="1.5855096131668547e-05" c="-0.00095791563143704809" d="0.00032236703109509324" /> - <width sOffset="66.122001300770975" a="2.4932529646910258" b="0.0033018492283299217" c="-0.0030581307309910095" d="0.0006859221108524256" /> - <width sOffset="68.379861691555917" a="2.49301318515273" b="-1.7459253338882041e-05" c="-0.0011797606793356097" d="0.00028184595167376613" /> - <width sOffset="70.187334043625043" a="2.490791682962687" b="-0.0015198936479513918" c="0.00034754078421482407" d="0.00028085328431153147" /> - <width sOffset="72.509500502303979" a="2.4926532318682604" b="0.0046376692852600696" c="-0.0015156845893625019" d="0.00012458034114973433" /> - <width sOffset="78.536262011443796" a="2.4928219133321301" b="-5.670280588553761e-05" c="-0.00040662358566707023" d="0.00033820559763187243" /> - <width sOffset="79.723548572694199" a="2.4927474345919265" b="0.00040799368816318501" c="-0.00070854676582077821" d="0.00013101663885391776" /> - <width sOffset="80.21409604985719" a="2.4927925381210132" b="-0.00019257568377361797" c="-0.00045815370595036445" d="0.00013687455437874982" /> - <width sOffset="83.239019431268048" a="2.491806318514203" b="0.00079293741980057154" c="0.0021528304801651226" d="-0.00079062136976596256" /> - <width sOffset="84.765729871503567" a="2.4952213720699037" b="0.0018379879097184595" c="-0.003316589314589267" d="0.00092251905367817422" /> - <width sOffset="86.778990210723691" a="2.4930067862420584" b="-0.00029881727833567726" c="-0.0023991730864153901" d="0.00097110073159767016" /> - <width sOffset="88.84936070033379" a="2.4907222664067614" b="0.0022545058823817236" c="0.0023745003713603508" d="-0.0011993326323552188" /> - <width sOffset="90.240858056089337" a="2.4952256962060071" b="0.0018960508521120023" c="-0.0024817807130343749" d="-0.0011952377736899806" /> - <width sOffset="90.4299398479112" a="2.4954873966104856" b="0.00082933561370741003" c="-0.0010956116180286467" d="0.00019516351235215676" /> - <width sOffset="93.708959057375324" a="2.4933074905789976" b="-6.0552550337221282e-05" c="2.4466843388753667e-05" d="-2.0649014591883698e-06" /> - <width sOffset="100.26762006232148" a="2.4933802478358817" b="-6.0847022677987684e-06" c="1.0090077417499501e-05" d="-1.2523404188667448e-06" /> - <width sOffset="105.3182754489775" a="2.4934455563443567" b="0" c="1.1312374096292873e-05" d="-1.4502981702518028e-06" /> - <width sOffset="110.29438206855363" a="2.493546968514802" b="4.8478883572303233e-06" c="3.3986500124449188e-05" d="-4.6628139996212378e-06" /> - <width sOffset="116.13637225331867" a="2.4938055362394893" b="-7.5463940543959995e-05" c="0.0010129059971293558" d="-0.00024824432100029785" /> - <width sOffset="119.78332601555144" a="2.4949610387773848" b="-0.002592572051031139" c="0.0017686809878159804" d="-0.00029831444195175811" /> - <width sOffset="120.78561780561331" a="2.4938389520956923" b="5.3846744811045927e-05" c="-2.0550037501558321e-05" d="1.253518705490313e-06" /> - <width sOffset="130.34790608101792" a="2.4935708236162455" b="4.6912918629134215e-06" c="-0.00018305349177534405" d="8.3973242552355659e-05" /> - <width sOffset="132.31196549998035" a="2.4935101196642879" b="0.00025742317865657532" c="0.0010807191219595366" d="-0.0003013221132361851" /> - <width sOffset="134.586168030762" a="2.4961408267061502" b="0.00049766016952154397" c="-0.00080818764442251939" d="0.00011967151025884325" /> - <width sOffset="138.8359414530816" a="2.4928446258657182" b="0.00011243997729800878" c="-0.00074321946314187288" d="0.00031158919154686504" /> - <width sOffset="140.37466808725009" a="2.4923931200542064" b="3.844697971328026e-05" c="0.00063314032505557352" d="0.00027405448004880017" /> - <width sOffset="141.55979480021796" a="2.4937841209947047" b="0.0026938993778984135" c="-0.00070343987964516556" d="4.0462866458149146e-05" /> - <width sOffset="150.40143009348222" a="2.4905790764622564" b="-0.0002557235139764788" c="0.00035602443719057831" d="4.8640487400046235e-05" /> - <width sOffset="151.86761037256127" a="2.491122786255926" b="0.0011019536250490916" c="-0.00018779308373236887" d="9.7877066401287743e-06" /> - <width sOffset="160.08411698612971" a="2.4929281843569244" b="-1.7195748753078e-06" c="4.0139516276164604e-06" d="-2.4434813251532472e-08" /> - <width sOffset="160.42819209971438" a="2.4929280669011034" b="1.0339485049283559e-06" c="9.3323939494214224e-07" d="-5.4848378882017774e-08" /> - <width sOffset="170.45495410594654" a="2.4929769682575289" b="3.2059844478418698e-06" c="1.129616250317969e-06" d="-8.9000941767030092e-08" /> - <width sOffset="180.48171611217867" a="2.4930329635417063" b="-9.8461333589844324e-07" c="-2.5130095488708031e-06" d="1.1913012737133565e-06" /> - <width sOffset="182.24378873594071" a="2.4930299436180814" b="1.2557897319483754e-06" c="0.00057383336143140428" d="1.2742876047126351e-05" /> - <width sOffset="182.95097501275259" a="2.4933223196989172" b="0.00083198855861187386" c="-7.4038925968302033e-05" d="1.4870715068100764e-06" /> - <width sOffset="190.50847811841084" a="2.496023178619275" b="-3.2304193670444408e-05" c="-4.3946360241150138e-05" d="1.5611187470728212e-06" /> - <width sOffset="200.53524012464297" a="2.4928547687238032" b="-0.00044273788548394822" c="-1.8066624239792965e-06" d="1.5781475158199498e-06" /> - <width sOffset="210.56200213087513" a="2.4898247585528317" b="-2.986124589038049e-06" c="4.3457027770411676e-05" d="1.3917101445211473e-06" /> - <width sOffset="217.51609425600103" a="2.4923735745806894" b="0.00080332901596244077" c="-0.00035425914141753838" d="1.6272271789481718e-05" /> - <width sOffset="218.7660262561819" a="2.4928559881325558" b="-6.0026830673270536e-06" c="9.1055517008159742e-06" d="-2.7918047470223969e-06" /> - <width sOffset="220.58876413710726" a="2.4928583922019953" b="-6.3486838585173275e-07" c="1.6087783298065865e-06" d="-1.0868393936116446e-07" /> - <width sOffset="230.61552614333942" a="2.4929042077389729" b="-1.153124862229328e-06" c="1.1780767436833936e-06" d="-1.2621052465715379e-07" /> - <width sOffset="238.51498334926384" a="2.49290639845972" b="-6.1679406619455368e-06" c="0.00017230168528372818" d="1.2924840651174611e-05" /> - <width sOffset="240.10054032772359" a="2.4933813031081113" b="0.00063769913492417972" c="6.4285732444644593e-05" d="-1.4192520023141822e-05" /> - <width sOffset="240.64228814957158" a="2.4937433859086537" b="0.00069485632796653434" c="3.2434068475443206e-05" d="-1.3005897942786909e-05" /> - <width sOffset="247.64391596336876" a="2.4957343840134891" b="-0.00076371741067147916" c="-0.0007565638561021651" d="0.00015927043190905871" /> - <width sOffset="250.66905015580372" a="2.490909684324321" b="-0.00096847187591465357" c="0.00067673415199207183" d="0.00015870016491490924" /> - <width sOffset="251.65798670980072" a="2.4907672609578713" b="0.00083564654970810326" c="-5.2398565601287413e-05" d="9.162814314635769e-07" /> - <width sOffset="260.69581216203585" a="2.4947160805284794" b="0.00011304026381430245" c="-2.7009778363637533e-05" d="8.087018065817531e-07" /> - <width sOffset="270.72257416826801" a="2.4939492663956369" b="-0.00018469014664110263" c="2.657863205440014e-07" d="7.2949580015468513e-07" /> - <width sOffset="279.66282296364483" a="2.4928406149739573" b="-5.0162278402219977e-06" c="4.1704009926476239e-05" d="-2.0937237366942114e-05" /> - <width sOffset="280.74933617450017" a="2.4928575418629757" b="1.1457773245015851e-05" c="6.0879711138756268e-06" d="-2.4434010979167643e-07" /> - <width sOffset="290.77609818073233" a="2.4933381791525981" b="5.9848148341149518e-05" c="2.1832147948000233e-06" d="-3.2684025282337182e-07" /> - <width sOffset="300.80286018696444" a="2.4938282825279048" b="5.0517064990772886e-06" c="-5.2674025648928169e-06" d="-1.7359784389208542e-07" /> - <width sOffset="310.8296221931966" a="2.4931743761073202" b="-0.00015293675307645195" c="-1.0375062996106431e-05" d="-3.3150188190355632e-07" /> - <width sOffset="312.79037128404138" a="2.492832119275886" b="-0.00019744595749951962" c="1.1867316383266106e-05" d="-1.7750689934182547e-07" /> - <width sOffset="320.85638419942876" a="2.4919184599781596" b="-4.0648200205109009e-05" c="7.3595203678020118e-06" d="-1.5815591738721534e-07" /> - <width sOffset="330.88314620566092" a="2.4920913574775545" b="5.923504900032326e-05" c="1.9035831716987216e-06" d="-1.3753088912049593e-07" /> - <width sOffset="340.90990821189308" a="2.4927380337434064" b="5.5928201455486201e-05" c="-4.3099730287885667e-06" d="3.8203166378595677e-08" /> - <width sOffset="347.29880351130538" a="2.4929293914516197" b="5.5343972113061288e-06" c="7.3204389671395302e-05" d="-3.9853569244423181e-06" /> - <width sOffset="350.93667021812519" a="2.4937264469558391" b="0.00037992249369412203" c="2.5157100532189219e-05" d="-4.7982859511892304e-06" /> - <width sOffset="360.96343222435735" a="2.4952281198740041" b="-0.00056278978723675469" c="-0.00011954854875106095" d="-4.6604183845066181e-06" /> - <width sOffset="365.7128737348321" a="2.4893592131905757" b="-0.002013745361256738" c="0.0025673341708533676" d="-0.00050000564582908453" /> - <width sOffset="368.71372382235074" a="2.492923737391644" b="-0.00011317981409374872" c="-0.00088905197193304075" d="-0.00052904159798157848" /> - <width sOffset="368.87711231845924" a="2.4928792035911931" b="-0.00044607111054301325" c="6.4674248463690511e-05" d="-2.8845703198772431e-06" /> - <width sOffset="370.99019423058951" a="2.4921981803982627" b="-0.00021138695738716264" c="4.8074459117704521e-05" d="-2.2607682318157089e-06" /> - <width sOffset="381.01695623682167" a="2.4926328977493437" b="7.0809874240429418e-05" c="-1.7786694296960956e-05" d="-2.123945357036393e-06" /> - <width sOffset="384.14440905081938" a="2.4926154109102603" b="-0.00010276690079174308" c="0.0005513721798400754" d="-0.0002259568090110089" /> - <width sOffset="385.64488705152053" a="2.4929392561224306" b="2.5696067973236814e-05" c="0.00095854820090981519" d="-0.00020707203751533685" /> - <width sOffset="388.50413623799659" a="2.4960087944500744" b="0.00042852063876249423" c="-0.00024391119617145801" d="1.6908694781425621e-05" /> - <width sOffset="391.04371824305377" a="2.4958009052529437" b="-0.00048318762836935952" c="-0.00011502497600629122" d="1.5897066647211621e-05" /> - <width sOffset="399.04027781926641" a="2.4927106001755446" b="0.00072681633859946913" c="-0.00080116723033953616" d="0.00026999187071787201" /> - <width sOffset="400.0406617200897" a="2.4929062159940196" b="-6.5535627461897356e-05" c="-0.00097045141377808861" d="0.00034961271174004533" /> - <width sOffset="401.07048024928594" a="2.4921913663978383" b="-0.00095199299746550909" c="0.00010107756099275147" d="0.00034002238361396724" /> - <width sOffset="401.73852303557572" a="2.4917018758984701" b="-0.00036170797075077334" c="0.00086647414132911714" d="-0.00013638717533192581" /> - <width sOffset="406.12874200168721" a="2.4952736427731059" b="-0.00063987403991876829" c="-0.00025591731938701129" d="7.222366068679625e-05" /> - <width sOffset="409.38000791344427" a="2.4929702103564608" b="-1.3614096952337985e-05" c="-0.00017320628817218319" d="1.3868513489897328e-05" /> - <width sOffset="411.0972422555181" a="2.4925062941583187" b="-0.0004857953498398947" c="-9.4576235046535319e-05" d="1.8114588167084945e-05" /> - <width sOffset="417.59222825557947" a="2.4903245919109471" b="0.00057814518620460855" c="0.00030296898858367041" d="-7.2293582230099779e-05" /> - <width sOffset="420.38398828072013" a="2.4927269327055717" b="0.00057942654357024705" c="-6.320094351624581e-05" d="4.1432469970687093e-07" /> - <width sOffset="421.12400426175026" a="2.4931212751813234" b="0.00048656780915177708" c="-6.1871993801263902e-05" d="4.1320978531712188e-07" /> - <width sOffset="429.26139011333566" a="2.4932063357197496" b="-0.00043830016760216563" c="0.00025204745688676001" d="-4.5301317898823997e-05" /> - <width sOffset="430.7620597403411" a="2.4929631083945978" b="1.2122786997231967e-05" c="0.00024932524864158562" d="-5.3512365435800454e-05" /> - <width sOffset="431.15076626798242" a="2.4930023490211157" b="0.00018169549659469457" c="0.00019919643275577719" d="-5.580769869489847e-05" /> - <width sOffset="434.91027168392247" a="2.4935354325791934" b="-0.00068688247994833464" c="2.7332911440907911e-05" d="7.0306363115297414e-07" /> - <width sOffset="441.17752827421452" a="2.4904772318319406" b="-0.00026143187581862889" c="4.2547028635458355e-05" d="1.3009166746242224e-06" /> - <width sOffset="448.89600792388069" a="2.4915923091343668" b="0.00062787092560747087" c="-0.00020791609410135574" d="1.3758276856286099e-05" /> - <width sOffset="451.20429028044668" a="2.4921030126278767" b="-0.00011206796947840682" c="-0.00011734922279851089" d="1.0976754572018897e-05" /> - <width sOffset="459.67905774274959" a="2.489406287794659" b="0.000264024259829773" c="0.00020616684670462859" d="-2.5754038174797576e-05" /> - <width sOffset="461.23105228667885" a="2.4902163678949254" b="0.00071786364645878148" c="8.8551821284383518e-05" d="-2.5410655601489186e-05" /> - <width sOffset="465.68224358736438" a="2.4929251883492478" b="-4.2060464816333007e-06" c="0.00038501615031057433" d="-4.3388999843244499e-05" /> - <width sOffset="470.54416001372101" a="2.4970192675815746" b="0.00066270899742258953" c="-0.00055881001433044229" d="4.8708268813669405e-05" /> - <width sOffset="471.25781429291101" a="2.4972253131878732" b="-6.0463599503060225e-05" c="-0.00043763401962578272" d="4.8820464846733842e-05" /> - <width sOffset="477.76276746240308" a="2.4917517661608244" b="0.00044338713244851998" c="0.00078809804663233286" d="-0.00034800977453911723" /> - <width sOffset="479.51377986864156" a="2.4930761324047017" b="2.2857364389283763e-06" c="0.0002328267693739607" d="-0.0003639873222452605" /> - <width sOffset="480.23995041391709" a="2.4930611867628416" b="-0.00023538776120309458" c="-0.00019499690664975507" d="2.9398087656065686e-05" /> - <width sOffset="481.28457629914317" a="2.4926360176417512" b="-0.00054654400037829586" c="-0.00010140330649527015" d="2.395697819811848e-05" /> - <width sOffset="487.81897086248534" a="2.4914191129122116" b="0.0011970051815672969" c="-0.00016786497584740846" d="-1.923627974173923e-05" /> - <width sOffset="490.32044185560073" a="2.4930618978077499" b="-3.9183706732233425e-06" c="-0.00017777473932086073" d="1.3680041138919475e-05" /> - <width sOffset="491.31133830537527" a="2.4928967722195399" b="-0.00031593478382471729" c="-0.00012787967481591459" d="1.267621130412815e-05" /> - <width sOffset="499.29876333649361" a="2.4886743396374724" b="6.7393826628561401e-05" c="0.00015969151231593205" d="-2.3227790382341576e-05" /> - <width sOffset="501.33810031160743" a="2.4892789147148742" b="0.00042891759336582437" c="2.6180128935055537e-05" d="-1.7451994439504527e-05" /> - <width sOffset="503.29165397539748" a="2.4900866282360905" b="0.00033139626252432289" c="0.00013148538513642246" d="-9.8463436534703065e-06" /> - <width sOffset="511.3648623178396" a="2.4961508433367099" b="0.00052915772824421378" c="-0.000105287576223614" d="-1.1131652853611641e-05" /> - <width sOffset="514.09203579883285" a="2.4965850880352178" b="-0.00029349141921546085" c="-0.0002146241973857934" d="2.6899933644874447e-05" /> - <width sOffset="520.08798603780474" a="2.492907911854636" b="3.4028943838047832e-05" c="-0.00013528627460661683" d="5.5400164721259031e-05" /> - <width sOffset="520.52664069971627" a="2.492901483358648" b="-5.2679014129430185e-05" c="7.5091661509613257e-05" d="-1.7191790346953551e-06" /> - <width sOffset="521.3916243240717" a="2.4929109875905757" b="7.3368248849238829e-05" c="6.4426512557678073e-05" d="-7.7850045987878092e-06" /> - <width sOffset="529.48558299573847" a="2.4935975273444386" b="-0.00041373825476329062" c="-8.0864349295989367e-05" d="6.4068888617934767e-05" /> - <width sOffset="531.41838633030386" a="2.4929583702510403" b="-8.2960589483857539e-06" c="0.00028957967485604213" d="5.9739789993231861e-05" /> - <width sOffset="531.48371893836679" a="2.4929590809343676" b="3.0306902844865619e-05" c="-0.00023045235919986592" d="3.3784129820330125e-05" /> - <width sOffset="536.15446040628308" a="2.4915155985843116" b="8.8626200844280079e-05" c="-1.4448996554531836e-05" d="4.0722740892629803e-06" /> - <width sOffset="541.44514833653602" a="2.4921831227529614" b="0.00027770163702290143" c="4.3116676562979941e-05" d="3.7396021615323376e-06" /> - <width sOffset="541.83340863353988" a="2.4922976618161554" b="0.00031287381518687804" c="2.8488351605601414e-05" d="-1.7940955729096852e-06" /> - <width sOffset="549.32053979892714" a="2.4954841697613706" b="0.00043775030259296521" c="-1.2273137545646004e-05" d="-1.7567893000450943e-06" /> - <width sOffset="551.47191034276818" a="2.4963516348950945" b="0.00036054882381619802" c="-2.5294211332044358e-05" d="-1.3624761685057206e-06" /> - <width sOffset="556.76845063646829" a="2.4973492647863464" b="-2.2060813061525186e-05" c="-0.00010941747532917047" d="1.0576680888276972e-05" /> - <width sOffset="561.49867234900034" a="2.4959161186603165" b="-0.00034723902442243548" c="4.2766044919818621e-05" d="1.1014161572281487e-05" /> - <width sOffset="561.75736076911846" a="2.4958293445065411" b="-0.00032290167012544169" c="-5.4707450068768959e-05" d="9.4180140342364181e-06" /> - <width sOffset="565.94306970271589" a="2.4942099522084566" b="-0.00028586527724808533" c="-4.7403810336781732e-06" d="2.7461120381398491e-06" /> - <width sOffset="572.43733547475495" a="2.492905696107715" b="1.9979422354390874e-08" c="0.0019646012874577675" d="-0.00030472502489693471" /> - <width sOffset="572.51020239036438" a="2.4929160108897168" b="0.00028147495935394902" c="-0.00035833144218662622" d="4.9407812414091847e-05" /> - <width sOffset="578.7319810167412" a="2.4926958757764819" b="0.0015603648497466969" c="-0.003010896677679579" d="-0.00033400498771689015" /> - <width sOffset="578.98179914190428" a="2.4928925684128993" b="-6.5231240991819178e-06" c="1.3036520928303547e-05" d="-2.8755145680111886e-06" /> - <width sOffset="581.55219636146467" a="2.4929130996032445" b="3.4998774326305826e-06" c="1.0206938346605295e-06" d="-6.5946143471133135e-08" /> - <width sOffset="591.57895836769683" a="2.4929843314551068" b="4.0785099553221349e-06" c="-2.9546437321412676e-07" d="-1.6891486347634635e-09" /> - <width sOffset="596.21919370270416" a="2.4929967260589248" b="1.227350354337034e-06" c="-0.00054483322281197177" d="-2.7341845767834563e-05" /> - <width sOffset="596.30066752878315" a="2.4929931946743871" b="-8.8096428351131656e-05" c="-4.1571272870406316e-05" d="3.5409399394842563e-06" /> - <width sOffset="601.60572037392888" a="2.4918845474832887" b="-0.00023020778735705939" c="1.4463900156488008e-05" d="3.6154655817626785e-06" /> - <width sOffset="605.50633588358392" a="2.4914212281469394" b="4.7654211091997453e-05" c="0.00021872457541449643" d="-2.005408899709107e-05" /> - <width sOffset="611.63248238016104" a="2.4953111451963803" b="0.00046966171324272412" c="-0.0001451206909755643" d="-2.4689358104790599e-05" /> - <width sOffset="613.30054561141583" a="2.4955761915894312" b="-0.0002205688623456532" c="-0.00021667446076249687" d="3.3529632755698624e-05" /> - <width sOffset="617.87863353568548" a="2.4932423751080703" b="-9.6246769303424268e-05" c="-5.9326895714621351e-05" d="1.9285198516982572e-05" /> - <width sOffset="620.62712190568118" a="2.4929300862777968" b="1.4686729055346341e-05" c="-0.0002659400198516147" d="3.564505402915798e-05" /> - <width sOffset="621.6592443863932" a="2.4927011366432792" b="-0.00042036306807297259" c="-0.00016333226876104643" d="2.564961613438675e-05" /> - <width sOffset="627.6516880633269" a="2.4898363851521532" b="0.00038530362141803252" c="0.00037523047238821649" d="-6.4958859123140044e-05" /> - <width sOffset="631.31632112138141" a="2.4930906464200477" b="0.00051836570423036826" c="-0.00015625064953297003" d="1.0312548084825018e-05" /> - <width sOffset="631.68600639262536" a="2.4932614452769224" b="0.00040706673791814692" c="-0.00013071665236818002" d="9.6771799543461182e-06" /> - <width sOffset="638.56296465690218" a="2.4930262006272486" b="-1.7823492851008413e-05" c="-4.2513232120138788e-05" d="-1.2634392534525058e-07" /> - <width sOffset="641.71276839885752" a="2.492544326888007" b="-0.00028940064224682992" c="-3.2360266976578034e-05" d="2.7476743373711185e-06" /> - <width sOffset="651.73953040508968" a="2.4891589985464737" b="-0.0001096178315416617" c="5.1759734573295654e-05" d="2.0575228976325669e-06" /> - <width sOffset="654.8891179481376" a="2.489391483488224" b="0.00027765707356364991" c="3.4747106502829218e-05" d="-2.7581171605442393e-06" /> - <width sOffset="661.76629241132184" a="2.4920472583048268" b="0.00036424107346419389" c="-2.3717407420313534e-05" d="-2.1914676822572384e-06" /> - <width sOffset="666.38460864312617" a="2.4930077069557663" b="4.9476757865953491e-06" c="0.0026497096658237855" d="-0.00012757782487829859" /> - <width sOffset="667.30016511172983" a="2.495135428326547" b="0.0045360414210370561" c="-0.0030757259124030807" d="0.00045866066824856554" /> - <width sOffset="670.79867043505601" a="2.4929992175652078" b="-0.00014345943951443035" c="-0.0023693989944713351" d="0.00074102737509539464" /> - <width sOffset="671.793054417554" a="2.4912423157353247" b="-0.0026574617517328755" c="-0.00015910413856711934" d="0.00074191873535226307" /> - <width sOffset="673.5767317539927" a="2.4902062950256898" b="0.0038562114994739839" c="0.026249937482573159" d="-0.036296329326165264" /> - <width sOffset="674.06138239795996" a="2.4941090664876651" b="0.0037237840165306791" c="-0.0016209310383094274" d="0.00016643625432441708" /> - <width sOffset="679.05971412352335" a="2.4930092495226406" b="-5.7274274115977266e-06" c="-0.00014935124284889349" d="1.4858313942877731e-05" /> - <width sOffset="681.81981642378616" a="2.4921680833581972" b="-0.00049059759658301146" c="-2.3120774092204239e-05" d="1.3136842007763483e-05" /> - <width sOffset="683.46113122967517" a="2.491358658229136" b="-0.00046032595495469858" c="4.6452826806914399e-05" d="5.0204129086740079e-07" /> - <width sOffset="691.84657843001821" a="2.4910610014250176" b="0.00042463368970201533" c="5.9879411839664694e-05" d="2.275496214062542e-07" /> - <width sOffset="696.91319469922951" a="2.4947791936454031" b="0.0010489297003552964" c="-0.0008630301504990249" d="0.00012150131153520096" /> - <width sOffset="700.91214004250833" a="2.4929425391579896" b="-2.4503155608859069e-05" c="0.00025097022127085954" d="0.00011540768846900835" /> - <width sOffset="701.63491588320278" a="2.4930995127721225" b="0.00051915590108701564" c="-5.4395208082947801e-05" d="1.558197634723845e-06" /> - <width sOffset="711.90010244248253" a="2.4943823792674769" b="-0.00010501720647743996" c="-5.4967733910906268e-06" d="1.1387304949637853e-06" /> - <width sOffset="715.55749266515522" a="2.4939804729731687" b="-9.9528200522905992e-05" c="2.6215158497344029e-05" d="-9.679169231511695e-07" /> - <width sOffset="721.9268644487147" a="2.4941599527518372" b="0.00011661801550608749" c="7.3473476308801868e-06" d="-9.0132926889686329e-07" /> - <width sOffset="731.95362645494686" a="2.4951593413933901" b="-7.8897723996091892e-06" c="-1.9777418555953027e-05" d="-1.0194692520881909e-06" /> - <width sOffset="739.19747686652579" a="2.4936768916082652" b="-0.00045490405358243635" c="8.2185414920841378e-05" d="-4.9918721264548519e-06" /> - <width sOffset="741.98038846117902" a="2.4929398392893809" b="-0.00011345467823566362" c="5.0291455512610836e-05" d="-6.3240354869591269e-06" /> - <width sOffset="746.19684017992859" a="2.4928815054034983" b="-2.664662268887113e-05" c="0.00013140576553104594" d="-9.4777592516149796e-06" /> - <width sOffset="752.00715046741118" a="2.4953037963735918" b="0.00054047083261742415" c="-2.5098446516540074e-05" d="-7.5546788453302404e-06" /> - <width sOffset="757.36395940618274" a="2.4963175119519088" b="-0.00037877797217075217" c="-0.00024188238604124532" d="2.3109938252421603e-05" /> - <width sOffset="762.03391247364334" a="2.4916271737890137" b="-0.0011259601469924205" c="8.2750574380693106e-05" d="2.2918143652891584e-05" /> - <width sOffset="764.08078610183975" a="2.4898657157620931" b="-0.00049914034487973796" c="0.00020038025370191191" d="-1.1949198052615913e-05" /> - <width sOffset="772.0606744798755" a="2.4925706049673018" b="0.00041615849707758875" c="-8.0010511339415188e-05" d="-1.4945436574904029e-05" /> - <width sOffset="773.83074504224828" a="2.4929736641147828" b="-7.5688791777582705e-06" c="0.00014518828513321641" d="-1.3624341825843161e-05" /> - <width sOffset="781.45828743592062" a="2.4953168821125669" b="-0.00017067749908919244" c="-0.00016708560478631302" d="1.6855739058632802e-05" /> - <width sOffset="782.08743648610755" a="2.4951475609486122" b="-0.00036090505109781599" c="-0.00012962094628448054" d="1.7214975062034723e-05" /> - <width sOffset="788.29373233267734" a="2.4920302457855286" b="1.942788074499411e-05" c="7.4790316264145007e-05" d="-8.4236417076445166e-06" /> - <width sOffset="792.11419849233971" a="2.4927263752226985" b="0.00022204217081881568" c="-1.6295287143323298e-05" d="-1.1213741654143436e-05" /> - <width sOffset="794.29413742044471" a="2.4930168090094327" b="-8.8708906259976628e-06" c="3.7741399917962465e-06" d="-3.4286312013221144e-06" /> - <width sOffset="797.19259551196853" a="2.4929393163031639" b="-7.3404919636546172e-05" c="2.4486961385664216e-05" d="-1.0168423026919604e-06" /> - <width sOffset="802.14096049857187" a="2.4930524694802605" b="9.4239759099188974e-05" c="7.9223166113288052e-06" d="-1.0340591498455453e-06" /> - <width sOffset="812.16772250480403" a="2.4937514833562995" b="-5.8770251094674873e-05" c="-2.8530724337854446e-05" d="-1.3445559874619344e-06" /> - <width sOffset="812.50109060765601" a="2.4937286706733861" b="-7.8240996801547374e-05" c="1.5141664362599795e-05" d="-6.2141417636363152e-07" /> - <width sOffset="822.19448451103619" a="2.4938269992263331" b="4.0139494423848342e-05" c="-3.2954068220066579e-06" d="-6.0734256090442611e-07" /> - <width sOffset="832.22124651726836" a="2.4932859297740118" b="-0.0002091243209517722" c="-2.2749873695330942e-05" d="-6.2557722130031939e-07" /> - <width sOffset="833.08903686587576" a="2.4930869128710746" b="-0.00025002185432132994" c="-1.1808402570256393e-06" d="8.0157541456037322e-08" /> - <width sOffset="842.24800852350052" a="2.4907594992877833" b="-0.00025147994944720199" c="1.9093609088456971e-06" d="-2.465525430053163e-07" /> - <width sOffset="847.245664788353" a="2.4895196024766424" b="-0.00025086939960399044" c="3.7601756448411534e-05" d="-1.1031011160834585e-06" /> - <width sOffset="852.27477052973268" a="2.4890686640968855" b="4.3638434441332658e-05" c="2.2073985097518854e-05" d="-7.2739844419238986e-07" /> - <width sOffset="862.30153253596484" a="2.4909921914154989" b="0.0002669105299856852" c="-1.3993895099126844e-07" d="-7.3574049228249209e-07" /> - <width sOffset="872.32829454219689" a="2.4929127075982542" b="4.219913886588096e-05" c="-1.8965094473766204e-05" d="-1.7321393435734809e-06" /> - <width sOffset="873.24465659542261" a="2.4929341190710836" b="3.077819954770732e-06" c="8.3574080896335525e-05" d="-6.6106644119056458e-06" /> - <width sOffset="874.24784015001205" a="2.4930146397408075" b="0.0001507996403461863" c="-4.37438986629359e-05" d="1.6192244802283774e-06" /> - <width sOffset="882.35505654842905" a="2.4922248759586125" b="-0.00023920276788871875" c="-4.3966858047318834e-06" d="1.6018400216956401e-06" /> - <width sOffset="892.38181855466121" a="2.4909991567272645" b="0.00015575574315522382" c="4.4494190268373944e-05" d="1.7723380297428137e-06" /> - <width sOffset="896.19976164873788" a="2.492341037162741" b="0.00057301277936534724" c="-0.00011264912402474392" d="-1.1176411365454327e-05" /> - <width sOffset="898.19977117485951" a="2.4929470548229702" b="-1.1704076956827705e-05" c="0.00013236969605830108" d="-7.9890872090773696e-06" /> - <width sOffset="902.40858056089337" a="2.4946469737446284" b="0.00067797565672162731" c="5.0595532334606909e-06" d="1.8012210643795975e-05" /> - <width sOffset="903.47972287072298" a="2.4954011236917735" b="0.00075081336508514888" c="-9.8420457892519226e-05" d="3.1682226307390576e-06" /> - <width sOffset="912.43534256712553" a="2.4965071295311425" b="-0.000249714958444636" c="-1.045224242985847e-05" d="3.1241926657553375e-06" /> - <width sOffset="922.39590372254679" a="2.4960702062953812" b="0.00047194414679384332" c="-0.00047106417789264087" d="5.0772117218831973e-05" /> - <width sOffset="922.46210457335769" a="2.4960993996663268" b="0.00041024198254332143" c="-0.00045074263513752668" d="5.043721381702541e-05" /> - <width sOffset="927.89605495530373" a="2.4931119750005664" b="-2.0481824755049123e-05" c="-0.00062738359810544442" d="9.1368905991455438e-05" /> - <width sOffset="931.89810338521079" a="2.4888381827324189" b="-0.00065192036730207597" c="0.0011652384842371502" d="-0.00018357137118702984" /> - <width sOffset="932.48886657958985" a="2.4888218735458292" b="0.00053263979104579344" c="0.00082610373677798044" d="-0.00018003633941899194" /> - <width sOffset="935.89826448873464" a="2.4931054915251556" b="-0.00011255154627147707" c="0.0035090020798106266" d="-0.00078097092252137784" /> - <width sOffset="936.69097448542834" a="2.4948322642637857" b="0.0039784295714761827" c="-0.0031448144401789455" d="0.00075292895761806431" /> - <width sOffset="939.12282801590959" a="2.4967375163615859" b="0.0020412392484607904" c="-0.0047916043382949559" d="0.0014241009370992595" /> - <width sOffset="941.12760676399034" a="2.4930462989861404" b="0" c="-5.3466272498315151e-06" d="2.5679842414851183e-06" /> - <width sOffset="942.51562858582201" a="2.4930428653739627" b="-4.5959330091660533e-16" c="1.02441555288073e-06" d="-6.8112088579388373e-08" /> - <width sOffset="952.54239059205418" a="2.4930771955730506" b="-1.2598429244281562e-15" c="-8.7338508312351367e-07" d="1.3020175497781001e-07" /> - <width sOffset="957.0143481497023" a="2.4930713734703511" b="0" c="-0.00053655325606055074" d="8.2069141695243175e-05" /> - <width sOffset="962.56915259828634" a="2.4905820707019855" b="0.0016360431561610583" c="0.000799516013516334" d="9.1933443703401022e-05" /> - <width sOffset="962.94077615970718" a="2.4913051975779608" b="0.002268370281509129" c="-0.00036953077061482301" d="-0.00028269914336485425" /> - <width sOffset="964.190871792694" a="2.4930111236777339" b="1.9117668807632025e-05" c="0.00051984353095916279" d="-9.1984304998525695e-05" /> - <width sOffset="967.7718825265124" a="2.4955218043784235" b="0.00020352794469750274" c="-4.5325444421634995e-05" d="1.8805987995279415e-06" /> - <width sOffset="972.59591460451838" a="2.495659967061493" b="-0.00010248299631725492" c="-1.5485795836524826e-05" d="2.1908139790234944e-06" /> - <width sOffset="979.24453123946023" a="2.4949379329529711" b="-1.7872334535328415e-05" c="-0.00013214546084138268" d="1.3525267522878084e-05" /> - <width sOffset="982.62267661075055" a="2.4938909431121701" b="-0.00044763986046710154" c="7.2639384559381003e-06" d="1.3334295327111165e-05" /> - <width sOffset="985.74518139963357" a="2.492969965582077" b="-1.2246910552894631e-05" c="-0.00037372712678645571" d="4.5180047566113935e-05" /> - <width sOffset="988.76477396131827" a="2.4907692815885225" b="-0.0010334074293290145" c="0.00050120937550943243" d="-4.3784223848186033e-05" /> - <width sOffset="992.64943861698271" a="2.4917516816400251" b="0.00087846007805372447" c="-8.9987057382864388e-06" d="-4.4445286675154222e-05" /> - <width sOffset="995.64331430517791" a="2.4931083354671326" b="-0.00037055013360874633" c="0.00034124468346117469" d="3.0036832149135249e-05" /> - <width sOffset="996.14337764734637" a="2.4930121257474465" b="-6.7288875198105252e-06" c="-7.852859757252444e-08" d="2.2291564676611485e-08" /> - <width sOffset="1002.6762006232149" a="2.4929710307204633" b="-4.9008511603129505e-06" c="1.6444439527210987e-06" d="1.462570566498234e-07" /> - <width sOffset="1012.702962629447" a="2.4932346512393009" b="7.2188324313492613e-05" c="6.4560712848667869e-06" d="-4.7114981563492022e-08" /> - <width sOffset="1016.644511174979" a="2.4936166001961562" b="0.00012088625359069378" c="-6.2130031961159264e-06" d="-1.446152409284145e-07" /> - <width sOffset="1022.7297246356792" a="2.4940895656607696" b="2.9206121964848449e-05" c="-8.5588233376183641e-06" d="2.3203025201813975e-08" /> - <width sOffset="1032.7564866419114" a="2.4935453288175751" b="-0.00013543023236910903" c="-7.9992001195596979e-06" d="-4.957975492404458e-08" /> - <width sOffset="1038.2464506349065" a="2.4925525244308746" b="-0.00022774383113674372" c="3.4790056620674773e-05" d="-1.4954714575377215e-06" /> - <width sOffset="1042.7832486481434" a="2.4920957189262953" b="-4.4146979146223093e-06" c="1.3906241313335876e-05" d="-1.3642314999177407e-06" /> - <width sOffset="1048.6492342216427" a="2.4922729667079828" b="1.7904178973359363e-05" c="1.0353715716074338e-05" d="-4.5687041126756664e-07" /> - <width sOffset="1052.8100106543757" a="2.492493797034169" b="8.0335067026025093e-05" c="8.6660275786673921e-07" d="-4.2888424476217004e-07" /> - <width sOffset="1060.9015603690646" a="2.4929733573926995" b="1.0118143690033762e-05" c="-1.8947991842708167e-05" d="4.1916319734791221e-06" /> - <width sOffset="1062.8367726606077" a="2.4929523557221147" b="-1.612505836264661e-05" c="-4.5788998771715638e-06" d="-1.1474498775480675e-07" /> - <width sOffset="1072.86353466684" a="2.4922146608242839" b="-0.00014255612823358462" c="-8.2673587910685283e-06" d="-2.3623872135335443e-08" /> - <width sOffset="1078.0072727495419" a="2.4912594362676934" b="-0.00022948150891150768" c="1.7241158989396216e-05" d="-1.1126858603512989e-07" /> - <width sOffset="1082.890296673072" a="2.4905370143798446" b="-6.9062763956147851e-05" c="1.4930278384111752e-05" d="-3.153267619759844e-07" /> - <width sOffset="1092.9170586793043" a="2.4910277031215706" b="0.00013523689941792507" c="5.4027362521763495e-06" d="-2.9243024424772788e-07" /> - <width sOffset="1102.9438206855364" a="2.4926320762433418" b="0.00015538153778771368" c="-3.4217937015637351e-06" d="-1.8623178627827847e-07" /> - <width sOffset="1105.6501205294148" a="2.4930238325376459" b="0.00013276882058279541" c="-5.7540870771550265e-05" d="5.8358255816685941e-06" /> - <width sOffset="1110.65130685547" a="2.4929786272353658" b="-4.881772579644339e-06" c="-6.8212079947763406e-05" d="5.1893075747451444e-06" /> - <width sOffset="1112.9705826917684" a="2.4926651286187829" b="-0.00023754654475788501" c="-2.7483098325061642e-05" d="7.0439394658224791e-06" /> - <width sOffset="1117.8755322013603" a="2.4916699981024273" b="1.2475162934097277e-06" c="6.0426322259469957e-05" d="-4.6670843087564479e-06" /> - <width sOffset="1122.9973446980007" a="2.4926344782016505" b="0.00025293774776475719" c="-1.6533805097092657e-05" d="-3.9254828788249871e-06" /> - <width sOffset="1127.0135448196359" a="2.4931293430350365" b="-6.9820900364361144e-05" c="1.8600330417520111e-05" d="-5.3639897762103551e-07" /> - <width sOffset="1133.0241067042327" a="2.4932651764986913" b="9.5640750810716685e-05" c="8.4989939312029554e-06" d="-7.1750406278717041e-07" /> - <width sOffset="1143.050868710465" a="2.4943553179804807" b="4.9670658323575263e-05" c="-1.3150091619478396e-05" d="-6.5420430734695896e-07" /> - <width sOffset="1144.8561227294983" a="2.4943982819224608" b="-4.2038949975868253e-06" c="-0.00016037455380695241" d="2.1339119624653384e-05" /> - <width sOffset="1149.8574597519364" a="2.4930352787925916" b="-7.0882690819183518e-06" c="-0.00014260336249611433" d="2.448504763969081e-05" /> - <width sOffset="1153.0776307166971" a="2.4923513217268347" b="-0.00016380950279629679" c="9.8311641776530453e-05" d="2.4872130422279633e-05" /> - <width sOffset="1153.8284820225281" a="2.492294279758779" b="2.589240263484692e-05" c="4.615787956241052e-05" d="-4.5700211003054657e-06" /> - <width sOffset="1161.5521406333032" a="2.4931421516751575" b="-7.8964676723475812e-05" c="1.8882216720560917e-05" d="-1.9534095705512935e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659432" type="poles" s="665.03820912395122" t="9.5169042750872741" zOffset="-2.1077503857126998" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.7922496142873001" name="SgPoleSign01.flt" /> - <object id="276659500" type="poles" s="218.94640677833402" t="8.5047661488836912" zOffset="-1.9375524937346937" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.9624475062653062" name="SgPoleSign01.flt" /> - <object id="276659544" type="poles" s="202.52210469493787" t="8.6057846030229559" zOffset="-1.8483759897545951" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.0516240102454049" name="SgPoleSign01.flt" /> - <object id="276661198" type="poles" s="1049.0928957770986" t="-8.2950173499222988" zOffset="-1.7791228052005237" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.1208771947994762" name="SgPoleSign01.flt" /> - <object id="276661322" type="poles" s="665.51912502788866" t="-7.8873862525169836" zOffset="-1.6532365973717957" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.2467634026282042" name="SgPoleSign01.flt" /> - <object id="277422429" type="poles" s="662.51616051356609" t="-6.3063400874072384" zOffset="-3.5459405813453144" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.35405941865468549" name="SgPoleSign01.flt" /> - <object id="277422450" type="poles" s="642.83124931894963" t="-6.2986861349250667" zOffset="-3.5766327555077679" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.32336724449223198" name="SgPoleSign01.flt" /> - <object id="277422462" type="poles" s="622.61757692298534" t="-6.3857825673396231" zOffset="-3.5759364420627207" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.32406355793727926" name="SgPoleSign01.flt" /> - <object id="277422474" type="poles" s="602.96867092234424" t="-6.3902540053489716" zOffset="-3.5958231810108656" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.30417681898913429" name="SgPoleSign01.flt" /> - <object id="277422486" type="poles" s="583.17666569178925" t="-6.5008523713539415" zOffset="-3.5610477525833857" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.33895224741661423" name="SgPoleSign01.flt" /> - <object id="277422498" type="poles" s="570.04451605471672" t="-6.5986535905926225" zOffset="-3.6001914778950321" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.29980852210496778" name="SgPoleSign01.flt" /> - <object id="277422510" type="poles" s="559.70918099805408" t="-6.5131822325625581" zOffset="-3.5960212664978939" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.30397873350210602" name="SgPoleSign01.flt" /> - <object id="277422522" type="poles" s="546.54295393853613" t="-6.2818697515484718" zOffset="-3.5827253880095724" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.3172746119904275" name="SgPoleSign01.flt" /> - <object id="277422534" type="poles" s="534.68791732518321" t="-6.0797063263946667" zOffset="-3.5781716475967698" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.32182835240323016" name="SgPoleSign01.flt" /> - <object id="277422546" type="poles" s="522.7498510410627" t="-5.839112693248274" zOffset="-3.6166076841508583" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.2833923158491416" name="SgPoleSign01.flt" /> - <object id="277422558" type="poles" s="509.38681593946592" t="-5.6612002944679105" zOffset="-3.6293570912840436" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.27064290871595631" name="SgPoleSign01.flt" /> - <object id="277422570" type="poles" s="499.07853210728274" t="-5.5818173802041917" zOffset="-3.6226171683494726" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.27738283165052735" name="SgPoleSign01.flt" /> - <object id="277422582" type="poles" s="484.93577094986415" t="-5.5067144854027612" zOffset="-3.6070741489027625" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.29292585109723746" name="SgPoleSign01.flt" /> - <object id="277422594" type="poles" s="474.12132414674602" t="-5.3574039769524262" zOffset="-3.6601725452901746" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.23982745470982536" name="SgPoleSign01.flt" /> - <object id="277422606" type="poles" s="457.11158713363523" t="-5.1919648359874504" zOffset="-3.6358966310446248" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.26410336895537512" name="SgPoleSign01.flt" /> - <object id="277422618" type="poles" s="445.6567928954679" t="-5.2221621823913456" zOffset="-3.635766477512584" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.26423352248741594" name="SgPoleSign01.flt" /> - <object id="277422630" type="poles" s="429.94996331837137" t="-5.1583218217711408" zOffset="-3.6394824142938602" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.2605175857061397" name="SgPoleSign01.flt" /> - <object id="277422642" type="poles" s="415.02751889387446" t="-5.2042994140556624" zOffset="-3.6199774590679623" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.2800225409320376" name="SgPoleSign01.flt" /> - <object id="277422654" type="poles" s="395.88247188524599" t="-5.3692252386487924" zOffset="-3.5918585812598223" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.30814141874017764" name="SgPoleSign01.flt" /> - <object id="277422666" type="poles" s="371.44135461546381" t="-5.3884799196104662" zOffset="-3.5985199807620005" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.30148001923799939" name="SgPoleSign01.flt" /> - <object id="277422678" type="poles" s="351.09183507332096" t="-5.3278111758447908" zOffset="-3.5990905891112503" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.30090941088874956" name="SgPoleSign01.flt" /> - <object id="277422690" type="poles" s="316.29213009768563" t="-5.4420616386835778" zOffset="-3.6060618311917323" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.29393816880826762" name="SgPoleSign01.flt" /> - <object id="277422702" type="poles" s="312.00999121616206" t="-3.4987080814736347" zOffset="-3.4794554546721144" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.42054454532788554" name="SgPoleSign01.flt" /> - <object id="277422714" type="poles" s="297.39469319894192" t="-2.3693385067024737" zOffset="-3.6859224796586374" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.21407752034136251" name="SgPoleSign01.flt" /> - <object id="277422726" type="poles" s="282.00332984845852" t="-2.4572908073478583" zOffset="-3.6762179247879145" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.22378207521208537" name="SgPoleSign01.flt" /> - <object id="277422738" type="poles" s="263.77704867231364" t="-2.3211846807377321" zOffset="-3.6735419056834586" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.22645809431654129" name="SgPoleSign01.flt" /> - <object id="277422750" type="poles" s="245.57478509895162" t="-2.3497775259626712" zOffset="-3.6925483452046364" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.20745165479536354" name="SgPoleSign01.flt" /> - <object id="277422762" type="poles" s="257.27563100324437" t="-5.7647604739186598" zOffset="-3.5876503947272282" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.31234960527277167" name="SgPoleSign01.flt" /> - <object id="277422846" type="poles" s="669.37243316554259" t="7.541559767002842" zOffset="-3.936726334882104" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.036726334882104084" name="SgPoleSign01.flt" /> - <object id="277422858" type="poles" s="660.6220339763978" t="6.4646579062468454" zOffset="-3.906128623106889" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.0061286231068891084" name="SgPoleSign01.flt" /> - <object id="277422870" type="poles" s="647.56002390302899" t="6.3916308303453233" zOffset="-3.9361479070286634" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.03614790702866344" name="SgPoleSign01.flt" /> - <object id="277422882" type="poles" s="633.26597923435133" t="6.2823582145610253" zOffset="-3.8974692439914462" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.0025307560085536807" name="SgPoleSign01.flt" /> - <object id="277422894" type="poles" s="612.82417868087862" t="6.3097854471093937" zOffset="-3.9808440722539387" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.080844072253938748" name="SgPoleSign01.flt" /> - <object id="277422906" type="poles" s="595.99147426704712" t="5.9446880280806464" zOffset="-3.8833171358369269" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.016682864163072963" name="SgPoleSign01.flt" /> - <object id="277422918" type="poles" s="580.76861055649465" t="5.915146789458289" zOffset="-3.8966247987064491" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.0033752012935508446" name="SgPoleSign01.flt" /> - <object id="277422930" type="poles" s="568.28489827316093" t="5.9661735057936491" zOffset="-3.8697968936439167" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.030203106356083254" name="SgPoleSign01.flt" /> - <object id="277422942" type="poles" s="557.07434990200727" t="5.7769483525141361" zOffset="-3.8798965142205986" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.020103485779401353" name="SgPoleSign01.flt" /> - <object id="277422954" type="poles" s="543.38088795734359" t="5.9001001300308245" zOffset="-3.8648721630951512" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.035127836904848664" name="SgPoleSign01.flt" /> - <object id="277422966" type="poles" s="533.17121364965078" t="5.9221858075240608" zOffset="-4.0321667338646083" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.13216673386460798" name="SgPoleSign01.flt" /> - <object id="277422978" type="poles" s="523.37019329392228" t="5.7087061909659722" zOffset="-3.8771833940800149" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.022816605919985022" name="SgPoleSign01.flt" /> - <object id="277423002" type="poles" s="499.2971791595337" t="5.581617110771921" zOffset="-3.8829264722576169" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.017073527742383021" name="SgPoleSign01.flt" /> - <object id="277423014" type="poles" s="485.07491413234141" t="5.6316023036221958" zOffset="-3.8859487864158324" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.014051213584167499" name="SgPoleSign01.flt" /> - <object id="277423026" type="poles" s="474.43396737999308" t="5.6229935652137" zOffset="-3.9063410772494023" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.0063410772494023604" name="SgPoleSign01.flt" /> - <object id="277423038" type="poles" s="460.92100078608678" t="5.6278810901524583" zOffset="-3.8876604504605381" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.012339549539461814" name="SgPoleSign01.flt" /> - <object id="277423050" type="poles" s="179.42125637571405" t="5.5794929430582876" zOffset="-3.9089769567715051" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.008976956771505229" name="SgPoleSign01.flt" /> - <object id="277423062" type="poles" s="168.5290881779604" t="5.6406590776789445" zOffset="-3.9178803949404766" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.017880394940476663" name="SgPoleSign01.flt" /> - <object id="277423074" type="poles" s="160.70455059685099" t="5.4908693319684421" zOffset="-3.896954150573714" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.0030458494262859404" name="SgPoleSign01.flt" /> - <object id="277423086" type="poles" s="149.98744049935453" t="5.4399326108181567" zOffset="-3.8626200698528463" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.037379930147153573" name="SgPoleSign01.flt" /> - <object id="277423098" type="poles" s="138.07080478470056" t="5.8680483332970921" zOffset="-3.9060002796868729" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.0060002796868730002" name="SgPoleSign01.flt" /> - <object id="277423110" type="poles" s="125.9683664104121" t="5.8228178487230391" zOffset="-4.000464299338427" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.1004642993384266" name="SgPoleSign01.flt" /> - <object id="277423122" type="poles" s="108.89503302742837" t="5.7351608562122243" zOffset="-4.1242585353333201" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.22425853533331974" name="SgPoleSign01.flt" /> - <object id="277423134" type="poles" s="90.102612807862428" t="5.6416682687017197" zOffset="-3.9401447834432246" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.040144783443224696" name="SgPoleSign01.flt" /> - <object id="277423146" type="poles" s="73.128013607574047" t="5.6620299173757012" zOffset="-3.886074044812625" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.013925955187374939" name="SgPoleSign01.flt" /> - <object id="277423158" type="poles" s="55.737490891121297" t="5.125961052063321" zOffset="-3.8619861857583202" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.038013814241679711" name="SgPoleSign01.flt" /> - <object id="277423170" type="poles" s="40.617511574030082" t="5.2111477069549963" zOffset="-3.868709511250978" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.031290488749021961" name="SgPoleSign01.flt" /> - <object id="277423182" type="poles" s="18.880778271923734" t="4.7332141652291106" zOffset="-3.8696663475554316" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.030333652444568315" name="SgPoleSign01.flt" /> - <object id="277531820" type="poles" s="510.3878732434963" t="5.803697248760427" zOffset="-3.9661274284029502" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="-0.066127428402950272" name="SgPoleSign01.flt" /> - <object id="276661254" type="poles" s="864.91635978747172" t="-8.2393836147555728" zOffset="-0.89014694408694472" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="3.0098530559130552" name="SgPoleSign01.flt" /> - <object id="277423423" type="poles" s="395.13730200938812" t="-9.0276095712072788" zOffset="-1.7650566995983978" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.1349433004016021" name="SgPoleSign01.flt" /> - <object id="277422417" type="poles" s="765.27519163125692" t="-8.4583272574438979" zOffset="-1.0381894081412439" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.861810591858756" name="SgPoleSign01.flt" /> - <object id="277422321" type="poles" s="1148.6096019284557" t="-8.3889569426284822" zOffset="-1.3074293384148006" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.5925706615851993" name="SgPoleSign01.flt" /> - <object id="277422345" type="poles" s="949.84713647409671" t="-8.5058881872849614" zOffset="-1.1084026925643058" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.7915973074356941" name="SgPoleSign01.flt" /> - <object id="277422393" type="poles" s="767.1748397697429" t="9.248182033450119" zOffset="-2.1242321461945379" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.775767853805462" name="SgPoleSign01.flt" /> - <object id="277423411" type="poles" s="394.98480331748527" t="6.9871933659932717" zOffset="-2.2784117694802375" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.6215882305197624" name="SgPoleSign01.flt" /> - <object id="277423447" type="poles" s="294.94890517002597" t="6.8417363065098842" zOffset="-2.2343406466485702" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.6656593533514297" name="SgPoleSign01.flt" /> - <object id="5181524" s="0" t="-4.4590777962839354" orientation="none" validLength="19.59178211566714" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="19.59178211566714" s="0" distance="0" tStart="-4.4590777962839354" tEnd="-4.9745909596658135" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616980" s="19.59178211566714" t="-4.9745909596658135" orientation="none" validLength="11.542352039130964" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="11.542352039130964" s="19.59178211566714" distance="0" tStart="-4.9745909596658135" tEnd="-5.0969779710286733" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542052436" s="31.134134154798105" t="-5.0969779710286733" orientation="none" validLength="14.70513149617004" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="14.70513149617004" s="31.134134154798105" distance="0" tStart="-5.0969779710286733" tEnd="-4.797724416026603" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487892" s="45.839265650968144" t="-4.797724416026603" orientation="none" validLength="19.875215518793965" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="19.875215518793965" s="45.839265650968144" distance="0" tStart="-4.797724416026603" tEnd="-4.795768226982843" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078923348" s="65.714481169762109" t="-4.795768226982843" orientation="none" validLength="23.726132431158774" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="23.726132431158774" s="65.714481169762109" distance="0" tStart="-4.795768226982843" tEnd="-5.2733983924944994" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741887" s="89.440613600920884" t="-5.2733983924944994" orientation="none" validLength="9.0018468253458792" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="9.0018468253458792" s="89.440613600920884" distance="0" tStart="-5.2733983924944994" tEnd="-5.2924569055077333" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741888" s="98.442460426266763" t="-5.2924569055077333" orientation="none" validLength="15.706640605569532" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="15.706640605569532" s="98.442460426266763" distance="0" tStart="-5.2924569055077333" tEnd="-5.0518342058442549" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741889" s="114.1491010318363" t="-5.0518342058442549" orientation="none" validLength="14.521457922534864" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="14.521457922534864" s="114.1491010318363" distance="0" tStart="-5.0518342058442549" tEnd="-4.5977268548114214" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741890" s="128.67055895437116" t="-4.5977268548114214" orientation="none" validLength="17.724962533686266" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="17.724962533686266" s="128.67055895437116" distance="0" tStart="-4.5977268548114214" tEnd="-4.7156621929059641" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741891" s="146.39552148805743" t="-4.7156621929059641" orientation="none" validLength="13.214716614507523" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="13.214716614507523" s="146.39552148805743" distance="0" tStart="-4.7156621929059641" tEnd="-4.974961066167455" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741892" s="159.61023810256495" t="-4.974961066167455" orientation="none" validLength="49.558514805013743" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="49.558514805013743" s="159.61023810256495" distance="0" tStart="-4.974961066167455" tEnd="-5.1937970657053265" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741893" s="209.16875290757869" t="-5.1937970657053265" orientation="none" validLength="24.006812303719926" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="24.006812303719926" s="209.16875290757869" distance="0" tStart="-5.1937970657053265" tEnd="-5.4132959652428285" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741894" s="233.17556521129862" t="-5.4132959652428285" orientation="none" validLength="17.444300827870279" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="17.444300827870279" s="233.17556521129862" distance="0" tStart="-5.4132959652428285" tEnd="-5.6908165169504974" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741895" s="250.6198660391689" t="-5.6908165169504974" orientation="none" validLength="5.1103052335274981" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="5.1103052335274981" s="250.6198660391689" distance="0" tStart="-5.6908165169504974" tEnd="-5.6835558352357873" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5181948" s="690.43747588355757" t="9.3169562199018898" orientation="none" validLength="4.3001488972909101" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.3001488972909101" s="690.43747588355757" distance="0" tStart="9.3169562199018898" tEnd="9.1089019491237302" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273617404" s="694.73762478084848" t="9.1089019491237302" orientation="none" validLength="45.953741993541826" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="45.953741993541826" s="694.73762478084848" distance="0" tStart="9.1089019491237302" tEnd="9.0897519194100482" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542052860" s="740.6913667743903" t="9.0897519194100482" orientation="none" validLength="94.428493553296448" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="94.428493553296448" s="740.6913667743903" distance="0" tStart="9.0897519194100482" tEnd="8.8730542130362817" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810488316" s="835.11986032768675" t="8.8730542130362817" orientation="none" validLength="70.783376885407165" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="70.783376885407165" s="835.11986032768675" distance="0" tStart="8.8730542130362817" tEnd="8.8236111324377688" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5181971" s="218.4285838634236" t="6.6262285639162561" orientation="none" validLength="3.9441332519886316" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.9441332519886316" s="218.4285838634236" distance="0" tStart="6.6262285639162561" tEnd="6.4897269809212075" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273617427" s="222.37271711541223" t="6.4897269809212075" orientation="none" validLength="19.915810423149367" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.915810423149367" s="222.37271711541223" distance="0" tStart="6.4897269809212075" tEnd="6.4042225224221836" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542052883" s="242.2885275385616" t="6.4042225224221836" orientation="none" validLength="90.89682282537467" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="90.89682282537467" s="242.2885275385616" distance="0" tStart="6.4042225224221836" tEnd="6.3637714506766772" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810488339" s="333.18535036393627" t="6.3637714506766772" orientation="none" validLength="93.233549293299518" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="93.233549293299518" s="333.18535036393627" distance="0" tStart="6.3637714506766772" tEnd="6.7113196002885953" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078923795" s="426.41889965723578" t="6.7113196002885953" orientation="none" validLength="56.469415011909064" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="56.469415011909064" s="426.41889965723578" distance="0" tStart="6.7113196002885953" tEnd="7.3097724887524054" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741896" s="482.88831466914485" t="7.3097724887524054" orientation="none" validLength="65.831203665296584" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="65.831203665296584" s="482.88831466914485" distance="0" tStart="7.3097724887524054" tEnd="8.3403781138160902" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741897" s="548.71951833444143" t="8.3403781138160902" orientation="none" validLength="48.892061137099859" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="48.892061137099859" s="548.71951833444143" distance="0" tStart="8.3403781138160902" tEnd="8.8648797027133401" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741898" s="597.61157947154129" t="8.8648797027133401" orientation="none" validLength="15.789043609730243" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.789043609730243" s="597.61157947154129" distance="0" tStart="8.8648797027133401" tEnd="8.8764215045544557" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741899" s="613.40062308127153" t="8.8764215045544557" orientation="none" validLength="6.0042668774290178" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.0042668774290178" s="613.40062308127153" distance="0" tStart="8.8764215045544557" tEnd="8.9846890544728382" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741900" s="619.40488995870055" t="8.9846890544728382" orientation="none" validLength="34.691381816810576" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="34.691381816810576" s="619.40488995870055" distance="0" tStart="8.9846890544728382" tEnd="9.0796792264366868" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741901" s="654.09627177551113" t="9.0796792264366868" orientation="none" validLength="10.527897263498289" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.527897263498289" s="654.09627177551113" distance="0" tStart="9.0796792264366868" tEnd="9.2221391673092104" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741902" s="664.62416903900942" t="9.2221391673092104" orientation="none" validLength="1.4911920667315144" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.4911920667315144" s="664.62416903900942" distance="0" tStart="9.2221391673092104" tEnd="9.3504324953724414" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741903" s="666.11536110574093" t="9.3504324953724414" orientation="none" validLength="2.1422778783111198" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.1422778783111198" s="666.11536110574093" distance="0" tStart="9.3504324953724414" tEnd="9.6647224934871669" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741904" s="668.25763898405205" t="9.6647224934871669" orientation="none" validLength="3.881871754642134" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.881871754642134" s="668.25763898405205" distance="0" tStart="9.6647224934871669" tEnd="10.546463666052" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741905" s="672.13951073869418" t="10.546463666052" orientation="none" validLength="8.1664733791996014" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.1664733791996014" s="672.13951073869418" distance="0" tStart="10.546463666052" tEnd="12.940329987933213" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741906" s="680.30598411789379" t="12.940329987933213" orientation="none" validLength="2.5591366899381001" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.5591366899381001" s="680.30598411789379" distance="0" tStart="12.940329987933213" tEnd="13.519056837190822" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5182036" s="146.20039912859045" t="5.5899353117659825" orientation="none" validLength="9.1849682897105254" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.1849682897105254" s="146.20039912859045" distance="0" tStart="5.5899353117659825" tEnd="5.9757647178148892" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273617492" s="155.38536741830097" t="5.9757647178148892" orientation="none" validLength="15.370792725934308" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.370792725934308" s="155.38536741830097" distance="0" tStart="5.9757647178148892" tEnd="6.3316978504501664" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542052948" s="170.75616014423528" t="6.3316978504501664" orientation="none" validLength="10.105580318096855" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.105580318096855" s="170.75616014423528" distance="0" tStart="6.3316978504501664" tEnd="6.4820000949725145" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810488404" s="180.86174046233214" t="6.4820000949725145" orientation="none" validLength="7.1291870951941121" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.1291870951941121" s="180.86174046233214" distance="0" tStart="6.4820000949725145" tEnd="6.452853183847747" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078923860" s="187.99092755752625" t="6.452853183847747" orientation="none" validLength="2.0051634335665653" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.0051634335665653" s="187.99092755752625" distance="0" tStart="6.452853183847747" tEnd="6.5148347537406188" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741907" s="189.99609099109281" t="6.5148347537406188" orientation="none" validLength="3.8971479433699869" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.8971479433699869" s="189.99609099109281" distance="0" tStart="6.5148347537406188" tEnd="6.8805984499587076" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741908" s="193.8932389344628" t="6.8805984499587076" orientation="none" validLength="3.0194449947094029" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.0194449947094029" s="193.8932389344628" distance="0" tStart="6.8805984499587076" tEnd="7.3897540611446049" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741909" s="196.9126839291722" t="7.3897540611446049" orientation="none" validLength="2.453600460892801" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.453600460892801" s="196.9126839291722" distance="0" tStart="7.3897540611446049" tEnd="7.9758903981484091" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741910" s="199.366284390065" t="7.9758903981484091" orientation="none" validLength="1.3735495033225504" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.3735495033225504" s="199.366284390065" distance="0" tStart="7.9758903981484091" tEnd="8.3904924709294519" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="33782070" s="380.54755195895848" t="-9.5012855607355711" orientation="none" validLength="60.780214922127698" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="60.780214922127698" s="380.54755195895848" distance="0" tStart="-9.5012855607355711" tEnd="-9.1265047025081909" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="302217526" s="441.32776688108618" t="-9.1265047025081909" orientation="none" validLength="28.695084409518699" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="28.695084409518699" s="441.32776688108618" distance="0" tStart="-9.1265047025081909" tEnd="-8.8299733530194935" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="570652982" s="470.02285129060488" t="-8.8299733530194935" orientation="none" validLength="100.25848499464882" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="100.25848499464882" s="470.02285129060488" distance="0" tStart="-8.8299733530194935" tEnd="-7.388377206248494" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="839088438" s="570.2813362852537" t="-7.388377206248494" orientation="none" validLength="28.668536327752918" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="28.668536327752918" s="570.2813362852537" distance="0" tStart="-7.388377206248494" tEnd="-7.116656836281412" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1107523894" s="598.94987261300662" t="-7.116656836281412" orientation="none" validLength="54.989476589338778" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="54.989476589338778" s="598.94987261300662" distance="0" tStart="-7.116656836281412" tEnd="-6.8870645157846626" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741911" s="653.9393492023454" t="-6.8870645157846626" orientation="none" validLength="60.984511980530669" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="60.984511980530669" s="653.9393492023454" distance="0" tStart="-6.8870645157846626" tEnd="-6.8653786426381762" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741912" s="714.92386118287607" t="-6.8653786426381762" orientation="none" validLength="146.29485329871102" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="146.29485329871102" s="714.92386118287607" distance="0" tStart="-6.8653786426381762" tEnd="-7.1347547686094144" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741913" s="861.21871448158709" t="-7.1347547686094144" orientation="none" validLength="193.53399291149594" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="193.53399291149594" s="861.21871448158709" distance="0" tStart="-7.1347547686094144" tEnd="-7.2289935751981202" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741914" s="1054.752707393083" t="-7.2289935751981202" orientation="none" validLength="64.622650126931831" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="64.622650126931831" s="1054.752707393083" distance="0" tStart="-7.2289935751981202" tEnd="-7.0835178954326068" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741915" s="1119.3753575200149" t="-7.0835178954326068" orientation="none" validLength="43.729035202914474" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="43.729035202914474" s="1119.3753575200149" distance="0" tStart="-7.0835178954326068" tEnd="-6.8249754126403817" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412686" s="895.4460110195173" t="8.876860367493796" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848142" s="846.07357658853005" t="8.9587713672654647" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283598" s="791.49087846767077" t="8.8762290602614531" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719054" s="747.26849702716777" t="9.1970736424830246" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154510" s="697.2755296007889" t="9.2231072141785031" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741916" s="647.14337967855749" t="9.2339811203719915" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741917" s="597.218489702645" t="8.9389165658152212" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741918" s="550.96065688829344" t="8.259886867087781" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741919" s="505.28039232182948" t="7.6719114030546862" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741920" s="497.68032269096807" t="7.5707418464249772" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741921" s="447.07246229426482" t="7.0126161782292211" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741922" s="396.46470834877277" t="6.6922638895101132" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741923" s="347.06720140173042" t="6.5072872793200274" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741924" s="297.01300887773323" t="6.5056907549470022" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741925" s="246.97375999970828" t="6.5200456848621045" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741926" s="192.84372308828026" t="6.8311405375694312" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8223976" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="1.7922496142873001" s="665.03820912395122" t="9.5169042750872741" orientation="-" hOffset="3.1415926535897931" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8223988" type="511" subtype="22" country="DEU" zOffset="1.6215882305197624" s="394.98555142944497" t="6.9947498044037886" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8224000" type="511" subtype="22" country="DEU" zOffset="1.6656593533514297" s="294.95097509745347" t="6.8301449346759373" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8224044" type="250" subtype="-1" country="DEU" zOffset="1.9624475062653062" s="218.94640677833402" t="8.5047661488836912" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8224088" type="250" subtype="-1" country="DEU" zOffset="2.0516240102454049" s="202.52210469493787" t="8.6057846030229559" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8225742" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.1208771947994762" s="1049.0928957770986" t="-8.2950173499222988" orientation="-" hOffset="3.1415926535897931" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8225798" type="276" subtype="-1" country="DEU" zOffset="3.0098530559130552" s="864.91635978747172" t="-8.2393836147555728" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8225810" type="1049" subtype="13" country="DEU" zOffset="2.2616198115314603" s="864.91246629218494" t="-8.2234508632302408" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8225866" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.2467634026282042" s="665.51912502788866" t="-7.8873862525169836" orientation="-" hOffset="3.1415926535897931" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8225878" type="511" subtype="22" country="DEU" zOffset="2.1349433004016021" s="395.13827832463619" t="-9.0112124153343647" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8986853" type="511" subtype="22" country="DEU" zOffset="2.5925706615851993" s="1148.6116799513641" t="-8.3999574153889718" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8986865" type="1004" subtype="34" country="DEU" zOffset="2.2380422229180681" s="1148.6096019284557" t="-8.3889569426284822" orientation="-" hOffset="3.1415926535897931" name="Sg1004-36nach800m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8986877" type="511" subtype="22" country="DEU" zOffset="2.7915973074356941" s="949.84640334826759" t="-8.4809305363879997" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8986889" type="1004" subtype="33" country="DEU" zOffset="2.4411084477393103" s="949.84713647409671" t="-8.5058881872849614" orientation="-" hOffset="3.1415926535897931" name="Sg1004-33nach400m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8986925" type="511" subtype="22" country="DEU" zOffset="1.775767853805462" s="767.17711807488388" t="9.2322536844092014" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8986937" type="1004" subtype="32" country="DEU" zOffset="1.4363258952334093" s="767.1748397697429" t="9.248182033450119" orientation="-" hOffset="3.1415926535897931" name="Sg1004-33nach400m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8986949" type="511" subtype="22" country="DEU" zOffset="2.861810591858756" s="765.27565670225204" t="-8.4502531383275166" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8986961" type="1004" subtype="32" country="DEU" zOffset="2.5070466671064651" s="765.27519163125692" t="-8.4583272574438979" orientation="-" hOffset="3.1415926535897931" name="Sg1004-33nach400m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8986973" type="605" subtype="20" country="DEU" zOffset="0.35405941865468549" s="662.51616051356609" t="-6.3063400874072384" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8986994" type="605" subtype="20" country="DEU" zOffset="0.32336724449223198" s="642.83124931894963" t="-6.2986861349250667" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987006" type="605" subtype="20" country="DEU" zOffset="0.32406355793727926" s="622.61757692298534" t="-6.3857825673396231" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987018" type="605" subtype="20" country="DEU" zOffset="0.30417681898913429" s="602.96867092234424" t="-6.3902540053489716" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987030" type="605" subtype="20" country="DEU" zOffset="0.33895224741661423" s="583.17666569178925" t="-6.5008523713539415" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987042" type="605" subtype="21" country="DEU" zOffset="0.29980852210496778" s="570.04451605471672" t="-6.5986535905926225" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987054" type="605" subtype="21" country="DEU" zOffset="0.30397873350210602" s="559.70918099805408" t="-6.5131822325625581" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987066" type="605" subtype="21" country="DEU" zOffset="0.3172746119904275" s="546.54295393853613" t="-6.2818697515484718" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987078" type="605" subtype="21" country="DEU" zOffset="0.32182835240323016" s="534.68791732518321" t="-6.0797063263946667" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987090" type="605" subtype="21" country="DEU" zOffset="0.2833923158491416" s="522.7498510410627" t="-5.839112693248274" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987102" type="605" subtype="21" country="DEU" zOffset="0.27064290871595631" s="509.38681593946592" t="-5.6612002944679105" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987114" type="605" subtype="21" country="DEU" zOffset="0.27738283165052735" s="499.07853210728274" t="-5.5818173802041917" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987126" type="605" subtype="21" country="DEU" zOffset="0.29292585109723746" s="484.93577094986415" t="-5.5067144854027612" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987138" type="605" subtype="21" country="DEU" zOffset="0.23982745470982536" s="474.12132414674602" t="-5.3574039769524262" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987150" type="605" subtype="21" country="DEU" zOffset="0.26410336895537512" s="457.11158713363523" t="-5.1919648359874504" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987162" type="605" subtype="21" country="DEU" zOffset="0.26423352248741594" s="445.6567928954679" t="-5.2221621823913456" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987174" type="605" subtype="21" country="DEU" zOffset="0.2605175857061397" s="429.94996331837137" t="-5.1583218217711408" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987186" type="605" subtype="20" country="DEU" zOffset="0.2800225409320376" s="415.02751889387446" t="-5.2042994140556624" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987198" type="605" subtype="20" country="DEU" zOffset="0.30814141874017764" s="395.88247188524599" t="-5.3692252386487924" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987210" type="605" subtype="20" country="DEU" zOffset="0.30148001923799939" s="371.44135461546381" t="-5.3884799196104662" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987222" type="605" subtype="20" country="DEU" zOffset="0.30090941088874956" s="351.09183507332096" t="-5.3278111758447908" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987234" type="605" subtype="20" country="DEU" zOffset="0.29393816880826762" s="316.29213009768563" t="-5.4420616386835778" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987246" type="616" subtype="20" country="DEU" zOffset="0.42054454532788554" s="312.00999121616206" t="-3.4987080814736347" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8987258" type="605" subtype="20" country="DEU" zOffset="0.21407752034136251" s="297.39469319894192" t="-2.3693385067024737" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987270" type="605" subtype="20" country="DEU" zOffset="0.22378207521208537" s="282.00332984845852" t="-2.4572908073478583" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987282" type="605" subtype="20" country="DEU" zOffset="0.22645809431654129" s="263.77704867231364" t="-2.3211846807377321" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987294" type="605" subtype="20" country="DEU" zOffset="0.20745165479536354" s="245.57478509895162" t="-2.3497775259626712" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987306" type="605" subtype="10" country="DEU" zOffset="0.31234960527277167" s="257.27563100324437" t="-5.7647604739186598" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987390" type="605" subtype="11" country="DEU" zOffset="-0.036726334882104084" s="669.37243316554259" t="7.541559767002842" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987402" type="605" subtype="11" country="DEU" zOffset="-0.0061286231068891084" s="660.6220339763978" t="6.4646579062468454" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987414" type="605" subtype="10" country="DEU" zOffset="-0.03614790702866344" s="647.56002390302899" t="6.3916308303453233" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987426" type="605" subtype="10" country="DEU" zOffset="0.0025307560085536807" s="633.26597923435133" t="6.2823582145610253" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987438" type="605" subtype="10" country="DEU" zOffset="-0.080844072253938748" s="612.82417868087862" t="6.3097854471093937" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987450" type="605" subtype="10" country="DEU" zOffset="0.016682864163072963" s="595.99147426704712" t="5.9446880280806464" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987462" type="605" subtype="10" country="DEU" zOffset="0.0033752012935508446" s="580.76861055649465" t="5.915146789458289" orientation="-" hOffset="3.1415926535897931" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987474" type="605" subtype="11" country="DEU" zOffset="0.030203106356083254" s="568.28489827316093" t="5.9661735057936491" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987486" type="605" subtype="11" country="DEU" zOffset="0.020103485779401353" s="557.07434990200727" t="5.7769483525141361" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987498" type="605" subtype="11" country="DEU" zOffset="0.035127836904848664" s="543.38088795734359" t="5.9001001300308245" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987510" type="605" subtype="11" country="DEU" zOffset="-0.13216673386460798" s="533.17121364965078" t="5.9221858075240608" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987522" type="605" subtype="11" country="DEU" zOffset="0.022816605919985022" s="523.37019329392228" t="5.7087061909659722" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987546" type="605" subtype="11" country="DEU" zOffset="0.017073527742383021" s="499.2971791595337" t="5.581617110771921" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987558" type="605" subtype="11" country="DEU" zOffset="0.014051213584167499" s="485.07491413234141" t="5.6316023036221958" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987570" type="605" subtype="11" country="DEU" zOffset="-0.0063410772494023604" s="474.43396737999308" t="5.6229935652137" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987582" type="605" subtype="11" country="DEU" zOffset="0.012339549539461814" s="460.92100078608678" t="5.6278810901524583" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987594" type="605" subtype="11" country="DEU" zOffset="-0.008976956771505229" s="179.42125637571405" t="5.5794929430582876" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987606" type="605" subtype="11" country="DEU" zOffset="-0.017880394940476663" s="168.5290881779604" t="5.6406590776789445" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987618" type="605" subtype="11" country="DEU" zOffset="0.0030458494262859404" s="160.70455059685099" t="5.4908693319684421" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987630" type="605" subtype="11" country="DEU" zOffset="0.037379930147153573" s="149.98744049935453" t="5.4399326108181567" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987642" type="605" subtype="11" country="DEU" zOffset="-0.0060002796868730002" s="138.07080478470056" t="5.8680483332970921" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987654" type="605" subtype="11" country="DEU" zOffset="-0.1004642993384266" s="125.9683664104121" t="5.8228178487230391" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987666" type="605" subtype="11" country="DEU" zOffset="-0.22425853533331974" s="108.89503302742837" t="5.7351608562122243" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987678" type="605" subtype="11" country="DEU" zOffset="-0.040144783443224696" s="90.102612807862428" t="5.6416682687017197" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987690" type="605" subtype="11" country="DEU" zOffset="0.013925955187374939" s="73.128013607574047" t="5.6620299173757012" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987702" type="605" subtype="11" country="DEU" zOffset="0.038013814241679711" s="55.737490891121297" t="5.125961052063321" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987714" type="605" subtype="11" country="DEU" zOffset="0.031290488749021961" s="40.617511574030082" t="5.2111477069549963" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987726" type="605" subtype="11" country="DEU" zOffset="0.030333652444568315" s="18.880778271923734" t="4.7332141652291106" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987955" type="1004" subtype="32" country="DEU" zOffset="1.2281863198257952" s="394.98480331748527" t="6.9871933659932717" orientation="-" hOffset="3.1415926535897931" name="Sg1004-33nach400m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8987967" type="1004" subtype="32" country="DEU" zOffset="1.8063140564739513" s="395.13730200938812" t="-9.0276095712072788" orientation="-" hOffset="3.1415926535897931" name="Sg1004-33nach400m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8987991" type="1004" subtype="30" country="DEU" zOffset="1.2785287960846858" s="294.94890517002597" t="6.8417363065098842" orientation="-" hOffset="3.1415926535897931" name="Sg1004-30nach100m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="9096364" type="605" subtype="11" country="DEU" zOffset="-0.066127428402950272" s="510.3878732434963" t="5.803697248760427" orientation="-" hOffset="3.1415926535897931" name="Sg605-20Leitbake03.flt" height="1" /> - </signals> - </road> - <road name="" length="132.26283118744902" id="4940811" junction="-1"> - <link> - <successor elementType="road" elementId="4940815" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-597.99222871198515" y="-116.54371901601553" hdg="4.4117650749874846" length="132.26283118744902"> - <paramPoly3 aU="0" bU="132.25715796580872" cU="0.01673266118480074" dU="-0.011201162865931091" aV="0" bV="-0" cV="0.62813494936901648" dV="-0.5740518421263" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.65760101920023" b="0.0036711997511893503" c="2.7141193478137506e-05" d="-1.5724936557383587e-07" /> - <elevation s="10.174063937496079" a="156.6975958633754" b="0.0041746408373219846" c="6.2956582254391157e-05" d="-4.1492612424603091e-06" /> - <elevation s="20.348127874992159" a="156.74221593567134" b="0.004167199699777655" c="-1.2236743791109259e-07" d="-1.5724936557383021e-07" /> - <elevation s="30.522191812488238" a="156.78443502085128" b="0.004115878362062903" c="-3.6519523161465708e-05" d="2.4132138168404017e-06" /> - <elevation s="40.696255749984317" a="156.82507147311037" b="0.0041221611383285136" c="3.4624116053700714e-06" d="5.8213889802125266e-07" /> - <elevation s="50.870319687480396" a="156.8679820736964" b="0.0043733890785395378" c="1.0023028170623671e-06" d="-3.2469955313779078e-07" /> - <elevation s="61.044383624976476" a="156.91223901180499" b="0.0042929535760369703" c="1.6586579749604355e-07" d="-8.816851616710065e-07" /> - <elevation s="71.218447562472562" a="156.95500443290413" b="0.004022534769977046" c="-3.6350587625844491e-05" d="7.9360843695299763e-07" /> - <elevation s="81.392511499968634" a="156.99300302774813" b="0.0035293113471339334" c="-2.7101844965502647e-05" d="3.6366717579226067e-07" /> - <elevation s="91.566575437464707" a="157.02648810238736" b="0.003090770828740493" c="-3.6565481722640882e-05" d="1.343008343486466e-06" /> - <elevation s="101.74063937496079" a="157.05556321868471" b="0.002763782465529982" c="0.0001187012723201094" d="-7.1638154945416983e-06" /> - <elevation s="111.91470331245688" a="157.08842462070044" b="0.0029545176160011739" c="2.1377240787999398e-06" d="-3.1851987477817193e-06" /> - <elevation s="122.08876724995295" a="157.11535091182515" b="0.0020089014625534322" c="-6.427497244796791e-05" d="-1.5724936552396223e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.02441770271261191" b="-4.4811698732984909e-06" c="3.5908519544215793e-11" d="1.2868765838367603e-23" /> - <superelevation s="10.174063937496079" a="0.024372114720753676" b="-4.480439202151004e-06" c="-4.402707927676122e-07" d="4.3277367234190931e-08" /> - <superelevation s="20.348127874992159" a="0.024326534162790413" b="0" c="8.8749240042641682e-06" d="-3.5037124123642287e-07" /> - <superelevation s="30.522191812488238" a="0.024876203884768872" b="7.1785649367640177e-05" c="3.5940038994366293e-07" d="1.3624101464641468e-07" /> - <superelevation s="40.696255749984317" a="0.025787237735712506" b="0.00012140634129666947" c="2.1327874872947048e-05" d="-1.7884913056323503e-06" /> - <superelevation s="50.870319687480396" a="0.027346595642308444" b="0" c="-1.4934262061937715e-05" d="6.7337095782874135e-07" /> - <superelevation s="61.044383624976476" a="0.026509876072988273" b="-9.4779204893790853e-05" c="-6.7333015573444705e-06" d="5.4067655623222451e-07" /> - <superelevation s="71.218447562472562" a="0.025418016261239504" b="-6.3890437049031758e-05" c="3.1398680724605195e-06" d="-1.0295012670694105e-22" /> - <superelevation s="81.392511499968634" a="0.025093003565473795" b="0" c="5.7492492677991553e-06" d="-3.7672584610695435e-07" /> - <superelevation s="91.566575437464707" a="0.025291374851573952" b="0" c="-1.5003618997955222e-05" d="9.8312854398722712e-07" /> - <superelevation s="101.74063937496079" a="0.024773692097157487" b="0" c="1.3271570128438096e-05" d="-8.6963414750626703e-07" /> - <superelevation s="111.91470331245688" a="0.025231612481596562" b="0" c="-6.6767347586055339e-07" d="2.2585570761808572e-08" /> - <superelevation s="122.08876724995295" a="0.025186286166174909" b="-6.5723011242621372e-06" c="-2.0809939386952184e-07" d="2.5737531676735262e-23" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="6.0954851653116853" b="-3.567149599867161e-05" c="-0.018726244533232853" d="0.011339308975095323" /> - <laneOffset s="0.77801879112873962" a="6.0894623601909252" b="-0.008582910221155992" c="-0.0021330558100729606" d="0.00026555214932534425" /> - <laneOffset s="4.7327139995617209" a="6.0385837721666968" b="-0.012994681914391217" c="-0.00019513643067109706" d="1.1494911665372753e-05" /> - <laneOffset s="10.174063937496079" a="5.9639494391156873" b="-0.01409725911930858" c="-8.1041253225568117e-06" d="1.1469722146873463e-05" /> - <laneOffset s="18.872312625328611" a="5.8482631053556302" b="-0.011634861145525591" c="0.00028869997138868965" d="-2.6371616469477153e-05" /> - <laneOffset s="20.348127874992159" a="5.8316362290807859" b="-0.01095504007179438" c="0.00017468362563616453" d="-2.6981861566443871e-05" /> - <laneOffset s="24.903843179602827" a="5.7828024808410472" b="-0.011043410870475612" c="4.8276696753156198e-05" d="-1.7374173798549594e-05" /> - <laneOffset s="29.336217537944648" a="5.7332894795893798" b="-0.01163944614070349" c="-0.00023650667158901873" d="8.8693052133407708e-06" /> - <laneOffset s="30.522191812488238" a="5.7191675360048846" b="-0.012163002833137555" c="-0.00017249859792750771" d="2.2998159032003447e-05" /> - <laneOffset s="36.056809023971091" a="5.6504650196473269" b="-0.011958992279000298" c="0.00011520744648205811" d="-1.2823434909494161e-05" /> - <laneOffset s="40.415473016444096" a="5.5994666427739421" b="-0.011685548176645164" c="-5.4561532016992535e-05" d="1.9185440165424297e-06" /> - <laneOffset s="50.870319687480396" a="5.4735246696341564" b="-0.012197300516100981" c="8.5461554344274352e-06" d="2.560186514917363e-06" /> - <laneOffset s="61.044383624976476" a="5.353009398280868" b="-0.011228375421728798" c="7.7630811095787526e-05" d="2.7629646059494014e-06" /> - <laneOffset s="69.521483157963061" a="5.2650871148525944" b="-0.0093165572036334708" c="0.00049406414647843887" d="-3.8632376752142517e-05" /> - <laneOffset s="71.218447562472562" a="5.2505112136623655" b="-0.0079734862606705911" c="0.00027670365631246954" d="-4.5807493317181352e-05" /> - <laneOffset s="79.05168490261083" a="5.1830143174171139" b="-0.012070704829089856" c="-0.00099418338676932668" d="0.00015612142190797083" /> - <laneOffset s="81.392511499968634" a="5.1513137827096367" b="-0.014158739108728606" c="0.00010292866399487743" d="0.00015499760062305526" /> - <laneOffset s="83.092036021894245" a="5.1283088202891616" b="-0.012465801948462744" c="0.00068259395691682432" d="-7.1255339466318101e-05" /> - <laneOffset s="88.933497726521523" a="5.0645791841785437" b="-0.011785377369269733" c="-0.00052471154341655923" d="3.4887452288335039e-05" /> - <laneOffset s="91.566575437464707" a="5.0305463769613707" b="-0.013822955507235536" c="-0.00024994771524617998" d="3.5568600442356719e-05" /> - <laneOffset s="99.605033624305889" a="4.9217553286318738" b="-0.010946355530489222" c="-2.9632186545292858e-05" d="7.733249954460113e-05" /> - <laneOffset s="101.74063937496079" a="4.8989963079651062" b="-0.010014823908773781" c="0.00046555222122413557" d="7.3382645932064099e-05" /> - <laneOffset s="102.93793684602757" a="4.8877989140240157" b="-0.0085844281710322125" c="0.00094744180350871327" d="-0.00013028295588420237" /> - <laneOffset s="106.50622209313279" a="4.8633114348705915" b="-0.0067994885398371284" c="0.00026262181216951571" d="-1.8929687747963446e-05" /> - <laneOffset s="111.91470331245688" a="4.831223844091296" b="-0.0056198931485269459" c="-4.1570279650815915e-05" d="-1.8528169767819255e-05" /> - <laneOffset s="119.44918057317948" a="4.7785961453579908" b="-0.0094017545469179658" c="-0.00094182987234257322" d="0.00017691442966668702" /> - <laneOffset s="122.08876724995295" a="4.7504709286219597" b="-0.010675927460710222" c="0.00045651671068818876" d="0.00017748553288810863" /> - <laneOffset s="123.5264166436165" a="4.7365936109391393" b="-0.008262805167138839" c="0.00082909511000574319" d="-4.7753840489719138e-05" /> - <laneOffset s="130.42357499227379" a="4.7033762550211025" b="-0.0036410688712364466" c="-0.0014710029285326237" d="0.00089196341933172306" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929306358698762" b="-0.0065111115160566774" c="0.016729735867944979" d="-0.011164420511453065" /> - <width sOffset="0.77801879112873962" a="2.4927337705188197" b="-0.00075292840003358778" c="0.0005447466779816897" d="-9.0663685683161016e-05" /> - <width sOffset="3.7790025460166197" a="2.4929298521779941" b="6.7098250406547738e-05" c="-0.00020417106994797437" d="-0.00026488906603346177" /> - <width sOffset="4.7327139995617209" a="2.4925783560966872" b="-0.0010451442218473751" c="0.00025055977964719915" d="-1.0831828372522043e-05" /> - <width sOffset="10.174063937496079" a="2.4925649013421971" b="0.0007194869416830528" c="7.3645931839624537e-05" d="-1.0834381557547076e-05" /> - <width sOffset="18.872312625328611" a="2.4972650291827287" b="-0.00045850445544570739" c="-0.00020657911352838028" d="2.7006957058292241e-05" /> - <width sOffset="20.348127874992159" a="2.4962252360496837" b="-0.00089178372665682341" c="-8.5600926511979965e-05" d="2.6952129284672956e-05" /> - <width sOffset="24.903843179602827" a="2.4929342871743092" b="6.4066639116917151e-06" c="-0.00011276466977090724" d="1.7835541807100329e-05" /> - <width sOffset="29.336217537944648" a="2.4923004020637149" b="5.7964286125150241e-05" c="0.00017815356575865505" d="-8.4079372031857238e-06" /> - <width sOffset="30.522191812488238" a="2.4926057000376334" b="0.0004450572045908447" c="0.00012894515166623168" d="-2.197937904792256e-05" /> - <width sOffset="36.056809023971091" a="2.495292464422751" b="-0.0001474348883847322" c="-0.00014184522103929319" d="1.3842214893543631e-05" /> - <width sOffset="40.415473016444096" a="2.4931012907450238" b="-0.000595025009251203" c="4.1245316391475616e-05" d="-8.9976419593128888e-07" /> - <width sOffset="40.696255749984317" a="2.4929374498158348" b="-0.00057207587324339428" c="5.5568904201509335e-05" d="-1.1739889470828656e-06" /> - <width sOffset="50.870319687480396" a="2.4916327712360662" b="0.00019408295342788172" c="2.1317314767455027e-05" d="-8.4572353740974133e-07" /> - <width sOffset="61.044383624976476" a="2.4949233127757857" b="0.00036522386906622135" c="-7.0051090433446034e-06" d="-9.6720314244223801e-07" /> - <width sOffset="69.521483157963061" a="2.4969267605387682" b="3.7944672634227655e-05" c="-0.00037776989843436452" d="4.0428138215406771e-05" /> - <width sOffset="71.218447562472562" a="2.496100853111793" b="-0.00089491817233458906" c="-0.00016570659051469197" d="4.8590944433326528e-05" /> - <width sOffset="75.020166638120358" a="2.4929735595408813" b="-4.7993322520464843e-05" c="-0.0004933629208567356" d="8.3832844807845837e-05" /> - <width sOffset="79.05168490261083" a="2.4902545100047497" b="6.1644192854107271e-05" c="0.00071498215591512485" d="-0.00011809607041727378" /> - <width sOffset="81.392511499968634" a="2.4928017733141896" b="0.0014676313603435073" c="-0.00011463981934005626" d="-0.00011748710329541245" /> - <width sOffset="83.092036021894245" a="2.4943881950803739" b="5.9921524696743625e-05" c="-0.00050305508214809028" d="0.00010876583679395069" /> - <width sOffset="86.090999013042293" a="2.4929771645557883" b="-2.2717919151517274e-05" c="-0.0005404605219215125" d="9.433394840443854e-05" /> - <width sOffset="88.933497726521523" a="2.4907123271816669" b="-0.00080863658776889405" c="0.00022257134911549137" d="-1.1808843350190921e-05" /> - <width sOffset="91.566575437464707" a="2.4899106582346189" b="0.00011784311627663878" c="0.00012800985580447251" d="-1.1863287410944956e-05" /> - <width sOffset="99.17908051081443" a="2.4929924935036043" b="4.3536434443710442e-06" c="-8.9623333547606519e-05" d="-4.7056286458121077e-05" /> - <width sOffset="99.605033624305889" a="2.4929744503846569" b="-9.7610153406760963e-05" c="0.00048767994482109758" d="-8.8820185578155849e-05" /> - <width sOffset="101.74063937496079" a="2.49412509293703" b="0.00077009755191005322" c="-8.5555136316754397e-05" d="-8.6821832702441208e-05" /> - <width sOffset="102.93793684602757" a="2.4947754669141649" b="0.00019184483289512444" c="-0.00061571683160143906" d="0.00011684376911382519" /> - <width sOffset="106.50622209313279" a="2.4929289631012344" b="0.00026093407687232794" c="-7.4761395919735024e-05" d="5.4905009775850946e-06" /> - <width sOffset="111.91470331245688" a="2.4930219607940627" b="-6.5938181286711965e-05" c="1.346403869665009e-05" d="5.4247417652329236e-06" /> - <width sOffset="113.25294548463354" a="2.4929708333727687" b="-7.5651080155142436e-07" c="-0.00031937561215663571" d="3.9186565656374904e-05" /> - <width sOffset="119.44918057317948" a="2.4900265053488244" b="0.00055489889517098927" c="0.00089051127849857411" d="-0.00015625603377805882" /> - <width sOffset="122.08876724995295" a="2.4948220523816831" b="0.0019899590830008418" c="-0.00034502220040538581" d="-0.00015682032805198473" /> - <width sOffset="123.5264166436165" a="2.4965038380198354" b="2.5551573852497164e-05" c="-0.0006284726421151559" d="6.8419045325843105e-05" /> - <width sOffset="130.42357499227379" a="2.4892316432748922" b="0.0011204456990740676" c="0.0020992189666105285" d="-0.00087129821449537421" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16695258517701195" weight="standard" type="solid"> - <type name="solid"> - <line length="132.26283118744902" space="0" width="0.16695299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8214385494740015" b="8.8206797025985537e-10" c="-0.012402508040517592" d="0.010663200768197493" /> - <width sOffset="0.77801879112873962" a="3.8189529297248743" b="6.4962053264524741e-05" c="0.002612606013233694" d="-0.00041055605757248168" /> - <width sOffset="4.7327139995617209" a="3.8346771308228069" b="0.0014662679840025672" c="-0.0034708802619925262" d="-0.00066461345438435305" /> - <width sOffset="4.74943988504433" a="3.8347006813464062" b="0.0013496031051313234" c="-0.00032952237930351162" d="1.3903661931528587e-05" /> - <width sOffset="10.174063937496079" a="3.8345444783717664" b="-0.00099805669725491937" c="-0.00010366302484102189" d="1.3889504873057603e-05" /> - <width sOffset="18.872312625328611" a="3.8271607955457521" b="0.00035119000483798887" c="0.00025628468763914621" d="-2.3951833743419602e-05" /> - <width sOffset="19.847884904830156" a="3.8277250843983923" b="0.00078285063250131855" c="0.00020229411936662135" d="-3.2729827326212324e-05" /> - <width sOffset="20.348127874992159" a="3.8281632254216102" b="0.00096067182132100054" c="0.00015591807672223317" d="-3.3340072438315223e-05" /> - <width sOffset="24.903843179602827" a="3.8326234176636178" b="0.000305434763319316" c="-5.7387447897535031e-05" d="-2.3732384670424707e-05" /> - <width sOffset="28.168007113820622" a="3.8321835706459169" b="-0.00082779834143273737" c="-0.00049450118514515003" d="5.0562017728877578e-05" /> - <width sOffset="29.336217537944648" a="3.830622284275266" b="-0.001776152897554107" c="-0.00037105679763080367" d="7.6805496742223209e-05" /> - <width sOffset="30.522191812488238" a="3.8281220286133402" b="-0.0023321916768754766" c="-7.6901265539577835e-05" d="9.2966526123011521e-05" /> - <width sOffset="31.961098675617194" a="3.8248839664000993" b="-0.0019760507366251463" c="0.00021839874976474884" d="8.7117375023540596e-06" /> - <width sOffset="36.056809023971091" a="3.8210527787904685" b="0.00025135939564227203" c="0.00023128903406292547" d="-2.7109856439160822e-05" /> - <width sOffset="40.415473016444096" a="3.8242975375323431" b="0.0007224865271386223" c="-0.00012528907774917624" d="-1.2367877485646938e-05" /> - <width sOffset="40.696255749984317" a="3.8244902478329319" b="0.00064920329648754209" c="-0.00014764836498512001" d="-9.0925406379759739e-06" /> - <width sOffset="42.758401220981767" a="3.8251213991494373" b="-7.5738075923160661e-05" c="-5.8543664431027089e-05" d="1.8566064460908386e-06" /> - <width sOffset="50.870319687480396" a="3.8216456949849267" b="-0.00065902888711115437" c="-1.1247876993952144e-05" d="1.840913905825394e-06" /> - <width sOffset="53.500577091658357" a="3.8198679624265095" b="-0.00067999078055458288" c="6.486028551228108e-05" d="-1.5171422723779523e-06" /> - <width sOffset="61.044383624976476" a="3.8177780533441981" b="3.9578884480022392e-05" c="2.5222941419141207e-05" d="-1.380592004864175e-06" /> - <width sOffset="67.556157077051509" a="3.8187241062887223" b="0.00019244651536912995" c="-0.00019022238366332952" d="3.2041570683965809e-05" /> - <width sOffset="69.521483157963061" a="3.8186108215169119" b="-0.00018396917306610742" c="0.00034486157742287386" d="-9.3537706740241534e-06" /> - <width sOffset="71.218447562472562" a="3.8192460168540645" b="0.00090565864084357281" c="0.00028048951409410965" d="-1.6178883180636263e-05" /> - <width sOffset="75.901805197071155" a="3.8279777921573395" b="0.0024683290116393995" c="4.6317547004246786e-05" d="-9.5613175568474236e-05" /> - <width sOffset="79.05168490261083" a="3.8332241512774368" b="-8.5829410810292842e-05" c="-0.0010516165986624961" d="0.00010631573965673391" /> - <width sOffset="80.730261233328775" a="3.8306198552954296" b="-0.0027175952897497205" c="-0.00015820413916242998" d="0.00014582352611887178" /> - <width sOffset="81.392511499968634" a="3.8287930966039769" b="-0.0027352729156944477" c="0.00013226338830856711" d="0.00014469970483540793" /> - <width sOffset="83.092036021894245" a="3.8252367739187045" b="-0.0010318584087405033" c="0.00065942410198449011" d="-8.1553235253965393e-05" /> - <width sOffset="88.933497726521523" a="3.825454822253731" b="-0.0016763007188245055" c="-0.00072834568999423713" d="2.45895565006857e-05" /> - <width sOffset="91.566575437464707" a="3.8164401918345385" b="-0.0050004368911034207" c="-0.00053492734142838181" d="2.5270704655111483e-05" /> - <width sOffset="92.13610481965604" a="3.8134234534555951" b="-0.0055851598685724198" c="-0.00055806233581982975" d="5.3208317372512774e-05" /> - <width sOffset="99.605033624305889" a="3.7627462696549383" b="-0.0050167539876116232" c="-3.2695265684711303e-06" d="9.4972216474761996e-05" /> - <width sOffset="101.74063937496079" a="3.7529425878154461" b="-0.0037312675755585261" c="0.00060492932395083614" d="9.1022362861428713e-05" /> - <width sOffset="102.55869602899112" a="3.7503448591914452" b="-0.0025587936052553053" c="0.00086892241858854604" d="5.1030612890309783e-05" /> - <width sOffset="102.93793684602757" a="3.7495022151644317" b="-0.0018777136903648933" c="0.0011452881056847528" d="-0.00015263498890385918" /> - <width sOffset="106.50622209313279" a="3.7504497790330236" b="0.00046536753959085502" c="0.00022119282534499519" d="-4.1281720767618638e-05" /> - <width sOffset="111.91470331245688" a="3.7529059085173695" b="-0.00076467568424607325" c="-0.00044567091887726682" d="-4.088020278732403e-05" /> - <width sOffset="112.59981762891712" a="3.7521596822592365" b="-0.0014329119863939858" c="-0.00060108743492814497" d="9.5303692124671681e-05" /> - <width sOffset="115.19777477138395" a="3.7460511824714335" b="-0.0026263878996599572" c="-0.00044901343111997832" d="3.9889738735778804e-06" /> - <width sOffset="119.44918057317948" a="3.7270761903676668" b="-0.0062279689700119331" c="-0.00087959656240842188" d="0.00019943157330807077" /> - <width sOffset="122.08876724995295" a="3.7081761763421026" b="-0.0067029424084254071" c="0.00069722119986272591" d="0.00019999838729663054" /> - <width sOffset="123.5264166436165" a="3.7005750092236531" b="-0.0034581316700826046" c="0.0011668963736504207" d="-2.5240986081198167e-05" /> - <width sOffset="128.29833133731591" a="3.7079019573610124" b="0.0059542278895606121" c="0.013996046610144187" d="-0.002579743092788858" /> - <width sOffset="130.42357499227379" a="3.7590085696296716" b="0.030488774493653018" c="-0.0037637019476645609" d="-0.0016400258329674622" /> - <roadMark sOffset="0" color="standard" width="0.29837414416389263" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29837399999999997" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="90.587044525610679" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.2960153027938066" b="-2.0961541553345901e-10" c="-0.0040439851433456738" d="0.00050814387987023349" /> - <width sOffset="4.74943988504433" a="3.2592338736495519" b="-0.004026451172428426" c="2.1504663581981278e-05" d="-0.00017037307729375191" /> - <width sOffset="9.0563706449306647" a="3.2286796735919925" b="-0.013322297151779128" c="-0.070246317446978693" d="0.14961895335145789" /> - <width sOffset="9.3698292590986298" a="3.2222096980639021" b="-0.013257908232833722" c="0.001573192672497122" d="-5.9637425443139429e-05" /> - <width sOffset="10.174063937496079" a="3.2125337373457237" b="-0.010843195309505897" c="0.0014291010725293444" d="-5.9648457903628422e-05" /> - <width sOffset="19.847884904830156" a="3.1873779544089871" b="6.0329244654716216e-05" c="-0.00031809410254244268" d="-5.0870464305680592e-05" /> - <width sOffset="21.247576806356832" a="3.1866997102886039" b="-0.0011291249243090343" c="0.00039870111247989221" d="-1.9093336061042907e-05" /> - <width sOffset="28.168007113820622" a="3.1916522020310958" b="0.0016459670775467207" c="0.00020701336274508192" d="-9.3387738462062257e-05" /> - <width sOffset="30.522191812488238" a="3.1954559585126252" b="0.0010679459228493619" c="-0.00044097832408390887" d="-9.5419914024639805e-05" /> - <width sOffset="31.088621135462564" a="3.1959020488702565" b="0.00047653561663639488" c="-0.00069881850605199678" d="2.6205480334580769e-05" /> - <width sOffset="31.961098675617194" a="3.1958032671586905" b="-0.00068302710977351765" c="-0.00052421692485314392" d="0.00011046026895634707" /> - <width sOffset="34.697232851298502" a="3.1922725545376611" b="-0.0010708235075944633" c="0.00035450528641114802" d="-1.641796895484507e-05" /> - <width sOffset="40.696255749984317" a="3.1950621447551146" b="0.0014099839727151238" c="7.7441560807230006e-05" d="-2.0216987131300601e-05" /> - <width sOffset="42.758401220981767" a="3.1981217667600417" b="0.0014714606870357676" c="-0.00019298466958651302" d="-3.1166134215372363e-05" /> - <width sOffset="45.074596765345959" a="3.2001073753482974" b="7.5883564530988476e-05" c="-0.00026181123108952992" d="1.4588683165576918e-05" /> - <width sOffset="50.870319687480396" a="3.1945929650825917" b="-0.0014887678496631196" c="-5.9482790545038439e-06" d="1.5720891198291208e-05" /> - <width sOffset="53.500577091658357" a="3.1909220404549843" b="-0.0011937755038885691" c="5.6519762156848672e-05" d="1.9078947376502743e-05" /> - <width sOffset="56.953250929758156" a="3.1882593663732743" b="-0.00012116898282446033" c="0.00022101976306354281" d="-4.9687536823927769e-06" /> - <width sOffset="61.044383624976476" a="3.1911227024586211" b="0.0014377818173750122" c="0.00015146034409384133" d="-5.3639918593366346e-06" /> - <width sOffset="67.556157077051509" a="3.2054265088269971" b="0.0027279815587105995" c="0.00023514806271967561" d="-3.878615454823565e-05" /> - <width sOffset="71.218447562472562" a="3.2166658869858233" b="0.0028896996310761053" c="-0.00020343237401583702" d="-3.513955817814102e-05" /> - <width sOffset="72.376432749201797" a="3.2196847639540263" b="0.0022771972490083121" c="-9.3937382352746759e-05" d="-3.7949929250740502e-05" /> - <width sOffset="75.901805197071155" a="3.2248825087433026" b="0.00019991500320229796" c="-0.00048844280839001146" d="4.1484363137043979e-05" /> - <width sOffset="80.730261233328775" a="3.2191301581040412" b="-0.0016154364548520567" c="-0.00024556174457800758" d="1.9765766724314235e-06" /> - <width sOffset="81.392511499968634" a="3.2179532116270204" b="-0.0019380824826917466" c="-0.00024134624473991334" d="1.6879625401578071e-06" /> - <width sOffset="83.274430001458214" a="3.2134623926521857" b="-0.0028285360574444914" c="-0.00036174334456635454" d="3.0144198208976031e-05" /> - <width sOffset="91.566575437464707" a="3.182321578944177" b="-0.0026096770045210228" c="0.00038669553931105203" d="3.0597141932235169e-05" /> - <width sOffset="92.13610481965604" a="3.1809663735674607" b="-0.0021394342532450508" c="0.00050528567415525946" d="2.6595292142748156e-06" /> - <width sOffset="94.4467698214915" a="3.1787534759348026" b="0.00023825665088519476" c="0.00017192676833987591" d="-9.2418414601597735e-06" /> - <width sOffset="101.74063937496079" a="3.1860517012394047" b="0.0012712668164328571" c="-3.0490250604627397e-05" d="-9.4316743553627174e-06" /> - <width sOffset="102.55869602899112" a="3.1870661014953643" b="0.001202445809995757" c="-9.4245928315251861e-05" d="3.0560075594653339e-05" /> - <width sOffset="109.73183817935043" a="3.2021214044893807" b="0.0045676784117277408" c="0.00078487086005956828" d="-7.0798202485843273e-05" /> - <width sOffset="111.91470331245688" a="3.2150954801178582" b="0.0069821737752702355" c="0.00032296217000432837" d="-7.019609952641916e-05" /> - <width sOffset="112.59981762891712" a="3.2200080861732427" b="0.0073258595098262954" c="0.00025007879125101115" d="-0.00020637999443686605" /> - <width sOffset="113.46201970287242" a="3.2263780839303577" b="0.0072968324465193159" c="-3.0770908564695408e-05" d="-0.00010673742220061071" /> - <width sOffset="115.19777477138395" a="3.2383926998551615" b="0.006225260788485355" c="4.129745849492804e-06" d="-1.5422703949562686e-05" /> - <width sOffset="122.08876724995295" a="3.2764403483662807" b="0.0040850996264850002" c="-0.00031525512850223583" d="-1.5381859342970888e-05" /> - <width sOffset="126.47359572474805" a="3.2869947061344078" b="0.00043319215515668242" c="0.00059314707893023456" d="-0.0002303709963717094" /> - <width sOffset="128.29833133731591" a="3.2883604690072321" b="0.0002966940381030226" c="-0.013858445138203248" d="0.0023241311103360269" /> - <roadMark sOffset="0" color="standard" width="0.1548799288915175" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.15487999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="90.587044170280436" max="40" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.5895597626818878" b="-2.1809967534576675e-09" c="0.0013574218396024212" d="-0.0023675325765857929" /> - <width sOffset="0.54446491146807841" a="3.5895800332163779" b="-0.00062737361657248347" c="-0.0005599153405387706" d="8.9631876087471662e-05" /> - <width sOffset="7.8247941322358212" a="3.5899224565573338" b="0.0054722173866400738" c="0.0024178708808221929" d="6.5152533738698762e-05" /> - <width sOffset="9.0563706449306647" a="3.6004509978510986" b="0.011724269680226215" c="0.070725058840509544" d="-0.14972417389501289" /> - <width sOffset="9.3698292590986298" a="3.6064638565444209" b="0.011928996244039121" c="-0.0011933981362614542" d="-4.5583118112235616e-05" /> - <width sOffset="10.174063937496079" a="3.6152619758037918" b="0.0099210033291146325" c="-0.0013049136597222627" d="-4.5477728685367239e-05" /> - <width sOffset="12.199425308973893" a="3.6296248825447268" b="0.0040754988612933529" c="-0.001030754776562094" d="4.0678507172100655e-05" /> - <width sOffset="18.29560412755237" a="3.6253794115853806" b="-0.0039565775756294254" c="-0.00071822619961015033" d="0.00020974002579109952" /> - <width sOffset="20.348127874992159" a="3.6160462785236347" b="-0.0042541180847491221" c="0.00057592450063441024" d="0.00020828779560413157" /> - <width sOffset="21.247576806356832" a="3.6128374073619698" b="-0.0027125690150946093" c="0.00020755306038213091" d="0.00017651066736075105" /> - <width sOffset="21.785529645650222" a="3.6114657167820852" b="-0.0023360185078931395" c="0.00018054869228807555" d="-7.5705071588466269e-06" /> - <width sOffset="28.329679011602742" a="3.6017889183774381" b="-0.00094558442904083342" c="0.00030302539440031878" d="1.7974483487206042e-05" /> - <width sOffset="30.522191812488238" a="3.6013618344004854" b="0.00064240576978840357" c="0.0004371637054833181" d="2.1446820838190653e-05" /> - <width sOffset="31.088621135462564" a="3.6018698700466141" b="0.0011582935873615894" c="0.00056930230017655868" d="-0.00010017857352222575" /> - <width sOffset="34.697232851298502" a="3.6087556471387696" b="0.001353475737918889" c="-0.00048723428251266725" d="2.6699664388971373e-05" /> - <width sOffset="39.482188904805369" a="3.6070014411115494" b="-0.0014753826383418905" c="-0.00046139806281324903" d="0.00013441128429434341" /> - <width sOffset="40.696255749984317" a="3.6047706732903935" b="-0.0020013689331843214" c="8.5963363202912614e-05" d="0.00014750337895404249" /> - <width sOffset="43.02713398340191" a="3.6024406949491992" b="0.00080352595716028097" c="0.0015999724511691134" d="-0.00025916777525106645" /> - <width sOffset="45.074596765345959" a="3.608568652319402" b="0.0040959193687867892" c="-0.00013967069325675614" d="-0.00030492259263287187" /> - <width sOffset="46.078902151642552" a="3.6122324522464107" b="0.0028927137180270006" c="-0.00062427047854959417" d="3.2541003185706933e-05" /> - <width sOffset="50.870319687480396" a="3.6153403534989899" b="-0.00084836930846682833" c="-0.00015254352100278336" d="3.4164411876071809e-05" /> - <width sOffset="55.796067909588722" a="3.6115434423828785" b="0.00013564165649299943" c="0.0012387107370318146" d="-0.0004600418701917333" /> - <width sOffset="56.953250929758156" a="3.6126462693362655" b="0.0011543834102170341" c="-0.00032522703873798329" d="-0.00043599416913257214" /> - <width sOffset="58.868844671191418" a="3.6105994577989695" b="-0.0048912633525322827" c="-0.0037532086831455979" d="0.0011788136123060426" /> - <width sOffset="60.815835845503443" a="3.5955490003035209" b="-0.0061003415002413445" c="0.0018209788185972013" d="-0.00018522613951369658" /> - <width sOffset="61.044383624976476" a="3.5942476867397408" b="-0.0052970055244674968" c="0.0016988000894704518" d="-0.00018476467353169737" /> - <width sOffset="65.844631388656737" a="3.5875284835194239" b="-0.0017599355378571067" c="1.6904927913675936e-06" d="1.0570968188795848e-05" /> - <width sOffset="71.218447562472562" a="3.5797601820474299" b="-0.00082596464751135551" c="0.00017162491663133848" d="5.702005472961923e-06" /> - <width sOffset="72.376432749201797" a="3.5790427181089224" b="-0.00040554845990810849" c="-4.0134824930252497e-05" d="8.5123765455701361e-06" /> - <width sOffset="81.392511499968634" a="3.5783625553124589" b="0.00094663905081307682" c="0.00018973371653965886" d="8.6122793256550927e-06" /> - <width sOffset="83.274430001458214" a="3.5808734182024229" b="0.0017522700248058867" c="0.0003682834635774315" d="-1.9843956343167221e-05" /> - <width sOffset="89.038496600659855" a="3.5994093630895616" b="0.0040199764225573005" c="8.1902617709263313e-05" d="-3.3118330236715703e-05" /> - <width sOffset="91.566575437464707" a="3.6095605284378949" b="0.0037990930832199508" c="-0.00017139050076113424" d="-3.1048552606964553e-05" /> - <width sOffset="93.436129341046495" a="3.6158612006934772" b="0.0028326798586524342" c="-0.00050663742674111716" d="-7.910899271903527e-06" /> - <width sOffset="94.4467698214915" a="3.6181983789842453" b="0.0017843828344644881" c="-0.00017882790281794931" d="3.9904714026542952e-06" /> - <width sOffset="101.74063937496079" a="3.6232481483937025" b="-0.00018742633950442986" c="-9.182262216586294e-05" d="3.7692889579958102e-06" /> - <width sOffset="109.73183817935043" a="3.6178101761993839" b="-0.00093286000455846708" c="-0.00022294069919849389" d="0.0001051275670388874" /> - <width sOffset="110.60038449246944" a="3.6169006440885951" b="-0.0010822125500713781" c="0.00025087873599765465" d="-4.0429714843194609e-05" /> - <width sOffset="111.91470331245688" a="3.6158198566326369" b="-0.00063226224886711764" c="9.4743047428418761e-05" d="-3.8252493196382184e-05" /> - <width sOffset="113.46201970287242" a="3.6149266706610992" b="-0.00061381829046274969" c="-0.00033579715952152417" d="-0.00013789506536253011" /> - <width sOffset="113.66290163870265" a="3.614788697227751" b="-0.00076542312450925305" c="-0.00094733641020813223" d="0.00029532908636899859" /> - <width sOffset="116.73439259312852" a="3.6120581202741033" b="0.0017735604689224655" c="0.0029568219053275986" d="-0.00052408163002158018" /> - <width sOffset="120.819853166402" a="3.632918888617469" b="-0.00030880164197242752" c="-0.0029252934643392995" d="0.0010161852176328186" /> - <width sOffset="122.08876724995295" a="3.6298931068334221" b="-0.0028240833962418135" c="0.0009434500795508894" d="0.0010161486622629571" /> - <width sOffset="122.3541922837054" a="3.6292289921655043" b="-0.0021084884707019951" c="0.00072104061518117612" d="-6.6388423359383319e-05" /> - <width sOffset="126.47359572474805" a="3.6281381386476474" b="0.00045229390654638081" c="-0.0012101441356741959" d="0.00014860071366930354" /> - <width sOffset="131.45494947761256" a="3.6187308467358257" b="-0.00054193500308188621" c="0.0044761884241441363" d="-0.0034169879475896424" /> - <roadMark sOffset="0" color="standard" width="0.30227353281168834" weight="bold" type="solid"> - <type name="solid"> - <line length="132.26283118744902" space="0" width="0.30227399999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="90.587044057988862" max="40" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929306358699277" b="0.0011672031342017531" c="-0.0025199287509894159" d="0.0025059551611876546" /> - <width sOffset="0.54446491146807841" a="2.4932235911009721" b="0.0006517889446083574" c="-0.00037649285003687094" d="4.8790708514364053e-05" /> - <width sOffset="4.5431172848969421" a="2.4929294915297673" b="-1.8762877360115407e-05" c="-0.00017480088709645404" d="6.0392205680478021e-05" /> - <width sOffset="7.8247941322358212" a="2.4931197798747906" b="0.00078512106496080036" c="-0.00060037529925782772" d="8.4871548029359748e-05" /> - <width sOffset="10.174063937496079" a="2.4927511545397829" b="-0.00063053036793431043" c="-1.4072433398398573e-06" d="8.4740852059557206e-05" /> - <width sOffset="12.199425308973893" a="2.4921723750130598" b="0.00040661275065682033" c="-3.7000086283089775e-05" d="-1.4153837979138626e-06" /> - <width sOffset="18.29560412755237" a="2.4929554483214558" b="-0.0002023069404326755" c="0.00036853639994258663" d="-0.00017047690240422906" /> - <width sOffset="18.795488073581925" a="2.4929251148867531" b="3.8345589166150287e-05" c="0.00071636995632055401" d="-0.0001536292480581437" /> - <width sOffset="20.348127874992159" a="2.4941365738137113" b="0.0011518169639400128" c="5.6721211764537141e-07" d="-0.00015255130553521948" /> - <width sOffset="21.785529645650222" a="2.4953403149805657" b="0.00020787791506678144" c="-0.00034539772585077434" d="3.1529868982939963e-05" /> - <width sOffset="28.329679011602742" a="2.4907452641745715" b="-0.00026190651246557443" c="2.506499505607984e-06" d="5.9848783369144316e-06" /> - <width sOffset="30.522191812488238" a="2.4902461583736493" b="-0.00016460549968477962" c="3.3834762742652487e-05" d="2.374220647815343e-06" /> - <width sOffset="39.482188904805369" a="2.4931954308799886" b="0.0010135315778499639" c="0.00045508773557851516" d="-0.00010533739925686216" /> - <width sOffset="40.696255749984317" a="2.4949082067313988" b="0.0016527566374272204" c="3.2580519310879621e-05" d="-0.00012010860156098401" /> - <width sOffset="43.02713398340191" a="2.49741657814545" b="-0.00015300861270369816" c="-0.0012898668976506508" d="0.00028656255264413816" /> - <width sOffset="46.078902151642552" a="2.4930814087214488" b="-1.923852435785009e-05" c="-3.0204642630256556e-07" d="2.9908256271930745e-07" /> - <width sOffset="50.870319687480396" a="2.4930151936667562" b="-1.5342583428758216e-06" c="7.0617912776038433e-06" d="1.0998155321716852e-06" /> - <width sOffset="55.796067909588722" a="2.4933104192082984" b="0.0001480894113988513" c="-0.00086308435037307665" d="0.00049530609759944257" /> - <width sOffset="56.796075210999213" a="2.493090729694055" b="-9.2151901339656075e-05" c="-0.0019291702831862767" d="0.0006390273250506392" /> - <width sOffset="58.868844671191418" a="2.4903020728136935" b="0.00014689729320843843" c="0.0029669172269265352" d="-0.00097578045638804865" /> - <width sOffset="60.815835845503443" a="2.4946331452334523" b="0.00060312920077014182" c="-0.0014213589867548831" d="0.00038825929543684844" /> - <width sOffset="61.044383624976476" a="2.4947013807168688" b="1.4273430263759927e-05" c="-0.001202966318989823" d="0.00039645507739365711" /> - <width sOffset="63.065956367528628" a="2.4930893883477969" b="1.11515080674085e-05" c="-0.00071388870869491122" d="0.00019607133068726235" /> - <width sOffset="65.844631388656737" a="2.4918149778564116" b="0.00058544280815576825" c="-4.3072217978585957e-05" d="7.356889667027322e-07" /> - <width sOffset="71.218447562472562" a="2.4938313722172474" b="0.00018625390275663588" c="-3.2091321532784089e-05" d="1.0771186658853418e-06" /> - <width sOffset="81.392511499968634" a="2.4935388576782218" b="-0.00013226165629028931" c="9.9981582117838582e-07" d="9.3550796254070905e-07" /> - <width sOffset="87.848594541405475" a="2.4929783802713628" b="-2.3731230744984677e-06" c="-0.00010477668753313776" d="2.6258316557784339e-06" /> - <width sOffset="89.038496600659855" a="2.4928316304938241" b="-0.00024056763112792826" c="-0.00015216805204219916" d="1.5900205549566768e-05" /> - <width sOffset="91.566575437464707" a="2.4915078289450632" b="-0.00070508994376224099" c="-2.8421591024813581e-05" d="1.4053148041204854e-05" /> - <width sOffset="93.436129341046495" a="2.4901821158763147" b="-0.00066400430695188681" c="0.00021150386010895301" d="-9.0845052940122997e-06" /> - <width sOffset="101.74063937496079" a="2.494051351043435" b="0.00096933190949657997" c="-1.4636908496614645e-05" d="-9.0515723948504155e-06" /> - <width sOffset="110.60038449246944" a="2.495195575603625" b="-0.0014215384417825307" c="-0.00045511573440908928" d="0.00013650570948654222" /> - <width sOffset="111.91470331245688" a="2.4928509609221363" b="-0.0019104589966595191" c="8.0485571668266245e-05" d="0.00013395718490897735" /> - <width sOffset="113.66290163870265" a="2.490472791188763" b="-0.00040085071747951624" c="0.0013114741186302445" d="-0.00029926696689387184" /> - <width sOffset="116.41436925999731" a="2.4930646877651128" b="1.9238210021105956e-05" c="0.0010058712667497681" d="-0.00066405948788808371" /> - <width sOffset="116.73439259312852" a="2.4931520960187674" b="0.00045901393561082957" c="-0.00081452878887289942" d="0.00015535122846569826" /> - <width sOffset="120.819853166402" a="2.4920255473750208" b="0.0015824599450919713" c="0.00054828602761518601" d="-0.0013849156191805272" /> - <width sOffset="121.57032065749752" a="2.4929365731026198" b="6.5442148064845732e-05" c="0.0015122132718479019" d="-0.0010859858630528278" /> - <width sOffset="122.3541922837054" a="2.4933939889095349" b="0.0004343368622341014" c="-1.0063898384617175e-05" d="-3.4487774319992209e-06" /> - <width sOffset="131.45494947761256" a="2.4939137056516003" b="-0.0006057636944467623" c="-0.0035698577481341502" d="0.0035621398838289564" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423398" type="poles" s="90.586143771300215" t="-9.2473855673687027" zOffset="-2.4161857650212482" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.4838142349787518" name="SgPoleSign01.flt" /> - <object id="5176805" s="0" t="7.1717934610539462" orientation="none" validLength="35.914838621039685" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="35.914838621039685" s="0" distance="0" tStart="7.1717934610539462" tEnd="6.6090087897642276" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273612261" s="35.914838621039685" t="6.6090087897642276" orientation="none" validLength="40.104679552610115" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="40.104679552610115" s="35.914838621039685" distance="0" tStart="6.6090087897642276" tEnd="6.132650918896287" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542047717" s="76.0195181736498" t="6.132650918896287" orientation="none" validLength="56.243313013799224" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="56.243313013799224" s="76.0195181736498" distance="0" tStart="6.132650918896287" tEnd="5.7047264556499115" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="8723316" s="0" t="-8.1132187167919785" orientation="none" validLength="8.4953938936086271" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.4953938936086271" s="0" distance="0" tStart="-8.1132187167919785" tEnd="-8.0572015129147818" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="277158772" s="8.4953938936086271" t="-8.0572015129147818" orientation="none" validLength="34.892971669341343" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="34.892971669341343" s="8.4953938936086271" distance="0" tStart="-8.0572015129147818" tEnd="-8.2588773921909162" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="545594228" s="43.388365562949971" t="-8.2588773921909162" orientation="none" validLength="30.590203330388377" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="30.590203330388377" s="43.388365562949971" distance="0" tStart="-8.2588773921909162" tEnd="-8.6547871240416896" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="814029684" s="73.978568893338348" t="-8.6547871240416896" orientation="none" validLength="16.000078864517619" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.000078864517619" s="73.978568893338348" distance="0" tStart="-8.6547871240416896" tEnd="-8.9768099747782397" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1082465140" s="89.978647757855967" t="-8.9768099747782397" orientation="none" validLength="5.1528209291109164" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.1528209291109164" s="89.978647757855967" distance="0" tStart="-8.9768099747782397" tEnd="-9.2289785155593353" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412790" s="10.633204757893251" t="-8.2271394739041579" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848246" s="60.791863436823064" t="-8.8903845792335741" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283702" s="107.87689121149968" t="-9.6168771651650555" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412818" s="8.9041930641470977" t="7.1693493041500904" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848274" s="59.570294218489202" t="6.4146519901674885" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283730" s="108.32078858261445" t="5.9450408098113767" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8227235" type="274" subtype="54" value="40" unit="km/h" country="DEU" zOffset="1.4838142349787518" s="90.587044993232453" t="-9.2273019276632429" orientation="+" name="Sg274Hoechstgeschw40_03.flt" height="0.76000000000000001" /> - <signal dynamic="no" id="8987942" type="1000" subtype="21" country="DEU" zOffset="1.0831239534381609" s="90.586143771300215" t="-9.2473855673687027" orientation="+" name="Sg1000-20RichtRechts03.flt" height="0.40999999999999998" /> - </signals> - </road> - <road name="" length="355.57614811633607" id="4940815" junction="-1"> - <link> - <predecessor elementType="road" elementId="4940811" contactPoint="end" /> - <successor elementType="road" elementId="33782160" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-634.52360555621135" y="-243.70117648784071" hdg="4.4082425118647688" length="264.00055642571562"> - <paramPoly3 aU="0" bU="263.88022080852039" cU="5.1142760581327966" dU="-4.9988443133772318" aV="0" bV="-1.4210854715202004e-14" cV="-4.5750494488964719" dV="3.1242583271574134" /> - </geometry> - <geometry s="264.00055642571562" x="-714.96894449150307" y="-495.14571670594717" hdg="4.4091018924516314" length="91.575591690620456"> - <paramPoly3 aU="0" bU="137.68220451036359" cU="-117.63115266237281" dU="71.391036761783425" aV="0" bV="-2.1316282072803006e-14" cV="6.7973721932883464" dV="-2.4304936769889665" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="157.19690745860089" b="0.00092183810512682816" c="6.0454047723704343e-05" d="-1.0626750477385856e-07" /> - <elevation s="10.159318517609602" a="157.21240084578989" b="0.0021172777918528293" c="9.6047120537388458e-05" d="-3.9285602140322193e-06" /> - <elevation s="20.318637035219204" a="157.23970480161907" b="0.0028524036159988256" c="5.0355824139866324e-05" d="-3.572178926926706e-06" /> - <elevation s="30.477955552828806" a="157.27013494360409" b="0.002769492784835043" c="1.3604939074585411e-05" d="9.8963340142155215e-07" /> - <elevation s="40.637274070438409" a="157.30071298360448" b="0.0033523519975767807" c="0.00011095055221555939" d="-1.0626750477384734e-07" /> - <elevation s="50.796592588048014" a="157.34611056832429" b="0.0055738118306201071" c="0.0014656318321886138" d="-9.3158833376172438e-05" /> - <elevation s="60.955911105657613" a="157.45632440225799" b="0.0065081936275912348" c="-8.7073252887095214e-05" d="-1.0626750477383932e-07" /> - <elevation s="71.115229623267211" a="157.5133448032789" b="0.0047060796404207374" c="-0.00020658754026217622" d="1.1190373721551591e-05" /> - <elevation s="81.274548140876817" a="157.55156689344292" b="0.0039734366507611545" c="6.4523223693037975e-05" d="-4.517707836124391e-06" /> - <elevation s="91.433866658486423" a="157.59385676443097" b="0.0038856189808909218" c="-4.6352483844324462e-05" d="1.6657446950318114e-06" /> - <elevation s="101.59318517609603" a="157.6302945192356" b="0.0034595729747632234" c="-3.3376982110178244e-05" d="1.8417523997279669e-06" /> - <elevation s="111.75250369370562" a="157.66392771606485" b="0.0033516696698149872" c="2.2919631105487495e-06" d="-3.9988662560872203e-08" /> - <elevation s="121.91182221131523" a="157.69817302278133" b="0.0033858573364981635" c="-1.9201378033880602e-05" d="1.8231159042892207e-06" /> - <elevation s="132.07114072892483" a="157.73250086640101" b="0.0035602124694535751" c="1.7648254832779323e-05" d="-1.9347886268218322e-07" /> - <elevation s="142.23045924653442" a="157.77028883177925" b="0.0038588930760978628" c="4.3495468730323892e-05" d="-3.1436805023047242e-06" /> - <elevation s="152.38977776414404" a="157.81068545823479" b="0.003769267393792566" c="-1.9844669844465386e-05" d="-2.6521221474724798e-07" /> - <elevation s="162.54909628175363" a="157.84665235190522" b="0.0032839316975409654" c="-0.00016805817211270848" d="1.3845962250079221e-05" /> - <elevation s="172.70841479936323" a="157.87718761850837" b="0.0041564167942813581" c="8.4485793168306508e-05" d="-6.1019157926198745e-06" /> - <elevation s="182.86773331697285" a="157.92173567605028" b="0.0039836846881751223" c="-0.00012854473291763822" d="8.5526113653677687e-06" /> - <elevation s="193.02705183458244" a="157.95790780581297" b="0.0040200209458609894" c="-1.2744487060200396e-05" d="-1.0626750477352948e-07" /> - <elevation s="203.18637035219206" a="157.99732167023353" b="0.0037281661728030659" c="6.6527060118531635e-06" d="-1.0626750477358535e-07" /> - <elevation s="213.34568886980165" a="158.03577250734898" b="0.0038304359252782343" c="0.00015969556481362212" d="-9.5302290056906316e-06" /> - <elevation s="223.50500738741124" a="158.08117655799296" b="0.0041243372237236096" c="-0.00010358056053150813" d="6.6417496745304221e-06" /> - <elevation s="233.66432590502086" a="158.11935056247148" b="0.0040762412859299104" c="6.9101321721556976e-05" d="-3.9264240142170025e-06" /> - <elevation s="243.82364442263045" a="158.16377736921257" b="0.0042645266470944" c="0.00034279819561645609" d="-3.5005858761860682e-05" /> - <elevation s="253.98296294024004" a="158.20577707560363" b="0.00039067064297587716" c="-6.5517493700944292e-05" d="-1.0626750710826174e-07" /> - <elevation s="256.00060302278098" a="158.20629772222026" b="0.00012499139610681225" c="-0.00029759522435122201" d="4.4453903985383749e-06" /> - <elevation s="264.14228145784966" a="158.18998780758386" b="-0.0038368440284798824" c="-0.00051703623908084596" d="2.668809857542959e-05" /> - <elevation s="274.30159997545928" a="158.12562797175107" b="-0.0060787394104346703" c="5.7967658715335867e-05" d="-3.5092600476176997e-07" /> - <elevation s="284.46091849306885" a="158.06948709820597" b="-0.0050095746573191931" c="6.5777809425470013e-05" d="7.4201616119429987e-06" /> - <elevation s="286.00115193588107" a="158.06195434245049" b="-0.0047541393212039923" c="0.0001562292191213295" d="1.5059651007015534e-06" /> - <elevation s="294.62023701067847" a="158.03354833490675" b="-0.0017254052183499782" c="0.0001647819675009998" d="-1.4524932519071552e-06" /> - <elevation s="304.77955552828809" a="158.03150380152803" b="0.0011729966461252559" c="0.00026521816568335051" d="-6.9758374308392511e-06" /> - <elevation s="314.93887404589765" a="158.06347968824869" b="0.0044019030655462286" c="0.00017251714798868052" d="-7.7645591076878129e-06" /> - <elevation s="325.09819256350727" a="158.11786420638441" b="0.0055030351135537531" c="9.8516525926751175e-06" d="-2.4552730434622688e-06" /> - <elevation s="335.25751108111689" a="158.17221359551638" b="0.0049429681639518129" c="-6.4062022866076665e-05" d="-5.7270223079542109e-07" /> - <elevation s="345.41682959872645" a="158.21521831658774" b="0.0034639863704747265" c="-9.0620620644206896e-05" d="-1.4688061011998742e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025097878457887121" b="5.2856386824371488e-05" c="1.2735809976448002e-06" d="-2.0679809743207834e-22" /> - <superelevation s="10.159318517609602" a="0.025766311854352034" b="7.8733816850468891e-05" c="9.108234633686649e-06" d="-7.7117905324669915e-07" /> - <superelevation s="20.318637035219204" a="0.026697642304869224" b="2.5016505112869109e-05" c="-1.2312098035664955e-06" d="0" /> - <superelevation s="30.477955552828806" a="0.026824717626688747" b="0" c="-7.531854332091262e-05" d="4.9424931531486557e-06" /> - <superelevation s="40.637274070438409" a="0.024233464669974034" b="0" c="6.9482131942336829e-06" d="-2.0320127760571156e-07" /> - <superelevation s="50.796592588048014" a="0.024737532982929449" b="7.8259941873508627e-05" c="-4.8838266918520153e-06" d="7.5824641859295052e-07" /> - <superelevation s="60.955911105657613" a="0.025823600023299208" b="0.00021380706559937676" c="5.884012085771606e-05" d="-3.8495030116017053e-06" /> - <superelevation s="71.115229623267211" a="0.030032287109169709" b="0.00021741626537384744" c="-1.070033708447035e-05" d="0" /> - <superelevation s="81.274548140876817" a="0.031136687654590735" b="0" c="-4.5987867355863482e-06" d="0" /> - <superelevation s="91.433866658486423" a="0.030662038815123076" b="-9.3441078482760318e-05" c="-4.8179423171468753e-05" d="2.7440668329195331e-06" /> - <superelevation s="101.59318517609603" a="0.027617380081412977" b="-0.00022272144806760179" c="8.0595157462332157e-07" d="6.6641509670635846e-07" /> - <superelevation s="111.75250369370562" a="0.026136642551879051" b="0" c="1.9063355915628286e-05" d="-7.9538399845044642e-07" /> - <superelevation s="121.91182221131523" a="0.027270196231912826" b="0.00014106247977322873" c="5.0096738902001713e-06" d="-2.0743879021562199e-07" /> - <superelevation s="132.07114072892483" a="0.029002839877679237" b="0.00017862186183836617" c="1.9966472445680557e-05" d="-1.8871021720271342e-06" /> - <superelevation s="142.23045924653442" a="0.030899549009161659" b="0" c="-1.6666392638725071e-06" d="-5.1699524358019315e-23" /> - <superelevation s="152.38977776414404" a="0.030727532249548332" b="-3.3863838271270456e-05" c="-4.338705194275056e-05" d="2.7353237717778403e-06" /> - <superelevation s="162.54909628175363" a="0.028773599076301004" b="-6.847691631606068e-05" c="3.3701530372025088e-06" d="0" /> - <superelevation s="172.70841479936323" a="0.028425759674321725" b="0" c="5.1737651045410585e-05" d="-3.3950867180530643e-06" /> - <superelevation s="182.86773331697285" a="0.030205737556709557" b="0" c="-8.6602744751285702e-05" d="5.6829759857857426e-06" /> - <superelevation s="193.02705183458244" a="0.027226263864019738" b="0" c="9.6031390465747788e-06" d="-6.3016950267081455e-07" /> - <superelevation s="203.18637035219206" a="0.027556649468294562" b="0" c="-6.2284366688807211e-07" d="4.0871748487753384e-08" /> - <superelevation s="213.34568886980165" a="0.027535221206113254" b="0" c="4.3268493465700973e-05" d="-2.8393304393860561e-06" /> - <superelevation s="223.50500738741124" a="0.029023826889150381" b="0" c="-6.3997143579164417e-05" d="3.5903782583057472e-06" /> - <superelevation s="233.66432590502086" a="0.026183300401202387" b="-0.00018862703253368988" c="1.5581956777167471e-05" d="-6.5235750756184956e-07" /> - <superelevation s="243.82364442263045" a="0.025191182680067845" b="-7.4015793790013608e-05" c="-3.0468365807863566e-07" d="2.5903558563844923e-07" /> - <superelevation s="253.98296294024004" a="0.02467940035230947" b="0" c="3.7888801977113733e-05" d="-1.9609732665258081e-06" /> - <superelevation s="264.14228145784966" a="0.026533769785376984" b="0.00016266235131582379" c="4.9384252792492555e-06" d="-6.7858167144697225e-07" /> - <superelevation s="274.30159997545928" a="0.027984477627991011" b="5.2891611024027191e-05" c="-2.603108216970886e-06" d="0" /> - <superelevation s="284.46091849306885" a="0.028253148989642311" b="0" c="-4.8330043118254233e-05" d="3.1714753986356872e-06" /> - <superelevation s="294.62023701067847" a="0.026590406169527864" b="0" c="3.7385922154115853e-05" d="-2.4533090541006329e-06" /> - <superelevation s="304.77955552828809" a="0.027876628353998349" b="0" c="-2.1852693670001627e-05" d="9.7374241139958218e-07" /> - <superelevation s="314.93887404589765" a="0.026642201923826068" b="-0.00014251196792255892" c="-1.984629081409438e-05" d="1.7499909798382032e-06" /> - <superelevation s="325.09819256350727" a="0.024980979404605072" b="-3.9026385328865023e-06" c="5.7621559843623279e-07" d="-3.7811958708158906e-08" /> - <superelevation s="335.25751108111689" a="0.024961155330647727" b="-3.9026385328865023e-06" c="-3.8961445253745747e-05" d="2.5693007558873034e-06" /> - <superelevation s="345.41682959872645" a="0.023594296880701231" b="0" c="1.254245420675019e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.9900999887487456" b="6.5543300667248496e-05" c="-0.0086638141795987687" d="0.0053702157359992522" /> - <laneOffset s="1.0624523452258705" a="1.9868303765515425" b="-0.0001584571926890967" c="0.0002894100396536374" d="-0.00025465800722923089" /> - <laneOffset s="1.6572910738591329" a="1.9867849241342723" b="-8.4471899013532413e-05" c="-1.4016889400109546e-06" d="-5.5018489322887972e-07" /> - <laneOffset s="10.159318517609602" a="1.9856272972544649" b="-0.00022761576599192415" c="-1.103865707535403e-05" d="-8.6942257398381228e-07" /> - <laneOffset s="15.28168857674876" a="1.9840548712856607" b="-0.0004091414281120635" c="-0.00070513848799400318" d="5.8324795210946848e-05" /> - <laneOffset s="20.318637035219204" a="1.9715575069058331" b="-0.003073385016267108" c="0.00017971583881677903" d="5.8416797368988854e-05" /> - <laneOffset s="23.423890917393891" a="1.9654959525743407" b="-0.00026738867983646286" c="1.0375811293607112e-05" d="-1.8379326133475591e-08" /> - <laneOffset s="30.477955552828806" a="1.9641196228184239" b="-0.00012374904913112637" c="3.2471024848926147e-06" d="7.6068275600179423e-07" /> - <laneOffset s="36.555185901817445" a="1.9636582299521261" b="-0" c="0.0032482683976738694" d="-0.0003250828062230939" /> - <laneOffset s="40.637274070438409" a="1.9956729000549718" b="0.010268438757775928" c="-0.00073985777407119301" d="-0.00032666223325798749" /> - <laneOffset s="42.981582069657016" a="2.0114705364112346" b="0.0014137384615182948" c="-7.0035593721908446e-05" d="-9.7044245759767637e-08" /> - <laneOffset s="50.796592588048014" a="2.0181952173083029" b="0.00030129990415699422" c="-6.6110326055945321e-05" d="-1.5949550123780381e-06" /> - <laneOffset s="52.913228644678327" a="2.0185216507829571" b="-0" c="-0.002652974142043811" d="0.00019466401359753227" /> - <laneOffset s="60.476769509286726" a="1.9509814633871243" b="-0.0067232361559793801" c="0.00010455950584816831" d="2.2121584395432894e-05" /> - <laneOffset s="69.088960930933027" a="1.9149653195324665" b="-0" c="0.0007321508143426623" d="-3.7415333166349218e-05" /> - <laneOffset s="71.115229623267211" a="1.9176600861087447" b="0.0025062128711355251" c="0.00053359937971312818" d="-2.8666885145922757e-05" /> - <laneOffset s="81.274548140876817" a="1.9681362483948155" b="0.0044719466050305865" c="-0.00033906540317837582" d="-2.8338908337277839e-05" /> - <laneOffset s="84.051829393915526" a="1.9773337161916704" b="0.0019328278760710913" c="-0.0001433837280918984" d="1.5031395658157754e-07" /> - <laneOffset s="90.864874122550887" a="1.9838941695564021" b="-0" c="-0.00081685005975712149" d="9.9489017104494398e-05" /> - <laneOffset s="96.197524390491267" a="1.9757523287006984" b="-0.00022439642136645155" c="-1.267467100723179e-06" d="1.2932889636339212e-06" /> - <laneOffset s="101.59318517609603" a="1.9747078176853485" b="-0.00012511889904167053" c="4.816964770057337e-06" d="4.295229824340873e-07" /> - <laneOffset s="108.39409645637248" a="1.974214801381968" b="-0" c="0.00037984609422656582" d="-3.6587268963351605e-05" /> - <laneOffset s="111.75250369370562" a="1.9771131530203778" b="0.0013133633910220176" c="1.0823367717973609e-05" d="-3.7652169534445806e-05" /> - <laneOffset s="115.25953075977729" a="1.9802281933885264" b="-0" c="-4.3011966830904079e-05" d="1.6637946467935209e-06" /> - <laneOffset s="121.91182221131523" a="1.9788145796892556" b="-0.00035137265707259373" c="-3.2561603168587177e-06" d="1.7586566092462304e-06" /> - <laneOffset s="130.71309578769367" a="1.9766688184188614" b="-0" c="0.00069277795685844296" d="-7.78717649973249e-05" /> - <laneOffset s="132.07114072892483" a="1.9777514597075549" b="0.0014507937668983314" c="0.00040862259598469891" d="-6.8531049510342303e-05" /> - <laneOffset s="135.90441976404918" a="1.9854569678255469" b="0.0015625311135820702" c="-0.00011820453563951561" d="5.9294376061153081e-06" /> - <laneOffset s="142.23045924653442" a="1.9921122990876159" b="0.0007788644924584051" c="-1.3382158696618862e-06" d="6.4414037978325825e-06" /> - <laneOffset s="151.50629157905746" a="2.0043626744649492" b="0.002416714097886811" c="0.0011128449006684784" d="-9.127241799595556e-05" /> - <laneOffset s="160.60472648800828" a="2.0497292150553559" b="-0" c="-7.6468802681100908e-05" d="1.0772871128443841e-05" /> - <laneOffset s="162.54909628175363" a="2.0495193086801362" b="-0.00017518435411274048" c="-2.8075928351529559e-05" d="6.8053161764269564e-06" /> - <laneOffset s="167.16032734556558" a="2.0487817679388436" b="-0" c="0.00027604008122778651" d="-1.8448810619400801e-05" /> - <laneOffset s="172.70841479936323" a="2.0541279971601063" b="0.0013593553169998947" c="-2.508168113946561e-05" d="-1.9507647477366381e-05" /> - <laneOffset s="177.11837039552458" a="2.0579618678116955" b="-0" c="-0.0017144334203263881" d="0.00024079452691525442" /> - <laneOffset s="181.86497169162953" a="2.0450863448916308" b="-0" c="0.00066361144789083752" d="-6.5526427215005447e-05" /> - <laneOffset s="182.86773331697285" a="2.0456875558868406" b="0.0011332216506418325" c="0.00046631264662292949" d="-5.8611928566223728e-05" /> - <laneOffset s="189.19091829970881" a="2.0566794105978392" b="-0" c="-0.00023246778542610218" d="7.5123582913927953e-06" /> - <laneOffset s="193.02705183458244" a="2.0536825225733644" b="-0.0014519011328096027" c="-0.00015655546711234556" d="5.5516588714426587e-06" /> - <laneOffset s="203.18637035219206" a="2.0285950857183672" b="-0.0029139055166987732" c="1.3111149916796063e-05" d="5.5991233109958892e-06" /> - <laneOffset s="207.34635074365951" a="2.0171032725269993" b="-0.0025141354388257264" c="0.00015026050827691029" d="-1.4383495314140598e-05" /> - <laneOffset s="213.34568886980165" a="2.0043225019214943" b="-0.0022642830371944734" c="-0.00010415730274015952" d="-1.4917168781636467e-05" /> - <laneOffset s="219.07948463371338" a="1.9851032614397019" b="-0.0049299854832127576" c="-0.00033136662629951121" d="3.0969590990293224e-05" /> - <laneOffset s="223.77811414549166" a="1.957836009555852" b="-0.0059927654384429622" c="-0.00017588481897474819" d="1.9511772799986357e-05" /> - <laneOffset s="230.69075954673266" a="1.914450648340448" b="-0.0056273335436161703" c="0.00023812523846712669" d="-2.4102313016349549e-05" /> - <laneOffset s="233.66432590502086" a="1.8991892135026067" b="-0.0048505161079705561" c="6.0629465718334951e-07" d="-2.5722191660069656e-05" /> - <laneOffset s="236.57133199592258" a="1.8844619609627387" b="-0.0054991014758011729" c="-0.00049391094192344502" d="2.187862895959064e-05" /> - <laneOffset s="243.82364442263045" a="1.8269484488285423" b="-0.0092109069607784269" c="-2.0074511817377862e-05" d="2.1782359509637472e-05" /> - <laneOffset s="253.98296294024004" a="1.7541401198412947" b="-0.0028742071685007443" c="0.00064755149986482391" d="2.0287966634272403e-05" /> - <laneOffset s="256.00928848200829" a="1.7511436813597125" b="-0" c="0.00039847294442322748" d="-2.353464867629214e-05" /> - <laneOffset s="261.66717583023768" a="1.7596369124198188" b="0.002248878481962546" c="-0.00032346274279464594" d="9.4631736918426856e-05" /> - <laneOffset s="264.14228145784966" a="1.7646564316825777" b="0.002386853611993001" c="0.00040112004049251644" d="9.4741788746456515e-05" /> - <laneOffset s="266.46421885885593" a="1.7735471752243035" b="0.0057819755941991369" c="0.0037158514584321881" d="-0.00040852579927535903" /> - <laneOffset s="271.20475464007245" a="1.8409406847262324" b="0.013470221131762989" c="-0.00099699237048357018" d="0.00017303530792297636" /> - <laneOffset s="274.30159997545928" a="1.8782334431799494" b="0.012273618729833737" c="0.00061971957057673258" d="0.00017241928407258099" /> - <laneOffset s="276.06512574218544" a="1.9027512800864919" b="0.016068085476070026" c="0.0014040830269149386" d="-6.6651889571000097e-05" /> - <laneOffset s="284.46091849306885" a="2.0971829640417856" b="0.025550123373915198" c="-0.00028167015185018724" d="-6.4494960419034987e-05" /> - <laneOffset s="286.77399384478855" a="2.1539771303954631" b="0.023211869240613893" c="-8.0647404391467201e-05" d="1.1488291121050236e-05" /> - <laneOffset s="291.5205878095187" a="2.2635660253999927" b="0.023222767188333035" c="0.00083378613537491613" d="-0.00010356149480847961" /> - <laneOffset s="294.62023701067847" a="2.3404751753440762" b="0.025406654035770245" c="-0.00013124097586917041" d="-0.00010581167585479915" /> - <laneOffset s="299.27903920513108" a="2.4452919136406068" b="0.017294053704066652" c="-0.00096011784877366878" d="2.944410973423671e-05" /> - <laneOffset s="305.11438886859798" a="2.5193660798829964" b="0.0090966381170324712" c="0.00098798549150988686" d="-0.00050059050258799247" /> - <laneOffset s="308.3198320294207" a="2.5421890569735401" b="-0" c="-0.0007922619795784863" d="1.7224109078818253e-05" /> - <laneOffset s="314.93887404589765" a="2.5124735460631533" b="-0.0082241772730040647" c="-0.00046796529419855471" d="1.9834673147727914e-05" /> - <laneOffset s="317.74639226957447" a="2.486134369346126" b="-0.010382799338849094" c="-0.00091206605252434382" d="4.1427885786179643e-05" /> - <laneOffset s="325.09819256350727" a="2.3769675429722863" b="-0.01707605091987598" c="-2.4785054543413028e-06" d="4.1094344044508001e-05" /> - <laneOffset s="328.37121374209948" a="2.3224915975349445" b="-0.015771585173218316" c="-0.00043355394658587158" d="2.5529663196414061e-05" /> - <laneOffset s="335.25751108111689" a="2.2016610292317957" b="-0.018110814502531051" c="9.1209158760275109e-05" d="2.5726691288408685e-05" /> - <laneOffset s="343.9662708432345" a="2.0678481543064606" b="-0.01066864770976521" c="0.00020433006740494701" d="2.6453981555116414e-05" /> - <laneOffset s="345.41682959872645" a="2.0528833306254484" b="-0.0099088750623848084" c="0.0003144193148512265" d="2.4038204495971137e-05" /> - <laneOffset s="350.32857838259133" a="2.0146473405996228" b="-0.005080392725316245" c="0.001271440806749499" d="-0.00056919757750010385" /> - <laneOffset s="351.65540281589131" a="2.0088153298226046" b="-0.0047125892253183574" c="-0.0018094895075531116" d="0.00040074743736924235" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929726248807302" b="-0.003024329063173251" c="0.0090602465986045974" d="-0.0053850697265365299" /> - <width sOffset="1.0624523452258705" a="2.4935283486834754" b="-0.0020082492389601895" c="5.9677408105304655e-05" d="0.00023980401669195374" /> - <width sOffset="1.6572910738591329" a="2.492405352526557" b="-0.0016827005665627224" c="0.00032398195015994648" d="-1.4303805644046239e-05" /> - <width sOffset="10.159318517609602" a="2.4927272379733347" b="0.00072447723855174982" c="-3.8079817069514274e-05" d="-1.4288331468425808e-05" /> - <width sOffset="15.28168857674876" a="2.4935187027357042" b="-0.00079036124913003838" c="0.00042308913743728445" d="-7.3482549253332796e-05" /> - <width sOffset="17.531190507157156" a="2.4930452677361647" b="-2.4037655880688492e-06" c="0.00046639328078907727" d="-6.2816225327225387e-05" /> - <width sOffset="20.318637035219204" a="2.4953018991648865" b="0.0011334694165750587" c="-5.4396905988768991e-05" d="-6.1125483777844331e-05" /> - <width sOffset="23.423890917393891" a="2.4964668181449445" b="-0.00097258906679829654" c="8.9709644574357069e-05" d="-2.6903070827229506e-06" /> - <width sOffset="30.477955552828806" a="2.4931257263651929" b="-0.00010856145644879526" c="2.3974733446267467e-05" d="-1.647662514020309e-06" /> - <width sOffset="36.421344093145429" a="2.4929814677699347" b="1.8154193890877038e-06" c="0.0025305831971575549" d="-0.00022370237195555123" /> - <width sOffset="36.555185901817445" a="2.4930265063322388" b="0.00066718911921071855" c="-0.00079039175519243299" d="0.00010214111703642508" /> - <width sOffset="40.637274070438409" a="2.4895271895284692" b="-0.00067964025044117519" c="0.00045159575730135975" d="0.00010042650396857708" /> - <width sOffset="42.981582069657016" a="2.49170964947439" b="0.0030934847565627301" c="-0.0018093251126928812" d="-0.00022613868504355074" /> - <width sOffset="43.731458775655369" a="2.4929166156333218" b="-1.5403289904260091e-06" c="0.000322883296745521" d="-3.7158930484150476e-05" /> - <width sOffset="50.796592588048014" a="2.4959181945778028" b="-0.0010036013641092152" c="-0.00046383647529876228" d="-3.5816777596459008e-05" /> - <width sOffset="52.913228644678327" a="2.4913762347096151" b="-0.0034485407947344557" c="0.0018854662741463841" d="-0.00023207574620636963" /> - <width sOffset="57.162446712539158" a="2.4929607287350977" b="3.9964197725735062e-06" c="0.00074890303789763488" d="-0.00020016888187683319" /> - <width sOffset="60.476769509286726" a="2.4939129356229519" b="-0.0016281974870307582" c="0.00041814418993741591" d="-2.762645267888846e-05" /> - <width sOffset="60.955911105657613" a="2.4932257557278641" b="-0.0012465241046492985" c="0.00040751337535194427" d="-2.6153720826266164e-05" /> - <width sOffset="69.088960930933027" a="2.4959733065467011" b="0.00019219782619089203" c="-0.00028666051884111368" d="3.3383196735598402e-05" /> - <width sOffset="71.115229623267211" a="2.4954635179023432" b="-0.00055831397956028288" c="-8.1085776354456905e-05" d="2.3027576687784774e-05" /> - <width sOffset="75.338266039939143" a="2.4933939449142812" b="-1.1146417639595722e-05" c="-0.00022252758506767552" d="2.2101732206697516e-05" /> - <width sOffset="81.274548140876817" a="2.4901095178195911" b="-0.00031656111647318432" c="0.0001725370204598337" d="2.2395305217867844e-05" /> - <width sOffset="84.051829393915526" a="2.4910409185963829" b="0.0011600310774688041" c="-7.266582718379078e-05" d="-6.09391707599037e-06" /> - <width sOffset="90.864874122550887" a="2.4936441194387333" b="-0.00067871460649749163" c="0.00047931840276568068" d="-0.00010543262021300461" /> - <width sOffset="91.433866658486423" a="2.4933936943937529" b="-0.00023565964448423815" c="0.00024648590371578668" d="-7.6789330617913227e-05" /> - <width sOffset="92.614748579811163" a="2.4933326779357143" b="2.5237806789896611e-05" c="0.00042864092729466281" d="-0.00010141734168829607" /> - <width sOffset="96.197524390491267" a="2.4942611202624549" b="-0.00080877844950126836" c="0.00011461194004347449" d="-3.2216135474393525e-06" /> - <width sOffset="101.59318517609603" a="2.4927278750781419" b="0.00014666184470959909" c="5.8261225439485192e-05" d="-3.0485298836417797e-06" /> - <width sOffset="108.39409645637248" a="2.4954610896670557" b="0.00051611527718589613" c="-0.00037020280474953429" d="3.396826206212507e-05" /> - <width sOffset="111.75250369370562" a="2.4943056232803515" b="-0.00082109447180096524" c="-2.7943373164439131e-05" d="3.4237921833677369e-05" /> - <width sOffset="115.25953075977729" a="2.4925591509468368" b="0.00024621033046282184" c="-1.0029615906316848e-05" d="-5.0780423475486316e-06" /> - <width sOffset="118.75948262751832" a="2.4930803037537324" b="-1.0608938922227189e-05" c="6.258450257418936e-05" d="-4.9884376136046116e-06" /> - <width sOffset="121.91182221131523" a="2.4935125126484721" b="0.00023525229269335553" c="3.2401664911073293e-05" d="-1.8606592642181111e-06" /> - <width sOffset="130.71309578769367" a="2.4968244059041629" b="0.00037321063808042846" c="-0.00066632571207936829" d="7.7769762342073129e-05" /> - <width sOffset="132.07114072892483" a="2.4962971314626605" b="-0.0010063008206313612" c="-0.00036885042981788782" d="6.8359800380522168e-05" /> - <width sOffset="135.90441976404918" a="2.490870256334949" b="-0.00082067156442609704" c="0.00015600736470898119" d="-6.1006867359387231e-06" /> - <width sOffset="142.23045924653442" a="2.4903774273120387" b="0.00042071989372327318" c="4.25909246893778e-05" d="-6.067317855170066e-06" /> - <width sOffset="149.90479178279276" a="2.4933722574818709" b="2.4227621634406206e-06" c="0.0006422530909732673" d="-5.6393119317389126e-05" /> - <width sOffset="151.50629157905746" a="2.4947917529023771" b="0.0016256476633236781" c="-0.00056362258800963995" d="4.1320702475570685e-05" /> - <width sOffset="152.38977776414404" a="2.4958165506515302" b="0.00072650047820075909" c="-0.00046827308055849792" d="4.0673110430293201e-05" /> - <width sOffset="160.60472648800828" a="2.4927318501302853" b="0.0012673430360102683" c="-0.00076788528969313412" d="-6.1372178691066116e-05" /> - <width sOffset="161.35477866492147" a="2.4932245311649797" b="1.1855007710434505e-05" c="0.00010447976192869412" d="6.6995845646775303e-06" /> - <width sOffset="162.54909628175363" a="2.4933991323735829" b="0.00029008780138474563" c="0.00010463862672370993" d="-9.8869948867491217e-06" /> - <width sOffset="167.16032734556558" a="2.4959923459922586" b="0.00062441865209293581" c="-0.00024210838064865438" d="1.5367131909063012e-05" /> - <width sOffset="172.70841479936323" a="2.49462862657832" b="-0.00064299857430878183" c="2.2069319842640632e-05" d="1.3315745036660477e-05" /> - <width sOffset="176.16110482227393" a="2.4932197144761199" b="-1.4387811533392173e-05" c="-0.00056293343260139551" d="9.1754436162927894e-05" /> - <width sOffset="177.11837039552458" a="2.4927705800654629" b="-0.00083990183810301374" c="0.0011318348178984278" d="-0.00016854773822982841" /> - <width sOffset="181.86497169162953" a="2.4962595622348611" b="-0.001487419433236597" c="-0.00021742994787705755" d="0.00013777321589901229" /> - <width sOffset="182.86773331697285" a="2.4946883203852206" b="-0.0015078745811573011" c="0.00017685530357260327" d="0.00014628655299721296" /> - <width sOffset="184.36525612182695" a="2.4933181301025322" b="5.9906220995745336e-06" c="-0.00046289631424218893" d="6.3872125331226328e-05" /> - <width sOffset="189.19091829970881" a="2.4897452125086845" b="6.0165946434936977e-07" c="4.8717816545239452e-05" d="-2.2521615264133824e-06" /> - <width sOffset="193.02705183458244" a="2.4903373085155547" b="0.00027494986914337839" c="1.9931551939625537e-05" d="-1.4944522275982258e-06" /> - <width sOffset="203.18637035219206" a="2.4936207577949872" b="0.00021719673715360011" c="-2.4989138248856869e-05" d="-1.4553181563332707e-06" /> - <width sOffset="207.34635074365951" a="2.493987075249906" b="-6.6266662462280933e-05" c="-0.00011042405204048127" d="1.8527300468774421e-05" /> - <width sOffset="211.59706114820574" a="2.4931331667022918" b="-7.4424619963403549e-07" c="-0.00018891016247356816" d="1.8655712769374027e-05" /> - <width sOffset="213.34568886980165" a="2.492653982832485" b="-0.00049028068245454302" c="-9.0233144939054345e-05" d="1.8751345504350672e-05" /> - <width sOffset="219.07948463371338" a="2.4904110244992466" b="0.00032439345493867622" c="0.00020292933737277495" d="-2.7135414267591816e-05" /> - <width sOffset="223.50500738741124" a="2.4934690958518226" b="0.00052616850416667589" c="-0.00016190302306971966" d="-2.6113767651117957e-05" /> - <width sOffset="223.77811414549166" a="2.4936001881714565" b="0.00043189161828878931" c="9.7763532914122315e-05" d="-1.4655949458556057e-05" /> - <width sOffset="230.69075954673266" a="2.4964161690131896" b="-0.00031748807815655013" c="-0.00021554676985711076" d="2.8958136357889874e-05" /> - <width sOffset="233.66432590502086" a="2.4943275953130115" b="-0.00083122138308303582" c="3.4429467669530589e-05" d="3.5392554396817011e-05" /> - <width sOffset="236.1918156315987" a="2.4930180867389611" b="2.1103475030277014e-05" c="-0.00029315792705444189" d="4.641297478685478e-05" /> - <width sOffset="236.57133199592258" a="2.4929864085949767" b="-0.00018135803211425782" c="2.9879056391899359e-05" d="-1.1878458298005317e-06" /> - <width sOffset="243.82364442263045" a="2.4927895680599077" b="6.4598527403264203e-05" c="-2.2801998162049286e-06" d="-6.4829166025139517e-07" /> - <width sOffset="248.32366809174209" a="2.4929750119204765" b="4.6924884542047518e-06" c="0.00026564341748522302" d="-2.9375809144012334e-05" /> - <width sOffset="253.98296294024004" a="2.4961850189301442" b="0.00018888973950103661" c="-0.000232919775539203" d="-2.8493942442521304e-05" /> - <width sOffset="256.00928848200829" a="2.4953743315885291" b="-0.0011060408140129278" c="-3.3725155223772712e-05" d="1.532867286804458e-05" /> - <width sOffset="261.66717583023768" a="2.4908131847924007" b="-1.5576934946084746e-05" c="0.00054892507187816165" d="-0.00010283771272670614" /> - <width sOffset="264.14228145784966" a="2.4925781122359267" b="0.0008117210304770966" c="-0.00017543793233245643" d="-0.00013843055881248076" /> - <width sOffset="265.16995561773484" a="2.4930767700801795" b="1.2539543172901835e-05" c="0.0015264338542542771" d="-0.00023718543291712272" /> - <width sOffset="266.46421885885593" a="2.4951357271947616" b="0.002771813705786442" c="-0.0020492852169618106" d="0.00026608215510460717" /> - <width sOffset="271.20475464007245" a="2.4905690875363322" b="0.0012811308833480771" c="0.00063778103595853706" d="-0.00031547895209366379" /> - <width sOffset="273.20819876209305" a="2.4931587871072001" b="3.7850990796282555e-05" c="0.00098448135298804737" d="-0.00020364662218577372" /> - <width sOffset="274.30159997545928" a="2.4941109419007184" b="0.0014603225773080885" c="0.00033204608153858839" d="-0.00018901023330597668" /> - <width sOffset="276.06512574218544" a="2.4966822827418937" b="0.00086798762626346532" c="-0.00054009307420235168" d="5.0060940337614088e-05" /> - <width sOffset="282.32904934786978" a="2.4932315743994842" b="-5.531746231340201e-06" c="-0.00051197769861986405" d="8.5679696877852507e-05" /> - <width sOffset="284.46091849306885" a="2.4917230670770372" b="-0.0010202624265441794" c="3.7261661744408803e-05" d="8.4288849428015871e-05" /> - <width sOffset="286.77399384478855" a="2.490605617409082" b="0.00050503197551397816" c="-2.640681537030623e-05" d="8.3055978879342428e-06" /> - <width sOffset="291.5205878095187" a="2.4932960625609728" b="0.00081572631964483763" c="-0.00065897969281140988" d="0.00012335538381757621" /> - <width sOffset="294.28124865889492" a="2.4931211164282789" b="-2.3465203104165722e-06" c="-0.0005769306487153279" d="9.2249185937969669e-05" /> - <width sOffset="294.62023701067847" a="2.4930576175879113" b="-0.00036169013919690532" c="-0.00048110225295009172" d="9.4499366987122553e-05" /> - <width sOffset="299.27903920513108" a="2.4904859833291084" b="0.0013087563206115489" c="0.0001896691918233125" d="-4.0756418601924486e-05" /> - <width sOffset="304.77955552828809" a="2.4966406301532085" b="-0.00030402616379009324" c="-0.00048486434112879665" d="-3.9723122195571098e-05" /> - <width sOffset="305.11438886859798" a="2.4964829811061011" b="-0.00064208413644799983" c="-0.0019574195309983123" d="0.000490311490127979" /> - <width sOffset="308.3198320294207" a="2.4904612471378567" b="0.0019227761345752721" c="-0.00027601843048012165" d="-2.7503121538852568e-05" /> - <width sOffset="310.82818894173334" a="2.4931135279518339" b="1.8933749769998749e-05" c="-4.5416575575587788e-05" d="-3.3101279922618973e-06" /> - <width sOffset="314.93887404589765" a="2.4921939958657302" b="-0.0005222536989830627" c="-9.0307275961685443e-05" d="-8.0528195429152345e-06" /> - <width sOffset="317.74639226957447" a="2.4898377395282596" b="-0.001219753146838717" c="0.00045302678847669386" d="-2.9646032181364717e-05" /> - <width sOffset="325.09819256350727" a="2.4935759233784243" b="0.0006343595113997326" c="-0.00020297746635903959" d="-2.9713734672606738e-05" /> - <width sOffset="328.37121374209948" a="2.4924359189784679" b="-0.0016492796722124593" c="0.00033984490127095647" d="-1.4149053824505709e-05" /> - <width sOffset="335.25751108111689" a="2.4925738501198835" b="0.0010183756977066791" c="4.5701643854511985e-05" d="-1.4059302829432795e-05" /> - <width sOffset="343.9662708432345" a="2.4956226798628744" b="-0.0013844929090453748" c="0.00023740618463129374" d="-1.4786593095975791e-05" /> - <width sOffset="345.41682959872645" a="2.4940687919092817" b="-0.00078908799958244194" c="0.00017401823960402625" d="-1.2721514222229402e-05" /> - <width sOffset="349.95497732427197" a="2.4928826817935241" b="4.3624145379542525e-06" c="-0.0014568868596542763" d="0.00012847154846528587" /> - <width sOffset="350.32857838259133" a="2.49268766193337" b="-0.0010304312213765768" c="-0.0019157081670452612" d="0.00072170733045293393" /> - <width sOffset="351.65540281589131" a="2.4896337094493215" b="-0.0023024307050337912" c="0.0017722831468602754" d="-0.00024823768441639791" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.13592330881090436" weight="standard" type="solid"> - <type name="solid"> - <line length="355.57614811633607" space="0" width="0.13592299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.7921489849864813" b="4.5095947019213687e-10" c="-0.047630307339098454" d="0.014104011672886503" /> - <width sOffset="1.0624523452258705" a="3.7552986194818603" b="-0.053447826929929047" c="-0.010839357192236009" d="0.0084791379296579698" /> - <width sOffset="1.6572910738591329" a="3.721455093580289" b="-0.05734256652308288" c="0.0044554312928917839" d="0.0087332457519940562" /> - <width sOffset="2.9752048620204157" a="3.6736122584098525" b="-9.2579286828711291e-05" c="0.00025091582417977206" d="-8.8631355410059343e-06" /> - <width sOffset="10.159318517609602" a="3.68261099935531" b="0.0021403174430809175" c="6.8167490385403657e-05" d="-9.3929050590310168e-06" /> - <width sOffset="15.28168857674876" a="3.6941006760487465" b="0.0020993035165041136" c="-0.00075691363496274049" d="4.9801312701843958e-05" /> - <width sOffset="15.511896662577652" a="3.6945444470560695" b="0.001758726014078857" c="-0.00050087785852763456" d="4.6287539723421865e-05" /> - <width sOffset="20.318637035219204" a="3.6965661541856751" b="0.00015193288363304479" c="0.00017282169794823632" d="4.6607749295334976e-05" /> - <width sOffset="23.423890917393891" a="3.7000999582357439" b="0.0025735032645448986" c="-0.00010652860670129331" d="-1.1827427399832545e-05" /> - <width sOffset="25.23284157239295" a="3.7043366931563724" b="0.0020719845190464254" c="2.1939464284977873e-05" d="-7.1628796882148809e-06" /> - <width sOffset="30.477955552828806" a="3.7147744696951053" b="0.0017109558095782446" c="-0.00010382354378827114" d="-5.6014428633435206e-06" /> - <width sOffset="36.164010122385108" a="3.7201165635180824" b="-1.3041248515596176e-05" c="-1.719671457609309e-05" d="2.7258318588199732e-06" /> - <width sOffset="36.555185901817445" a="3.7201089938426888" b="-2.5243816947284702e-05" c="0.0032171548858141363" d="-0.00032311765713196434" /> - <width sOffset="40.637274070438409" a="3.7516358308797253" b="0.01008741719794784" c="-0.00075322126103934584" d="-0.00032577346245075614" /> - <width sOffset="42.981582069657016" a="3.7669471049071257" b="0.0011847141093645173" c="-7.7148423151482049e-05" d="7.9172656147189018e-07" /> - <width sOffset="50.796592588048014" a="3.7718717540048656" b="0.0001239452814996862" c="-4.9604922068325401e-05" d="-9.9500039942062753e-07" /> - <width sOffset="52.913228644678327" a="3.771902428221825" b="-9.9419099507237334e-05" c="-0.0026326590813578465" d="0.00019526396821049137" /> - <width sOffset="55.140420687256523" a="3.760779225107481" b="-0.0089205407909777757" c="-0.00037672347032452545" d="2.8134665682078361e-05" /> - <width sOffset="59.045991518059935" a="3.7218691581571814" b="-0.010575726207439008" c="-0.0025784199026746622" d="0.00079630958208337546" /> - <width sOffset="60.476769509286726" a="3.703791669015839" b="-0.013063581768427233" c="-0.00081990724717479206" d="0.00062376715287729481" /> - <width sOffset="60.955911105657613" a="3.6974127462375472" b="-0.013419677946739013" c="0.00011146949763656993" d="0.00062082559264350326" /> - <width sOffset="62.917268480105911" a="3.6762050237232708" b="-0.005817610615375602" c="-0.00037006773381606143" d="0.00062575814488091848" /> - <width sOffset="66.942682767618621" a="3.6876069030487959" b="0.021622317695879221" c="-0.0057810354487143672" d="0.00057086409263835177" /> - <width sOffset="69.088960930933027" a="3.7130280626574237" b="0.0046959707819418548" c="-0.0020492906895612614" d="0.00051132717507659765" /> - <width sOffset="70.824730105742532" a="3.7176789694975447" b="0.0022035042607656012" c="0.00032041992464395923" d="-3.2309951701449186e-05" /> - <width sOffset="71.115229623267211" a="3.7183453345634891" b="0.0023814880202580207" c="0.00032115096849832762" d="-2.3561503669872099e-05" /> - <width sOffset="81.274548140876817" a="3.7509805087413723" b="0.0016113657096534519" c="-0.00039489139301437535" d="-2.3071497097397692e-05" /> - <width sOffset="84.051829393915526" a="3.7519155751034958" b="-0.0011159547396798037" c="-0.00015532247046219205" d="5.4177251964612909e-06" /> - <width sOffset="90.864874122550887" a="3.7388161612978852" b="-0.0024779595635438852" c="-0.00072112747698178784" d="0.00010475642834306379" /> - <width sOffset="91.534807028844995" a="3.7368639427448396" b="-0.0033031263875636062" c="-0.0012219309179636734" d="0.00025808501031216358" /> - <width sOffset="95.31249977280504" a="3.7208613172389633" b="-0.0014859210254123934" c="0.00053175100837575908" d="9.7295083780448016e-05" /> - <width sOffset="96.197524390491267" a="3.7200301905222561" b="-0.00031607101506358646" c="1.4038832851267295e-05" d="-9.0064436057815471e-07" /> - <width sOffset="101.59318517609603" a="3.7185920158034103" b="-0.00024323525273600504" c="-1.5389895335940585e-05" d="-1.7644101346237626e-06" /> - <width sOffset="101.7334668677946" a="3.7185575866228238" b="-0.00024765725907318053" c="-0.0017279574078099306" d="0.00020414859183821502" /> - <width sOffset="106.84197808918782" a="3.6994144402745781" b="-0.0019193087394089199" c="6.0668534365238184e-05" d="5.7989418633353492e-08" /> - <width sOffset="108.39409645637248" a="3.6965818175923717" b="-0.0017305601444582114" c="0.0004272042400576878" d="-3.6958802527196506e-05" /> - <width sOffset="111.75250369370562" a="3.6941883178981634" b="-0.00011167234284136635" c="5.3512203598108152e-05" d="-3.8452063912608093e-05" /> - <width sOffset="115.25953075977729" a="3.6927962571109756" b="-0.0011551282041784923" c="-8.7388846534287016e-06" d="8.6390026863193477e-07" /> - <width sOffset="121.91182221131523" a="3.6849796041157141" b="-0.0011567049315678612" c="1.8971986851090878e-05" d="8.9915767159888086e-07" /> - <width sOffset="130.71309578769367" a="3.6768817603699833" b="-0.0006137968600918994" c="0.000692312048159871" d="-7.8731263934936991e-05" /> - <width sOffset="132.07114072892483" a="3.6771278259478519" b="0.00083097597117011218" c="0.00040986940617245991" d="-6.9416130122673406e-05" /> - <width sOffset="135.90441976404918" a="3.6824258668428662" b="0.00091325586223352478" c="-0.00012713600831869171" d="5.0443569937848206e-06" /> - <width sOffset="142.23045924653442" a="3.6843923633083713" b="-8.9671983563529168e-05" c="-2.4524338932649685e-05" d="5.7807053933685643e-06" /> - <width sOffset="146.5259173812756" a="3.6840128351523873" b="1.9620176240980501e-05" c="6.7856047122313263e-05" d="8.0575411386639174e-06" /> - <width sOffset="151.50629157905746" a="3.6867890399489767" b="0.0012950980135015557" c="0.0011231797287708303" d="-8.9656280655783888e-05" /> - <width sOffset="152.38252880115618" a="3.6887259032293453" b="0.0030569297482245924" c="0.00081232359628243889" d="-8.4029233470548915e-05" /> - <width sOffset="160.60472648800828" a="3.7220690337430558" b="-0.00062717157867143232" c="4.160344808212967e-05" d="1.8016055652708345e-05" /> - <width sOffset="161.26746301348754" a="3.7216769015227036" b="-0.0005482883096161981" c="-5.1872868973016327e-05" d="1.7540315471497082e-05" /> - <width sOffset="162.54909628175363" a="3.7209259171467521" b="-0.00059481798288334056" c="-1.2372179557526013e-05" d="6.8369987442826901e-06" /> - <width sOffset="167.16032734556558" a="3.7185903711861981" b="-0.00027278535798090832" c="0.00029218211694503801" d="-1.8417128051547552e-05" /> - <width sOffset="172.70841479936323" a="3.7229254464762729" b="0.001268610500146214" c="-2.8505887203407351e-06" d="-2.0945265434615955e-05" /> - <width sOffset="175.51154208669058" a="3.7259977918289957" b="0.00075889568523915556" c="-0.00014820006894057501" d="-1.9865718250918374e-05" /> - <width sOffset="177.11837039552458" a="3.7267521533337495" b="0.00012875782512674865" c="-0.0016752306260279445" d="0.00024043645614164354" /> - <width sOffset="181.86497169162953" a="3.7153327474039433" b="0.00047671564951657942" c="0.00069771538459423342" d="-6.5884497988244562e-05" /> - <width sOffset="182.86773331697285" a="3.7164459220745343" b="0.0016772533845009301" c="0.0004991221793523425" d="-5.8338759007272278e-05" /> - <width sOffset="189.19091829970881" a="3.7322586648693372" b="0.00099171936676637666" c="-0.00019447634773805326" d="7.7855278503536103e-06" /> - <width sOffset="193.02705183458244" a="3.7336406447739394" b="-0.00015664148520088132" c="-0.00011913615990102617" d="5.5225396913596952e-06" /> - <width sOffset="203.18637035219206" a="3.7255437422870368" b="-0.00086735287259817519" c="5.0027439172117083e-05" d="5.6068683049169266e-06" /> - <width sOffset="207.34635074365951" a="3.7232049580422157" b="-0.00016003862435959174" c="0.00018727345460039922" d="-1.4375750320481057e-05" /> - <width sOffset="208.23257888408071" a="3.7232002057875651" b="0.00013802322991248502" c="0.00022242713430686888" d="-1.8059057266889064e-05" /> - <width sOffset="213.34568886980165" a="3.7273069716555476" b="0.00099620981101574855" c="-4.5637864298823412e-05" d="-1.9330310486825276e-05" /> - <width sOffset="217.49626114805721" a="3.7292734234005733" b="-0.00038166098552673512" c="-0.00032502279152076528" d="-1.2225507043167951e-05" /> - <width sOffset="219.07948463371338" a="3.7278059507821126" b="-0.0015027616627112414" c="-0.00035370324719563096" d="3.3661252728701846e-05" /> - <width sOffset="223.50500738741124" a="3.7171456660457718" b="-0.0026556128837723889" c="9.3058845684501569e-05" d="3.4361919460684882e-05" /> - <width sOffset="223.77811414549166" a="3.7164280411910031" b="-0.0025970939959384901" c="-0.00015984983229675877" d="2.2904101268123505e-05" /> - <width sOffset="230.69075954673266" a="3.6984025277441464" b="-0.0015236698943264515" c="0.00032451011649941626" d="-2.0709984548198151e-05" /> - <width sOffset="233.66432590502086" a="3.6961966255467393" b="-0.00014312423335272051" c="0.00011180422305386297" d="-2.2499946907208923e-05" /> - <width sOffset="236.57133199592258" a="3.696172646739095" b="-6.3512970374572306e-05" c="-0.00035461175815793683" d="2.5100873712451655e-05" /> - <width sOffset="243.48912088137283" a="3.6870728504018464" b="-0.0013661041215177611" c="0.00038117872848909834" d="-4.0411955841505206e-05" /> - <width sOffset="243.82364442263045" a="3.6866569997707512" b="-0.0011246446262522317" c="0.00033844694882156456" d="-4.0508225285079585e-05" /> - <width sOffset="248.27694518566548" a="3.6847830813368949" b="-0.00052029623802904868" c="0.00044592329056697519" d="-3.8164441518226184e-05" /> - <width sOffset="253.98296294024004" a="3.6892427205994771" b="0.00084084941021263281" c="-0.00020363342540078778" d="-3.9658834429503648e-05" /> - <width sOffset="254.13858574249758" a="3.6893684947817698" b="0.00077458797434468846" c="0.013737791878698141" d="-0.0052997486160693769" /> - <width sOffset="256.00928848200829" a="3.7041980984291936" b="-0.0034666300050129259" c="-0.016377379516087563" d="-0.0053435712313790592" /> - <width sOffset="256.69628757305736" a="3.6923543246849686" b="-0.033535099578432516" c="-0.0041324657919506865" d="0.0029590638168727175" /> - <width sOffset="259.06885540374134" a="3.6290474445633141" b="-0.0031738062936258775" c="0.0011863055068621561" d="-0.00011368422710259665" /> - <width sOffset="261.66717583023768" a="3.6268157022871419" b="0.00068845895956849094" c="-2.2325155737242181e-05" d="4.4821584921373581e-06" /> - <width sOffset="264.14228145784966" a="3.6284509060825769" b="0.00066031981943422027" c="4.9996964538425381e-05" d="2.4123823581449321e-06" /> - <width sOffset="266.46421885885593" a="3.6302838800221222" b="0.00093151776943607972" c="0.0027215790762857937" d="-0.00050085520256094526" /> - <width sOffset="266.5146241651064" a="3.6303376840208692" b="0.0012020642623359447" c="0.0033510845967694653" d="-0.00042942260257881789" /> - <width sOffset="271.20475464007245" a="3.6653867485288703" b="0.0042976680444169208" c="-0.0015940098300840063" d="0.00015213850461951684" /> - <width sOffset="274.30159997545928" a="3.6679272239716667" b="-0.0011979051337067739" c="-0.00016607067357780989" d="0.00015101182015722059" /> - <width sOffset="276.06512574218544" a="3.66612644408979" b="-0.00037469419687590627" c="0.00050503494011427648" d="-8.8059353485821809e-05" /> - <width sOffset="276.80778454381607" a="3.6660906523960852" b="0.00022973776885160807" c="-0.00042634223568919247" d="0.00021350719791379461" /> - <width sOffset="280.20291823329939" a="3.6703119307475434" b="0.0047180093420225791" c="0.0011499800202835067" d="-0.00011249365523189234" /> - <width sOffset="284.46091849306885" a="3.7025664994580945" b="0.0083925187983151343" c="-0.00029854965505934884" d="-0.00010931483184516499" /> - <width sOffset="286.77399384478855" a="3.7190288461379692" b="0.0052567759009278618" c="-0.00040854212719052099" d="-3.3331580304783694e-05" /> - <width sOffset="287.89174995851209" a="3.7243476681200995" b="0.0042185436777793309" c="-0.00051057008625480117" d="6.3831672746239947e-05" /> - <width sOffset="291.5205878095187" a="3.7359829296475935" b="0.0030346868509627256" c="0.00093517706407485429" d="-5.121811318328237e-05" /> - <width sOffset="294.3138343784957" a="3.7506397973490047" b="0.0070602011584310828" c="-0.0017154686062045917" d="0.00015837095652379308" /> - <width sOffset="294.62023701067847" a="3.7526465646389715" b="0.0060535577843605463" c="-0.0015719069696555066" d="0.00015612077549934756" /> - <width sOffset="299.27903920513108" a="3.7625179506855417" b="0.0015726915290527506" c="0.0012600905949413459" d="0.0002913765610883613" /> - <width sOffset="301.50925121359114" a="3.7755250438600925" b="0.011541015963503083" c="0.0036997592166852443" d="-0.0068399459763374155" /> - <width sOffset="301.85242555352738" a="3.7796449023743977" b="0.011663747666439378" c="-0.0016024705186235434" d="0.00011256137120583081" /> - <width sOffset="304.77955552828809" a="3.8028791257064549" b="0.0051757765285829231" c="-0.00061259833327524877" d="0.00011356305630379489" /> - <width sOffset="305.11438886859798" a="3.8045477308660174" b="0.0048037356455950721" c="0.00093412907195192924" d="-0.00041647155601914464" /> - <width sOffset="308.3198320294207" a="3.8158271850406469" b="-0.0020452371787662228" c="-3.7202893212559974e-05" d="0.00010134305564767289" /> - <width sOffset="309.45778860693719" a="3.8136009564863835" b="-0.0017362066308581211" c="0.00034471723248162827" d="-7.1647467751039548e-06" /> - <width sOffset="314.93887404589765" a="3.8132609785573575" b="0.0013969062118628084" c="0.00019891460069699357" d="-3.0443030998474837e-06" /> - <width sOffset="317.54104356604921" a="3.8181892322914353" b="0.0023702836911444012" c="0.001045965376305226" d="-6.8767541514352267e-05" /> - <width sOffset="317.74639226957447" a="3.8187194778672389" b="0.0027911595714033965" c="0.00039244202247743333" d="-4.7174328985693321e-05" /> - <width sOffset="325.09819256350727" a="3.8417055517535568" b="0.00091229899250355392" c="-0.00065212779634801538" d="-4.7507870498629259e-05" /> - <width sOffset="325.20234417715858" a="3.8417934414973045" b="0.00077491263468973393" c="0.00042094512809318844" d="-2.1122337527778214e-05" /> - <width sOffset="328.37121374209948" a="3.8478039249328515" b="0.0028064383395496051" c="-0.00061444008576887232" d="-3.6687018375856063e-05" /> - <width sOffset="331.78911689237088" a="3.8487532872267129" b="-0.002679495133748034" c="-0.0005995265039471444" d="2.9384769986570345e-05" /> - <width sOffset="335.25751108111689" a="3.8334736314556324" b="-0.0057778085809461303" c="-0.00030120349182794989" d="3.1828069122907282e-05" /> - <width sOffset="336.63985837024944" a="3.8249952025000402" b="-0.0064280849949904222" c="0.00019958207302440536" d="-1.881140894186207e-05" /> - <width sOffset="343.9662708432345" a="3.7812155536197745" b="-0.0065328254190942271" c="-0.0007729001633639751" d="-1.8084118675177743e-05" /> - <width sOffset="345.41682959872645" a="3.770057835819189" b="-0.0088892531227788979" c="-0.00085662630951530649" d="-2.0499893750772245e-05" /> - <width sOffset="345.45908701794593" a="3.7696806677079486" b="-0.0089617605762852132" c="0.00023587321172673949" d="2.4019832743746848e-05" /> - <width sOffset="350.32857838259133" a="3.7344079176629967" b="-0.0049559244992949288" c="0.0011895789429047135" d="-0.00056921594925257778" /> - <width sOffset="351.08861719891371" a="3.73107848322962" b="-0.0041341103079639415" c="-0.011352752009950035" d="0.0069639817711762194" /> - <width sOffset="351.65540281589131" a="3.7263562884457877" b="-0.010291810893656219" c="-0.00032675245025404155" d="0.007933926786042848" /> - <width sOffset="352.0909700819206" a="3.7224671439773234" b="-0.0060608100000028326" c="0.00028857364463483301" d="0.00040005159678302145" /> - <width sOffset="353.56156023775992" a="3.7154505602677683" b="-0.0026165656351014839" c="0.10820490917799701" d="-0.035592226931837403" /> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.9752048620204157" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="63.967477905598201" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="66.942682767618621" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="189.75360480543873" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="256.69628757305736" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="96.865272664702559" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="353.56156023775992" type="none" width="0" /> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929726248807373" b="-6.3305249313406892e-05" c="4.5622133424412514e-05" d="-7.7806463578498214e-06" /> - <width sOffset="2.9752048620204157" a="2.492983207316442" b="1.5459343898326861e-06" c="6.5709896783302949e-06" d="-1.3232464158710156e-06" /> - <width sOffset="6.7259731700271042" a="2.4930116246965897" b="-5.0088813159077615e-06" c="-3.9452010952388059e-05" d="3.8740746481605901e-06" /> - <width sOffset="10.159318517609602" a="2.4926861634404114" b="-0.00013891248587642908" c="6.5358650810946536e-06" d="5.2429990042840201e-06" /> - <width sOffset="15.511896662577652" a="2.492933900297766" b="0.00038169219534426365" c="-0.00013091523109110958" d="8.7567720067611515e-06" /> - <width sOffset="20.318637035219204" a="2.4927163458972545" b="-0.00026988969487114298" c="-3.9461144647122304e-06" d="8.6968992215215251e-06" /> - <width sOffset="25.23284157239295" a="2.4923268619862946" b="0.00032140113472411795" c="-6.8384858235341519e-05" d="4.0323515099531991e-06" /> - <width sOffset="30.477955552828806" a="2.492713162905019" b="-6.3166880635573061e-05" c="-1.2153739072914702e-05" d="4.668400032482e-06" /> - <width sOffset="36.164010122385108" a="2.4928192723494993" b="0.00025142462960779611" c="-0.00011469656564215599" d="-3.6588746777894662e-06" /> - <width sOffset="37.164156844427659" a="2.4929523431580725" b="1.1017995998438204e-05" c="-5.6610586043535425e-05" d="4.9112283041767688e-06" /> - <width sOffset="40.637274070438409" a="2.492513496383288" b="-0.00020448669540722668" c="-1.5828395556860993e-05" d="2.388717824689871e-06" /> - <width sOffset="50.796592588048014" a="2.4913070909837711" b="0.00021353314090144138" c="5.9393746776566914e-05" d="2.4322369486913212e-06" /> - <width sOffset="55.140420687256523" a="2.4935546869557172" b="0.00086720608135956354" c="-0.00086017513804974852" d="0.00016956153947710089" /> - <width sOffset="57.890766648357079" a="2.4929607735813142" b="-1.6456946420620238e-05" c="-0.0015844888752514395" d="0.00038166242262682162" /> - <width sOffset="59.045991518059935" a="2.4914155997680556" b="-0.0021493023948968709" c="0.0022695711133150806" d="-0.00038651249377442493" /> - <width sOffset="60.955911105657613" a="2.4928967012035383" b="0.0022903417428831313" c="6.1557534166897679e-05" d="-0.000382279834644662" /> - <width sOffset="62.917268480105911" a="2.4947413128473386" b="-0.0018799885885651684" c="0.0019467152104026592" d="-0.00038721238688207277" /> - <width sOffset="66.942682767618621" a="2.4934611205358488" b="-0.005030440447037661" c="0.010238419432732709" d="-0.00033231833468327639" /> - <width sOffset="67.19270179939862" a="2.4928382196718477" b="2.6839804996393185e-05" c="0.00021668285151843231" d="-4.917144177163206e-05" /> - <width sOffset="70.824730105742532" a="2.4934381821063787" b="-0.00034511803749101566" c="-2.6166121598674319e-05" d="0.00049446568500206302" /> - <width sOffset="71.3247712416197" a="2.49332088975118" b="-3.7602471930330288e-07" c="4.207039714830614e-05" d="-2.0933597092972184e-06" /> - <width sOffset="81.274548140876817" a="2.495420058759108" b="0.0002150904541838145" c="-1.9031905888447719e-05" d="-1.8533929125963455e-06" /> - <width sOffset="91.433866658486423" a="2.4936975191713131" b="-0.00074548772673928764" c="-0.00011368801977853375" d="1.1121039781990252e-05" /> - <width sOffset="91.534807028844995" a="2.4936211224393139" b="-0.00076809921295317675" c="0.00060102244235499573" d="-0.00014220754171856699" /> - <width sOffset="93.284913156983023" a="2.4933554395729693" b="2.8916643403615033e-05" c="0.00051498873556330544" d="-0.00021126337873738477" /> - <width sOffset="95.31249977280504" a="2.4937702319965607" b="-0.00048829419422688058" c="0.00040114002414225647" d="-5.0473452205511632e-05" /> - <width sOffset="101.59318517609603" a="2.4940221714530404" b="-0.0014225057963090206" c="-0.0006197312144132956" d="-2.5106706110403139e-05" /> - <width sOffset="101.7334668677946" a="2.4938103549625334" b="-0.0015978619036897393" c="0.0010815277211055528" d="-0.00023101970824182785" /> - <width sOffset="102.9835135470114" a="2.493051705356029" b="2.3072606269472409e-05" c="0.0010575975271388098" d="-0.00020429935331974118" /> - <width sOffset="106.84197808918782" a="2.4971502348747432" b="-0.00094019452535298409" c="3.2812269353879448e-05" d="-2.0875090012708702e-07" /> - <width sOffset="111.75250369370562" a="2.4932998784817908" b="-0.00063304454300566922" c="2.9184566183164924e-05" d="-4.1582397012684406e-07" /> - <width sOffset="121.91182221131523" a="2.4894447507349389" b="-0.00016880769806668766" c="2.2231329622993662e-05" d="-5.03503496596765e-07" /> - <width sOffset="132.07114072892483" a="2.4894963598926561" b="0.00012700018416628817" c="1.4527424287181925e-05" d="-5.4195840252025499e-07" /> - <width sOffset="142.23045924653442" a="2.491717719655993" b="0.00025436821540154658" c="1.738514460643573e-06" d="-2.5911674885558074e-07" /> - <width sOffset="146.5259173812756" a="2.4928218885547389" b="0.00025496078880472232" c="-1.9488613014911629e-05" d="-2.5359524941516221e-06" /> - <width sOffset="150.27579300248016" a="2.4933702007964667" b="1.8226400889083741e-06" c="9.7470404629360244e-06" d="2.5221879729610958e-07" /> - <width sOffset="152.38252880115618" a="2.4934196596023277" b="4.6249813334233239e-05" c="8.6516765422719167e-05" d="-5.3754212648820428e-06" /> - <width sOffset="152.38977776414404" a="2.4934199994097019" b="4.7503279285222508e-05" c="7.3821764813959136e-05" d="-6.6571331426114497e-06" /> - <width sOffset="161.26746301348754" a="2.4950019946742921" b="-0.00021577573796186894" c="2.5817978136612095e-05" d="-6.1813929594116896e-06" /> - <width sOffset="162.54909628175363" a="2.4947548444963701" b="-0.00018005774700645253" c="7.2907716986169002e-06" d="1.7095666534668975e-07" /> - <width sOffset="172.70841479936323" a="2.4938573323229143" b="2.1015008064631863e-05" c="1.2051386269040066e-05" d="1.1468470204327858e-06" /> - <width sOffset="175.51154208669058" a="2.4940361941402975" b="0.00011561227657422648" c="-9.0915942191586652e-06" d="6.7299836793208306e-08" /> - <width sOffset="182.86773331697285" a="2.4944214717425961" b="-7.221235621680225e-06" c="-1.1446418494726034e-05" d="5.3077915896910803e-07" /> - <width sOffset="193.02705183458244" a="2.4937232583576865" b="-7.5448916420477793e-05" c="-8.1809870451999205e-07" d="8.0571822268328104e-08" /> - <width sOffset="203.18637035219206" a="2.4929567958589933" b="-6.7123690062493354e-05" c="2.2801619604384267e-06" d="1.2060563167523878e-07" /> - <width sOffset="208.23257888408071" a="2.4926916358229061" b="-3.4897959372439443e-05" c="-6.9268297663217508e-05" d="3.8039125783312435e-06" /> - <width sOffset="213.34568886980165" a="2.4912107498213389" b="-0.00044490354975024269" c="-1.0299962246530236e-05" d="4.1971432245589123e-06" /> - <width sOffset="217.49626114805721" a="2.4894868135648416" b="-0.00031348931545517426" c="8.0651051412477978e-05" d="-2.907660219036322e-06" /> - <width sOffset="223.50500738741124" a="2.4898842393898102" b="0.0003407905980374144" c="2.3908157494133788e-05" d="-2.6420162736915972e-06" /> - <width sOffset="233.66432590502086" a="2.4930437270496908" b="8.510381197849963e-06" c="-5.1166206330313855e-05" d="-2.4719309271924324e-06" /> - <width sOffset="233.74304185879242" a="2.4930440787106907" b="4.0923800959363071e-07" c="0.00011939458165604656" d="-8.9576140060651171e-06" /> - <width sOffset="243.48912088137283" a="2.4960964516138384" b="-0.0002248779918827765" c="-0.00035737311129732695" d="5.6555215522542761e-05" /> - <width sOffset="243.82364442263045" a="2.4959833495916861" b="-0.00044499082558315233" c="-0.00030730478085423533" d="5.6718972080770196e-05" /> - <width sOffset="248.27694518566548" a="2.4929165076174034" b="0.00019250079621392375" c="-0.00019820712937621243" d="5.4375188313918807e-05" /> - <width sOffset="250.02647890841604" a="2.4929377924912437" b="-1.7334556401101334e-06" c="-0.00068929324556347819" d="0.00020069870583872031" /> - <width sOffset="253.98296294024004" a="2.4945709475227651" b="0.0039689827750588481" c="0.0017023012124838879" d="0.00019485454053961871" /> - <width sOffset="254.13858574249758" a="2.4952305732482021" b="0.0045129737736831774" c="-0.01216666811960684" d="0.0054549443221692424" /> - <width sOffset="255.38826096394351" a="2.4925156688925911" b="-0.00033902771019329002" c="-0.011346421557700968" d="0.007563623852898143" /> - <width sOffset="256.69628757305736" a="2.4895862245831095" b="0.0088007044517790962" c="-0.0049241572358201631" d="-0.00073901119535267189" /> - <width sOffset="257.44580139850473" a="2.493105061192515" b="0.00017379147970892489" c="0.0071415092682799511" d="-0.0038321660800988053" /> - <width sOffset="259.06885540374134" a="2.4958151639000499" b="-0.0069293728720176825" c="0.0042250393169179943" d="-0.00075941803612347562" /> - <width sOffset="261.56724686975463" a="2.4930323864268433" b="-3.853935230996113e-05" c="-0.00038054494318305447" d="6.2503707947149709e-05" /> - <width sOffset="264.14228145784966" a="2.4914770501857335" b="-0.00075502278749669106" c="0.00011763910194996437" d="7.1470004605535576e-05" /> - <width sOffset="266.5146241651064" a="2.4913021880621353" b="0.0010098394285543563" c="-7.8949665503792136e-05" d="3.7401520686070706e-08" /> - <width sOffset="274.30159997545928" a="2.4943961732125324" b="-0.00021291509531043938" c="-7.3979069111800326e-05" d="2.3096574012631274e-08" /> - <width sOffset="276.80778454381607" a="2.4933982726005741" b="-0.00058329029204080493" c="0.00066137759772950488" d="-0.0003015434548268301" /> - <width sOffset="277.80566861089346" a="2.4931751648442444" b="-0.00016414009817444092" c="0.0011181353993454531" d="-0.00029113301484846285" /> - <width sOffset="280.20291823329939" a="2.4951965848931907" b="0.00017750457649086046" c="-0.00037728594462002097" d="3.486783829723062e-05" /> - <width sOffset="284.46091849306885" a="2.4918037871959839" b="-0.0011389417711371794" c="6.9040683999939834e-05" d="3.422076680797124e-05" /> - <width sOffset="287.89174995851209" a="2.4900908563912472" b="0.00054318947088443856" c="0.0004115159606759999" d="-6.2942486243363819e-05" /> - <width sOffset="294.3138343784957" a="2.4938800927160929" b="-0.0019590727094262843" c="0.0014203012934320572" d="-0.00027253155597174196" /> - <width sOffset="295.31123637208964" a="2.4930686277128769" b="6.0798019708534212e-05" c="2.4396183334532331e-05" d="-5.2423142766808801e-06" /> - <width sOffset="301.50925121359114" a="2.4931344530431572" b="-0.00024094277800891864" c="-0.0049909881215629065" d="0.0069234446116614185" /> - <width sOffset="301.85242555352738" a="2.4927437980411105" b="-0.0012204071761577808" c="0.00039720538093419589" d="-2.9062735881777647e-05" /> - <width sOffset="304.77955552828809" a="2.4918459081427322" b="0.00035789997680076187" c="0.00014520441402401254" d="-2.7751595992381206e-05" /> - <width sOffset="309.45778860693719" a="2.4938567642642608" b="-0.00010560286596580926" c="-0.00028022902446076718" d="8.0756206430336377e-05" /> - <width sOffset="311.95355735166373" a="2.493103115800432" b="4.6811589718680907e-06" c="8.5876233859268568e-05" d="3.9938054575549154e-06" /> - <width sOffset="314.93887404589765" a="2.493988686623136" b="0.00062419643786872266" c="0.00011102163960813977" d="-7.8435209976678721e-07" /> - <width sOffset="317.54104356604921" a="2.4963508905546838" b="0.0011860574735254818" c="-0.00076591756560911539" d="6.4938886424532782e-05" /> - <width sOffset="325.09819256350727" a="2.4895993082979988" b="0.00073582815574303045" c="0.00070150828521037679" d="6.4628040083808673e-05" /> - <width sOffset="325.20234417715858" a="2.4896836286562021" b="0.00088405776490451185" c="-0.00036621535931904135" d="3.8242506739070495e-05" /> - <width sOffset="331.78911689237088" a="2.4905468487023033" b="0.0010372225018121517" c="-1.622868333239194e-06" d="-2.782928162332935e-05" /> - <width sOffset="335.25751108111689" a="2.4929636751093938" b="2.1626417143498847e-05" c="-0.00028641219127596734" d="-3.0075517116482572e-05" /> - <width sOffset="335.29282448003318" a="2.4929640803208994" b="1.2855254068692284e-06" c="5.8572562195439569e-05" d="-1.2173611341747289e-05" /> - <width sOffset="336.63985837024944" a="2.4930423372384514" b="9.2816913686141408e-05" c="-0.00035941546857750631" d="3.8465866722923499e-05" /> - <width sOffset="345.41682959872645" a="2.4921774926222557" b="0.002673338431913285" c="0.00064975362932015055" d="3.8159067676655077e-05" /> - <width sOffset="345.45908701794593" a="2.49229162414274" b="0.0027284566756393108" c="-0.00044050719901928155" d="-6.3606583993933353e-06" /> - <width sOffset="351.08861719891371" a="2.4925563730552147" b="-0.0028359789851113066" c="0.01069652254964051" d="-0.0075395583788270167" /> - <width sOffset="351.8397468564927" a="2.4932659723382553" b="0.0004716109896347573" c="-0.0033030459716276955" d="-0.0071406116512895083" /> - <width sOffset="352.0909700819206" a="2.4930627686550828" b="-0.0025399913401221857" c="0.0010672418590215148" d="0.00039326353798683133" /> - <width sOffset="353.56156023775992" a="2.4928862532524576" b="0.0031504163573817332" c="-0.0032851825546414692" d="0.00085479223432446266" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5176801" s="0" t="2.9984260736475998" orientation="none" validLength="9.9962153464897376" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.9962153464897376" s="0" distance="0" tStart="2.9984260736475998" tEnd="2.9320652988151346" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273612257" s="9.9962153464897376" t="2.9320652988151346" orientation="none" validLength="57.332604482426632" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="57.332604482426632" s="9.9962153464897376" distance="0" tStart="2.9320652988151346" tEnd="2.9005470732235108" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542047713" s="67.328819828916366" t="2.9005470732235108" orientation="none" validLength="29.40636482324463" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="29.40636482324463" s="67.328819828916366" distance="0" tStart="2.9005470732235108" tEnd="3.0313943701208865" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810483169" s="96.735184652160996" t="3.0313943701208865" orientation="none" validLength="126.6466729626211" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="126.6466729626211" s="96.735184652160996" distance="0" tStart="3.0313943701208865" tEnd="3.1107085740633296" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078918625" s="223.38185761478209" t="3.1107085740633296" orientation="none" validLength="13.774937393872733" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.774937393872733" s="223.38185761478209" distance="0" tStart="3.1107085740633296" tEnd="3.011752700606618" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741927" s="237.15679500865483" t="3.011752700606618" orientation="none" validLength="16.504114708822755" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.504114708822755" s="237.15679500865483" distance="0" tStart="3.011752700606618" tEnd="2.7559976832545945" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741928" s="253.66090971747758" t="2.7559976832545945" orientation="none" validLength="11.896007790593217" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.896007790593217" s="253.66090971747758" distance="0" tStart="2.7559976832545945" tEnd="2.7475784234290761" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741929" s="265.5569175080708" t="2.7475784234290761" orientation="none" validLength="14.617126905448629" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.617126905448629" s="265.5569175080708" distance="0" tStart="2.7475784234290761" tEnd="3.0178755014539411" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741930" s="280.17404441351943" t="3.0178755014539411" orientation="none" validLength="21.014397227877623" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="21.014397227877623" s="280.17404441351943" distance="0" tStart="3.0178755014539411" tEnd="3.6821897260114591" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741931" s="301.18844164139705" t="3.6821897260114591" orientation="none" validLength="7.043964492720761" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.043964492720761" s="301.18844164139705" distance="0" tStart="3.6821897260114591" tEnd="3.760693947254333" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741932" s="308.23240613411781" t="3.760693947254333" orientation="none" validLength="6.1268272531378329" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.1268272531378329" s="308.23240613411781" distance="0" tStart="3.760693947254333" tEnd="3.7297755073944918" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741933" s="314.35923338725564" t="3.7297755073944918" orientation="none" validLength="22.798378600356273" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="22.798378600356273" s="314.35923338725564" distance="0" tStart="3.7297755073944918" tEnd="3.3080788742891274" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741934" s="337.15761198761192" t="3.3080788742891274" orientation="none" validLength="18.418536128724156" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.418536128724156" s="337.15761198761192" distance="0" tStart="3.3080788742891274" tEnd="3.1174971623436081" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5182997" s="73.008753889173121" t="-5.3546373892166095" orientation="none" validLength="42.586199639032614" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="42.586199639032614" s="73.008753889173121" distance="0" tStart="-5.3546373892166095" tEnd="-5.2648075291330931" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273618453" s="115.59495352820574" t="-5.2648075291330931" orientation="none" validLength="3.8578162394592965" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.8578162394592965" s="115.59495352820574" distance="0" tStart="-5.2648075291330931" tEnd="-5.4078421020722987" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5183005" s="136.12890367506142" t="-5.4126236371668108" orientation="none" validLength="7.9973715217469987" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.9973715217469987" s="136.12890367506142" distance="0" tStart="-5.4126236371668108" tEnd="-5.2188455197387791" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273618461" s="144.12627519680842" t="-5.2188455197387791" orientation="none" validLength="15.703519632823287" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.703519632823287" s="144.12627519680842" distance="0" tStart="-5.2188455197387791" tEnd="-5.1483450763359802" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542053917" s="159.82979482963171" t="-5.1483450763359802" orientation="none" validLength="46.70071507063011" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="46.70071507063011" s="159.82979482963171" distance="0" tStart="-5.1483450763359802" tEnd="-5.1449624030511076" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810489373" s="206.53050990026182" t="-5.1449624030511076" orientation="none" validLength="26.714994260910885" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="26.714994260910885" s="206.53050990026182" distance="0" tStart="-5.1449624030511076" tEnd="-5.2380583141890593" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078924829" s="233.2455041611727" t="-5.2380583141890593" orientation="none" validLength="11.698639084183213" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.698639084183213" s="233.2455041611727" distance="0" tStart="-5.2380583141890593" tEnd="-5.3993183561645468" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412774" s="74.016190018967237" t="-5.3526554365225447" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848230" s="114.80496829069862" t="-5.0587493921531621" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283686" s="151.15621843786175" t="-5.3861161706766723" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719142" s="182.8569559252507" t="-5.0926994408973476" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154598" s="230.57333054761898" t="-5.0465019375884204" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412819" s="26.062793249345123" t="3.0024175892050633" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848275" s="76.106935043033729" t="3.0105105520070712" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283731" s="114.96421935254506" t="3.0221556436154766" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719187" s="146.91731508066491" t="3.0140627993919065" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154643" s="182.96171400522542" t="3.0324166315935317" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741935" s="230.78080097913528" t="3.0003505867691764" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741936" s="278.86805566674411" t="2.9251273981583195" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="817.87974439579614" id="4940858" junction="-1"> - <link> - <successor elementType="junction" elementId="33555390" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-538.1102371028054" y="-4.6692597828805447" hdg="4.4034858438812607" length="185.49947398680288"> - <paramPoly3 aU="0" bU="185.37867808904514" cU="1.4018037868676987" dU="-1.2814378153947787" aV="0" bV="-0" cV="-1.2912101195245935" dV="0.96860788998138769" /> - </geometry> - <geometry s="185.49947398680288" x="-594.81185265841623" y="-181.29011419409738" hdg="4.4052402469225971" length="123.49692731269141"> - <paramPoly3 aU="0" bU="128.11966500779909" cU="-15.18034048509546" dU="10.554818476976754" aV="0" bV="-7.1054273576010019e-15" cV="2.2072828402180642" dV="-1.4496246601435745" /> - </geometry> - <geometry s="308.99640129949432" x="-631.42712478457906" y="-299.23374161105613" hdg="4.40574781877074" length="508.88334309630181"> - <paramPoly3 aU="0" bU="508.71444328492061" cU="0.37823102476613235" dU="-0.21357057028806342" aV="0" bV="-8.5265128291212022e-14" cV="-3.7016934036859919" dV="1.7570446186068351" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.59940432855757" b="0.0056567843369680383" c="-6.5060089023135398e-05" d="1.5979236407934841e-07" /> - <elevation s="10.097280795009828" a="156.65005376315494" b="0.0043917992916653777" c="-7.6792234320067533e-05" d="1.801080819892847e-06" /> - <elevation s="20.194561590019656" a="156.68842379243566" b="0.0033919018003353797" c="-3.0696927229634577e-05" d="-6.4337448253450185e-07" /> - <elevation s="30.291842385029483" a="156.71888073556062" b="0.0025752049233171304" c="-8.0215250348583014e-05" d="3.9369603610139594e-06" /> - <elevation s="40.389123180039313" a="156.740757929458" b="0.0021594724289285341" c="-9.9413224355512079e-05" d="1.0094806839806965e-05" /> - <elevation s="50.486403975049143" a="156.76281933712008" b="0.0032395164470726354" c="2.1025898365980096e-05" d="-4.0011642293495026e-07" /> - <elevation s="60.583684770058966" a="156.7972614339846" b="0.0035417435415372334" c="4.0507640428972573e-05" d="-2.4100529206954135e-06" /> - <elevation s="70.680965565068803" a="156.8346722977972" b="0.0036226261699981964" c="-3.9843126905657598e-06" d="-9.4190931592600225e-08" /> - <elevation s="80.778246360078626" a="156.8707477838837" b="0.0035133549902317649" c="8.9517367592630099e-06" d="-1.1499390298007081e-06" /> - <elevation s="90.875527155088449" a="156.90595196412653" b="0.0033424050141050948" c="-2.821661207886203e-05" d="1.7007322429312817e-06" /> - <elevation s="100.97280795009829" a="156.93857519039136" b="0.0032927777764872332" c="-4.9741400408603067e-06" d="1.419194634569205e-06" /> - <elevation s="111.07008874510811" a="156.97277717032759" b="0.0036264095042561882" c="3.5326043123933901e-05" d="-8.3321768917845123e-07" /> - <elevation s="121.16736954011793" a="157.01213794306719" b="0.0040849511307479739" c="2.1966274395992079e-05" d="-2.374505381408171e-08" /> - <elevation s="127.99965864248398" a="157.0410653266126" b="0.0043817857353435153" c="1.0819530465715242e-06" d="-1.8966832692792625e-07" /> - <elevation s="131.26465033512775" a="157.05537675296557" b="0.0043827851805068041" c="1.1595401211927998e-05" d="-1.0477990644508862e-06" /> - <elevation s="141.36193113013761" a="157.09973449892527" b="0.0042964639138406016" c="1.9366821581171883e-05" d="-2.8775147215232443e-06" /> - <elevation s="151.45921192514743" a="157.14212933493005" b="0.0038074366588818969" c="-4.2171108172907785e-05" d="2.8244153779868512e-06" /> - <elevation s="161.55649272015725" a="157.17918218155995" b="0.0038197001003798278" c="1.1838027454683663e-06" d="-6.1309092638616558e-09" /> - <elevation s="171.65377351516707" a="157.21786514914774" b="0.0038417312458102672" c="6.3659269684066035e-05" d="-4.0935036100854402e-06" /> - <elevation s="181.7510543101769" a="157.25893243883726" b="0.0038752418307952301" c="-6.111854503522337e-07" d="-6.1309092638623134e-09" /> - <elevation s="191.84833510518675" a="157.29799321870877" b="0.0038610239765518198" c="-0.00012918260700169989" d="6.8253639961596151e-06" /> - <elevation s="201.94561590019657" a="157.33083474009172" b="0.0033398794486745997" c="-2.6323711738897113e-05" d="3.4516745661306097e-06" /> - <elevation s="212.04289669520639" a="157.36542799677537" b="0.0038640308945955921" c="-1.589884766429262e-08" d="-6.1309092638632952e-09" /> - <elevation s="222.14017749021622" a="157.40443626916897" b="0.0038618345923138739" c="3.9860318758565219e-05" d="-2.6553929088586722e-06" /> - <elevation s="232.23745828522604" a="157.44476061454048" b="0.003854603869474494" c="-1.0366675306964174e-05" d="-6.1309092638644814e-09" /> - <elevation s="242.33473908023586" a="157.48261838537806" b="0.0036433781744809159" c="-2.895690999247614e-05" d="1.7863680093527296e-06" /> - <elevation s="252.43201987524571" a="157.5182933043948" b="0.0036049939491602382" c="1.3011298422592152e-05" d="-5.9591297643817897e-07" /> - <elevation s="262.52930067025551" a="157.55540703455316" b="0.0036854823519414299" c="3.3723216777363169e-06" d="-2.4947662999462821e-07" /> - <elevation s="272.62658146526536" a="157.59270738157713" b="0.0036772786808653211" c="-2.3911515542309853e-06" d="5.9579509548257627e-08" /> - <elevation s="282.72386226027521" a="157.62965544219466" b="0.0036472137244216757" c="-1.2377818725699611e-05" d="1.0959424073144103e-06" /> - <elevation s="292.82114305528501" a="157.66634864060407" b="0.0037324597874572913" c="4.2375875155212391e-05" d="-2.9073136806515756e-06" /> - <elevation s="302.91842385029486" a="157.70536378135387" b="0.0036989758162909439" c="-2.2312121672601999e-05" d="8.4983059819147024e-07" /> - <elevation s="313.01570464530465" a="157.74131341899894" b="0.0035083259394508726" c="-1.4321146992026107e-05" d="8.9600069906207489e-07" /> - <elevation s="323.1129854403145" a="157.77620026245307" b="0.0034931721218698663" c="2.743069861754597e-06" d="8.9758167748112098e-08" /> - <elevation s="333.21026623532435" a="157.81184387539568" b="0.0035760211185118193" c="1.4059276559861687e-05" d="-3.7898576151839206e-07" /> - <elevation s="343.30754703033415" a="157.84899522529906" b="0.0037440234746292616" c="1.8913015571480757e-05" d="-1.2509309779041674e-06" /> - <elevation s="353.404827825344" a="157.88744016488567" b="0.0037433472307121848" c="-2.672186559172463e-05" d="2.0053980741362528e-06" /> - <elevation s="363.50210862035379" a="157.9245778583396" b="0.0038170924301718884" c="2.2911281231830207e-05" d="-9.1696201339774181e-07" /> - <elevation s="373.59938941536365" a="157.96451204989864" b="0.0039993089053195433" c="1.9351073164429476e-05" d="-1.4935950696794473e-06" /> - <elevation s="383.6966702103735" a="158.00532952518267" b="0.0039332565321710316" c="-1.5846133085613578e-05" d="4.8635842657238789e-07" /> - <elevation s="393.79395100538329" a="158.04392981802403" b="0.0037620109576818306" c="-8.6359326566979768e-06" d="2.4638155530182896e-07" /> - <elevation s="403.89123180039314" a="158.081289064007" b="0.003662971636898737" c="5.3973058230706057e-06" d="-9.0930243475559305e-07" /> - <elevation s="413.98851259540294" a="158.11788930118499" b="0.0034938438558152268" c="9.1814571069457065e-06" d="-2.205636030468727e-06" /> - <elevation s="424.08579339041279" a="158.1518330857763" b="0.0030046319666532308" c="-2.723611464298726e-05" d="9.6336237701773831e-07" /> - <elevation s="434.18307418542264" a="158.18038658996304" b="0.0027492696350960031" c="-3.2344974497598543e-05" d="2.4204268636509959e-06" /> - <elevation s="444.28035498043243" a="158.20734075758693" b="0.0028364014950597607" c="1.8397558442149279e-06" d="-6.1309092639445616e-09" /> - <elevation s="454.37763577544229" a="158.23616196080178" b="0.0028716793257429784" c="6.2763203666746237e-05" d="-4.8583014809631366e-06" /> - <elevation s="464.47491657045208" a="158.26655566963703" b="0.0026531691672793665" c="-8.2201964894310455e-05" d="3.9238292784008754e-06" /> - <elevation s="474.57219736546193" a="158.28900401671496" b="0.0021932995019219191" c="2.2431968591529132e-05" d="-2.5271885567243916e-06" /> - <elevation s="484.66947816047173" a="158.31083576835107" b="0.0018733241429462213" c="-5.880936288786628e-05" d="2.9792234272781798e-06" /> - <elevation s="494.76675895548158" a="158.32682235333488" b="0.001596935725748997" c="6.7350334828411088e-06" d="-5.4510679801594896e-07" /> - <elevation s="504.86403975049143" a="158.3430725620571" b="0.0015662175535223692" c="-1.4277442573529747e-05" d="9.7852802418421701e-07" /> - <elevation s="514.96132054550128" a="158.35843880701998" b="0.0015771885674821233" c="5.4565402763649109e-05" d="-4.8731646577841028e-06" /> - <elevation s="525.05860134051102" a="158.37491057055934" b="0.0011885812846570832" c="-0.00011054067871759175" d="6.5929479419369973e-06" /> - <elevation s="535.15588213552087" a="158.3824290618148" b="0.00097281433384656803" c="3.8202706734180643e-05" d="-1.5573998111494577e-06" /> - <elevation s="545.25316293053072" a="158.39454350637695" b="0.0012679467834366708" c="-1.7257909723194251e-05" d="2.365567474160308e-06" /> - <elevation s="555.35044372554057" a="158.40802206806291" b="0.0016429757219569093" c="-3.1943456070662113e-06" d="-6.1309092639079117e-09" /> - <elevation s="565.44772452055042" a="158.42427966392529" b="0.001576592080831834" c="-3.6730978677150979e-06" d="4.7570440226333581e-07" /> - <elevation s="575.54500531556016" a="158.44031418884623" b="0.0016479169201031811" c="9.4822958228191691e-06" d="-3.6371849324646972e-07" /> - <elevation s="575.99646828679329" a="158.44106006151733" b="0.0016562563328320653" c="3.1455441164246694e-06" d="-3.3101818901350504e-07" /> - <elevation s="585.64228611057001" a="158.45703159846815" b="0.0016245434379446116" c="-2.4837274132837544e-05" d="2.2068243253735062e-06" /> - <elevation s="595.73956690557986" a="158.47317464084358" b="0.0017979564240394369" c="0.0001355597615810699" d="-1.1418384991775782e-05" /> - <elevation s="605.83684770058971" a="158.49339524384746" b="0.0010430393312229995" c="-2.7767646728792248e-05" d="2.6568859488201223e-08" /> - <elevation s="615.93412849559957" a="158.50112340404553" b="0.00049041036968880262" c="-0.0002722933857101942" d="1.7381668219603469e-05" /> - <elevation s="626.0314092906093" a="158.49620741122098" b="0.0003080129144896378" c="2.264109568792643e-05" d="-2.5298691823141981e-07" /> - <elevation s="636.12869008561916" a="158.50136543661048" b="0.00068786001177822552" c="3.3938240416602709e-05" d="-1.571666519257402e-06" /> - <elevation s="646.22597088062901" a="158.51015314623203" b="0.00089250974359338521" c="2.1996492797943044e-05" d="-1.9075256621233514e-06" /> - <elevation s="656.32325167563886" a="158.51944398323505" b="0.00075327348084303167" c="-1.7594815380961717e-06" d="-1.4092035223949995e-06" /> - <elevation s="666.42053247064871" a="158.52541987757292" b="0.00028671515128059102" c="-7.4556151970824619e-05" d="4.4442628156226923e-06" /> - <elevation s="676.51781326565845" a="158.52528877365427" b="0.00014043185382502695" c="1.3436211076064301e-05" d="2.2720201817869728e-07" /> - <elevation s="686.6150940606683" a="158.5283105409321" b="0.00048126344538317159" c="6.8975566440081617e-05" d="-4.9928851904497609e-06" /> - <elevation s="696.71237485567815" a="158.53506238158096" b="0.0003470447511837411" c="-5.3232594616516135e-05" d="2.1704437541549097e-06" /> - <elevation s="706.809655650688" a="158.53537366117223" b="-6.4100863184859947e-05" c="-2.5789724973990068e-05" d="1.6761776998523748e-06" /> - <elevation s="716.90693644569785" a="158.53382259638931" b="-7.2228560863003746e-05" c="1.330348936119934e-05" d="-4.6616452151398587e-07" /> - <elevation s="727.00421724070759" a="158.53396974068926" b="5.3846051916140412e-05" c="1.8369842751845017e-05" d="-1.3809455580380378e-06" /> - <elevation s="737.10149803571744" a="158.53496469743902" b="2.433730496006494e-06" c="-1.8102043468012017e-05" d="9.0329691231487615e-07" /> - <elevation s="747.19877883072729" a="158.53407359244756" b="-8.6841975829093031e-05" c="3.6267756110228394e-05" d="-3.5248666152470406e-06" /> - <elevation s="757.29605962573714" a="158.5332656654474" b="-0.00043256470878839541" c="-5.6723304476852716e-06" d="2.6568859487962442e-08" /> - <elevation s="767.39334042074699" a="158.52834696703823" b="-0.00053898844483288538" c="-0.00011060616312560011" d="5.6065515263635317e-06" /> - <elevation s="777.49062121575673" a="158.51739956057776" b="-0.0010577821993207786" c="-1.2467524971302329e-05" d="1.5469272112804235e-06" /> - <elevation s="787.58790201076658" a="158.50704022290313" b="-0.00083640714002526726" c="3.2604685792518885e-05" d="-1.3168047636675069e-06" /> - <elevation s="797.68518280577644" a="158.50056338871204" b="-0.00058073460757751745" c="4.7074582060854881e-06" d="1.8237376887982262e-07" /> - <elevation s="807.78246360078629" a="158.49536724574082" b="-0.00042988775661327334" c="8.6586897485182947e-06" d="2.6568859470978035e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025306463718310992" b="8.7522930405027947e-06" c="-4.3339851679808558e-07" d="-1.3164579303435933e-23" /> - <superelevation s="10.097280795009828" a="0.025350650898526075" b="0" c="-1.0606016440306288e-05" d="5.9309932714221617e-07" /> - <superelevation s="20.194561590019656" a="0.02487989105986254" b="-3.2775385161121845e-05" c="4.1645506318547529e-06" d="-2.7662756319193963e-07" /> - <superelevation s="30.291842385029483" a="0.024688766364253184" b="-3.3284866483975352e-05" c="-1.7681884956187054e-06" d="3.4302974447135992e-08" /> - <superelevation s="40.389123180039313" a="0.024207717773636318" b="-5.8500570505787339e-05" c="-6.3317271273280225e-06" d="5.2056313661204435e-07" /> - <superelevation s="50.486403975049143" a="0.023507372990122774" b="-2.7144856088631245e-05" c="4.0324999333554027e-06" d="-2.662432929697404e-07" /> - <superelevation s="60.583684770058966" a="0.023370328373089253" b="-2.7144856088631245e-05" c="-9.9759578246120713e-06" d="6.2878632789717282e-07" /> - <superelevation s="70.680965565068803" a="0.022726455639907463" b="-3.6281070737529922e-05" c="1.7965762998024377e-06" d="5.2658317213743813e-23" /> - <superelevation s="80.778246360078626" a="0.022543285560517237" b="0" c="4.2460402991359321e-06" d="-2.8034216243210739e-07" /> - <superelevation s="90.875527155088449" a="0.022687587352537304" b="0" c="-6.4558864769222808e-06" d="3.6256359388117557e-07" /> - <superelevation s="100.97280795009829" a="0.022402624938097315" b="-1.9478197013322132e-05" c="6.687253365839272e-07" d="1.953011087139462e-08" /> - <superelevation s="111.07008874510811" a="0.022294233703289233" b="0" c="5.7571298587099415e-06" d="-1.3423363579095297e-07" /> - <superelevation s="121.16736954011793" a="0.022743012959831277" b="7.5205310506352871e-05" c="7.0937654904557399e-06" d="-4.0084307244171805e-07" /> - <superelevation s="131.26465033512775" a="0.023812971978206327" b="9.5856832711247353e-05" c="5.3661739393143254e-07" d="-1.5228872495976263e-07" /> - <superelevation s="141.36193113013761" a="0.024678799671842774" b="6.0113758563941348e-05" c="-1.6628998021904114e-06" d="-8.6744823415866833e-08" /> - <superelevation s="151.45921192514743" a="0.025026942977933415" b="0" c="-4.2100665006475285e-06" d="2.7796701482430469e-07" /> - <superelevation s="161.55649272015725" a="0.02488386375640772" b="0" c="1.0814119148862605e-06" d="0" /> - <superelevation s="171.65377351516707" a="0.024994119194111666" b="2.183863951935167e-05" c="2.0093632398022316e-06" d="-9.0972555230360963e-08" /> - <superelevation s="181.7510543101769" a="0.025325841426845176" b="3.4591506932523216e-05" c="1.5460222935330335e-07" d="1.7440478486706098e-09" /> - <superelevation s="191.84833510518675" a="0.025692679511352099" b="3.8247074786097462e-05" c="2.1546468774591213e-06" d="-1.945894549531467e-07" /> - <superelevation s="201.94561590019657" a="0.026098224334251109" b="2.2241073836135823e-05" c="-1.1013397709573247e-06" d="0" /> - <superelevation s="212.04289669520639" a="0.026210511518104114" b="0" c="-4.2708815375807388e-06" d="2.8198228970657226e-07" /> - <superelevation s="222.14017749021622" a="0.026065365495937597" b="0" c="8.3083736890405476e-07" d="-5.4855519076290637e-08" /> - <superelevation s="232.23745828522604" a="0.026093601525924048" b="0" c="-1.5565700947377931e-05" d="1.0277156964919782e-06" /> - <superelevation s="242.33473908023586" a="0.025564600766978775" b="0" c="2.813711177798778e-06" d="-1.8577352556075194e-07" /> - <superelevation s="252.43201987524571" a="0.025660224815875789" b="0" c="-2.2070269689565312e-06" d="1.1423689361788591e-07" /> - <superelevation s="262.52930067025551" a="0.025552810554043549" b="-9.6288473595074765e-06" c="-6.5379691669783278e-07" d="7.4647219094131797e-08" /> - <superelevation s="272.62658146526536" a="0.025465774464833318" b="0" c="2.0108740563715062e-05" d="-1.3276670535994103e-06" /> - <superelevation s="282.72386226027521" a="0.0261491705454596" b="0" c="-9.067189833808698e-06" d="5.9865555343637454e-07" /> - <superelevation s="292.82114305528501" a="0.02584102185881831" b="0" c="1.8885559513568289e-06" d="-4.0302901644070709e-08" /> - <superelevation s="302.91842385029486" a="0.025992079140389639" b="2.5811302857918242e-05" c="1.3537217366911864e-06" d="-2.7637660129248244e-08" /> - <superelevation s="313.01570464530465" a="0.026362269804101189" b="4.4695720342137527e-05" c="9.5756267713024315e-07" d="-1.6041088032644686e-08" /> - <superelevation s="323.1129854403145" a="0.02689468961764923" b="5.9126867587091554e-05" c="7.7565816418517901e-06" d="-7.054336558103695e-07" /> - <superelevation s="333.21026623532435" a="0.027556310973213649" b="0" c="-1.3032380876345156e-06" d="0" /> - <superelevation s="343.30754703033415" a="0.02742343923044234" b="-2.6318321827194574e-05" c="-9.3581387418916505e-06" d="6.6371036343505031e-07" /> - <superelevation s="353.404827825344" a="0.026886855253687725" b="-1.2295902504328393e-05" c="1.8266159108507147e-06" d="-1.2060117622647381e-07" /> - <superelevation s="363.50210862035379" a="0.026824777663580591" b="-1.2295902504328393e-05" c="-8.8636279752454664e-06" d="5.1058475071255692e-07" /> - <superelevation s="373.59938941536365" a="0.026322561795191435" b="-3.5122857081856957e-05" c="8.6377456155860037e-07" d="5.7800973374328507e-08" /> - <superelevation s="383.6966702103735" a="0.026115486963023571" b="0" c="4.577599332172581e-06" d="-3.0223314079006441e-07" /> - <superelevation s="393.79395100538329" a="0.026271056797562538" b="0" c="-1.0848811403610942e-05" d="7.1628600635875719e-07" /> - <superelevation s="403.89123180039314" a="0.025902359654686291" b="0" c="7.5062898784963185e-06" d="-3.7640731078775346e-07" /> - <superelevation s="413.98851259540294" a="0.026280164353081881" b="3.645632142935935e-05" c="3.3252365996152731e-06" d="-3.3873746914578994e-07" /> - <superelevation s="424.08579339041279" a="0.026638579083137041" b="0" c="-1.3979396600713767e-05" d="6.7940416469035766e-07" /> - <superelevation s="434.18307418542264" a="0.025912734162670616" b="-7.4501668868754271e-05" c="-8.1557713859702065e-06" d="7.820564955977494e-07" /> - <superelevation s="444.28035498043243" a="0.025134050542607735" b="0" c="2.2996256181922975e-07" d="0" /> - <superelevation s="454.37763577544229" a="0.025157496393869296" b="4.643993118057836e-06" c="1.7502484938890364e-05" d="-9.372300076229722e-07" /> - <superelevation s="464.47491657045208" a="0.026024006038656927" b="7.1432923515291695e-05" c="2.8010788097852057e-06" d="-4.1848325996241068e-07" /> - <superelevation s="474.57219736546193" a="0.026600052967354015" b="0" c="-1.7987333517304641e-05" d="1.168514210949313e-06" /> - <superelevation s="484.66947816047173" a="0.025969102182468" b="-5.8384368965812856e-06" c="2.8910936593285872e-07" d="0" /> - <superelevation s="494.76675895548158" a="0.025939626014093636" b="0" c="2.0467502775680927e-05" d="-1.3513541048791461e-06" /> - <superelevation s="504.86403975049143" a="0.026635214637995192" b="0" c="-1.863562906307247e-05" d="1.2304057855709936e-06" /> - <superelevation s="514.96132054550128" a="0.026001882290732754" b="0" c="2.8363985067010014e-06" d="-1.8727144230110639e-07" /> - <superelevation s="525.05860134051102" a="0.026098277369103372" b="0" c="-7.2883187163751313e-06" d="3.3534773421604198e-07" /> - <superelevation s="535.15588213552087" a="0.025700426373928342" b="-4.4613186546114589e-05" c="-4.6825372811936102e-06" d="4.1262782744211225e-07" /> - <superelevation s="545.25316293053072" a="0.025197333625670823" b="-1.2966465274264242e-05" c="6.4207708676734404e-07" d="0" /> - <superelevation s="555.35044372554057" a="0.025131870605274328" b="0" c="1.49387521354196e-05" d="-8.8869727903100092e-07" /> - <superelevation s="565.44772452055042" a="0.025740065908624293" b="2.9859944996223695e-05" c="-3.1721932378766082e-06" d="1.677263501971623e-07" /> - <superelevation s="575.54500531556016" a="0.025890818033199502" b="1.7100553360759089e-05" c="1.1678623654007241e-06" d="-9.4371495979628412e-08" /> - <superelevation s="585.64228611057001" a="0.02608540408669156" b="1.1820061715326207e-05" c="-1.7559274554145243e-06" d="1.1593401504574621e-07" /> - <superelevation s="595.73956690557986" a="0.026145079327768557" b="1.1820061715326207e-05" c="1.9221943625848261e-05" d="-1.3077615105670881e-06" /> - <superelevation s="605.83684770058971" a="0.026877904579077797" b="0" c="-3.514116515711139e-05" d="1.9581495364685287e-06" /> - <superelevation s="615.93412849559957" a="0.02531093866724678" b="-0.00011073054939421551" c="2.2420455895126408e-06" d="2.13994313313143e-07" /> - <superelevation s="626.0314092906093" a="0.024641749679439596" b="0" c="8.7481618618880488e-06" d="-4.135648757304187e-07" /> - <superelevation s="636.12869008561916" a="0.025107916970906839" b="5.0170174226825034e-05" c="6.1578832146100368e-06" d="-5.7059745332387116e-07" /> - <superelevation s="646.22597088062901" a="0.025654914352845233" b="0" c="-7.3636521004013223e-06" d="4.8618053710991123e-07" /> - <superelevation s="656.32325167563886" a="0.025404660441191006" b="0" c="1.7713493279587459e-05" d="-9.7314730416267449e-07" /> - <superelevation s="666.42053247064871" a="0.02620881600988478" b="6.0064298862091961e-05" c="-5.7382787067908215e-06" d="3.7628831894833732e-07" /> - <superelevation s="676.51781326565845" a="0.02661763262392287" b="5.9275792464254778e-05" c="1.1452567616840367e-05" d="-9.4994572160105579e-07" /> - <superelevation s="686.6150940606683" a="0.027405864651601396" b="0" c="-2.1080712911891113e-05" d="1.2647314537928538e-06" /> - <superelevation s="696.71237485567815" a="0.02655858079985721" b="-3.8878367685191738e-05" c="5.7755699491498617e-06" d="-3.8132840358394697e-07" /> - <superelevation s="706.809655650688" a="0.026362297902172701" b="-3.8878367685191738e-05" c="-5.6271198979107785e-06" d="3.4999680591656767e-07" /> - <superelevation s="716.90693644569785" a="0.025756329535310041" b="-4.5463730571127698e-05" c="2.2101927466142393e-06" d="-7.6186906826722099e-08" /> - <superelevation s="727.00421724070759" a="0.025444177795042003" b="-2.4132783440265473e-05" c="-3.7513326895592474e-07" d="1.0366799285428958e-07" /> - <superelevation s="737.10149803571744" a="0.025268978553786996" b="0" c="9.6790608202900478e-06" d="-3.8611507913762703e-07" /> - <superelevation s="747.19877883072729" a="0.025858314438973594" b="7.7365209154141979e-05" c="1.3306892742289816e-05" d="-1.1315181681513982e-06" /> - <superelevation s="757.29605962573714" a="0.026831335034975073" b="0" c="-3.6225598282404338e-05" d="2.2038797216156157e-06" /> - <superelevation s="767.39334042074699" a="0.025406777281814955" b="-5.7469879280982952e-05" c="2.8458097010328575e-06" d="0" /> - <superelevation s="777.49062121575673" a="0.025116632527637257" b="0" c="1.7327862630579038e-05" d="-1.1440613225389417e-06" /> - <superelevation s="787.58790201076658" a="0.025705520398055962" b="0" c="-2.7037099964493009e-06" d="1.5029159301554908e-07" /> - <superelevation s="797.68518280577644" a="0.025584583976396239" b="-8.6312641236680501e-06" c="1.1861735806417906e-06" d="-8.4657519467911289e-08" /> - <superelevation s="807.78246360078629" a="0.02553121580311082" b="-1.0570801063944613e-05" c="-1.5728861095656432e-06" d="3.4644251277807331e-08" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="7.2823514354812344" b="3.7429997470147675e-05" c="-0.058143958962243572" d="0.090730133388138873" /> - <laneOffset s="0.42690793237417513" a="7.2788298353318011" b="-0" c="0.0091716202663326262" d="-0.007195728827293294" /> - <laneOffset s="1.2766361055226285" a="7.2810372546859981" b="-0" c="-0.00017741470567141711" d="8.547111515441207e-06" /> - <laneOffset s="10.097280795009828" a="7.2730994281057333" b="-0.0011348315970890214" c="4.4733045865270566e-05" d="9.1537790170425108e-06" /> - <laneOffset s="14.928761472652784" a="7.2696931076176403" b="-6.1542268442771973e-05" c="-3.9615622588097792e-06" d="7.2295580847166616e-07" /> - <laneOffset s="20.194561590019656" a="7.2693647508882773" b="-4.3124090822056163e-05" c="7.3541574461228001e-07" d="6.6908612529568588e-08" /> - <laneOffset s="30.291842385029483" a="7.2690731745517176" b="-7.8076735539691437e-06" c="-7.1765300185480643e-06" d="2.6655140932895306e-06" /> - <laneOffset s="32.524139271816345" a="7.2690496346144116" b="-0" c="0.00022759905272314157" d="-1.3419433406937621e-05" /> - <laneOffset s="38.206723489549717" a="7.273936734418851" b="0.0012866900646721141" c="0.00025881955189035701" d="-2.4404650447334647e-05" /> - <laneOffset s="40.389123180039313" a="7.2777238561720754" b="0.0020676770685976406" c="7.6806120779447461e-05" d="-2.7431957984897216e-05" /> - <laneOffset s="45.16247035852156" a="7.2863601132423614" b="0.00092582303725548666" c="-0.00024674575618036402" d="3.20283142232299e-05" /> - <laneOffset s="49.039770684440263" a="7.288107271092235" b="0.00045689716804885613" c="-1.5173913008203248e-05" d="6.4893339358867857e-06" /> - <laneOffset s="50.486403975049143" a="7.2887561246326849" b="0.000453736612094772" c="-1.8280579621511853e-06" d="2.404838192698534e-08" /> - <laneOffset s="60.583684770058966" a="7.2931760078824794" b="0.00042417534705808192" c="-4.9752401490107405e-06" d="1.889069839759871e-07" /> - <laneOffset s="70.680965565068803" a="7.2971462483596552" b="0.00038148263312536522" c="-1.1128187210078038e-05" d="3.0572044050717008e-06" /> - <laneOffset s="72.562577791224101" a="7.2978450182211718" b="0.00037207653853844262" c="2.6514317473162838e-05" d="-2.5856525714799624e-06" /> - <laneOffset s="80.778246360078626" a="7.3012576841084087" b="0.0002841692238451627" c="-3.6402594940016673e-05" d="-3.0532092455748692e-06" /> - <laneOffset s="83.646422810697175" a="7.301701227884613" b="-0" c="-0.001415585123366953" d="0.0003791732152318965" /> - <laneOffset s="86.135320701337477" a="7.2987782273521651" b="-0" c="0.00019887061632382355" d="-7.7269038542769479e-06" /> - <laneOffset s="90.875527155088449" a="7.3024237668879026" b="0.0013645152329599724" c="8.7947893522342734e-05" d="-7.1067144379648144e-06" /> - <laneOffset s="94.857102721586642" a="7.3088023467858774" b="0.0017268705630586532" c="0.0001273727331356992" d="-7.999468682569267e-06" /> - <laneOffset s="100.97280795009829" a="7.3222975660268936" b="0.0023872339492307182" c="-2.7801409357126525e-05" d="-5.9039733803100642e-06" /> - <laneOffset s="102.56006413495017" a="7.3259930660732193" b="0.0022543549350667381" c="0.00015699077181276352" d="-1.3352445213949935e-05" /> - <laneOffset s="111.07008874510811" a="7.3483179179051357" b="0.0020253725669025827" c="-0.00018180473297164804" d="-1.3964115939254154e-05" /> - <laneOffset s="114.14970158845476" a="7.352423191148147" b="0.00050828851943444616" c="-9.0870877060339532e-06" d="-3.8201851427791361e-07" /> - <laneOffset s="121.16736954011793" a="7.3554106463328335" b="0.00032430763339439251" c="-7.7158798760129862e-06" d="-3.5605480611529233e-07" /> - <laneOffset s="131.26465033512775" a="7.3575320510167739" b="5.958403387515968e-05" c="9.267736477811219e-06" d="-6.5641453774157341e-06" /> - <laneOffset s="133.53727869777697" a="7.357638281384685" b="-0" c="-6.5543731226682902e-05" d="1.6664210362434154e-06" /> - <laneOffset s="141.36193113013761" a="7.3544236795934106" b="-0.00071963301980631426" c="6.9404475688821556e-07" d="-7.6191170600011249e-06" /> - <laneOffset s="142.82487134458427" a="7.3533485296271168" b="-0.00076652149530753353" c="2.6234275074048179e-06" d="-1.4825779924306525e-06" /> - <laneOffset s="151.45921192514743" a="7.345971359034178" b="-0.0010528051017888495" c="-3.4606113416611701e-05" d="-1.2815047792632532e-06" /> - <laneOffset s="161.55649272015725" a="7.3304933517282205" b="-0.0021436281553397522" c="-7.3605237108230047e-05" d="-1.4075385403629016e-06" /> - <laneOffset s="166.80986895426599" a="7.3169966435720371" b="-0.00303351574684927" c="-0.00011405552342806924" d="4.7215117019707578e-06" /> - <laneOffset s="171.65377351516707" a="7.3001630723142252" b="-0.0038061155726965461" c="-4.0548514292640388e-05" d="4.6113263586232379e-06" /> - <laneOffset s="177.12051984683339" a="7.2788975762949537" b="-0.0038360196275459587" c="7.6251287417248339e-05" d="-3.8770743790400545e-06" /> - <laneOffset s="181.7510543101769" a="7.2623847798829173" b="-0.0033792461340580674" c="2.8680951017972943e-05" d="-3.3908431093044196e-06" /> - <laneOffset s="191.84833510518675" a="7.2276969833439857" b="-0.0038371879381333008" c="-6.9811714617864232e-05" d="-3.4062296661915865e-06" /> - <laneOffset s="201.94561590019657" a="7.1783275522867216" b="-0.006288852157446843" c="-0.00016190211247307386" d="-7.7399100762064845e-06" /> - <laneOffset s="203.26420273981043" a="7.1697359156138267" b="-0.0067561876245332657" c="0.00017675943132157006" d="-5.985203631925729e-05" /> - <laneOffset s="207.8526457398587" a="7.1366750348524599" b="-0.0089144265262032923" c="-0.00087232597731137394" d="0.00010071062902865046" /> - <laneOffset s="212.82273524618435" a="7.0831857788565022" b="-0.010122304561334018" c="0.00042291084619569335" d="-3.6827517428553574e-05" /> - <laneOffset s="220.81722009233712" a="7.0104754379667931" b="-0.010421533313412831" c="-0.00041919351393105841" d="6.4363735863493695e-05" /> - <laneOffset s="222.14017749021622" a="6.9961035458184027" b="-0.011192732259812294" c="-0.0001655038223441783" d="6.3193012674585248e-05" /> - <laneOffset s="224.77916087098703" a="6.9665748966952528" b="-0.010745983286503608" c="0.00034946669830320665" d="-2.7598261432107474e-05" /> - <laneOffset s="232.23745828522604" a="6.8944177850024415" b="-0.010138689398523987" c="-0.00027500151627187831" d="-2.5341155360788379e-05" /> - <laneOffset s="234.38156385778655" a="6.8711653465317886" b="-0.011667448185212832" c="-0.00024730645773088079" d="1.4936436246422255e-05" /> - <laneOffset s="238.662873033149" a="6.8178524957265036" b="-0.012963701923062175" c="-0.00029715352336589742" d="4.3961312280208726e-05" /> - <laneOffset s="242.59742318850638" a="6.7649236831668231" b="-0.013260379133210164" c="-3.2834772439156859e-05" d="1.0777174589553916e-05" /> - <laneOffset s="250.02759919299757" a="6.6690048199064211" b="-0.011963372311560814" c="0.00031180603880215276" d="-4.0681780016638769e-05" /> - <laneOffset s="252.43201987524571" a="6.6414769669550964" b="-0.011169519791824135" c="1.856957959377413e-05" d="-4.0032207182820168e-05" /> - <laneOffset s="254.56390581027586" a="6.6173613387812171" b="-0.01163617499642457" c="-0.00024452250153060611" d="1.9891086617599432e-05" /> - <laneOffset s="262.52930067025551" a="6.5192129122282765" b="-0.01174549148406377" c="0.00022660952315924085" d="2.1307016701009609e-05" /> - <laneOffset s="264.06153974510028" a="6.5018246834732967" b="-0.010900980485696224" c="0.00027334328539475454" d="-4.1911199899231004e-05" /> - <laneOffset s="267.42693778468424" a="6.4666369102872014" b="-0.010485209247419854" c="-0.00021406014443306739" d="2.1372459423118396e-05" /> - <laneOffset s="272.62658146526536" a="6.4093346862528495" b="-0.010977785886584065" c="0.00012572553313840021" d="2.0230759357710315e-05" /> - <laneOffset s="277.01350726344447" a="6.3653035772432673" b="-0.0087066586662540007" c="0.00049017698691638254" d="-3.8779788048281811e-05" /> - <laneOffset s="282.72386226027521" a="6.3243482752562583" b="-0.0069021013774963093" c="-0.00017190140817669486" d="-3.6668810595891959e-05" /> - <laneOffset s="284.61133953250203" a="6.3104617338870641" b="-0.0079429270430373053" c="-0.00092898882659328932" d="0.0004822700404681639" /> - <laneOffset s="285.36189242778124" a="6.3041807280169344" b="-0.0085224065126999135" c="-0.00058123825343892" d="7.9964399396994409e-05" /> - <laneOffset s="289.9602859223661" a="6.2604761998028193" b="-0.008795335812124782" c="0.00022799937156777608" d="-3.95497380458956e-06" /> - <laneOffset s="292.82114305528501" a="6.2370874577642308" b="-0.0075878970464761594" c="0.00019119948391991754" d="-4.8334028962115512e-06" /> - <laneOffset s="302.91842385029486" a="6.1749882504530138" b="-0.0052050772214149339" c="4.9631643848844255e-05" d="-5.5669281771325607e-06" /> - <laneOffset s="306.44622660229112" a="6.1569990346190284" b="-0.0050627437363936576" c="0.00017897101299847279" d="-5.5940215205846749e-06" /> - <laneOffset s="313.01570464530465" a="6.1298774397878333" b="-0.0034355324990696999" c="7.4224273672083028e-05" d="-5.4630508266629146e-06" /> - <laneOffset s="323.1129854403145" a="6.0971314033534512" b="-0.0036075631761937716" c="-7.4792247813940807e-05" d="-8.7980198876001009e-06" /> - <laneOffset s="325.76197410882287" a="6.0868866411629394" b="-0.0041890216474137765" c="-0.00012066068334675971" d="1.8466646924011318e-05" /> - <laneOffset s="330.88798932920508" a="6.0647304658808165" b="-0.0039703480273715983" c="0.00014478624710907714" d="-4.2439528634784543e-06" /> - <laneOffset s="333.21026623532435" a="6.0562378951015257" b="-0.0033665430431897309" c="0.00012056510090324585" d="-2.4805494517322961e-06" /> - <laneOffset s="343.30754703033415" a="6.0319835402012929" b="-0.0016904975367099022" c="4.2192242308611861e-05" d="-2.3528272471272112e-06" /> - <laneOffset s="353.404827825344" a="6.0167936624388512" b="-0.001558091767549971" c="-3.2422064463985225e-05" d="-2.4051097345843723e-06" /> - <laneOffset s="357.68114192138853" a="6.009349794360249" b="-0.0019673313613532807" c="1.6941717491695559e-05" d="-2.6274656002403827e-07" /> - <laneOffset s="363.50210862035379" a="5.9984202483219278" b="-0.0017968054547128963" c="9.5241281639244507e-06" d="-1.6212089130048068e-07" /> - <laneOffset s="373.59938941536365" a="5.9810815339128638" b="-0.0016540570069756642" c="1.3055189359816549e-06" d="-2.5442958551453722e-07" /> - <laneOffset s="383.6966702103735" a="5.9642512327616304" b="-0.0017055137902356062" c="-6.642574731005928e-06" d="-3.6460268433800364e-07" /> - <laneOffset s="393.79395100538329" a="5.9459775897025811" b="-0.0019511769617091882" c="-1.9519096103452128e-05" d="-9.1062243590564242e-08" /> - <laneOffset s="401.29705629301071" a="5.9302003803719661" b="-0.0022594641091668458" c="7.4470998651272107e-05" d="-9.4992548976296267e-06" /> - <laneOffset s="403.89123180039314" a="5.924674265510288" b="-0.0020648651617419024" c="-1.1515924522267273e-06" d="-1.0846081666743141e-05" /> - <laneOffset s="409.71068449314157" a="5.9104813156847253" b="-0.003180209607049074" c="-0.00023212083916792191" d="2.1631146663344152e-05" /> - <laneOffset s="413.98851259540294" a="5.8943225185500507" b="-0.0039786178704480923" c="6.0775950893817733e-05" d="1.8762885752088352e-05" /> - <laneOffset s="415.86663163482854" a="5.8871888768653848" b="-0.003551780196625959" c="-0.00035868464175033463" d="8.663130422327868e-05" /> - <laneOffset s="420.47235402516202" a="5.8716855544640048" b="-0.0013427378926608418" c="6.7690507192210862e-05" d="-1.8928125188125295e-06" /> - <laneOffset s="424.08579339041279" a="5.8676281798754557" b="-0.00092768984742137557" c="4.655711311590537e-05" d="-1.1817990892537758e-06" /> - <laneOffset s="434.18307418542264" a="5.8617911435579302" b="-0.00034896061927667935" c="4.0389181502676747e-06" d="-1.1727431268800649e-06" /> - <laneOffset s="444.28035498043243" a="5.8574720756484533" b="-0.00062609779397206967" c="-3.4812116476409672e-05" d="-1.4084973617013092e-06" /> - <laneOffset s="451.45156218827918" a="5.8506725063604366" b="-0.0013426886503929785" c="-0.00034419343164314832" d="1.965873878015483e-05" /> - <laneOffset s="454.37763577544229" a="5.8442892543766645" b="-0.0028520104106630694" c="-0.00016591705629581766" d="1.931685635618401e-05" /> - <laneOffset s="461.50027385515159" a="5.8225381755808385" b="-0.0022755979794037958" c="0.00010561738067933825" d="-5.1782460365025128e-06" /> - <laneOffset s="464.47491657045208" a="5.8165673426900426" b="-0.0017847091543446735" c="7.6513840756215994e-05" d="-2.0966255506009154e-06" /> - <laneOffset s="474.57219736546193" a="5.8041891967880375" b="-0.00088083055849046696" c="1.0930531821006277e-05" d="-1.4610964368361774e-06" /> - <laneOffset s="481.26869050341389" a="5.7983421249802412" b="-0.00093099802755837165" c="-4.1063453643129771e-05" d="5.5255891044596021e-06" /> - <laneOffset s="484.66947816047173" a="5.7949184136169629" b="-0.0010185779734506622" c="8.2582053020751733e-06" d="4.1940368670047832e-06" /> - <laneOffset s="493.03451050489582" a="5.7894307410636108" b="-0" c="2.7704829381524672e-05" d="5.0140219393083134e-08" /> - <laneOffset s="494.76675895548158" a="5.7895141351465238" b="9.6434660507845269e-05" c="3.0951694861545285e-05" d="-2.0573103693239336e-07" /> - <laneOffset s="504.86403975049143" a="5.793431751762486" b="0.00065856459605558536" c="2.146968177650068e-05" d="1.079545822415303e-06" /> - <laneOffset s="508.79489543688123" a="5.7964177852288783" b="0.00087739525372628076" c="0.0010454979421309712" d="-0.00017549253951350827" /> - <laneOffset s="513.14929192422846" a="5.8055726180125156" b="-0" c="-0.00050079420754862449" d="3.2056769928014653e-05" /> - <laneOffset s="514.96132054550128" a="5.804119014615595" b="-0.0014991366900861619" c="-0.00033343416660622623" d="2.9279306096357454e-05" /> - <laneOffset s="523.78096779058387" a="5.7850475583139422" b="-0.00054810424223940583" c="4.8372268860553826e-05" d="-2.4200499332022328e-06" /> - <laneOffset s="525.05860134051102" a="5.7844211951811877" b="-0.00043635126235700182" c="3.8519212385959048e-05" d="-1.6903896658310781e-06" /> - <laneOffset s="535.15588213552087" a="5.7822022594492184" b="-0.0001755040934901945" c="-1.8676380115391039e-05" d="-1.3388800651352134e-06" /> - <laneOffset s="541.20106912878964" a="5.7801630079912707" b="-0.00054809376099086715" c="-0.0036030196561070782" d="0.0011252303240633387" /> - <laneOffset s="543.40928257303813" a="5.7734997798893248" b="-0" c="0.00034962853540546334" d="-1.7279090974819249e-05" /> - <laneOffset s="545.25316293053072" a="5.7745801575119451" b="0.0011131051044567467" c="0.00024762517553995628" d="-1.948749504561708e-05" /> - <laneOffset s="555.56992029009712" a="5.7910212827031913" b="-0" c="-0.00010405598862368925" d="5.8392648424174283e-06" /> - <laneOffset s="565.44772452055042" a="5.7864962440019792" b="-0.0003464603518857092" c="7.7343104558724127e-05" d="4.0977397562963527e-06" /> - <laneOffset s="567.38823020807013" a="5.7861451185732546" b="-0" c="4.3986432785330511e-05" d="-5.7055366674823428e-08" /> - <laneOffset s="575.54500531556016" a="5.7890407033959086" b="0.0007061866892852835" c="4.4767641061247394e-05" d="-1.5608397463162196e-07" /> - <laneOffset s="581.86191714046777" a="5.7952486589343604" b="0.0012530883395549951" c="0.00030346416780016632" d="-2.8407195946552618e-05" /> - <laneOffset s="585.64228611057001" a="5.8027879328513201" b="0.0023295835209552296" c="-1.6153490139179233e-05" d="-2.8120357661277207e-05" /> - <laneOffset s="590.70923720661472" a="5.8105189485014153" b="-0" c="-0.00024399279372690108" d="1.203063746996447e-05" /> - <laneOffset s="595.73956690557986" a="5.8058762643751489" b="-0.0015414508139901478" c="-5.7487463123662643e-05" d="1.1752997824216805e-05" /> - <laneOffset s="604.18001286239269" a="5.7958374189428019" b="-0" c="0.0033512643993505974" d="-0.00061410572178420303" /> - <laneOffset s="605.83684770058971" a="5.8022439170562903" b="0.0060476352700453402" c="0.00029275419991776051" d="-0.00060579326709720306" /> - <laneOffset s="607.82922161640363" a="5.8106640520834594" b="-0" c="-0.00027848297114732795" d="2.5691483067545473e-05" /> - <laneOffset s="615.05555859392007" a="5.8058165968345934" b="-0" c="0.0061824573464735787" d="-0.0012987839380362125" /> - <laneOffset s="618.04975559399986" a="5.8263795954125168" b="0.0020913561195881345" c="-0.0011389647026088527" d="0.00030599666349125266" /> - <laneOffset s="619.85716531249182" a="5.8282455447714838" b="0.00097302971561967543" c="-0.00013464993332376528" d="1.0787688546416091e-05" /> - <laneOffset s="626.0314092906093" a="5.8316593383850934" b="0.00054402840415674583" c="6.527662689402297e-05" d="9.5785598290202898e-06" /> - <laneOffset s="628.59641850028629" a="5.8336458957111184" b="0.0010679585609854507" c="0.00040162716816105523" d="-7.9433295283539153e-05" /> - <laneOffset s="632.98774156119021" a="5.8393540181298862" b="-0" c="-2.1477677014253613e-05" d="-3.8662802469597711e-07" /> - <laneOffset s="636.12869008561916" a="5.8391301483461904" b="-0.00014636345903249904" c="-1.4646645935284064e-05" d="1.1727453720513559e-06" /> - <laneOffset s="646.22597088062901" a="5.8373662805346429" b="-8.3444009702229074e-05" c="2.0300756883254373e-05" d="2.5808689915950076e-06" /> - <laneOffset s="647.80543254744157" a="5.8372952975519024" b="-0" c="0.0022203278087925718" d="-0.00024464267390411908" /> - <laneOffset s="652.78152416207217" a="5.8621301647547837" b="0.0039239594578316895" c="-0.00077314325705597005" d="7.9039986700548374e-05" /> - <laneOffset s="656.32325167563886" a="5.8698410763634028" b="0.00142182733246313" c="7.0561604006488357e-05" d="7.7351304122117584e-05" /> - <laneOffset s="659.84875874484214" a="5.8791202377730736" b="0.0048036027095675927" c="0.002750919401057175" d="-0.00042523698121431575" /> - <laneOffset s="664.82874017116592" a="5.9187467550924611" b="0.00056475206619684333" c="-4.9806406973154111e-07" d="-9.3267633637679239e-06" /> - <laneOffset s="666.42053247064871" a="5.9196068435668181" b="0.00049226990182370516" c="-2.0932566510420455e-05" d="-1.1318982870255995e-07" /> - <laneOffset s="677.23108215150978" a="5.9223392001013755" b="-0" c="2.238135005155215e-06" d="-2.7382946591884554e-07" /> - <laneOffset s="682.68005747777784" a="5.9223613511712871" b="-0" c="0.0009219818396094321" d="-6.1940541115225632e-05" /> - <laneOffset s="686.6150940606683" a="5.9328636220891156" b="0.004378707209838106" c="0.00019058885845961009" d="-6.0024288324702018e-05" /> - <laneOffset s="692.25818465037037" a="5.9528558261363838" b="0.00079540239795956294" c="-5.8068958971671576e-05" d="2.8702613328133877e-06" /> - <laneOffset s="696.71237485567815" a="5.9555002683951477" b="0.0004489383431866769" c="-3.0343268836666837e-05" d="1.4757700731497682e-06" /> - <laneOffset s="706.809655650688" a="5.9584589341592533" b="0.00028755609701008102" c="8.6217063819212848e-06" d="1.9711174378316975e-06" /> - <laneOffset s="712.60381812449032" a="5.960797960183668" b="0.00058599218105315817" c="4.0718271639844345e-05" d="-2.5333301442780641e-07" /> - <laneOffset s="716.90693644569785" a="5.9640533414777899" b="0.00092235049143393744" c="2.9544652144088792e-05" d="-1.167557597193149e-06" /> - <laneOffset s="727.00421724070759" a="5.975176836309231" b="0.001161876506049352" c="-8.008442901174764e-06" d="-1.2086042867368829e-06" /> - <laneOffset s="737.10149803571744" a="5.9848479074817593" b="0.00063047947439558464" c="-4.1977374408272467e-05" d="-1.6659512100574382e-06" /> - <laneOffset s="742.72720282156297" a="5.9867696606744492" b="-0" c="-0.00011523875974676414" d="1.0854929998271174e-05" /> - <laneOffset s="747.19877883072729" a="5.9854359924045388" b="-0.00037946503120336286" c="5.8858837321192923e-05" d="6.274242552898487e-06" /> - <laneOffset s="749.54334402016889" a="5.9849507208028481" b="-0" c="0.0017809985365150147" d="-0.00020041121618869233" /> - <laneOffset s="755.46782459693804" a="6.0057880890990445" b="-0" c="-0.00027114551699793977" d="4.0315885458101551e-05" /> - <laneOffset s="757.29605962573714" a="6.0051281617592771" b="-0.00058717477797439301" c="-5.5743365980390306e-05" d="4.7679714623534863e-05" /> - <laneOffset s="759.74898390834892" a="6.004056165319648" b="-0" c="0.00061947489992737758" d="-2.5710664062265608e-05" /> - <laneOffset s="767.39334042074699" a="6.0287707813865978" b="0.0049636744913867147" c="1.6602600749347185e-05" d="-2.6192678609680035e-05" /> - <laneOffset s="773.11302136584663" a="6.0528034458501825" b="0.0025829368431012929" c="1.680222324359317e-06" d="-7.7909388587998349e-06" /> - <laneOffset s="777.49062121575673" a="6.0634891296934823" b="0.0021497453489452466" c="-9.7180453552909573e-05" d="-8.506442405700381e-06" /> - <laneOffset s="783.61939049240164" a="6.0710559005220714" b="-0" c="-5.402444866988786e-05" d="5.35268321196166e-07" /> - <laneOffset s="787.58790201076658" a="6.0702385194545307" b="-0.00040350333690817116" c="-4.2222917065867517e-05" d="1.571798712080882e-06" /> - <laneOffset s="797.94147973724534" a="6.0632791534866399" b="-0.0007723455440750782" c="-5.8068916398273834e-05" d="6.314522005849948e-06" /> - <laneOffset s="804.59490949757151" a="6.057429651424262" b="-0.00070646425990094199" c="6.038791917819088e-05" d="-2.4620961370427692e-06" /> - <laneOffset s="807.78246360078629" a="6.0557115896268261" b="-0.0003965331327562568" c="3.4770740189532524e-05" d="-2.607231014834268e-06" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4929857327525395" b="-0.015243352918711081" c="0.070791485834800813" d="-0.093477218097569675" /> - <width sOffset="0.42690793237417513" a="2.4921070858538448" b="-0.0059092355466274626" c="-4.2350153855539446e-05" d="0.0044486441178622632" /> - <width sOffset="1.2766361055226285" a="2.4897846668430113" b="0.0036550620965199454" c="0.0023038590032579305" d="-0.0027556318209432003" /> - <width sOffset="2.2761447847939813" a="2.4929879567046793" b="1.742171446054454e-06" c="0.00010897690252252128" d="-7.2706792526831052e-06" /> - <width sOffset="10.097280795009828" a="2.4961892780764083" b="0.00037214249987056714" c="-6.0668093184838104e-05" d="-7.6255597715172713e-06" /> - <width sOffset="14.928761472652784" a="2.4957110618430702" b="-0.00074810596735104236" c="1.0177200207114804e-05" d="8.0526343704513921e-07" /> - <width sOffset="20.194561590019656" a="2.4921714647433024" b="-0.00057393715713232717" c="2.4863208245348668e-05" d="1.326771165666407e-06" /> - <width sOffset="30.291842385029483" a="2.490277060353506" b="0.00033397761193962371" c="7.0134127326579201e-05" d="-1.1204647189410553e-06" /> - <width sOffset="32.524139271816345" a="2.491359622468142" b="0.00063034767087168065" c="-0.00015429442869014368" d="1.4964482781275077e-05" /> - <width sOffset="38.206723489549717" a="2.4927051795523356" b="0.00032645411190663533" c="-0.00015917530828652853" d="2.5949699821460386e-05" /> - <width sOffset="39.956250962718457" a="2.4929280703702181" b="7.7750963474541163e-06" c="-0.00019943408249206717" d="2.5415955576901014e-05" /> - <width sOffset="40.389123180039313" a="2.4928961278734469" b="-0.00015059665068495537" c="-0.00014419717299555366" d="2.8443263101812545e-05" /> - <width sOffset="45.16247035852156" a="2.4919852561548446" b="0.00041702288856651905" c="0.0001938366352433005" d="-3.1017009106288509e-05" /> - <width sOffset="49.039770684440263" a="2.4947082564105241" b="0.00052126989251453698" c="-2.5971806947783285e-05" d="-5.4780288201479409e-06" /> - <width sOffset="50.486403975049143" a="2.4953914059498503" b="0.00041173413186336834" c="-4.043582188069893e-05" d="7.5817439617631359e-07" /> - <width sOffset="60.583684770058966" a="2.496206680746841" b="-0.00017295037114479974" c="-1.879478527070198e-05" d="8.1453002265529407e-07" /> - <width sOffset="70.680965565068803" a="2.4933826619216299" b="-0.00030336640033465758" c="1.2283616839057747e-05" d="-2.2572147982164638e-06" /> - <width sOffset="72.562577791224101" a="2.4928402966323562" b="-0.00028111516013763576" c="-2.0843077169003586e-05" d="3.3856421783325101e-06" /> - <width sOffset="80.778246360078626" a="2.4910013541827905" b="6.1969415537031693e-05" c="6.1537323088373686e-05" d="3.7122196888097267e-06" /> - <width sOffset="83.646422810697175" a="2.4917729156030477" b="0.0005065842321219146" c="0.0014463903262172334" d="-0.00037851420478865369" /> - <width sOffset="86.135320701337477" a="2.4961577393272334" b="0.00067217318431480406" c="-0.00016314478436718906" d="8.3859142975108161e-06" /> - <width sOffset="90.875527155088449" a="2.4965713745098368" b="-0.00030922339163603238" c="-4.3764281857267557e-05" d="7.9502156517907178e-06" /> - <width sOffset="94.857102721586642" a="2.4951482006827694" b="-0.00027962201194486869" c="-7.3113730000850868e-05" d="8.8429698963926251e-06" /> - <width sOffset="100.97280795009829" a="2.4927262554577503" b="-0.00018167574104331922" c="9.2590660938305584e-05" d="7.1995974260698576e-06" /> - <width sOffset="102.56006413495017" a="2.4926999512828099" b="0.00016667007015111566" c="-8.6032058391895952e-05" d="1.4648069259713713e-05" /> - <width sOffset="104.56040140268607" a="2.4928063471767814" b="-1.680075121184444e-06" c="-0.00015475946689228484" d="1.3980073880537488e-05" /> - <width sOffset="111.07008874510811" a="2.4900937878178544" b="-0.00023929149964812451" c="0.00011834791857339303" d="1.432196499000874e-05" /> - <width sOffset="114.14970158845476" a="2.4908975791037014" b="0.00089712924416221582" c="-5.1063617094146685e-05" d="7.398675650301769e-07" /> - <width sOffset="121.16736954011793" a="2.494934271422995" b="0.00028974447239333656" c="-3.475097228225251e-05" d="4.3041639787232685e-07" /> - <width sOffset="131.26465033512775" a="2.4947599649464269" b="-0.00028038676354387448" c="-3.6174671107330592e-05" d="6.7135399613943199e-06" /> - <width sOffset="133.53727869777697" a="2.4940147155869612" b="-0.00034078685802714135" c="3.9655351703480032e-05" d="-1.5170264522672322e-06" /> - <width sOffset="141.36193113013761" a="2.4930493276528152" b="1.1511516013507387e-06" c="-1.1801175953266127e-05" d="7.6353838724738122e-06" /> - <width sOffset="142.82487134458427" a="2.4930496611154291" b="1.5645931720764021e-05" c="-1.3659166581647194e-05" d="1.4988448049276216e-06" /> - <width sOffset="147.8272897139457" a="2.4929737466272908" b="-8.4896704386588874e-06" c="-3.7341986326407274e-05" d="1.3207297387128362e-06" /> - <width sOffset="151.45921192514743" a="2.4925136136797805" b="-0.00022747137046078524" c="-2.2223089781462498e-05" d="1.7265883198337491e-06" /> - <width sOffset="161.55649272015725" a="2.4897284837595386" b="-0.00014815357777881811" c="3.0018334274636958e-05" d="1.7319987644399191e-06" /> - <width sOffset="166.80986895426599" a="2.4900297315902735" b="0.00031064053746655959" c="7.5582155484644754e-05" d="-4.3970514778933028e-06" /> - <width sOffset="171.65377351516707" a="2.4928081151155848" b="0.00073335654956268193" c="9.9843284305754855e-06" d="-4.3930252237886298e-06" /> - <width sOffset="177.12051984683339" a="2.4963978617245957" b="0.00044865929736448385" c="-0.00010323528249513896" d="4.0953755138842027e-06" /> - <width sOffset="181.7510543101769" a="2.4966684571422428" b="-0.00024397249427544248" c="-4.7725487947770616e-05" d="3.6143285427968499e-06" /> - <width sOffset="191.84833510518675" a="2.4930599818737704" b="-0.00010227033879730164" c="5.753696321865873e-05" d="3.629715095456671e-06" /> - <width sOffset="192.64209775702469" a="2.4930168704721751" b="-4.0681481937076061e-06" c="9.2639880399023627e-05" d="-5.4194737982996984e-06" /> - <width sOffset="201.94561590019657" a="2.4966333681642299" b="0.00031243049042352453" c="-6.515740605340104e-05" d="-9.6156320874038364e-07" /> - <width sOffset="203.26420273981043" a="2.4969298431190579" b="0.00013558356724021822" c="-0.0004382398943243851" d="5.115056303430704e-05" /> - <width sOffset="207.8526457398587" a="2.493266700875183" b="-0.00065535140529807481" c="0.00049106687175446469" d="-0.00010941210231341583" /> - <width sOffset="209.85514272766551" a="2.4930449576393787" b="-4.8572248175018928e-06" c="0.00042715577296996172" d="-0.00010546541846405649" /> - <width sOffset="212.04289669520639" a="2.4939744660765282" b="0.00034980915954796118" c="-0.00026527266002911718" d="-0.00010514184135375415" /> - <width sOffset="212.82273524618435" a="2.4940360713683924" b="-0.00025575598791826269" c="-0.00030486794563248947" d="3.2396305102959078e-05" /> - <width sOffset="220.81722009233712" a="2.4890594056033066" b="0.0010812370160416494" c="0.00043096063513187215" d="-6.8794948188884877e-05" /> - <width sOffset="222.14017749021622" a="2.4910848183719105" b="0.0018603040227208652" c="0.00015882196905443196" d="-6.7708007422243561e-05" /> - <width sOffset="224.77916087098703" a="2.495855831677618" b="0.0012839580197474276" c="-0.00039189353990287087" d="2.3083266684442198e-05" /> - <width sOffset="232.23745828522604" a="2.4932091344710399" b="-0.00070965588104852928" c="0.00012446401436124705" d="2.1741963081355405e-05" /> - <width sOffset="234.38156385778655" a="2.492474049344108" b="0.0001239278138921978" c="7.3617811151081982e-05" d="-1.8535628525868444e-05" /> - <width sOffset="237.63262505615307" a="2.4930181253956052" b="1.4868476455411062e-05" c="8.5588681040780324e-05" d="-1.3029008414244455e-05" /> - <width sOffset="238.662873033149" a="2.4931100409371432" b="0.00014973621303642631" c="0.00028700892264080729" d="-4.2053884446859262e-05" /> - <width sOffset="242.33473908023586" a="2.495447546521067" b="0.00055646570844013026" c="-0.00018327434696808825" d="-4.3187645814459824e-05" /> - <width sOffset="242.59742318850638" a="2.4955802919323427" b="0.00045123896795891405" c="3.7276741622889212e-05" d="-1.0003508154626937e-05" /> - <width sOffset="250.02759919299757" a="2.4968875785570184" b="-0.00065162202301107842" c="-0.00029011863627829857" d="4.1455446451711716e-05" /> - <width sOffset="252.43201987524571" a="2.4942198126508028" b="-0.0013277650131233425" c="8.6303242314685919e-06" d="4.0898142091945212e-05" /> - <width sOffset="254.56390581027586" a="2.4918246672829163" b="-0.00073332876323772833" c="0.00027726062871616202" d="-1.9025151708478697e-05" /> - <width sOffset="262.52930067025551" a="2.4939598950843482" b="6.2356199540687315e-05" c="-0.00017449892153856793" d="-2.0450943097111818e-05" /> - <width sOffset="264.06153974510028" a="2.4935721900220962" b="-0.00061643344147721199" c="-0.00021729755549354231" d="4.2767273503129601e-05" /> - <width sOffset="267.42693778468424" a="2.4906666797624037" b="-0.00062588487840663926" c="0.00027874895961928312" d="-2.0516385819228303e-05" /> - <width sOffset="272.62658146526536" a="2.4920644653476423" b="0.0006088445128924775" c="-3.6886842520531205e-05" d="-2.2397755182361367e-05" /> - <width sOffset="275.17040708546938" a="2.4930058686920917" b="-1.3633776662825073e-05" c="0.00025143782161019223" d="-5.046275892297771e-05" /> - <width sOffset="277.01350726344447" a="2.4935189295457221" b="0.00039894766940749143" c="-0.00012578487159418527" d="8.5477884830735288e-06" /> - <width sOffset="282.72386226027521" a="2.493287083446547" b="-0.00020142205614594438" c="1.9827552419922291e-05" d="8.9841625350702966e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1547079165304224" weight="standard" type="solid"> - <type name="solid"> - <line length="284.61133953250203" space="0" width="0.15470800000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.7957149528092446" b="-4.3901501679729496e-10" c="-0.058971595925539903" d="0.090865665004272581" /> - <width sOffset="0.42690793237417513" a="3.7920370810762773" b="-0.00066997793926500636" c="0.0085175618690813987" d="-0.0070601972111595948" /> - <width sOffset="1.2766361055226285" a="3.7932860998299676" b="-0.0014879447150851117" c="-0.00048597800517933334" d="0.00014407872764912201" /> - <width sOffset="4.0935532883400931" a="3.7884589275168952" b="-0.00079606050140883168" c="0.0013514523625947105" d="-0.00024763338107682036" /> - <width sOffset="7.8360737176554949" a="3.791427909150145" b="-0.0010857848678646482" c="-2.2342568858166895e-05" d="9.1239820902127512e-06" /> - <width sOffset="10.097280795009828" a="3.7889639744609935" b="-0.0010468728838142773" c="3.6623124933856756e-05" d="9.6167430136017973e-06" /> - <width sOffset="14.928761472652784" a="3.7858455273649021" b="-1.9528216536964513e-05" c="-5.3610783788056058e-06" d="1.1859198050365057e-06" /> - <width sOffset="20.194561590019656" a="3.7857672005499174" b="2.2662917872790178e-05" c="9.3976658599656334e-06" d="3.2619642622734878e-07" /> - <width sOffset="23.803656118465689" a="3.7859867377080856" b="0.00010324372335154954" c="0.00014419114140278439" d="-5.3062897394130908e-06" /> - <width sOffset="30.291842385029483" a="3.7912772447369907" b="0.0013041920406032497" c="3.2868878904492159e-05" d="-2.7149408797020317e-06" /> - <width sOffset="32.524139271816345" a="3.7943221784565524" b="0.0014103513647332417" c="0.00023161214298907169" d="-1.8799888379930476e-05" /> - <width sOffset="38.206723489549717" a="3.8063659913634083" b="0.0022214177394427321" c="0.00017110797661516405" d="-2.9785105420415514e-05" /> - <width sOffset="40.389123180039313" a="3.8117193767684747" b="0.0025426821168503836" c="-3.5178272139895425e-05" d="-3.644649590993872e-05" /> - <width sOffset="42.139872001865911" a="3.8158675675218272" b="0.0020843666720793733" c="-0.00011075055898531295" d="-2.7382470086635589e-05" /> - <width sOffset="45.16247035852156" a="3.8203997820949818" b="0.00066435073420537116" c="-0.00028977428545774996" d="3.207780212146619e-05" /> - <width sOffset="49.039770684440263" a="3.8204891503307121" b="-0.00013601227349146442" c="-5.7626803954296121e-05" d="6.5388218340652742e-06" /> - <width sOffset="50.486403975049143" a="3.8201915879588744" b="-0.00026168966301224863" c="-4.1672733854717991e-05" d="2.1679931161001746e-07" /> - <width sOffset="60.583684770058966" a="3.8135236752438648" b="-0.0010369408803443539" c="-3.2316491011447633e-05" d="-2.2451260097312826e-06" /> - <width sOffset="62.178516048129218" a="3.8117786257242026" b="-0.0011571509268180806" c="-0.00010196545673393155" d="3.6181529273118186e-06" /> - <width sOffset="70.680965565068803" a="3.7967926772168714" b="-0.0021063765123274384" c="-1.9099662927613677e-05" d="6.5986436242759325e-06" /> - <width sOffset="72.562577791224101" a="3.7928056304599984" b="-0.0021081660390124563" c="3.8533687754773141e-05" d="9.5578664772521497e-07" /> - <width sOffset="79.739639092916221" a="3.7800134184786138" b="-0.0014073504508752654" c="-9.3819972314306222e-06" d="-2.9297314078144927e-06" /> - <width sOffset="80.778246360078626" a="3.7785383313377969" b="-0.0014363198201287476" c="-1.7610254430451838e-05" d="-3.1001679263015135e-06" /> - <width sOffset="83.646422810697175" a="3.7742006949598861" b="-0.0016138484547371557" c="-0.0013971968402039731" d="0.0003791262565511663" /> - <width sOffset="86.135320701337477" a="3.7673741747076277" b="-0.0015231880089049744" c="0.00021690827340249805" d="-7.7738625349999208e-06" /> - <width sOffset="90.875527155088449" a="3.7641997851961384" b="9.166238753459616e-06" c="0.00010564947222881512" d="-7.2203199157918086e-06" /> - <width sOffset="94.857102721586642" a="3.7654553920474529" b="0.00050707897155297349" c="0.0001437173254579339" d="-8.1130741603931738e-06" /> - <width sOffset="100.97280795009829" a="3.7720760575037402" b="0.0013546126098981548" c="-1.2617759803954477e-05" d="-5.9900594969380145e-06" /> - <width sOffset="102.56006413495017" a="3.7741704321087601" b="0.0012692836275692101" c="0.00017176449920278664" d="-1.3438531330577762e-05" /> - <width sOffset="111.07008874510811" a="3.7891291689663489" b="0.0012730476230506577" c="-0.00017003538137304151" d="-1.3963502834028825e-05" /> - <width sOffset="114.14970158845476" a="3.7910292112671455" b="-0.00017152888763766866" c="2.687928272746193e-06" d="-3.8140540905315105e-07" /> - <width sOffset="121.16736954011793" a="3.789826037537098" b="-0.0001901528871487444" c="3.968604731021501e-07" d="-2.5272123739261469e-07" /> - <width sOffset="131.26465033512775" a="3.7876863036864941" b="-0.00025943710539627049" c="1.3652763355836366e-05" d="-6.1384467863709433e-06" /> - <width sOffset="133.53727869777697" a="3.7870951622741829" b="-0.0002924940714459734" c="-5.825634027270369e-05" d="2.0921196272799562e-06" /> - <width sOffset="136.97818552573938" a="3.7854842041955932" b="-0.00061909226579909271" c="-4.4371599707866645e-05" d="2.3505624759724458e-06" /> - <width sOffset="141.36193113013761" a="3.7821155815987413" b="-0.0008726060085321477" c="8.0414314896165349e-06" d="-7.5363233966461827e-06" /> - <width sOffset="142.82487134458427" a="3.7808326253540101" b="-0.00089746532546626967" c="1.0334180778988501e-05" d="-1.3997843290754924e-06" /> - <width sOffset="150.39328533664684" a="3.7740253451134596" b="-0.00098158128668169881" c="0.0001429100391052724" d="-4.3489617164222017e-06" /> - <width sOffset="151.45921192514743" a="3.7731361587846974" b="-0.00069174193006372162" c="0.00012942500528703433" d="-4.8771000041846539e-06" /> - <width sOffset="161.55649272015725" a="3.7743261593917286" b="0.00043020395521009168" c="-1.8402274458826764e-05" d="-4.9572706054591934e-06" /> - <width sOffset="166.80986895426599" a="3.7753595999860554" b="-0.00017357588263623193" c="-0.00011479679498333044" d="1.1717796368651711e-06" /> - <width sOffset="170.61772181288046" a="3.773098821834997" b="-0.00099686297836764715" c="-9.7570342029528021e-05" d="1.1058376318865484e-05" /> - <width sOffset="171.65377351516707" a="3.7719735859717116" b="-0.0011634285290183948" c="-6.4458212949661646e-05" d="7.6004961526509871e-06" /> - <width sOffset="177.12051984683339" a="3.7649287976936638" b="-0.0011867522519895227" c="0.00010136468777894781" d="-8.879045850145694e-07" /> - <width sOffset="181.7510543101769" a="3.7615187892826043" b="-0.00030512184095958083" c="9.3512721073145063e-05" d="-3.9748295150818599e-07" /> - <width sOffset="191.84833510518675" a="3.7675627888819223" b="0.0014617503464955011" c="8.5694449556520329e-05" d="-4.1286957498582507e-07" /> - <width sOffset="192.03547196581039" a="3.7678393345841688" b="0.0014937801506907443" c="0.00036625675840666302" d="-2.8385232015716996e-05" /> - <width sOffset="201.94561590019657" a="3.7909864246889051" b="0.00038987249103466896" c="-0.00046886459050866935" d="-3.2581922168204339e-05" /> - <width sOffset="203.26420273981043" a="3.7906106070819172" b="-0.0010165526205557756" c="-0.00022847209735592342" d="-8.469404841128831e-05" /> - <width sOffset="205.83162612208247" a="3.7850613477959203" b="-0.0038645456613918719" c="-0.0012563775558065433" d="0.00010362858572602625" /> - <width sOffset="207.8526457398587" a="3.772974768736173" b="-0.0076730538518756733" c="-0.0008532737790330001" d="0.00026419125107409683" /> - <width sOffset="210.2345140275313" a="3.7534277182133686" b="-0.0072413194301298904" c="0.0010839008310653455" d="4.9409500357543708e-05" /> - <width sOffset="212.04289669520639" a="3.7441694668985228" b="-0.0028363605370638478" c="0.0013520280446806211" d="4.9278202537188374e-05" /> - <width sOffset="212.82273524618435" a="3.742803167533884" b="-0.00063772800914282078" c="0.0012609294728438735" d="-8.8259943916551837e-05" /> - <width sOffset="220.81722009233712" a="3.7731974213196202" b="0.0026006826546508977" c="-0.0008147021497603435" d="1.293130937551181e-05" /> - <width sOffset="222.14017749021622" a="3.7752420506639552" b="0.00051294794690679574" c="-0.00076493809180145853" d="1.182303795779765e-05" /> - <width sOffset="224.77916087098703" a="3.7714857941065167" b="-0.0032773546928693154" c="-0.00065666109978454457" d="-7.8968236169349505e-05" /> - <width sOffset="225.07792494020924" a="3.7704459188337576" b="-0.0036908742843658688" c="-0.00057413757282496602" d="0.00013853790495078243" /> - <width sOffset="228.74666575112093" a="3.7560183635448445" b="-0.0023095792385230659" c="0.00064029659683355019" d="-4.5269480404847484e-05" /> - <width sOffset="232.23745828522604" a="3.7538328694101999" b="0.0005057941639233423" c="0.00016032726056096932" d="-4.312429224139729e-05" /> - <width sOffset="234.38156385778655" a="3.755229330145534" b="0.00059855978175144681" c="7.3635550451999312e-05" d="-2.8467006341856999e-06" /> - <width sOffset="238.662873033149" a="3.7589182663893785" b="0.001072536174985296" c="-0.00020461683646409221" d="2.6178175399601797e-05" /> - <width sOffset="242.33473908023586" a="3.7613936932015415" b="0.00062873456999169679" c="8.4498395338595617e-05" d="2.6360885581797884e-05" /> - <width sOffset="242.59742318850638" a="3.7615651602359388" b="0.00067858427711074872" c="-0.00014931306077269535" d="-6.8232520780472098e-06" /> - <width sOffset="245.66137167357354" a="3.7620463274832945" b="-0.0004285563503122411" c="0.00066917828051646551" d="-2.3251456908047907e-05" /> - <width sOffset="250.02759919299757" a="3.7709969359720934" b="0.0040852195671278544" c="0.0004690267266075957" d="-7.471041151427236e-05" /> - <width sOffset="252.43201987524571" a="3.7824925635789026" b="0.0050449384978044787" c="-6.9800992313009502e-05" d="-7.410926257439863e-05" /> - <width sOffset="254.56390581027586" a="3.7922124898129312" b="0.0037368570594402233" c="-0.00055083825872705161" d="-1.4185968773980447e-05" /> - <width sOffset="262.52930067025551" a="3.7798593440849846" b="-0.0077386248214984165" c="-0.00089401783956695078" d="-1.2770038818458747e-05" /> - <width sOffset="262.76645549504099" a="3.7779736398238519" b="-0.0081648207630062395" c="-0.0014521991713294098" d="0.0005036981947634557" /> - <width sOffset="264.06153974510028" a="3.7660579365904354" b="-0.0093917881741319501" c="0.00045358705670034351" d="0.00044047997816280176" /> - <width sOffset="265.11370262367222" a="3.7571914559757698" b="-0.006974397498438689" c="0.0013990719328678286" d="-9.3670883917038064e-05" /> - <width sOffset="267.42693778468424" a="3.7473850660904575" b="-0.0020053474146348692" c="0.00068476376625286359" d="-3.0387224594632564e-05" /> - <width sOffset="272.62658146526536" a="3.7511996402564098" b="0.0026510339142652422" c="0.0002148719968015585" d="-3.1219362154177944e-05" /> - <width sOffset="277.01350726344447" a="3.7643290121452586" b="0.0027338280046542464" c="-9.780014556012601e-05" d="-9.0229909560112306e-05" /> - <width sOffset="278.38891010769362" a="3.7676693464534332" b="0.0019527261197447203" c="0.00024754369031220152" d="-4.4151137184614544e-05" /> - <width sOffset="282.72386226027521" a="3.7771894926002334" b="0.0016098668604509429" c="-0.00032567843953115424" d="-4.3040517573956913e-05" /> - <roadMark sOffset="0" color="standard" width="0.15821327330226068" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15821299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6894447051852337" b="1.71873671240099e-10" c="0.0008492529162683471" d="-0.00013559045015076824" /> - <width sOffset="4.0935532883400931" a="3.6943747714234636" b="0.00013658416974563636" c="-0.0014357441199720426" d="0.00025612165857520392" /> - <width sOffset="7.8360737176554949" a="3.6882020080078464" b="0.0001520534246437604" c="3.3353467323403598e-05" d="-6.3570459189318146e-07" /> - <width sOffset="10.097280795009828" a="3.6887090206681208" b="0.00029314043508408974" c="2.7878047105819713e-05" d="-5.1661252682819808e-07" /> - <width sOffset="20.194561590019656" a="3.6939794138458799" b="0.00069811156071395537" c="9.3511650937897852e-06" d="-3.1016636560862502e-07" /> - <width sOffset="23.803656118465689" a="3.6966061875802909" b="0.00075348976336372248" c="-0.00012526874843691416" d="5.3223198000275697e-06" /> - <width sOffset="25.318032085115608" a="3.6974784554789268" b="0.00041069937929728525" c="0.0049514222976389565" d="-0.0016599443312293064" /> - <width sOffset="27.436797440544279" a="3.7047878457273828" b="-0.00096279667706706108" c="-0.00015840106772828394" d="7.5871731996263917e-06" /> - <width sOffset="30.291842385029483" a="3.700924417011997" b="-0.0016817454556123479" c="-9.5529292776222468e-05" d="7.5675609367221768e-06" /> - <width sOffset="40.389123180039313" a="3.6819942341731182" b="-0.0012962638125198003" c="0.00012240708282528219" d="1.1237443381191245e-05" /> - <width sOffset="42.139872001865911" a="3.6801602974217711" b="-0.00076432331462182796" c="6.5575212628128722e-05" d="2.1734175579117944e-06" /> - <width sOffset="44.772778844692851" a="3.6786421545771417" b="-0.00037381677709197585" c="5.6886428823553595e-05" d="-8.3235689930928413e-07" /> - <width sOffset="50.486403975049143" a="3.6782081375274469" b="0.00019472052975332704" c="4.0037414852103533e-05" d="-9.9390518701834758e-07" /> - <width sOffset="60.235694587990785" a="3.6829910182105894" b="0.00069198522451156407" c="1.5573292431724789e-05" d="2.4937322949663053e-07" /> - <width sOffset="60.583684770058966" a="3.6832337186651918" b="0.00070291452541941101" c="9.1689864627935047e-06" d="2.8761571136289671e-06" /> - <width sOffset="62.178516048129218" a="3.6843897368688805" b="0.0007541069012260964" c="8.1837116611030872e-05" d="-2.9871218234125447e-06" /> - <width sOffset="70.680965565068803" a="3.694881580129139" b="0.0014979069301455212" c="3.0667460667191291e-06" d="-3.1006828075064857e-06" /> - <width sOffset="77.866046281948442" a="3.7046523400706088" b="0.0010617547359544747" c="-9.4532264124876574e-05" d="-3.1491982783570932e-06" /> - <width sOffset="79.739639092916221" a="3.7062890826037416" b="0.00067436043028659123" c="-4.3738306813847258e-05" d="7.3631977668103397e-07" /> - <width sOffset="80.778246360078626" a="3.7069431224511797" b="0.00058588939926076077" c="-4.1538417542561854e-05" d="4.3289621052048759e-07" /> - <width sOffset="90.875527155088449" a="3.7090696128268177" b="-0.00012055282953843871" c="-2.8769922919330934e-05" d="5.0271208551212615e-07" /> - <width sOffset="100.97280795009829" a="3.7054366438202266" b="-0.00054778665801149423" c="-1.4506908891011793e-05" d="4.7384510679134361e-07" /> - <width sOffset="111.07008874510811" a="3.698914243949305" b="-0.0006958145765571705" c="6.814199182016112e-07" d="3.8385660798662982e-07" /> - <width sOffset="121.16736954011793" a="3.6923530515140395" b="-0.00056464520715282138" c="1.6112632963409829e-05" d="2.778744838271454e-07" /> - <width sOffset="131.26465033512775" a="3.6885804982671004" b="-0.00015426550316568598" c="3.1610041303322779e-05" d="-5.3247129366408763e-08" /> - <width sOffset="136.97818552573938" a="3.6887210589752866" b="0.00020172998831302465" c="3.840897882760705e-05" d="-3.1168997803267232e-07" /> - <width sOffset="137.27777556997574" a="3.688784934257193" b="0.00022465995719618477" c="0.0001316258248277657" d="-4.4982652388491125e-06" /> - <width sOffset="141.36193113013761" a="3.6915915976839897" b="0.0010747230453732391" c="8.2327386741920742e-05" d="-3.8741556945825686e-06" /> - <width sOffset="150.39328533664684" a="3.7051589850939681" b="0.0016137879286311036" c="-0.00018699753046107459" d="-9.2497833813207575e-07" /> - <width sOffset="150.45363055573739" a="3.7052556883168135" b="0.0015912090096871347" c="-0.00010484436738588682" d="1.1558275608715154e-06" /> - <width sOffset="151.45921192514743" a="3.7067509357571184" b="0.0013838562219285417" c="-0.00010057943872581439" d="1.9138735971136111e-06" /> - <width sOffset="161.55649272015725" a="3.7124398096071172" b="-6.1914044137928274e-05" c="-4.2694662755200033e-05" d="1.8659102429370447e-06" /> - <width sOffset="169.66257688277818" a="3.7101263800151854" b="-0.00038626805142017752" c="-6.7991796024963658e-05" d="8.8552052249596788e-06" /> - <width sOffset="170.61772181288046" a="3.7097031252566981" b="-0.0004919162299480786" c="-4.6458342532086829e-05" d="-1.0313914584047565e-06" /> - <width sOffset="171.65377351516707" a="3.7091424590673814" b="-0.00059150401613866426" c="-4.3330438142686805e-05" d="2.3576287022789743e-06" /> - <width sOffset="181.7510543101769" a="3.7011792244789135" b="-0.00074542655294726349" c="3.0019636501226778e-05" d="2.3492205441703763e-06" /> - <width sOffset="188.94203393194806" a="3.6982447487664958" b="5.0750543138139946e-05" c="2.5507053284219212e-05" d="-5.3493107856911706e-06" /> - <width sOffset="191.84833510518675" a="3.6984763760458743" b="6.3462651956001578e-05" c="-2.0819222668625039e-05" d="-5.3020397489339741e-06" /> - <width sOffset="192.03547196581039" a="3.6984874884065948" b="5.5113528459179925e-05" c="-0.00030458994205985002" d="2.2670322831691221e-05" /> - <width sOffset="201.94561590019657" a="3.6911842808448498" b="0.0006974752116694731" c="0.00037184278897646261" d="2.2534682994280772e-05" /> - <width sOffset="205.83162612208247" a="3.7008323039612536" b="0.0046083388135142386" c="0.0010101218321252705" d="-0.00016578795114308498" /> - <width sOffset="209.62644149291043" a="3.7238065517482939" b="0.0051124408288737086" c="-0.00098417367947725601" d="-0.0001526569554776539" /> - <width sOffset="210.2345140275313" a="3.7265170634068352" b="0.0037462071225317977" c="-0.0013120215066666503" d="6.2124795238922311e-05" /> - <width sOffset="212.04289669520639" a="3.7293684012105559" b="-0.00038957634358720815" c="-0.00097507502680734296" d="6.226806563690171e-05" /> - <width sOffset="222.14017749021622" a="3.6901239350024575" b="-0.0010351522891021772" c="0.00091091844179332429" d="6.2192091714105755e-05" /> - <width sOffset="223.89925124439702" a="3.6914602399022325" b="0.0027469236766223242" c="0.0025004406916553585" d="-0.00029411623395938125" /> - <width sOffset="225.07792494020924" a="3.6976901432866622" b="0.0074155089545452279" c="0.0013071373445306435" d="-0.00051162237505903688" /> - <width sOffset="227.99750877200802" a="3.717749880797065" b="0.0019649421219474416" c="-0.0024255050703807313" d="4.7742166295079762e-05" /> - <width sOffset="228.74666575112093" a="3.7178807230873931" b="-0.001588842087734502" c="-0.002007861111552372" d="0.00023154955165060156" /> - <width sOffset="231.11791234070444" a="3.7059106307594121" b="-0.007205232040488058" c="0.00038841118737756699" d="2.4229086671662619e-07" /> - <width sOffset="232.23745828522604" a="3.6983312104631496" b="-0.0063346326513677546" c="0.00038794132646075854" d="3.8975450325708878e-07" /> - <width sOffset="242.33473908023586" a="3.6743224748158934" b="0.0016188847131983" c="0.0003988270166533956" d="1.8806442376612876e-07" /> - <width sOffset="245.66137167357354" a="3.684128445857898" b="0.0042786302546455757" c="-0.00048050573951365392" d="1.6616269253765793e-05" /> - <width sOffset="252.43201987524571" a="3.696227679387774" b="5.7112560140903934e-05" c="-0.0001429032106865183" d="1.6675876428885668e-05" /> - <width sOffset="260.35362667253338" a="3.6960021645678451" b="0.00093239297139476388" c="0.00058834735531076271" d="7.6042420015808878e-05" /> - <width sOffset="262.52930067025551" a="3.7015988600261505" b="0.0045723505237987554" c="0.0010838799829040917" d="7.6056385992149259e-05" /> - <width sOffset="262.76645549504099" a="3.702745189489042" b="0.0050992780422075539" c="0.0016870873024121473" d="-0.00044041184751409654" /> - <width sOffset="264.50049069435545" a="3.7143640612711977" b="0.0069774213941789136" c="-0.00071882988287174602" d="-0.00048532602012740854" /> - <width sOffset="265.11370262367222" a="3.7182604894280704" b="0.0055483414903642605" c="-0.0011667678291620862" d="4.882484194909982e-05" /> - <width sOffset="272.62658146526536" a="3.7147924973936539" b="-0.0037157164760818033" c="-6.3534036968535131e-05" d="4.8470918736999782e-05" /> - <width sOffset="278.38891010769362" a="3.7005458821181447" b="0.00038042340780402098" c="5.6730794511613097e-05" d="2.3921463614589066e-06" /> - <width sOffset="282.72386226027521" a="3.7034559417747577" b="0.0010071322483112283" c="8.8982562136866199e-05" d="3.6866296944696869e-06" /> - <roadMark sOffset="0" color="standard" width="0.14027440931680168" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14027400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9002398129034215" b="-1.1076333724521705e-09" c="0.0086210945985148828" d="-0.00091734294350131844" /> - <width sOffset="6.0442111014728308" a="4.0126312815398917" b="0.0036769704673246936" c="-0.0004795450989677112" d="2.4093889565009163e-05" /> - <width sOffset="10.097280795009828" a="4.0212608347264904" b="0.00097710905341254076" c="-0.00018812131881102545" d="2.4245502680623234e-05" /> - <width sOffset="18.767244285578478" a="4.031392523758476" b="0.0031825763735208261" c="0.0035045641972671691" d="-0.0013265624181782005" /> - <width sOffset="20.194561590019656" a="4.0392173377400633" b="0.0050792696995223176" c="-0.002175582689253414" d="-0.0013265651881546078" /> - <width sOffset="20.979874191201151" a="4.0412219607521145" b="-0.00079209676048392589" c="-5.1745992588137029e-05" d="9.4673670395623611e-08" /> - <width sOffset="25.318032085115608" a="4.03681960972688" b="-0.0012357161671595993" c="-0.0051030249310962351" d="0.001665361324699731" /> - <width sOffset="27.436797440544279" a="4.0271331566905069" b="-0.0004316875669280666" c="4.1230448557860462e-05" d="-2.170179729207972e-06" /> - <width sOffset="30.291842385029483" a="4.0261862452627115" b="-0.0002493272380131626" c="1.7548507884694393e-05" d="-9.3982655204269984e-07" /> - <width sOffset="32.801316585780967" a="4.0256562236559015" b="-0.00017900774492713714" c="-0.00046480502466430716" d="3.514587264536158e-05" /> - <width sOffset="40.389123180039313" a="4.0128909419217313" b="-0.0011621583025187543" c="0.00033558012336509037" d="3.5110073165088938e-05" /> - <width sOffset="40.785666406888822" a="4.0124850540187822" b="-0.00087945144095141379" c="3.1718339513827097e-05" d="-2.72322324528127e-06" /> - <width sOffset="44.772778844692851" a="4.0093102036484138" b="-0.00075639604464050321" c="2.5000949383593372e-05" d="2.8255121193567378e-07" /> - <width sOffset="50.486403975049143" a="4.0058573116396143" b="-0.00044303185222909196" c="2.7463436037772781e-05" d="1.780214699537089e-07" /> - <width sOffset="60.235694587990785" a="4.0043133932163597" b="0.0001432282965880328" c="2.8064696051293566e-05" d="-1.0652568927039533e-06" /> - <width sOffset="60.583684770058966" a="4.004366588921954" b="0.00016237377518551501" c="2.4718228390025008e-05" d="-9.7027570043850196e-07" /> - <width sOffset="70.680965565068803" a="4.0075274026443779" b="0.00036477395241452559" c="-7.1026757780719476e-06" d="-1.0332502883823045e-06" /> - <width sOffset="77.866046281948442" a="4.0093983883928548" b="0.00010268152333965219" c="1.3884055001885429e-06" d="-9.8473481930045981e-07" /> - <width sOffset="79.091800010747917" a="4.0095245231460215" b="0.00010164659969638353" c="2.2922767119601435e-05" d="-3.0176453792497757e-07" /> - <width sOffset="80.778246360078626" a="4.0097596919637741" b="0.00017638788681312095" c="2.129412982046754e-05" d="-5.2356191293002001e-07" /> - <width sOffset="90.875527155088449" a="4.0131727838901492" b="0.00044627411368398451" c="4.1970493685914316e-06" d="1.1603304343952332e-07" /> - <width sOffset="92.663979302238488" a="4.0139850120696989" b="0.00046239997392279056" c="-5.7724528417283615e-05" d="2.7770651505487355e-06" /> - <width sOffset="100.97280795009829" a="4.0154348693298054" b="7.8311230135202957e-05" c="1.015255664318899e-05" d="2.7105387914925712e-06" /> - <width sOffset="111.07008874510811" a="4.0200511203663618" b="0.0011123972541057657" c="9.3480736883143852e-05" d="2.0105873995940026e-06" /> - <width sOffset="112.57771747718556" a="4.0219475687379465" b="0.0014079756038208762" c="0.00014929087284164196" d="-9.3009709348171693e-06" /> - <width sOffset="121.16736954011793" a="4.0391619777431105" b="0.00191395277920194" c="-8.139556117632755e-05" d="-1.0517040330705344e-05" /> - <width sOffset="124.85412000172296" a="4.0445848878948754" b="0.00088493562817137667" c="-0.0032142591805337157" d="0.00053988842588200889" /> - <width sOffset="128.51354695178358" a="4.0312369592108999" b="-0.00095016303750030025" c="1.331755416800682e-05" d="-3.1508087417506785e-06" /> - <width sOffset="131.26465033512775" a="4.0286581514209079" b="-0.00094842844874937953" c="1.0791850867697574e-06" d="-5.413394784201157e-07" /> - <width sOffset="137.27777556997574" a="4.0228764548363749" b="-0.00099417062951497655" c="-0.0001021832247913922" d="3.6452357823806564e-06" /> - <width sOffset="141.36193113013761" a="4.0173599896310108" b="-0.0016464238303038315" c="-5.4185082972097499e-05" d="3.7296356215435467e-06" /> - <width sOffset="150.45363055573739" a="4.0007151756824566" b="-0.0017068289706410327" c="-3.4779522006510968e-05" d="1.648829753061185e-06" /> - <width sOffset="151.45921192514743" a="3.9989653280209581" b="-0.001771774389656152" c="-2.9831796140931975e-05" d="1.6199952150368985e-06" /> - <width sOffset="151.85904376140172" a="3.9982522506873726" b="-0.0017948528492986212" c="4.4349618166199535e-05" d="1.1343734412133373e-06" /> - <width sOffset="161.55649272015725" a="3.9860519131673726" b="-0.00061466533999268388" c="7.7219939258934254e-05" d="1.0820672118560794e-06" /> - <width sOffset="169.66257688277818" a="3.9867197500048821" b="0.00085054067959466212" c="0.00017420673260070541" d="-5.9072277689550863e-06" /> - <width sOffset="171.65377351516707" a="3.9890574132264844" b="0.0014740363335074367" c="0.00014010658419540649" d="-5.9942917886164746e-06" /> - <width sOffset="181.7510543101769" a="4.0120548119442603" b="0.0024699818904850867" c="-3.6519333122410049e-05" d="-6.8937312373878762e-06" /> - <width sOffset="184.5299882278087" a="4.0184887676499912" b="0.0021073022886501712" c="-2.6440879253666061e-05" d="-7.2561838615262809e-06" /> - <width sOffset="188.94203393194806" a="4.0266483784018021" b="0.0014502357216473454" c="-6.7292549360057504e-05" d="4.4234746831293104e-07" /> - <width sOffset="191.84833510518675" a="4.0303056667305777" b="0.0010702998698114714" c="-6.0780576442322475e-05" d="4.5649178487606357e-07" /> - <width sOffset="201.94561590019657" a="4.0353858407218182" b="-1.7512256039372773e-05" c="-4.5028043200602353e-05" d="4.7303975566404277e-07" /> - <width sOffset="208.85911961202237" a="4.0332688972683313" b="-0.00057228636195729311" c="-2.1866377225854198e-05" d="4.6457676330002485e-06" /> - <width sOffset="209.62644149291043" a="4.0328189937650274" b="-0.00059763741617391893" c="9.5719535961820413e-05" d="-8.4852280325939985e-06" /> - <width sOffset="212.04289669520639" a="4.0318140314594295" b="-0.00028367572450316118" c="3.404751410103943e-05" d="-8.3784311834537152e-06" /> - <width sOffset="221.54628504254407" a="4.0250019848456171" b="-0.0019066209334661771" c="-0.00064683482497451003" d="3.0358514064326642e-05" /> - <width sOffset="222.14017749021622" a="4.0236478723213587" b="-0.0026427984742149625" c="-0.00059272788071802361" d="3.0372036215604415e-05" /> - <width sOffset="223.89925124439702" a="4.0173302132680897" b="-0.0044461583282034752" c="-0.0016937687465210564" d="0.000386680361889086" /> - <width sOffset="227.99750877200802" a="3.9972770876325741" b="0.0011545598286597514" c="0.0023118475374373998" d="-0.00017268417946495114" /> - <width sOffset="231.11791234070444" a="4.0181433678532263" b="0.010538119131263565" c="-5.3774497061719723e-05" d="5.8623081323731967e-05" /> - <width sOffset="231.51879121791364" a="4.0223630121108327" b="0.010523267880111714" c="-0.00085636531956884588" d="1.7506238898523439e-05" /> - <width sOffset="232.23745828522604" a="4.0294899385467184" b="0.0093195097649953693" c="-0.00081840806460858624" d="1.7470693168647237e-05" /> - <width sOffset="242.33473908023586" a="4.0581363244371023" b="-0.0018642045711720571" c="-0.00028979769339590206" d="1.7188899578638328e-05" /> - <width sOffset="245.1169655555552" a="4.0510766144352761" b="-0.0030776035165188762" c="-4.9925681449131275e-05" d="9.4400587834690722e-06" /> - <width sOffset="252.43201987524571" a="4.0295873632842376" b="-0.0022926084655964952" c="0.00015718099405908465" d="9.568814145912903e-06" /> - <width sOffset="257.07072585598621" a="4.0232898829565631" b="-0.0002166820812964064" c="0.00067134014001554525" d="7.061459154120409e-06" /> - <width sOffset="260.35362667253338" a="4.0300637070744116" b="0.0044195174162033769" c="0.0004059349922967394" d="-5.2305084432696581e-05" /> - <width sOffset="262.52930067025551" a="4.0410619795604177" b="0.0054431144815216184" c="6.4093012902934442e-05" d="-5.2408573832928417e-05" /> - <width sOffset="264.50049069435545" a="4.051639022043787" b="0.0050848787881510038" c="-0.00013098051291992696" d="-7.4944012161276105e-06" /> - <width sOffset="272.62658146526536" a="4.080288683147181" b="0.0014715184307371332" c="-0.00031181665940408876" d="-7.6501373757093016e-06" /> - <width sOffset="282.72386226027521" a="4.055480145876186" b="-0.0071653933942998861" c="-0.00054395123411341028" d="-6.6199014587379774e-06" /> - <roadMark sOffset="0" color="standard" width="0.27304744292909966" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.27304699999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="231.51879121791364" color="standard" width="0.25" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.25" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-4" type="driving" level="false"> - <link /> - <width sOffset="0" a="4.3082622251029692" b="7.3475735059077988e-10" c="-0.0093380824387675251" d="0.00091063191402395273" /> - <width sOffset="2.4521109695347594" a="4.2655402673573359" b="-0.029369553616096718" c="-0.089650102302988477" d="0.12302853584876211" /> - <width sOffset="2.9401019566981996" a="4.2441562240907542" b="-0.028974161178964616" c="9.5651605807461687e-05" d="0.00081566698468160301" /> - <width sOffset="6.0442111014728308" a="4.1795352084594386" b="-0.0048022731408709817" c="0.00015820613309814897" d="-0.000125769848368176" /> - <width sOffset="6.7109589894613872" a="4.1763663551939709" b="-0.0047590399250783356" c="-0.00014490786611308717" d="3.4694109757426133e-05" /> - <width sOffset="10.097280795009828" a="4.15993625652807" b="-0.0045469189359453209" c="0.00020420612436362155" d="3.5456791472645541e-05" /> - <width sOffset="14.122980777251287" a="4.1472543984140113" b="-0.0011789077724695645" c="0.00052140597971258391" d="-8.5362214298491347e-05" /> - <width sOffset="18.767244285578478" a="4.1444745546368464" b="-0.001859394044682328" c="-0.0037299905177804681" d="0.0012654457065602292" /> - <width sOffset="20.979874191201151" a="4.1358072391951834" b="0.00022027452074022493" c="-0.0005792432471686148" d="-6.12141558461427e-05" /> - <width sOffset="21.154929213102559" a="4.1358277204960023" b="1.1848054473588882e-05" c="-0.00047719466125412281" d="3.823139306734274e-05" /> - <width sOffset="28.651807466690279" a="4.1252054220193894" b="-0.00069691449718756529" c="-7.3201777784609429e-05" d="4.1181119719405841e-05" /> - <width sOffset="30.291842385029483" a="4.1240472252392566" b="-0.00060472507186083843" c="0.00011558092601436727" d="3.8053329858331279e-05" /> - <width sOffset="32.801316585780967" a="4.1238589183901979" b="0.00069428768719805749" c="0.00087734059579968487" d="1.9676299358897364e-06" /> - <width sOffset="32.921671262020517" a="4.1239551910865027" b="0.00090555727874818456" c="0.00068976019321204248" d="-6.373444204290583e-05" /> - <width sOffset="37.957158248716333" a="4.1378671187630314" b="0.0030039379929814982" c="-0.00049310081598933101" d="9.443408920509444e-06" /> - <width sOffset="40.389123180039313" a="4.1423920003767636" b="0.00077308801556123146" c="-0.00045012546429688599" d="7.5820549347667402e-06" /> - <width sOffset="40.785666406888822" a="4.1426282553048166" b="0.00041967636286261291" c="-9.5475857740357273e-05" d="4.5415351347914431e-05" /> - <width sOffset="44.256935312629061" a="4.1448342317705293" b="0.0013985567527193647" c="0.0025071864195072612" d="-0.0013269469777576854" /> - <width sOffset="45.535962449412104" a="4.1479480870779231" b="0.0012997765380857412" c="-0.0019807477558957897" d="0.00034245599527626632" /> - <width sOffset="48.61463908329889" a="4.1431686822904839" b="-0.0011587367066301308" c="-7.2199352988144253e-05" d="4.6172593486164453e-05" /> - <width sOffset="50.486403975049143" a="4.1410496365481428" b="-0.00094371956330393072" c="0.00017194068612304459" d="4.2518183720117863e-05" /> - <width sOffset="53.10528492642684" a="4.1405211075581594" b="0.00083170247645829234" c="0.0050770885917760696" d="-0.0014677444936124281" /> - <width sOffset="55.420712817608816" a="4.151446347445674" b="0.00073632437660148091" c="-0.00018906687369104149" d="7.5016823468605531e-06" /> - <width sOffset="60.583684770058966" a="4.1512405738480984" b="-0.00061606873399136812" c="-7.7379682387151402e-05" d="7.6795754781419741e-06" /> - <width sOffset="67.979259753925646" a="4.1455585150497267" b="-0.00050051092166568205" c="-1.551342992414913e-05" d="4.347011702088185e-06" /> - <width sOffset="70.680965565068803" a="4.144178770438554" b="-0.00048914705941447063" c="7.8454985034598862e-06" d="1.7742027004017364e-06" /> - <width sOffset="76.449199902767987" a="4.1419588067467128" b="-0.00022154108793612638" c="2.4418473032750552e-05" d="7.9394283700104735e-07" /> - <width sOffset="79.091800010747917" a="4.1415585361795486" b="-7.5851461797399951e-05" c="5.5572045681336529e-06" d="1.1097255687241911e-07" /> - <width sOffset="80.778246360078626" a="4.1414469542828485" b="-5.6160755507089267e-05" c="6.0121820622175064e-06" d="1.301000252400797e-07" /> - <width sOffset="90.875527155088449" a="4.1416267898161054" b="0.00010504570066891493" c="1.0430838826646161e-05" d="-3.5596744361977996e-07" /> - <width sOffset="92.663979302238488" a="4.1418459863978434" b="0.00013894006202778226" c="7.1065083032956024e-05" d="-3.0169995507274043e-06" /> - <width sOffset="100.97280795009829" a="4.1461759178102167" b="0.00069502478080672844" c="-4.9171308219732991e-06" d="-3.0138719751587905e-06" /> - <width sOffset="111.07008874510811" a="4.1495897637514139" b="-0.00032611319049250962" c="-9.5584553770487418e-05" d="-2.5128599840576595e-06" /> - <width sOffset="112.57771747718556" a="4.1488722368011768" b="-0.00063146000274542447" c="-0.00015366641146807768" d="8.7986983503563547e-06" /> - <width sOffset="121.16736954011793" a="4.1376866684434432" b="-0.0013237820990626896" c="7.2503781770217891e-05" d="9.7793869595483773e-06" /> - <width sOffset="124.85412000172296" a="4.134281747715173" b="-0.00039040733095128727" c="0.0031972087694077372" d="-0.00054062607925316533" /> - <width sOffset="128.51354695178358" a="4.1491748889985063" b="0.0012902672202899982" c="-3.8466131172096067e-05" d="2.413155370404527e-06" /> - <width sOffset="131.26465033512775" a="4.1524836604373343" b="0.001133411017831236" c="-2.1325662181816433e-05" d="-1.2432035941545706e-07" /> - <width sOffset="141.36193113013761" a="4.1616257861941364" b="0.00066472334308700508" c="-9.623267747914056e-06" d="-3.6451709552957043e-06" /> - <width sOffset="143.82667420815497" a="4.1631511175845448" b="0.00055085279176270185" c="4.9067501605189049e-06" d="-1.3494058920690377e-07" /> - <width sOffset="151.45921192514743" a="4.1675813683705281" b="0.0006021715551779535" c="3.1957350610181017e-06" d="1.1933689592478784e-07" /> - <width sOffset="151.85904376140172" a="4.1678226542448824" b="0.00060478430197236717" c="-6.8899358195962941e-05" d="6.049586653725197e-07" /> - <width sOffset="161.55649272015725" a="4.1677598818607624" b="-0.00056083984111088346" c="-5.1366630691322873e-05" d="5.5731766996592565e-07" /> - <width sOffset="171.65377351516707" a="4.1574335768916661" b="-0.0014277023263118702" c="-3.3128762486108214e-05" d="5.1226776593200974e-07" /> - <width sOffset="181.7510543101769" a="4.1401673838181372" b="-0.0019400382584079711" c="-1.8337340011103031e-05" d="1.3990070627742125e-06" /> - <width sOffset="184.5299882278087" a="4.134664559107164" b="-0.0020095433848190212" c="-7.4224220010440028e-05" d="1.7614596869130014e-06" /> - <width sOffset="191.84833510518675" a="4.1166731251794335" b="-0.002812918726309024" c="-2.6291223204748802e-05" d="-5.1678599815538173e-07" /> - <width sOffset="194.64109933344062" a="4.1086009903820893" b="-0.0029718611685174479" c="0.0031480937835078183" d="-0.00049715310986454852" /> - <width sOffset="197.88725277036789" a="4.1151211406757771" b="0.0017502589556363038" c="-0.00021030686096038277" d="8.6951969328622775e-06" /> - <width sOffset="201.94561590019657" a="4.1193417163583481" b="0.00047289353542205939" c="-0.00010020342484269828" d="9.5420399626770048e-06" /> - <width sOffset="208.85911961202237" a="4.1209747773265493" b="0.0004556093365522115" c="8.4352781603344948e-05" d="5.3693120853540124e-06" /> - <width sOffset="212.04289669520639" a="4.1234536517747804" b="0.0011560073157505131" c="0.00013454222818454475" d="5.5902354656755643e-06" /> - <width sOffset="216.62633844966905" a="4.1321168750962585" b="0.0027416582140648866" c="0.0013267706497712612" d="-0.0002414099108115844" /> - <width sOffset="221.54628504254407" a="4.1489714360268737" b="-0.0017336743058387147" c="-0.001794389071478034" d="-0.00028014685617819068" /> - <width sOffset="221.91345522904325" a="4.1480791066629541" b="-0.0031646697551880321" c="-0.0012131954601164558" d="0.0001650126122285935" /> - <width sOffset="226.83556411124866" a="4.1227875213904568" b="-0.0031142712351851171" c="0.0086952859035982315" d="-0.0019603691178445436" /> - <width sOffset="231.10837839446879" a="4.1153046506311677" b="-0.036178622878631266" c="-3.8030511254424307e-05" d="-0.00025027543037124217" /> - <width sOffset="231.51879121791364" a="4.1004327726683991" b="-0.036336307491262376" c="0.00052691383823546113" d="-0.00020915858795565625" /> - <width sOffset="232.23745828522604" a="4.0745135715801242" b="-0.035903036404940088" c="6.9832710094852051e-05" d="-0.00020803245603824637" /> - <width sOffset="237.68758608514702" a="3.8472333610652756" b="-0.053679963481874531" c="-0.0021214814526286292" d="1.1691113278736896e-05" /> - <width sOffset="242.33473908023586" a="3.5531320996923084" b="-0.072640216322125986" c="-0.0019640714118688528" d="1.0939758676350628e-05" /> - <width sOffset="245.1169655555552" a="3.3360627191606769" b="-0.083315152353138869" c="-0.0019691625306789058" d="1.868859947151737e-05" /> - <width sOffset="251.60410540800979" a="2.7178193937985711" b="-0.10650420174294462" c="-0.0047108234544190964" d="0.00027670455559701838" /> - <width sOffset="252.43201987524571" a="2.6265710528023387" b="-0.1137355244489294" c="-0.0040234633519685842" d="0.00027656461695482097" /> - <width sOffset="257.07072585598621" a="2.0400151098412467" b="-0.13320983673373421" c="-0.00055575592351459879" d="0.000279071971946616" /> - <width sOffset="262.52930067025551" a="1.3417092810096412" b="-0.11433138922541443" c="0.0040154932515846682" d="0.00027916149711806583" /> - <width sOffset="262.60426804836823" a="1.3331608416459382" b="-0.11372462047047684" c="-0.0013228234047813338" d="0.00025243739229652718" /> - <width sOffset="272.62658146526536" a="0.3146347066783326" b="-0.064170562793805438" c="0.0062648254584590475" d="0.00025263748933792793" /> - <width sOffset="272.70605349629875" a="0.30957463593473999" b="-0.063170019160925767" c="0.0051245187730786911" d="-0.00029198538862762263" /> - <width sOffset="276.81114997390011" a="0.11641400280406433" b="-0.035858184318070536" c="5.9233406846178986e-05" d="0.00077802176859162421" /> - <width sOffset="280.35219049559504" a="0.024726384539955681" b="-0.0061719184066401462" c="0.001914732101589598" d="-0.00074172939421981066" /> - <width sOffset="281.57693809539251" a="0.018676800220076117" b="-0.0048195884606746387" c="-0.0029025380029571069" d="0.00080985614703525492" /> - <width sOffset="282.72386226027521" a="0.010552830954271286" b="-0.0082816309513502571" c="-0.00011107498720944241" d="0.00081410637753985061" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="284.61133953250203" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <successor id="-4" /> - </link> - <width sOffset="0" a="2.4929857327525635" b="-0.00033172698434079211" c="-0.00073011597268227276" d="0.00018666707846234801" /> - <width sOffset="2.4521109695347594" a="2.4905344761917547" b="-0.00054517533156861041" c="0.087654000580544192" d="-0.12193123685627574" /> - <width sOffset="2.9401019566981996" a="2.4969725739965885" b="-0.0021048105119272852" c="-0.00048533727258224493" d="0.00028163200780505009" /> - <width sOffset="5.1914363572158715" a="2.4929876821108543" b="-7.7624505744798783e-06" c="-0.00033830220719399142" d="0.00011705961429866264" /> - <width sOffset="6.7109589894613872" a="2.4926054680311829" b="-0.0002250241226893256" c="0.00024686564942500854" d="-4.3404343842428467e-05" /> - <width sOffset="9.962736408744318" a="2.4929916752701793" b="3.600228726887561e-06" c="0.00053608415294603164" d="-8.2448890858688895e-05" /> - <width sOffset="10.097280795009828" a="2.4930016631506842" b="0.00014337693845898865" c="0.00050775181403506535" d="-8.3368370720579958e-05" /> - <width sOffset="14.122980777251287" a="2.4963685327201102" b="0.00017822131413319439" c="-0.00038808097249660203" d="3.7450635050551319e-05" /> - <width sOffset="20.194561590019656" a="2.4915266901421784" b="-0.00039255751486147634" c="0.00028651195768843684" d="3.7824672324400982e-05" /> - <width sOffset="21.154929213102559" a="2.4914474456133604" b="0.00026241386417683287" c="0.00026129260777208412" d="-6.1620876010489879e-05" /> - <width sOffset="24.40634686538715" a="2.4929448756555672" b="7.241317682898929e-06" c="0.00027630252211150022" d="-4.1869311888625991e-05" /> - <width sOffset="28.651807466690279" a="2.4947518413472682" b="8.9354902997445087e-05" c="0.0001988943944292426" d="-4.4819038539747239e-05" /> - <width sOffset="30.291842385029483" a="2.4952356487544947" b="0.00038009114886118221" c="-8.7185397720106238e-06" d="-4.2926919672005673e-05" /> - <width sOffset="32.921671262020517" a="2.4953941756494213" b="-0.00055641310579683501" c="-0.00015909905548855131" d="2.2775153031829103e-05" /> - <width sOffset="37.957158248716333" a="2.4914661704739274" b="-0.00042622638480381135" c="0.00040501205331407533" d="-5.0402697931658535e-05" /> - <width sOffset="40.389123180039313" a="2.4921000483102294" b="0.00064941060747788592" c="5.2830968141580224e-05" d="-4.8284435172823782e-05" /> - <width sOffset="44.256935312629061" a="2.492608345087497" b="-0.0011089100787535543" c="-0.0026371499907047063" d="0.0013240778939327907" /> - <width sOffset="45.535962449412104" a="2.4896463437804073" b="-0.0013566644251754333" c="0.0018397752764898652" d="-0.00034532507910124905" /> - <width sOffset="48.61463908329889" a="2.4928307155784246" b="0.00015224978309518735" c="-9.5272070425374169e-05" d="-4.9041677302549217e-05" /> - <width sOffset="49.114757357628221" a="2.4928768946290543" b="2.0156515039578167e-05" c="0.00054729313929569306" d="-7.1273008566466066e-05" /> - <width sOffset="50.486403975049143" a="2.4937502977872015" b="0.0011192598783972712" c="0.00024876812306401689" d="-7.8028058249920924e-05" /> - <width sOffset="53.10528492642684" a="2.4969861756161471" b="0.00081677299995905838" c="-0.0049353681845647713" d="0.0014322346190826216" /> - <width sOffset="55.420712817608816" a="2.4901968528142344" b="0.0009973105758529369" c="8.412561920651485e-05" d="-4.3011556876661949e-05" /> - <width sOffset="58.921261376928825" a="2.4928738610787438" b="5.1119698417610715e-06" c="7.9498753668093256e-05" d="-2.8554297753978327e-06" /> - <width sOffset="60.583684770058966" a="2.4930889473204445" b="0.00024575890681844087" c="5.7559002542361628e-05" d="-6.7062700927645573e-06" /> - <width sOffset="67.979259753925646" a="2.4953419688576144" b="-3.2661136762212467e-06" c="1.7287208958020438e-05" d="-3.3737063164909911e-06" /> - <width sOffset="70.680965565068803" a="2.4953927972212178" b="1.6267576054611495e-05" c="-1.6884604928058496e-06" d="-9.620522394819369e-07" /> - <width sOffset="76.449199902767987" a="2.4952458124050683" b="-9.9241023950812166e-05" c="-4.2074124939183379e-06" d="1.8207623918742898e-08" /> - <width sOffset="80.778246360078626" a="2.4947388209538683" b="-0.00013464552450128016" c="-4.0397920980211722e-06" d="7.1246308603188712e-08" /> - <width sOffset="90.875527155088449" a="2.4930407358316113" b="-0.00019443558567272285" c="-2.113155683700336e-06" d="1.1817003111549849e-07" /> - <width sOffset="100.97280795009829" a="2.4909836705624269" b="-0.00020096573354322085" c="8.1770795250079538e-07" d="9.8780637117231487e-08" /> - <width sOffset="111.07008874510811" a="2.4891395242101488" b="-0.00015423891681418675" c="4.3724577009082391e-06" d="3.8198608018115855e-08" /> - <width sOffset="121.16736954011793" a="2.488067249115165" b="-5.4255424127589076e-05" c="8.0933792189756677e-06" d="-3.3336504713829582e-08" /> - <width sOffset="131.26465033512775" a="2.488310259084054" b="9.8990343021722652e-05" c="1.0445156173591114e-05" d="-1.4458132378308405e-08" /> - <width sOffset="141.36193113013761" a="2.4903598449010858" b="0.00030550345258020334" c="4.2036629743723953e-07" d="3.6578566823205557e-06" /> - <width sOffset="143.82667420815497" a="2.4911701559916395" b="0.00037423962440242479" c="-1.401585043757579e-05" d="1.4762631624302072e-07" /> - <width sOffset="151.45921192514743" a="2.4932756921303536" b="0.00018608680326095766" c="-1.0401764265808914e-05" d="1.496732104752427e-07" /> - <width sOffset="161.55649272015725" a="2.4942482340731047" b="2.1807566348973568e-05" c="-5.9281182928644716e-06" d="1.1904080390475489e-07" /> - <width sOffset="171.65377351516707" a="2.4939865782476041" b="-6.1497739768859219e-05" c="-1.5078087114625199e-06" d="9.19270694087108e-08" /> - <width sOffset="181.7510543101769" a="2.4933065256181841" b="-6.3829980661277933e-05" c="2.9960558126145226e-06" d="2.5611569169760811e-08" /> - <width sOffset="190.53452220651656" a="2.492994376050353" b="-5.2707160355489231e-06" c="-0.00035104126988553885" d="8.7654821942005423e-05" /> - <width sOffset="191.84833510518675" a="2.4925802991475106" b="-0.00047377170890929498" c="1.4190705835552818e-05" d="0.00010107860185031563" /> - <width sOffset="194.64109933344062" a="2.4935695671171434" b="0.0019705882617887878" c="-0.0023176579747576295" d="0.00059771492571686563" /> - <width sOffset="196.63704652438875" a="2.4930223685346444" b="-0.00013771811886199858" c="-0.00051840401221693035" d="0.00050857943318772744" /> - <width sOffset="197.88725277036789" a="2.4930337298642566" b="0.00095081086455504546" c="-9.402164469973106e-05" d="2.7311263907059217e-06" /> - <width sOffset="201.94561590019657" a="2.4955264551908201" b="0.00032261041755821465" c="-6.0231711378532131e-05" d="2.5424501461412097e-06" /> - <width sOffset="212.04289669520639" a="2.4952603880216753" b="-0.00011609546758063055" c="1.708769459126422e-05" d="2.4395063420426299e-06" /> - <width sOffset="216.62633844966905" a="2.4953221452427794" b="0.00019429243444131668" c="-0.0010647291653589175" d="0.00024943965261922272" /> - <width sOffset="219.37276025470342" a="2.4929920222497124" b="-9.6536292664567425e-06" c="-0.0014360145769106544" d="0.00037244225139617239" /> - <width sOffset="221.91345522904325" a="2.4898060793132935" b="-9.4113151365524117e-05" c="0.00051299356052286488" d="-7.2717216760317759e-05" /> - <width sOffset="222.14017749021622" a="2.4898102637054134" b="0.0001272873229315628" c="0.00046101635099441947" d="-7.3530438010207134e-05" /> - <width sOffset="226.40877454374808" a="2.4930347110065725" b="4.3696534585069974e-05" c="0.007058654652827929" d="-0.0017866692693409068" /> - <width sOffset="226.83556411124866" a="2.4942001948210706" b="0.0050924950099716241" c="-0.0027007919921127575" d="0.00033871246072072255" /> - <width sOffset="230.83204973570795" a="2.4930360157269735" b="-0.00026521577444784186" c="0.010793048340825843" d="0.0022515145499222545" /> - <width sOffset="231.10837839446879" a="2.4938343659412503" b="0.0062154016229877228" c="-0.0037360407584825935" d="0.00054142086223411042" /> - <width sOffset="232.23745828522604" a="2.4968685739831376" b="-0.00015053065563439341" c="-0.0019067417958648798" d="0.00054382560246377999" /> - <width sOffset="234.60499355786709" a="2.4930413462190408" b="-3.4295810010260414e-05" c="-0.00090602780696373455" d="0.00022157458947656133" /> - <width sOffset="237.68758608514702" a="2.4908165616855662" b="0.0006963307373918301" c="-6.7051538792950623e-05" d="1.8510201595329054e-06" /> - <width sOffset="242.33473908023586" a="2.4927902385439396" b="0.00019305728475900452" c="-4.0415461250235298e-05" d="2.2666893637012563e-06" /> - <width sOffset="250.90592792539735" a="2.4929031356622744" b="-1.9092229865125265e-07" c="-0.0024527394501174912" d="0.00017871552362488192" /> - <width sOffset="251.60410540800979" a="2.49176823198479" b="-0.0031637402223170796" c="0.0010269536120451153" d="-7.9300432505203042e-05" /> - <width sOffset="252.43201987524571" a="2.4898078411806797" b="-0.001626348345147216" c="0.00083082861483118687" d="-7.8314938082855328e-05" /> - <width sOffset="258.31415095752965" a="2.4930491273470627" b="1.8772164829511384e-05" c="0.0013634196467948321" d="-0.00031992102663784246" /> - <width sOffset="262.52930067025551" a="2.4933930725338946" b="-0.0055397701122316401" c="-0.0026858541087554271" d="-0.00032002364280889076" /> - <width sOffset="262.60426804836823" a="2.4929625408697804" b="-0.005947868695396194" c="0.0026432725634035481" d="-0.00029329954269749806" /> - <width sOffset="267.08955128417466" a="2.4929958483113399" b="6.2189092731340656e-05" c="0.00036431333234920827" d="-6.1245969717375274e-05" /> - <width sOffset="272.70605349629875" a="2.4939862941465014" b="-0.0016415078181113915" c="0.00053288848762970097" d="0.0004833769080666878" /> - <width sOffset="273.45607950950529" a="2.4932588370026547" b="-2.6392245222155164e-05" c="-0.0015022565640440931" d="0.00031609464781648215" /> - <width sOffset="276.81114997390011" a="2.4881978804278644" b="0.00056761064202232731" c="0.0031487036816166577" d="-0.00075391250940276078" /> - <width sOffset="280.35219049559504" a="2.4962148427588593" b="-0.0054928691401148122" c="0.0015493205780804729" d="0.00076583865340951152" /> - <width sOffset="281.35303659437375" a="2.4930370537766624" b="-9.0200771579109548e-05" c="-0.0023883247870091239" d="0.0014373934530884798" /> - <width sOffset="281.57693809539251" a="2.4929132606435553" b="-0.00094352206341789466" c="0.00066915508683724773" d="-0.00011419208818540076" /> - <width sOffset="282.72386226027521" a="2.4925390603503246" b="0.00014078139261662192" c="0.00027814665254983036" d="-0.00011268823266205174" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="284.61133953250203"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="2.4930379528873088" b="-0.00038229435811248068" c="0.00046216295469864155" d="-0.0004306724746656623" /> - <width sOffset="0.75055289527921332" a="2.4928292787762434" b="-0.00041637059209513952" c="0.00023059248875170068" d="-2.8366833594502554e-05" /> - <width sOffset="4.9953307860832865" a="2.4930471451661331" b="7.9045227676152047e-06" c="-0.00022969553609208137" d="-8.1590131399905628e-05" /> - <width sOffset="5.3489463898640679" a="2.4930176105689243" b="-0.00018515039660724902" c="-2.2364469862823458e-05" d="2.3292418408923888e-06" /> - <width sOffset="8.2098035227829769" a="2.4923594181415023" b="-0.00025592243862774221" c="-3.3685440783932452e-06" d="2.1359462702683638e-06" /> - <width sOffset="18.307084317792828" a="2.491630747849058" b="0.00032936300559239812" c="5.9954601403050158e-05" d="2.7728178971175885e-06" /> - <width sOffset="21.83488706978909" a="2.4936605743607991" b="0.00085590544040001909" c="-9.8955977552096078e-05" d="2.7999112405634512e-06" /> - <width sOffset="28.404365112802623" a="2.4958065272430243" b="-8.1756744394468478e-05" c="-4.3219905356419162e-05" d="2.594488967904185e-06" /> - <width sOffset="38.501645907812474" a="2.4932454636872112" b="-0.00016099979843986825" c="4.9472932282929217e-05" d="-3.6805619724130663e-06" /> - <width sOffset="40.328217565241687" a="2.4930940159877419" b="-1.7107170216892377e-05" c="0.00018551357124024336" d="7.9426366715358175e-06" /> - <width sOffset="41.15063457632084" a="2.4932098406809438" b="0.00030414834063516739" c="0.00018106092034446674" d="-1.9322030139760969e-05" /> - <width sOffset="46.276649796703055" a="2.4969239621141286" b="0.00063727155857337117" c="-9.7540132261239739e-05" d="3.3885696478197413e-06" /> - <width sOffset="48.598926702822325" a="2.4979202904714262" b="0.00023906452908605989" c="-7.4735714951949296e-05" d="2.1256055868187219e-06" /> - <width sOffset="58.69620749783212" a="2.4949027515913604" b="-0.00062004161001333368" c="-1.1683825056036932e-05" d="2.1783897721778904e-06" /> - <width sOffset="68.793488292841971" a="2.4896933769220917" b="-0.00018969762780663476" c="5.3576178674078798e-05" d="2.0170972074843096e-06" /> - <width sOffset="73.069802388886501" a="2.4900196482230079" b="0.00037917864466782756" c="-7.6539359878693191e-07" d="-1.2526596707759578e-07" /> - <width sOffset="78.890769087851766" a="2.4921761932448572" b="0.00035753457756720636" c="-3.8720118078060794e-06" d="-3.3414421655846126e-08" /> - <width sOffset="88.988049882861617" a="2.4953571498835228" b="0.00026912068659210421" c="-6.2625509523764985e-06" d="-7.175034471728552e-08" /> - <width sOffset="99.085330677871468" a="2.4973621733835172" b="0.00012070527938411787" c="-8.5353134998462056e-06" d="-1.1787118012583032e-07" /> - <width sOffset="109.18261147288126" a="2.4975894051831862" b="-8.771433138319738e-05" c="-1.1645633766489424e-05" d="-1.6685406910789355e-07" /> - <width sOffset="116.68571676050868" a="2.4962051868312578" b="-0.00029065110879885996" c="-0.00011144124826934529" d="9.2413385848014365e-06" /> - <width sOffset="119.27989226789111" a="2.4948625521031262" b="-0.00068227182260610425" c="-3.7979830978448931e-05" d="1.0295868656382156e-05" /> - <width sOffset="125.09934496063954" a="2.491635005314869" b="-7.8274902565155565e-05" c="0.00018338359998303983" d="-2.2181359673694904e-05" /> - <width sOffset="129.37717306290091" a="2.4929196108913301" b="0.00027294791196186621" c="-0.00011657434011097123" d="-1.9313098762412771e-05" /> - <width sOffset="130.34868010222584" a="2.4930570469966202" b="-8.2422821413609404e-06" c="7.0113953071318559e-05" d="-2.2181600172744958e-05" /> - <width sOffset="131.25529210232651" a="2.4930906748736463" b="6.4193833044424824e-05" c="0.0005349610299180326" d="-9.0050018644253737e-05" /> - <width sOffset="135.86101449265999" a="2.4959364296576361" b="-0.00073864852729375115" c="6.134893231088783e-05" d="-1.5259019021715367e-06" /> - <width sOffset="139.47445385791076" a="2.4939964047910417" b="-0.00035505808050702054" c="4.1817550840425779e-05" d="-1.4535505361318596e-06" /> - <width sOffset="146.35987920287653" a="2.4930597256222109" b="1.4070677868836779e-05" c="1.7154123224084804e-05" d="1.8266761887585343e-06" /> - <width sOffset="149.57173465292061" a="2.4933424050730526" b="0.00018079586546177219" c="1.8547650549828197e-05" d="-1.6039992373491791e-06" /> - <width sOffset="159.66901544793041" a="2.495407711282394" b="6.4749927780220935e-05" c="-3.1445630966932261e-05" d="-1.7008139866466597e-06" /> - <width sOffset="166.84022265577715" a="2.4936276768847181" b="-0.00064865560923314889" c="0.0002110431363415174" d="-2.2768050128477127e-05" /> - <width sOffset="169.76629624294026" a="2.4929661917717754" b="1.5861262130986015e-06" c="5.4725395566710615e-06" d="-2.2426167683641439e-05" /> - <width sOffset="170.0898911392506" a="2.4929665181774343" b="-1.917080134787412e-06" c="0.00019763501274018408" d="-1.9823810481947011e-05" /> - <width sOffset="176.88893432264956" a="2.4958589457293243" b="-6.3644268051833621e-05" c="-6.5487324825588903e-05" d="4.6712919108713446e-06" /> - <width sOffset="179.86357703795005" a="2.4952131158775064" b="-0.00032924528614547205" c="-3.14273528269526e-05" d="1.7390892826461041e-06" /> - <width sOffset="189.9608578329599" a="2.4904747941373913" b="-0.00043197994045457455" c="2.2985291030794175e-05" d="1.6151484468521736e-06" /> - <width sOffset="196.65735097091186" a="2.4890977878105431" b="9.3146150862245445e-05" c="7.8074101178516355e-05" d="-5.3715370943726016e-06" /> - <width sOffset="200.0581386279697" a="2.4901062432623808" b="0.00043780180272555902" c="2.6091216514443247e-05" d="-4.2947648056440653e-06" /> - <width sOffset="208.42317097239379" a="2.4930803034033433" b="-2.7253061371486745e-05" c="4.1168150398075148e-06" d="-1.5086815775769229e-07" /> - <width sOffset="210.15541942297955" a="2.4930446633915526" b="-1.434849173909197e-05" c="1.1185122337991343e-05" d="-2.8269576893719685e-06" /> - <width sOffset="212.67284559707247" a="2.4930343257538796" b="-1.1780030199073194e-05" c="9.3395315127096126e-05" d="-5.7943018636539486e-06" /> - <width sOffset="220.2527002179894" a="2.4957876012611395" b="0.00040534492551485776" c="-3.2489821606457056e-05" d="-6.2220037377397158e-06" /> - <width sOffset="224.1835559043792" a="2.4965010203105171" b="-0.00013850090666255456" c="-0.001117160861776456" d="0.00017035008159818681" /> - <width sOffset="228.53795239172644" a="2.4887802671920909" b="-0.00017771805040147775" c="0.00036195438585384654" d="-3.7199227843131841e-05" /> - <width sOffset="230.34998101299925" a="2.4894253710102836" b="0.00076760020310393472" c="0.00016383915982292983" d="-3.4870788175948447e-05" /> - <width sOffset="235.0374948485877" a="2.4930318980620214" b="4.9717656478136946e-06" c="0.00014278091365497171" d="-3.5257423379607148e-05" /> - <width sOffset="239.16962825808184" a="2.4930027984996341" b="-0.00062106009816265389" c="9.8608800996443708e-05" d="-3.5580673480120546e-06" /> - <width sOffset="240.44726180800899" a="2.4923628546116978" b="-0.0003865122801140918" c="8.4219901456838932e-05" d="-3.9765052008347994e-06" /> - <width sOffset="250.54454260301884" a="2.492953089239319" b="9.7996995868402487e-05" c="-6.0738705165202855e-05" d="1.2099887657600397e-05" /> - <width sOffset="251.66885401176012" a="2.49300368657621" b="7.3040955185914053e-06" c="-0.00018267285334336173" d="1.8691054767439361e-05" /> - <width sOffset="256.58972959628761" a="2.4908434119172833" b="-0.00043270407260796782" c="0.0036533181467447834" d="-0.0011078781493610377" /> - <width sOffset="258.7979430405361" a="2.495772937988165" b="-0.00050481985987294465" c="-0.00018437812837184128" d="3.4631265676866833e-05" /> - <width sOffset="260.64182339802869" a="2.4944323477060522" b="-0.00083153430094404397" c="7.4527183848822572e-06" d="3.724403356629243e-05" /> - <width sOffset="263.29769607732169" a="2.4929741830621959" b="-3.8271440299443051e-06" c="-0.0002102141528069339" d="2.1654161135114915e-05" /> - <width sOffset="270.73910419303854" a="2.4902281031779774" b="0.00046486284417556335" c="0.00027656843359368639" d="2.1369216823382157e-05" /> - <width sOffset="270.95858075759509" a="2.4903436778882089" b="0.00058935148662902115" c="3.9176450847651047e-05" d="-3.9575430862095928e-06" /> - <width sOffset="280.83638498804839" a="2.4961734324684386" b="0.0002048816061782689" c="-8.1740828210808921e-05" d="-2.029603899232446e-06" /> - <width sOffset="282.7768906755681" a="2.4962483756987917" b="-0.00013528327783700729" c="-3.6344468257851015e-05" d="2.125191223742269e-06" /> - <width sOffset="290.93366578305813" a="2.4938801243486814" b="-0.00030400466925938085" c="1.7166515411403421e-05" d="1.91029527639514e-06" /> - <width sOffset="295.77633589778259" a="2.4930274575201326" b="-3.3435224589550578e-06" c="0.0002084354605253009" d="-1.9268660889355472e-05" /> - <width sOffset="297.25057760796574" a="2.4934138008984252" b="0.00048559011221809174" c="-0.00013843896307591568" d="8.9824510823650265e-06" /> - <width sOffset="301.03094657806798" a="2.4937563388568087" b="-0.00017600087518310562" c="-3.589103128574625e-05" d="8.8209946578298927e-06" /> - <width sOffset="305.25026868634211" a="2.4930373690692837" b="-7.760508295517974e-06" c="8.6282760292488822e-06" d="4.6629699932939282e-05" /> - <width sOffset="306.09789767411269" a="2.4930653877316518" b="0.00010737345257592345" c="-7.2411795535173065e-05" d="6.478704804490374e-06" /> - <width sOffset="311.12822737307783" a="2.4925978527844013" b="-0.00012932130426947588" c="2.5754914103941803e-05" d="6.512887819986568e-06" /> - <width sOffset="319.56867332989066" a="2.4972573767579869" b="0.0016974010404842343" c="-0.0029204802864718476" d="0.00063237160742885847" /> - <width sOffset="321.22550816808769" a="2.4949288145527957" b="-0.0027723328374742958" c="0.00021148794992726999" d="0.00063783421075493433" /> - <width sOffset="322.31857362267203" a="2.4929841599508418" b="-2.3754687819199129e-05" c="-0.0001033424383908182" d="0.00075177926385214516" /> - <width sOffset="323.2178820839016" a="2.4934260031065731" b="0.0016143891670610084" c="-0.0011247610196742175" d="0.00012029451368568302" /> - <width sOffset="330.44421906141804" a="2.4917513720791318" b="0.004203903939310815" c="-0.0044208693176819459" d="0.0014447699347897925" /> - <width sOffset="331.44417176556851" a="2.4929791909908232" b="-0.00030351669417939646" c="-0.0032047662683241983" d="0.0013319039353445223" /> - <width sOffset="333.43841606149783" a="2.4901920194894291" b="0.002805296660795314" c="0.00041863634505793254" d="-0.00027287666618300261" /> - <width sOffset="335.24582577998979" a="2.4950187608182599" b="0.00164434837241835" c="-0.00040609420919307017" d="2.2332308761836457e-05" /> - <width sOffset="341.42006975810727" a="2.4949468928433296" b="-0.00081629190986711277" c="7.7627994944036075e-06" d="2.2493169598477951e-05" /> - <width sOffset="343.98507896778426" a="2.493283762491691" b="-0.00033250254609965241" c="-8.1794897715873423e-05" d="0.00011150502470878558" /> - <width sOffset="345.23505647994273" a="2.4929581133547449" b="-1.4325114415272974e-05" c="-0.00038876428336194528" d="9.0610318650428297e-05" /> - <width sOffset="348.37640202868818" a="2.4918855928257431" b="0.00022563095304801485" c="-0.00015819625884461538" d="1.1563651391581043e-05" /> - <width sOffset="351.51735055311713" a="2.4913919190047027" b="-0.00042589605077021121" c="-5.059341672232123e-05" d="1.0386169055720588e-05" /> - <width sOffset="361.61463134812698" a="2.4926255109230295" b="0.001729160153055184" c="0.00026502579475086327" d="9.5582306253396152e-06" /> - <width sOffset="363.19409301493954" a="2.4960554748484007" b="0.0026378910497535431" c="-0.0018774815296154707" d="0.00025678177352114783" /> - <width sOffset="367.19401376746112" a="2.4930013725589042" b="-5.6626865353780545e-05" c="-0.00036489111860894743" d="0.00033185781833669893" /> - <width sOffset="368.17018462957014" a="2.4929070818157433" b="0.00017967243402479578" c="-5.1663329472528656e-05" d="8.1751577320456547e-06" /> - <width sOffset="371.71191214313683" a="2.4932585728358765" b="0.00012136102231425847" c="3.5938643981580729e-05" d="8.4211028357506363e-06" /> - <width sOffset="375.23741921234011" a="2.4945021268407546" b="0.00068876762564542247" c="-0.0017372454718517373" d="0.00051100938817229551" /> - <width sOffset="377.23735209001063" a="2.4930187639144892" b="-0.00012827998254504383" c="-0.0016388832499156876" d="0.00047775271790026106" /> - <width sOffset="380.21740063866389" a="2.4907257412475952" b="0.0028321371415194023" c="-0.00096930370870499229" d="6.1842500048935427e-05" /> - <width sOffset="381.80919293814668" a="2.4930273195550292" b="0.00021636686814377882" c="-0.00069808677048662708" d="5.2628926594331135e-05" /> - <width sOffset="381.96740476372645" a="2.4930442859759516" b="-5.7223550593051963e-07" c="-8.2118273223236613e-05" d="5.7955248586951227e-06" /> - <width sOffset="391.90647373315642" a="2.4906167681635649" b="8.4603770762007078e-05" c="9.8659333210676558e-05" d="5.6284785142031466e-06" /> - <width sOffset="392.61974261900775" a="2.4907293490309064" b="0.0002339355437225947" c="8.3861554687411429e-05" d="5.7891181477922181e-06" /> - <width sOffset="398.06871794527581" a="2.4954306253109797" b="0.0016635145169373545" c="-0.00074572413408260311" d="6.7455829797087295e-05" /> - <width sOffset="402.00375452816627" a="2.4945396678480272" b="-0.0010718269780030424" c="4.3260633853893488e-05" d="7.001579559214399e-05" /> - <width sOffset="404.06874738365298" a="2.4931273510106156" b="2.5219417198463212e-06" c="-0.00029850735480623251" d="7.8129549269609935e-05" /> - <width sOffset="407.64684511786834" a="2.4928937339607788" b="0.00086717205024533603" c="-0.00022735153752048828" d="1.5234999612134835e-05" /> - <width sOffset="412.10103532317612" a="2.4935919931381898" b="-0.00025138342236033832" c="-2.7463157535021047e-05" d="1.7428287429001085e-05" /> - <width sOffset="414.89696887754724" a="2.4930553768721131" b="3.7697993530101453e-06" c="4.7142613455344333e-05" d="-1.8502506197901238e-06" /> - <width sOffset="422.19831611818597" a="2.4948758811924119" b="0.00039627022233384833" c="6.8587984408348947e-06" d="-2.2288622669122546e-06" /> - <width sOffset="427.99247859198829" a="2.496968634990389" b="0.00025126798383801583" c="-2.9718013066351036e-05" d="-4.4118146718147989e-09" /> - <width sOffset="432.29559691319582" a="2.4974992360060977" b="-4.7373475860412132e-06" c="-2.7793017723141297e-05" d="7.8178558619065133e-07" /> - <width sOffset="442.39287770820556" a="2.4954225864240946" b="-0.00032688412110224991" c="-5.0246278025061598e-06" d="7.6452834507311404e-07" /> - <width sOffset="452.49015850321541" a="2.4923967176201867" b="-0.00019451163222779808" c="1.8038738479881527e-05" d="9.1943942159201716e-07" /> - <width sOffset="458.11586328906094" a="2.4920370545761088" b="9.574638804739775e-05" c="7.8701158995230777e-05" d="-1.1601441786734531e-05" /> - <width sOffset="462.58743929822526" a="2.4930015460958694" b="0.00010367060961726584" c="-0.00010541069067288716" d="-7.020754354135023e-06" /> - <width sOffset="463.11605438002005" a="2.4930258555662377" b="-1.3658262537363699e-05" c="0.00089941442206698831" d="-8.2383743533373909e-05" /> - <width sOffset="464.93200448766686" a="2.4954736812392326" b="0.0024379007872875375" c="-0.0012274084689005648" d="0.00012430171520820532" /> - <width sOffset="470.85648506443601" a="2.4926836507332277" b="0.00098315853043332707" c="-0.00052799219618480334" d="-0.00011642538643960923" /> - <width sOffset="471.60651689368149" a="2.49307490689137" b="-5.3478907988954239e-06" c="0.00048123021759017854" d="-5.5504568972558767e-05" /> - <width sOffset="472.68472009323511" a="2.4935590101861322" b="0.00083880415903187259" c="0.00031160224346648148" d="-5.3901850626275537e-05" /> - <width sOffset="475.13764437584689" a="2.4966958641901744" b="0.0013945215437019391" c="-0.00040940330791393585" d="1.948852805953338e-05" /> - <width sOffset="482.78200088824497" a="2.4921377787210375" b="-0.001448222362168369" c="3.9625135040428032e-05" d="1.9477647751803777e-05" /> - <width sOffset="488.50168183334461" a="2.4887953524470312" b="0.00091668303451845901" c="-6.0675988665073052e-05" d="1.0759080009150712e-06" /> - <width sOffset="492.8792816832547" a="2.4917357244106872" b="0.00044730673980876651" c="-4.5133322653897947e-05" d="9.3993247071150634e-07" /> - <width sOffset="499.00805095989961" a="2.492998254473922" b="0" c="2.9955979961442987e-05" d="-1.4596468429674783e-06" /> - <width sOffset="502.97656247826455" a="2.493378805168124" b="0.00016879700226009905" c="1.4781907337054512e-05" d="-1.0310951681597428e-06" /> - <width sOffset="513.07384327327441" a="2.4955288058548897" b="0.00015193497101534837" c="-1.7576868438901238e-05" d="-1.0600212660667984e-06" /> - <width sOffset="513.33014020474332" a="2.4955665738841883" b="0.00014271628369647515" c="4.6275310638799033e-05" d="-5.8027446180954109e-06" /> - <width sOffset="519.98356996506948" a="2.4968555373334373" b="-1.2134575486682413e-05" c="-6.1966300231641342e-05" d="2.9738735249711391e-06" /> - <width sOffset="523.17112406828426" a="2.4962835643316197" b="-0.00031652830840534272" c="-3.3278326601819993e-05" d="3.1940346553786939e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1547079165304224" weight="standard" type="solid"> - <type name="solid"> - <line length="533.26840486329411" space="0" width="0.15470800000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.778778411230872" b="-7.9559073481788242e-05" c="-0.0010471851491169807" d="0.00048342918596525476" /> - <width sOffset="0.75055289527921332" a="3.7783331855609026" b="-0.00083450478423072183" c="-0.00069682457593591774" d="8.1123544894084581e-05" /> - <width sOffset="5.3489463898640679" a="3.7676492645247364" b="-0.0020969257013809901" c="0.00012840367040990432" d="-2.7958283074921489e-06" /> - <width sOffset="8.2098035227829769" a="3.7626357165011348" b="-0.0014308839886070703" c="0.00010208413591222957" d="-3.5899630346068634e-06" /> - <width sOffset="18.307084317792828" a="3.7548999193797359" b="-0.00046738451784733223" c="-2.7819739762928187e-06" d="-4.2969424786140553e-06" /> - <width sOffset="21.83488706978909" a="3.7530277994512606" b="-0.00064744443270075419" c="0.00013999817229999915" d="-4.3240358220646084e-06" /> - <width sOffset="28.404365112802623" a="3.7535904986836797" b="0.00063213464956342813" c="5.6839517888416331e-05" d="-3.6718805355446707e-06" /> - <width sOffset="31.65136078561477" a="3.7561165955714424" b="0.0008851122877683291" c="-0.0001292998595474884" d="-2.3303281842077214e-06" /> - <width sOffset="38.501645907812474" a="3.7553631837901875" b="-0.0012144313017947951" c="-0.00016347384947692074" d="-5.7311932972040003e-06" /> - <width sOffset="41.15063457632084" a="3.7508925166924749" b="-0.0022011618253274046" c="-0.00018497031835099656" d="2.1533473514404975e-05" /> - <width sOffset="46.276649796703055" a="3.7376494140680454" b="-0.0024000404397359603" c="0.00012763841144630944" d="-1.1771262729417449e-06" /> - <width sOffset="48.598926702822325" a="3.732749463414696" b="-0.0018262615893956081" c="0.00012379473928653687" d="4.882819889053151e-07" /> - <width sOffset="58.69620749783212" a="3.727433361024207" b="0.00082306738456975259" c="0.00013679581260546593" d="5.4285557034709452e-07" /> - <width sOffset="67.604784610768718" a="3.746006015494916" b="0.0033896270017361968" c="0.00047203827285806994" d="-0.0001016669820862851" /> - <width sOffset="68.793488292841971" a="3.7505315096898699" b="0.0040808829153529012" c="0.00011030475150892004" d="-9.972677019816905e-05" /> - <width sOffset="71.956891527524874" a="3.7613878147210849" b="0.0017848264535046498" c="-0.00030067504830439437" d="5.8300634334124247e-06" /> - <width sOffset="73.069802388886501" a="3.7630097964644684" b="0.0011372402347442929" c="-0.00020099122961690858" d="7.9724266071250675e-06" /> - <width sOffset="78.890769087851766" a="3.7643917633421626" b="-0.00039228145642612841" c="-6.3129952407420587e-05" d="7.9502151155703763e-06" /> - <width sOffset="85.383457586552368" a="3.7613595270347644" b="-0.00020662363967442624" c="-8.1500467268529902e-05" d="2.3263462534649072e-06" /> - <width sOffset="88.988049882861617" a="3.7596647444119333" b="-0.00070349630441793451" c="-5.6739945094809379e-05" d="2.6834244402332362e-06" /> - <width sOffset="99.085330677871468" a="3.7495389215290658" b="-0.0010285683642172723" c="2.4321440132948835e-05" d="2.6225479687914437e-06" /> - <width sOffset="107.79222190655076" a="3.7441581586361092" b="-8.594367232223803e-06" c="0.00060079252906767439" d="-2.6653495969937941e-05" /> - <width sOffset="109.18261147288126" a="3.7452360097723005" b="0.0015074986930715931" c="0.00048767368693134855" d="-2.6766662037747232e-05" /> - <width sOffset="116.68571676050868" a="3.7726950787368194" b="0.0043050174196866712" c="-1.8785719912500263e-05" d="-3.6174854691760647e-05" /> - <width sOffset="119.27989226789111" a="3.7831050805400963" b="0.0034772076986176437" c="-0.00030241586908532909" d="-3.7287817901408802e-05" /> - <width sOffset="122.81717474227554" a="3.78997065743317" b="-6.192962936026232e-05" c="-0.00023894230584732291" d="-7.7168182373839274e-06" /> - <width sOffset="125.09934496063954" a="3.7884931161791031" b="-0.0012731181922261919" c="-0.00033339005336507254" d="2.4760410092625565e-05" /> - <width sOffset="129.37717306290091" a="3.7788842901366393" b="-0.0027661562270895053" c="-2.0844552014155448e-06" d="2.1813128462602226e-05" /> - <width sOffset="131.25529210232651" a="3.7738262733704326" b="-0.0025431595561280721" c="-0.00040435889111708551" d="8.9681546933790898e-05" /> - <width sOffset="135.86101449265999" a="3.7622975122844524" b="-0.00056073162204093273" c="6.4161971268782657e-05" d="1.1574301916889913e-06" /> - <width sOffset="139.47445385791076" a="3.7611637099437139" b="-5.1703332820006421e-05" c="7.7727284512421526e-05" d="5.2569437914764837e-07" /> - <width sOffset="140.61086146436247" a="3.7612061041271589" b="0.00012699310212965244" c="1.7168544604794535e-05" d="-7.1039874246032757e-07" /> - <width sOffset="149.57173465292061" a="3.7632115044355423" b="0.00026355421155229569" c="-5.9599859155066591e-06" d="-6.7352263997436927e-07" /> - <width sOffset="159.66901544793041" a="3.764571663753824" b="-6.2812253910458611e-05" c="-2.8498684650096694e-05" d="-8.1828749863203347e-07" /> - <width sOffset="162.07306131324572" a="3.7642445845641639" b="-0.00021402426587722914" c="-7.9666451654946454e-05" d="3.694625071690526e-07" /> - <width sOffset="166.84022265577715" a="3.7614538370511283" b="-0.00094840089977198268" c="-0.00035346202537933695" d="2.1436698649039316e-05" /> - <width sOffset="169.76629624294026" a="3.7561894860236111" b="-0.0024662956554774955" c="-0.00016090343274533341" d="2.1168218026107654e-05" /> - <width sOffset="176.88893432264956" a="3.7381090460258362" b="-0.0015366930802353149" c="0.00015019074161846862" d="-3.3268843665954003e-06" /> - <width sOffset="179.86357703795005" a="3.7347793284829565" b="-0.00073147929111803131" c="0.00013760862020882787" d="-2.4526388130900626e-07" /> - <width sOffset="180.52902717668366" a="3.7343534295976291" b="-0.00054866176641421593" c="0.00048871051255698606" d="-2.2114138352148719e-05" /> - <width sOffset="189.9608578329599" a="3.7540990792741988" b="0.0027684244253676025" c="-0.00013823038224902538" d="-2.1763176203798637e-05" /> - <width sOffset="195.63055612989763" a="3.7613852774069212" b="-0.00089778785670019596" c="-0.00018030216535930049" d="3.8964860689148741e-06" /> - <width sOffset="196.65735097091186" a="3.7602775576867056" b="-0.0012557302379702915" c="-0.00019094080865595298" d="1.0883171608848213e-05" /> - <width sOffset="200.0581386279697" a="3.7542268367642704" b="-0.0021768252439100695" c="-8.4749522354790943e-05" d="9.874323160577207e-06" /> - <width sOffset="208.42317097239379" a="3.7358671453248813" b="-0.0015218594968627417" c="7.7244437438211679e-05" d="5.7304265129765009e-06" /> - <width sOffset="210.15541942297955" a="3.7334924791345747" b="-0.0012026607733304309" c="0.00010789609322385275" d="5.7521386384244441e-06" /> - <width sOffset="215.40113783800842" a="3.7309830144169185" b="0.0004041787624301064" c="0.00026890198289194513" d="-8.9353506798703996e-06" /> - <width sOffset="220.2527002179894" a="3.7382528685443925" b="0.002382416578075764" c="0.00013432517112544476" d="-8.0289857725914206e-06" /> - <width sOffset="224.1835559043792" a="3.7492056812116883" b="0.0030662596373218546" c="0.0010509404618352807" d="-0.00018460107110851724" /> - <width sOffset="228.53795239172644" a="3.767242866729787" b="0.0017181478767662145" c="-0.00061433816179123435" d="2.2948238333046039e-05" /> - <width sOffset="230.34998101299925" a="3.7684755877811358" b="-0.00028220076505161215" c="-0.00049585379655031907" d="2.0323515886500631e-05" /> - <width sOffset="233.174439324638" a="3.7641807532523899" b="-0.0025968410270474957" c="-8.8887784950495802e-05" d="2.9358140951005888e-05" /> - <width sOffset="239.16962825808184" a="3.7517434864150583" b="-0.00049704267796749665" c="4.6242001671041894e-05" d="-2.3412150781550108e-06" /> - <width sOffset="240.44726180800899" a="3.7511790483270291" b="-0.00039034704211475334" c="3.7073195539226388e-05" d="-1.673751127576162e-06" /> - <width sOffset="250.54454260301884" a="3.7492943302225337" b="-0.00015361239905026914" c="-1.8235864197465556e-05" d="-1.3321090520874946e-06" /> - <width sOffset="256.58972959628761" a="3.7474050123228397" b="-0.0005201337388486191" c="-0.003602456344069169" d="0.0011252370950763932" /> - <width sOffset="258.7979430405361" a="3.7408063456518468" b="3.0546899149030522e-05" c="0.00035023670296958085" d="-1.7272319961756458e-05" /> - <width sOffset="260.64182339802869" a="3.7419451582549872" b="0.001145963842252307" c="0.000249102717791358" d="-1.9434126852050119e-05" /> - <width sOffset="270.95858075759509" a="3.7589411439549552" b="8.0386435871935888e-05" c="-0.00010092668625989246" d="5.8926330349387669e-06" /> - <width sOffset="271.69818131745922" a="3.7589477739750699" b="-5.9234461752340935e-05" c="0.00028979402730506198" d="-1.1113877109735486e-05" /> - <width sOffset="280.83638498804839" a="3.7741252194639778" b="0.0024529074100078361" c="-8.0760681200961747e-06" d="-1.288613205186755e-05" /> - <width sOffset="282.7768906755681" a="3.7787605291137862" b="0.0022759934977270393" c="-0.0001403046394130401" d="-1.7040927174836804e-05" /> - <width sOffset="286.75939956373156" a="3.7845230342645468" b="0.00034763796016877661" c="-0.00030747108544142566" d="1.2169246358329419e-05" /> - <width sOffset="290.93366578305813" a="3.7815017621931291" b="-0.0015831653269378857" c="-0.00015365163263456001" d="1.2018433481231732e-05" /> - <width sOffset="297.25057760796574" a="3.768399267374388" b="-0.002085644782675753" c="0.00033576095394283287" d="-1.6232678490686557e-05" /> - <width sOffset="301.03094657806798" a="3.764436197798243" b="-0.00024299705501125597" c="0.00015372231311187482" d="-1.5939578891793718e-05" /> - <width sOffset="305.9744321271495" a="3.765065971965543" b="0.00010825436399408347" c="-0.00024808627881108599" d="-3.3926641095903849e-05" /> - <width sOffset="306.09789767411269" a="3.7650754920342071" b="4.5442640982601574e-05" c="-6.1038464910621686e-05" d="6.224354431325616e-06" /> - <width sOffset="311.12822737307783" a="3.764551842019773" b="-9.6137321244528636e-05" c="3.6502434146729835e-05" d="5.999845890848411e-06" /> - <width sOffset="319.56867332989066" a="3.7699486234121924" b="0.0018023636905393368" c="0.003299576792695943" d="-0.00061985887371747937" /> - <width sOffset="321.22550816808769" a="3.7791732863722167" b="0.0076313443446374366" c="0.00021626505412945059" d="-0.00061302554287095913" /> - <width sOffset="323.2178820839016" a="3.7903879353896492" b="0.0011927923929850243" c="-0.00039820030974837379" d="1.8459207291424996e-05" /> - <width sOffset="323.5835149365015" a="3.7907717274128436" b="0.00090900545200876435" c="-0.00025321787503111384" d="2.4722769822909972e-05" /> - <width sOffset="330.44421906141804" a="3.7930730479749615" b="0.0009255471355132691" c="0.0061596033270048317" d="-0.0012997526512797148" /> - <width sOffset="331.32278896309754" a="3.7977592779404632" b="0.0087390523073137844" c="0.0027384919626506636" d="-0.0012995017357403261" /> - <width sOffset="333.43841606149783" a="3.8161996525312065" b="0.0028770741513367078" c="-0.0011642684330235233" d="0.00030527886578707059" /> - <width sOffset="335.24582577998979" a="3.8193988177373877" b="0.0016602447771903472" c="-0.00016384572737775129" d="1.0069890842230554e-05" /> - <width sOffset="341.42006975810727" a="3.8257737153684572" b="0.00078862943394781594" c="2.2644524859409558e-05" d="9.1980333215194522e-06" /> - <width sOffset="343.98507896778426" a="3.8281007666579319" b="0.0010863453596144841" c="0.00035606690412664751" d="-7.9813821698146458e-05" /> - <width sOffset="344.1863568844052" a="3.8283331984274249" b="0.0012199817247685097" c="1.2508960296984451e-05" d="-6.7149458501932836e-05" /> - <width sOffset="348.37640202868818" a="3.8287249124291849" b="-0.0022119160939058032" c="-0.00020822188834340534" d="1.1897208756922505e-05" /> - <width sOffset="351.51735055311713" a="3.8200918340885286" b="-0.0031678267638034852" c="-8.8012860537714963e-05" d="1.3456627778242798e-05" /> - <width sOffset="359.4494323672842" a="3.7961425873655115" b="-0.0020240880177370777" c="3.475768828306755e-05" d="2.0648827575238305e-06" /> - <width sOffset="361.61463134812698" a="3.7919439409882942" b="-0.0018445323475191754" c="4.6425710372802496e-05" d="2.9688396237604616e-06" /> - <width sOffset="363.19409301493954" a="3.7891580890971239" b="-0.0016756580026220109" c="0.0022482911165061861" d="-0.00024425470327195327" /> - <width sOffset="368.17018462957014" a="3.8063949456346586" b="0.0025554176074473588" c="-0.00073938821711401915" d="7.942795733271104e-05" /> - <width sOffset="371.71191214313683" a="3.8096995088382606" b="0.00030698770681120841" c="0.00010737961756502581" d="7.7872940745258931e-05" /> - <width sOffset="375.23741921234011" a="3.8155287714409134" b="0.0039678179959626789" c="0.0027932545154230304" d="-0.00042471534459117617" /> - <width sOffset="380.21740063866389" a="3.8521074408764973" b="0.00018943362026586192" c="4.9630272391701864e-05" d="-8.8051267580622506e-06" /> - <width sOffset="380.61618111890959" a="3.8521903174143186" b="0.00022481605911566936" c="1.4439715191410611e-05" d="-5.5170304470241251e-06" /> - <width sOffset="381.80919293814668" a="3.8524697095040676" b="0.00023571276993364522" c="8.2499645849359715e-06" d="-1.7875676339876322e-06" /> - <width sOffset="391.90647373315642" a="3.853850647741734" b="-0.00014443761259419344" c="-5.1709233125580339e-05" d="-5.4752262838794434e-07" /> - <width sOffset="392.61974261900775" a="3.8537211190013663" b="-0.00021903844731348238" c="-2.6039191374095274e-05" d="-7.0816226646395232e-07" /> - <width sOffset="394.58305702330301" a="3.8531853476764306" b="-0.00032947374046245648" c="-0.002924233212938204" d="0.00045736347405377347" /> - <width sOffset="398.06871794527581" a="3.8358774037188241" b="-0.0040445764101435244" c="0.0027826287276179968" d="0.0003956967624059253" /> - <width sOffset="398.49562994988798" a="3.834688658046411" b="-0.0014523494071107604" c="0.0010550191127551404" d="-7.0778721236538109e-05" /> - <width sOffset="402.00375452816627" a="3.8395218705104175" b="0.0033367195389331834" c="0.00030895227425779625" d="-6.9411391387416065e-05" /> - <width sOffset="407.64684511786834" a="3.8557163901156462" b="0.00019250367763683457" c="-9.8622362046830862e-05" d="-6.5168417298990536e-06" /> - <width sOffset="412.10103532317612" a="3.8540412939606856" b="-0.0010739405531619193" c="-0.00019215658819892795" d="-8.8419300503157895e-06" /> - <width sOffset="413.90093153851683" a="3.8514342396532313" b="-0.0018515980345487999" c="-0.00039450019708202317" d="2.0170193324312418e-05" /> - <width sOffset="422.19831611818597" a="3.8204329802024395" b="-0.0042322905961644248" c="0.00010358097657968761" d="2.0568950104755765e-05" /> - <width sOffset="427.99247859198829" a="3.8033889979566982" b="-0.00096031853194967977" c="0.00045895413423555954" d="1.8344499652494508e-05" /> - <width sOffset="429.65641536132478" a="3.803146299931575" b="0.00071939324139775587" c="0.0021418837753165265" d="-0.00031174237454881568" /> - <width sOffset="432.29559691319582" a="3.8142330811840131" b="0.0055109154423178212" c="-0.00032481383373086697" d="-0.00031499969154954657" /> - <width sOffset="433.50476582422436" a="3.8198649098411162" b="0.0033437326806743423" c="-3.9939495801885602e-05" d="-1.208043588900608e-06" /> - <width sOffset="442.39287770820556" a="3.8455809932987348" b="0.0023474582526510973" c="-7.3453603111999622e-05" d="-1.233948236091203e-06" /> - <width sOffset="451.40354069221996" a="3.8598665507127388" b="0.00072316657637953169" c="-0.00025002160574860835" d="2.5750486858359692e-06" /> - <width sOffset="452.49015850321541" a="3.8603604501338045" b="0.00018893209206721881" c="-0.0002395044255889765" d="2.4421563234968693e-06" /> - <width sOffset="458.11586328906094" a="3.8542781722381485" b="-0.00227395814315107" c="-0.00024343281029064054" d="1.4963037531832496e-05" /> - <width sOffset="462.58743929822526" a="3.840580390580048" b="-0.0035534573243369222" c="-1.680494928508449e-05" d="1.0427832984890273e-05" /> - <width sOffset="464.93200448766686" a="3.8322910960134471" b="-0.0034602929690301029" c="0.0017345498405228852" d="-0.00019625762575670072" /> - <width sOffset="470.85648506443601" a="3.8318614242596478" b="-0.0035732952938910888" c="-0.00024377061547577189" d="4.4469475890149069e-05" /> - <width sOffset="472.68472009323511" a="3.8247855539960351" b="-0.004018725142332355" c="-4.8024012648522501e-06" d="5.1566621408104417e-05" /> - <width sOffset="475.13764437584689" a="3.8156600941114358" b="-0.0031114810457735015" c="0.0006990187287512948" d="-2.1823757277697636e-05" /> - <width sOffset="482.78200088824497" a="3.8229739864332548" b="0.003749724246576415" c="0.00019295308990035069" d="-2.423707999850081e-05" /> - <width sOffset="484.46199276365621" a="3.8297031565893445" b="0.0041928252744618403" c="-7.2101276823221524e-05" d="-2.7578318447442324e-05" /> - <width sOffset="488.50168183334461" a="3.8436461657730749" b="0.0022601327959880201" c="2.8194144208916531e-05" d="-9.1765786965735186e-06" /> - <width sOffset="492.8792816832547" a="3.8533105982528877" b="0.0019794153526398591" c="-8.9361951460662035e-05" d="-9.7901194031163779e-06" /> - <width sOffset="499.00805095989961" a="3.8598316206362746" b="-0.00021914611087698547" c="-6.9808027006387638e-05" d="-7.4840867622022267e-07" /> - <width sOffset="502.97656247826455" a="3.8578157484562361" b="-0.00080857428196156797" c="-7.3870040944014451e-05" d="1.2566460753232374e-07" /> - <width sOffset="505.64503892708888" a="3.855134463538846" b="-0.0012001307260230375" c="-0.00011047743214513496" d="5.0852609563473882e-06" /> - <width sOffset="513.07384327327441" a="3.8422068212483635" b="-0.0019996382484925115" c="3.2681603373080099e-06" d="5.1087232823975594e-06" /> - <width sOffset="513.33014020474332" a="3.8416946207892742" b="-0.0019969562622910442" c="-5.7471009061492685e-05" d="9.8514465240914813e-06" /> - <width sOffset="519.98356996506948" a="3.8287654731972802" b="-0.0014533996317837076" c="0.00013158386306411736" d="1.0748283811912149e-06" /> - <width sOffset="523.17112406828426" a="3.8255044518557568" b="-0.00058177588148653121" c="0.00013978909885804005" d="9.2969350274947519e-07" /> - <width sOffset="524.01693715269369" a="3.8251129458451136" b="-0.0003433096761768854" c="0.00073165506116649429" d="-3.5527241105268048e-05" /> - <roadMark sOffset="0" color="standard" width="0.15821327330226068" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15821299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.7056986775465477" b="0.001382439009689311" c="5.7375509164642623e-05" d="-2.9587134966174256e-06" /> - <width sOffset="8.2098035227829769" a="3.7192781916612256" b="0.0017262626984900272" c="-1.6247269037977669e-05" d="-3.1012072102823095e-06" /> - <width sOffset="12.463997893248575" a="3.7260892312266218" b="0.0014196460940488955" c="-0.00010239379679016643" d="1.9587899685114696e-06" /> - <width sOffset="18.307084317792828" a="3.7312792161853574" b="0.00042368350334986982" c="-6.6357908204865305e-05" d="1.9475425408895211e-06" /> - <width sOffset="28.404365112802623" a="3.7307966764835281" b="-0.00032069979739317517" c="-2.5834013362636359e-06" d="1.338031357895726e-06" /> - <width sOffset="31.65136078561477" a="3.7297739337235267" b="-0.00029515586616633881" c="0.00016082198155732171" d="-3.5209934548806974e-09" /> - <width sOffset="34.025614786950314" a="3.729979678310313" b="0.00046844905587662246" c="9.2861020426259741e-05" d="-3.3176073331318979e-06" /> - <width sOffset="38.501645907812474" a="3.7336394160505799" b="0.0011003433489956611" c="5.3109043092004414e-05" d="-3.0807887155103205e-06" /> - <width sOffset="48.598926702822325" a="3.7469930518438144" b="0.0012305510158982958" c="-3.9225135448055798e-05" d="-2.9827935659379661e-06" /> - <width sOffset="49.439210584888485" a="3.7479975983557678" b="0.0011583122719018351" c="-0.00011595906964148418" d="2.5758427828660399e-07" /> - <width sOffset="58.69620749783212" a="3.7489876566893408" b="-0.00092233449787221234" c="-0.0001110542347739555" d="3.5865467746044274e-07" /> - <width sOffset="67.604784610768718" a="3.7322109717814413" b="-0.0028156134658788019" c="-0.00042220317434309639" d="0.00010256849233474425" /> - <width sOffset="68.793488292841971" a="3.7284397416325601" b="-0.0033845695028835963" c="-6.1693397305159685e-05" d="0.00010067796111466393" /> - <width sOffset="71.000661692236122" a="3.7217514029640197" b="-0.0021855129338685737" c="0.0005917868298686436" d="9.4275187876839413e-05" /> - <width sOffset="71.956891527524874" a="3.720285095474221" b="-0.00079513572260220917" c="0.00032678490952039432" d="-1.1281645753351322e-05" /> - <width sOffset="78.890769087851766" a="3.726722122158308" b="0.0021094182154626378" c="9.0003381483595024e-05" d="-1.1131137830655101e-05" /> - <width sOffset="85.383457586552368" a="3.7411654257105171" b="0.001870446577705227" c="4.6415675361840917e-05" d="-5.507268968514785e-06" /> - <width sOffset="88.988049882861617" a="3.7482527741689902" b="0.0019903964976151472" c="-1.6050304093918948e-05" d="-5.9566558490750203e-06" /> - <width sOffset="89.562455410329108" a="3.7493896443468397" b="0.0019660616831856845" c="2.0202455393474348e-05" d="-2.6345253696771168e-06" /> - <width sOffset="99.085330677871468" a="3.7676691349028699" b="0.0016340955972569014" c="-5.514037987054289e-05" d="-2.7137359108741291e-06" /> - <width sOffset="107.79222190655076" a="3.7759255847827391" b="5.6708426793548785e-05" c="-0.00063399335928259327" d="2.6562308026945924e-05" /> - <width sOffset="109.18261147288126" a="3.7748502025455082" b="-0.0015522376583427813" c="-0.0005233488015275598" d="2.6991000451131695e-05" /> - <width sOffset="119.27989226789111" a="3.7336051544243145" b="-0.0038654284772985407" c="0.00029500563554874984" d="2.6553078737337445e-05" /> - <width sOffset="122.29991726650371" a="3.7253534634887258" b="-0.0013570435632461683" c="0.00052573131075901833" d="2.6474763232496993e-05" /> - <width sOffset="122.81717474227554" a="3.7247958487315356" b="-0.00079191627241214724" c="0.00010764792081594495" d="-3.0962364273120696e-06" /> - <width sOffset="129.37717306290091" a="3.7233592863476397" b="0.00022069769203775041" c="4.9716840291131777e-05" d="-2.9714411465368669e-06" /> - <width sOffset="139.47445385791076" a="3.7275976105760442" b="0.00031584693080040447" c="-4.3110594585759601e-05" d="-1.0587308737360797e-06" /> - <width sOffset="140.61086146436247" a="3.7278993136752634" b="0.0002137627097720991" c="1.563090513994101e-05" d="1.7736224865401478e-07" /> - <width sOffset="141.49057416245938" a="3.7280995808649346" b="0.00024167590021064952" c="2.7580753843929076e-06" d="-1.3419407230957314e-07" /> - <width sOffset="149.57173465292061" a="3.7301618993687327" b="0.00025996210583723207" c="-5.4644162589670457e-06" d="-2.081246251828735e-07" /> - <width sOffset="159.66901544793041" a="3.7320154268901438" b="8.5952527051716323e-05" c="-1.3886484443076764e-05" d="-3.6417635148796559e-07" /> - <width sOffset="162.07306131324572" a="3.7321367447747305" b="1.2870833714319916e-05" c="2.8753190572420052e-05" d="-1.5519263572832374e-06" /> - <width sOffset="169.76629624294026" a="3.7332309057417632" b="0.00017972462833127452" c="-4.3931264970384733e-06" d="-1.7314297037747924e-06" /> - <width sOffset="177.89997364556393" a="3.7334704154164688" b="-0.00023537698757312043" c="-6.8030142142057047e-05" d="2.4508008078361811e-06" /> - <width sOffset="179.86357703795005" a="3.732764477299674" b="-0.00047419648386826194" c="-4.0129325518579493e-05" d="3.892302832510708e-07" /> - <width sOffset="180.52902717668366" a="3.7324312676570783" b="-0.00052708753293711586" c="-0.00039094381048270269" d="2.225810475508146e-05" /> - <width sOffset="181.12165638124833" a="3.7319862297943462" b="-0.00096700520668768861" c="-0.00030970682367635453" d="1.8304132790584152e-05" /> - <width sOffset="189.9608578329599" a="3.7118820213276096" b="-0.0021517401359279031" c="0.00017480411799498287" d="1.8703488403952783e-05" /> - <width sOffset="195.63055612989763" a="3.7087102733980002" b="0.0016341308529684148" c="0.00016483338098013494" d="-6.9561738674012833e-06" /> - <width sOffset="200.0581386279697" a="3.7185730631173737" b="0.0026846618511303733" c="6.9375087253675712e-05" d="-7.3301675364198367e-06" /> - <width sOffset="210.15541942297955" a="3.7452078094756462" b="0.0018436178827433642" c="-0.0001484842126383962" d="-8.0330777553376918e-06" /> - <width sOffset="213.4801728738118" a="3.7494008121805198" b="0.00058987851071917589" c="-0.00013632237871756257" d="-6.1068667661776523e-06" /> - <width sOffset="215.40113783800842" a="3.7499876151288314" b="-1.4674802832272944e-06" c="-0.0002419992009380283" d="8.5806225522019701e-06" /> - <width sOffset="220.2527002179894" a="3.7452642604053787" b="-0.0017437126537930962" c="-0.00011515077509863082" d="9.1632697127504079e-06" /> - <width sOffset="230.34998101299925" a="3.7253506004000307" b="-0.001266406398815217" c="0.00016107823689965768" d="8.9475464247424703e-06" /> - <width sOffset="233.174439324638" a="3.723260309178384" b="-0.00014234997576178629" c="2.1369110064613849e-06" d="-8.7078639771271987e-08" /> - <width sOffset="240.44726180800899" a="3.7223045545987219" b="-0.00012508502577418025" c="-5.3228003894017521e-07" d="1.7172924155144831e-08" /> - <width sOffset="250.54454260301884" a="3.7210049463107522" b="-0.00013058158726372978" c="-3.7330672477476385e-06" d="2.9546438741868654e-07" /> - <width sOffset="254.57320674921891" a="3.7204376079314958" b="-0.00014627385510445647" c="-6.4587497542331252e-05" d="1.0411698992943205e-06" /> - <width sOffset="260.64182339802869" a="3.7174039896059767" b="-0.00081515442829818349" c="-4.7500934977876862e-05" d="8.9498753184215371e-07" /> - <width sOffset="270.73910419303854" a="3.7052515468306142" b="-0.0015006694105364165" c="-1.971450241305267e-05" d="8.3954060339838054e-07" /> - <width sOffset="271.69818131745922" a="3.7037948957896911" b="-0.0015361681658963391" c="-0.00039494507933711035" d="1.7846050749639749e-05" /> - <width sOffset="280.83638498804839" a="3.6703948459039117" b="-0.0042835473439236365" c="9.6849152805952699e-05" d="1.7906617482936301e-05" /> - <width sOffset="286.75939956373156" a="3.652141852644748" b="-0.0012516641315280751" c="0.00037860213608278829" d="-1.130355605016589e-05" /> - <width sOffset="288.8410869978037" a="3.6510749547208095" b="0.00017764923203004339" c="0.00021710829151879894" d="-9.1655022221159075e-06" /> - <width sOffset="290.93366578305813" a="3.6523134071882306" b="0.0009658775745672117" c="0.0001614095613271736" d="-8.8604483920988904e-06" /> - <width sOffset="301.03094657806798" a="3.6694011113938179" b="0.0015153697425824013" c="-0.00010612831849787344" d="-8.8650166605227037e-06" /> - <width sOffset="305.9744321271495" a="3.6732277756566969" b="-0.00018384901965535401" c="-7.2183205585963479e-05" d="9.1220451471787659e-06" /> - <width sOffset="306.76122153719291" a="3.6730428839906288" b="-0.0002804943169906978" c="-0.00012679985181712807" d="4.2059612021308604e-06" /> - <width sOffset="311.12822737307783" a="3.6697500776676417" b="-0.0011473333255028551" c="-6.9236878073558307e-05" d="4.1196529566180653e-06" /> - <width sOffset="321.22550816808769" a="3.6553471347898094" b="-0.0012854830905242504" c="4.9224570169359495e-05" d="6.1890697048469821e-06" /> - <width sOffset="323.5835149365015" a="3.6526707999826074" b="-0.00095010203089939467" c="-3.1728381924738199e-05" d="-7.4492824228041281e-08" /> - <width sOffset="325.59755469955064" a="3.6506279465144873" b="-0.0010788129848077971" c="-0.00024761839094263846" d="1.0233678073928488e-05" /> - <width sOffset="331.32278896309754" a="3.6382554654477408" b="-0.002907831640650838" c="-8.130398816781311e-05" d="9.5507120710831991e-06" /> - <width sOffset="341.42006975810727" a="3.6104370809267103" b="-0.0016284992130921004" c="0.00020814541007574207" d="9.2134408758188317e-06" /> - <width sOffset="341.98482741158125" a="3.6095854213805998" b="-0.0013845798720720109" c="7.791908380178166e-05" d="-1.4814117108702423e-07" /> - <width sOffset="344.1863568844052" a="3.6069133002037752" b="-0.0010436515547736201" c="0.00037230433687679513" d="-1.2812504460124422e-05" /> - <width sOffset="351.51735055311713" a="3.614223186153426" b="0.002349304641263096" c="9.4149252760921239e-05" d="-1.2812949896010567e-05" /> - <width sOffset="359.4494323672842" a="3.6323871778681545" b="0.0014244112496952267" c="-1.330417918900809e-05" d="-1.4212048751648581e-06" /> - <width sOffset="361.61463134812698" a="3.6353945143701587" b="0.0013468106645464425" c="-2.1015936071933431e-05" d="-8.5437810830284988e-07" /> - <width sOffset="371.71191214313683" a="3.6459714025628749" b="0.00066107848542433197" c="-4.4807758087877263e-05" d="-1.1340827501723756e-06" /> - <width sOffset="378.72515742341" a="3.6480126085580351" b="-0.000134758763834451" c="-4.8624408563515438e-05" d="-1.1167321483041754e-06" /> - <width sOffset="380.61618111890959" a="3.6475763454695818" b="-0.00033063878542935444" c="-3.0303090244289995e-05" d="-4.4048284427057252e-06" /> - <width sOffset="381.80919293814668" a="3.647131280453876" b="-0.00042175055075962918" c="-3.1525013411806219e-05" d="1.8013396488461921e-06" /> - <width sOffset="391.90647373315642" a="3.6415130349155764" b="-0.00050741719466935271" c="3.2666829620645492e-05" d="-7.46770178933817e-08" /> - <width sOffset="394.58305702330301" a="3.6403874869488924" b="-0.00033415119450756254" c="0.002926090177877413" d="-0.00045814631333932371" /> - <width sOffset="395.20948179024879" a="3.6412137687102217" b="0.0027924587010043078" c="0.0020791391541096116" d="-0.00045798784853268154" /> - <width sOffset="398.49562994988798" a="3.6565900262711271" b="0.0016200613684826826" c="-0.00020151591363712891" d="8.4876351082779993e-06" /> - <width sOffset="402.00375452816627" a="3.6601598069754298" b="0.00051954590797071776" c="-0.00011086405428350625" d="9.242360262934284e-06" /> - <width sOffset="412.10103532317612" a="3.6636173784160255" b="0.0011076116604527082" c="0.00016363672736988819" d="1.0119215140352372e-05" /> - <width sOffset="413.90093153851683" a="3.6662000913666031" b="0.0017950173421434964" c="0.00037287727805147461" d="-1.8892908234278805e-05" /> - <width sOffset="422.19831611818597" a="3.6959728596107384" b="0.0040806927259217285" c="-0.00010010952833899675" d="-1.8764321714777958e-05" /> - <width sOffset="429.65641536132478" a="3.7130543939831018" b="-0.00054375822289933428" c="-0.002111305427696753" d="0.00031132255248657835" /> - <width sOffset="432.29559691319582" a="3.7026364147255668" b="-0.0051826493356804488" c="0.00034307742120385799" d="0.00031364197502166998" /> - <width sOffset="433.50476582422436" a="3.6974258179129595" b="-0.0029772543587410715" c="5.3277957428353753e-05" d="-1.4967293897608928e-07" /> - <width sOffset="442.39287770820556" a="3.6750674360114974" b="-0.0020656452933594679" c="4.7774252298657769e-05" d="-1.6849058669203124e-07" /> - <width sOffset="451.06210344243561" a="3.6606406089735257" b="-0.0012753027085793027" c="-9.1516104250554664e-05" d="9.6424281413144547e-06" /> - <width sOffset="451.40354069221996" a="3.6601948880444453" b="-0.001334424397138978" c="6.1572675749714485e-05" d="5.833431244451257e-06" /> - <width sOffset="452.49015850321541" a="3.6588250642993607" b="-0.001179949198359914" c="8.147676032571484e-05" d="5.3221797384546022e-06" /> - <width sOffset="462.58743929822526" a="3.6606967748952037" b="0.002093308030489207" c="0.00025068206118025944" d="4.1114727649712836e-06" /> - <width sOffset="465.19364592605609" a="3.6679278611725668" b="0.0034837457587126152" c="7.687556587312349e-05" d="-8.8708983242332088e-06" /> - <width sOffset="469.95442965777454" a="3.6852984101551636" b="0.0036125432708344193" c="-7.1155632436266923e-05" d="-3.8484880403455339e-06" /> - <width sOffset="472.68472009323511" a="3.6945529459029141" b="0.0031379266864354147" c="-0.00010294213965672818" d="-2.941401336248946e-06" /> - <width sOffset="482.78200088824497" a="3.7127139170566883" b="0.00015938288610558259" c="-0.00020169099170984535" d="-1.0980848389921834e-06" /> - <width sOffset="484.46199276365621" a="3.7124072252226239" b="-0.00052759318274808807" c="-6.4325238253760042e-05" d="2.2431536099503554e-06" /> - <width sOffset="492.8792816832547" a="3.704746581755967" b="-0.0011336940477190086" c="-6.8532588202897736e-06" d="2.0765488419927014e-06" /> - <width sOffset="502.97656247826455" a="3.6947383728692627" b="-0.00063694849853587298" c="5.7011005804540774e-05" d="2.3760577236850066e-06" /> - <width sOffset="504.93332084361998" a="3.6937281101860409" b="-0.00038654188770475574" c="-7.3915878483158667e-06" d="4.135442237065568e-06" /> - <width sOffset="505.64503892708888" a="3.693450748071426" b="-0.00039077900781359337" c="3.9051609559909014e-05" d="-8.2415411145364392e-07" /> - <width sOffset="513.07384327327441" a="3.6923649915853516" b="5.2986415643819802e-05" c="2.0020364842083528e-05" d="-8.594019923634214e-07" /> - <width sOffset="523.12465049698596" a="3.694047411774827" b="0.00019498098801623239" c="0.0039878956044998547" d="-0.0054644732934068302" /> - <width sOffset="523.62424990218926" a="3.6944587824742978" b="8.7891049950974512e-05" c="-0.00019673343204690312" d="4.2588138971547535e-07" /> - <width sOffset="524.01693715269369" a="3.6944629850178647" b="-6.6421354157748409e-05" c="-0.00078573863898691331" d="3.6882816006238603e-05" /> - <roadMark sOffset="0" color="standard" width="0.14027440931680168" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14027400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="4.0399732500934444" b="-0.0092895361734968065" c="0.0072310987602909483" d="-0.0058082873918424826" /> - <width sOffset="0.47908885601270867" a="4.036543763864044" b="-0.0063603197229409568" c="0.0034877028623103599" d="-0.00041999526327998331" /> - <width sOffset="4.8202928150619755" a="4.0403000220957761" b="0.00017558174444810143" c="-0.00041808041377949221" d="2.7246802682043032e-05" /> - <width sOffset="8.2098035227829769" a="4.0371529505623354" b="-0.0017194965368283934" c="-0.00014302059349962366" d="2.6677052631825803e-05" /> - <width sOffset="12.463997893248575" a="4.0293034169277515" b="-0.0014879538640647574" c="0.00024401462086652106" d="2.1617055453032448e-05" /> - <width sOffset="15.383341982524485" a="4.0275770384048846" b="0.00048947001732593375" c="0.00032229566059914646" d="-2.2789292744398751e-05" /> - <width sOffset="18.307084317792828" a="4.0311936213485255" b="0.0017896619213465552" c="0.00012771879583304622" d="-2.2409469448210535e-05" /> - <width sOffset="23.232941189556641" a="4.0404298078273388" b="0.0014166764057194298" c="-0.00014234901837430658" d="3.1219169212905035e-06" /> - <width sOffset="28.404365112802623" a="4.0443808825633933" b="0.00019485629753862024" c="-8.9244521634985167e-05" d="3.4422211221965731e-06" /> - <width sOffset="34.025614786950314" a="4.04326764692859" b="-0.00048216864442074446" c="3.6740113382110731e-05" d="6.756307461907123e-06" /> - <width sOffset="36.924491726706378" a="4.0423432326663216" b="-9.8828873379706254e-05" c="0.00025253368123007017" d="-3.4811200430959152e-05" /> - <width sOffset="38.501645907812474" a="4.0426789547974415" b="0.00043797049022642519" c="0.00010729958436887549" d="-2.8676017992973784e-05" /> - <width sOffset="45.129781840614214" a="4.0419456613605957" b="-0.0019190375120887409" c="-0.00021269423737685502" d="2.5002620840290949e-05" /> - <width sOffset="48.598926702822325" a="4.0337723597449333" b="-0.0024920546729252919" c="5.1956390668440118e-05" d="2.6097260628726481e-05" /> - <width sOffset="49.439210584888485" a="4.0317304952210993" b="-0.0023494584109536804" c="0.00018695846720981983" d="2.2856882783967938e-05" /> - <width sOffset="51.642996550857788" a="4.0277054265545562" b="-0.0011924003305372496" c="0.00033821329767174941" d="-5.5837680119060617e-06" /> - <width sOffset="58.69620749783212" a="4.0341612962304074" b="0.0027452388705785221" c="0.00020992044212946877" d="-2.2769872782472821e-06" /> - <width sOffset="60.6065098105571" a="4.0401557123129042" b="0.003522333961627302" c="0.0011544267376456952" d="-0.00023217267346292483" /> - <width sOffset="64.746652120301746" a="4.0580502544821719" b="0.0011424549209446192" c="-0.00029648602983445846" d="8.2731003676311477e-06" /> - <width sOffset="68.793488292841971" a="4.0583663614656018" b="-0.00085074306894303894" c="-0.000200219692065723" d="7.3815441900289084e-06" /> - <width sOffset="71.000661692236122" a="4.055592600893366" b="-0.0016267021144250678" c="-0.00013818172225870597" d="1.37843174273122e-05" /> - <width sOffset="76.457101252356495" a="4.0448418569696649" b="-0.0019034721525208881" c="-8.1117545595449627e-05" d="9.2902976625148207e-06" /> - <width sOffset="78.890769087851766" a="4.0398629101167653" b="-0.0021332264471596151" c="-1.8269242282951244e-05" d="9.4118647563541962e-06" /> - <width sOffset="83.554772225514284" a="4.0304710132491008" b="-0.0016894352817831864" c="8.1170060230574797e-05" d="2.5998884709812896e-06" /> - <width sOffset="88.988049882861617" a="4.0241050277251027" b="-0.00057714626197689824" c="0.00011812558518500393" d="2.1022869357418102e-06" /> - <width sOffset="89.562455410329108" a="4.023812884705773" b="-0.00043936138740630765" c="7.5230913269419599e-05" d="-1.2198435448599927e-06" /> - <width sOffset="99.085330677871468" a="4.0253977912825585" b="0.00066160272242347115" c="4.122579984034171e-05" d="-1.6910691008967421e-06" /> - <width sOffset="101.60226612014281" a="4.0272972030002041" b="0.00083698949020116894" c="0.00014565875250799616" d="-1.0536490929133184e-05" /> - <width sOffset="109.18261147288126" a="4.0374221879265297" b="0.0012289447765919915" c="-9.6866986258736616e-05" d="-9.0571460919986735e-06" /> - <width sOffset="111.12843629887806" a="4.0393800109285554" b="0.0007490949729133205" c="-0.00011657578212109345" d="4.0419732599564401e-06" /> - <width sOffset="119.27989226789111" a="4.0399294722134922" b="-0.00034570802892481623" c="-1.7903995507300382e-05" d="3.7821547034810843e-06" /> - <width sOffset="122.29991726650371" a="4.038826307793463" b="-0.00035036305243780911" c="2.6209819275375073e-05" d="3.8604702042829069e-06" /> - <width sOffset="124.86437548044046" a="4.0381652907553374" b="-0.00013977055908728905" c="-7.9402704288245314e-06" d="-2.6669523949856779e-07" /> - <width sOffset="129.37717306290091" a="4.0373483176541995" b="-0.00022773024478073799" c="-6.6722737343928271e-06" d="2.561494343291149e-07" /> - <width sOffset="139.47445385791076" a="4.0346322871472502" b="-0.00028412667986877662" c="6.6973704893003482e-07" d="9.9643984753393624e-11" /> - <width sOffset="141.49057416245938" a="4.0340621767031823" b="-0.00028142492386196486" c="1.4011252953074048e-05" d="3.1165596416770368e-07" /> - <width sOffset="149.57173465292061" a="4.0328674175379966" b="6.0876667316783284e-06" c="1.3518744510427377e-05" d="9.6722544587415611e-07" /> - <width sOffset="155.39143667996194" a="4.033551358372061" b="0.0002617144740404508" c="2.3210908683690972e-05" d="-5.5193327417546559e-07" /> - <width sOffset="159.66901544793041" a="4.0350523687424831" b="0.00042999015889265651" c="1.1917860103298276e-05" d="-1.3095763550255436e-06" /> - <width sOffset="169.76629624294026" a="4.0392610181429625" b="0.00027011223478933997" c="-2.194236005884555e-05" d="-2.8235786148741228e-06" /> - <width sOffset="172.6585826853613" a="4.0397903890012721" b="7.2324630459659651e-05" c="-5.6189718822514648e-05" d="4.4410330677349681e-06" /> - <width sOffset="177.89997364556393" a="4.0392652917917031" b="-0.00015068536934657574" c="3.503019658070354e-05" d="2.5880255604889701e-07" /> - <width sOffset="179.86357703795005" a="4.0391064321898575" b="-1.0120918894794963e-05" c="2.3091139029408343e-05" d="2.3203730820439151e-06" /> - <width sOffset="180.80624579395311" a="4.0391193545915289" b="3.9599492012826936e-05" c="-7.3674353938662178e-05" d="6.5312443503817412e-06" /> - <width sOffset="181.12165638124833" a="4.0391247202220812" b="-4.9265907043197004e-06" c="-0.00010915886115050828" d="1.0485216318887782e-05" /> - <width sOffset="188.68520781880017" a="4.037379625656806" b="0.00014330915901865967" c="0.00028372179802052549" d="-2.3921139741286542e-05" /> - <width sOffset="189.9608578329599" a="4.0379744770913035" b="0.0007503892011882494" c="0.00019256494061917873" d="-2.149629247627136e-05" /> - <width sOffset="198.02306751447122" a="4.0452759832631395" b="-0.00033633999233318758" c="-1.742771645530565e-05" d="4.216587668736796e-06" /> - <width sOffset="200.0581386279697" a="4.0445548688874471" b="-0.00035488410088461552" c="1.0468961815920876e-06" d="1.6583970359889256e-06" /> - <width sOffset="210.15541942297955" a="4.0427855093017335" b="0.00017350351324125644" c="5.2170041044023083e-05" d="1.8714101427554453e-06" /> - <width sOffset="213.4801728738118" a="4.0440078302310534" b="0.00058246818302159597" c="-2.1449869849838986e-05" d="-5.4800846479995558e-08" /> - <width sOffset="220.2527002179894" a="4.0469517448951482" b="0.00028438785075315839" c="-2.5345987411573287e-05" d="5.3207472412985455e-07" /> - <width sOffset="226.14230336247169" a="4.0478561897281837" b="4.12011430162129e-05" c="-0.0019197754396523973" d="0.00031052705031292039" /> - <width sOffset="230.09299155844496" a="4.0372029760182535" b="-0.00058760707282658696" c="8.7183081457892306e-05" d="-5.2576945883002536e-06" /> - <width sOffset="230.34998101299925" a="4.0370576358436683" b="-0.00054383851864727405" c="8.383379098083203e-05" d="-5.1947126923656822e-06" /> - <width sOffset="240.44726180800899" a="4.0347658304119856" b="-0.00043973389922123554" c="-7.313644272829379e-05" d="-5.2367679367836428e-06" /> - <width sOffset="241.17691811457848" a="4.0344040037638518" b="-0.00055482697202659465" c="-0.00034065589905758791" d="3.8710296929959882e-05" /> - <width sOffset="245.66071600322232" a="4.0285570856036728" b="-0.0012749444407130766" c="-1.0526008450084467e-05" d="1.420690051586737e-06" /> - <width sOffset="250.54454260301884" a="4.0222449073392008" b="-0.0012761009567746802" c="5.2905607573399817e-06" d="7.3815110029532634e-07" /> - <width sOffset="254.57320674921891" a="4.0172380562542722" b="-0.0011975322963140628" c="7.8637260020970127e-05" d="-7.5544115851361284e-09" /> - <width sOffset="259.16387727669655" a="4.0133970709249072" b="-0.00047601440324378512" c="0.00012718869379263302" d="-2.2815483273452707e-06" /> - <width sOffset="260.64182339802869" a="4.0129640031390954" b="-0.00011500925725965489" c="0.0001109434516846226" d="-5.2715288053664735e-06" /> - <width sOffset="270.73910419303854" a="4.0176870949716825" b="0.00051306769622069565" c="-4.4952276908937457e-05" d="-5.9483068308687685e-06" /> - <width sOffset="275.16615534542723" a="4.0185613583240496" b="-0.00023468306722638404" c="-0.000128839741872625" d="1.6468524229374739e-05" /> - <width sOffset="279.85609822675644" a="4.0163256643581837" b="-0.00035648168029557689" c="2.4053240129870295e-05" d="-9.2024802961766071e-07" /> - <width sOffset="280.83638498804839" a="4.0159984574486902" b="-0.00031197650509761721" c="2.0344452424205037e-05" d="-9.5008490705123841e-07" /> - <width sOffset="288.8410869978037" a="4.0143174527534313" b="-0.00016890474266073813" c="8.8431445523491398e-05" d="-3.0881387353361274e-06" /> - <width sOffset="290.93366578305813" a="4.0143229403671983" b="0.00016062696887666453" c="6.9479151190060935e-05" d="-3.3559464348134989e-06" /> - <width sOffset="301.03094657806798" a="4.0195737453142826" b="0.00053726061059983731" c="-3.1419845551716974e-05" d="-3.3256322429496898e-06" /> - <width sOffset="306.76122153719291" a="4.0209949430461229" b="-0.00015042998864898483" c="-1.2442175257354128e-05" d="1.5904517027678514e-06" /> - <width sOffset="309.10266837866595" a="4.0205949227033564" b="-0.00018253702265963182" c="0.00011784259471692984" d="-1.0028011715816451e-05" /> - <width sOffset="311.12822737307783" a="4.0206253390717244" b="0.00017142576855183194" c="6.2953367047278115e-05" d="-9.8646603296382954e-06" /> - <width sOffset="318.15114632802636" a="4.0215172736396525" b="-0.0004039577391969346" c="-4.1726673795566616e-05" d="1.9582373346799111e-08" /> - <width sOffset="321.22550816808769" a="4.0198815423719507" b="-0.00065996826625755835" c="-3.8143812190516506e-05" d="1.4668313702085858e-06" /> - <width sOffset="325.59755469955064" a="4.0163896036147193" b="-0.0009093867851627344" c="0.0001965352673100728" d="-8.8413395279918869e-06" /> - <width sOffset="331.32278896309754" a="4.0159660480163417" b="0.00047162167373594743" c="4.9475944812534954e-05" d="-8.409289120756262e-06" /> - <width sOffset="331.57973727110527" a="4.0160903542715314" b="0.00049538158917475155" c="-0.0005415895961868194" d="5.5743215875011461e-05" /> - <width sOffset="336.83810289722157" a="4.0118249163314204" b="-0.00057640247948144907" c="2.0797564722718327e-05" d="-9.7682723990740701e-06" /> - <width sOffset="341.42006975810727" a="4.0086808259133875" b="-0.0010010526242602226" c="-0.00011479439927344241" d="-1.0364126432352327e-05" /> - <width sOffset="341.98482741158125" a="4.0080769930785873" b="-0.0011406316073015188" c="1.348235157436921e-05" d="-1.0025443882510424e-06" /> - <width sOffset="351.51735055311713" a="3.9975606088591507" b="-0.0011568905608914238" c="-9.3313829372710171e-06" d="-1.5136416358754807e-06" /> - <width sOffset="356.95835954224924" a="3.9907458897089612" b="-0.0013928670071187198" c="-0.00063986061061005407" d="0.00033510101584313483" /> - <width sOffset="358.8820598194003" a="3.9880840952677712" b="-0.00013441974038020505" c="6.4075859553799975e-05" d="-4.0864759937947365e-06" /> - <width sOffset="361.61463134812698" a="3.9881118544476006" b="0.00012422349766517119" c="3.3259048497459169e-05" d="-3.0770100686507407e-06" /> - <width sOffset="371.62069112558049" a="3.9896021718527765" b="-0.00013441456686143547" c="-0.0051664681725564782" d="0.00026980552316272226" /> - <width sOffset="371.71191214313683" a="3.9895471236243596" b="-0.0010702601575155964" c="-0.0050936619492734283" d="0.00026995156172416864" /> - <width sOffset="373.4553355971135" a="3.973629414250138" b="-0.016369505738297416" c="-0.020001210200017258" d="0.007018149754396151" /> - <width sOffset="375.71142014881923" a="3.9154853238752239" b="0.00054706141750642846" c="0.00091642903703308847" d="-0.00025439224927958248" /> - <width sOffset="378.0671698249904" a="3.9185340753992604" b="0.00062952372226807705" c="-0.00025851738069521905" d="1.1337855272838786e-05" /> - <width sOffset="378.72515742341" a="3.9188395995637921" b="0.00030404735571854788" c="-0.00025618102721895253" d="1.1320504671644198e-05" /> - <width sOffset="381.80919293814668" a="3.9176727498024553" b="-0.00095307811544905331" c="-0.00014330408900029392" d="1.2334624874832168e-05" /> - <width sOffset="391.90647373315642" a="3.9061367874170498" b="-7.4308389447631188e-05" c="0.00025051049941057069" d="2.9108406100938952e-06" /> - <width sOffset="393.364046788868" a="3.906569705710937" b="0.00067451872917950316" c="0.00058769525170627025" d="-6.1775298493265001e-05" /> - <width sOffset="395.20948179024879" a="3.9094277092796781" b="0.0022124740112326648" c="0.00023165678861108345" d="-6.1933763298766266e-05" /> - <width sOffset="399.68761262420333" a="3.9184191916692512" b="0.00056125771872035234" c="-0.0043944793850984017" d="0.00078444176438699151" /> - <width sOffset="402.00375452816627" a="3.9058915695979004" b="-0.0071707731013445292" c="0.0010538401004987386" d="0.00079108364570847566" /> - <width sOffset="403.20322015782961" a="3.9001718193844548" b="-0.0012282447825496126" c="4.2428958784111838e-05" d="4.8717485259809718e-07" /> - <width sOffset="412.10103532317612" a="3.8929454625929423" b="-0.00035748418828459916" c="5.1118183365963554e-05" d="2.9479052604912654e-07" /> - <width sOffset="419.25936609360713" a="3.8931139857637156" b="0.00041967424413134723" c="5.9718544466922502e-05" d="-6.1009738820234514e-06" /> - <width sOffset="422.19831611818597" a="3.8947083289561633" b="0.00061260372546322018" c="-4.8904346946050234e-06" d="-5.0191241537829996e-06" /> - <width sOffset="424.95377676148939" a="3.8962541983322003" b="0.00047132887040693324" c="-8.3595213661383902e-05" d="2.4609867055056954e-06" /> - <width sOffset="432.29559691319582" a="3.8961825476504268" b="-0.00035819447615372695" c="-3.5354423681860084e-05" d="2.6483947235708425e-06" /> - <width sOffset="436.8623138727354" a="3.8940616907464243" b="-0.0005154057171371354" c="-7.1572823717201353e-05" d="2.8626320434016818e-05" /> - <width sOffset="438.37884623673347" a="3.8932152967557063" b="-0.00053498024220188876" c="9.2838186423505696e-05" d="-4.6662493773031033e-06" /> - <width sOffset="442.39287770820556" a="3.8922619259727504" b="-1.52235485812583e-05" c="3.3977383209817194e-05" d="-5.0455254472802069e-06" /> - <width sOffset="451.06210344243561" a="3.8913961754401623" b="-0.00056370492105995589" c="3.7663293828499721e-05" d="-1.4856444199141233e-05" /> - <width sOffset="452.49015850321541" a="3.8906247157861409" b="-0.00054702648508961013" c="-2.3319721807251568e-05" d="-1.6386889067596005e-05" /> - <width sOffset="453.98462365583612" a="3.8897004251023914" b="-0.00072652422516017489" c="-0.00082698794458020307" d="0.00014026758306745084" /> - <width sOffset="459.13406734366151" a="3.8831832438746234" b="0.0019147499123088781" c="0.0053737782947919878" d="-0.00083714187747508718" /> - <width sOffset="462.58743929822526" a="3.9194050997530958" b="0.0090793562232720643" c="-0.0033045163399398926" d="-0.00083597665339953629" /> - <width sOffset="463.5202085836105" a="3.9243204732494918" b="0.00073260765438841826" c="-0.00041605878224517653" d="-3.0313585242158759e-06" /> - <width sOffset="465.19364592605609" a="3.924367112546868" b="-0.00068535593271816357" c="-0.00022532460988591507" d="9.9510125649177309e-06" /> - <width sOffset="469.95442965777454" a="3.9170710336358026" b="-0.0021541784644357404" c="-6.1866840660008531e-05" d="4.9286022809707552e-06" /> - <width sOffset="472.68472009323511" a="3.9108286266948484" b="-0.0023817867630205616" c="-2.337183378670666e-05" d="5.0113111982106198e-06" /> - <width sOffset="482.78200088824497" a="3.8895551696413415" b="-0.0013209848057617348" c="0.00011470950923700856" d="7.7299002740559722e-06" /> - <width sOffset="484.93768023173254" a="3.8873180327811068" b="-0.00071866950681412117" c="0.00017040039657566236" d="-2.3825464531977368e-05" /> - <width sOffset="490.8297532475766" a="3.8841257356108221" b="-0.001192058313725778" c="-0.00031822060913971846" d="2.0179982115808002e-05" /> - <width sOffset="492.8792816832547" a="3.8805196043923127" b="-0.0022421605990020719" c="-0.00019214501893600802" d="1.9566799939639304e-05" /> - <width sOffset="500.5574841282413" a="3.8608332130051624" b="-0.0017321473995838301" c="0.00029409922723282742" d="-2.2233782453911239e-05" /> - <width sOffset="502.97656247826455" a="3.8580493156540836" b="-0.00069958153978748197" c="0.00013780220270321193" d="-2.0679439050720374e-05" /> - <width sOffset="504.93332084361998" a="3.8570530996418677" b="-0.00039782903127410878" c="9.4758912778435413e-05" d="-2.2438823564391567e-05" /> - <width sOffset="512.03038541548028" a="3.8509813843364009" b="-0.0024434266956652436" c="-0.00064121852717789957" d="7.2689832090683473e-05" /> - <width sOffset="513.07384327327441" a="3.8478161945346527" b="-0.0035441607116993988" c="-0.00041783372367504876" d="7.0141199202479929e-05" /> - <width sOffset="518.63480044977621" a="3.8272481461103567" b="-0.0016840807731682067" c="0.00070976100832553356" d="-0.00012202550688522674" /> - <width sOffset="522.49319893438349" a="3.8243074181520584" b="-0.0016568677814978951" c="-0.00051042009871857187" d="2.2170282313255397e-05" /> - <width sOffset="523.12465049698596" a="3.8230632480667888" b="-0.0022749589777777183" c="-0.0044622100114064872" d="0.0054857841737278121" /> - <width sOffset="523.62424990218926" a="3.8214969903932352" b="-0.0026258458714351843" c="-0.00024564026545572466" d="2.0884998923124155e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="373.4553355971135" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="373.4553355971135" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="159.81306926618061" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link> - <predecessor id="-5" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="2.4930379528872555" b="0.00053160628447185049" c="-0.0036069258266492881" d="0.0054361670541618543" /> - <width sOffset="0.47908885601270867" a="2.4930625352780806" b="0.0008187575382677119" c="-0.00039836604930393402" d="4.7874925599356705e-05" /> - <width sOffset="4.4828232650786504" a="2.4930274442794333" b="-6.8856918658131289e-05" c="0.0009802678346180916" d="0.00045249896452875023" /> - <width sOffset="4.8202928150619755" a="2.4931332365241641" b="0.00074736365149179716" c="-0.0001256903227358486" d="5.2568985139285146e-06" /> - <width sOffset="8.2098035227829769" a="2.4944271155385485" b="7.6492358231762883e-05" c="-7.3179148973145653e-05" d="5.0641367362626706e-06" /> - <width sOffset="15.383341982524485" a="2.4930794776958116" b="-0.00019161834771107451" c="0.00014684601940989761" d="4.9470484934965148e-05" /> - <width sOffset="15.883981836865132" a="2.4930265590206009" b="-7.3865219934006118e-06" c="-0.00020189998914832766" d="1.7423907160321033e-05" /> - <width sOffset="18.307084317792828" a="2.4920711110266947" b="-0.00067892572581206793" c="-7.3016427617609772e-05" d="1.853930502751734e-05" /> - <width sOffset="23.232941189556641" a="2.4891709867936571" b="-4.8745911321037075e-05" c="0.00013985975857019" d="-6.9920813419984463e-06" /> - <width sOffset="28.404365112802623" a="2.4916922348146642" b="0.00083682147901555613" c="3.0919220921107546e-05" d="-7.2939925477343955e-06" /> - <width sOffset="36.924491726706378" a="2.4965552468848227" b="-0.00022477588753076413" c="-0.00031255445531345213" d="3.4273515345115474e-05" /> - <width sOffset="38.501645907812474" a="2.4955577442008439" b="-0.00095491161907591045" c="-0.0001643961037064264" d="2.7907343453582735e-05" /> - <width sOffset="45.129781840614214" a="2.4901324774758304" b="0.00054390074193685347" c="0.00014031308003389562" d="-2.5771295379721772e-05" /> - <width sOffset="48.598926702822325" a="2.4926320326953961" b="0.00058696354652593217" c="-0.00012898467752160751" d="-2.6214903564217676e-05" /> - <width sOffset="50.13050805251919" a="2.493134268292013" b="7.382337370523016e-06" c="0.00025456931324952577" d="-3.8818298582238747e-05" /> - <width sOffset="51.642996550857788" a="2.4935934808583466" b="0.00051104393565660328" c="7.8292824910571751e-05" d="-1.037764778641099e-05" /> - <width sOffset="58.69620749783212" a="2.4974515502734347" b="6.66805929687821e-05" c="-0.0001345518496342335" d="-1.3614782124932096e-05" /> - <width sOffset="60.6065098105571" a="2.4969930052657663" b="-0.00059644025831138894" c="-0.0011701323966830069" d="0.00021628090405974586" /> - <width sOffset="64.746652120301746" a="2.489815108617349" b="0.00083619956485943628" c="8.339781014881243e-05" d="-2.4164869770826333e-05" /> - <width sOffset="68.793488292841971" a="2.4929633512706815" b="0.0003239583791260017" c="-0.00020470689410502925" d="-2.3375276749246718e-05" /> - <width sOffset="69.497299654539859" a="2.4930818058110313" b="1.071442988012216e-06" c="0.00010748616721049307" d="-1.0328283915402037e-05" /> - <width sOffset="76.457101252356495" a="2.4948138482541298" b="-3.6339833169481139e-06" c="6.0413454616000158e-05" d="-5.8342641508784079e-06" /> - <width sOffset="78.890769087851766" a="2.4950787225124715" b="0.0001867541055403832" c="1.9878620270342784e-05" d="-5.8033363135940224e-06" /> - <width sOffset="83.554772225514284" a="2.4957933807719037" b="-6.5366232404812704e-06" c="-2.9070118305358549e-05" d="1.0086399718045932e-06" /> - <width sOffset="88.988049882861617" a="2.4950614797762434" b="-0.00023310198448096234" c="-1.1650590904991535e-05" d="1.3828511018688319e-06" /> - <width sOffset="99.085330677871468" a="2.4929435490955312" b="-4.5414478183645589e-05" c="2.9920190865870677e-05" d="1.6050750663507962e-06" /> - <width sOffset="101.60226612014281" a="2.493044379551562" b="0.00013570417786210997" c="-7.5162086102164281e-05" d="1.0450496894624578e-05" /> - <width sOffset="105.10267812634368" a="2.4930466710531549" b="-6.3461740846108318e-06" c="-8.4027488333832708e-05" d="1.0497070036925684e-05" /> - <width sOffset="109.18261147288126" a="2.4923349674462001" b="-0.00016780112514076751" c="4.7464544772384665e-05" d="9.4759658087954504e-06" /> - <width sOffset="111.12843629887806" a="2.4922579804798142" b="0.00012454893299319652" c="6.9618190042365576e-05" d="-3.6231535431529695e-06" /> - <width sOffset="119.27989226789111" a="2.495936680667409" b="0.00053729342559011989" c="-1.9090491366426539e-05" d="-3.4668796819834291e-06" /> - <width sOffset="124.86437548044046" a="2.4977380295413036" b="-2.8666970728502029e-07" c="-1.3322552239409345e-05" d="6.6028576168089037e-07" /> - <width sOffset="129.37717306290091" a="2.4975261008685488" b="-8.0189796681265487e-05" c="-5.8797631094631584e-06" d="9.7379210587434589e-08" /> - <width sOffset="139.47445385791076" a="2.4962171791445176" b="-0.00016914411947196821" c="-3.6334281355522815e-06" d="2.3587332684667005e-07" /> - <width sOffset="149.57173465292061" a="2.494381661314554" b="-0.00017037415639939294" c="5.2915949354952494e-06" d="-4.3670254650916359e-07" /> - <width sOffset="155.39143667996194" a="2.4934832779902649" b="-0.00015315509099716876" c="4.8618863405941368e-06" d="1.0824561735749299e-06" /> - <width sOffset="159.66901544793041" a="2.4930018298593692" b="-5.2141577020251581e-05" c="2.3890557649841916e-05" d="1.9051616027167104e-06" /> - <width sOffset="160.6419534824002" a="2.4929754689762333" b="-2.4318658149551087e-07" c="-6.0072645616198242e-05" d="2.8234981699908496e-06" /> - <width sOffset="169.76629624294026" a="2.4901168112809868" b="-0.0003912905821239483" c="1.5567890052962995e-05" d="4.1038791306963256e-06" /> - <width sOffset="172.6585826853613" a="2.4892146101928532" b="-0.00019824619029005391" c="6.0924236289074341e-05" d="-3.1607325519142273e-06" /> - <width sOffset="179.86357703795005" a="2.489766749214291" b="0.00018743205640012423" c="1.592883812598249e-06" d="-3.0494079393322479e-06" /> - <width sOffset="180.80624579395311" a="2.4899422966098328" b="0.00018230584524471212" c="9.6296661633683091e-05" d="-7.2602792159121997e-06" /> - <width sOffset="188.68520781880017" a="2.493805506614672" b="0.00034762955838845951" c="-0.00023027797134977885" d="2.7146076845843867e-05" /> - <width sOffset="189.9608578329599" a="2.4939305838551951" b="-0.00010735559170644508" c="-0.00013201257387306597" d="2.6438614119795483e-05" /> - <width sOffset="193.68562193512145" a="2.4930654498238694" b="9.6305127024907608e-06" c="-6.1329381781561994e-05" d="2.4642863592942267e-05" /> - <width sOffset="198.02306751447122" a="2.4939643183996125" b="0.00086845547561763704" c="-5.0598337402847529e-05" d="-1.070016551672178e-06" /> - <width sOffset="200.0581386279697" a="2.495513114911315" b="0.00064921857894833677" c="-5.621462215466607e-05" d="8.171720319735142e-07" /> - <width sOffset="210.15541942297955" a="2.4971783442603597" b="-0.00023606655207422222" c="-3.0174747180935239e-05" d="7.2478449147081299e-07" /> - <width sOffset="220.2527002179894" a="2.4924643884647244" b="-0.00062374596123929507" c="-5.7275636417195618e-06" d="4.9313817041611686e-07" /> - <width sOffset="226.14230336247169" a="2.4886928436002895" b="-0.00063989503471039322" c="0.0019068161798612964" d="-0.00030950183741837282" /> - <width sOffset="230.09299155844496" a="2.4968417538792469" b="-6.5478432746857228e-05" c="-8.7991451867462452e-05" d="6.2829076511821124e-06" /> - <width sOffset="230.34998101299925" a="2.4968192219787371" b="-0.00010945934604528684" c="-8.6594892311229129e-05" d="5.9780649425030822e-06" /> - <width sOffset="240.59369346458664" a="2.4930371165301484" b="-1.6652696299806471e-06" c="-9.6036907551871762e-06" d="7.764405024515612e-06" /> - <width sOffset="241.17691811457848" a="2.4930344189360802" b="-4.9442777544997374e-06" c="0.00026003782053686113" d="-3.6182659838968925e-05" /> - <width sOffset="245.66071600322232" a="2.4949785063216856" b="0.00014467306171652978" c="-3.6091828515323436e-05" d="1.1069470394187276e-06" /> - <width sOffset="250.54454260301884" a="2.4949531566594985" b="-0.00012865148971458922" c="-1.8188259796048348e-05" d="1.553208875635904e-06" /> - <width sOffset="259.16387727669655" a="2.4934876133447785" b="-9.6015570512912596e-05" c="-2.6680851661491109e-05" d="3.8272027919551991e-06" /> - <width sOffset="260.64182339802869" a="2.4932997832738453" b="-0.00014980173176576894" c="-7.8927620482909707e-06" d="7.2107725795064963e-06" /> - <width sOffset="263.66411093128556" a="2.4929740074822702" b="8.4266715691437913e-08" c="-6.8859720583048931e-05" d="5.1043346871757014e-06" /> - <width sOffset="270.73910419303854" a="2.4913354559087901" b="-0.00020777932265661893" c="3.8340342872775625e-05" d="5.5534011370249174e-06" /> - <width sOffset="275.16615534542723" a="2.491648870031768" b="0.00045820968870075333" c="0.00011698300471552623" d="-1.6863429923220499e-05" /> - <width sOffset="279.85609822675644" a="2.494631357803283" b="0.00044273494105700616" c="-4.1466232738703133e-05" d="5.253423409185611e-07" /> - <width sOffset="280.83638498804839" a="2.4950260124074255" b="0.00036295184536188404" c="-3.5263062387835306e-05" d="7.0941862751596848e-07" /> - <width sOffset="290.93366578305813" a="2.4958259153092675" b="-0.00013218374227941211" c="-1.3148994884174735e-05" d="7.0561236226992295e-07" /> - <width sOffset="301.03094657806798" a="2.4938770182281331" b="-0.00018189963593974315" c="8.6850390483250345e-06" d="7.2902342205707083e-07" /> - <width sOffset="309.10266837866595" a="2.4933580179956865" b="0.0001008003193529449" c="-9.2774433832540506e-05" d="1.2347486840636564e-05" /> - <width sOffset="311.12822737307783" a="2.4932841673328161" b="-0.00012305874575932582" c="-1.1239513739894991e-05" d="8.6599938366482616e-06" /> - <width sOffset="313.60280602782484" a="2.4930420496277206" b="-1.9595423873606317e-05" c="-9.3120911557577024e-05" d="1.2014945482728838e-05" /> - <width sOffset="318.15114632802636" a="2.4921570197374479" b="-0.00012101268250506544" c="-3.2332818522772478e-05" d="2.1307027797063673e-06" /> - <width sOffset="321.22550816808769" a="2.4915412966905981" b="-0.0002594019543872522" c="-1.6568853988109471e-05" d="1.3321351300576775e-06" /> - <width sOffset="331.32278896309754" a="2.488604155401319" b="-0.00018654886764327052" c="9.9932026467622762e-06" d="9.4910367040194119e-07" /> - <width sOffset="331.57973727110527" a="2.4885568978619013" b="-0.00018122540820989311" c="0.00059530809762913298" d="-6.3203401234970471e-05" /> - <width sOffset="336.83810289722157" a="2.4948749415878853" b="0.00083667017283543723" c="-8.4764210064325123e-05" d="2.3080870391199548e-06" /> - <width sOffset="341.42006975810727" a="2.4971509892760411" b="0.00020526741809251403" c="-5.2953091483125768e-05" d="2.4576697057631139e-06" /> - <width sOffset="351.51735055311713" a="2.4963548903209629" b="-0.00011238131888244057" c="2.0444001286720983e-05" d="2.9337165112422296e-06" /> - <width sOffset="356.95835954224924" a="2.4968212180771641" b="0.00037064499574266676" c="0.00067415314944547816" d="-0.00033368094096773639" /> - <width sOffset="358.8820598194003" a="2.4976535768567878" b="-0.00074009965387331577" c="-2.158792542520425e-05" d="5.5065508693380605e-06" /> - <width sOffset="361.61463134812698" a="2.4955823611991725" b="-0.00073472938151151351" c="2.0996085350526174e-05" d="4.9788698155357883e-06" /> - <width sOffset="367.38212151009986" a="2.4929984227998361" b="4.3105716723431623e-06" c="0.0049949011786502876" d="-0.0029992495056488308" /> - <width sOffset="369.88214021203441" a="2.4773634734952426" b="-0.031257766317026522" c="0.0026690890447801296" d="-0.00069403453476297387" /> - <width sOffset="371.62069112558049" a="2.4274406716944705" b="-0.028270353491716735" c="0.0041566069026816605" d="-0.0009669170686480951" /> - <width sOffset="371.71191214313683" a="2.4248956755847537" b="-0.027536151614971981" c="0.0038977653224028606" d="-0.00097208845135711268" /> - <width sOffset="373.4553355971135" a="2.3835845880406046" b="-0.022809303094132045" c="0.016835000091394034" d="-0.0057020979170152239" /> - <width sOffset="375.71142014881923" a="2.3523348221378191" b="-0.033916559825444829" c="0.0041845584112016046" d="-0.00069258739799931009" /> - <width sOffset="378.0671698249904" a="2.2866038922455951" b="-0.025731674346806541" c="-0.0013330361633195767" d="-0.00095831750255309352" /> - <width sOffset="379.06716774468839" a="2.2585809292895567" b="-0.031272681673345584" c="0.0038338598304114959" d="-0.0007293394314732487" /> - <width sOffset="381.80919293814668" a="2.1866196934131326" b="-0.026698659066782114" c="-0.0021778745826342033" d="-0.00073107560904604209" /> - <width sOffset="382.56715623232014" a="2.1648135312524017" b="-0.031260184189970015" c="0.0029326948039970482" d="-0.00048892019534096086" /> - <width sOffset="386.56714636987783" a="2.055405327221334" b="-0.031266737254834621" c="0.041716856223323329" d="-0.037083052923187185" /> - <width sOffset="387.31714398045972" a="2.0397766676685842" b="-0.031268905355256123" c="0.0023311233793517944" d="-0.0002824293275251414" /> - <width sOffset="391.90647373315642" a="1.9180716667152664" b="-0.027717852664433055" c="-0.0015813521096345667" d="-0.00027236957159636969" /> - <width sOffset="392.81712666764372" a="1.8913132333732339" b="-0.031275597621287843" c="0.002760163493237309" d="-0.00041324723856159945" /> - <width sOffset="393.364046788868" a="1.874965998860425" b="-0.028627253265791099" c="0.0017576673400324125" d="-0.00034856109945680363" /> - <width sOffset="397.36401925299526" a="1.7662726146567129" b="-0.03129671376764033" c="0.0076783452643969536" d="-0.0029224840933368026" /> - <width sOffset="399.11400730067987" a="1.7193559835294367" b="-0.031272644729303085" c="0.0011080969276155495" d="2.2470978059381857e-05" /> - <width sOffset="399.68761262420333" a="1.7017866584157222" b="-0.029979243725604027" c="0.0049408590339838892" d="-0.000823904549619995" /> - <width sOffset="402.00375452816627" a="1.6486187871860034" b="-0.020351323216024959" c="-0.00077985239836771201" d="-0.00082821574086363833" /> - <width sOffset="403.20322015782961" a="1.6216568412137251" b="-0.025796841689897002" c="9.7942727658908014e-05" d="-3.7619270007760277e-05" /> - <width sOffset="409.70313321493597" a="1.447786805158648" b="-0.029291718177116042" c="0.035062440875720434" d="-0.046753490394924387" /> - <width sOffset="410.20312774694855" a="1.4360625301699894" b="-0.029294011601267916" c="0.00027781999570263807" d="-6.4435134786527153e-06" /> - <width sOffset="412.10103532317612" a="1.3814218758059091" b="-0.028309087886338999" c="0.00022630825760309024" d="-1.2923350643602182e-05" /> - <width sOffset="419.25936609360713" a="1.1856321305503288" b="-0.027055752505826529" c="-5.3490334925614008e-05" d="-6.5275862354113761e-06" /> - <width sOffset="421.25933155837663" a="1.1312553879800173" b="-0.027348038480592956" c="0.0026365284711753726" d="-0.00034642899684631949" /> - <width sOffset="422.19831611818597" a="1.1076138012799053" b="-0.023313050457695449" c="0.0016724328313112099" d="-0.00034754284251012661" /> - <width sOffset="424.95377676148939" a="1.0488027133863023" b="-0.022012627920080321" c="-0.0011632742601261478" d="-0.00035502295337768098" /> - <width sOffset="425.4537654479501" a="1.037461468205743" b="-0.02344213102417558" c="-0.00037205591391257728" d="0.00018432681144726887" /> - <width sOffset="429.45367982464848" a="0.9495384699102889" b="-0.017571206452724607" c="0.00026656808763329766" d="-7.2698916027168155e-05" /> - <width sOffset="432.29559691319582" a="0.90008685518768594" b="-0.017817534447814937" c="-0.00036117926188859782" d="-7.4247471417880449e-05" /> - <width sOffset="435.95353860258717" a="0.82644452126772805" b="-0.023440293011778326" c="0.0012372171118734095" d="-6.9830072429454646e-05" /> - <width sOffset="436.8623138727354" a="0.80611193649386248" b="-0.021364600589360089" c="0.0011193393903926388" d="-9.5807998141084867e-05" /> - <width sOffset="438.37884623673347" a="0.77595200199004477" b="-0.018630609705908723" c="0.00064927881472034272" d="-6.2515428329758632e-05" /> - <width sOffset="442.39287770820556" a="0.70758637977264716" b="-0.016439988400943982" c="-0.0001079655850454876" d="-6.0402131548873644e-05" /> - <width sOffset="444.3786727766477" a="0.67404118842109284" b="-0.017583349498327572" c="0.00050457805905991309" d="-1.6769811146279527e-05" /> - <width sOffset="452.49015850321541" a="0.55566328808077614" b="-0.01270776362957857" c="9.578382751637308e-05" d="-1.5448310401702075e-05" /> - <width sOffset="453.98462365583612" a="0.53683434124588914" b="-0.012524980423366035" c="0.00075672226158886486" d="-0.00017210278253676969" /> - <width sOffset="459.13406734366151" a="0.46890343779315558" b="-0.018422412931121061" c="0.00098639963993711003" d="-0.00046361685756254455" /> - <width sOffset="461.8838862335341" a="0.41606392648112944" b="-0.023514494272781961" c="0.0079273488315965875" d="-0.0032527676041946485" /> - <width sOffset="463.13380403708186" a="0.39270578651978472" b="-0.01894276835959963" c="0.0051364371788609458" d="0.00077802204438191184" /> - <width sOffset="463.5202085836105" a="0.38619801509043583" b="-0.014624787150281236" c="0.00081055335016141396" d="-5.4923250476675855e-05" /> - <width sOffset="471.0198907059397" a="0.29893872129834698" b="-0.011734515096698959" c="0.00044881251943804047" d="-1.3684849631560389e-05" /> - <width sOffset="472.68472009323511" a="0.28058356353886715" b="-0.010353911676463559" c="0.00038443498483011038" d="-1.0486031971056967e-05" /> - <width sOffset="482.78200088824497" a="0.20443726390152683" b="-0.0057977283662304074" c="7.4817968220427416e-05" d="-1.341539847948107e-05" /> - <width sOffset="484.93768023173254" a="0.19215250960924823" b="-0.0056621834650153668" c="-1.7641252234837769e-05" d="1.8139966326553891e-05" /> - <width sOffset="490.8297532475766" a="0.16188864001549064" b="-0.0039808008054499303" c="0.00037048164180742809" d="-2.5865480321242297e-05" /> - <width sOffset="491.82969798218767" a="0.15825263871170225" b="-0.0033174663358651233" c="0.00044994557960411025" d="-2.2553119799389104e-05" /> - <width sOffset="492.8792816832547" a="0.15524027482728542" b="-0.0024474905481945918" c="0.00037783762518576964" d="-2.2789132181415036e-05" /> - <width sOffset="500.5574841282413" a="0.14840740149892984" b="-0.00067584868977364852" c="-0.00018263177887513428" d="1.9011450212164917e-05" /> - <width sOffset="502.97656247826455" a="0.14597285216333944" b="-0.0012256882528921217" c="-4.8445258747950801e-05" d="1.7568169917175096e-05" /> - <width sOffset="508.80703138491128" a="0.14066171478186806" b="1.051079931915647e-06" c="0.000124134616774636" d="2.5401786071824745e-05" /> - <width sOffset="512.03038541548028" a="0.14280558604705451" b="0.0015930852404057029" c="0.00062799956602944496" d="-6.9726869585805601e-05" /> - <width sOffset="513.07384327327441" a="0.14507245379887213" b="0.0026759106576354943" c="0.0004125630565093738" d="-6.7364576267667036e-05" /> - <width sOffset="518.63480044977621" a="0.16112670085792136" b="0.0010148057116891604" c="-0.00066870963178377847" d="0.0001248021298200268" /> - <width sOffset="522.49319893438349" a="0.16225573230158385" b="0.0014283866047120615" c="0.00058361142843119682" d="-1.9393659376819573e-05" /> - <width sOffset="523.49313300739016" a="0.16424816939260456" b="0.0025373592030909476" c="0.002920979047681729" d="-0.0013854286320028415" /> - <width sOffset="525.24301589287268" a="0.17020901093076635" b="3.3179743305022068e-05" c="0.0010585713616441386" d="-0.00010120637756026992" /> - <width sOffset="532.24255105361078" a="0.18759748935070863" b="-2.3167014393393314e-05" c="0.01880977771043953" d="-0.012896734286452233" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423306" type="poles" s="1.3971272871971663" t="7.8259871454600649" zOffset="-3.6151037024274273" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.28489629757257262" name="SgPoleSign01.flt" /> - <object id="277423342" type="poles" s="9.8514072426048926" t="7.8579908285171811" zOffset="-3.5786183333988162" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.32138166660118372" name="SgPoleSign01.flt" /> - <object id="277423354" type="poles" s="26.683014923268047" t="7.90001926609989" zOffset="-3.6059072274057029" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.294092772594297" name="SgPoleSign01.flt" /> - <object id="5180892" s="0" t="10.628339832145727" orientation="none" validLength="5.3684672596448424" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="5.3684672596448424" s="0" distance="0" tStart="10.628339832145727" tEnd="10.672698858314739" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616348" s="5.3684672596448424" t="10.672698858314739" orientation="none" validLength="1.4912596416090027" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="1.4912596416090027" s="5.3684672596448424" distance="0" tStart="10.672698858314739" tEnd="10.609434535686148" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542051804" s="6.8597269012538451" t="10.609434535686148" orientation="none" validLength="2.9825205940608992" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="2.9825205940608992" s="6.8597269012538451" distance="0" tStart="10.609434535686148" tEnd="10.317567378745345" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487260" s="9.8422474953147443" t="10.317567378745345" orientation="none" validLength="5.9650387042679327" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="5.9650387042679327" s="9.8422474953147443" distance="0" tStart="10.317567378745345" tEnd="9.5579138497452032" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078922716" s="15.807286199582677" t="9.5579138497452032" orientation="none" validLength="13.360088382634665" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="13.360088382634665" s="15.807286199582677" distance="0" tStart="9.5579138497452032" tEnd="8.410862475782821" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741937" s="29.167374582217342" t="8.410862475782821" orientation="none" validLength="5.9803897968702771" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="5.9803897968702771" s="29.167374582217342" distance="0" tStart="8.410862475782821" tEnd="8.0719888029022862" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741938" s="35.147764379087619" t="8.0719888029022862" orientation="none" validLength="11.609027567148637" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="11.609027567148637" s="35.147764379087619" distance="0" tStart="8.0719888029022862" tEnd="7.8047107582952204" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741939" s="46.756791946236255" t="7.8047107582952204" orientation="none" validLength="11.350715020135908" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="11.350715020135908" s="46.756791946236255" distance="0" tStart="7.8047107582952204" tEnd="7.8597662507893808" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5181065" s="0" t="-12.060913126297237" orientation="none" validLength="20.245568435581642" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="20.245568435581642" s="0" distance="0" tStart="-12.060913126297237" tEnd="-11.94137912074253" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273616521" s="20.245568435581642" t="-11.94137912074253" orientation="none" validLength="52.508738059525172" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="52.508738059525172" s="20.245568435581642" distance="0" tStart="-11.94137912074253" tEnd="-11.898616040815988" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542051977" s="72.754306495106817" t="-11.898616040815988" orientation="none" validLength="24.493981594250016" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="24.493981594250016" s="72.754306495106817" distance="0" tStart="-11.898616040815988" tEnd="-11.798587201088244" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810487433" s="97.248288089356834" t="-11.798587201088244" orientation="none" validLength="45.164472886107148" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="45.164472886107148" s="97.248288089356834" distance="0" tStart="-11.798587201088244" tEnd="-12.060090869267883" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078922889" s="142.41276097546398" t="-12.060090869267883" orientation="none" validLength="43.209255191747673" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="43.209255191747673" s="142.41276097546398" distance="0" tStart="-12.060090869267883" tEnd="-11.952494614658479" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741940" s="185.62201616721165" t="-11.952494614658479" orientation="none" validLength="50.108052128501441" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="50.108052128501441" s="185.62201616721165" distance="0" tStart="-11.952494614658479" tEnd="-12.257449727753048" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741941" s="235.7300682957131" t="-12.257449727753048" orientation="none" validLength="3.9908003546717907" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.9908003546717907" s="235.7300682957131" distance="0" tStart="-12.257449727753048" tEnd="-12.133620972161577" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741942" s="239.72086865038489" t="-12.133620972161577" orientation="none" validLength="3.9908001537200164" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.9908001537200164" s="239.72086865038489" distance="0" tStart="-12.133620972161577" tEnd="-11.865408508477891" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741943" s="243.7116688041049" t="-11.865408508477891" orientation="none" validLength="11.593316033117759" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.593316033117759" s="243.7116688041049" distance="0" tStart="-11.865408508477891" tEnd="-10.813517513890966" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741944" s="255.30498483722266" t="-10.813517513890966" orientation="none" validLength="7.4415043614413889" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.4415043614413889" s="255.30498483722266" distance="0" tStart="-10.813517513890966" tEnd="-9.8079187122414293" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741945" s="262.74648919866405" t="-9.8079187122414293" orientation="none" validLength="5.1679408346163314" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.1679408346163314" s="262.74648919866405" distance="0" tStart="-9.8079187122414293" tEnd="-9.2810621179664565" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741946" s="267.91443003328038" t="-9.2810621179664565" orientation="none" validLength="7.9957712496724866" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.9957712496724866" s="267.91443003328038" distance="0" tStart="-9.2810621179664565" tEnd="-8.7698922999930105" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741947" s="275.91020128295287" t="-8.7698922999930105" orientation="none" validLength="4.4976208221618208" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.4976208221618208" s="275.91020128295287" distance="0" tStart="-8.7698922999930105" tEnd="-8.6742170109653802" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741948" s="280.40782210511469" t="-8.6742170109653802" orientation="none" validLength="38.700054089416938" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="38.700054089416938" s="280.40782210511469" distance="0" tStart="-8.6742170109653802" tEnd="-8.9174622795866298" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741949" s="319.10787619453163" t="-8.9174622795866298" orientation="none" validLength="88.08637732771183" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="88.08637732771183" s="319.10787619453163" distance="0" tStart="-8.9174622795866298" tEnd="-9.2572898202279816" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741950" s="407.19425352224346" t="-9.2572898202279816" orientation="none" validLength="55.388858883427304" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="55.388858883427304" s="407.19425352224346" distance="0" tStart="-9.2572898202279816" tEnd="-9.3317895049681017" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741951" s="462.58311240567076" t="-9.3317895049681017" orientation="none" validLength="74.031011293820086" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="74.031011293820086" s="462.58311240567076" distance="0" tStart="-9.3317895049681017" tEnd="-9.2964965528218926" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741952" s="536.61412369949085" t="-9.2964965528218926" orientation="none" validLength="40.002939470080037" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="40.002939470080037" s="536.61412369949085" distance="0" tStart="-9.2964965528218926" tEnd="-9.1581245700391243" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741953" s="576.61706316957088" t="-9.1581245700391243" orientation="none" validLength="46.918447033432358" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="46.918447033432358" s="576.61706316957088" distance="0" tStart="-9.1581245700391243" tEnd="-9.2568183488376281" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741954" s="623.53551020300324" t="-9.2568183488376281" orientation="none" validLength="14.998270704126753" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.998270704126753" s="623.53551020300324" distance="0" tStart="-9.2568183488376281" tEnd="-9.5219695683152175" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741955" s="638.53378090712999" t="-9.5219695683152175" orientation="none" validLength="10.538303710711261" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.538303710711261" s="638.53378090712999" distance="0" tStart="-9.5219695683152175" tEnd="-9.381475191159856" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741956" s="649.07208461784126" t="-9.381475191159856" orientation="none" validLength="9.8830107093413062" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.8830107093413062" s="649.07208461784126" distance="0" tStart="-9.381475191159856" tEnd="-8.9672144087718433" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741957" s="658.95509532718256" t="-8.9672144087718433" orientation="none" validLength="3.7752466549277415" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.7752466549277415" s="658.95509532718256" distance="0" tStart="-8.9672144087718433" tEnd="-8.8783970115185085" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5181116" s="40.248085031103869" t="8.3868736420152885" orientation="none" validLength="17.718866775382239" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="17.718866775382239" s="40.248085031103869" distance="0" tStart="8.3868736420152885" tEnd="8.4700800477725693" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616572" s="57.966951806486108" t="8.4700800477725693" orientation="none" validLength="69.823274582233068" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="69.823274582233068" s="57.966951806486108" distance="0" tStart="8.4700800477725693" tEnd="8.5406566750291457" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542052028" s="127.79022638871918" t="8.5406566750291457" orientation="none" validLength="52.951289952278941" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="52.951289952278941" s="127.79022638871918" distance="0" tStart="8.5406566750291457" tEnd="8.4566487326096063" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487484" s="180.74151634099812" t="8.4566487326096063" orientation="none" validLength="47.571891790686976" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="47.571891790686976" s="180.74151634099812" distance="0" tStart="8.4566487326096063" tEnd="8.1058199422582433" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078922940" s="228.31340813168509" t="8.1058199422582433" orientation="none" validLength="73.16130155255081" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="73.16130155255081" s="228.31340813168509" distance="0" tStart="8.1058199422582433" tEnd="7.3004285449956292" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741958" s="301.4747096842359" t="7.3004285449956292" orientation="none" validLength="29.069437344483219" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="29.069437344483219" s="301.4747096842359" distance="0" tStart="7.3004285449956292" tEnd="7.1869422942124688" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741959" s="330.54414702871912" t="7.1869422942124688" orientation="none" validLength="133.31311837813996" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="133.31311837813996" s="330.54414702871912" distance="0" tStart="7.1869422942124688" tEnd="6.9614126036483936" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741960" s="463.85726540685909" t="6.9614126036483936" orientation="none" validLength="354.02247898893705" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="354.02247898893705" s="463.85726540685909" distance="0" tStart="6.9614126036483936" tEnd="7.1235331815107754" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412773" s="23.497398447037938" t="-11.962563693516161" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848229" s="73.277169493950083" t="-11.825534291742372" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283685" s="123.51899309136097" t="-11.889739405113934" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719141" s="170.93637697454051" t="-11.611382803446675" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154597" s="223.42892367021707" t="-12.418644847302794" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741961" s="247.20894184191832" t="-11.377918774228473" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741962" s="271.81540508739147" t="-9.1842830294584701" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741963" s="319.28376263480368" t="-8.793634456240186" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741964" s="371.7719806436312" t="-9.4137793136726096" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741965" s="421.51156686294524" t="-9.3968751459531461" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741966" s="471.62751351739706" t="-9.392028510111043" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741967" s="521.69940260428984" t="-9.4245875264926191" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741968" s="571.47076069065361" t="-9.2711529048508101" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741969" s="631.80116185692282" t="-9.2735434128804162" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741970" s="660.21759726699133" t="-9.3851885753497317" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8987850" type="605" subtype="21" country="DEU" zOffset="0.28489629757257262" s="1.3971272871971663" t="7.8259871454600649" orientation="+" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987886" type="605" subtype="21" country="DEU" zOffset="0.32138166660118372" s="9.8514072426048926" t="7.8579908285171811" orientation="+" name="Sg605-10Leitbake03.flt" height="1" /> - <signal dynamic="no" id="8987898" type="605" subtype="21" country="DEU" zOffset="0.294092772594297" s="26.683014923268047" t="7.90001926609989" orientation="+" name="Sg605-10Leitbake03.flt" height="1" /> - </signals> - </road> - <road name="" length="888.42146965675818" id="4940867" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33555390" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-791.50526727818374" y="-787.55743657425046" hdg="4.4016189175402811" length="888.42146965675818"> - <paramPoly3 aU="0" bU="888.40789968550109" cU="0.041100312933338712" dU="-0.029140633617841472" aV="0" bV="-0" cV="4.9076444732990216" dV="-4.7785589950239897" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.40946575926253" b="-0.00014056496724559989" c="-1.3940016395158238e-07" d="1.5529722625393824e-07" /> - <elevation s="10.095698518826797" a="158.40819224817409" b="-9.5894513822849381e-05" c="4.589010196824621e-06" d="-4.541726633808453e-07" /> - <elevation s="20.191397037653594" a="158.40722451541029" b="-0.00014210808323493449" c="-6.2297872935187029e-05" d="1.9398423106666793e-06" /> - <elevation s="30.287095556480391" a="158.4014363099171" b="-0.00080684477848787239" c="-2.8231399515743975e-05" d="5.1242248309178469e-07" /> - <elevation s="40.382794075307189" a="158.39094049085918" b="-0.0012201930671398662" c="-6.3132674053508394e-05" d="4.4889821440560771e-06" /> - <elevation s="50.478492594133982" a="158.37680620595498" b="-0.0011223366421762087" c="4.2362694944495781e-05" d="-1.4644789726003802e-06" /> - <elevation s="60.574191112960783" a="158.36828624482618" b="-0.00071476748486141734" c="-3.085517339498394e-06" d="1.5798754195242064e-06" /> - <elevation s="70.669889631787584" a="158.36238135059764" b="-0.0002939908539417418" c="3.9864081675641934e-05" d="-2.7409935355358369e-06" /> - <elevation s="80.765588150614377" a="158.36065593776959" b="-0.00032719126299051864" c="-6.6875175620492337e-05" d="2.143151997912838e-06" /> - <elevation s="90.861286669441171" a="158.3527418579373" b="-0.0010221842159378737" c="-0.00010092287749834649" d="7.6658930210053242e-06" /> - <elevation s="100.95698518826796" a="158.34002390913903" b="-0.00071596270543816177" c="4.6309164208312122e-05" d="-3.1063843448846124e-06" /> - <elevation s="111.05268370709477" a="158.3343193169635" b="-0.00073075321746229579" c="-4.5065400084202065e-05" d="2.84516565324615e-06" /> - <elevation s="121.14838222592157" a="158.32527627950782" b="-0.00077072204907556018" c="6.6499854209980436e-06" d="5.7490760688425767e-07" /> - <elevation s="131.24408074474837" a="158.31876466078404" b="-0.00046066040732607413" c="-7.2098848387535064e-07" d="3.5465618234190816e-09" /> - <elevation s="141.33977926357517" a="158.3140441361497" b="-0.00047413374203330905" c="9.1911956738023334e-06" d="-6.8782354776433127e-07" /> - <elevation s="151.43547778240196" a="158.30948646001511" b="-0.00049886604463648813" c="-8.9211734568413526e-05" d="5.839237372145286e-06" /> - <elevation s="161.53117630122875" a="158.30136580844197" b="-0.00051471557320089745" c="9.5802252237332152e-05" d="-5.8686184303043798e-06" /> - <elevation s="171.62687482005555" a="158.29989513908359" b="-0.00037477811380564599" c="-8.2319398733250498e-06" d="3.5465618233801098e-09" /> - <elevation s="181.72257333888234" a="158.29527611652847" b="-0.00053990805014779311" c="-5.9649761297785748e-05" d="3.9083999931989528e-06" /> - <elevation s="191.81827185770914" a="158.28776736299935" b="-0.00054925099853031327" c="1.6106527761848136e-06" d="3.5465618233724497e-09" /> - <elevation s="201.91397037653593" a="158.28239010263655" b="-0.00051564523880631556" c="2.7626887359775078e-05" d="-1.974071166164416e-06" /> - <elevation s="212.00966889536275" a="158.27796883258478" b="-0.00056143031511372301" c="-9.1928210029983444e-06" d="5.3921543494435919e-07" /> - <elevation s="222.10536741418954" a="158.27191868499736" b="-0.00058217064155195416" c="7.9994564203230809e-07" d="3.5465618233451892e-09" /> - <elevation s="232.20106593301634" a="158.26612644803583" b="-0.00056493419145489361" c="4.7789575266055778e-05" d="-3.1508613400826697e-06" /> - <elevation s="242.29676445184313" a="158.26205171616294" b="-0.00056343283953487326" c="-1.3830979505375433e-05" d="9.2532811909913387e-07" /> - <elevation s="252.39246297066992" a="158.25590592029644" b="-0.00055976262755423438" c="3.6390110166082774e-05" d="-1.8007767647502126e-06" /> - <elevation s="262.48816148949675" a="158.25211074684384" b="-0.0003756178701758685" c="-1.7595833563339345e-05" d="1.7529599463643952e-06" /> - <elevation s="272.58386000832354" a="158.24832896946435" b="-0.00019490084581905826" c="4.9583375986367199e-05" d="-2.2207193135445226e-06" /> - <elevation s="282.67955852715033" a="158.2491299148314" b="0.00012722880476520745" c="1.9058326547682069e-05" d="-1.4107756749880893e-06" /> - <elevation s="292.77525704597713" a="158.25090519549508" b="8.0671031391799249e-05" c="3.0329341925101894e-05" d="-3.9308758131225353e-06" /> - <elevation s="302.87095556480392" a="158.25076607437475" b="-0.00050887866674228371" c="-6.7220776299853988e-06" d="3.5465618265912589e-09" /> - <elevation s="312.96665408363071" a="158.24494710294957" b="-0.00064352237505601304" c="-4.097419314948623e-05" d="3.2622805347298896e-06" /> - <elevation s="319.99998931215771" a="158.23952911554122" b="-0.00073575928081442423" c="2.777014087738412e-05" d="3.2572007650373072e-06" /> - <elevation s="323.06235260245751" a="158.23762992734893" b="-0.00047403600103598656" c="8.4544565615602703e-05" d="-4.1006874057110591e-06" /> - <elevation s="333.1580511212843" a="158.23724170286644" b="-2.082777850883011e-05" c="2.8350091598033809e-06" d="-1.1093919731685278e-07" /> - <elevation s="343.2537496401111" a="158.23720623010723" b="2.4932068230696346e-06" c="1.0465992025458161e-05" d="-9.8080958311763332e-07" /> - <elevation s="353.34944815893789" a="158.23728888889889" b="-8.608533656472478e-05" c="1.4417459784676984e-06" d="-1.0708151846776564e-06" /> - <elevation s="363.44514667776468" a="158.23546489160108" b="-0.00038439697235576265" c="-7.421438849199735e-07" d="-1.5332079180045539e-09" /> - <elevation s="373.54084519659148" a="158.23150691638182" b="-0.00039985070223856248" c="-3.9356669017850715e-05" d="1.565295448426586e-06" /> - <elevation s="383.63654371541827" a="158.2250694552186" b="-0.0007158974046762058" c="-1.42007412538962e-05" d="6.357773555416416e-07" /> - <elevation s="393.73224223424506" a="158.21704879234932" b="-0.00080822895808544141" c="-1.6178443721008602e-05" d="1.4643838505101537e-06" /> - <elevation s="403.82794075307186" a="158.20874702813214" b="-0.00068713058823623228" c="3.2423636981486049e-05" d="-1.8884362023664784e-06" /> - <elevation s="413.92363927189871" a="158.2031715105291" b="-0.00060987803816230785" c="-1.3128417494043572e-05" d="7.3208720621684087e-07" /> - <elevation s="424.0193377907255" a="158.19642958322262" b="-0.00065110927290089977" c="-2.0639683816779853e-05" d="2.2051145959161639e-06" /> - <elevation s="434.11503630955229" a="158.1900215493886" b="-0.00039359678807742609" c="8.0404869128824663e-06" d="-5.1002538488990812e-07" /> - <elevation s="444.21073482837909" a="158.18634261789811" b="-0.00038719827309760389" c="-4.2751328015900525e-05" d="2.2622070991893946e-06" /> - <elevation s="454.30643334720588" a="158.18040400933867" b="-0.00055869363579716435" c="1.9095917105306295e-05" d="-1.6047508728273013e-06" /> - <elevation s="464.40213186603268" a="158.17505865757886" b="-0.0006638040803905712" c="-1.2087092601534161e-05" d="-1.2382599583560263e-07" /> - <elevation s="474.49783038485947" a="158.16699772229984" b="-0.00094572156482546272" c="-5.2819732331135143e-05" d="3.783934534400747e-06" /> - <elevation s="484.59352890368626" a="158.15596006267995" b="-0.00085521441344738427" c="4.0520911716303716e-05" d="-1.6807828677762657e-06" /> - <elevation s="494.68922742251306" a="158.14972659322916" b="-0.00055097254171337776" c="2.612691428954604e-05" d="-1.9388766774195593e-06" /> - <elevation s="504.78492594133985" a="158.14483200203694" b="-0.0006162827726222869" c="-3.9870100478815192e-05" d="2.6563222255213978e-06" /> - <elevation s="514.8806244601667" a="158.13727982778326" b="-0.00060909378607175912" c="4.0801756250402671e-05" d="-2.6811376719607963e-06" /> - <elevation s="524.97632297899349" a="158.13253039227274" b="-0.00060505914485061178" c="-2.5396190314014411e-05" d="1.1917029500232797e-06" /> - <elevation s="535.07202149782029" a="158.12505968306183" b="-0.00075345742770063459" c="-4.4117634094800916e-05" d="4.2347375474921391e-06" /> - <elevation s="545.16772001664708" a="158.11731387890262" b="-0.00034940099536525727" c="3.7586229642186774e-06" d="-2.6100425444144646e-07" /> - <elevation s="555.26341853547387" a="158.11390095289363" b="-0.00035331625733835576" c="-1.2095610064322268e-05" d="8.6934958301579352e-07" /> - <elevation s="565.35911705430067" a="158.10999570389353" b="-0.00033172303455971758" c="9.7488822430154673e-07" d="-1.5332079180047036e-09" /> - <elevation s="575.45481557312746" a="158.10674451415446" b="-0.00031250748739883143" c="2.4676098904972695e-05" d="-1.7332639779241393e-06" /> - <elevation s="585.55051409195426" a="158.10432109503512" b="-0.00034424163893906709" c="-3.3051286048323949e-06" d="-1.5332079180066246e-09" /> - <elevation s="595.64621261078105" a="158.10050728853477" b="-0.00041144561090305311" c="-0.00010357773183604102" d="7.0063064219155533e-06" /> - <elevation s="605.74191112960784" a="158.09300587667249" b="-0.0003605107076649153" c="6.2064992536563633e-05" d="-4.1296477796297428e-06" /> - <elevation s="615.83760964843464" a="158.09144278111322" b="-0.00037005166615776923" c="-8.0856538100202173e-06" d="-1.5332079180065059e-09" /> - <elevation s="625.93330816726143" a="158.08688115827408" b="-0.00053378112058821291" c="-3.5707585534774945e-05" d="2.0333769427414599e-06" /> - <elevation s="636.02900668608822" a="158.07994515090965" b="-0.00063302273859835469" c="8.4802698156162286e-06" d="-3.1321178779312301e-07" /> - <elevation s="646.12470520491502" a="158.07409638952873" b="-0.00055756481972770366" c="-7.4892474605248665e-06" d="9.5232401048763108e-07" /> - <elevation s="656.22040372374181" a="158.06868398296385" b="-0.00041759166099544884" c="7.913768005140371e-05" d="-5.2723700691388595e-06" /> - <elevation s="666.3161022425686" a="158.06710887273459" b="-0.00043182069992141669" c="-4.0603187080004948e-05" d="1.8275954620517666e-06" /> - <elevation s="676.4118007613954" a="158.06049150591872" b="-0.00069283302941846431" c="-1.0585504656652439e-05" d="6.7881044115525133e-07" /> - <elevation s="686.50749928022219" a="158.05311645066038" b="-0.00069900970515273113" c="-1.2411136839318968e-05" d="1.5353871428129688e-06" /> - <elevation s="696.60319779904898" a="158.04637436813232" b="-0.00048013351321905557" c="3.7434119934666685e-05" d="-2.1492981945313212e-06" /> - <elevation s="706.69889631787578" a="158.04313089156773" b="-0.00038147592359659931" c="-1.1015380097140908e-05" d="4.9736124890543749e-07" /> - <elevation s="716.79459483670257" a="158.03866868100224" b="-0.0004518139930853999" c="-3.1761338269392482e-06" d="2.1516238462602055e-07" /> - <elevation s="726.89029335552937" a="158.03400498054972" b="-0.00045015450204642621" c="1.4062362904464219e-05" d="-1.2802507108905276e-06" /> - <elevation s="736.98599187435616" a="158.02957627742668" b="-0.00055767722282869974" c="-4.2384963040886533e-06" d="-1.5332079180170565e-09" /> - <elevation s="747.08169039318295" a="158.02351255786218" b="-0.00064372719259049333" c="-4.8771368151663029e-05" d="2.9669440186536212e-06" /> - <elevation s="757.17738891200975" a="158.01509569319006" b="-0.00072128860087454342" c="4.75833518567982e-06" d="-1.5332079180160865e-09" /> - <elevation s="767.27308743083654" a="158.00829718769131" b="-0.00062567997394555699" c="3.8283061373441808e-06" d="-3.3306691194805515e-07" /> - <elevation s="777.36878594966333" a="158.00202798332802" b="-0.00065022278982448023" c="-2.9806710498282176e-05" d="1.5655246155871579e-06" /> - <elevation s="787.46448446849013" a="157.99403643851076" b="-0.00077337241579847891" c="-1.7401917192338739e-06" d="3.4793557772444894e-07" /> - <elevation s="797.56018298731692" a="157.98640935852623" b="-0.00070212126984208444" c="5.6136315957351454e-05" d="-3.0240096484801546e-06" /> - <elevation s="807.65588150614371" a="157.98193088170453" b="-0.0004933001988312335" c="-7.9020288394881553e-06" d="2.9204593653224522e-07" /> - <elevation s="817.75158002497062" a="157.97644578305642" b="-0.00056355449390833325" c="1.6024340556330387e-05" d="-1.7889313467719841e-06" /> - <elevation s="827.84727854379742" a="157.97054877386924" b="-0.00078700111051871057" c="-1.7151468140181004e-05" d="1.0339281999197586e-06" /> - <elevation s="837.94297706262421" a="157.96191921342393" b="-0.00081716962291760863" c="0.00013484279621091399" d="-6.0459353225318063e-06" /> - <elevation s="848.038675581451" a="157.96119173709326" b="5.6832883194876324e-05" c="5.2750810337458188e-05" d="-3.9635545993106686e-06" /> - <elevation s="858.1343741002778" a="157.96306359343689" b="-8.9988216437873855e-05" c="-3.0339372606770669e-05" d="3.0008034943465768e-07" /> - <elevation s="868.23007261910459" a="157.95937159399003" b="-0.00061082715049247361" c="-3.1538958086999732e-05" d="1.4745387800261344e-06" /> - <elevation s="878.32577113793138" a="157.95150759650048" b="-0.00079677395834914621" c="-1.7814389367995978e-06" d="-1.533207944913955e-09" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025107132473626264" b="-3.2090803757880605e-07" c="1.5893305301280835e-08" d="0" /> - <superelevation s="10.095698518826797" a="0.025105512578226432" b="0" c="8.3827498565300663e-06" d="-4.4571509440717116e-07" /> - <superelevation s="20.191397037653594" a="0.025501274443856824" b="3.2973399984538388e-05" c="1.4155023168234841e-06" d="-2.0130978489043405e-07" /> - <superelevation s="30.287095556480391" a="0.025771291588995607" b="0" c="-5.1402370785291529e-06" d="3.3943413748230812e-07" /> - <superelevation s="40.382794075307189" a="0.025596655240761528" b="0" c="1.3816738782407044e-05" d="-8.273819331140134e-07" /> - <superelevation s="50.478492594133982" a="0.026153536738336387" b="2.5991193052930574e-05" c="-1.2872409474421863e-06" d="0" /> - <superelevation s="60.574191112960783" a="0.026284736362939893" b="0" c="-6.564373957350933e-07" d="0" /> - <superelevation s="70.669889631787584" a="0.026217830209847668" b="-1.3254388087650609e-05" c="-3.6495632213510034e-05" d="2.4533266677858002e-06" /> - <superelevation s="80.765588150614377" a="0.024888705667452379" b="0" c="2.3232081338756887e-06" d="-7.5946632962857636e-08" /> - <superelevation s="90.861286669441171" a="0.025047346349148264" b="2.3686662521422766e-05" c="9.0135907659232215e-07" d="-1.1056150531295832e-08" /> - <superelevation s="100.95698518826796" a="0.025366972474919335" b="3.8505729153688401e-05" c="5.8484326580897985e-06" d="-5.1213025992614731e-07" /> - <superelevation s="111.05268370709477" a="0.02582483081471474" b="0" c="-1.7101252682454954e-05" d="9.5580826499518699e-07" /> - <superelevation s="121.14838222592157" a="0.025065330176577829" b="-5.3041276671169254e-05" c="1.3397053544746987e-06" d="8.5001164789025557e-08" /> - <superelevation s="131.24408074474837" a="0.024753853338063129" b="0" c="2.0074259894570794e-05" d="-1.3255982144035995e-06" /> - <superelevation s="141.33977926357517" a="0.025435863795544373" b="0" c="-2.191508886489119e-05" d="1.4471568476431228e-06" /> - <superelevation s="151.43547778240196" a="0.024691312322116014" b="0" c="1.3842957683276515e-05" d="-9.1411589186302843e-07" /> - <superelevation s="161.53117630122875" a="0.025161618174090076" b="0" c="-2.7965586447979943e-06" d="7.6573363387103639e-08" /> - <superelevation s="171.62687482005555" a="0.024955377023721931" b="-3.305263564857854e-05" c="-7.0252389020308726e-06" d="5.7200632815266347e-07" /> - <superelevation s="181.72257333888234" a="0.024494239284568724" b="0" c="3.1769492789600071e-06" d="-1.7542908996677123e-07" /> - <superelevation s="191.81827185770914" a="0.024637529961016747" b="1.050619917829815e-05" c="-8.3407202643006896e-07" d="4.6441848183382995e-08" /> - <superelevation s="201.91397037653593" a="0.024706374123534412" b="7.8656151267361569e-06" c="2.368933680735724e-07" d="-1.3197660213604776e-08" /> - <superelevation s="212.00966889536275" a="0.024796347718986051" b="8.6133827202566692e-06" c="7.6441603993292705e-07" d="-7.8647541596014052e-08" /> - <superelevation s="222.10536741418954" a="0.024880290353876379" b="0" c="-2.8951322853245256e-06" d="1.8139257012120747e-07" /> - <superelevation s="232.20106593301634" a="0.024771859679797354" b="-2.9924707041009674e-06" c="1.4820523307616835e-07" d="0" /> - <superelevation s="242.29676445184313" a="0.024756754138769842" b="0" c="1.1293128591866095e-05" d="-5.5608876272842764e-07" /> - <superelevation s="252.39246297066992" a="0.025335578041693358" b="5.7989123794180835e-05" c="5.938702475407196e-06" d="-5.8181044818392651e-07" /> - <superelevation s="262.48816148949675" a="0.025927635561163793" b="0" c="-3.3969829147733341e-05" d="2.2431882967704941e-06" /> - <superelevation s="272.58386000832354" a="0.024773531806441006" b="0" c="1.2656581994481188e-08" d="0" /> - <superelevation s="282.67955852715033" a="0.024774821804875048" b="2.5555407218949989e-07" c="7.1576687327223867e-06" d="-3.7520877201028963e-07" /> - <superelevation s="292.77525704597713" a="0.025120849527187728" b="3.005152957331542e-05" c="1.7217050330846001e-06" d="-2.1197399902956125e-07" /> - <superelevation s="302.87095556480392" a="0.025381604170078648" b="0" c="-3.9459716973437735e-06" d="1.4404814569558567e-07" /> - <superelevation s="312.96665408363071" a="0.02512764179626327" b="-3.5629168212772691e-05" c="-6.6414586264708524e-06" d="5.5508989506312097e-07" /> - <superelevation s="323.06235260245751" a="0.024662201488573208" b="0" c="6.544082328617158e-08" d="0" /> - <superelevation s="333.1580511212843" a="0.024668871422019591" b="1.3213416454433914e-06" c="5.7776870825275458e-06" d="-2.2002449119349252e-07" /> - <superelevation s="343.2537496401111" a="0.025044689292042878" b="5.070416196607954e-05" c="4.8751433078475884e-06" d="-3.506501386124152e-07" /> - <superelevation s="353.34944815893789" a="0.025692659287738197" b="4.1922038613928545e-05" c="-2.0762326913660773e-06" d="0" /> - <superelevation s="363.44514667776468" a="0.025904275419308617" b="0" c="-2.932456152071781e-06" d="1.9086816431031714e-07" /> - <superelevation s="373.54084519659148" a="0.025801790825935794" b="-8.4874510176255554e-07" c="4.2034986493494605e-08" d="0" /> - <superelevation s="383.63654371541827" a="0.025797506488602431" b="0" c="2.2183990536568711e-07" d="0" /> - <superelevation s="393.73224223424506" a="0.025820117105801867" b="4.4792576080340871e-06" c="8.2260980087723563e-06" d="-5.578572496913048e-07" /> - <superelevation s="403.82794075307186" a="0.026129741143762715" b="0" c="-8.5485288735333279e-06" d="3.9926440588781481e-07" /> - <superelevation s="413.92363927189871" a="0.025669285492059074" b="-5.052390843355e-05" c="-1.1183901373107807e-06" d="6.2558069150288271e-08" /> - <superelevation s="424.0193377907255" a="0.02510959284868685" b="-5.3977425361252462e-05" c="-4.9123425656435431e-06" d="5.009150412945434e-07" /> - <superelevation s="434.11503630955229" a="0.024579405865519714" b="0" c="1.9365058832813016e-05" d="-1.2787663179323669e-06" /> - <superelevation s="444.21073482837909" a="0.025237321659331371" b="0" c="-5.4003372228418105e-06" d="2.6931742032096121e-07" /> - <superelevation s="454.30643334720588" a="0.024964026027936063" b="-2.6691330820539104e-05" c="-1.510332635498494e-06" d="1.5332177091336541e-07" /> - <superelevation s="464.40213186603268" a="0.024698386401270506" b="-1.0305953008669266e-05" c="1.4516048705101329e-06" d="-9.3227011070942191e-08" /> - <superelevation s="474.49783038485947" a="0.024646363504008145" b="-9.501988636796275e-06" c="-2.2335279715545222e-06" d="1.785660738121001e-07" /> - <superelevation s="484.59352890368626" a="0.024506527976057679" b="0" c="8.7293724963010863e-06" d="-4.14855547203766e-07" /> - <superelevation s="494.68922742251306" a="0.024969372722251668" b="4.9408100119274984e-05" c="1.1491603320246944e-06" d="-7.8875265649328951e-08" /> - <superelevation s="504.78492594133985" a="0.0255041465424421" b="4.849361111471438e-05" c="3.4730689291373897e-06" d="-3.8793852599550243e-07" /> - <superelevation s="514.8806244601667" a="0.02594852647805844" b="0" c="-1.3941141132160353e-05" d="8.9356782397969797e-07" /> - <superelevation s="524.97632297899349" a="0.025447069804505028" b="-8.265431093957689e-06" c="4.0935409662560935e-07" d="1.3170770038548244e-23" /> - <superelevation s="535.07202149782029" a="0.025405347154278661" b="0" c="6.8811121602198475e-06" d="-3.7688480235980093e-07" /> - <superelevation s="545.16772001664708" a="0.025718882758235615" b="2.369943317188687e-05" c="-1.7550020397387906e-06" d="1.0165552350244323e-07" /> - <superelevation s="555.26341853547387" a="0.025883871819019567" b="1.9346637164977478e-05" c="2.8090197613768303e-06" d="-2.4876483388680704e-07" /> - <superelevation s="565.35911705430067" a="0.0261095183905771" b="0" c="-1.4020122175956768e-06" d="0" /> - <superelevation s="575.45481557312746" a="0.025966620919048108" b="-2.830858533711411e-05" c="-7.1821292358504622e-06" d="4.0588938196790478e-07" /> - <superelevation s="585.55051409195426" a="0.025366455052446658" b="-4.9217261307493032e-05" c="-1.8350391233756815e-06" d="2.821383331619059e-07" /> - <superelevation s="595.64621261078105" a="0.02497285565488257" b="0" c="3.4683848762463323e-06" d="-2.2903383850579792e-07" /> - <superelevation s="605.74191112960784" a="0.025090691867454946" b="0" c="-1.279942390208719e-05" d="8.4520642649397669e-07" /> - <superelevation s="615.83760964843464" a="0.024655839424734517" b="0" c="3.1594308227912406e-06" d="-1.2304399043904155e-07" /> - <superelevation s="625.93330816726143" a="0.024851248056298136" b="2.6170236779314012e-05" c="4.604217308239942e-06" d="-3.8919709638447373e-07" /> - <superelevation s="636.02900668608822" a="0.025184253066115051" b="1.3125940079794645e-07" c="-6.5007587417171525e-09" d="0" /> - <superelevation s="646.12470520491502" a="0.02518491564378416" b="0" c="-4.472307270776049e-07" d="0" /> - <superelevation s="656.22040372374181" a="0.025139332488881928" b="-9.0302131778651614e-06" c="-1.6347763234361502e-05" d="1.109052793135566e-06" /> - <superelevation s="666.3161022425686" a="0.024523149890951973" b="0" c="9.3369209479454203e-06" d="-6.1656099909175213e-07" /> - <superelevation s="676.4118007613954" a="0.024840365955734352" b="0" c="-3.8026133808704179e-06" d="2.5110452560755976e-07" /> - <superelevation s="686.50749928022219" a="0.024711174538211002" b="0" c="1.9565012388735528e-05" d="-1.0843678098095364e-06" /> - <superelevation s="696.60319779904898" a="0.025589503407549764" b="6.3478454055983057e-05" c="-2.7750357324775044e-06" d="4.4092752736973645e-08" /> - <superelevation s="706.69889631787578" a="0.025992893207391808" b="2.0928819708228442e-05" c="-1.0365216269681091e-06" d="0" /> - <superelevation s="716.79459483670257" a="0.026098538734456386" b="0" c="-3.8086123062359387e-06" d="1.5975798580928039e-07" /> - <superelevation s="726.89029335552937" a="0.025874741652152956" b="-2.8052102048284033e-05" c="-1.6825789703655444e-07" d="-4.1068727143095302e-08" /> - <superelevation s="736.98599187435616" a="0.025532127604258707" b="-4.4007023524108606e-05" c="-3.7353877835588364e-06" d="2.7119420274284046e-07" /> - <superelevation s="747.08169039318295" a="0.024986178367732318" b="-3.6506836560146777e-05" c="3.6714689734282369e-06" d="-1.9127620852538935e-07" /> - <superelevation s="757.17738891200975" a="0.024795003572684056" b="-2.0861157595460911e-05" c="-1.7322210839930674e-06" d="1.5269435634922663e-07" /> - <superelevation s="767.27308743083654" a="0.024564962452057304" b="-9.1478617110979753e-06" c="4.5305739340561981e-07" d="0" /> - <superelevation s="777.36878594966333" a="0.024518785425093722" b="0" c="2.6808612176362555e-05" d="-1.5215085741682992e-06" /> - <superelevation s="787.46448446849013" a="0.025685593279648099" b="7.6072590345942228e-05" c="-3.7675743884427043e-06" d="-1.0536616030838595e-22" /> - <superelevation s="797.56018298731692" a="0.026069596248487523" b="0" c="-1.0945206664695058e-05" d="5.6725854779272801e-07" /> - <superelevation s="807.65588150614371" a="0.025537727180159536" b="-4.7548715706505948e-05" c="4.1666603128947598e-07" d="9.0999018373942139e-09" /> - <superelevation s="817.75158002497062" a="0.025109521251026942" b="-3.6353175041438378e-05" c="1.4107879102296813e-06" d="-8.027004237760076e-08" /> - <superelevation s="827.84727854379742" a="0.024803705789318529" b="-3.2411517761923557e-05" c="-3.8403576083692454e-06" d="3.5959683383507683e-07" /> - <superelevation s="837.94297706262421" a="0.024455087427302982" b="0" c="1.0049556887557315e-05" d="-5.4069207329902964e-07" /> - <superelevation s="848.038675581451" a="0.024923005576723285" b="3.7587510037089011e-05" c="1.1198069658683522e-06" d="-1.9687378755393124e-07" /> - <superelevation s="858.1343741002778" a="0.025214031766118635" b="0" c="-3.3918957568004732e-06" d="1.8760444955838556e-07" /> - <superelevation s="868.23007261910459" a="0.025061361336731064" b="-1.1123416630621707e-05" c="6.5663633802952173e-07" d="-2.5806650949450237e-08" /> - <superelevation s="878.32577113793138" a="0.024989434444514513" b="-5.7558954291718465e-06" c="1.355640024970997e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="9.2871710484136596" b="-6.2128992798212585e-06" c="-0.010589650997950374" d="0.01165578443754905" /> - <laneOffset s="0.60598108285555219" a="9.2858723190531673" b="-0" c="0.004206709148257241" d="-0.0032315079307754873" /> - <laneOffset s="1.4738337465583145" a="9.2869284389698947" b="-0" c="-0.0014152208189397433" d="0.00026198386644038545" /> - <laneOffset s="5.0751262947558473" a="9.2808102940652635" b="-0" c="0.0011860266915044383" d="-0.00011526530027530821" /> - <laneOffset s="10.095698518826797" a="9.2961187153280207" b="0.0031928835540569207" c="-0.00054477675187759747" d="-0.00011718835847726407" /> - <laneOffset s="11.934794777105072" a="9.2994192005215517" b="-0" c="-3.444668257085421e-05" d="1.3476536362233386e-06" /> - <laneOffset s="20.191397037653594" a="9.2978294659577365" b="-0.00029321048204621476" c="6.053825080094472e-06" d="1.3509139259374315e-06" /> - <laneOffset s="27.333607434779793" a="9.2965362895542665" b="-0" c="0.0025440815547117957" d="-0.00054311338040523131" /> - <laneOffset s="29.78420645568028" a="9.3038216542068852" b="0.0026841503087218829" c="0.00028704233724760413" d="-9.615103153059623e-05" /> - <laneOffset s="33.987986622544355" a="9.3130348879291489" b="-0" c="-7.8584654081511201e-06" d="2.2197376416209716e-07" /> - <laneOffset s="40.382794075307189" a="9.3127715748566295" b="-7.3274852419306761e-05" c="-1.7788539475016139e-06" d="-2.6087196831966666e-07" /> - <laneOffset s="50.478492594133982" a="9.3115820742891433" b="-0.00018895906025771154" c="-1.6426424663942445e-06" d="-7.2028647083474055e-07" /> - <laneOffset s="54.261015924485903" a="9.3108048494143176" b="-0.00023230218591761525" c="-2.3046316946716081e-05" d="4.8034137313413034e-07" /> - <laneOffset s="60.574191112960783" a="9.3085406098805592" b="-0.00046585934051370165" c="-1.3485896751675533e-05" d="6.1749695426013311e-07" /> - <laneOffset s="69.14660299633762" a="9.3039450387157014" b="-0.00056094006533201845" c="-6.5677221801091384e-05" d="6.3261894540137573e-06" /> - <laneOffset s="70.669889631787584" a="9.302960529429896" b="-0.00071699262249699737" c="-5.1953299147562613e-05" d="4.3622132587101642e-06" /> - <laneOffset s="80.765588150614377" a="9.2949153980712769" b="-0.00043217104437930852" c="7.2345223237858618e-05" d="3.3596824128313683e-06" /> - <laneOffset s="83.303705957729804" a="9.2943394810445685" b="-0" c="0.00034698393702768996" d="-5.2834307180409902e-05" /> - <laneOffset s="87.681971464180108" a="9.2965566168961473" b="-0" c="-2.045965586317585e-05" d="1.8951946796338374e-07" /> - <laneOffset s="90.861286669441171" a="9.2963559002934577" b="-0.00012434837593140057" c="-1.1495418004611804e-05" d="1.104812289324212e-06" /> - <laneOffset s="101.36848042595275" a="9.2950618296306811" b="-0" c="0.0027153769985122319" d="-0.00044413448555563097" /> - <laneOffset s="105.44438849257538" a="9.3100987063697556" b="-0" c="-0.0046119735608643663" d="0.00056540583183773698" /> - <laneOffset s="110.84428893988682" a="9.2646446558902547" b="-0.0003485177231546294" c="1.1739824945078481e-05" d="3.1885462480718557e-07" /> - <laneOffset s="121.26427764052661" a="9.2626485104536549" b="-0" c="0.00039846956043757258" d="-2.1147418286544279e-05" /> - <laneOffset s="131.24408074474837" a="9.2813151288337021" b="0.0016346708795876366" c="-0.00022527043536076623" d="-2.4284670020568351e-05" /> - <laneOffset s="133.80872966688554" a="9.2836161337102308" b="-0" c="-0.00079212727912035606" d="7.3445547253944444e-05" /> - <laneOffset s="139.75605336801445" a="9.2710481307984516" b="-0.0016286224164916204" c="0.0002680442614365966" d="-2.3172860761151999e-05" /> - <laneOffset s="141.33977926357517" a="9.2690490954924716" b="-0.00095397079436334469" c="0.00016340994347882089" d="-1.7218693805121502e-05" /> - <laneOffset s="149.3148801939976" a="9.2631004086185822" b="-0.0016329914314400251" c="-0.00016570249100009751" d="2.2599792760829696e-06" /> - <laneOffset s="151.43547778240196" a="9.2589138893261769" b="-0.0023052791032234605" c="-0.00015867816534234121" d="-2.409560291770414e-06" /> - <laneOffset s="157.69219850309233" a="9.2376885270685971" b="-0.0045738669807722891" c="-0.0012964502855393046" d="0.0002332278998437778" /> - <laneOffset s="162.47228357676374" a="9.2116756119078858" b="-0.00098093019690541567" c="0.00013887159464169696" d="-9.1992369552741662e-06" /> - <laneOffset s="172.07720851871449" a="9.2069139634108499" b="-0.00085924302225921041" c="-8.6744926239314192e-05" d="3.2062040720135244e-06" /> - <laneOffset s="181.72257333888234" a="9.1934331530453939" b="-0.0016377669904185297" c="4.2637828266006869e-06" d="2.798406102854431e-06" /> - <laneOffset s="187.20396975304703" a="9.185044887602432" b="-0.001338783756071892" c="8.0426667427464294e-05" d="-5.2718779598702396e-06" /> - <laneOffset s="191.81827185770914" a="9.180061817387509" b="-0.00093330093352068152" c="1.035860843642728e-05" d="-4.950563574427544e-06" /> - <laneOffset s="201.69713041625721" a="9.1670799664225839" b="-0.0021780423984492248" c="-0.00018923052665533225" d="8.2727697215410605e-06" /> - <laneOffset s="212.00966889536275" a="9.1335673797379222" b="-0.0034415478651826279" c="6.8791807813901559e-05" d="8.1008009627828578e-06" /> - <laneOffset s="216.76413592067979" a="9.1196303194383805" b="-0.0022380563365859969" c="6.1655027601789349e-05" d="-1.1796686992463686e-07" /> - <laneOffset s="222.10536741418954" a="9.1094173079205305" b="-0.0015895251296550426" c="5.9643869540714272e-05" d="5.8270085798053064e-08" /> - <laneOffset s="230.46325900325695" a="9.1003326331765937" b="-0.00058031988128716449" c="9.2579568205597691e-06" d="1.0396076032596956e-06" /> - <laneOffset s="232.20106593301634" a="9.0993575640400799" b="-0.00053872403780565832" c="1.1867688314678905e-05" d="6.6153521970185249e-09" /> - <laneOffset s="242.29676445184313" a="9.0951351675909891" b="-0.0002970760589470796" c="1.5849033906141221e-05" d="-2.562949934078438e-07" /> - <laneOffset s="252.39246297066992" a="9.093487636633947" b="-5.5429085390290237e-05" c="3.2517891184630853e-05" d="-5.9160605816553604e-06" /> - <laneOffset s="254.70817730196902" a="9.0934601907690578" b="-0" c="0.0007965754462447381" d="-8.7733775530452745e-05" /> - <laneOffset s="260.76115170419524" a="9.1031886336962167" b="-0" c="-0.0010652096132647126" d="0.00014960657950186388" /> - <laneOffset s="262.48816148949675" a="9.1007821899262122" b="-0.0023406217956969113" c="-0.00030329542710627686" d="0.00015931863603184225" /> - <laneOffset s="264.52516254476893" a="9.0961024602801146" b="-0.0015930305226121099" c="0.00015983901027105416" d="-8.7742107582134761e-06" /> - <laneOffset s="272.58386000832354" a="9.0890530631163724" b="-0.00072630237466190335" c="-6.3243284343863143e-05" d="-9.6842495597634006e-06" /> - <laneOffset s="274.37570661527781" a="9.0874928700272743" b="-0.0010462269781484591" c="-3.2086906204081424e-05" d="5.9088486428230356e-07" /> - <laneOffset s="282.67955852715033" a="9.0769309678881989" b="-0.0014568852651897452" c="-1.5050579757327574e-05" d="4.3966201760635443e-07" /> - <laneOffset s="292.77525704597713" a="9.0611410969980319" b="-0.0016263423116561098" c="1.0936606003989465e-05" d="-2.6035465186209735e-06" /> - <laneOffset s="294.9379661344953" a="9.057648609005815" b="-0.0016155697044490263" c="-2.7715195392177246e-06" d="-3.7127815353104598e-07" /> - <laneOffset s="302.87095556480392" a="9.0444725360184588" b="-0.0017296387630203784" c="-1.1565531104693749e-05" d="2.7037521770297125e-10" /> - <laneOffset s="309.72821614544756" a="9.0320682048246432" b="-0.0018882163433273148" c="-3.7972090381441563e-05" d="2.3453339885741997e-06" /> - <laneOffset s="312.96665408363071" a="9.0256347565388033" b="-0.0020603669276312189" c="-2.5734238574551785e-05" d="1.0099835118126814e-06" /> - <laneOffset s="323.06235260245751" a="9.003250257156008" b="-0.0022711551181281301" c="1.8222782576210042e-06" d="8.0403119372867843e-07" /> - <laneOffset s="333.1580511212843" a="8.9813344282762735" b="-0.0019885126500861876" c="3.0663606091710126e-05" d="-1.79611911585427e-06" /> - <laneOffset s="334.29676935318548" a="8.9791071814640908" b="-0.0019256652064104875" c="3.7088799597594924e-05" d="-1.9967736872839589e-06" /> - <laneOffset s="343.2537496401111" a="8.9633997039051874" b="-0.0017418463708793906" c="-4.6848092637895066e-06" d="-2.9200830749422628e-06" /> - <laneOffset s="348.36118606440226" a="8.9539920779756006" b="-0.0020182201468987647" c="-5.3756955025574531e-05" d="1.7969280886577498e-06" /> - <laneOffset s="353.34944815893789" a="8.9428100833857158" b="-0.0024203901248191356" c="-1.7134526504536921e-05" d="2.8581952292173016e-06" /> - <laneOffset s="364.22349151778155" a="8.918139652630396" b="-0.0017791329607270479" c="9.5137085738750403e-05" d="-3.6765054911116995e-06" /> - <laneOffset s="373.54084519659148" a="8.9068481767333534" b="-0.00096378750041239264" c="-8.4745814237441085e-06" d="-3.73039801653725e-06" /> - <laneOffset s="381.66806220649562" a="8.8964529685444553" b="-0.0018407339282537347" c="-0.00010011698562690197" d="4.4884371062415533e-06" /> - <laneOffset s="383.63654371541827" a="8.8924758090732894" b="-0.0021827138013825187" c="-7.3487235560667716e-05" d="4.468561887951413e-06" /> - <laneOffset s="393.73224223424506" a="8.8675478235732719" b="-0.0023001743281265375" c="6.7833306440496038e-05" d="2.9941021878624712e-06" /> - <laneOffset s="396.34974954371216" a="8.8620455443733359" b="-0.0018835251004515486" c="3.2341912740761967e-05" d="-2.0162376344485889e-07" /> - <laneOffset s="403.82794075307186" a="8.8496845312704266" b="-0.0014336335104505186" c="2.7823267718837429e-05" d="2.8044688859823792e-07" /> - <laneOffset s="413.92363927189871" a="8.8383354097473958" b="-0.00078609079219299439" c="2.9516028196238055e-05" d="3.1949534937853329e-07" /> - <laneOffset s="424.0193377907255" a="8.833736396017132" b="-9.2429051179036844e-05" c="4.9982325469272994e-06" d="1.5756453622744022e-05" /> - <laneOffset s="425.31593574949653" a="8.8336593014243885" b="-0" c="0.00013191661765478717" d="-8.1294340080174397e-06" /> - <laneOffset s="434.11503630955229" a="8.8383345530267992" b="0.00043325111040981167" c="-7.5512359237634951e-05" d="-1.2188070964643178e-05" /> - <laneOffset s="436.06407404866161" a="8.838801884059329" b="-0" c="-0.0010172457013427683" d="0.00011890617257243147" /> - <laneOffset s="440.52020172209973" a="8.8291238517658535" b="-0.001982567493764853" c="1.0858700764372528e-05" d="2.1693462488899243e-06" /> - <laneOffset s="444.21073482837909" a="8.822064059273302" b="-0.0018137789914778604" c="4.2460151570826626e-05" d="4.1124656194909572e-06" /> - <laneOffset s="452.15411157017218" a="8.8123968362879292" b="-0.00036076941330177934" c="2.8649576328595131e-05" d="1.1788937532344265e-06" /> - <laneOffset s="454.30643334720588" a="8.8117648175576377" b="-0.00022105956209004504" c="2.4914690587414096e-05" d="-1.6927273854802148e-06" /> - <laneOffset s="464.40213186603268" a="8.810330658685908" b="-0.0002355813652685927" c="-3.0796724787157328e-05" d="-8.4016099183289827e-07" /> - <laneOffset s="466.28889600311697" a="8.8097708965346353" b="-0.00036076629118719707" c="-0.0026453201038281414" d="0.0004224790447384185" /> - <laneOffset s="469.89795351684353" a="8.7938731280457496" b="-0.0029462470763788003" c="0.00012114290040571383" d="-2.4136510842749383e-06" /> - <laneOffset s="474.49783038485947" a="8.7826490845373382" b="-0.0019849725940607869" c="8.6217847756235496e-05" d="-2.4608091962255481e-06" /> - <laneOffset s="484.59352890368626" a="8.76886485625311" b="-0.00099655391465878714" c="1.4056141963762293e-05" d="-2.7618656988563707e-06" /> - <laneOffset s="493.55151756896407" a="8.7590803442832179" b="-0.0014096067805118178" c="-6.0055428300208891e-05" d="-1.1424593140018276e-05" /> - <laneOffset s="494.68922742251306" a="8.7573820617572249" b="-0.0015906215073724305" c="-6.4906543681091987e-05" d="6.316072617789658e-06" /> - <laneOffset s="504.78492594133985" a="8.7412072936723213" b="-0.00096991365649145905" c="0.00014212149926612545" d="3.8554173916698341e-06" /> - <laneOffset s="507.82189169043806" a="8.7396805004573483" b="-0" c="1.1845302940081394e-05" d="-8.6274755332493956e-07" /> - <laneOffset s="514.8806244601667" a="8.7399672672649107" b="3.8264632237889692e-05" c="-9.9838756676617989e-06" d="8.6290255192962212e-07" /> - <laneOffset s="518.43271177872975" a="8.7400158902091079" b="-0" c="-0.00013464774735805646" d="3.1789987881626539e-06" /> - <laneOffset s="524.97632297899349" a="8.7351411521652178" b="-0.0013538018220819621" c="-7.825297390897355e-05" d="2.6122866151252594e-06" /> - <laneOffset s="535.07202149782029" a="8.7161857934018645" b="-0.0021350814139482256" c="3.1251200595084357e-06" d="2.38794152747361e-06" /> - <laneOffset s="543.25520580835712" a="8.7002318518932533" b="-0.0016042125767033826" c="-6.0884506000381258e-07" d="-3.3966213561351667e-06" /> - <laneOffset s="545.16772001664708" a="8.6971377847633509" b="-0.0016438130001462077" c="-8.1421206005681411e-06" d="3.1908226837110487e-07" /> - <laneOffset s="555.26341853547387" a="8.6800408048124389" b="-0.001710648200717463" c="4.1083229919886359e-06" d="2.9210178470826739e-07" /> - <laneOffset s="565.35911705430067" a="8.6634899178458049" b="-0.0015383796367410506" c="1.3503665014005788e-05" d="4.8213057897229151e-07" /> - <laneOffset s="572.30677134994539" a="8.6536152970716387" b="-0.0012809248594499621" c="-5.5932020819153265e-05" d="5.1805209825907952e-06" /> - <laneOffset s="575.45481557312746" a="8.6491902127383344" b="-0.0014790580854360926" c="-1.6048803818180738e-05" d="4.3540922484006629e-06" /> - <laneOffset s="585.55051409195426" a="8.6371026403092017" b="-0.00047175774301928678" c="9.4128916269250323e-05" d="1.0305887617499826e-05" /> - <laneOffset s="587.4585374721546" a="8.6366167842166064" b="-0" c="2.3819834667071753e-05" d="-7.2140041088668824e-08" /> - <laneOffset s="595.64621261078105" a="8.6381740222417456" b="0.00037554975876369519" c="1.9933825380361992e-05" d="-3.5491701111781086e-07" /> - <laneOffset s="605.74191112960784" a="8.6436319728884836" b="0.00066951878501707199" c="6.7063288144650755e-06" d="-7.2149557964823098e-08" /> - <laneOffset s="614.96880631719705" a="8.6503238236740501" b="0.00077484848454917332" c="2.0289112245569659e-05" d="-6.9884162232410094e-07" /> - <laneOffset s="625.93330816726143" a="8.6603376324185621" b="0.00096772365187039716" c="4.8147199086974855e-06" d="-1.7879060596626692e-06" /> - <laneOffset s="629.71205764350782" a="8.6639666975236089" b="0.00092752264169629849" c="-3.1055610513730573e-06" d="2.0480994708027626e-07" /> - <laneOffset s="636.02900668608822" a="8.6697535135169623" b="0.00091280541315075345" c="3.8814185097103107e-06" d="5.3058244765071095e-07" /> - <laneOffset s="642.26829303254328" a="8.6757287381441337" b="0.0010232046215941787" c="5.5774556787888302e-05" d="-2.5252027757480169e-06" /> - <laneOffset s="646.12470520491502" a="8.6803592853415985" b="0.0013407201790776439" c="2.6270707078578279e-05" d="-2.5050924450690734e-06" /> - <laneOffset s="656.22040372374181" a="8.6939946817270393" b="0.0011051818779876277" c="-5.781893544701421e-05" d="-1.5293244026389645e-06" /> - <laneOffset s="661.52895449547202" a="8.6980034321124116" b="0.00036202002080496691" c="-5.821664624054024e-05" d="4.2049680531670294e-06" /> - <laneOffset s="666.3161022425686" a="8.6988636475045116" b="9.3729675175173254e-05" c="-1.8678291020251834e-06" d="2.7280476117827245e-06" /> - <laneOffset s="672.27440054047406" a="8.699932863417029" b="0.00036201937157872671" c="2.6619829723954952e-05" d="2.3575239178222113e-07" /> - <laneOffset s="676.4118007613954" a="8.7019030598454385" b="0.00059440003566507845" c="3.3251640588917005e-05" d="9.8575451142308174e-07" /> - <laneOffset s="687.13786904147162" a="8.7133206272480201" b="0.0016479476246549221" c="0.00016835535093056078" d="-9.5764005172934533e-06" /> - <laneOffset s="696.60319779904898" a="8.7358813632769863" b="0.0022611056037976545" c="-8.3557747757948144e-05" d="-1.2400077764202309e-05" /> - <laneOffset s="699.37646586314975" a="8.741244886944564" b="0.001511541956709346" c="-0.00017878551179101901" d="1.0924988774038848e-05" /> - <laneOffset s="706.69889631787578" a="8.7470162318136566" b="0.00065058074713946043" c="6.7807722096512545e-05" d="1.0536727359532695e-05" /> - <laneOffset s="710.12565530399308" a="8.7504658502146651" b="0.0014864903519534263" c="0.00012296828125753914" d="-3.1691867750750455e-06" /> - <laneOffset s="716.79459483670257" a="8.7649081695574331" b="0.0027037800049764626" c="5.8768706392155677e-05" d="-2.9989315297115641e-06" /> - <laneOffset s="726.89029335552937" a="8.7951087516724549" b="0.0029734208373862737" c="-3.9056551940228114e-05" d="-2.0879608545764045e-06" /> - <laneOffset s="730.51528516858241" a="8.8052746938280517" b="0.002607950515309993" c="5.5626312657727481e-07" d="-2.3128012752595346e-07" /> - <laneOffset s="736.98599187435616" a="8.8221106070346682" b="0.0025860982181656546" c="-1.3175190687558408e-05" d="-1.1616580326603049e-07" /> - <laneOffset s="744.04735944324136" a="8.8396741417293807" b="0.0023826513940375942" c="-4.8392630661454266e-05" d="4.4882860222962508e-06" /> - <laneOffset s="747.08169039318295" a="8.8465837275612955" b="0.0022129460407904599" c="-1.9448145653026499e-05" d="2.3124963605872926e-06" /> - <laneOffset s="755.6101214696838" a="8.865476601420065" b="0.0023858139799750469" c="1.3103233371217844e-05" d="2.8006840449401535e-06" /> - <laneOffset s="757.17738891200975" a="8.8692587776774907" b="0.0024475247115785408" c="1.7203039187795185e-05" d="-3.2715667076316468e-07" /> - <laneOffset s="767.27308743083654" a="8.8953849974929344" b="0.0026948436118104427" c="5.2254049348294006e-06" d="-3.6783889153315757e-07" /> - <laneOffset s="774.07398288249158" a="8.9138383275032993" b="0.0027148784264182427" c="-2.3386263990852042e-05" d="2.7474930156038846e-06" /> - <laneOffset s="777.36878594966333" a="8.9226277132772935" b="0.0026502502621718461" c="1.4117540122675478e-05" d="1.6956634569098158e-06" /> - <laneOffset s="784.52118302939084" a="8.9429259959250338" b="0.0031124328352008339" c="0.00014885255402863072" d="-1.9283146048460179e-05" /> - <laneOffset s="787.46448446849013" a="8.9528846576009791" b="0.0034875176740749377" c="1.75704295490738e-05" d="-1.4918239543188238e-05" /> - <laneOffset s="791.29783595587526" a="8.9656713917765263" b="0.0029645729830130815" c="-6.8636275938049887e-05" d="1.6290210038498816e-06" /> - <laneOffset s="797.56018298731692" a="8.9819449403505178" b="0.0022965805281990373" c="-4.2157624864255075e-05" d="3.8549176282556177e-06" /> - <laneOffset s="799.877776691284" a="8.9870890295547827" b="0.0021632891062318424" c="-0.00014634390208031816" d="6.6435071231573496e-06" /> - <laneOffset s="807.65588150614371" a="8.9981878862872016" b="0.0010925075959304145" c="-2.0112763858365952e-07" d="6.4243952037063301e-06" /> - <laneOffset s="816.46037115205093" a="9.0121760166162161" b="0.0025830047498292112" c="-0.00023055503140369531" d="4.2147013621552408e-05" /> - <laneOffset s="817.75158002497062" a="9.0152175603555929" b="0.0021984204221912025" c="-8.9711327823046441e-05" d="3.228391179675598e-05" /> - <laneOffset s="825.03977019603735" a="9.0389729414780575" b="0.0060352969584701677" c="0.00096499411168658635" d="-0.00011275799750677231" /> - <laneOffset s="827.84727854379742" a="9.0610280415159181" b="0.0087874445138808131" c="-1.8986414666179173e-06" d="-0.00011205180407882825" /> - <laneOffset s="830.5749617343165" a="9.0827092265488876" b="0.0062760045447799286" c="-0.0004743707369754563" d="3.1576610510862178e-05" /> - <laneOffset s="836.20356326788237" a="9.1086365024994258" b="0.0039370673266376039" c="-0.00018032102031099081" d="1.2765135867130183e-05" /> - <laneOffset s="837.94297706262421" a="9.115006298687506" b="0.0034256266530133697" c="-0.00011244937466049251" d="9.9811315639981837e-06" /> - <laneOffset s="841.2017231933753" a="9.1253208056204453" b="0.0030107203982961865" c="-0.00023122527308950611" d="1.1919594934512696e-05" /> - <laneOffset s="848.038675581451" a="9.1389059174120408" b="0.0015204737353211833" c="2.2305251865784221e-05" d="1.2117816927781675e-05" /> - <laneOffset s="854.99745317662814" a="9.1546500910795299" b="0.0035913090992073923" c="0.00019566150733356483" d="-9.4084718446549214e-06" /> - <laneOffset s="858.1343741002778" a="9.1675506841661853" b="0.00454111266078193" c="0.00010855459160643832" d="-8.6366313336756423e-06" /> - <laneOffset s="864.75859211597015" a="9.1998849779567919" b="0.0048423582263401339" c="0.00018383684706696089" d="-7.2668812659034682e-06" /> - <laneOffset s="868.23007261910459" a="9.2186065674199771" b="0.0058560068724572475" c="0.00010430902873356904" d="-7.879290049987404e-06" /> - <laneOffset s="878.32577113793138" a="9.280250877199741" b="0.0055529062075051865" c="-0.00013526813428292185" d="-7.8714883114082898e-06" /> - <laneOffset s="885.7397262725442" a="9.3107768317654749" b="0.0022491525145087433" c="-0.0012380136806127455" d="0.00053060674605237351" /> - <laneOffset s="887.79930570587635" a="9.3147932762761272" b="0.0039018679270475753" c="0.033627486086945095" d="-0.039392842459194617" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929732041174404" b="-0.0023776363791647541" c="0.010806480259745604" d="-0.011643535316631804" /> - <width sOffset="0.60598108285555219" a="2.4929097141758412" b="-0.0021075663047371079" c="-0.0039676116797897508" d="0.0032437570516927333" /> - <width sOffset="1.4738337465583145" a="2.4902126243525267" b="-0.0016648866082038813" c="0.0016862095840554181" d="-0.00024973474552314798" /> - <width sOffset="5.0751262947558473" a="2.4944216730627957" b="0.00076352089907400812" c="-0.00078269992274589985" d="0.00012751442119258617" /> - <width sOffset="8.5755068452161396" a="2.4929730919240765" b="-2.8800200439633473e-05" c="-0.00039161483994703042" d="0.00012730284869636707" /> - <width sOffset="10.095698518826797" a="2.4924715272786049" b="-0.00033687538598307053" c="0.00018713294540875552" d="0.00012899005413936001" /> - <width sOffset="11.934794777105072" a="2.4932872767324863" b="0.0016602751377854891" c="-0.00025808376089745078" d="1.0454042025871398e-05" /> - <width sOffset="20.191397037653594" a="2.4952857683221676" b="-0.0004635122109528321" c="-2.5559701729781786e-07" d="1.0509638316802966e-05" /> - <width sOffset="27.333607434779793" a="2.4957912311328361" b="0.0011411635538704223" c="-0.0022841516480178849" d="0.00055497393264796271" /> - <width sOffset="29.78420645568028" a="2.4930379438064634" b="-5.5335458514479095e-05" c="6.008394258089913e-05" d="0.0001080115837245685" /> - <width sOffset="30.034231254758723" a="2.4930295527443196" b="-5.0343171274910489e-06" c="-0.00051845882158160978" d="0.00010672639237099513" /> - <width sOffset="33.987986622544355" a="2.4915013182438237" b="0.00090034599707011678" c="-0.00017024127687741681" d="1.0353387076282701e-05" /> - <width sOffset="40.382794075307189" a="2.4930045628398272" b="-6.8137351579349525e-06" c="2.6561300630625387e-05" d="1.0836231077058183e-05" /> - <width sOffset="40.488629557911928" a="2.4930041520681119" b="-8.2734422938623086e-07" c="-4.2974417940387741e-06" d="4.6540016157691433e-08" /> - <width sOffset="50.478492594133982" a="2.492613412279054" b="-7.275534135964921e-05" c="-4.6312195936909545e-06" d="7.6826030022683415e-07" /> - <width sOffset="54.261015924485903" a="2.4923135294169843" b="-7.4815120718442154e-05" c="1.7316841273346184e-05" d="-4.3236754373748584e-07" /> - <width sOffset="60.574191112960783" a="2.4924225997008058" b="9.2135827427890444e-05" c="9.2503192364799137e-06" d="-4.5030125709027217e-07" /> - <width sOffset="69.14660299633762" a="2.4936085279509825" b="0.00015145807434318556" c="6.5741455428910194e-05" d="-6.1589937570424253e-06" /> - <width sOffset="70.669889631787584" a="2.4939700188165101" b="0.00030887020774139195" c="4.0378669699579062e-05" d="-3.4565332081692046e-06" /> - <width sOffset="80.765588150614377" a="2.4976470782197122" b="6.7269923614396508e-05" c="-6.6908706941697731e-05" d="-3.3235721152949695e-06" /> - <width sOffset="83.303705957729804" a="2.497332445907551" b="-0.00033660621096460482" c="-0.00034127246416394333" d="5.2870417477939995e-05" /> - <width sOffset="87.681971464180108" a="2.4937540737703152" b="-0.00028451690419944151" c="2.6645430137022446e-05" d="-1.5340917045170986e-07" /> - <width sOffset="90.861286669441171" a="2.4931139080035543" b="-0.00011974046229870199" c="2.2508454398365145e-05" d="-1.2127768944144351e-06" /> - <width sOffset="99.682928601957045" a="2.4929766530278101" b="-5.7572771196527655e-06" c="0.001447182910149881" d="-0.00019738368543564458" /> - <width sOffset="100.95698518826796" a="2.494910210301807" b="0.0027206370121897407" c="0.00072666938172914644" d="-0.00018420743897229331" /> - <width sOffset="101.36848042595275" a="2.4961399500197281" b="0.0032251043776986058" c="-0.0021927790560705793" d="0.00026103185888036397" /> - <width sOffset="105.44438849257538" a="2.4905317766273587" b="-0.0016404396885431327" c="0.0028956430840500575" d="-0.0007485084585131536" /> - <width sOffset="107.69447800164889" a="2.4929740032311969" b="2.1595853649839306e-05" c="0.0023114471971080386" d="-0.00062646044660511358" /> - <width sOffset="110.84428893988682" a="2.4963975638747105" b="-0.0040630837179938739" c="0.00092744352258010518" d="-6.1373469114160722e-05" /> - <width sOffset="111.05268370709477" a="2.4955905604129054" b="-0.0036845310148037659" c="0.00088695379981233073" d="-5.9052869048565271e-05" /> - <width sOffset="118.0948071093801" a="2.493006006909841" b="2.1983783115371062e-05" c="0.00022298824653214019" d="-6.7239409761012413e-06" /> - <width sOffset="121.14838222592157" a="2.4949609025237702" b="0.0011957179529146489" c="0.00013533683822511508" d="-1.1647848895870277e-05" /> - <width sOffset="121.26427764052661" a="2.495101280429914" b="0.0012266184379725713" c="-0.00024547530933029444" d="9.8184244099344643e-06" /> - <width sOffset="131.24408074474837" a="2.4926532706167208" b="-0.00073933083361008738" c="4.6727313495133351e-05" d="1.1687142951106249e-05" /> - <width sOffset="133.80872966688554" a="2.4912616398343221" b="-0.00026903863832551477" c="0.00051665945459343932" d="-8.6043074323309567e-05" /> - <width sOffset="137.55895891387445" a="2.4929808352396492" b="-2.4241870311788281e-05" c="0.00023073075921099779" d="-8.6043221251197054e-05" /> - <width sOffset="139.75605336801445" a="2.4931287996532507" b="-0.00025641704580269356" c="-8.6162702251839422e-05" d="1.0575186763914033e-05" /> - <width sOffset="141.33977926357517" a="2.4925486007289539" b="-0.00044975959088307835" c="-3.4372187554318473e-05" d="7.4222336365988518e-06" /> - <width sOffset="149.3148801939976" a="2.4905403857071615" b="0.00041820901983621937" c="6.0356971111701757e-05" d="-1.2056439444786418e-05" /> - <width sOffset="151.43547778240196" a="2.4915836876003201" b="0.0005115436724511869" c="-6.6583911496016302e-06" d="-9.2327869678410001e-06" /> - <width sOffset="155.56520828167126" a="2.4929323920823077" b="-1.5837565014661676e-05" c="-0.00027597010333125523" d="5.0440424081466719e-05" /> - <width sOffset="157.69219850309233" a="2.4921355654160777" b="-0.00050521832597701967" c="0.0011384330458061795" d="-0.00018519703605454909" /> - <width sOffset="161.53117630122875" a="2.4964959268603337" b="4.7456897699065664e-05" c="-0.00098935301113696169" d="-0.00018385704359917513" /> - <width sOffset="162.47228357676374" a="2.4955110868384125" b="-0.0023032348569324472" c="0.00040078511292695746" d="5.8570093196560397e-05" /> - <width sOffset="164.47238655980601" a="2.4929763186126763" b="2.9016438587112789e-06" c="-0.00011538141426067113" d="9.8502387400529384e-06" /> - <width sOffset="171.62687482005555" a="2.4906983861262795" b="-0.00013548459078900719" c="8.8953118416093324e-05" d="9.8148515167774684e-06" /> - <width sOffset="172.07720851871449" a="2.4906563089504736" b="-4.9396048525763973e-05" c="6.2755572964540482e-05" d="-2.590589576900112e-06" /> - <width sOffset="181.72257333888234" a="2.4936935751595648" b="0.0004381732967877756" c="-1.3154915610737948e-05" d="-2.5219143430342282e-06" /> - <width sOffset="187.20396975304703" a="2.4952847877638309" b="6.6640586638924909e-05" c="-8.4771117389033761e-05" d="5.5483697197040293e-06" /> - <width sOffset="191.81827185770914" a="2.4943324683942336" b="-0.00036127443670343987" c="-8.4848785771303274e-06" d="5.160921321201021e-06" /> - <width sOffset="197.20437444953268" a="2.4929468611118253" b="-3.5187413411829835e-06" c="-6.057031003930556e-05" d="7.9153408135928502e-06" /> - <width sOffset="201.69713041625721" a="2.4924262569612452" b="-6.8463937280307131e-05" c="9.898615711154295e-05" d="-5.3079925483010655e-06" /> - <width sOffset="201.91397037653593" a="2.4924160114113754" b="-2.6284367100214492e-05" c="9.7434098241079635e-05" d="-5.1973767344274095e-06" /> - <width sOffset="212.00966889536275" a="2.4967334168631599" b="0.00035184750389826791" c="-6.0585396573000096e-05" d="-5.0220538735569864e-06" /> - <width sOffset="216.76413592067979" a="2.4964969911169419" b="-0.00056482496753742194" c="-9.5352118161027259e-06" d="3.1967139591794318e-06" /> - <width sOffset="222.10536741418954" a="2.4936952135500778" b="-0.00039308971766123849" c="4.0551620424543126e-05" d="3.4529245785558171e-06" /> - <width sOffset="225.51439202992884" a="2.4929632269012494" b="3.7771857283358697e-06" c="-5.4167020949075338e-05" d="8.2209032899804092e-07" /> - <width sOffset="230.46325900325695" a="2.4917549405052455" b="-0.00047195143235688962" c="9.8851839855845896e-06" d="-1.5924718831803204e-07" /> - <width sOffset="232.20106593301634" a="2.4909637972736487" b="-0.00043903711648704048" c="1.0154855866566018e-05" d="7.2439068820410815e-07" /> - <width sOffset="242.29676445184313" a="2.4883118128686892" b="-1.2499894050584234e-05" c="3.3129584264356948e-05" d="6.5246247978111118e-07" /> - <width sOffset="252.39246297066992" a="2.4922336628047947" b="0.00085593574719179904" c="4.2727183932918713e-05" d="5.7267870473831266e-06" /> - <width sOffset="254.70817730196902" a="2.4945160071903256" b="0.0011459539027767157" c="-0.00072264528143481442" d="8.7544501996197961e-05" /> - <width sOffset="259.20824899690689" a="2.4930167227167814" b="-3.9459287097110777e-05" c="-0.00023488714891719707" d="0.00012097119889310288" /> - <width sOffset="260.76115170419524" a="2.4928420315579487" b="0.00010619554682624464" c="0.0005973165248944161" d="-0.0001163691561394028" /> - <width sOffset="262.48816148949675" a="2.4942075587045718" b="0.001128103565661967" c="-1.229396284839685e-06" d="-0.00012242199359209694" /> - <width sOffset="264.52516254476893" a="2.4954656609368229" b="-0.00040082865172478329" c="-0.00023888833490498079" d="4.5670853197980489e-05" /> - <width sOffset="268.77521555258198" a="2.4929531725098197" b="4.3446266992485457e-05" c="-9.4990524541681287e-05" d="1.2773915888233589e-05" /> - <width sOffset="272.58386000832354" a="2.4924464576974614" b="-0.00012423744540789082" c="3.9873395375190875e-05" d="9.8225019699807746e-06" /> - <width sOffset="274.37570661527781" a="2.4924083752410269" b="0.00011326831252791471" c="9.4601985719368418e-06" d="-4.5263245406776698e-07" /> - <width sOffset="282.67955852715033" a="2.4937420868065967" b="0.00017674809277715533" c="-1.1828596101462173e-06" d="-4.9476548615896348e-07" /> - <width sOffset="292.77525704597713" a="2.4948968151609368" b="1.5803659565935286e-06" c="-2.36615441103352e-05" d="2.5947014929420588e-06" /> - <width sOffset="294.9379661344953" a="2.4948158077653115" b="-6.4357032634477281e-05" c="-1.0010806219349835e-05" d="3.6243312785376841e-07" /> - <width sOffset="302.87095556480392" a="2.4938562024687112" b="-0.00015476199833362259" c="-1.3644777250428817e-06" d="2.8245220534373301e-07" /> - <width sOffset="309.72821614544756" a="2.4928218731437628" b="-0.00013363073495957804" c="3.0858188773043402e-05" d="-2.0626114080965366e-06" /> - <width sOffset="312.96665408363071" a="2.4926426903655177" b="1.3391340916721686e-06" c="1.5265255522567701e-05" d="-6.1178634326592252e-07" /> - <width sOffset="323.06235260245751" a="2.4935825733815769" b="0.00012250043483941599" c="-4.1021935071301404e-06" d="-6.6873343998112749e-07" /> - <width sOffset="333.1580511212843" a="2.4937130756458856" b="-0.00016480679616152254" c="-2.5638211910673861e-05" d="1.726893252359603e-06" /> - <width sOffset="334.29676935318548" a="2.4934947124540781" b="-0.00021647851509865924" c="-3.2299891675164759e-05" d="1.9275478237873736e-06" /> - <width sOffset="343.2537496401111" a="2.4903495075827404" b="-0.00033117049594556282" c="1.6303770575910145e-05" d="2.693361306520287e-06" /> - <width sOffset="348.36118606440226" a="2.4894422161810166" b="4.6146763728796298e-05" c="6.1902015283031979e-05" d="-2.0236498570700639e-06" /> - <width sOffset="353.34944815893789" a="2.4909615223388197" b="0.00051265174314523375" c="2.9262085071817543e-05" d="-2.8404703741871249e-06" /> - <width sOffset="363.44514667776468" a="2.4961967811277948" b="0.00023496523942634589" c="-5.5820468470787239e-05" d="-2.66046100334888e-06" /> - <width sOffset="364.22349151778155" a="2.4963445934078798" b="0.00014323480526888836" c="-8.1063932437988291e-05" d="3.874239718258337e-06" /> - <width sOffset="373.54084519659148" a="2.4937755023071304" b="-0.0003583638100983043" c="2.7018487252601596e-05" d="3.8994814411150682e-06" /> - <width sOffset="377.22315560943599" a="2.493016951202133" b="-7.5889353403474878e-07" c="-1.68208398494657e-05" d="5.1258582524980987e-06" /> - <width sOffset="381.66806220649562" a="2.4931313925397927" b="0.00015352472026588116" c="5.2220185200624325e-05" d="-3.0929768704376323e-06" /> - <width sOffset="383.63654371541827" a="2.4936123598019471" b="0.00032315854947284161" c="3.3989549297587893e-05" d="-3.0898609715037608e-06" /> - <width sOffset="393.73224223424506" a="2.4971597711521483" b="6.4670143163780489e-05" c="-6.2691296817009434e-05" d="-1.7799988647563265e-06" /> - <width sOffset="396.34974954371216" a="2.4968676045414071" b="-0.00030010586853092183" c="-1.7666130149136558e-05" d="1.4157270865467329e-06" /> - <width sOffset="403.82794075307186" a="2.4942274711984336" b="-0.00032681068928980912" c="1.1430835260994027e-05" d="1.6798162223535653e-06" /> - <width sOffset="410.09921374631273" a="2.4930418272395425" b="1.4756883712325423e-05" c="3.7992065704320218e-05" d="-5.9117062982492494e-08" /> - <width sOffset="413.92363927189871" a="2.4936506377292886" b="0.00030275855602443546" c="2.6023588003661744e-05" d="-2.112355282026912e-06" /> - <width sOffset="424.0193377907255" a="2.4971860200647544" b="0.00018231757668229302" c="-1.2893394839684988e-05" d="-1.7572104956287422e-05" /> - <width sOffset="425.31593574949653" a="2.4973624331047901" b="6.0257587555277621e-05" c="-0.00014687428938626139" d="6.3137826744739175e-06" /> - <width sOffset="434.11503630955229" a="2.4908223725561989" b="-0.0010579475344285032" c="1.6588869362524004e-05" d="9.3297642816769881e-06" /> - <width sOffset="436.06407404866161" a="2.4888924864954216" b="-0.00088695859630798018" c="0.00094160936868272469" d="-0.0001217644792554192" /> - <width sOffset="440.52020172209973" a="2.4928632826572894" b="0.00025124576668794467" c="-0.00012470597196275441" d="-5.0276529297472829e-06" /> - <width sOffset="441.52014979285741" a="2.4929847954867377" b="-1.3234617786667298e-05" c="8.0524904326549385e-05" d="-6.8631995853046958e-06" /> - <width sOffset="444.21073482837909" a="2.4933984462508718" b="0.00027103037916715797" c="2.8877841910396902e-05" d="-5.2815490364792993e-06" /> - <width sOffset="452.15411157017218" a="2.4947263152902881" b="-0.00026994787255840398" c="1.4829007081267532e-05" d="-2.3479771702069515e-06" /> - <width sOffset="454.30643334720588" a="2.4941905850605117" b="-0.00023874521827329056" c="6.0593777940917706e-06" d="5.7416626790318877e-07" /> - <width sOffset="463.153497658741" a="2.4929502513678408" b="3.2911152474141979e-06" c="-0.00035848847247684298" d="2.2071172581595993e-05" /> - <width sOffset="464.40213186603268" a="2.4924384125225618" b="-0.00078871816392194741" c="-0.00028117678461687728" d="1.6237608767440982e-05" /> - <width sOffset="466.28889600311697" a="2.4900583944364421" b="-0.0016763349477652012" c="0.0024205006512211442" d="-0.00040708159696281734" /> - <width sOffset="469.89795351684353" a="2.4963996267279427" b="-0.00011195788078852001" c="-0.00017925152925236471" d="1.7811098859911495e-05" /> - <width sOffset="474.49783038485947" a="2.4938253968622401" b="-0.00063043978028578867" c="6.2923094654508509e-05" d="1.9164369480823569e-05" /> - <width sOffset="476.89749942652338" a="2.492939705769885" b="2.6184015856692538e-06" c="-1.6652416457598444e-06" d="9.5877390655164464e-08" /> - <width sOffset="484.59352890368626" a="2.4929049302007442" b="-5.9769675593835097e-06" c="4.7836730040152232e-07" d="1.6861067503456174e-08" /> - <width sOffset="493.55151756896407" a="2.4929018958354003" b="6.6525276087507461e-06" c="8.2077644570314475e-07" d="8.6795885084193831e-06" /> - <width sOffset="494.68922742251306" a="2.4929233087306226" b="4.2224292447822246e-05" c="3.1590687466783913e-05" d="-2.4224759578780567e-05" /> - <width sOffset="496.05134064256703" a="2.4929782140421715" b="-6.5519207356147437e-06" c="0.00012048952563656844" d="-8.1879176280726212e-06" /> - <width sOffset="504.78492594133985" a="2.4966569400674228" b="0.00022444634669089962" c="-0.00010078797662197244" d="-5.5798442208801793e-06" /> - <width sOffset="507.82189169043806" a="2.4962526984013635" b="-0.00054212432331565707" c="1.3777144052659187e-05" d="-8.6167927589317479e-07" /> - <width sOffset="514.8806244601667" a="2.492809385554434" b="-0.00047642730770119284" c="-1.3892083792826432e-06" d="-2.0562783154081542e-06" /> - <width sOffset="518.43271177872975" a="2.4910073881160422" b="-0.00056413067782115124" c="0.00011055773856399121" d="-4.3723745516313872e-06" /> - <width sOffset="524.97632297899349" a="2.4908247961000178" b="0.00032110291691738423" c="2.5907252897596081e-05" d="-4.0378673286842967e-06" /> - <width sOffset="532.68154071871413" a="2.4929899177653265" b="1.1558080188745455e-06" c="1.8756565462416767e-05" d="-2.3367081869294288e-06" /> - <width sOffset="535.07202149782029" a="2.493067943382627" b="5.0771582194697636e-05" c="2.0311466389324333e-06" d="-2.3844302118968431e-06" /> - <width sOffset="543.25520580835712" a="2.4923128043680762" b="-0.00039500249302155672" c="5.8513129882223507e-06" d="3.4001326713862058e-06" /> - <width sOffset="545.16772001664708" a="2.4916025442653353" b="-0.00033531095065870162" c="1.7448568151284594e-05" d="-2.3359494415743114e-07" /> - <width sOffset="555.26341853547387" a="2.4897553929174343" b="-5.4426165967886566e-05" c="1.1115761194439767e-05" d="-2.4138057088411865e-07" /> - <width sOffset="565.35911705430067" a="2.4900904988820489" b="9.620979279474336e-05" c="3.963837428118211e-06" d="-2.2350110778874221e-07" /> - <width sOffset="572.30677134994539" a="2.49087531139131" b="0.0001189234085536442" c="7.8790127730389372e-05" d="-4.9218915113800015e-06" /> - <width sOffset="575.45481557312746" a="2.491876960422033" b="0.00046866249309414592" c="3.5078409543311311e-05" d="-3.8426054480695301e-06" /> - <width sOffset="585.55051409195426" a="2.4962297528537629" b="1.9934801003575198e-06" c="-6.7905279025583503e-05" d="-9.9135146552907944e-06" /> - <width sOffset="587.4585374721546" a="2.4959174818213885" b="-0.00036540827301699503" c="4.6497729335610906e-06" d="4.6451300329124726e-07" /> - <width sOffset="595.64621261078105" a="2.4934923136610365" b="-0.00019584651068560856" c="1.6855706506576028e-05" d="2.7886245592017568e-07" /> - <width sOffset="600.70714412884433" a="2.4929690213255675" b="-3.8078225190285673e-06" c="-6.956807747494726e-06" d="1.3674447784736316e-07" /> - <width sOffset="605.74191112960784" a="2.4927909546597693" b="-6.3460677111261583e-05" c="-4.0222182144586535e-06" d="3.449121490537192e-07" /> - <width sOffset="614.96880631719705" a="2.492133917030678" b="-4.9592945990167164e-05" c="-1.0054746133568037e-05" d="9.7160421785337118e-07" /> - <width sOffset="615.83760964843464" a="2.492083878166083" b="-6.4863983224362136e-05" c="-9.4815793427369235e-06" d="6.3255159034126993e-07" /> - <width sOffset="625.93330816726143" a="2.4911135249271457" b="-6.2895405045470892e-05" c="6.4874336160440634e-06" d="1.6457515126146694e-06" /> - <width sOffset="629.71205764350782" a="2.491057291772707" b="5.6632166565769352e-05" c="1.2796215315483553e-05" d="-3.4696449412488069e-07" /> - <width sOffset="636.02900668608822" a="2.4918381929450479" b="0.00017676259434201507" c="5.8566088217155206e-06" d="-4.9241448019886158e-07" /> - <width sOffset="642.26829303254328" a="2.4930494543112136" b="0.00019233755522888338" c="-4.5322106822133107e-05" d="2.5633707432475375e-06" /> - <width sOffset="646.12470520491502" a="2.4932641757244483" b="-4.2857199411082793e-05" c="-1.5748903748323762e-05" d="2.5925829236921673e-06" /> - <width sOffset="651.26717656346887" a="2.4929798762514359" b="8.4888472574092683e-07" c="-5.8445870243403178e-05" d="4.0627082159929021e-06" /> - <width sOffset="656.22040372374181" a="2.4920438627464776" b="-0.00027911341093091852" c="3.9404692582987628e-06" d="3.2634374137047268e-06" /> - <width sOffset="661.52895449547202" a="2.4911614263744131" b="3.8620914078890494e-05" c="3.195506094128502e-05" d="-2.4708550420787314e-06" /> - <width sOffset="666.3161022425686" a="2.4918075499169348" b="0.00017469595949718263" c="-1.9495358406072304e-06" d="-1.4971303143450627e-06" /> - <width sOffset="672.27440054047406" a="2.4924625453099782" b="-7.9861735217600315e-06" c="-8.4346773524075354e-06" d="9.9516490568544646e-07" /> - <width sOffset="676.4118007613954" a="2.4923555997352249" b="-2.6675506242126871e-05" c="1.7362240841159665e-06" d="4.8518658814435694e-07" /> - <width sOffset="686.50749928022219" a="2.4927625030648368" b="0.0001567364886172159" c="2.7981896345429644e-05" d="-1.6190812182429576e-06" /> - <width sOffset="687.13786904147162" a="2.4928720185033129" b="0.00019008426759787081" c="-7.8463862916608947e-05" d="8.9430738236089764e-06" /> - <width sOffset="690.63737490637754" a="2.4929595804866338" b="-3.0520060569714635e-05" c="-0.00014552722257685804" d="1.0342485419508328e-05" /> - <width sOffset="696.60319779904898" a="2.48979405606398" b="-0.00066259980922124084" c="3.7848211080677711e-05" d="1.4598580023529235e-05" /> - <width sOffset="699.37646586314975" a="2.488558957100766" b="-0.00011583961217272371" c="0.00015136708342775945" d="-8.7264865147169721e-06" /> - <width sOffset="706.69889631787578" a="2.4924005873649655" b="0.00069722032938202667" c="-4.2579667459335496e-05" d="-8.1711624443912279e-06" /> - <width sOffset="710.12565530399308" a="2.4939609920492316" b="0.00011754584564853789" c="-7.3421564129711221e-05" d="5.5347516902181523e-06" /> - <width sOffset="716.79459483670257" a="2.4931210964456998" b="-0.00012327192973591574" c="3.5845458825383096e-05" d="7.014157234571185e-06" /> - <width sOffset="718.12443291336581" a="2.4930370520730545" b="9.2783477338817706e-06" c="-5.7528067729618601e-05" d="3.2708191845179507e-06" /> - <width sOffset="726.89029335552937" a="2.4909010406046157" b="-0.00024529540539192313" c="3.0065691853088475e-05" d="2.3641308866164752e-06" /> - <width sOffset="730.51528516858241" a="2.4905195410234207" b="6.5878419573350139e-05" c="-6.543780898451676e-06" d="5.07450159575081e-07" /> - <width sOffset="736.98599187435616" a="2.4908093154062758" b="4.4933529157774495e-05" c="5.0203020176321399e-06" d="5.0252385389869823e-07" /> - <width sOffset="744.04735944324136" a="2.4915538732737428" b="0.00019100583289384737" c="4.8422390617428287e-05" d="-4.1019279717446745e-06" /> - <width sOffset="747.08169039318295" a="2.4924646831352106" b="0.00037156357542214103" c="1.6807556714858698e-05" d="-2.124768303054725e-06" /> - <width sOffset="755.6101214696838" a="2.4955380096775261" b="0.00019461818927215928" c="-1.0940744912864906e-05" d="-2.6129559871955396e-06" /> - <width sOffset="757.17738891200975" a="2.4958060952261718" b="0.00014106921780961254" c="-1.7650082009956059e-05" d="5.3545174523440363e-07" /> - <width sOffset="767.27308743083654" a="2.495982307850797" b="-5.1585844560033713e-05" c="-1.6454832799464269e-06" d="4.7567751286649936e-07" /> - <width sOffset="774.07398288249158" a="2.4957049980548085" b="-7.9639997348211235e-06" c="2.9166383213603331e-05" d="-2.639654394329563e-06" /> - <width sOffset="777.36878594966333" a="2.4959009667502841" b="9.8264873579910917e-05" c="2.2104585834014035e-06" d="-2.2639275565220095e-06" /> - <width sOffset="784.52118302939084" a="2.495888519420248" b="-0.00021756073029553964" c="-0.0001447179067809927" d="1.8714881948700398e-05" /> - <width sOffset="787.46448446849013" a="2.4944716679873551" b="-0.0005830751983011361" c="5.6601425493023521e-06" d="1.252146512584846e-05" /> - <width sOffset="791.29783595587526" a="2.4930250371666034" b="1.2312582650818651e-05" c="-3.6505259595632537e-05" d="4.6038607747643154e-07" /> - <width sOffset="797.56018298731692" a="2.4917835828213502" b="-0.00039073975640553605" c="-2.5000929475037231e-05" d="-1.1003654519201605e-06" /> - <width sOffset="799.877776691284" a="2.4907300230772123" b="-0.00052435473258664552" c="9.8337146084442629e-05" d="-3.888954946829198e-06" /> - <width sOffset="807.65588150614371" a="2.4907708141344287" b="0.00029956586769584997" c="8.1606282040087825e-06" d="-3.7339094475266224e-06" /> - <width sOffset="816.46037115205093" a="2.4914924914392138" b="-0.00042508100346419931" c="0.0003095795939171026" d="-3.9456527866523471e-05" /> - <width sOffset="817.75158002497062" a="2.4913748212359081" b="0.00017703465460657073" c="0.00016894210422383973" d="-2.8798755672575165e-05" /> - <width sOffset="821.95929424084773" a="2.4929654080753405" b="6.9121122832113517e-05" c="0.00045636944062906772" d="-7.6619285711487868e-05" /> - <width sOffset="825.03977019603735" a="2.4952692663562583" b="0.00069959375535644502" c="-0.00060053373497140502" d="6.8422623592015349e-05" /> - <width sOffset="827.84727854379742" a="2.4940140418853396" b="-0.0010544706674867413" c="-1.9451861154046012e-05" d="6.8443181108635489e-05" /> - <width sOffset="830.5749617343165" a="2.4923820842488613" b="0.00036711658520310192" c="9.61687108430507e-05" d="-7.5185233481061165e-05" /> - <width sOffset="832.32459817549409" a="2.492916104344328" b="1.3159794441030756e-05" c="0.00012368852127097216" d="-2.6979218878513438e-05" /> - <width sOffset="836.20356326788237" a="2.493253589575561" b="-0.00024509123676486749" c="4.888093489753472e-05" d="-8.1677442351246775e-06" /> - <width sOffset="837.94297706262421" a="2.4929321823167445" b="-0.00014917890114214249" c="4.6599042210766599e-06" d="-6.1544628658101095e-06" /> - <width sOffset="841.2017231933753" a="2.4922825502282606" b="-0.00031487860672750828" c="0.00016084622809161886" d="-8.0929262363122544e-06" /> - <width sOffset="848.038675581451" a="2.4950619376248788" b="0.00074963215973947433" c="-7.7422103166273117e-06" d="-8.1952164102999572e-06" /> - <width sOffset="854.99745317662814" a="2.497141957174895" b="-0.0005486703558215001" c="-9.9208951996636704e-05" d="1.3331072362096921e-05" /> - <width sOffset="858.1343741002778" a="2.4948560841422136" b="-0.00077754746095729096" c="2.4959182616102689e-05" d="1.3130668218985195e-05" /> - <width sOffset="861.99591724421521" a="2.4929818133627712" b="2.6089462026460467e-06" c="0.00010850974952487375" d="4.5251390660285579e-06" /> - <width sOffset="864.75859211597015" a="2.4939126238678639" b="0.00070577590308524858" c="-0.00010090082859519361" d="3.155388998242794e-06" /> - <width sOffset="868.23007261910459" a="2.4952787444635423" b="0.00011930383751090467" c="-6.7374084873335718e-05" d="3.5351012412691532e-06" /> - <width sOffset="878.32577113793138" a="2.4932537893044344" b="-0.00016014732511078229" c="3.9624023635224066e-05" d="3.5115783366664224e-06" /> - <width sOffset="885.7397262725442" a="2.4956755087375111" b="0.0010064540845503623" c="0.0010453970391347601" d="-0.00053496665602726496" /> - <width sOffset="887.79930570587635" a="2.4975091001690597" b="-0.0014951623551199178" c="-0.033847041471185668" d="0.039388482549235049" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15156858239945137" weight="standard" type="solid"> - <type name="solid"> - <line length="888.42146965675818" space="0" width="0.15156900000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.8624581663626669" b="1.6107005194746895e-09" c="0.024846259186445091" d="-0.055472827257672101" /> - <width sOffset="0.35200824716851514" a="3.8631172886008533" b="-0.0031287039031955835" c="-0.078758025444693777" d="0.15472861693685538" /> - <width sOffset="0.60598108285555219" a="3.8597773511243556" b="-0.013192492839549524" c="0.032739376892654867" d="0.13984132456851697" /> - <width sOffset="0.72700220322387277" a="3.8589081526133651" b="0.00087621423124063108" c="0.0031978304178540192" d="-0.0032376157354170282" /> - <width sOffset="1.4738337465583145" a="3.8599975190947502" b="0.00023528352508228213" c="-0.001264541922051161" d="0.00025587606180431995" /> - <width sOffset="5.0751262947558473" a="3.8563956272346216" b="0.0010829191032419689" c="0.0012707176144278638" d="-0.00012137310491137483" /> - <width sOffset="10.095698518826797" a="3.8785027155491854" b="0.0046643338115782643" c="-0.00055394479612640049" d="-0.00012315015743087884" /> - <width sOffset="11.934794777105072" a="3.8844412462050606" b="0.0013772350942619987" c="-7.6507693264224013e-05" d="-4.6141453173900701e-06" /> - <width sOffset="18.667910663572322" a="3.8888374210902823" b="-0.00028057998681475284" c="-0.00018763759009458685" d="1.2332849717600865e-05" /> - <width sOffset="20.191397037653594" a="3.8880180617478803" b="-0.00076643258070828793" c="-0.00013603848140740523" d="7.6904460879957178e-06" /> - <width sOffset="27.333607434779793" a="3.8784064364684019" b="-0.0015327675498701576" c="0.0025378240657865894" d="-0.00053677384824318505" /> - <width sOffset="29.78420645568028" a="3.8819913218703652" b="0.0012349285220476149" c="0.00032739180225293879" d="-8.9811499360766683e-05" /> - <width sOffset="30.287095556480391" a="3.8826837283456443" b="0.0014960727632397667" c="0.00019234727237071777" d="-9.0129842083224864e-05" /> - <width sOffset="33.987986622544355" a="3.8862863872126656" b="-0.00078363038049543724" c="0.00010935768576773299" d="6.2431632162584969e-06" /> - <width sOffset="34.506433035875439" a="3.8859103807362967" b="-0.00066520394317333984" c="2.9633082294947148e-06" d="7.2849788218097133e-08" /> - <width sOffset="40.382794075307189" a="3.8821185127303419" b="-0.00062283014171129331" c="5.0778194579717082e-06" d="-1.0866323873691987e-07" /> - <width sOffset="50.478492594133982" a="3.8762363417746428" b="-0.00055352776471135289" c="6.968724917028077e-06" d="-6.8392459099914977e-07" /> - <width sOffset="54.261015924485903" a="3.8742053021062466" b="-0.00053016475339827071" c="-1.402233058674968e-05" d="5.1670325296571127e-07" /> - <width sOffset="60.574191112960783" a="3.8704294149769938" b="-0.00064543415743013161" c="-4.0425549288960914e-06" d="5.9836311579941783e-07" /> - <width sOffset="69.14660299633762" a="3.8649763568081177" b="-0.00058282867277902506" c="-5.6725949410557668e-05" d="6.3070556158959243e-06" /> - <width sOffset="70.374087447137356" a="3.8641871383905331" b="-0.00069358025037133245" c="3.2012090668131495e-05" d="4.8407772231856522e-06" /> - <width sOffset="70.669889631787584" a="3.8639849021518158" b="-0.00067337106914111035" c="2.1121951259994952e-05" d="2.8768011280007564e-06" /> - <width sOffset="80.765588150614377" a="3.8622997519222064" b="0.000632748348790392" c="0.0001049475531715462" d="2.2463550290876789e-06" /> - <width sOffset="83.303705957729804" a="3.8646185477100525" b="0.0012089001961791692" c="0.00037110899878785671" d="-5.3947634564149128e-05" /> - <width sOffset="87.681971464180108" a="3.8724975887249817" b="0.0013561272322750392" c="-1.095792274785509e-05" d="-9.2380791576079501e-07" /> - <width sOffset="90.861286669441171" a="3.8766686933741834" b="0.0012584361750168306" c="-1.4528962029520557e-05" d="3.4464294258208377e-08" /> - <width sOffset="100.95698518826796" a="3.8879281115851958" b="0.00097561426021914471" c="-1.6905449186815092e-05" d="1.0146558752542788e-07" /> - <width sOffset="101.36848042595275" a="3.8883267167055058" b="0.00096175277954508144" c="0.002675266794756779" d="-0.00044513783228499073" /> - <width sOffset="105.44438849257538" a="3.9065493176895574" b="0.00058477589584964365" c="-0.0046643524117032428" d="0.00056440248510838628" /> - <width sOffset="110.3383700223352" a="3.8638520519918611" b="-0.0045156279558591569" c="0.0035963864486558716" d="0.00056964881411495478" /> - <width sOffset="110.84428893988682" a="3.8625617846391362" b="-0.00043925648325209845" c="-7.471744402721457e-05" d="4.5618368970801518e-06" /> - <width sOffset="121.14838222592157" a="3.8550933574032129" b="-0.00052599746599725245" c="7.4193517692304104e-05" d="3.7694803471585485e-06" /> - <width sOffset="121.26427764052661" a="3.8550333991252455" b="-0.00050864819687295132" c="0.00045226646489305271" d="-1.7696792920764419e-05" /> - <width sOffset="124.79343830928592" a="3.858093392147568" b="0.002022354500923551" c="0.00040038657865271968" d="-2.9798637783864399e-05" /> - <width sOffset="131.24408074474837" a="3.8798008383764229" b="0.0034680214272591828" c="-0.00016823171488003583" d="-3.2616478912849184e-05" /> - <width sOffset="133.80872966688554" a="3.8870383641320014" b="0.0019615136120139645" c="-0.00079919305272479872" d="6.511373836166498e-05" /> - <width sOffset="139.75605336801445" a="3.8841335108955919" b="-0.00063525840882193516" c="0.00011232259433733311" d="-3.1504669653385453e-05" /> - <width sOffset="141.33977926357517" a="3.8832840164272433" b="-0.00051654088211770376" c="-2.6227578730073011e-05" d="-3.1131307282200353e-05" /> - <width sOffset="142.37514350598525" a="3.8826865407608926" b="-0.00067096741011108568" c="7.179455276827039e-05" d="-1.5807888442624133e-05" /> - <width sOffset="149.3148801939976" a="3.8762045549275754" b="-0.0019584179544862692" c="-0.00017446316890894372" d="3.6707846386493978e-06" /> - <width sOffset="151.43547778240196" a="3.8713019944484008" b="-0.0026488284747965339" c="-0.0001576917029959123" d="-4.9011947713337805e-07" /> - <width sOffset="157.69219850309233" a="3.848435883148853" b="-0.0046796538320216302" c="-0.0012594356078406001" d="0.00023514734065849209" /> - <width sOffset="158.99014346971427" a="3.8407544003634211" b="-0.0067605792895964458" c="-0.00015029504326187487" d="0.00022751180280581893" /> - <width sOffset="161.53117630122875" a="3.8263379145415772" b="-0.0031173612833220151" c="0.0015801868875281128" d="0.00022622975607594663" /> - <width sOffset="162.47228357676374" a="3.824992255288981" b="0.00045799295184167964" c="0.0003096805674518056" d="-1.6197380721269582e-05" /> - <width sOffset="171.62687482005555" a="3.8427113833030679" b="0.0020556516275111476" c="-0.00013164660418723341" d="-1.6373210234814326e-05" /> - <width sOffset="172.07720851871449" a="3.8436089191839127" b="0.0019271203404270161" c="-0.0001143094086334617" d="-3.9677692536483204e-06" /> - <width sOffset="179.44346301620857" a="3.8500160152961191" b="-0.00040283782855629179" c="-9.2485591206480059e-05" d="4.6909142393467625e-06" /> - <width sOffset="181.72257333888234" a="3.8486730347867582" b="-0.00075130889501440635" c="-5.9194048986406121e-05" d="5.3544892727265181e-06" /> - <width sOffset="187.20396975304703" a="3.8436581297151777" b="-0.00091760274888979545" c="5.900155097935387e-05" d="-2.7157947899890037e-06" /> - <width sOffset="191.81827185770914" a="3.8404134637543912" b="-0.00054657313462640265" c="2.3373672448227697e-05" d="-2.3940407849937691e-06" /> - <width sOffset="198.8473917795815" a="3.8368949476892" b="-0.00057283852672295539" c="-2.7670197069403708e-05" d="-7.6051484483958632e-06" /> - <width sOffset="201.69713041625721" a="3.8348617935506137" b="-0.00091582865265869362" c="-0.00014555963621240003" d="5.6181846761279017e-06" /> - <width sOffset="201.91397037653593" a="3.8346564184321279" b="-0.0009781624502695999" c="-0.00014309772350418559" d="5.4577866617624841e-06" /> - <width sOffset="212.00966889536275" a="3.8158121991402236" b="-0.0021986813256102212" c="2.2974906555735564e-05" d="5.4117391209395076e-06" /> - <width sOffset="216.31119219352354" a="3.8072103558299588" b="-0.0017006252399939959" c="0.00013967271770213877" d="8.8540076778690779e-06" /> - <width sOffset="216.76413592067979" a="3.8064695460324671" b="-0.0015686480652792826" c="2.9022066049920268e-05" d="6.3523988710122925e-07" /> - <width sOffset="222.10536741418954" a="3.799015793977631" b="-0.0012042531117359963" c="3.9040335988439089e-05" d="7.3072564373534541e-07" /> - <width sOffset="230.46325900325695" a="3.7921045376679494" b="-0.00039853022155986412" c="5.515355224157665e-06" d="1.7120631609605746e-06" /> - <width sOffset="232.20106593301634" a="3.7914376104404814" b="-0.00036384982332492567" c="1.2110067532824018e-05" d="7.0299157941594414e-07" /> - <width sOffset="242.29676445184313" a="3.7897219562040281" b="9.5622661807646784e-05" c="3.4006021542952947e-05" d="8.2780742582607807e-07" /> - <width sOffset="247.9158206678226" a="3.7914798297782797" b="0.00055619721559210344" c="0.00016893871902010646" d="-3.8322962141077923e-06" /> - <width sOffset="252.39246297066992" a="3.7970115045996504" b="0.0018383522479854747" c="0.00013313046682790497" d="-1.0291093281235533e-05" /> - <width sOffset="254.70817730196902" a="3.8018547239840279" b="0.0022893775301277178" c="0.00086679404412106189" d="-9.2108808230032034e-05" /> - <width sOffset="260.76115170419524" a="3.8270431552317428" b="0.0026585563860770799" c="-0.0010744368982065083" d="0.00014523154680204381" /> - <width sOffset="262.48816148949675" a="3.8291780079763047" b="0.00024691693829011121" c="-0.00032823880238254713" d="0.00015351850877779391" /> - <width sOffset="264.52516254476893" a="3.8296165737997701" b="0.00082068816837590434" c="9.9451038983024783e-05" d="-1.4574338012233871e-05" /> - <width sOffset="267.38255445557337" a="3.8324335731392196" b="0.0010320445657113831" c="0.00015776297511503945" d="-1.397916690964093e-05" /> - <width sOffset="272.58386000832354" a="3.8401025418952131" b="0.0015386319346454547" c="-6.25065912296626e-05" d="-1.3758590445250495e-05" /> - <width sOffset="274.37570661527781" a="3.8425796888533768" b="0.0011821027800947108" c="-5.3251994763590127e-05" d="-3.4834560212050428e-06" /> - <width sOffset="282.67955852715033" a="3.8467291903033738" b="-0.00042288480260643303" c="-0.0001400103187406808" d="-3.2079244171709026e-06" /> - <width sOffset="286.25663976157364" a="3.8432781649971952" b="-0.0015476824585873379" c="-6.1180576910367494e-05" d="2.4187987294068934e-06" /> - <width sOffset="292.77525704597713" a="3.8312596942842294" b="-0.002036966509689164" c="-4.7193430857947543e-06" d="-8.1280910565178123e-07" /> - <width sOffset="294.9379661344953" a="3.8268240323649714" b="-0.0020687849239949207" c="-6.8089363944818515e-06" d="1.4194592594385774e-06" /> - <width sOffset="302.87095556480392" a="3.8106925341407312" b="-0.0019088257663249107" c="2.7453450563295796e-05" d="1.2596526313824523e-06" /> - <width sOffset="304.95652484537567" a="3.8068423840687329" b="-0.0017778766677197595" c="0.0006778199618835128" d="-3.0301172079396783e-05" /> - <width sOffset="309.72821614544756" a="3.8105000878321809" b="0.0026210329594271056" c="0.00021764432292715625" d="-2.795610846609044e-05" /> - <width sOffset="312.96665408363071" a="3.8203212061280274" b="0.0031511208155361593" c="-6.008471425436815e-05" d="-2.9442642233028488e-05" /> - <width sOffset="320.15280620869748" a="3.8289366971240826" b="-0.0022737582178941357" c="-0.002305771473580894" d="0.00031076654239031373" /> - <width sOffset="323.06235260245751" a="3.8104560571241901" b="-0.0077989109649245882" c="0.00040702440419075766" d="0.00031132151372249421" /> - <width sOffset="325.10187165648523" a="3.7988842499313353" b="-0.0022536885396201162" c="0.00040411403273071279" d="-1.4137916514888467e-05" /> - <width sOffset="333.1580511212843" a="3.7995637659901114" b="0.0015048034619699999" c="6.5337662357330687e-05" d="-1.6624741650544518e-05" /> - <width sOffset="334.29676935318548" a="3.8013374878163599" b="0.0015889349659979166" c="2.1105987360532508e-05" d="-1.6825396221976509e-05" /> - <width sOffset="341.94759771698034" a="3.8071944704176151" b="-0.001042740979853849" c="-8.4890820992951352e-05" d="8.2655213770141868e-06" /> - <width sOffset="343.2537496401111" a="3.8057060841285484" b="-0.0012221978451675559" c="-5.8375779403027275e-05" d="-2.81271089696083e-07" /> - <width sOffset="348.36118606440226" a="3.7979035268529664" b="-0.0018405106435236557" c="-6.7015231813883649e-05" d="4.4357400738983425e-06" /> - <width sOffset="353.34944815893789" a="3.7876056252282249" b="-0.0021779693746895512" c="4.0908956720015455e-06" d="5.6666155686539414e-06" /> - <width sOffset="358.35541973930378" a="3.7775161571415374" b="-0.0017109996263766935" c="0.00011548361029449381" d="2.1469388162761496e-06" /> - <width sOffset="363.44514667776468" a="3.7720823522105666" b="-0.00036858812869088368" c="0.00014783552923282973" d="2.0116845790719857e-06" /> - <width sOffset="364.22349151778155" a="3.7718859739493604" b="-0.00013479792557691381" c="0.0001715640778642177" d="-4.5230161354551094e-06" /> - <width sOffset="373.54084519659148" a="3.7818654961777227" b="0.0018842775794306473" c="4.4756526260318583e-05" d="-4.5608778788562548e-06" /> - <width sOffset="377.67324559853716" a="3.7900945292890427" b="0.0020205266711754606" c="0.00021471753403832998" d="-1.8367982703884445e-05" /> - <width sOffset="381.66806220649562" a="3.800421758577504" b="0.0028566613658034092" c="-6.1017746045105266e-06" d="-1.0149147581053471e-05" /> - <width sOffset="383.63654371541827" a="3.8059439850412744" b="0.002714657516725864" c="-6.5983754100150619e-05" d="-1.0160286387720221e-05" /> - <width sOffset="392.06135524683918" a="3.8180555413783193" b="-0.00056059750522483541" c="1.108877405141611e-05" d="4.8525162306533897e-06" /> - <width sOffset="393.73224223424506" a="3.8171724410884762" b="-0.00048289864239568227" c="3.9238025919663964e-05" d="3.0729234636584296e-06" /> - <width sOffset="396.34974954371216" a="3.8162323916978664" b="-0.00021432603113297698" c="4.3655780165143244e-06" d="-1.2280248764821148e-07" /> - <width sOffset="403.82794075307186" a="3.8148224017054977" b="-0.00016963535403471128" c="2.1859429741323014e-06" d="1.6386483619117651e-07" /> - <width sOffset="413.92363927189871" a="3.8135012269475324" b="-7.53932612351676e-05" c="4.2145202506434151e-06" d="1.8077971923958927e-07" /> - <width sOffset="424.0193377907255" a="3.8133556560528019" b="6.4980694176484529e-05" c="-1.4012256763823054e-05" d="1.3808824889317487e-05" /> - <width sOffset="425.31593574949653" a="3.8134464533864518" b="9.8288958904392621e-05" c="0.00010533025402384376" d="-1.0077062741462936e-05" /> - <width sOffset="426.89160496895852" a="3.8138234100884301" b="0.00035516425376950551" c="-0.0027313700283021335" d="0.00050947520004673949" /> - <width sOffset="430.52997882071935" a="3.8034967284508925" b="0.00071261149494086914" c="0.00010967115662134172" d="-1.0513309085370217e-05" /> - <width sOffset="434.11503630955229" a="3.8069766188119898" b="0.0010935950553677648" c="4.4891344434564123e-06" d="-1.3826359155052105e-05" /> - <width sOffset="436.06407404866161" a="3.8090227609092873" b="0.00095352547320373237" c="-0.00094682346419363325" d="0.00011726788438202414" /> - <width sOffset="440.52020172209973" a="3.8048471744217984" b="-0.00049901588970384619" c="5.9379673886423567e-05" d="5.3105805850333259e-07" /> - <width sOffset="444.21073482837909" a="3.803840986707149" b="-3.9031497660946008e-05" c="7.1928077393528225e-05" d="2.1212158713686764e-06" /> - <width sOffset="449.44054902617404" a="3.8059075805565303" b="0.0008873613124363263" c="0.00021027695227419051" d="-1.0591083237112141e-06" /> - <width sOffset="452.15411157017218" a="3.8098426866912627" b="0.0020051646519733349" c="8.9843915740471611e-05" d="-3.9926801900676816e-06" /> - <width sOffset="454.30643334720588" a="3.8145348377473374" b="0.0023364225431696871" c="5.6466336543608165e-05" d="-6.5915087185649447e-06" /> - <width sOffset="463.3444566604685" a="3.8353976098727189" b="0.0017418113932383139" c="-6.8470405327654619e-06" d="-7.0597481397268184e-06" /> - <width sOffset="464.40213186603268" a="3.8372238678993416" b="0.0017036347730061158" c="-2.8815091213993879e-05" d="-3.2642849860949539e-06" /> - <width sOffset="466.28889600311697" a="3.8403137215904541" b="0.0015600388337650537" c="-0.0026570597209036842" d="0.00042005492074416028" /> - <width sOffset="469.89795351684353" a="3.8310813815324085" b="-0.0012049046565529395" c="8.3156874583212412e-05" d="-4.8377750785453131e-06" /> - <width sOffset="474.49783038485947" a="3.826827621878734" b="-0.00074696741023247567" c="1.5889838236077443e-05" d="-4.9667782639070732e-06" /> - <width sOffset="481.02343792420163" a="3.8212496654726182" b="-0.001174094921456302" c="-0.0011107815991810554" d="0.00018550670546315241" /> - <width sOffset="484.59352890368626" a="3.8113415870757894" b="-0.0020121229084451384" c="0.00087841490572552615" d="0.00018520564895464718" /> - <width sOffset="485.09798816013966" a="3.8105738669768909" b="-0.00098448092444680061" c="0.00034680128962472572" d="-1.3723580521143679e-05" /> - <width sOffset="493.55151756896407" a="3.8187441801296131" b="0.0019367587783421718" c="-1.1260703549822117e-06" d="-2.2386307961243663e-05" /> - <width sOffset="494.68922742251306" a="3.8209132252904201" b="0.001847267078554871" c="-4.8047908034711159e-05" d="-4.5084059652481724e-06" /> - <width sOffset="501.76273345506257" a="3.8299802159987895" b="0.00049080539689438625" c="-2.145956482212543e-05" d="1.0538518829689199e-05" /> - <width sOffset="504.78492594133985" a="3.8315584217689622" b="0.00064986087185538795" c="8.1781761819567291e-05" d="6.7775436203293325e-06" /> - <width sOffset="507.82189169043806" a="3.8344761552014779" b="0.0013341288181448695" c="-2.1871242693526281e-05" d="2.0593786753318048e-06" /> - <width sOffset="514.8806244601667" a="3.8435279604281076" b="0.0013331923066719671" c="1.9829634148437581e-05" d="3.2994248616591208e-06" /> - <width sOffset="518.43271177872975" a="3.8486616459269918" b="0.0015989552312881102" c="-7.8870017548121304e-05" d="5.6155210977878665e-06" /> - <width sOffset="520.72558002917265" a="3.8519808910643389" b="0.001325844620498058" c="1.0117189862396663e-06" d="-3.1963002748278673e-06" /> - <width sOffset="524.97632297899349" a="3.8573895016119728" b="0.0011611856541454207" c="-4.1365031338225947e-05" d="-3.1138287671257293e-06" /> - <width sOffset="534.35509413510033" a="3.8620726588824086" b="-0.000436410402543781" c="-0.00012951735807463594" d="-2.8050779884231635e-06" /> - <width sOffset="535.07202149782029" a="3.861692180721815" b="-0.00062644478115205285" c="-0.00013329094992767338" d="-3.0294230789577065e-06" /> - <width sOffset="535.9662324298173" a="3.8610232596416827" b="-0.00087209233024101106" c="-9.6261900418143087e-05" d="6.5441952932732991e-06" /> - <width sOffset="543.25520580835712" a="3.8520865749208451" b="-0.0012323309246358969" c="-1.5517366633682429e-05" d="7.596324094046552e-07" /> - <width sOffset="545.16772001664708" a="3.8496782804321876" b="-0.0012833497464211662" c="-1.4310895726733544e-06" d="4.4599098499482287e-06" /> - <width sOffset="552.20512011768733" a="3.8421303601620895" b="-0.00064086093783539597" c="8.0124110991474794e-05" d="-6.4004486171403057e-07" /> - <width sOffset="555.26341853547387" a="3.8409015237571804" b="-0.00016873343617756446" c="7.4008439337653511e-05" d="-1.0470259078481237e-06" /> - <width sOffset="565.35911705430067" a="3.845663839393886" b="0.0010054518779196639" c="4.2536436496668265e-05" d="-9.4684704188395178e-07" /> - <width sOffset="572.30677134994539" a="3.8543850639312298" b="0.0014593961527318976" c="-5.6683376854875254e-05" d="3.7515433618165411e-06" /> - <width sOffset="575.45481557312746" a="3.8585346044501296" b="0.0012140480359560961" c="-2.7604236454469684e-05" d="2.8168351601980511e-06" /> - <width sOffset="585.55051409195426" a="3.8708762388964075" b="0.0015179818944735849" c="4.0690454399268807e-05" d="8.6707123613528961e-06" /> - <width sOffset="587.4585374721546" a="3.8739809486347072" b="0.0017679571405640293" c="-3.8978485061366174e-05" d="-1.7073152972272075e-06" /> - <width sOffset="592.48945137417456" a="3.8816714422232304" b="0.001246125400301923" c="6.8223870529602086e-06" d="-1.2421391516361941e-06" /> - <width sOffset="595.64621261078105" a="3.8856340739529189" b="0.0012520644170373038" c="-5.3915943840972488e-06" d="-1.0593745584911658e-06" /> - <width sOffset="605.74191112960784" a="3.8966349299468819" b="0.00081927628613498709" c="-3.6259313670835494e-05" d="-2.5872749788959587e-06" /> - <width sOffset="607.27759283447995" a="3.8977981964047848" b="0.00068960590308316319" c="-0.0042193877510083282" d="0.00095470304732888224" /> - <width sOffset="610.15201640582495" a="3.8875921291173423" b="9.7150776351469931e-05" c="3.5252985637414616e-05" d="-7.7782151021452474e-07" /> - <width sOffset="614.96880631719705" a="3.8887910782369417" b="0.00038262343172579461" c="3.9593109886981728e-05" d="-1.4045135738555023e-06" /> - <width sOffset="615.83760964843464" a="3.8891524673244877" b="0.00044824022169435442" c="3.8043969268988586e-05" d="-1.0203812481039862e-06" /> - <width sOffset="625.00368349349628" a="3.8956716061248589" b="0.00088848004740658645" c="4.4656112152124458e-06" d="-8.4693804887518806e-07" /> - <width sOffset="625.93330816726143" a="3.8965007378732919" b="0.00089458695539463521" c="9.616566137469013e-06" d="-1.9360024884559425e-06" /> - <width sOffset="629.71205764350782" a="3.8999140122608384" b="0.00088433190962316946" c="1.7427269180852292e-08" d="5.6713518288548536e-08" /> - <width sOffset="636.02900668608822" a="3.9055152830938402" b="0.00089134134633063889" c="3.1428264005487315e-06" d="3.1911257785344777e-07" /> - <width sOffset="642.26829303254328" a="3.9112764714963779" b="0.00096782724182308238" c="5.1077701465045987e-05" d="-2.7366726456221433e-06" /> - <width sOffset="644.73820570631642" a="3.9139372830252581" b="0.0011700572094536855" c="-7.2316593512508105e-05" d="6.6576835138767312e-07" /> - <width sOffset="646.12470520491502" a="3.915422321250011" b="0.00097336294916944884" c="-6.9677762271037744e-05" d="6.7412059155890101e-07" /> - <width sOffset="656.22040372374181" a="3.9188409847079733" b="-0.00022740297433846324" c="-5.2089210494329109e-05" d="7.3585677443066133e-07" /> - <width sOffset="659.98921379749891" a="3.9172834664407459" b="-0.00058867548387303266" c="-9.8240764378772945e-05" d="-1.7045079146215185e-06" /> - <width sOffset="661.52895449547202" a="3.9161379273281174" b="-0.00090332923943924255" c="-8.2156487077314494e-05" d="4.0297845411305571e-06" /> - <width sOffset="666.3161022425686" a="3.9103728860215998" b="-0.001412870623207044" c="-2.5801324975789493e-05" d="3.0083031688362846e-06" /> - <width sOffset="672.27440054047406" a="3.9016749390205288" b="-0.0013999384167917715" c="7.6958724756357546e-06" d="5.1600794887512336e-07" /> - <width sOffset="676.4118007613954" a="3.8960511179986383" b="-0.0013097574108702403" c="1.7155483729883861e-05" d="1.1630436545765972e-06" /> - <width sOffset="686.50749928022219" a="3.8857734973020399" b="-0.00060774108364777769" c="4.9685491449286942e-05" d="1.4007625142383766e-06" /> - <width sOffset="687.13786904147162" a="3.8854104899005648" b="-0.00054343077454030637" c="0.00015571838618293183" d="-9.1613925276106072e-06" /> - <width sOffset="696.60319779904898" a="3.8864488682324581" b="-5.7954101251257197e-05" c="-8.904403047156754e-05" d="-1.2094494593222331e-05" /> - <width sOffset="699.37646586314975" a="3.8853453404538447" b="-0.00083089687867244212" c="-0.00018172940235762085" d="1.1230571945021332e-05" /> - <width sOffset="706.69889631787578" a="3.8739264705949985" b="-0.001685816691955274" c="6.9692873347040787e-05" d="1.0770119695134557e-05" /> - <width sOffset="710.12565530399308" a="3.8694013463488739" b="-0.0008287652166274063" c="0.00012725277035797333" d="-2.9357944394704986e-06" /> - <width sOffset="716.79459483670257" a="3.8686631419408783" b="0.00047681063435281749" c="6.8168073318416471e-05" d="-2.8471574161304119e-06" /> - <width sOffset="726.89029335552937" a="3.8774950988765662" b="0.00098264569375554204" c="-2.1373931501734969e-05" d="-2.3633301785934036e-06" /> - <width sOffset="730.51528516858241" a="3.8806637400051782" b="0.00073451855428863797" c="1.5244248917843252e-05" d="-5.066494339696811e-07" /> - <width sOffset="730.82173327929434" a="3.880890248841915" b="0.00074371895783039571" c="4.5093574213905134e-05" d="-2.3392806045239658e-06" /> - <width sOffset="736.98599187435616" a="3.886640264508519" b="0.0010329913197718939" c="-3.1318822335640992e-06" d="-2.1112536445483412e-06" /> - <width sOffset="744.04735944324136" a="3.8930350579991915" b="0.00067294081280187238" c="-8.061346794604603e-05" d="2.4931981809891823e-06" /> - <width sOffset="747.08169039318295" a="3.8944044156223816" b="0.00025259078721837904" c="-6.6191938234177948e-05" d="2.3875996979225755e-07" /> - <width sOffset="752.23300167056243" a="3.8939817569493682" b="-0.00041035255925992147" c="0.00013196503150388585" d="-8.5693926826327472e-06" /> - <width sOffset="755.6101214696838" a="3.8937709428395468" b="0.00018777070184194987" c="1.8530915965302257e-05" d="-8.0812049980828156e-06" /> - <width sOffset="757.17738891200975" a="3.8940796373504831" b="0.00018630625258109993" c="-2.6448889640389116e-05" d="-1.112636623069245e-05" /> - <width sOffset="766.38301802524552" a="3.8848734482844307" b="-0.0031293163183326268" c="-0.00051928917396043908" d="0.00010930689340629279" /> - <width sOffset="767.27308743083654" a="3.8817538224584345" b="-0.0037939366467900867" c="-0.00022948601794048378" d="0.00010926621118778633" /> - <width sOffset="769.47252300497871" a="3.8734617321132205" b="-0.0032176846584764419" c="0.00029027291115351467" d="-7.3818335281954663e-06" /> - <width sOffset="774.07398288249158" a="3.8640825568337744" b="-0.001015222623047336" c="0.00016726451135351861" d="-4.2665016210512518e-06" /> - <width sOffset="777.36878594966333" a="3.8624007741094966" b="-5.1963306723123385e-05" c="0.00013123178379402373" d="-5.0153989839028385e-06" /> - <width sOffset="784.52118302939084" a="3.8669074053697949" b="0.0010555653003592215" c="0.00012196624748911326" d="-2.5994208489257389e-05" /> - <width sOffset="787.46448446849013" a="3.8704080512427161" b="0.0010979668576615461" c="-9.0427829498957213e-05" d="-1.4522437467943353e-05" /> - <width sOffset="789.04017516510692" a="3.8718567794690459" b="0.00070482530407824789" c="0.00014693391384611746" d="-2.9597801153159866e-05" /> - <width sOffset="791.29783595587526" a="3.8738563699746722" b="0.00091569633564438958" c="3.1822390115669404e-05" d="-1.3050540606092341e-05" /> - <width sOffset="797.56018298731692" a="3.8776336690422362" b="-0.00022114673853664132" c="-0.0002155603847741411" d="-1.1485484291023322e-05" /> - <width sOffset="799.877776691284" a="3.8758203387011605" b="-0.001405383417492842" c="-0.00042640511870469021" d="-8.6968947956725014e-06" /> - <width sOffset="801.74658902758085" a="3.8716479757340112" b="-0.0030902463694944694" c="-0.00098209856063570609" d="0.00022407106910536412" /> - <width sOffset="804.97141051846882" a="3.8589837220631908" b="-0.0024337679231269515" c="0.00026673196309869946" d="-7.6457199475578067e-06" /> - <width sOffset="807.65588150614371" a="3.8542246067869765" b="-0.0011669934830654831" c="0.00020678343957246663" d="-5.7724422238867651e-06" /> - <width sOffset="816.46037115205093" a="3.8560396963668557" b="0.0011318293192380466" c="-0.00034573125072293081" d="2.9950176193484041e-05" /> - <width sOffset="817.75158002497062" a="3.8569891888826557" b="0.00038880743210333068" c="-0.00024499105804476334" d="1.8645298959810651e-05" /> - <width sOffset="820.11507175653742" a="3.8567857571677715" b="-0.00045679811664216773" c="-1.2566480375785036e-07" d="3.5909321510399065e-05" /> - <width sOffset="825.03977019603735" a="3.8588220185134512" b="0.002154653288295537" c="0.00087923364760085249" d="-0.00010913258779323417" /> - <width sOffset="827.84727854379742" a="3.8693864331773105" b="0.0045109819657236658" c="-5.4337942770868932e-05" d="-0.00010838696202650307" /> - <width sOffset="830.5749617343165" a="3.8790869981220082" b="0.0017952684799175337" c="-0.00049682045409356237" d="3.5241452563183343e-05" /> - <width sOffset="836.20356326788237" a="3.8797362800431712" b="-0.00044807047283362302" c="-0.00014088693063987612" d="1.6429977919169303e-05" /> - <width sOffset="837.94297706262421" a="3.8786171042385549" b="-0.00078906214494808445" c="-5.5866129245000034e-05" d="1.4518660358785726e-05" /> - <width sOffset="840.73443582134382" a="3.8762949532707198" b="-0.0007615593913782347" c="-8.6119039268712881e-05" d="1.2285739336004867e-05" /> - <width sOffset="841.2017231933753" a="3.8759215350309644" b="-0.00083399602091168042" c="-0.00028524994671316165" d="1.4224202745996559e-05" /> - <width sOffset="848.038675581451" a="3.8614316990645037" b="-0.0027397917311909972" c="1.1476570513551166e-05" d="1.4229594653078313e-05" /> - <width sOffset="854.99745317662814" a="3.8477168766917424" b="-0.00051287925386159748" c="0.0002289190005438056" d="-7.2966941193551663e-06" /> - <width sOffset="858.1343741002778" a="3.8481354049558538" b="0.00070791796759502208" c="0.00016115265571419119" d="-6.6398499609916193e-06" /> - <width sOffset="864.75859211597015" a="3.8579662076665624" b="0.0019688635041238871" c="0.00027611625660205576" d="-5.2700998932045484e-06" /> - <width sOffset="868.23007261910459" a="3.8679081279112744" b="0.0036953951888827326" c="0.00021852875419235923" d="-5.9027894540543597e-06" /> - <width sOffset="874.2457061716251" a="3.896761361407032" b="0.0056837452751185551" c="0.00036706123186406507" d="-0.00018908393227791672" /> - <width sOffset="876.02453548123333" a="3.9069689578056277" b="0.0051947065712972468" c="-0.0014661256854035837" d="6.8280839086211554e-05" /> - <width sOffset="878.32577113793138" a="3.9119911738574897" b="-0.00046831327941162463" c="-0.00099451482318199344" d="6.8560660029929726e-05" /> - <width sOffset="885.7397262725442" a="3.8817937919204422" b="-0.0039092238217052627" c="-0.00039726681357757701" d="0.00060703889439372646" /> - <width sOffset="887.79930570587635" a="3.8773606545803503" b="0.0021793066275625586" c="0.03494048719628861" d="-0.039316410310850487" /> - <roadMark sOffset="0" color="standard" width="0.15840576626352634" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15840599999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.6406462781125404" b="-1.3503242137270652e-09" c="-0.036698317806943902" d="0.068183653222913143" /> - <width sOffset="0.35200824716851514" a="3.639072981255115" b="-0.00049035265590371339" c="0.080328913528534926" d="-0.14201779097183795" /> - <width sOffset="0.44755684145289315" a="3.6396356101594636" b="0.010970608181832963" c="0.038806269025513297" d="-0.14284746218509159" /> - <width sOffset="0.72700220322387277" a="3.6426144762382253" b="-0.00080567882561494489" c="-0.00063510542555770351" d="0.00023147811886596603" /> - <width sOffset="1.9636941740897371" a="3.6410845839632309" b="-0.0013144655990834863" c="-0.00011966321605478017" d="6.1956343148889638e-06" /> - <width sOffset="10.095698518826797" a="3.6258138733739815" b="-0.0020315266857305419" c="3.286840048086124e-05" d="6.0793473462424623e-06" /> - <width sOffset="18.667910663572322" a="3.614643902136657" b="-0.00012783410265258376" c="0.00020713593735650204" d="-1.0867647689566389e-05" /> - <width sOffset="20.191397037653594" a="3.6148914850477487" b="0.00042763167287811145" c="0.00016935286211828291" d="-6.2219837690825177e-06" /> - <width sOffset="21.023120339277177" a="3.6153607285733429" b="0.00069642868950428875" c="0.00013175308302020594" d="-6.3115289700517066e-06" /> - <width sOffset="30.287095556480391" a="3.6281016845647578" b="0.0015125536138842072" c="-4.4259900264837271e-05" d="-6.0368320826654931e-06" /> - <width sOffset="34.506433035875439" a="3.6332422451466138" b="0.00081664100049977048" c="-4.5695815833607929e-06" d="1.3348134066034661e-07" /> - <width sOffset="40.382794075307189" a="3.6379104135231008" b="0.00077676395855847194" c="-1.7483698681931265e-06" d="-1.0202005422600214e-07" /> - <width sOffset="50.478492594133982" a="3.6454692118184227" b="0.0007102673190656284" c="-3.4696770155385979e-06" d="8.3914430685782111e-08" /> - <width sOffset="54.505845414207286" a="3.6482789136899774" b="0.00068640326017216412" c="2.9014623679355269e-05" d="-6.4935713658525681e-07" /> - <width sOffset="60.574191112960783" a="3.6533675951719848" b="0.00096680741570903217" c="1.7373013042671413e-05" d="-6.1985700509148155e-07" /> - <width sOffset="70.374087447137356" a="3.663927290553969" b="0.0011287254474124655" c="-6.6363192082386782e-05" d="8.4642129217258466e-07" /> - <width sOffset="70.669889631787584" a="3.6642553852061166" b="0.0010896868758954047" c="-5.9963856241236125e-05" d="-1.2892984277977036e-06" /> - <width sOffset="72.399620824423835" a="3.6659541680155785" b="0.00087067154410612252" c="-1.641663094400421e-05" d="4.0229574039626949e-07" /> - <width sOffset="80.765588150614377" a="3.6723247432702957" b="0.00068045887164476775" c="-8.6999643151830328e-06" d="2.2996203621967858e-07" /> - <width sOffset="90.861286669441171" a="3.6785443508381546" b="0.0005751097885042444" c="-4.3313698996168898e-07" d="2.006054842327524e-07" /> - <width sOffset="100.95698518826796" a="3.6845127592709535" b="0.00062770316326018582" c="7.4486857614027691e-06" d="2.3956114829234494e-07" /> - <width sOffset="106.98687069543175" a="3.6886210903927155" b="0.00074366359243423132" c="1.1218038067709636e-05" d="2.7424914408037308e-06" /> - <width sOffset="110.3383700223352" a="3.6913427290635341" b="0.00091127358459022062" c="6.4579564765090887e-05" d="-2.5038375620973946e-06" /> - <width sOffset="111.05268370709477" a="3.6920257030091665" b="0.00099970101374717633" c="5.918053287462172e-05" d="-2.7324250511214791e-06" /> - <width sOffset="121.14838222592157" a="3.7053386232363774" b="0.0013591467204314344" c="-2.9216354212446036e-05" d="-2.0664289391703763e-06" /> - <width sOffset="124.79343830928592" a="3.7098045313671886" b="0.0010637898068968205" c="-0.00018729769271654337" d="1.0035415924303304e-05" /> - <width sOffset="125.64276766941683" a="3.7105790785754889" b="0.00076735240166996878" c="-0.00017723286238334937" d="7.8905326506748292e-06" /> - <width sOffset="131.24408074474837" a="3.7107033090419304" b="-0.00047543161961179406" c="-4.3695520152405869e-05" d="7.6787596324477189e-06" /> - <width sOffset="141.33977926357517" a="3.7093512404743043" b="0.00099022440035324627" c="0.00018488490555641719" d="1.2032854053414039e-05" /> - <width sOffset="142.37514350598525" a="3.7105880312981965" b="0.0014117677453920311" c="2.7541207377711221e-05" d="-3.2905647796981454e-06" /> - <width sOffset="142.78242004456391" a="3.7111673572544048" b="0.0014325640614178804" c="4.2734102768372047e-05" d="-1.5950018469116856e-06" /> - <width sOffset="151.43547778240196" a="3.7257297465213206" b="0.0018138461355062577" c="1.1660972364230655e-06" d="-1.9752127858979429e-06" /> - <width sOffset="158.99014346971427" a="3.7386476532833552" b="0.0014932712832360644" c="-0.0002371157624532643" d="5.6603250666265324e-06" /> - <width sOffset="161.53117630122875" a="3.741003953545663" b="0.00039787698193386204" c="-0.00019042641497426176" d="6.8881958101706096e-06" /> - <width sOffset="171.62687482005555" a="3.732699795017508" b="-0.0013408989674724202" c="1.5868611168040216e-05" d="6.991218909718837e-06" /> - <width sOffset="178.62198278533771" a="3.7264895014891684" b="-9.2620443039534818e-05" c="0.00016758356724176136" d="6.9634116045367769e-06" /> - <width sOffset="179.44346301620857" a="3.7265303662384106" b="0.00019681008431960052" c="7.5237870404778727e-05" d="-1.6952718848256208e-06" /> - <width sOffset="181.72257333888234" a="3.7273496600566713" b="0.00051334342317406944" c="6.151257246159106e-05" d="-2.537054557527608e-06" /> - <width sOffset="191.81827185770914" a="3.736191182789979" b="0.00097961458288656818" c="-1.4630849187935062e-05" d="-2.5432421988456782e-06" /> - <width sOffset="198.8473917795815" a="3.7414708583644503" b="0.00039695704428250591" c="-6.7701242214558924e-05" d="2.6678654644533075e-06" /> - <width sOffset="201.91397037653593" a="3.74212843773988" b="5.699973802661927e-05" c="-4.2148350395714841e-05" d="2.8298454407391155e-06" /> - <width sOffset="212.00966889536275" a="3.7413198671890204" b="7.1245762884629979e-05" c="4.4483079791981576e-05" d="2.7406901629622518e-06" /> - <width sOffset="216.31119219352354" a="3.7426675432069709" b="0.00060606958561925316" c="3.2988861472642194e-05" d="-7.0155679690298028e-07" /> - <width sOffset="216.33562358028416" a="3.7426823700080005" b="0.00060768025662035461" c="3.577164009081454e-05" d="-8.3494330253656382e-07" /> - <width sOffset="222.10536741418954" a="3.7472189940393257" b="0.00093708100917939941" c="2.1346161035409151e-05" d="-7.7805673459384991e-07" /> - <width sOffset="232.20106593301634" a="3.7580545400639345" b="0.0011301838920601665" c="-2.5576030771653463e-06" d="-7.9495412563875511e-07" /> - <width sOffset="242.29676445184313" a="3.7683858609890244" b="0.00083546967816933095" c="-2.406855959999098e-05" d="-1.141731846779341e-06" /> - <width sOffset="247.9158206678226" a="3.7721179161043832" b="0.00045683808516131593" c="-0.0001642931339840015" d="3.5183717931642428e-06" /> - <width sOffset="252.39246297066992" a="3.7711861737861394" b="-0.0008025971457386559" c="-0.00010826957558533451" d="4.3174032751497339e-06" /> - <width sOffset="252.81767291351628" a="3.7708256579015105" b="-0.00089232994102300613" c="-8.9811281788975927e-05" d="4.078518233253442e-06" /> - <width sOffset="262.48816148949675" a="3.7574858704813812" b="-0.0014851190118222743" c="2.2150316198298213e-05" d="5.3689996945570043e-06" /> - <width sOffset="267.38255445557337" a="3.751377218610719" b="-0.00088244981624802793" c="-8.2261423538519622e-05" d="4.773828591956556e-06" /> - <width sOffset="272.58386000832354" a="3.745233605720613" b="-0.0013507359609807063" c="-1.528780768558851e-05" d="3.7291091903718387e-06" /> - <width sOffset="282.67955852715033" a="3.7338759995765645" b="-0.00051917072926457722" c="9.9182382198542712e-05" d="3.7237362170019054e-06" /> - <width sOffset="283.8956256053886" a="3.7333980225057095" b="-0.00026142567264054171" c="4.4816410221586801e-05" d="2.5288738554456771e-05" /> - <width sOffset="286.25663976157364" a="3.7333634472079869" b="0.00037310639577781758" c="0.00011068285884626859" d="1.9662015407903061e-05" /> - <width sOffset="287.48061663313365" a="3.7340219904626455" b="0.0007324210535121483" c="0.00017855122250051676" d="-5.8264626281211685e-06" /> - <width sOffset="292.77525704597713" a="3.7420404643548251" b="0.0021331466149795771" c="8.8345211999437694e-05" d="-5.7305217551910574e-06" /> - <width sOffset="302.87095556480392" a="3.7666838679285837" b="0.0021647417497290497" c="-8.5557240087975265e-05" d="-5.2930496583986191e-06" /> - <width sOffset="304.95652484537567" a="3.7707784317965727" b="0.0017388027123517813" c="-0.00076115953821601404" d="2.626777505243113e-05" /> - <width sOffset="306.29212295167133" a="3.7718055822249412" b="-0.00015383263445855797" c="-0.00061910600908891779" d="3.2822638832129156e-05" /> - <width sOffset="312.96665408363071" a="3.7529577260350253" b="-0.0040316340630898485" c="3.4911265293601979e-05" d="3.2971807129291273e-05" /> - <width sOffset="320.15280620869748" a="3.7380244241572971" b="0.0015781910118612015" c="0.0023566813720760577" d="-0.00030723737749385543" /> - <width sOffset="321.27991778443135" a="3.7423571824980484" b="0.0057197515978820654" c="0.0014381988790610882" d="-0.00031989437525308174" /> - <width sOffset="323.06235260245751" a="3.7553099924621605" b="0.0077977589200331106" c="-0.00027466143771769915" d="-0.00032028881628851032" /> - <width sOffset="325.10187165648523" a="3.7673539565047323" b="0.0026805478822944056" c="-0.00032661801959752866" d="5.1706139488695736e-06" /> - <width sOffset="333.1580511212843" a="3.770454279120306" b="-0.0015752888951599978" c="-0.00020062422888578077" d="5.141925844367193e-06" /> - <width sOffset="337.37786755409508" a="3.7606207362056283" b="-0.0029937992130300685" c="-0.00065696138414332171" d="0.00016598509663330973" /> - <width sOffset="340.95036652842617" a="3.7491088335068157" b="-0.0013325086159104123" c="0.00053030108374719576" d="8.2143244680126874e-06" /> - <width sOffset="341.94759771698034" a="3.7483155291792598" b="-0.00025033635700926111" c="0.00027468797781322874" d="-1.6876593132742641e-05" /> - <width sOffset="343.2537496401111" a="3.7484195718225637" b="0.00038085603729910602" c="0.00022326844849957506" d="-9.8936150665735919e-06" /> - <width sOffset="353.34944815893789" a="3.764840415076157" b="0.0018637933251907119" c="-7.3350706027548946e-05" d="-9.8160582821492608e-06" /> - <width sOffset="356.30788011805754" a="3.7694581633955608" b="0.0011720473397551826" c="-6.4900796866021769e-05" d="-2.3525529081257886e-06" /> - <width sOffset="358.35541973930378" a="3.7715656908096502" b="0.00087668477468213406" c="-0.00010564359787906477" d="1.1671238441799493e-06" /> - <width sOffset="363.44514667776468" a="3.773444932136039" b="-0.00010800520625166418" c="-8.7508441579222626e-05" d="1.2745906450773079e-06" /> - <width sOffset="373.54084519659148" a="3.7647469448742257" b="-0.0014851920956969493" c="-4.9259420904560212e-05" d="1.2653097985854505e-06" /> - <width sOffset="377.67324559853716" a="3.757857636732072" b="-0.0018274893240983684" c="-0.00026007624926148757" d="1.5072414623624485e-05" /> - <width sOffset="383.63654371541827" a="3.7409074834198073" b="-0.0033213467467706937" c="9.6193744119164373e-06" d="1.5066105670740757e-05" /> - <width sOffset="390.81827219787817" a="3.7231313042371017" b="-0.00085197555560415365" c="0.00034934722432235069" d="1.3294914934504426e-05" /> - <width sOffset="392.06135524683918" a="3.7226375965217895" b="7.8191789852300343e-05" c="6.505925258483025e-05" d="-1.7178876831445428e-06" /> - <width sOffset="393.73224223424506" a="3.722941868953388" b="0.00028121678410484717" c="5.8157238587554802e-05" d="-1.4231901723390428e-06" /> - <width sOffset="403.82794075307186" a="3.7302440749375418" b="0.0010203246942393697" c="1.4659627064722987e-05" d="-1.2839977733264425e-06" /> - <width sOffset="413.0173081946345" a="3.7398617668577407" b="0.00096447054388251502" c="1.1775382188779019e-06" d="3.5167414973114443e-07" /> - <width sOffset="413.92363927189871" a="3.7407371255760204" b="0.00096747165629092571" c="-1.7330107103629641e-06" d="3.7380772640448491e-07" /> - <width sOffset="424.0193377907255" a="3.7507124364799687" b="0.0010467787078585363" c="7.5797306067686772e-08" d="2.1799836941651818e-06" /> - <width sOffset="426.89160496895852" a="3.7537713467570604" b="0.0011011681931010434" c="0.0028079262137202313" d="-0.00051737227909401254" /> - <width sOffset="430.52997882071935" a="3.7700297886205734" b="0.00098718198545357113" c="-0.0001193125489362149" d="2.6162300381164555e-06" /> - <width sOffset="434.11503630955229" a="3.7721559610767734" b="0.00023257365782468732" c="-9.2012834821429351e-05" d="1.9429779299866864e-06" /> - <width sOffset="444.21073482837909" a="3.7671250141064596" b="-0.0010311908544387328" c="-3.2453603104091423e-05" d="2.1916778233987325e-06" /> - <width sOffset="448.39727931079926" a="3.7623998898039508" b="-0.0011876861316473268" c="-3.4894021029127612e-05" d="3.0446556372410674e-06" /> - <width sOffset="449.44054902617404" a="3.7611262909983942" b="-0.0012505523659777124" c="-0.00013043301020535569" d="6.224979834119275e-06" /> - <width sOffset="454.30643334720588" a="3.7526701795495319" b="-0.0020777328725125497" c="-4.253907894867848e-05" d="5.9963144488595059e-06" /> - <width sOffset="463.3444566604685" a="3.7348436915029071" b="-0.001377228841941411" c="4.6361590718925475e-06" d="6.4645538680523329e-06" /> - <width sOffset="464.40213186603268" a="3.7333998659073542" b="-0.0013457265008536192" c="2.0692010334917022e-05" d="3.501896967468236e-06" /> - <width sOffset="467.73993673985137" a="3.7292688444587236" b="-0.0010905514285086174" c="4.6828452224747551e-05" d="2.1833295025261557e-06" /> - <width sOffset="474.49783038485947" a="3.7247114630521225" b="-0.0001584957752787529" c="9.0167025634142371e-05" d="2.2629729902007835e-06" /> - <width sOffset="481.02343792420163" a="3.7281456571987173" b="0.0013073897652178493" c="0.0011639065468143958" d="-0.00018821051073686701" /> - <width sOffset="484.59352890368626" a="3.7390836863360333" b="0.0024213550921790318" c="-0.00085216258674560474" d="-0.00018817536110283883" /> - <width sOffset="485.09798816013966" a="3.7400641468307567" b="0.0014179323694130485" c="-0.00032504326699125599" d="1.0753868372948586e-05" /> - <width sOffset="494.68922742251306" a="3.7332508478593658" b="-0.0018493977162031708" c="-1.1840394379647329e-05" d="1.0621024191029893e-05" /> - <width sOffset="501.76273345506257" a="3.7233356788055607" b="-0.00042265140902995662" c="9.1284188091909712e-05" d="-4.4259006039751238e-06" /> - <width sOffset="504.78492594133985" a="3.7227699315126239" b="7.8315187524388187e-06" c="5.8324186958320765e-05" d="-3.1307457813641271e-06" /> - <width sOffset="514.8806244601667" a="3.7255720887657935" b="0.00022819212002203777" c="-3.7733220701654454e-05" d="-2.7692615815666762e-06" /> - <width sOffset="520.41454923231368" a="3.7252100181962837" b="-0.00044385377615026029" c="-5.2935860104448371e-05" d="-3.5583342621329878e-06" /> - <width sOffset="520.72558002917265" a="3.7250667379118845" b="-0.00047781584308424405" c="-9.7510901146869128e-05" d="5.2534871017370003e-06" /> - <width sOffset="524.97632297899349" a="3.7216772578470581" b="-0.0010220305247492585" c="-3.3909745140529774e-05" d="4.7430551996377059e-06" /> - <width sOffset="534.35509413510033" a="3.7130219957337367" b="-0.00040647741135145564" c="0.00010008300720584502" d="4.4343044230320099e-06" /> - <width sOffset="535.07202149782029" a="3.7127836560999419" b="-0.00025613542274006106" c="0.00010913307504772437" d="4.5887173042697324e-06" /> - <width sOffset="535.9662324298173" a="3.7126451622889838" b="-4.9951848580860646e-05" c="7.6287039365666187e-05" d="-4.984901067987621e-06" /> - <width sOffset="537.36652791036443" a="3.7127111134294752" b="0.00013437335202305819" c="7.7293552164437403e-05" d="-4.4775114166273598e-06" /> - <width sOffset="545.16772001664708" a="3.7163375766251923" b="0.00052285184426230358" c="-2.5818014388571517e-05" d="-4.4866434631558102e-06" /> - <width sOffset="552.20512011768733" a="3.7171747396106936" b="-0.0005071346048606311" c="-0.00010793762035022814" d="6.1331124859219044e-07" /> - <width sOffset="554.9343185466812" a="3.7149991603789649" b="-0.0010825961818562947" c="-8.0178669860832456e-05" d="9.7107331052822231e-07" /> - <width sOffset="555.26341853547387" a="3.7146342287049903" b="-0.0011350542590156608" c="-7.6390233670178725e-05" d="1.351073870073825e-06" /> - <width sOffset="565.35911705430067" a="3.6967793664816577" b="-0.0022643627694951809" c="-3.5225378663971485e-05" d="1.4208786765271795e-06" /> - <width sOffset="575.45481557312746" a="3.671790824922891" b="-0.002541151175755374" c="5.7472710496734e-06" d="1.5037735549577411e-06" /> - <width sOffset="585.55051409195426" a="3.6482692693074261" b="-0.0019652978279031934" c="4.9392692276776178e-05" d="8.5339503918177937e-07" /> - <width sOffset="587.48570037356149" a="3.6446572095714602" b="-0.0017645419520186485" c="5.4033033880859194e-05" d="1.6048332651111088e-06" /> - <width sOffset="592.48945137417456" a="3.6373817903768355" b="-0.0011032631027835325" c="6.5546511430762647e-06" d="1.1396571194758123e-06" /> - <width sOffset="595.64621261078105" a="3.6340002210527165" b="-0.0010278096320994687" c="1.5958228690199389e-05" d="7.1087600204276016e-07" /> - <width sOffset="605.74191112960784" a="3.6259817583367306" b="-0.00048822658210999543" c="3.4053459383570498e-05" d="2.4915176071245611e-06" /> - <width sOffset="607.27759283447995" a="3.6253213299487599" b="-0.00036600865828955028" c="0.0042167407381891323" d="-0.0009547988047006506" /> - <width sOffset="610.15201640582495" a="3.6364334081631604" b="0.00020885566483963222" c="-3.8725740196217314e-05" d="6.8206413844913015e-07" /> - <width sOffset="615.83760964843464" a="3.6364943875339786" b="-0.00016535679301188562" c="-2.9006999409236714e-05" d="3.3214700107716448e-07" /> - <width sOffset="625.00368349349628" a="3.632797424639763" b="-0.0006133994964070429" c="-1.4353859152051982e-05" d="1.5870380324425499e-07" /> - <width sOffset="625.93330816726143" a="3.632214916198774" b="-0.00063967544322127113" c="-1.4350565582844061e-05" d="1.6648264763198257e-07" /> - <width sOffset="636.02900668608822" a="3.6244655994098265" b="-0.00087852811371549823" c="-8.5325068451672418e-06" d="2.1157819945340779e-07" /> - <width sOffset="642.83065295889548" a="3.6181620030494557" b="-0.00096523395965942725" c="-2.574733988036348e-05" d="6.2488559253832785e-07" /> - <width sOffset="644.73820570631642" a="3.6162314174391459" b="-0.0010566413561363501" c="8.0944934429883042e-05" d="-2.7775554044772238e-06" /> - <width sOffset="646.12470520491502" a="3.6149145884803988" b="-0.00084819969217272658" c="6.9271522503575245e-05" d="-2.7684899195797642e-06" /> - <width sOffset="656.22040372374181" a="3.6105630553062991" b="-0.00029603034006281045" c="-1.9398351169493136e-05" d="-1.8867717352783691e-06" /> - <width sOffset="659.98921379749891" a="3.6090708378698935" b="-0.00052264646007349046" c="1.3740463019277566e-05" d="5.5359295383891958e-07" /> - <width sOffset="666.3161022425686" a="3.6064543403440767" b="-0.00028229753033135233" c="2.19775990220034e-05" d="1.5117163752734631e-07" /> - <width sOffset="676.4118007613954" a="3.6059999286106978" b="0.00020768455620557061" c="2.7152862615928364e-05" d="2.0886661745695106e-07" /> - <width sOffset="681.80362331265576" a="3.607941847913378" b="0.00051870774469717456" c="7.0709091122609644e-06" d="-5.8514983776726654e-08" /> - <width sOffset="686.50749928022219" a="3.6105321486748037" b="0.00058134491714800654" c="8.3781540378774361e-06" d="-2.1022838652118977e-07" /> - <width sOffset="696.60319779904898" a="3.617038837471291" b="0.00068623014715569813" c="5.4696722487789582e-06" d="-1.2827588530712097e-07" /> - <width sOffset="706.69889631787578" a="3.6243923022747144" b="0.00075744763253994367" c="2.987195500159654e-06" d="-7.4455623290121276e-08" /> - <width sOffset="716.79459483670257" a="3.6322671157948974" b="0.00079499703271367073" c="4.0313496454049404e-07" d="-1.3933424093036192e-08" /> - <width sOffset="726.89029335552937" a="3.6403199176504897" b="0.00079887647631626531" c="-2.9983893354856793e-06" d="3.7508871438171286e-07" /> - <width sOffset="730.82173327929434" a="3.6434371010995026" b="0.00079269286216064323" c="-2.8889583681447461e-05" d="2.2077198673636645e-06" /> - <width sOffset="733.10433089997707" a="3.6451222341429617" b="0.00069531460210067665" c="1.5955985117428304e-05" d="-1.3147453328650739e-07" /> - <width sOffset="736.98599187435616" a="3.6480539337492832" b="0.00081324315605789583" c="1.166927170237697e-05" d="-1.0781669650003198e-07" /> - <width sOffset="747.08169039318295" a="3.6573426183728657" b="0.0010158950090785159" c="6.0234085677528785e-06" d="-1.3625142995135412e-07" /> - <width sOffset="750.53410921712452" a="3.6609161008571385" b="0.0010526136449369615" c="2.5192743172259408e-05" d="2.4824504522364778e-06" /> - <width sOffset="752.23300167056243" a="3.6627892628833605" b="0.0011597079778242838" c="-0.00015662219677376415" d="1.1290603104549593e-05" /> - <width sOffset="757.17738891200975" a="3.6660591254370463" b="0.0004389693382402624" c="9.2114469381365826e-06" d="1.1215686180989502e-05" /> - <width sOffset="766.38301802524552" a="3.6796302867298913" b="0.0034599367847937762" c="0.00050451847026932177" d="-0.00010921757345823024" /> - <width sOffset="767.27308743083654" a="3.6830325490012026" b="0.0040984754944337204" c="0.00021314959662094456" d="-0.00010920598150144205" /> - <width sOffset="769.47252300497871" a="3.6919160660405321" b="0.0034512357800780802" c="-0.00030621191852881087" d="7.4420632145391128e-06" /> - <width sOffset="777.36878594966333" a="3.7037393442994668" b="7.4356760854802154e-06" c="-0.00012685204036466313" d="7.2201168250497328e-06" /> - <width sOffset="787.46448446849013" a="3.6983146490207526" b="-0.00034619354932187213" c="0.00010598710331179955" d="3.7230149562591876e-06" /> - <width sOffset="788.64154600275504" a="3.6980600717191368" b="-8.1212444793110107e-05" c="9.593092754063906e-05" d="-3.6924092776887628e-07" /> - <width sOffset="789.04017516510692" a="3.6980429186051031" b="-4.9067371375049497e-06" c="-0.00021052099524967142" d="1.4706122743774928e-05" /> - <width sOffset="797.56018298731692" a="3.6918146056956997" b="-0.00038961191185144742" c="0.00016361358774538725" d="1.5298229745828117e-05" /> - <width sOffset="801.74658902758085" a="3.6941734684410328" b="0.0017846440307715148" c="0.00086268224106988956" d="-0.00021746973415564649" /> - <width sOffset="804.97141051846882" a="3.7016069060767327" b="0.00056392418356228683" c="-0.00032228390222247168" d="1.4247054897435208e-05" /> - <width sOffset="807.65588150614371" a="3.7010738564539931" b="-0.00085839012100639989" c="-0.00021700890767773964" d="1.2161994289910189e-05" /> - <width sOffset="817.75158002497062" a="3.6828040936423925" b="-0.001521337613124763" c="0.00014525758526280405" d="1.3566584136033055e-05" /> - <width sOffset="820.11507175653742" a="3.680198962514055" b="-0.00060735480094221582" c="0.00012878975008731" d="-3.6974384145240031e-06" /> - <width sOffset="823.56284552783927" a="3.679484346370244" b="0.0001488650954344509" c="0.0001304914426533033" d="-5.8419737800610782e-06" /> - <width sOffset="827.84727854379742" a="3.6820580461144421" b="0.00094531655453330586" c="5.377502005299251e-05" d="-5.7866966591190334e-06" /> - <width sOffset="837.94297706262421" a="3.6911281702439052" b="0.00026171465215567378" c="-0.00012003348468317139" d="-6.4815604120993882e-06" /> - <width sOffset="840.73443582134382" a="3.6907824208395894" b="-0.00055994005399690036" c="-2.2474875516848583e-05" d="-4.2486394289488376e-06" /> - <width sOffset="841.89815766346283" a="3.6900936740791508" b="-0.0006295102021227272" c="-4.448951079790886e-05" d="1.0606274981902788e-06" /> - <width sOffset="848.038675581451" a="3.6847962071350784" b="-0.0010559115435331652" c="-2.2531720222080534e-05" d="1.191100951505171e-06" /> - <width sOffset="855.33065062923106" a="3.6763602816747856" b="-0.0011945101511180289" c="-4.2643029137196628e-05" d="-1.9144622767483274e-06" /> - <width sOffset="858.1343741002778" a="3.6726338002595931" b="-0.0014787766647056978" c="-5.8553950842881969e-05" d="-1.9384144510447711e-06" /> - <width sOffset="868.23007261910459" a="3.6497419152757744" b="-0.0032537705303207899" c="-0.00011807371044175316" d="-1.9196381377766343e-06" /> - <width sOffset="874.2457061716251" a="3.6254776992759545" b="-0.0048827495926264623" c="-0.00040777676176350909" d="0.00018126150468515044" /> - <width sOffset="875.16416700058369" a="3.6207895356000095" b="-0.0051730830953294286" c="-0.0015861886774578909" d="0.0017341260661361078" /> - <width sOffset="876.02453548123333" a="3.616269046982385" b="-0.0040515197601174481" c="0.0037139163440182352" d="0.0014767612947793765" /> - <width sOffset="876.24395396853765" a="3.6155744733811663" b="-0.0022084222668131803" c="0.0014865651198706681" d="-7.6273239243977134e-05" /> - <width sOffset="878.32577113793138" a="3.6167314831340711" b="0.0029893951853215304" c="0.0010094584713033772" d="-7.6435946682515849e-05" /> - <roadMark sOffset="0" color="standard" width="0.15373417684455012" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15373400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.9304170969279228" b="-4.2418794427380636e-10" c="-0.0077473246050788818" d="0.00040790430408382252" /> - <width sOffset="0.44755684145289315" a="3.9289018205511597" b="-0.0066896182672023284" c="-0.0063857998884103585" d="0.0012375755175459745" /> - <width sOffset="1.9636941740897371" a="3.9083936567481183" b="-0.017518775388659501" c="-0.00041343737248867706" d="0.0014628580020968514" /> - <width sOffset="3.5619779547451951" a="3.8853101576103342" b="-0.0076296951178771418" c="0.002005410031087322" d="-0.00048827533483785328" /> - <width sOffset="4.8230781500196018" a="3.877898403919926" b="-0.0049012699106058873" c="0.00056884721012875807" d="6.4448545024954032e-05" /> - <width sOffset="7.9982495723952249" a="3.8701340596521776" b="0.00066036021117756244" c="3.5322092942384391e-05" d="-1.8570706769751309e-06" /> - <width sOffset="10.095698518826797" a="3.8716573879545115" b="0.00078402339545275421" c="2.4730478540584223e-05" d="-1.9281118155840148e-06" /> - <width sOffset="20.191397037653594" a="3.8801092610506389" b="0.00069380874109021488" c="-3.2620093061627763e-05" d="-1.9164274845433282e-06" /> - <width sOffset="21.023120339277177" a="3.8806626499248691" b="0.00063556981347145328" c="-1.5327032796877729e-05" d="-1.8268822840048367e-06" /> - <width sOffset="30.202885498910394" a="3.8837922464358283" b="-0.00010767094320523781" c="-2.7897271656944983e-05" d="1.6468670981969252e-07" /> - <width sOffset="30.287095556480391" a="3.8837829817289817" b="-0.0001123659013568343" c="-2.7703369905091796e-05" d="2.0833309137277161e-07" /> - <width sOffset="40.382794075307189" a="3.8800393269952318" b="-0.00060803376101137101" c="-2.0257828507840339e-05" d="6.6318828376630207e-08" /> - <width sOffset="50.478492594133982" a="3.8719043012864152" b="-0.0009967893521175223" c="-1.4796762902138363e-05" d="-1.6434498009317605e-07" /> - <width sOffset="53.769437747758133" a="3.8684578109396295" b="-0.0010995197486181685" c="-0.0001171601371594959" d="9.6556146460222078e-06" /> - <width sOffset="54.505845414207286" a="3.8675884366446551" b="-0.001256366384155711" c="-0.00012729917285063624" d="1.0388886212326979e-05" /> - <width sOffset="60.574191112960783" a="3.8575981621308033" b="-0.0016536505808661865" c="6.2023770226451492e-05" d="1.0457933054956498e-05" /> - <width sOffset="63.763814668412408" a="3.8532940131509483" b="-0.00093879805267613377" c="-1.4471898311340855e-05" d="6.5887803032799793e-07" /> - <width sOffset="70.669889631787584" a="3.846337402132991" b="-0.0010444127497377591" c="-8.7475300991679706e-06" d="2.911522433007276e-06" /> - <width sOffset="72.399620824423835" a="3.8445197444873735" b="-0.001048540937768374" c="-4.3876721006653088e-05" d="1.2199282648143339e-06" /> - <width sOffset="80.765588150614377" a="3.833391082989305" b="-0.001526537190473563" c="-1.7232359566779488e-05" d="8.6893592030256877e-07" /> - <width sOffset="90.861286669441171" a="3.8171173699194494" b="-0.0016087886017758495" c="9.6996616279589661e-06" d="8.5531308007898583e-07" /> - <width sOffset="91.581560122481676" a="3.8159639539305861" b="-0.0015934845907355269" c="0.00082921293984093334" d="-4.6878357338871527e-05" /> - <width sOffset="100.95698518826796" a="3.8352791806184596" b="0.001593337710309675" c="-0.0004876863942592235" d="-4.6984314223886903e-05" /> - <width sOffset="101.20680382311535" a="3.8356460573457554" b="0.0013408746302429994" c="-6.8107271420547554e-05" d="1.1246088406955306e-06" /> - <width sOffset="106.98687069543175" a="3.8413381648846716" b="0.00066626221775112067" c="-4.8042101924949626e-05" d="-1.3783214518592497e-06" /> - <width sOffset="111.05268370709477" a="3.8431602476402986" b="0.00020724739618669687" c="-6.6246115814809392e-05" d="-7.4060845299965781e-07" /> - <width sOffset="115.11006396871133" a="3.8428610952461746" b="-0.00036690040169872162" c="-2.4409787950359036e-05" d="-3.150731368632851e-07" /> - <width sOffset="121.14838222592157" a="3.839686253526593" b="-0.00069615245473153521" c="-3.5274190204813699e-05" d="-4.2303485491887831e-07" /> - <width sOffset="125.64276766941683" a="3.8358065501038383" b="-0.001038859347015745" c="-2.5472745463690454e-05" d="1.7218484183645336e-06" /> - <width sOffset="131.24408074474837" a="3.8294909705935702" b="-0.0011621535165701276" c="5.717898136179609e-06" d="1.2053667472729586e-06" /> - <width sOffset="135.37186228458145" a="3.8248760549257215" b="-0.0010533358329727933" c="0.0041621154943856861" d="-0.00078720650664566068" /> - <width sOffset="138.9433624142905" a="3.8383418908199665" b="-0.0014472488432632354" c="-8.1552459369845732e-05" d="2.6732071681468576e-06" /> - <width sOffset="141.33977926357517" a="3.8344421278709886" b="-0.0017920610263629322" c="-6.2421789169959352e-05" d="4.7510369642340256e-06" /> - <width sOffset="142.78242004456391" a="3.8317411792617753" b="-0.0019425017122641267" c="-6.1073075033982069e-05" d="3.0554740249758506e-06" /> - <width sOffset="151.43547778240196" a="3.8123393737459366" b="-0.0023130998065315073" c="1.7490453204691674e-05" d="2.7627446253907031e-06" /> - <width sOffset="159.48721113063596" a="3.7962909690321309" b="-0.0014941132762126259" c="7.5094131672506987e-05" d="-1.3519532354175561e-06" /> - <width sOffset="161.53117630122875" a="3.7935392366322627" b="-0.0012040782417008628" c="6.8738210057524114e-05" d="-6.4390155613359512e-07" /> - <width sOffset="171.62687482005555" a="3.7877266739757065" b="-1.304313407361128e-05" c="4.6996493262178182e-05" d="-5.4472130651371028e-07" /> - <width sOffset="178.62198278533771" a="3.789748598463663" b="0.00056448580489020005" c="3.0563377393136624e-05" d="-5.1691400502825676e-07" /> - <width sOffset="181.72257333888234" a="3.7917772556034479" b="0.00073910653410723891" c="2.440642576128895e-05" d="-8.0940811922695808e-07" /> - <width sOffset="191.81827185770914" a="3.8008937626583528" b="0.00098441414348682818" c="4.753986433617487e-07" d="-7.9600306584280941e-07" /> - <width sOffset="201.91397037653593" a="3.8100614898291116" b="0.00075061973774906876" c="-2.3133139152288847e-05" d="-8.0955315232270361e-07" /> - <width sOffset="209.04438345775799" a="3.8139440778885918" b="0.00029724223723315898" c="-8.3468179482593563e-05" d="3.7761136278989043e-05" /> - <width sOffset="211.21199117436876" a="3.8145807856527112" b="0.00046765442343879972" c="0.00020208732810653957" d="-1.1595780341309482e-05" /> - <width sOffset="212.00966889536275" a="3.8150765237757058" b="0.0007679207136841032" c="0.00017472505259805089" d="-1.1632546281534631e-05" /> - <width sOffset="216.33562358028416" a="3.8207265807409749" b="0.0016265556704251622" c="2.092524884409506e-05" d="-1.1499181414905272e-05" /> - <width sOffset="221.71264039222655" a="3.8282899097401906" b="0.0008541828136812645" c="-4.1378658789653108e-05" d="2.5117141968067948e-08" /> - <width sOffset="222.10536741418954" a="3.8286189899168983" b="0.00082169340059334091" c="-4.1336087153360143e-05" d="4.8981770777584168e-08" /> - <width sOffset="232.20106593301634" a="3.8327518569542822" b="2.0371788604749141e-06" c="-4.0184755967468929e-05" d="3.3025190458682589e-08" /> - <width sOffset="242.29676445184313" a="3.8287106500798274" b="-0.00079925109153910394" c="-3.7121220210123613e-05" d="-2.1626986701920849e-07" /> - <width sOffset="247.0634467354603" a="3.8240340100520882" b="-0.0011678829886141153" c="-0.00052529675739885844" d="3.634007920815192e-05" /> - <width sOffset="252.39246297066992" a="3.8083922958713492" b="-0.0036705110393093622" c="6.0879520118144874e-05" d="3.6196884877707956e-05" /> - <width sOffset="252.81767291351628" a="3.8068453481085349" b="-0.0035991043148342226" c="9.41024607701243e-05" d="3.6435769922330215e-05" /> - <width sOffset="256.80376577579847" a="3.7963018234059485" b="-0.0011121251376876922" c="0.00035735807327226413" d="-9.1789834438705194e-06" /> - <width sOffset="262.48816148949675" a="3.7998411839415454" b="0.0020608205576999449" c="0.00019972058399740067" d="-8.7401679654956798e-06" /> - <width sOffset="272.58386000832354" a="3.8320092504648455" b="0.0034209823756295981" c="-6.8268973311973882e-05" d="-8.957128198247244e-06" /> - <width sOffset="282.4282820657869" a="3.8505251789235788" b="-0.00052733177102928526" c="-0.00013536212124767787" d="1.281103078390153e-05" /> - <width sOffset="282.67955852715033" a="3.850384329370987" b="-0.00059293174061164622" c="-0.00012493461292708603" d="1.2389649281189527e-05" /> - <width sOffset="283.8956256053886" a="3.8495008097472869" b="-0.00084182332860048364" c="-1.1783768080070566e-05" d="-9.1753530562587476e-06" /> - <width sOffset="287.48061663313365" a="3.8459086804893405" b="-0.0012800820693031722" c="-0.00010613525056109287" d="1.6313124979730054e-05" /> - <width sOffset="290.99085953756048" a="3.8408130875195874" b="-0.0014221816427235758" c="0.0031560231880703982" d="-0.00058032487082545158" /> - <width sOffset="292.77525704597713" a="3.8450271575521948" b="0.0042976253707742969" c="5.7718296434245388e-05" d="-0.00058031046049352862" /> - <width sOffset="294.41702633896182" a="3.8496704307467269" b="-0.00020537198319478772" c="-0.00012822755250869165" d="5.54812257492e-06" /> - <width sOffset="302.87095556480392" a="3.842122083781724" b="-0.0011838703159725336" c="1.2458783325735617e-05" d="5.7128963222118886e-06" /> - <width sOffset="306.29212295167133" a="3.8384464472708149" b="-0.00089802531343174518" c="3.4289149794623045e-05" d="-8.4196745750623787e-07" /> - <width sOffset="312.96665408363071" a="3.8337297534729178" b="-0.00055282466669441901" c="1.3859218654487781e-05" d="-6.2264425852499611e-07" /> - <width sOffset="318.12210969856085" a="3.8311627326750424" b="-0.00045957076050498404" c="-7.4301011919926179e-05" d="8.5058024514975137e-07" /> - <width sOffset="321.27991778443135" a="3.8289973689724244" b="-0.00090338210741764638" c="-0.00018663302539216985" d="1.35075780042483e-05" /> - <width sOffset="323.06235260245751" a="3.8268706947695583" b="-0.0014399607929230398" c="-0.0001166812653752125" d="1.2962128208532382e-05" /> - <width sOffset="329.46300400217962" a="3.8162727519301347" b="-0.0013405224398233028" c="0.00023835732685833751" d="3.2158482265197267e-06" /> - <width sOffset="333.1580511212843" a="3.8147360789765803" b="0.00055268219612092493" c="0.00027526942567000648" d="3.0966339319345489e-06" /> - <width sOffset="337.37786755409508" a="3.8222026641185907" b="0.003041278982448754" c="0.00083590221070779596" d="-0.00015774653685700346" /> - <width sOffset="340.95036652842617" a="3.8365436014565928" b="0.0029739602337658737" c="-0.00026306351813216967" d="2.4235310320719805e-08" /> - <width sOffset="343.2537496401111" a="3.8419983645091982" b="0.0017624738505145903" c="-0.00025761546678169516" d="5.765749315961379e-07" /> - <width sOffset="351.19754594626926" a="3.8400315852729703" b="-0.002221263356292412" c="-0.0002650289575023812" d="8.3038468848259695e-05" /> - <width sOffset="353.34944815893789" a="3.8348518384661414" b="-0.0022083216452049538" c="0.00027301888508360806" d="8.2791303713833136e-05" /> - <width sOffset="353.55815589376141" a="3.8344035897278266" b="-0.0020835404400894888" c="0.00037875017967595268" d="-3.1749951663754377e-06" /> - <width sOffset="356.30788011805754" a="3.8314721417797575" b="-7.2641608450234882e-05" c="0.00025698876554739033" d="-1.0638500540334592e-05" /> - <width sOffset="363.44514667776468" a="3.8401769261587608" b="0.0019699590663787856" c="2.9538517715808077e-05" d="-1.0573776286334747e-05" /> - <width sOffset="373.54084519659148" a="3.8521954380496686" b="-0.00066675407463897803" c="-0.00029082165982887321" d="-1.058052622386973e-05" /> - <width sOffset="374.28028880544446" a="3.8515391186398205" b="-0.0011142020704122723" c="-2.087134892922075e-05" d="7.4240670048062559e-09" /> - <width sOffset="383.63654371541827" a="3.8392933730964343" b="-0.0015028076947327803" c="-2.0609662876324979e-05" d="1.5892536086103711e-09" /> - <width sOffset="390.81827219787817" a="3.8274382157540421" b="-0.0017985877926503611" c="-3.5701231375847561e-05" d="1.7727799890105586e-06" /> - <width sOffset="393.73224223424506" a="3.8219379019467485" b="-0.0019614932276357843" c="-1.8426960225522087e-05" d="1.5989766359916152e-06" /> - <width sOffset="398.32046898042501" a="3.8127046511460669" b="-0.0020296032437526388" c="9.5804070753938928e-05" d="-1.6143015260723453e-06" /> - <width sOffset="403.82794075307186" a="3.8041629456459938" b="-0.0011212229827477365" c="6.91073505876131e-05" d="-1.3590722178526496e-06" /> - <width sOffset="413.0173081946345" a="3.7986407213250293" b="-0.00019541572341893348" c="9.7250155028814417e-06" d="-2.9947443262374152e-06" /> - <width sOffset="413.1840832112635" a="3.7986083874635597" b="-0.00019242183078519251" c="8.7369135253690812e-05" d="-3.163605738819683e-06" /> - <width sOffset="424.0193377907255" a="3.8027564371861891" b="0.00058666385178555709" c="-2.2760092573278049e-05" d="-1.6267211221978103e-06" /> - <width sOffset="426.24930963381428" a="3.8039334613013063" b="0.00046088716905743612" c="-2.6258268017178873e-05" d="6.05118052146528e-07" /> - <width sOffset="434.11503630955229" a="3.806228564370377" b="0.00016012178808118597" c="-1.1826963311021368e-05" d="3.5023197391727982e-07" /> - <width sOffset="444.21073482837909" a="3.8070000480769606" b="2.840909165291092e-05" c="-3.0362300489913898e-07" d="5.6994093587035058e-07" /> - <width sOffset="448.39727931079926" a="3.8071554836027763" b="5.5835158085127084e-05" c="3.6821714260581967e-05" d="-2.830368797177893e-07" /> - <width sOffset="454.30643334720588" a="3.8087127656836333" b="0.00046135618956609248" c="2.9562644933107959e-05" d="-2.5719958474324105e-07" /> - <width sOffset="460.39371925578007" a="3.8125586028508769" b="0.00079267710319719188" c="4.7766168876975029e-05" d="-2.294990988695367e-06" /> - <width sOffset="464.40213186603268" a="3.8163556484318244" b="0.0010649867110633694" c="1.8678574961663546e-05" d="-2.4304844720524541e-06" /> - <width sOffset="467.73993673985137" a="3.8200280824786077" b="0.0011084439330962302" c="3.270630619065916e-06" d="-1.111917007117085e-06" /> - <width sOffset="474.49783038485947" a="3.8273250278122637" b="0.0010003082454237311" c="-1.9818162712312796e-05" d="-1.0987454616302565e-06" /> - <width sOffset="484.59352890368626" a="3.8342733163428431" b="0.00026418912864541416" c="-5.2191079841849402e-05" d="-1.2097404225557594e-06" /> - <width sOffset="494.68922742251306" a="3.8303762070316258" b="-0.0011595232721861111" c="-8.2916791146218569e-05" d="-2.2780931365515886e-06" /> - <width sOffset="497.15262951565694" a="3.826982612150613" b="-0.0016095108645034692" c="-1.8708733525949472e-05" d="3.7633354874359666e-07" /> - <width sOffset="504.78492594133985" a="3.8137758443893701" b="-0.0018293255767821738" c="-6.9418100859537365e-06" d="4.4496796336030263e-07" /> - <width sOffset="514.8806244601667" a="3.7950578593105115" b="-0.0018334328395529266" c="5.2061084850787243e-06" d="8.3810943907054525e-07" /> - <width sOffset="520.41454923231368" a="3.7852132501225069" b="-0.001698812810649309" c="-1.165180421616744e-05" d="1.6271823696575226e-06" /> - <width sOffset="520.57273577343335" a="3.7849442356779708" b="-0.0017023769770020518" c="-5.0269623972850239e-05" d="3.6898530677229038e-06" /> - <width sOffset="524.97632297899349" a="3.7767879485869482" b="-0.0019304540769936374" c="-4.8666086993844153e-06" d="3.223596824181757e-06" /> - <width sOffset="533.32988199194131" a="3.7622013087285082" b="-0.0013369144832781057" c="0.00046027280833626453" d="-1.9669249228430202e-05" /> - <width sOffset="535.07202149782029" a="3.7611651674309452" b="8.7712934460397723e-05" c="0.00035853014608921584" d="-1.989960005549389e-05" /> - <width sOffset="537.36652791036443" a="3.7630136127147478" b="0.0014187125371503031" c="0.00019960335017789197" d="-2.0406989706822336e-05" /> - <width sOffset="544.78531029606586" a="3.7761920386135355" b="0.0010108401449005465" c="-2.1236339388640846e-05" d="5.0987301644438602e-07" /> - <width sOffset="545.16772001664708" a="3.7765755166815937" b="0.00099482186687301901" c="-2.0102481261130087e-05" d="5.3443125180930175e-07" /> - <width sOffset="554.9343185466812" a="3.7848719149628636" b="0.000755088633585224" c="-2.7181161050403885e-05" d="1.7666920131873066e-07" /> - <width sOffset="555.26341853547387" a="3.7851174770162253" b="0.00073725539742166126" c="-2.6219547957147048e-05" d="1.6706580470922855e-07" /> - <width sOffset="565.35911705430067" a="3.7900601151189868" b="0.00025892970295638432" c="-2.0928356810982799e-05" d="3.7353705029376277e-07" /> - <width sOffset="566.61194674322394" a="3.7903523956916887" b="0.00020824926079975964" c="-3.6348435997879276e-06" d="3.641390302146002e-08" /> - <width sOffset="575.45481557312746" a="3.7919348646437046" b="0.00015250667109799137" c="-4.8870786210417956e-06" d="1.1357965361363781e-07" /> - <width sOffset="585.55051409195426" a="3.7930932914546531" b="8.8558907225348964e-05" c="-7.1396049565632913e-06" d="9.7234968629586058e-07" /> - <width sOffset="587.48570037356149" a="3.7932449787839504" b="7.1850167132283949e-05" c="-1.1804781214070058e-06" d="2.2091146037050967e-07" /> - <width sOffset="591.50916738225851" a="3.7935293442771094" b="7.3079471795115585e-05" c="-0.00015608653718453703" d="4.387670887392036e-06" /> - <width sOffset="595.64621261078105" a="3.7914709078765489" b="-0.00099310780903969615" c="-0.00010278697295466669" d="4.1562146009048071e-06" /> - <width sOffset="605.74191112960784" a="3.7752451042007111" b="-0.0017976772047058331" c="2.2223107457049139e-05" d="4.2570744766498458e-06" /> - <width sOffset="615.83760964843464" a="3.7637418122859589" b="-4.7278570816384818e-05" c="0.00015068969339580678" d="3.9644675623719345e-06" /> - <width sOffset="617.71648911534476" a="3.764211240016988" b="0.00056096291882953462" c="0.00010704991162828348" d="-5.3491103929706618e-07" /> - <width sOffset="625.93330816726143" a="3.775751413627157" b="0.0022118370793114818" c="9.7740693930651611e-05" d="-1.3109596199947457e-06" /> - <width sOffset="628.3140927588795" a="3.7815536378518568" b="0.0026549440660939153" c="0.00034436036814455595" d="-2.4843039162121614e-05" /> - <width sOffset="636.02900668608822" a="3.811124899359398" b="0.0035323998772955646" c="-0.00022949829871107252" d="-2.4755375367288531e-05" /> - <width sOffset="638.29907063237033" a="3.8176714344008746" b="0.0021077407678726798" c="-1.4071414025002587e-05" d="-2.2050514532637795e-10" /> - <width sOffset="642.83065295889548" a="3.8269338548525118" b="0.0019801956412855959" c="7.4576615139226393e-06" d="-4.1352789815633583e-07" /> - <width sOffset="646.12470520491502" a="3.8335228634552179" b="0.002015866193617437" c="3.2430854148690653e-06" d="-4.0473046632570243e-07" /> - <width sOffset="656.22040372374181" a="3.8537885245609775" b="0.0019575944327738836" c="-1.1646847096841787e-05" d="-1.9180380779171196e-07" /> - <width sOffset="663.26701964046515" a="3.8669375070127576" b="0.0017648807797359515" c="-5.1963633009687863e-05" d="1.3348139415982771e-06" /> - <width sOffset="666.3161022425686" a="3.8718735113597349" b="0.001485226875112007" c="-4.2137513816593148e-05" d="6.3936492008705919e-07" /> - <width sOffset="676.4118007613954" a="3.8832310239103021" b="0.00082990982234608856" c="-2.235312418975556e-05" d="7.423892498528933e-07" /> - <width sOffset="681.80362331265576" a="3.8871722752649989" b="0.00065360932911945422" c="1.3115837825995922e-05" d="1.0097708510973881e-06" /> - <width sOffset="686.47380038601818" a="3.8906136646559322" b="0.00084218688405820899" c="-1.2354010604631331e-06" d="-6.3745810751743017e-08" /> - <width sOffset="686.50749928022219" a="3.8906420440172576" b="0.00084210340359772162" c="-6.7962519519956207e-07" d="-1.4974685123999139e-07" /> - <width sOffset="696.60319779904898" a="3.898920309285081" b="0.00078259281872317316" c="-1.4986325859603692e-06" d="-6.2559750481982849e-08" /> - <width sOffset="706.69889631787578" a="3.9066040120681498" b="0.00073320447668908967" c="-1.348409636484418e-06" d="-1.0097950169235895e-07" /> - <width sOffset="711.20676212833916" a="3.9098725485307808" b="0.00071489160810879774" c="1.7248466013395341e-05" d="-8.4695970822984436e-07" /> - <width sOffset="716.79459483670257" a="3.9142580349101697" b="0.00082831860263047957" c="2.6960716684884954e-06" d="-7.7026270126546454e-07" /> - <width sOffset="726.89029335552937" a="3.9221026929562237" b="0.00064723330309960703" c="-2.2477996430433026e-05" d="-7.1683326868737628e-07" /> - <width sOffset="733.10433089997707" a="3.9250846492595688" b="0.00028483511137326434" c="-6.5568843414500532e-05" d="1.6223611319827074e-06" /> - <width sOffset="736.98599187435616" a="3.9252972232972185" b="-0.0001508631635353233" c="-5.0084459682133399e-05" d="1.527756792681918e-06" /> - <width sOffset="746.18638228044301" a="3.9208595121766132" b="-0.00068449539895183015" c="2.7669798973432647e-05" d="1.7189592223935856e-06" /> - <width sOffset="747.08169039318295" a="3.9202700909815658" b="-0.00063081577540036941" c="3.1028886874071606e-05" d="1.8260425059524891e-06" /> - <width sOffset="750.53410921712452" a="3.9185372318511296" b="-0.00035127147498868142" c="2.9361151828065036e-05" d="-7.9265937616135667e-07" /> - <width sOffset="757.17738891200975" a="3.9172670387774096" b="-6.6110488832006641e-05" c="1.2318171939740281e-05" d="-7.9406797011608291e-07" /> - <width sOffset="767.27308743083654" a="3.9170380296639635" b="-6.0191063883995553e-05" c="-1.2517201323144447e-05" d="-8.2866982074015815e-07" /> - <width sOffset="777.36878594966333" a="3.9143018775462828" b="-0.00056631270767650791" c="-3.378880789381418e-05" d="-1.1452355126710112e-06" /> - <width sOffset="785.42262729455354" a="3.906950916079047" b="-0.0013334270108361513" c="-6.8761472101120513e-05" d="-1.3160750468580174e-06" /> - <width sOffset="787.46448446849013" a="3.9039303659895355" b="-0.001630690085166584" c="-5.8049856582100063e-05" d="-1.5952710094282814e-06" /> - <width sOffset="788.64154600275504" a="3.9019279153085811" b="-0.0017739772104989017" c="-4.0480224154294998e-05" d="2.4969848882333968e-06" /> - <width sOffset="797.56018298731692" a="3.8846579536181336" b="-0.0019001879014377008" c="2.5001363937241783e-05" d="3.2434356897202058e-06" /> - <width sOffset="799.56373807199896" a="3.8809772698858334" b="-0.0017609449622408412" c="-1.9836535488110232e-05" d="2.9969922053902e-06" /> - <width sOffset="807.65588150614371" a="3.8670165935322798" b="-0.0014932309511309001" c="5.1877632560364154e-05" d="2.9896631690426249e-06" /> - <width sOffset="808.24138701396305" a="3.8661606831931046" b="-0.001429406952557367" c="9.6103982380645271e-06" d="1.9195765672762272e-06" /> - <width sOffset="817.75158002497062" a="3.855087048053182" b="-0.00072577223722715281" c="5.9080083255870416e-05" d="3.1877550140705683e-06" /> - <width sOffset="819.5283742059413" a="3.8540018970295828" b="-0.00048563473652864708" c="0.00017037595643941156" d="-7.9813385705238645e-06" /> - <width sOffset="823.56284552783927" a="3.8542916941302314" b="0.00049938332548800802" c="3.3829025594064619e-05" d="-5.8368032049780706e-06" /> - <width sOffset="827.84727854379742" a="3.8565932016683178" b="0.00046783222139544847" c="-4.4125250097461921e-05" d="-5.8611160257870127e-06" /> - <width sOffset="834.21292227768402" a="3.8562713919894072" b="-0.00080644125721256394" c="-0.00021162992647165944" d="1.9871768563140823e-05" /> - <width sOffset="837.94297706262421" a="3.851350142617366" b="-0.0015557775457352993" c="1.1424756575845712e-05" d="1.939513377358583e-05" /> - <width sOffset="841.89815766346283" a="3.8465755130845025" b="-0.00055518296967793385" c="0.00024874045890519337" d="1.4085866846540325e-05" /> - <width sOffset="844.02437757865971" a="3.8466549773461036" b="0.00069360949595424597" c="0.00029237138668261229" d="-4.0234917089042146e-05" /> - <width sOffset="847.39139653009374" a="3.8507691163180469" b="0.0012940418653932294" c="0.00010709516398359815" d="-8.1118397467920249e-06" /> - <width sOffset="848.038675581451" a="3.8516493923333854" b="0.0014224869210491585" c="9.2997397439872778e-05" d="-8.0494831145211719e-06" /> - <width sOffset="855.33065062923106" a="3.863846002746826" b="0.0014947132398756653" c="-3.692474844753494e-05" d="-4.9439198862503911e-06" /> - <width sOffset="858.1343741002778" a="3.867637542391805" b="0.0011710692072355042" c="-7.7968301141756777e-05" d="-4.7574850286968702e-06" /> - <width sOffset="867.65184817331328" a="3.8676191158569289" b="-0.0016058853520810835" c="-0.00065087867156746128" d="3.7796751877329333e-05" /> - <width sOffset="868.23007261910459" a="3.8664802437091494" b="-0.0023206819743365028" c="-0.0005856477910679786" d="3.7798256339702042e-05" /> - <width sOffset="875.16416700058369" a="3.834831539623798" b="-0.0049903468050781635" c="0.001878498930933921" d="-0.0015150663051140562" /> - <width sOffset="876.24395396853765" a="3.829725826992127" b="-0.0062330182265983129" c="0.00017008978775238993" d="3.7968228905475141e-05" /> - <width sOffset="878.32577113793138" a="3.8178295544605154" b="-0.0050311678790015274" c="0.00040645609824506391" d="3.7899240334059665e-05" /> - <width sOffset="881.71539654322885" a="3.8069217793894188" b="-0.00096936321404357453" c="0.00014329471987644396" d="0.00016738840421175779" /> - <width sOffset="882.40651859724039" a="3.8063755330682696" b="-0.00053143587186133337" c="4.4044718517987025e-05" d="1.4575743338578553e-08" /> - <roadMark sOffset="0" color="standard" width="0.30573146230992826" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30573099999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-4" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.2149050568966837" b="7.9431058796957462e-10" c="0.008435083877455932" d="-0.0014498999136154443" /> - <width sOffset="3.5619779547451951" a="3.2564010578322895" b="0.0049035377914109848" c="-0.0024631114583150296" d="0.00050123342331939832" /> - <width sOffset="4.8230781500196018" a="3.2596729266814974" b="0.0010825224750992306" c="-0.00097752429361317198" d="-5.149045654340359e-05" /> - <width sOffset="7.9982495723952249" a="3.2516067314854933" b="-0.0066824280304777165" c="-0.00032056671972120548" d="1.4815159158587961e-05" /> - <width sOffset="10.095698518826797" a="3.2363171169992757" b="-0.0078316440503778204" c="-0.00022496540876195911" d="1.3853194562393094e-05" /> - <width sOffset="12.089163215852894" a="3.2199207633750171" b="-0.0085634115593324449" c="-0.023268755335461071" d="0.074391977798743722" /> - <width sOffset="12.39813940592224" a="3.2172478174303816" b="-0.001636616809168469" c="-5.0173641227544934e-06" d="1.6084609249735848e-06" /> - <width sOffset="20.191397037653594" a="3.2049498327218227" b="-0.0014217510625851727" c="3.4982249161537822e-05" d="1.727739665029409e-06" /> - <width sOffset="30.202885498910394" a="3.1959559569712996" b="-0.00020178876709925811" c="4.9133174535394457e-05" d="-2.6383148582978936e-07" /> - <width sOffset="30.287095556480391" a="3.195939312589795" b="-0.00019351936496343351" c="4.8523892739766317e-05" d="1.2008028465713925e-07" /> - <width sOffset="33.740527318637959" a="3.1958546575390216" b="0.00014592484106616587" c="4.2622727280067346e-05" d="-3.8502119421189581e-07" /> - <width sOffset="40.382794075307189" a="3.1985915991922926" b="0.00066118682244618756" c="3.5406839466208114e-05" d="-5.7481336797056294e-07" /> - <width sOffset="50.478492594133982" a="3.2082840434320494" b="0.0012003400455118671" c="1.8810601992633075e-05" d="-3.0152113254074408e-07" /> - <width sOffset="53.769437747758133" a="3.2124272747136504" b="0.0013143526533803333" c="0.00011657455677314227" d="-1.0121480757681507e-05" /> - <width sOffset="60.574191112960783" a="3.2235798704705685" b="0.0014948594389511852" c="-8.9889695435243063e-05" d="-1.0108183183868314e-05" /> - <width sOffset="63.763814668412408" a="3.2271053854414538" b="0.0006129180370187205" c="-1.0047315615485446e-05" d="-3.0912815922643828e-07" /> - <width sOffset="69.296530086578827" a="3.23013657429492" b="0.00047335205047500261" c="-3.6339992440842084e-05" d="3.2597057429431824e-06" /> - <width sOffset="70.669889631787584" a="3.2307265590624925" b="0.00039198085326878261" c="-2.9688759039825538e-05" d="1.6711619656271362e-06" /> - <width sOffset="80.765588150614377" a="3.2333775092702766" b="0.0003035134996571756" c="1.8146325025242694e-05" d="1.4138859175509411e-06" /> - <width sOffset="88.616295425089646" a="3.237562861620523" b="0.0008498651286588712" c="0.0021008261194627644" d="-0.00013944902490498697" /> - <width sOffset="90.861286669441171" a="3.2484811077741251" b="0.0081740743480048089" c="0.0011672853079724016" d="-0.00013834534016305376" /> - <width sOffset="91.581560122481676" a="3.2549225609872505" b="0.0096402854531423519" c="5.0680780069313285e-05" d="-9.0611669740087787e-05" /> - <width sOffset="99.029568751511846" a="3.2920975856904184" b="-0.0046842307167633485" c="0.00023488587769472628" d="4.5634364263727977e-05" /> - <width sOffset="100.95698518826796" a="3.2842684602946539" b="-0.0032701989432651333" c="0.00050857112268758121" d="4.826266040058914e-05" /> - <width sOffset="101.20680382311535" a="3.2834839957163666" b="-0.003007061732233582" c="8.9950063958231212e-05" d="1.5373732357635777e-07" /> - <width sOffset="111.05268370709477" a="3.2627434459000781" b="-0.0011910761702589249" c="9.2575395049703345e-05" d="5.9040404687026638e-07" /> - <width sOffset="115.11006396871133" a="3.2594742395038745" b="-0.00041069072220359875" c="4.8910758002719529e-05" d="1.6486873612837461e-07" /> - <width sOffset="115.85152848827482" a="3.2591966837605684" b="-0.00033788761936521671" c="0.00016490198511936516" d="-4.096407117106742e-06" /> - <width sOffset="121.14838222592157" a="3.2614247659674396" b="0.0010642412738882637" c="9.4593509946850921e-05" d="-4.64656713045683e-06" /> - <width sOffset="131.24408074474837" a="3.2770290427902631" b="0.0015534384130881029" c="-4.5840480565759937e-05" d="-4.5717842969817643e-06" /> - <width sOffset="135.37186228458145" a="3.2823386998593893" b="0.00094130929067231368" c="-0.0042439255854663065" d="0.00078384008909593869" /> - <width sOffset="138.9433624142905" a="3.267275860491782" b="0.0006220306389862441" c="-3.632711385669128e-05" d="-6.0396247176150098e-06" /> - <width sOffset="140.15253838411346" a="3.2679642131639568" b="0.00050768716858439139" c="5.9081776167530691e-05" d="-5.4710881956029889e-06" /> - <width sOffset="141.33977926357517" a="3.2686410826324441" b="0.00062484060054786121" c="4.2676327407547345e-05" d="-1.8248763247506156e-06" /> - <width sOffset="151.43547778240196" a="3.2774212190733665" b="0.00092854395845568091" c="-1.2773395477010231e-05" d="-2.0795310865611115e-06" /> - <width sOffset="159.41241987377006" a="3.2829598287068933" b="0.00032778698353347536" c="0.00016960480589454287" d="-1.8882881591872085e-05" /> - <width sOffset="159.48721113063596" a="3.2829852851313395" b="0.00035284001940871578" c="0.00017449895344252196" d="-1.4768182095617038e-05" /> - <width sOffset="161.53117630122875" a="3.2843093890406867" b="0.00088108433494035862" c="8.6369429579230721e-05" d="-1.3831152360325941e-05" /> - <width sOffset="171.35734490017907" a="3.2881840193435576" b="-0.0014278967264637135" c="-0.00012285513156628724" d="4.3773208764785138e-06" /> - <width sOffset="171.62687482005555" a="3.2877903191825641" b="-0.0014931690044774537" c="-0.00011826147486433287" d="4.3509470649559569e-06" /> - <width sOffset="181.72257333888234" a="3.2651392156079613" b="-0.0025506469862433476" c="1.3253457704160526e-05" d="4.1224042279118546e-06" /> - <width sOffset="185.49514418429325" a="3.2559266876833712" b="-0.002274634002874898" c="0.00041228565981205327" d="-2.0486112926823091e-05" /> - <width sOffset="191.81827185770914" a="3.2528487551199841" b="0.00048201189365317063" c="2.4815892061657926e-05" d="-2.0417580187456585e-05" /> - <width sOffset="198.8747071572765" a="3.2503117222005957" b="-0.0022177394416062167" c="1.0302017438402736e-05" d="8.2298576431759323e-07" /> - <width sOffset="201.91397037653593" a="3.2436896938033692" b="-0.0021323122991848604" c="1.8720766828957995e-05" d="1.0028453554202832e-06" /> - <width sOffset="209.04438345775799" a="3.2298008039487449" b="-0.0017123763282527159" c="8.3190566919408168e-05" d="-3.7567844075862978e-05" /> - <width sOffset="211.21199117436876" a="3.2260973048349277" b="-0.0018812674610168307" c="-0.00020110799564983589" d="1.178907254544417e-05" /> - <width sOffset="212.00966889536275" a="3.2244746803312068" b="-0.0021796023983674086" c="-0.00017224203049144603" d="1.1794246021458843e-05" /> - <width sOffset="221.71264039222655" a="3.1978840624963421" b="-0.0021909195762221823" c="4.7885700685043542e-05" d="2.6994746655273577e-07" /> - <width sOffset="222.69119209587595" a="3.1957862409562092" b="-0.0020964268327756347" c="0.00045071947803135048" d="-1.2008691487093707e-05" /> - <width sOffset="232.20106593301634" a="3.2062834308114803" b="0.003218028582607199" c="0.00010776336659587455" d="-1.2029643958256698e-05" /> - <width sOffset="242.29676445184313" a="3.2373769313436291" b="0.0017156246597614614" c="-0.00025413329694177952" d="-1.2701245957826242e-05" /> - <width sOffset="245.31030422780455" a="3.2398915449141938" b="-0.00016209306039212786" c="-0.00041894545801604002" d="3.1794664138118037e-05" /> - <width sOffset="247.0634467354603" a="3.2384910593361869" b="-0.0013378717161045576" c="0.00023335914159331312" d="-4.761684937073954e-06" /> - <width sOffset="252.39246297066992" a="3.2372679362703356" b="0.0007436046912216224" c="0.00016696223674314163" d="-6.9059585022094967e-06" /> - <width sOffset="255.10054497621945" a="3.2403689767792834" b="0.001495960696655163" c="0.00051080761046585544" d="-7.8603586128957957e-05" /> - <width sOffset="256.80376577579847" a="3.2440103826242277" b="0.0025519191549293217" c="0.00028162329677153155" d="-3.2988832763013241e-05" /> - <width sOffset="262.48816148949675" a="3.2615571489880981" b="0.0025557950878241547" c="-0.00028747546755670129" d="-3.1512999147894025e-05" /> - <width sOffset="267.03020001505843" a="3.2642821616941498" b="-0.0020060045014231782" c="-0.00022658336329291835" d="1.4685364769616833e-05" /> - <width sOffset="272.58386000832354" a="3.2486684425450836" b="-0.0031639101664427544" c="1.1040687018219959e-05" d="1.3731729803946503e-05" /> - <width sOffset="282.20714786596795" a="3.2314812603816629" b="0.00086357572551707534" c="0.00029077384724745934" d="1.1746998519520127e-05" /> - <width sOffset="282.4282820657869" a="3.2316865724736474" b="0.00099389910605647623" c="0.00010112673324991839" d="-1.0021160553012831e-05" /> - <width sOffset="290.99085953756048" a="3.2413201213491543" b="0.00052152376176731543" c="-0.0032466635025299312" d="0.00058661683525195515" /> - <width sOffset="292.77525704597713" a="3.2352460628950843" b="-0.005461657704446515" c="-0.0001109983009391746" d="0.00058669202009390385" /> - <width sOffset="294.41702633896182" a="3.2285763457972974" b="-0.0010820046111454798" c="0.00010637869378345001" d="8.3343702545617032e-07" /> - <width sOffset="302.30355026138426" a="3.22706837145431" b="0.00075142411261903161" c="0.00045404610873731217" d="-2.0051171943184044e-05" /> - <width sOffset="302.87095556480392" a="3.2276372502142068" b="0.0012473141018735821" c="0.00041984155224228164" d="-2.0122062628687468e-05" /> - <width sOffset="312.96665408363071" a="3.2623160176575583" b="0.00357179084612326" c="-0.00019390240707899134" d="-1.9432349246785066e-05" /> - <width sOffset="316.91385199675307" a="3.2721984451792219" b="0.001132758839680868" c="-0.00017304533754982119" d="2.8846268528240778e-06" /> - <width sOffset="318.12210969856085" a="3.2733195714383028" b="0.00072722580087268768" c="-8.4059033657076572e-05" d="1.4114023487889445e-06" /> - <width sOffset="323.06235260245751" a="3.2750308737637708" b="2.1768768687386447e-08" c="-6.4653603982894371e-05" d="1.2791721580218623e-06" /> - <width sOffset="329.46300400217962" a="3.2727176920818186" b="-0.00067041191959348815" c="-0.0001462313988417527" d="1.1025452139121543e-05" /> - <width sOffset="330.15381266527237" a="3.2721884163773711" b="-0.00085666316721553538" c="-0.00021659257262976179" d="9.0769341487242598e-06" /> - <width sOffset="333.1580511212843" a="3.2679060682326719" b="-0.0019122844286240661" c="-0.00013381006583082619" d="9.0476236231167053e-06" /> - <width sOffset="343.2537496401111" a="3.2442717512204093" b="-0.0018476102777190589" c="0.00013797955636318899" d="9.1357890259107274e-06" /> - <width sOffset="343.52415542005383" a="3.2437824163205575" b="-0.0017709853314926498" c="0.0001229886045485946" d="6.2695830125324287e-06" /> - <width sOffset="351.19754594626926" a="3.2402673365718426" b="0.0012239703426149113" c="0.00028846955337968237" d="-7.6192310904069408e-05" /> - <width sOffset="353.34944815893789" a="3.2434777727469486" b="0.0014070195361479156" c="-0.00019964991478110204" d="-7.6060004317520598e-05" /> - <width sOffset="353.55815589376141" a="3.2437620406049783" b="0.0013137432985957181" c="-0.00030116658662518279" d="9.9062945626866556e-06" /> - <width sOffset="363.44514667776468" a="3.2368854205156672" b="-0.0017364214780144825" c="-7.0903488415707538e-06" d="9.9592166369151455e-06" /> - <width sOffset="373.54084519659148" a="3.2288802485419064" b="0.0011656380270020556" c="0.00029403036528679059" d="9.9407161907188532e-06" /> - <width sOffset="374.28028880544446" a="3.2299069602657444" b="0.0016167818363175806" c="2.2660744067528104e-05" d="-6.4723410017911587e-07" /> - <width sOffset="377.79825034785802" a="3.2358470075784682" b="0.0017521904772382841" c="5.079881281887425e-06" d="1.165692688307945e-06" /> - <width sOffset="383.63654371541827" a="3.2464819361116799" b="0.0019307063985764511" c="2.5542173396639783e-05" d="1.15480769788633e-06" /> - <width sOffset="389.04572710066196" a="3.2578555962492608" b="0.0023083974715044009" c="0.00011029580360317736" d="-4.3838741815698515e-06" /> - <width sOffset="393.73224223424506" a="3.2706451688604892" b="0.003053348713501955" c="4.9027897412032046e-05" d="-4.2435014961049563e-06" /> - <width sOffset="398.32046898042501" a="3.2852768696713315" b="0.0032352505854271593" c="-0.00010160417264982822" d="-1.0302233340423868e-06" /> - <width sOffset="403.82794075307186" a="3.2998409353436733" b="0.0020223393989955447" c="-0.00012007916712418548" d="-8.7246807603616443e-07" /> - <width sOffset="410.50267165420212" a="3.307730287354381" b="0.00030273646571853823" c="-3.7002171325398959e-05" d="2.2920975868537097e-06" /> - <width sOffset="413.1840832112635" a="3.3083201939393101" b="0.00015374069054537509" c="-9.7706465753277596e-05" d="2.4609591872302846e-06" /> - <width sOffset="413.92363927189871" a="3.3083814493609851" b="1.3259887159660245e-05" c="-0.00010221804671733055" d="1.1237855915654448e-06" /> - <width sOffset="424.0193377907255" a="3.2992532927823408" b="-0.0017070460484764583" c="-6.1867607878778098e-05" d="-4.1036187306137219e-07" /> - <width sOffset="424.4197637519805" a="3.2985598009692718" b="-0.0017567902346249165" c="-8.5904686781166682e-05" d="7.4989677724356952e-06" /> - <width sOffset="426.24930963381428" a="3.2951040523085964" b="-0.0019958208738112678" c="-5.2130021416405816e-05" d="5.2671285979481316e-06" /> - <width sOffset="434.11503630955229" a="3.2787434514255045" b="-0.00183827556837626" c="7.5629033104313985e-05" d="4.4288451489334105e-06" /> - <width sOffset="438.65760817138732" a="3.2723686958359015" b="-0.00087700781714880724" c="9.6774081655690787e-05" d="-2.8108130752368405e-06" /> - <width sOffset="444.21073482837909" a="3.2700014716119941" b="-6.224329906764491e-05" c="5.3424584608696368e-05" d="-2.2040506212475972e-06" /> - <width sOffset="454.30643334720588" a="3.2725503474149353" b="0.0003425424957190545" c="-1.4174180929984989e-05" d="-2.2768189308397237e-06" /> - <width sOffset="460.39371925578007" a="3.2735967066046441" b="-8.3125004106146712e-05" c="-7.8653590479674427e-05" d="-2.3902752690109278e-07" /> - <width sOffset="464.40213186603268" a="3.2719843563343565" b="-0.00072519872427763735" c="-8.1938765002124379e-05" d="-1.2110774261169556e-07" /> - <width sOffset="470.54340670656302" a="3.2644123191556313" b="-0.0017453185050134369" c="-2.8897895925074104e-05" d="1.4548885537794134e-06" /> - <width sOffset="474.49783038485947" a="3.2571486666384621" b="-0.0019056152391930276" c="-1.2839729299135975e-05" d="1.4286421519053398e-06" /> - <width sOffset="481.8408925135397" a="3.2430289496087719" b="-0.0018630815383904522" c="-0.00060791815431085374" d="3.7616510288997974e-05" /> - <width sOffset="484.59352890368626" a="3.2340789213794312" b="-0.0043547751097621854" c="-0.00029691001096355857" d="3.7253691507755155e-05" /> - <width sOffset="493.62587736719809" a="3.1979740051753502" b="-0.00060052510392099461" c="0.0032368247133399692" d="-0.00047181936207618252" /> - <width sOffset="494.68922742251306" a="3.2004280684330864" b="0.0046827530315193735" c="0.0017574734317463833" d="-0.00045954433538817144" /> - <width sOffset="497.15262951565694" a="3.2157589059029297" b="0.0049754530651468197" c="-0.0017196976373488281" d="-0.00046219877033444774" /> - <width sOffset="497.19314306600955" a="3.2159576258145943" b="0.0048338350648092637" c="7.6255965671718487e-05" d="-2.2874901252145902e-05" /> - <width sOffset="504.78492594133985" a="3.2470410802942173" b="0.0020364762566178131" c="-0.00042629171404716414" d="-3.1396387578754927e-05" /> - <width sOffset="506.1277187287742" a="3.2489309862517883" b="0.00072180160860409724" c="-2.1998390185209031e-05" d="5.2260703379741606e-07" /> - <width sOffset="514.8806244601667" a="3.2539139319227099" b="0.00045681797802167275" c="-7.3737392750335108e-06" d="5.6975990722680172e-07" /> - <width sOffset="520.57273577343335" a="3.2563803586418194" b="0.00042825457576880236" c="4.1745685905739989e-05" d="-1.4929110319690394e-06" /> - <width sOffset="524.97632297899349" a="3.2589482464044588" b="0.00070906640008387679" c="2.1454996862976888e-05" d="-1.2075661317157502e-06" /> - <width sOffset="529.27878587848431" a="3.2622999607140946" b="0.00082662460866490871" c="0.00011772993166367619" d="-7.1110372658874146e-06" /> - <width sOffset="533.32988199194131" a="3.2671080363202374" b="0.0014303893475348158" c="-0.00035304645274994765" d="1.578180878707259e-05" /> - <width sOffset="535.07202149782029" a="3.2686119064624126" b="0.00034397274106162733" c="-0.00026995679700716926" d="1.5748439827817717e-05" /> - <width sOffset="544.78531029606586" a="3.2609154643893334" b="-0.00044286350008533484" c="-4.4394722289399686e-05" d="-5.1684228966853254e-06" /> - <width sOffset="545.35678445952294" a="3.2606469161906588" b="-0.00049866812645066425" c="0.00011083952045733248" d="-6.8368879951356094e-06" /> - <width sOffset="555.26341853547387" a="3.2599375684313148" b="-0.00031552023789848586" c="-8.8138631067526471e-05" d="-7.8172796779679879e-06" /> - <width sOffset="557.98791580924774" a="3.2582655976662718" b="-0.00096986747145911157" c="-2.7900940224126712e-05" d="1.1342527838774129e-06" /> - <width sOffset="565.35911705430067" a="3.2500548037983981" b="-0.0011963068216376889" c="-2.2957249981812686e-06" d="1.1115829869361747e-06" /> - <width sOffset="566.61194674322394" a="3.2485546176041709" b="-0.0011968249638009735" c="-1.4007430786601901e-05" d="1.4487061342082623e-06" /> - <width sOffset="575.45481557312746" a="3.237877672914832" b="-0.0011047062048751676" c="2.1307872864184981e-05" d="1.7690803094853234e-06" /> - <width sOffset="581.97377104655197" a="3.2320717548399114" b="-0.00060135540339608881" c="-2.0094763186735022e-05" d="4.6111222196737266e-06" /> - <width sOffset="585.55051409195426" a="3.2298747808322839" b="-0.00056813149643465048" c="2.0413411260306855e-05" d="3.5112488434540632e-06" /> - <width sOffset="591.17503867608332" a="3.2279498635962973" b="-5.2620422735698593e-06" c="0.00018749620904358588" d="-6.9272184382578492e-06" /> - <width sOffset="591.50916738225851" a="3.227968779442639" b="0.00011771358380332116" c="0.0003381250104278528" d="-1.1093977850566428e-05" /> - <width sOffset="595.64621261078105" a="3.2334573022987652" b="0.0023457654464020782" c="0.00019962376990152254" d="-1.1319084209687813e-05" /> - <width sOffset="603.70290454622682" a="3.2593945948069445" b="0.0033582049365579953" c="0.0001139498014097807" d="-1.1663544901661502e-05" /> - <width sOffset="605.74191112960784" a="3.2666168735431329" b="0.0036774184890735443" c="4.2660486829683304e-05" d="-1.1172424474437002e-05" /> - <width sOffset="615.83760964843464" a="3.2965948130313998" b="0.0011226079475943028" c="-0.0002960338183338066" d="-1.1584657100280756e-05" /> - <width sOffset="617.42707346060911" a="3.297584739810179" b="9.373559811923312e-05" c="-0.00028064033808365018" d="-1.4488962908870151e-06" /> - <width sOffset="617.71648911534476" a="3.2975883264021637" b="-6.9071901105853783e-05" c="-0.00021591228603312998" d="3.0504823035582732e-06" /> - <width sOffset="625.93330816726143" a="3.2841355253436966" b="-0.0029994261268707391" c="-0.00014155753918831189" d="3.8126318857546903e-06" /> - <width sOffset="628.3140927588795" a="3.2762436205333101" b="-0.0036086306033154165" c="-0.00037030938505144595" d="2.7344711427886946e-05" /> - <width sOffset="636.02900668608822" a="3.2389190117596232" b="-0.0044397774523427542" c="0.00026319505172741665" d="2.7368800881719327e-05" /> - <width sOffset="638.29907063237033" a="3.2305168894195027" b="-0.002821728337470855" c="6.5566096150302349e-05" d="2.6136460194629107e-06" /> - <width sOffset="639.6686491486189" a="3.2267820106129164" b="-0.0026274249012969353" c="-0.00093002702144222163" d="0.00058278859070490599" /> - <width sOffset="641.29560122884254" a="3.2225553378239336" b="-0.0010257665780460125" c="0.00077099218165340116" d="-5.7588174851946125e-05" /> - <width sOffset="646.12470520491502" a="3.2290961875962094" b="0.0023917251653119238" c="-6.3413384999188519e-05" d="-5.7559018919894476e-05" /> - <width sOffset="649.95073735293931" a="3.2340949925307649" b="-0.00062125502780877419" c="-0.00011911624780649809" d="6.0617211668460638e-06" /> - <width sOffset="656.22040372374181" a="3.2270115505333963" b="-0.0014000578592342446" c="-6.4816238709184212e-06" d="6.0453323302624325e-06" /> - <width sOffset="663.26701964046515" a="3.2189392881819199" b="-0.00059086565848604465" c="0.00015757786380823111" d="4.5187145808049231e-06" /> - <width sOffset="665.67889184007868" a="3.2184942445778457" b="0.000248107496158925" c="0.0010330145032208644" d="-8.6802109673244783e-05" /> - <width sOffset="666.3161022425686" a="3.2190493250634002" b="0.0014588680410216562" c="0.00086921282975886097" d="-8.6159678404070861e-05" /> - <width sOffset="673.41807716032122" a="3.2423883306437968" b="0.00076794555543793449" c="-0.00030517149325181035" d="1.2885023897239652e-05" /> - <width sOffset="676.4118007613954" a="3.2422980008631308" b="-0.00071281116793711478" c="-0.00018690511566483276" d="1.3587202617264159e-05" /> - <width sOffset="686.47380038601818" a="3.2300441973488772" b="-0.00034722801663749389" c="0.00025173683221626846" d="1.4660714875615957e-05" /> - <width sOffset="687.50217151341917" a="3.2299692859327198" b="0.00021704295610396182" c="3.0076039838271226e-05" d="-3.9389889815757023e-07" /> - <width sOffset="696.60319779904898" a="3.2341388270178433" b="0.00066661023765913693" c="2.6496141273835466e-05" d="-8.4982127041553337e-07" /> - <width sOffset="701.21887699422552" a="3.2376966059877201" b="0.00085689057614652504" c="0.0005565465039430855" d="-3.9741568052130763e-05" /> - <width sOffset="706.69889631787578" a="3.2525656113038548" b="0.0033762709623727902" c="-9.3856424524796112e-05" d="-3.9716945108737525e-05" /> - <width sOffset="710.61356865094308" a="3.2619616280170929" b="0.00081549068806618062" c="-0.00039519443833936825" d="2.1335725716256862e-05" /> - <width sOffset="711.20676212833916" a="3.2623107647967005" b="0.00036915991140230056" c="-0.00037718828012539346" d="2.208170592542979e-05" /> - <width sOffset="716.79459483670257" a="3.2564489679949791" b="-0.001777740870876903" c="-7.7221169023321359e-06" d="2.2283467832271607e-05" /> - <width sOffset="721.39417828187231" a="3.250277124552758" b="-0.00043447955451307422" c="0.00010428523065372683" d="-4.7053823275451875e-06" /> - <width sOffset="726.89029335552937" a="3.2502581479399213" b="0.00028543728462718731" c="2.352249558696707e-05" d="-4.846044917267892e-06" /> - <width sOffset="734.47409366516217" a="3.2516619976152539" b="-0.00019392957337026752" c="-0.0083587557014010976" d="0.0016239154659783395" /> - <width sOffset="736.98599187435616" a="3.2241718763899252" b="-0.011447686571858771" c="0.0038804628784146226" d="0.0016238734998444886" /> - <width sOffset="737.59080855717184" a="3.2190268824768329" b="-0.0049716947355996693" c="0.0003568118430855133" d="7.8030434903123949e-07" /> - <width sOffset="746.18638228044301" a="3.203150511286454" b="0.0013352660260844956" c="0.00034134695192459294" d="5.8910188703456833e-07" /> - <width sOffset="746.52229903782211" a="3.2036375894632307" b="0.0015647937714464682" c="0.00012005204767268044" d="-4.4797501112280965e-06" /> - <width sOffset="757.17738891200975" a="3.228521154842205" b="0.0025973537601824597" c="-2.5614580770192658e-05" d="-4.1745114952149612e-06" /> - <width sOffset="761.69030036237609" a="3.2393374202160485" b="0.0021111021564536184" c="-0.0011445553434757385" d="5.6239942181934584e-05" /> - <width sOffset="767.27308743083654" a="3.2252361510528558" b="-0.0054099382589273297" c="-0.00020397995370580863" d="5.6096862790445377e-05" /> - <width sOffset="775.40356369839401" a="3.1979166997802997" b="0.0023979428853522647" c="9.5273950685010553e-05" d="-1.2599275006683179e-06" /> - <width sOffset="777.36878594966333" a="3.2029875851766638" b="0.0027578139687378851" c="8.9934135567389329e-05" d="-1.4174293892863433e-06" /> - <width sOffset="785.42262729455354" a="3.2302916261077126" b="0.0039306225351556463" c="6.2988910153424267e-05" d="-1.2465898551992833e-06" /> - <width sOffset="787.46448446849013" a="3.2385693960195376" b="0.0041722594761415752" c="5.1867531851927404e-05" d="-4.4718983531068081e-06" /> - <width sOffset="795.34385985028757" a="3.2724767704403348" b="0.0041567195066663717" c="-0.00046132801213426093" d="1.7340211761370937e-05" /> - <width sOffset="797.56018298731692" a="3.2796120991313749" b="0.0023673455637779352" c="-0.00034543594805875244" d="1.7318231817040938e-05" /> - <width sOffset="799.56373807199896" a="3.2831078319805749" b="0.0011917039152569871" c="-0.00017700874818523215" d="1.756467530137065e-05" /> - <width sOffset="807.88524734352768" a="3.2908887270779066" b="0.001894674468130689" c="0.00015928250204786526" d="-1.6864304330427232e-05" /> - <width sOffset="808.24138701396305" a="3.2915829367088989" b="0.002001711128068026" c="0.00018878298575729336" d="-1.5794217754601055e-05" /> - <width sOffset="817.75158002497062" a="3.3141086385952327" b="0.0013069705453445024" c="-0.00027042736833770865" d="-1.1733041889274548e-05" /> - <width sOffset="819.10211270502691" a="3.315351600266577" b="0.00051232750712641457" c="-0.00040268911926613388" d="1.6256931897389318e-05" /> - <width sOffset="819.5283742059413" a="3.3154980767213367" b="0.00017788736869654449" c="-0.00047620392619654353" d="2.7426025481770683e-05" /> - <width sOffset="827.84727854379742" a="3.2998118489973023" b="-0.0020511165072045309" c="0.00020320241909432105" d="2.8376129042076159e-05" /> - <width sOffset="831.02856939441472" a="3.2962567986770308" b="0.00010332681787624367" c="0.0004027362818691457" d="-5.3599774104448104e-06" /> - <width sOffset="834.21292227768402" a="3.3004965433358771" b="0.0025051835249664872" c="0.00040710745017040305" d="-3.1092861999331404e-05" /> - <width sOffset="837.94297706262421" a="3.3138915879471531" b="0.0042444359479891147" c="6.0079040841753745e-05" d="-3.1346579307904443e-05" /> - <width sOffset="843.2827026450401" a="3.3334962136246045" b="0.0022047231826319326" c="-0.00050928419952056059" d="-2.9632922193353504e-06" /> - <width sOffset="844.02437757865971" a="3.3348500446534959" b="0.0014443863743567186" c="-0.00046965957413979537" d="5.135749171873742e-05" /> - <width sOffset="847.39139653009374" a="3.3363492574955429" b="2.8372397584818833e-05" c="-0.00017203359274019215" d="1.9234414379407204e-05" /> - <width sOffset="848.038675581451" a="3.3363007616031313" b="-0.00017015914623635942" c="-0.00012862499439637669" d="1.9836913654912179e-05" /> - <width sOffset="858.1343741002778" a="3.3418849144531779" b="0.0032982434263611003" c="0.00047182997143297562" d="2.0747463109586459e-05" /> - <width sOffset="859.15579366029203" a="3.3457681734574489" b="0.0043270535051752861" c="0.0001570681870213234" d="3.7531449041600121e-06" /> - <width sOffset="867.65184817331328" a="3.3961703917705139" b="0.0078087123896135374" c="0.00068980160730737624" d="-3.8801092004512112e-05" /> - <width sOffset="868.23007261910459" a="3.4009087096107065" b="0.0085675140139586017" c="0.00062143822056608448" d="-3.8837493604082183e-05" /> - <width sOffset="878.32577113793138" a="3.5107794705328725" b="0.0092399032964255289" c="-0.00055640471643410207" d="-3.8140624563418491e-05" /> - <width sOffset="879.75727139063792" a="3.5227543313205563" b="0.0074124438124879228" c="-0.0010163273961279811" d="5.0674130278566645e-05" /> - <width sOffset="881.71539654322885" a="3.5337524253000456" b="0.0040151438145992644" c="-7.0094466874767481e-05" d="-7.8815033598579577e-05" /> - <width sOffset="882.40651859724039" a="3.5364678811750179" b="0.00380531822082226" c="0.0002128005639727049" d="8.8558794870310511e-05" /> - <width sOffset="883.31324863781151" a="3.5401592520055485" b="0.0044096518768845464" c="0.0012784397124981598" d="-0.0002231778736238707" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="99.029568751511846" color="standard" width="0.28672274031832062" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.28672300000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.9266637445723571" b="1.2765339162404017e-09" c="-0.0023364275387535568" d="0.000716944083624651" /> - <width sOffset="1.9656502614314224" a="3.9230813799287194" b="-0.00087485285006023419" c="0.00040757133974868911" d="-1.0001232763310702e-05" /> - <width sOffset="10.095698518826797" a="3.9375338698142608" b="0.003769121482485933" c="0.00016403553793306201" d="-9.2852103901369646e-06" /> - <width sOffset="12.089163215852894" a="3.9456257856183514" b="0.0043124240558958978" c="0.023235143810184093" d="-0.074387409814571481" /> - <width sOffset="12.39813940592224" a="3.9469822036136151" b="-0.0026338327508623766" c="-2.435996611660935e-05" d="2.959523247276948e-06" /> - <width sOffset="18.009737353096174" a="3.9319580726209962" b="-0.002627642981540685" c="-6.4156956659195926e-05" d="1.9559926497923027e-06" /> - <width sOffset="20.191397037653594" a="3.9259403967675341" b="-0.0028796508166159611" c="-3.8248598909657623e-05" d="5.7080749313949929e-06" /> - <width sOffset="27.800157033208247" a="3.9043298723115365" b="-0.00247032297335138" c="9.5652686544036463e-05" d="-1.1338894528068647e-05" /> - <width sOffset="30.287095556480391" a="3.8986035219426629" b="-0.0022049468064289997" c="1.1578396321735131e-05" d="-1.0197753469576881e-05" /> - <width sOffset="33.019665536704295" a="3.8924567313932394" b="-0.0023701072500241999" c="-2.4054842869650757e-05" d="-1.4402642107586497e-08" /> - <width sOffset="33.740527318637959" a="3.8907357063628769" b="-0.0024048101364600423" c="-1.6940757147858283e-05" d="4.9069883779460704e-07" /> - <width sOffset="40.382794075307189" a="3.8741586963672638" b="-0.0025649117247053817" c="-6.2179550191571178e-06" d="3.3153907410614349e-07" /> - <width sOffset="50.478492594133982" a="3.8479715162315644" b="-0.0025890864242184416" c="1.152716759912939e-05" d="-1.2998614064682724e-06" /> - <width sOffset="52.957673161684689" a="3.8416037462005761" b="-0.002555898720386618" c="-0.00011016065241632844" d="1.0034240421716687e-05" /> - <width sOffset="60.574191112960783" a="3.8201797035246923" b="-0.0024876805238070649" c="0.00011930925771369346" d="1.0131066235110331e-05" /> - <width sOffset="64.929879730314298" a="3.8124448728842886" b="-0.000871712097317444" c="8.2047468692020533e-05" d="-9.7289487992002486e-06" /> - <width sOffset="69.296530086578827" a="3.8093928133736803" b="-0.00071169102418259904" c="-2.4239562104105936e-05" d="-1.3297782703535789e-05" /> - <width sOffset="70.068421867766105" a="3.8088229068475767" b="-0.00077288079358432855" c="-0.00039513879995642284" d="1.0224399918078531e-05" /> - <width sOffset="70.669889631787584" a="3.8082173218985744" b="-0.0012371108513453695" c="-0.00036763264953862575" d="1.1696019010128927e-05" /> - <width sOffset="80.765588150614377" a="3.7702925841049604" b="-0.0050838430937472333" c="-1.5614393683144708e-05" d="1.14135798115563e-05" /> - <width sOffset="85.610046223652262" a="3.7465953184529628" b="-0.0044315414686973698" c="-3.7027092372801224e-05" d="-2.8760992685759974e-06" /> - <width sOffset="88.616295425089646" a="3.7328602258640808" b="-0.0047321453394863454" c="-0.0021123456868231802" d="0.00013798681155349432" /> - <width sOffset="90.861286669441171" a="3.7131516916343168" b="-0.012130185817643026" c="-0.0011814221655384385" d="0.00013652064179928576" /> - <width sOffset="95.019067323134422" a="3.6521062056140643" b="-0.014874219936715234" c="0.00048766323126401759" d="0.00014191223749942833" /> - <width sOffset="99.029568751511846" a="3.6094508647383456" b="-0.0041150706666444855" c="-1.3753667119077525e-05" d="5.6662034956014304e-06" /> - <width sOffset="100.95698518826796" a="3.6015088872221872" b="-0.0041049400366851814" c="1.8311381585008628e-05" d="3.0167205309799997e-06" /> - <width sOffset="108.2191730720737" a="3.573819185926201" b="-0.0033616788030306874" c="8.2767224622767451e-05" d="-1.1758759399149773e-05" /> - <width sOffset="111.05268370709477" a="3.5646908457816169" b="-0.0031758607463444324" c="-1.9165549387491988e-05" d="-5.5218567285693859e-06" /> - <width sOffset="112.33179899967806" a="3.5605856401122402" b="-0.0032519941655825028" c="4.3742709058678806e-05" d="-7.478042271050716e-06" /> - <width sOffset="115.85152848827482" a="3.5493553330094363" b="-0.0032219942425602264" c="-0.00015084384280551747" d="-3.2167664231638616e-06" /> - <width sOffset="121.14838222592157" a="3.5275786762631594" b="-0.00509074494854152" c="-0.00019384344735136604" d="-2.4322839080514683e-06" /> - <width sOffset="121.55103707792357" a="3.5254972763046464" b="-0.0052480320031095696" c="-0.00032226290057505921" d="1.9001741269927615e-05" /> - <width sOffset="131.24408074474837" a="3.4616547231482979" b="-0.0061395174894680483" c="0.00023756957270260458" d="1.5413762873337793e-05" /> - <width sOffset="133.26810856091851" a="3.4503292255511591" b="-0.0049883864826465504" c="0.00087429159964089751" d="-0.00020634514260216695" /> - <width sOffset="136.61217861637792" a="3.4357082439270332" b="-0.0060635539563568099" c="-0.00064539070880700834" d="5.5867560836394692e-05" /> - <width sOffset="139.79272159146225" a="3.4116916497668548" b="-0.0084734955245486208" c="-0.00034249478087868571" d="5.6782199968610008e-06" /> - <width sOffset="140.15253838411346" a="3.4085986661465775" b="-0.0087177608261902358" c="-0.00045368322142606414" d="5.1096834572664063e-06" /> - <width sOffset="141.33977926357517" a="3.3976176499317532" b="-0.0097734164362533373" c="-0.00043240900830991252" d="6.1218601970470867e-06" /> - <width sOffset="151.43547778240196" a="3.261175008544158" b="-0.016632480973603869" c="-0.00024667088563850009" d="6.5408198347247848e-06" /> - <width sOffset="151.87982889517863" a="3.2537362163307906" b="-0.016847823525007962" c="-0.0029313809483075414" d="0.0002612633719766709" /> - <width sOffset="158.03229744668411" a="3.099964589840531" b="-0.023249576919784538" c="-0.0023047255193347645" d="0.00056673201360666855" /> - <width sOffset="159.41241987377006" a="3.0649772382084048" b="-0.026372755815057072" c="-0.0001903899313850025" d="0.00058353536247656541" /> - <width sOffset="161.53117630122875" a="3.0137953284216934" b="-0.019320839394141885" c="0.0035197656600123028" d="0.00058432736274806199" /> - <width sOffset="162.5922291571969" a="2.9979555845666273" b="-0.0098779592129784217" c="0.00054379594149034339" d="1.477786150353057e-05" /> - <width sOffset="169.02791855356386" a="2.9608461991065447" b="-0.0010423429158656593" c="0.0011842121554132997" d="-5.6601001491697928e-05" /> - <width sOffset="171.35734490017907" a="2.9641285056971327" b="0.0035533374084591902" c="0.00059017141912866798" d="-7.4809474722764078e-05" /> - <width sOffset="171.62687482005555" a="2.9651276454625863" b="0.0038551712070262994" c="0.00051411551924869297" d="-7.5464435242215486e-05" /> - <width sOffset="175.7421087593342" a="2.9844399250948763" b="0.004252577797697504" c="0.00048028512434500993" d="-5.2801345490167919e-05" /> - <width sOffset="181.72257333888234" a="3.015756121567791" b="0.0043317622545100435" c="-0.00046886106805446066" d="-5.3450850364319628e-05" /> - <width sOffset="184.18150625435533" a="3.0227780513808966" b="0.0010564186075349008" c="-0.00019837664373019859" d="6.3608498153248313e-06" /> - <width sOffset="185.49514418429325" a="3.0238378945811597" b="0.00056815813891461552" c="-0.00052568509907630035" d="3.0969366970066999e-05" /> - <width sOffset="191.81827185770914" a="3.0142419136475773" b="-0.0023651434078399737" c="6.4774281807379488e-05" d="2.9883613939275891e-05" /> - <width sOffset="193.65624553315033" a="3.010299205121866" b="-0.0018241828151255722" c="0.0011401812500471443" d="-7.5470271797205084e-05" /> - <width sOffset="198.8747071572765" a="3.0211044320040008" b="0.0039101046863052758" c="-0.00045904702742477938" d="-9.6710837767340662e-05" /> - <width sOffset="199.40645781767259" a="3.0230392920157847" b="0.0033398700552361737" c="-6.4035768935458674e-05" d="-2.1127280828293138e-08" /> - <width sOffset="201.91397037653593" a="3.0310110924931939" b="0.0030183305446970137" c="-6.318136759871906e-05" d="2.2264089966500977e-07" /> - <width sOffset="212.00966889536275" a="3.0552726992346377" b="0.0018106872372627611" c="-5.5344862191713577e-05" d="1.117829196078182e-07" /> - <width sOffset="217.57554556401783" a="3.0636555077249437" b="0.0012049906463872419" c="-0.00015392860293690603" d="1.1962439633124721e-05" /> - <width sOffset="222.10536741418954" a="3.0670672889907475" b="0.00054683450855116261" c="7.9535350566408934e-06" d="1.2398407830356714e-05" /> - <width sOffset="222.69119209587595" a="3.067392860414464" b="0.0005689183123257516" c="-0.00037229788966719972" d="2.4677046785676696e-05" /> - <width sOffset="225.21723074723559" a="3.0668521378741511" b="-0.00083957622945792258" c="-0.00025232370502109342" d="1.0742141143646663e-05" /> - <width sOffset="232.20106593301634" a="3.0523409386438853" b="-0.0027921404772716664" c="-2.7928141315176901e-05" d="1.0671448236321247e-05" /> - <width sOffset="242.29676445184313" a="3.0322865686906368" b="-9.3046494816299754e-05" c="0.00029722585116257882" d="1.0433757404968636e-05" /> - <width sOffset="245.31030422780455" a="3.0349909457563706" b="0.0019826174165627829" c="0.0004415385113951491" d="-3.4062152681692884e-05" /> - <width sOffset="245.85919777113511" a="3.0362065872406347" b="0.002436545535352096" c="0.00047616622394834021" d="-3.5868877083609038e-05" /> - <width sOffset="252.39246297066992" a="3.0624471502882784" b="0.0040653525018114001" c="-0.00022782238083798572" d="-3.356165884732726e-05" /> - <width sOffset="255.10054497621945" a="3.0711191313487589" b="0.0020930348888668969" c="-0.00090043663361643841" d="3.8135968779643393e-05" /> - <width sOffset="259.13713192095315" a="3.0674043932161483" b="-0.0033121802964288325" c="-0.00046738901131857658" d="5.5331175869924333e-05" /> - <width sOffset="262.48816148949675" a="3.0531387961710719" b="-0.0045806415092674978" c="8.4331305933575703e-05" d="5.8802440144773164e-05" /> - <width sOffset="265.53224705602713" a="3.0416350765168056" b="-0.0024325472488058268" c="0.00061572766378097978" d="2.6098934285597549e-05" /> - <width sOffset="267.03020001505843" a="3.039460567504265" b="-0.00041219779273716324" c="0.00024272071848261857" d="-2.0099429631730801e-05" /> - <width sOffset="272.58386000832354" a="3.0412147523401831" b="0.00042399036960891461" c="-8.3131249257145957e-05" d="-1.9014730301714072e-05" /> - <width sOffset="272.84720580767527" a="3.0413202959152086" b="0.00037624976678529536" c="-3.3991635137944049e-05" d="-1.2926810038369602e-06" /> - <width sOffset="282.20714786596795" a="3.0408040030826253" b="-0.00059981929457137784" c="4.6410112773637669e-05" d="6.920503865773884e-07" /> - <width sOffset="282.67955852715033" a="3.0405310724450283" b="-0.00055550669197999651" c="4.9592476428826162e-05" d="5.4784780944268374e-07" /> - <width sOffset="292.77525704597713" a="3.0405411919852732" b="0.00061334977785134303" c="8.1103180221765638e-05" d="-6.7230133618358965e-06" /> - <width sOffset="294.14411678092938" a="3.0415155069597732" b="0.00079759525051292389" c="3.0133960438118319e-05" d="-4.3944843395151587e-06" /> - <width sOffset="302.30355026138426" a="3.0476424463505039" b="0.00041164109728439877" c="-0.00040538419935792221" d="1.6490124639299136e-05" /> - <width sOffset="302.87095556480392" a="3.0477485130853106" b="-3.2466265540688922e-05" c="-0.00037749203633549358" d="1.6866253531578528e-05" /> - <width sOffset="308.70396791172726" a="3.0380626560504487" b="-0.0027147237809372025" c="2.2063429064310836e-05" d="1.597604864588482e-05" /> - <width sOffset="312.96665408363071" a="3.0281289705415722" b="-0.0016557467735412099" c="0.00022471850544458839" d="1.4428214521330588e-05" /> - <width sOffset="316.91385199675307" a="3.0259819261138343" b="0.00079266087906511209" c="0.0001446045054789795" d="-7.8887615779198122e-06" /> - <width sOffset="323.06235260245751" a="3.0344885891629705" b="0.0016761810172015805" c="-1.0086850906919549e-06" d="-7.7759809875080219e-06" /> - <width sOffset="330.15381266527237" a="3.0435513557683365" b="0.00048874052324732512" c="-7.3227253610640771e-05" d="-5.827462996089443e-06" /> - <width sOffset="333.1580511212843" a="3.0442007306937855" b="-0.00010903014437947656" c="-0.00012326873711090381" d="-7.708173182724649e-06" /> - <width sOffset="334.57215896214956" a="3.0437782525796715" b="-0.00050390284427763703" c="-0.00048737651067522414" d="4.130821929553209e-05" /> - <width sOffset="342.21041809756525" a="3.029902855449782" b="-0.00071918237465057582" c="0.00045870719906599723" d="-4.3019930654081789e-05" /> - <width sOffset="343.2537496401111" a="3.0296029731363348" b="9.7498167226633807e-05" c="0.00036046938153659754" d="-2.2729186883686161e-05" /> - <width sOffset="343.52415542005383" a="3.0296552450693213" b="0.00028745834999995966" c="0.00036443313331421432" d="-1.9862980854999307e-05" /> - <width sOffset="353.34944815893789" a="3.0488206610536759" b="0.0016962821385167175" c="-0.00021555504045835637" d="-2.0478493192036164e-05" /> - <width sOffset="357.75365343392826" a="3.0503608630187378" b="-0.0013940806321540635" c="-4.7979768466569373e-05" d="5.7745180704185292e-06" /> - <width sOffset="361.4381765095244" a="3.0448618228205691" b="-0.0015124662070616819" c="0.00033151048780315836" d="-1.3038381468189052e-05" /> - <width sOffset="363.44514667776468" a="3.0430562476416991" b="-0.00033935592260718158" c="0.00025326582295512849" d="-1.2614406577526715e-05" /> - <width sOffset="373.54084519659148" a="3.05246382019428" b="0.00091733551394833964" c="-0.00012915706164284968" d="-1.258735820700055e-05" /> - <width sOffset="376.0466728375942" a="3.0537534493751952" b="3.293027585317995e-05" c="-0.00012427538405754537" d="4.2195566010151854e-06" /> - <width sOffset="377.79825034785802" a="3.0534525248698321" b="-0.00036358855983144897" c="-9.1352713956489647e-05" d="2.4066298123166168e-06" /> - <width sOffset="383.63654371541827" a="3.0486948942592358" b="-0.001184181683049216" c="-4.9158452947426967e-05" d="2.408437573173194e-06" /> - <width sOffset="389.04572710066196" a="3.0412322785324157" b="-0.001504588518094483" c="-7.6089341800373022e-05" d="7.9471194525848343e-06" /> - <width sOffset="393.73224223424506" a="3.033327831448398" b="-0.0016941383571310253" c="3.883204771173907e-05" d="7.2546624472557625e-06" /> - <width sOffset="397.96137753073504" a="3.0274063717615105" b="-0.00097642473661808428" c="0.00089184211422115023" d="-0.00011065469492361795" /> - <width sOffset="403.82794075307186" a="3.0300303037239198" b="-0.0019373916248291321" c="-0.001054345773551733" d="-0.00011101146853422081" /> - <width sOffset="404.34566295916164" a="3.0287292652593312" b="-0.0031183733686448987" c="-8.4415165267565879e-05" d="2.7846094953394865e-05" /> - <width sOffset="408.53073840287749" a="3.0162412644331118" b="-0.0023617799700789205" c="0.0016339543208501982" d="-0.00015397744693233215" /> - <width sOffset="410.50267165420212" a="3.0167569730723693" b="0.0022860842515670526" c="0.00062250711348764052" d="-0.00015714201259535681" /> - <width sOffset="413.83755994444709" a="3.0254757857196335" b="0.0011951124107567673" c="-7.0164124511755047e-05" d="2.4762590120868928e-06" /> - <width sOffset="413.92363927189871" a="3.0255781418799348" b="0.0011830880940223577" c="-5.9553028075482874e-05" d="3.8134323107824123e-06" /> - <width sOffset="424.0193377907255" a="3.0353763769864823" b="0.0011466601146196934" c="4.8918350640573937e-05" d="3.791589252777546e-06" /> - <width sOffset="424.4197637519805" a="3.0358436165177194" b="0.0011876603108490825" c="7.7017223213495686e-05" d="-4.117740392572881e-06" /> - <width sOffset="434.11503630955229" a="3.0508451373779533" b="0.0015198843388774484" c="-4.6258514835078273e-05" d="-3.0969059547562977e-06" /> - <width sOffset="434.24214330920688" a="3.0510375715950717" b="0.0015079746742227276" c="-0.00011889965175165525" d="-2.4560243760793481e-06" /> - <width sOffset="438.65760817138732" a="3.0551664461985961" b="0.00031432982055397743" c="-0.00011222312624068808" d="4.7836338480668904e-06" /> - <width sOffset="444.21073482837909" a="3.054270474397855" b="-0.0004895068012046378" c="-3.4884938018956902e-05" d="4.6436543859438125e-06" /> - <width sOffset="450.11609773019188" a="3.0511195179283703" b="-0.00041570442806179546" c="0.00013725132150441008" d="-5.2718735122691353e-06" /> - <width sOffset="454.30643334720588" a="3.0513996682918449" b="0.00045684867544709142" c="6.4410691605997069e-05" d="-5.7027031189459284e-06" /> - <width sOffset="459.98962674074761" a="3.0550296220526167" b="0.0006363960376467939" c="0.00012125367994885467" d="-5.492819027103503e-06" /> - <width sOffset="464.40213186603268" a="3.059726655342641" b="0.0013856221266494106" c="4.6426976032101778e-05" d="-5.8945803493312933e-06" /> - <width sOffset="470.54340670656302" a="3.0686218456974652" b="0.0012889169338500739" c="-0.00011744587482658927" d="-7.4705766453722396e-06" /> - <width sOffset="471.62445492514576" a="3.069868533936754" b="0.0010087958163349487" c="-5.2703532426379433e-05" d="1.6635429645178652e-06" /> - <width sOffset="474.49783038485947" a="3.0723715125279281" b="0.00074712580502444615" c="-3.9158149936294141e-05" d="1.4010384465992016e-06" /> - <width sOffset="481.8408925135397" a="3.0763010043134535" b="0.00039867868823108954" c="0.00061825583639218897" d="-3.4786829690392055e-05" /> - <width sOffset="484.59352890368626" a="3.0813574105860875" b="0.0030116055493059316" c="0.00033210111216642221" d="-3.4606653822708865e-05" /> - <width sOffset="493.62587736719809" a="3.1101519309588728" b="0.00054093447895934568" c="-0.003129906711837621" d="0.00047446639976226604" /> - <width sOffset="494.68922742251306" a="3.1077585782675117" b="-0.0045059820083854221" c="-0.0016385935324347951" d="0.00046288813392158005" /> - <width sOffset="497.19314306600955" a="3.0934693288016133" b="-0.0040054205907109177" c="-1.3624554561059336e-05" d="2.356427310020971e-05" /> - <width sOffset="501.21038154982421" a="3.0786864190270045" b="-0.0029740315480902982" c="0.0021202917703397953" d="-0.00024053204005327971" /> - <width sOffset="504.78492594133985" a="3.0841614743601182" b="0.0029640236729937004" c="-0.00047980007171816695" d="-0.00023207402299471984" /> - <width sOffset="505.14674893584368" a="3.0851601198634961" b="0.0025256717512007493" c="0.00045753069154035649" d="1.3847254578318283e-05" /> - <width sOffset="506.1277187287742" a="3.0880910817914859" b="0.0034632950379852052" c="-3.2487945326245915e-05" d="-1.8071740033515472e-05" /> - <width sOffset="513.73948659321547" a="3.1046005923071016" b="-0.0001724625392038343" c="-0.00058481192547113622" d="3.3548501885375529e-05" /> - <width sOffset="514.8806244601667" a="3.1036921018004762" b="-0.0013761044678255454" c="-0.00046819111973379906" d="3.6691600979496391e-05" /> - <width sOffset="524.45661316441931" a="3.0798010280197312" b="-0.00024907925627210123" c="4.5422903632802428e-05" d="-2.3920222123014555e-06" /> - <width sOffset="524.97632297899349" a="3.0796835119596047" b="-0.00020380404195842093" c="4.460207141555092e-05" d="-2.3498626345104639e-06" /> - <width sOffset="529.27878587848431" a="3.0794451381712804" b="4.9497233087210141e-05" c="-9.7589979237863082e-05" d="3.5536084996532883e-06" /> - <width sOffset="535.07202149782029" a="3.0771475420917742" b="-0.00072343211797380215" c="-3.4732588189166242e-05" d="3.4379381375047489e-06" /> - <width sOffset="543.39461533965607" a="3.0707028033634609" b="-0.00058717035095134191" c="0.00030782316252604599" d="-3.6591729538482165e-05" /> - <width sOffset="545.16772001664708" a="3.0704254748847042" b="0.00015931279041462958" c="0.00012820799087346488" d="-3.2616908423291452e-05" /> - <width sOffset="545.35678445952294" a="3.0704599576790637" b="0.0002042942254077394" c="-5.4387205187012624e-05" d="-3.0948443480123307e-05" /> - <width sOffset="549.24344525320828" a="3.0686153419797391" b="-0.0016210088395872495" c="-8.6441119808749857e-06" d="6.9945342044173616e-06" /> - <width sOffset="555.26341853547387" a="3.0600696064610373" b="-0.00096463608381193563" c="0.00011596881561901816" d="8.0750490423366401e-06" /> - <width sOffset="557.98791580924774" a="3.0584655881205309" b="-0.00015290214902298694" c="5.7838000567125615e-05" d="-8.7648341951439621e-07" /> - <width sOffset="565.35911705430067" a="3.0601300791468766" b="0.00055689878604602461" c="3.8331051550232754e-05" d="-7.6820880038899603e-07" /> - <width sOffset="569.23392756294254" a="3.0628187727291802" b="0.00081934788734540473" c="0.00019906428061503993" d="-1.2340174145985933e-05" /> - <width sOffset="575.45481557312746" a="3.0726486875230163" b="0.0018633873108960996" c="-4.0377291013923459e-05" d="-1.0052773783851793e-05" /> - <width sOffset="578.13375922571583" a="3.07715754441955" b="0.0014306119321113525" c="-6.264982710827334e-05" d="4.9597313880080714e-07" /> - <width sOffset="581.97377104655197" a="3.0817553799696382" b="0.00097140017839885914" c="1.9064104389427426e-05" d="-2.3460687713900322e-06" /> - <width sOffset="585.55051409195426" a="3.0853663671476319" b="0.0010177345714447649" c="-7.0740082536108824e-06" d="-1.0108372230693916e-06" /> - <width sOffset="590.66673238676549" a="3.0902527804677637" b="0.00086597214627481042" c="2.7141383670695071e-05" d="-8.8999025118750897e-06" /> - <width sOffset="591.17503867608332" a="3.0906988033609437" b="0.00088666587380167459" c="-9.4265727046054945e-05" d="1.5385647571913565e-06" /> - <width sOffset="595.64621261078105" a="3.0929162618193304" b="0.00013598312402760904" c="-7.4658184657828947e-05" d="1.4184919547426153e-06" /> - <width sOffset="603.70290454622682" a="3.0899075695482718" b="-0.00079078871355531266" c="-0.00022828228149306433" d="1.7629526456799963e-06" /> - <width sOffset="605.23601962911175" a="3.0881649880105195" b="-0.0014783235783074557" c="-0.0015000251438444102" d="0.00014563137335633187" /> - <width sOffset="605.74191112960784" a="3.0870520759510693" b="-0.0028842108634723252" c="-0.0012784519650812019" d="0.00014506941933206414" /> - <width sOffset="612.14792796784479" a="3.0542483088376624" b="-0.0014041166963607138" c="0.0001655720995493754" d="3.6687469722493299e-06" /> - <width sOffset="615.83760964843464" a="3.0515059051603686" b="-3.2463789083270449e-05" c="0.00020203562766669058" d="2.9273892464037936e-06" /> - <width sOffset="617.42707346060911" a="3.0519764822489925" b="0.00063198007532260859" c="0.00014536090552295233" d="-7.2083715556313145e-06" /> - <width sOffset="620.50082616248301" a="3.0550830600984744" b="0.0013212739027396046" c="0.0002090897511351663" d="-9.2980012504363099e-06" /> - <width sOffset="625.93330816726143" a="3.0669408041924591" b="0.0027698225696181208" c="6.1123200225917746e-05" d="-9.1440664712395869e-06" /> - <width sOffset="634.32570139505322" a="3.0890862754350197" b="0.0018636505192182466" c="-0.00014838753432696648" d="1.7872010953822269e-06" /> - <width sOffset="636.02900668608822" a="3.0918389638863744" b="0.0013737073202434809" c="-0.00013622996640890727" d="3.4494972824334033e-06" /> - <width sOffset="639.6686491486189" a="3.0952004446022547" b="0.00051913702251524924" c="0.00090776674184753822" d="-0.00057672544740289386" /> - <width sOffset="641.29560122884254" a="3.0959642225970878" b="-0.0011068071859771547" c="-0.00076365913042411538" d="6.365131815392957e-05" /> - <width sOffset="646.12470520491502" a="3.0799787672068417" b="-0.0040292928299720358" c="0.00015837513419764485" d="6.3668271130593699e-05" /> - <width sOffset="649.95073735293931" a="3.0704468390702493" b="-2.1367957691771861e-05" c="0.00028420058218266923" d="4.7533425835091886e-08" /> - <width sOffset="650.02576137266351" a="3.070446835632648" b="2.1276585210128818e-05" c="0.00030396753037517882" d="-2.9367466606408166e-05" /> - <width sOffset="654.68537814141155" a="3.0741746293085219" b="0.00094113917882534366" c="-0.00018205617783038965" d="8.3747015936165263e-06" /> - <width sOffset="656.22040372374181" a="3.0752206135887281" b="0.00044141741503982287" c="-0.00015002571433966414" d="7.1766891332100215e-06" /> - <width sOffset="663.60744058076955" a="3.0731876401500271" b="-0.00060021407949730713" c="-0.00012203369649190358" d="-3.8740370550489915e-06" /> - <width sOffset="665.67889184007868" a="3.0713862562557246" b="-0.0011556572247881627" c="-0.00098884928648287191" d="8.744678719720132e-05" /> - <width sOffset="666.3161022425686" a="3.0702709751568058" b="-0.0023093474096155114" c="-0.0008290451629873216" d="8.49894510408898e-05" /> - <width sOffset="673.41807716032122" a="3.0424986782754244" b="-0.0012249573510051712" c="0.00032040638387903172" d="-1.4055251260385136e-05" /> - <width sOffset="676.4118007613954" a="3.0413259837085844" b="0.00031555340517645651" c="0.00019209566247146593" d="-1.4572130800774412e-05" /> - <width sOffset="684.16085389890804" a="3.0485255371355544" b="0.00066759813715946081" c="-0.00016033060663357912" d="-1.2949980518492772e-05" /> - <width sOffset="686.50749928022219" a="3.0490419090011907" b="-0.00029881672168026886" c="-0.0002447959091016894" d="-1.4559524883006176e-05" /> - <width sOffset="687.50217151341917" a="3.0484881618254533" b="-0.00082901450479352077" c="-2.1351014454882095e-05" d="4.9508889012634499e-07" /> - <width sOffset="692.38082804812234" a="3.0439929920050002" b="-0.0010019917750491237" c="-5.0261271137267747e-05" d="1.5588735461821206e-07" /> - <width sOffset="696.60319779904898" a="3.0388778687872264" b="-0.0014180974475425465" c="-3.9104149830830872e-05" d="2.9232895311002631e-06" /> - <width sOffset="701.21887699422552" a="3.0317867525928071" b="-0.0015922442525592513" c="-0.00054044311956177285" d="4.1815036312797894e-05" /> - <width sOffset="706.69889631787578" a="3.0137128166200036" b="-0.0037483283624450041" c="0.00014644927197972831" d="4.1918269161083796e-05" /> - <width sOffset="710.61356865094308" a="3.0037983442507388" b="-0.00067457693394942331" c="0.0004736396728877532" d="-1.9134401666507025e-05" /> - <width sOffset="714.1745543919551" a="3.00653820628406" b="0.0019707631114380592" c="0.00063315444855395041" d="-9.7784412876497664e-05" /> - <width sOffset="716.79459483670257" a="3.0142893374126345" b="0.0032747874951854321" c="-0.00013627476755854556" d="-9.6742721884267806e-05" /> - <width sOffset="718.28608719093017" a="3.0185495254347821" b="0.0022226550432452759" c="-0.00030717563845377967" d="-1.7241923334936087e-05" /> - <width sOffset="721.39417828187231" a="3.021972665782803" b="-0.00018648753427146132" c="-0.00027246738170751681" d="9.7469268248210846e-06" /> - <width sOffset="726.89029335552937" a="3.014335421127786" b="-0.0022982272320244985" c="-0.00011177251057486947" d="9.8674123000543972e-06" /> - <width sOffset="734.47409366516217" a="2.9947815550693635" b="-0.0022910041762617024" c="0.0083847488289505532" d="-0.0016188940985955411" /> - <width sOffset="736.98599187435616" a="3.0162733671736026" b="0.0091883859535172811" c="-0.0038259169317776901" d="-0.0016176347532115263" /> - <width sOffset="737.59080855717184" a="3.0200732317487073" b="0.0027852211750879503" c="-0.00029094600231813547" d="5.4584422838954319e-06" /> - <width sOffset="741.17417019726736" a="3.0265689542701564" b="0.00091035875446940405" c="-0.00033521796757900472" d="1.5015947321480836e-07" /> - <width sOffset="746.52229903782211" a="3.0218725741230203" b="-0.0026623342051606351" c="-0.00011092017907611311" d="5.2190114995491711e-06" /> - <width sOffset="747.08169039318295" a="3.0203494919433087" b="-0.0027815304050856954" c="-0.00010945325819142513" d="4.6177417965067233e-06" /> - <width sOffset="757.17738891200975" a="2.9858637689098222" b="-0.003579580525627085" c="3.0967284885505543e-05" d="4.3216194062489622e-06" /> - <width sOffset="761.69030036237609" a="2.9707373371974706" b="-0.0030360282001816964" c="0.0011518997025195983" d="-5.6092834270910924e-05" /> - <width sOffset="767.27308743083654" a="2.9799294436079906" b="0.0045807711630954234" c="0.0002104928115382843" d="-5.5328621786612747e-05" /> - <width sOffset="769.51969141046118" a="2.990655649648378" b="0.0046887903927896497" c="-0.00016795152001847268" d="-5.43804602070844e-05" /> - <width sOffset="775.40356369839401" a="3.0013521535853265" b="-0.0029355671418076169" c="-5.882583805694227e-05" d="2.9763300844128664e-06" /> - <width sOffset="777.36878594966333" a="2.9953785105312578" b="-0.0031322941937682678" c="-3.0625671724400569e-05" d="-3.2237530958697111e-06" /> - <width sOffset="778.96441232731672" a="2.9902894691076511" b="-0.0032546517068210734" c="-5.3466831265106804e-05" d="4.0026672493817289e-06" /> - <width sOffset="786.56400925730998" a="2.9642243066901628" b="-0.0033737958263694735" c="-9.4273589061110189e-05" d="1.7599219506644336e-05" /> - <width sOffset="787.46448446849013" a="2.9611226950774361" b="-0.0035007666090172834" c="-5.4327492893860618e-05" d="1.7493961322131369e-05" /> - <width sOffset="794.45618380939038" a="2.9399697579041728" b="-0.0016949325503175139" c="-0.0001567042641772986" d="0.0001469004481699911" /> - <width sOffset="795.34385985028757" a="2.9384444799565497" b="-0.0016258789028210411" c="0.00064198400713625823" d="0.00012508833805473997" /> - <width sOffset="796.86750963154816" a="2.9379000395872996" b="0.0012016196599199998" c="0.00039253568449462202" d="-1.9674469113717193e-05" /> - <width sOffset="797.56018298731692" a="2.9389141680533681" b="0.0017170984625480058" c="0.00035221189178796097" d="-2.0330206665259335e-05" /> - <width sOffset="807.65588150614371" a="2.9712285330638535" b="0.0026123938068321534" c="-0.00027331744541461017" d="-1.9520448859109663e-05" /> - <width sOffset="807.88524734352768" a="2.9718131125387561" b="0.0024839336017898461" c="-0.00018454684283269703" d="1.490853078591559e-05" /> - <width sOffset="812.14200775235088" a="2.9801925650796335" b="0.0017232183575225427" c="0.00023057694289334754" d="2.0768311069420075e-06" /> - <width sOffset="817.75158002497062" a="2.9974813153624709" b="0.0045061512178570795" c="0.00027029222720354498" d="-3.3918556199391983e-06" /> - <width sOffset="819.10211270502691" a="3.0040516611290853" b="0.0052176685815091672" c="0.0003412739730232251" d="-3.138182940638195e-05" /> - <width sOffset="823.69327353030576" a="3.0321634412367153" b="0.006366886035833433" c="-6.9673758913161232e-05" d="-6.4779513214053684e-06" /> - <width sOffset="827.84727854379742" a="3.0569449014370838" b="0.0054526898739141695" c="-0.00015347171093903526" d="-7.5645204710081573e-06" /> - <width sOffset="831.02856939441472" a="3.072494714379661" b="0.0042465408561605869" c="-0.00015438223391185508" d="2.6171585981412882e-05" /> - <width sOffset="833.05821023644648" a="3.0806965187948068" b="0.00394329686908086" c="0.001143964518310205" d="-7.7865082067000399e-05" /> - <width sOffset="837.94297706262421" a="3.1181791039453364" b="0.0095454929513424137" c="4.0459858333418122e-06" d="-7.9290354691971101e-05" /> - <width sOffset="840.40866854325986" a="3.1405513404140164" b="0.00811927613454589" c="-4.1320564534331355e-06" d="2.555640524318622e-05" /> - <width sOffset="843.2827026450401" a="3.1644589879486809" b="0.0087288180357400352" c="0.0002834347301209259" d="-2.8268818477235566e-06" /> - <width sOffset="848.038675581451" a="3.2120799928563812" b="0.011233007763118011" c="0.00026416470135991779" d="-1.6257128885667377e-05" /> - <width sOffset="849.1712062055559" a="3.2251169272480329" b="0.011768801561543748" c="4.2793323202762847e-05" d="-8.2081717874402435e-06" /> - <width sOffset="858.1343741002778" a="3.3281300250872627" b="0.010557635402118667" c="-0.00017761660161517631" d="-8.6083050759177442e-06" /> - <width sOffset="859.15579366029203" a="3.3387193199674909" b="0.010167850179696779" c="0.00017434270316956545" d="8.3860131293938131e-06" /> - <width sOffset="861.24485176165672" a="3.3607978650758437" b="0.011006068056180469" c="0.00030321702747403443" d="-3.3551438058509718e-05" /> - <width sOffset="866.00042238977096" a="3.4163869528482174" b="0.011613665225052229" c="8.6299690935410348e-05" d="-9.9162957554270742e-06" /> - <width sOffset="868.23007261910459" a="3.4426004736088869" b="0.011850609638877166" c="1.550122837209062e-05" d="-1.1173480575996286e-05" /> - <width sOffset="874.42842434608212" a="3.5139894407663075" b="0.010754933009500166" c="-0.00046897339301791386" d="4.4103206272424489e-05" /> - <width sOffset="878.32577113793138" a="3.5513925835643789" b="0.0091091211949431757" c="4.6898617487581186e-05" d="4.3292966684951716e-05" /> - <width sOffset="879.75727139063792" a="3.564655393639856" b="0.0095095388899033694" c="0.00052894803432876466" d="-4.5521788157057787e-05" /> - <width sOffset="883.23096019052923" a="3.6021630711214589" b="0.011536472749333167" c="0.002948455347193965" d="-0.0007191142128786731" /> - <width sOffset="883.31324863781151" a="3.6031319539924009" b="0.012007112168815431" c="0.0019461885810692153" d="-0.00040737754595079781" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="151.87982889517863" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="151.87982889517863" color="standard" width="0.1863690919014501" weight="standard" type="solid"> - <type name="solid"> - <line length="736.54164076157952" space="0" width="0.18636900000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929732041174617" b="-6.1182153672244212e-05" c="0.0022607777211279285" d="-0.0006981729157477715" /> - <width sOffset="1.9656502614314224" a="2.4962855782845619" b="0.00073385284790655671" c="-0.00037252850424076097" d="2.8772400640188273e-05" /> - <width sOffset="9.4647670436132749" a="2.492973101894961" b="7.8245392612580691e-07" c="4.5827075683801803e-05" d="-3.2357965275956541e-06" /> - <width sOffset="10.095698518826797" a="2.4929910254658534" b="5.4745678342797439e-05" c="3.631585861620743e-05" d="-2.948531895575594e-06" /> - <width sOffset="18.009737353096174" a="2.4942373149472132" b="7.5538465683857355e-05" c="5.5931425119152117e-05" d="-1.9450012982848007e-06" /> - <width sOffset="20.191397037653594" a="2.4946481308403445" b="0.00029181262426655405" c="3.2101372812168184e-05" d="-5.7950497085469841e-06" /> - <width sOffset="27.800157033208247" a="2.4961742208034732" b="-0.00022616650701297661" c="-0.00010378522325630343" d="1.12519197511445e-05" /> - <width sOffset="30.287095556480391" a="2.4951429311872104" b="-0.00053360669292123542" c="-1.8972639602126901e-05" d="9.9859480049735962e-06" /> - <width sOffset="33.019665536704295" a="2.4937468986293805" b="-0.00041360143901451006" c="1.4924279830829645e-05" d="-1.9740282350909518e-07" /> - <width sOffset="40.382794075307189" a="2.4914318251865524" b="-0.00022592963173065448" c="1.1944852492041344e-05" d="-2.0002126342543274e-07" /> - <width sOffset="50.478492594133982" a="2.4901625455591745" b="-4.5906751362755072e-05" c="1.3340660518345861e-06" d="1.58452469206018e-06" /> - <width sOffset="52.957673161684689" a="2.4900810788449821" b="-1.0074905265158515e-05" c="0.00012513908112510495" d="-9.7495771361258071e-06" /> - <width sOffset="60.574191112960783" a="2.492956033039027" b="0.00019941494124702495" c="-9.8088211480724209e-05" d="-9.9027517864413741e-06" /> - <width sOffset="61.456881008828368" a="2.4930488194798404" b="3.1050616685103505e-06" c="5.087817120270354e-05" d="-2.137358226200399e-05" /> - <width sOffset="64.929879730314298" a="2.4927779350192125" b="-0.00041690179283890419" c="-2.1680017381749491e-06" d="-1.5135672276937522e-06" /> - <width sOffset="70.068421867766105" a="2.4903730596770508" b="-0.00055907801053601907" c="0.0003146053016555595" d="-2.5035749833676392e-05" /> - <width sOffset="70.669889631787584" a="2.49014515747667" b="-0.00020779917516486389" c="0.00024886258695690883" d="-2.3095754782326932e-05" /> - <width sOffset="77.317769401060204" a="2.4929765462505191" b="3.8915416426894313e-05" c="9.7858533631460157e-05" d="-8.3375345758300507e-06" /> - <width sOffset="80.765588150614377" a="2.4939322879645029" b="0.00041637621106905935" c="-5.7578826663875048e-06" d="-1.2676897485327799e-05" /> - <width sOffset="85.610046223652262" a="2.4943729938745527" b="-0.00053194515839121489" c="-2.7054524872524996e-06" d="1.6127815948108371e-06" /> - <width sOffset="90.861286669441171" a="2.4917385576656397" b="-0.00042693921798232217" c="1.9547175511165186e-05" d="1.8839381876956857e-06" /> - <width sOffset="95.019067323134422" a="2.4904367630013677" b="-0.00016668977222645577" c="7.6829433865691277e-05" d="-3.5076575124199457e-06" /> - <width sOffset="100.95698518826796" a="2.4914215135970625" b="0.00037469585792211657" c="1.1914420743536714e-05" d="-3.5675438371859104e-06" /> - <width sOffset="108.2191730720737" a="2.4934046035654269" b="-1.6704692012449278e-05" c="-6.4541969315426838e-05" d="1.1207936092805351e-05" /> - <width sOffset="111.05268370709477" a="2.4930940537265585" b="-0.00011250716081625829" c="2.5926943018883199e-05" d="1.1726811124575773e-05" /> - <width sOffset="112.33179899967806" a="2.4930171060461515" b="1.1379908931025227e-05" c="-0.00012569169571887681" d="8.4225203973790841e-06" /> - <width sOffset="121.14838222592157" a="2.4891193752352248" b="-0.00024086108475499229" c="8.6243061880705727e-05" d="7.9717457466333375e-06" /> - <width sOffset="121.55103707792357" a="2.4890368944365289" b="-0.00016753131047526123" c="0.00022135398865855656" d="-1.3462279418357231e-05" /> - <width sOffset="131.24408074474837" a="2.495950097431491" b="0.00032910719902247421" c="-0.00017046801875521234" d="-1.1342634391452826e-05" /> - <width sOffset="133.26810856091851" a="2.4958238141792535" b="-0.00050035854747317856" c="-0.0007824698138221344" d="0.00021041627108414436" /> - <width sOffset="136.01792745030667" a="2.4929064065813122" b="-3.0468717617591293e-05" c="0.0002930097355104157" d="0.00021816472517393893" /> - <width sOffset="136.61217861637792" a="2.4930375543309164" b="0.00054889847602880223" c="0.00013152813356238848" d="-4.4047978266046444e-05" /> - <width sOffset="139.79272159146225" a="2.494696673305274" b="4.881153777887802e-05" c="-5.8589723427971124e-05" d="6.1413625902597776e-06" /> - <width sOffset="141.33977926357517" a="2.4946546993359373" b="-8.8375844211422902e-05" c="-3.2687758622616813e-05" d="2.429911388828591e-06" /> - <width sOffset="151.54107839586911" a="2.4929310769737008" b="3.3260981381101618e-06" c="-0.0022939449028313917" d="0.00019650525643615728" /> - <width sOffset="151.87982889517863" a="2.4926766077573621" b="-0.0014831758092377495" c="0.0005991831827316667" d="-5.8217295751621654e-05" /> - <width sOffset="157.37784463430827" a="2.4929588760814649" b="-0.00017394684382735989" c="-0.0020431166100521639" d="-7.508284255824157e-06" /> - <width sOffset="158.03229744668411" a="2.491967847273358" b="-0.0028578412522907368" c="0.0021377305469648137" d="-0.00031297692588860279" /> - <width sOffset="161.53117630122875" a="2.4947330373626677" b="0.00060694470189544616" c="-0.0011464516326964401" d="-0.0003130840683953503" /> - <width sOffset="162.5922291571969" a="2.4937123241401817" b="-0.0028833881374828625" c="0.0026929285022371649" d="0.00025646543284806934" /> - <width sOffset="163.09220137399214" a="2.492975920325982" b="1.718427321844955e-06" c="0.00018964405159398374" d="-1.8389471024306825e-05" /> - <width sOffset="169.02791855356386" a="2.4958219807284721" b="0.00030933106970062736" c="-0.00049291907983852975" d="5.2989391971253941e-05" /> - <width sOffset="171.62687482005555" a="2.4942266807913462" b="-0.0011790569369254811" c="-7.1906886912200419e-05" d="5.393146984229686e-05" /> - <width sOffset="175.7421087593342" a="2.4919154294161849" b="0.00096912839526827957" c="-0.00030391606208946025" d="3.1268380090253487e-05" /> - <width sOffset="179.49191611657253" a="2.4929247580452873" b="8.8742809838723152e-06" c="-0.00040456281832314175" d="6.9124306034956516e-05" /> - <width sOffset="181.72257333888234" a="2.4916987536310327" b="-0.00076415493625891368" c="5.4464864864466772e-05" d="6.781926967137366e-05" /> - <width sOffset="184.18150625435533" a="2.4911573694545996" b="0.00073387330548025439" c="-0.00011002662192731541" d="8.0075694917125713e-06" /> - <width sOffset="191.81827185770914" a="2.4939114066799597" b="0.00045438715759774269" c="7.1102476719745938e-05" d="8.9776294351131064e-06" /> - <width sOffset="193.65624553315033" a="2.4950424945625045" b="0.00080673938060451666" c="-0.00079002666456912314" d="0.0001143315151715939" /> - <width sOffset="197.65606718618236" a="2.4929462470000683" b="-2.5768775379730706e-05" c="-5.2008870818632787e-05" d="9.8950622710299239e-05" /> - <width sOffset="199.40645781767259" a="2.4932724619945876" b="0.00070167429450137576" c="-8.1691555928517062e-05" d="2.2609122416339682e-06" /> - <width sOffset="201.91397037653593" a="2.4945539198869984" b="0.0003346363554970447" c="-6.5008963358798358e-05" d="1.989221379605325e-06" /> - <width sOffset="212.00966889536275" a="2.4933532700299796" b="-0.00036974243532548069" c="-5.1113290761290841e-06" d="2.0978988441008066e-06" /> - <width sOffset="217.57554556401783" a="2.4914987160848661" b="-0.00023166817137569681" c="0.00013036886019028414" d="-9.7527578694040512e-06" /> - <width sOffset="222.10536741418954" a="2.4922178702038149" b="0.00034906836770317185" c="-2.1278107432100886e-06" d="-1.0020426380473469e-05" /> - <width sOffset="225.21723074723559" a="2.492981559351529" b="4.4721244717497739e-05" c="-2.8643065747152734e-05" d="3.9144792615226426e-06" /> - <width sOffset="229.21712937348036" a="2.4929526815994425" b="3.4680069162247151e-06" c="-2.9771476606937944e-05" d="1.5183115217801717e-06" /> - <width sOffset="232.20106593301634" a="2.4927382877540971" b="-0.00013364780914799338" c="-1.7599344079745282e-05" d="1.0659474457158342e-06" /> - <width sOffset="242.29676445184313" a="2.490692083678077" b="-0.00016306905734693629" c="1.3440434082262961e-05" d="1.8637919563418338e-06" /> - <width sOffset="245.85919777113511" a="2.4903659958036179" b="3.6520092636599735e-06" c="-5.7357861821539927e-05" d="3.6705163490037987e-06" /> - <width sOffset="252.39246297066992" a="2.4889651890703384" b="-0.00027580418563731514" c="1.0287604980917095e-05" d="3.6355833332831843e-06" /> - <width sOffset="259.13713192095315" a="2.4886884352262939" b="0.00035912295121771085" c="0.0001126198618575686" d="-1.3559623756909181e-05" /> - <width sOffset="262.48816148949675" a="2.4906462709360611" b="0.00065710864214390966" c="-1.6729175488125877e-05" d="-1.7852629454948435e-05" /> - <width sOffset="265.53224705602713" a="2.4919879607161839" b="5.8966692721530017e-05" c="-0.00017416135031617818" d="1.4850876404055485e-05" /> - <width sOffset="272.58386000832354" a="2.4889509137337527" b="-0.00018187976146530165" c="0.00013045876696802684" d="1.4218838436444991e-05" /> - <width sOffset="272.84720580767527" a="2.4889123235927162" b="-0.00011020995249082103" c="7.7530218945686923e-05" d="-3.5032108915537723e-06" /> - <width sOffset="282.67955852715033" a="2.4919939897403136" b="0.0003983785453280773" c="-2.3310808059174957e-05" d="-4.1076576785044823e-06" /> - <width sOffset="286.84709970162714" a="2.4929520505844103" b="-9.9492774459003291e-06" c="5.1549179479284385e-05" d="-4.6124600120536626e-06" /> - <width sOffset="292.77525704597713" a="2.4937437350059195" b="0.0001149462848527951" c="-3.9865275275181791e-05" d="3.180308067497329e-06" /> - <width sOffset="294.14411678092938" a="2.4938345390046166" b="2.368390864323079e-05" c="-3.4444553822905407e-06" d="8.5177904518096239e-07" /> - <width sOffset="302.87095556480392" a="2.4943450088743013" b="0.00015817413270970875" c="1.9083544027354748e-05" d="7.5726550921939992e-07" /> - <width sOffset="308.70396791172726" a="2.496067228561353" b="0.0004580989086968195" c="-7.2077308889041604e-05" d="1.6474703949011768e-06" /> - <width sOffset="312.96665408363071" a="2.4968378851815842" b="-6.6580937307895906e-05" c="-4.8618498694609738e-05" d="2.4010622886162895e-06" /> - <width sOffset="323.06235260245751" a="2.4936810121245472" b="-0.00031408500668975332" c="2.3263079991637904e-05" d="2.3388845352270058e-06" /> - <width sOffset="327.20404235600603" a="2.4929453806353425" b="-1.0272593220679582e-06" c="-0.0001705174903096355" d="1.2648708383388716e-05" /> - <width sOffset="333.1580511212843" a="2.4895641562661375" b="-0.00068635402416903854" c="5.4451226233385755e-05" d="1.440445535265297e-05" /> - <width sOffset="334.57215896214956" a="2.4887431966454763" b="-0.00044594040154721906" c="0.00044696679516109916" d="-3.4611937125598446e-05" /> - <width sOffset="342.21041809756525" a="2.4959899450950669" b="0.00032406299600438917" c="-0.00034567309920969613" d="4.9716212825193175e-05" /> - <width sOffset="343.2537496401111" a="2.4960082341437104" b="-0.00023488593514252244" c="-0.00021299923963126198" d="2.8359282072336013e-05" /> - <width sOffset="348.71050579303579" a="2.4929920692567933" b="-2.6161838865966514e-05" c="-0.00024313561650511926" d="2.3459458422275014e-05" /> - <width sOffset="353.34944815893789" a="2.489980414898092" b="-0.00076741846893159469" c="8.7221275152150546e-05" d="2.5450012779402728e-05" /> - <width sOffset="357.75365343392826" a="2.4904665354084798" b="0.0014818258653099957" c="-1.4667218465462274e-05" d="-8.0299848307131708e-07" /> - <width sOffset="361.4381765095244" a="2.4956870730960574" b="0.0013410386312076054" c="-0.00033920443881416308" d="1.8009901055386557e-05" /> - <width sOffset="363.44514667776468" a="2.4971577969893186" b="0.00019712007402615441" c="-0.00023087680285977893" d="1.7711272103592954e-05" /> - <width sOffset="371.6883829319392" a="2.4930151231663373" b="1.2689844288800087e-06" c="-0.00010101288814615432" d="1.7271212597429208e-05" /> - <width sOffset="373.54084519659148" a="2.4927806284859084" b="-0.00019517161126929349" c="-6.7580827989458328e-06" d="1.633814272351411e-05" /> - <width sOffset="376.0466728375942" a="2.492506199787595" b="7.8729240494525374e-05" c="1.6556698166744099e-05" d="-4.6877208427681505e-07" /> - <width sOffset="383.63654371541827" a="2.4938525540149854" b="0.00024904319213031351" c="5.9177103175057229e-06" d="-4.715153417454861e-07" /> - <width sOffset="393.73224223424506" a="2.4964847882525234" b="0.00022435507428784571" c="-9.5105085644667931e-06" d="-9.6808880318240964e-10" /> - <width sOffset="397.96137753073504" a="2.4972634419766546" b="0.00014386067486888299" c="-0.00077049001055003966" d="0.00011790838928205796" /> - <width sOffset="402.21149919565664" a="2.493009183272008" b="-1.5965243031611058e-05" c="-0.00053046278299574527" d="0.00020218445608020415" /> - <width sOffset="403.82794075307186" a="2.4924512798812088" b="-0.0001460362456075458" c="0.00045161309246693679" d="0.0002055718965260693" /> - <width sOffset="404.34566295916164" a="2.4925252492384029" b="0.00048688618835559687" c="-0.00037144941569417959" d="6.6714332993580598e-05" /> - <width sOffset="408.53073840287749" a="2.4929472485042048" b="0.00088327443248779414" c="-0.00090259132696708015" d="0.00024853787487879924" /> - <width sOffset="410.28079465735351" a="2.4930608009268127" b="7.6917706701815254e-06" c="-0.00081709342625107856" d="0.0001612511581882527" /> - <width sOffset="413.83755994444709" a="2.4900069722136315" b="0.00031503439631048969" c="2.4022204298851282e-05" d="1.632886485536321e-06" /> - <width sOffset="413.92363927189871" a="2.4900342692002155" b="0.00031920632415419854" c="5.7078290734684386e-06" d="-6.1338502055255517e-07" /> - <width sOffset="424.0193377907255" a="2.4932074757160496" b="0.00024690100623891206" c="-1.4999880367422859e-05" d="-6.1410840885935239e-07" /> - <width sOffset="434.11503630955229" a="2.4935393706530444" b="-0.00024374308473794869" c="-2.9586009423177263e-05" d="-1.6661727546088946e-06" /> - <width sOffset="434.24214330920688" a="2.4935079077820923" b="-0.00025134501952037684" c="4.1238865595076153e-05" d="-2.3070542456393928e-06" /> - <width sOffset="441.49250615716642" a="2.492974100124087" b="-1.7181573067491854e-05" c="7.1104541376772027e-05" d="-6.0938031034474883e-06" /> - <width sOffset="444.21073482837909" a="2.4933303814494181" b="0.00023429815716554937" c="3.0929993773509049e-05" d="-3.1759302561951386e-06" /> - <width sOffset="450.11609773019188" a="2.4951385787166629" b="0.00026733822209716184" c="-0.00011520393487184732" d="6.7395976419791252e-06" /> - <width sOffset="454.30643334720588" a="2.4947318441102393" b="-0.0003431280634063243" c="-2.5914751460157876e-05" d="7.1473511182201679e-06" /> - <width sOffset="459.98962674074761" a="2.4932567340400738" b="5.486502112834156e-05" c="-5.8127097906777745e-05" d="6.9374670263922725e-06" /> - <width sOffset="464.40213186603268" a="2.4929630941104577" b="-5.288557142655876e-05" c="3.7303762703930528e-05" d="7.3765621844150782e-06" /> - <width sOffset="464.98990980851443" a="2.492946394888655" b="-1.3874851606163717e-06" c="-8.3368846036289493e-05" d="8.7804326395614924e-06" /> - <width sOffset="471.62445492514576" a="2.4918317124020977" b="5.1853660621913218e-05" c="2.4231803111561024e-06" d="-3.5368697061568671e-07" /> - <width sOffset="474.49783038485947" a="2.4919923232475902" b="5.7018651388750599e-05" c="1.4251679191988576e-07" d="-3.0033347212436793e-08" /> - <width sOffset="484.59352890368626" a="2.4925515882501337" b="5.071298638977521e-05" c="-1.7894834286618385e-07" d="-1.021730004161917e-07" /> - <width sOffset="494.68922742251306" a="2.4929401977937076" b="1.5858393772461466e-05" c="7.2676530587345686e-06" d="-2.9395587995668975e-06" /> - <width sOffset="497.62618116715964" a="2.4929749930895895" b="-1.7519317681737273e-05" c="0.00030183842338541166" d="-1.604962100362214e-05" /> - <width sOffset="501.21038154982421" a="2.4960507701352661" b="0.0015276354655968597" c="-0.0017206631605204876" d="0.0002480466921499331" /> - <width sOffset="504.78492594133985" a="2.490854928168492" b="-0.0012653869268145651" c="0.00094962895862668183" d="0.00024839412156510589" /> - <width sOffset="505.14674893584368" a="2.4905331696176205" b="-0.00048063553532399226" c="3.0013156173069938e-05" d="2.4728439913553001e-06" /> - <width sOffset="513.73948659321547" a="2.4901881061136919" b="0.0005829031694316064" c="0.00023340896525134006" d="-4.9147397927007428e-05" /> - <width sOffset="514.8806244601667" a="2.4910841908443953" b="0.00092360820627662645" c="5.710523892392855e-05" d="-4.9984458617308919e-05" /> - <width sOffset="517.73979432704402" a="2.493023469173119" b="2.430865939666467e-05" c="0.00034090241799387375" d="-4.0175242377191154e-05" /> - <width sOffset="524.45661316441931" a="2.4963923303369668" b="-0.00083372893416850411" c="7.1813989831188421e-05" d="-1.0916192334050059e-06" /> - <width sOffset="524.97632297899349" a="2.495978276829554" b="-0.00075996859695370595" c="6.2874946332407708e-05" d="-1.7015547305873892e-06" /> - <width sOffset="535.07202149782029" a="2.4929633996328384" b="-1.0718936624301285e-05" c="1.3448195083330052e-05" d="-2.3133682646039555e-06" /> - <width sOffset="538.95783040242554" a="2.4929890749223809" b="-1.0996891799881217e-05" c="-3.7732259297820043e-05" d="1.4088339178538491e-06" /> - <width sOffset="543.39461533965607" a="2.4923205675408724" b="-0.00026261778814235296" c="-0.00027569824238124561" d="4.1438501594522894e-05" /> - <width sOffset="545.16772001664708" a="2.4912191483954995" b="-0.00084946593435047035" c="-6.3570748767422457e-05" d="3.7937046534141659e-05" /> - <width sOffset="549.24344525320828" a="2.4892694428278759" b="0.0005229181214508222" c="-6.3092137932599714e-06" d="-5.9311503255446098e-09" /> - <width sOffset="555.26341853547387" a="2.4921874555805452" b="0.00044631068845896041" c="-6.2900359646162956e-06" d="-1.3236852275934434e-07" /> - <width sOffset="565.35911705430067" a="2.4959159683445513" b="0.00027883183301899639" c="-1.0139688854673587e-05" d="-1.9053210101634096e-07" /> - <width sOffset="569.23392756294254" a="2.4968330653979773" b="0.00019167105082465587" c="-0.00018201773587895475" d="1.1381433244583897e-05" /> - <width sOffset="575.45481557312746" a="2.4937214660490454" b="-0.00075158731112829854" c="3.7773325073804523e-05" d="8.9826154216723478e-06" /> - <width sOffset="578.13375922571583" a="2.4921517957707771" b="-0.00035580443046027646" c="5.1445179313151871e-05" d="-1.5661315009588934e-06" /> - <width sOffset="585.55051409195426" a="2.4917038363565389" b="0.00014885766525562312" c="1.9803938388136825e-05" d="-1.9122948147346341e-06" /> - <width sOffset="590.66673238676549" a="2.4927277108532664" b="0.00020133330232112836" c="-5.9277598359650282e-05" d="5.9767704719303389e-06" /> - <width sOffset="594.16710791615515" a="2.4929624831327981" b="6.0390437214541924e-06" c="0.00016951046103340562" d="-1.3325147366170772e-05" /> - <width sOffset="595.64621261078105" a="2.493299143131475" b="0.00042003017978380682" c="0.00010868662831916399" d="-1.5294275426859189e-05" /> - <width sOffset="605.23601962911175" a="2.4938341117476757" b="-0.0017149887653108414" c="0.00094853046906848767" d="-0.00015916269615953723" /> - <width sOffset="605.74191112960784" a="2.4931886603794826" b="-0.0008774834777108111" c="0.00069836001192264145" d="-0.00015588335234876567" /> - <width sOffset="607.73628594360866" a="2.4929798040454365" b="4.8007208377495031e-05" c="0.00072488913858441406" d="-0.00014383888785531875" /> - <width sOffset="612.14792796784479" a="2.4949495226388247" b="-0.0019545199128433301" c="0.00016511945567095903" d="-2.4382154954299579e-06" /> - <width sOffset="615.83760964843464" a="2.4898633889035313" b="-0.00083562322665885549" c="0.0001394006388909379" d="-1.5533220869769482e-06" /> - <width sOffset="620.50082616248301" a="2.4888405320966118" b="0.00036315378842892692" c="-1.2528892980284917e-05" d="5.3630760765968071e-07" /> - <width sOffset="625.93330816726143" a="2.4905295898305972" b="0.00027451012340055599" c="-5.7797910167045643e-06" d="3.3740620063351625e-07" /> - <width sOffset="634.32570139505322" a="2.4926257421685083" b="0.00024879041331336469" c="-1.7995924505261171e-05" d="-1.0593861366289481e-05" /> - <width sOffset="636.02900668608822" a="2.4929449457209483" b="9.5279020093576576e-05" c="-7.6620752048327145e-05" d="-1.2349632929862675e-05" /> - <width sOffset="636.57598168590721" a="2.4929721164856495" b="3.7539771663040386e-07" c="0.00011257353358037824" d="-6.6966461467837281e-06" /> - <width sOffset="646.12470520491502" a="2.4974096120157157" b="0.00031847965831990194" c="-7.9342540154461009e-05" d="-6.7228505744158374e-06" /> - <width sOffset="650.02576137266351" a="2.4970454484395344" b="-0.00060748959787381373" c="-0.00017777744263369595" d="2.2692147075851744e-05" /> - <width sOffset="654.68537814141155" a="2.4926506292662811" b="-0.00078616147602135445" c="0.00021493297311096576" d="-1.505002112491589e-05" /> - <width sOffset="656.22040372374181" a="2.4918958628949088" b="-0.00023269350569544631" c="0.00014614264125302557" d="-1.310607464392504e-05" /> - <width sOffset="662.68641811746693" a="2.4929582973233479" b="1.3358261367228848e-05" c="-8.9809514978441069e-05" d="-1.1382553331238166e-05" /> - <width sOffset="663.60744058076955" a="2.4928855237108465" b="-0.00018104175827721126" c="9.7911066712664447e-06" d="-3.3182714090027249e-07" /> - <width sOffset="666.3161022425686" a="2.4924603842887105" b="-0.00013530386363202638" c="5.8994499546833882e-06" d="-1.0584751207875109e-07" /> - <width sOffset="676.4118007613954" a="2.4915867721482652" b="-4.8550656044357146e-05" c="3.4264329999575304e-06" d="-1.0312885669471202e-07" /> - <width sOffset="684.16085389890804" a="2.4913683131037985" b="-1.4025423738991353e-05" c="1.4694601427122766e-05" d="-1.7252791389119834e-06" /> - <width sOffset="686.50749928022219" a="2.491394025117355" b="2.6438598937183425e-05" c="2.2049881704601482e-06" d="-6.7821921354650656e-07" /> - <width sOffset="692.38082804812234" a="2.4914879594705397" b="-1.7847691438163758e-05" c="2.6411137546405396e-05" d="-3.3901767804748961e-07" /> - <width sOffset="696.60319779904898" a="2.4918579477948253" b="0.00018705505035574842" c="1.6191368402427777e-05" d="-2.7257776450054976e-06" /> - <width sOffset="703.88249494103934" a="2.4930261503016364" b="-1.0523268375516601e-05" c="9.0604173577295686e-05" d="-7.9170270128030481e-06" /> - <width sOffset="706.69889631787578" a="2.4935383288568751" b="0.0003114358231332845" c="2.8671530178936551e-05" d="-6.1554618503822212e-06" /> - <width sOffset="714.1745543919551" a="2.4948972056871899" b="-0.00029188958300184595" c="-0.00047330362422421285" d="7.2494549359614251e-05" /> - <width sOffset="716.79459483670257" a="2.4921872526003597" b="-0.0012790980135848438" c="9.7253811643240273e-05" d="7.138559110815691e-05" /> - <width sOffset="718.28608719093017" a="2.4907326837499006" b="-0.00051258904986022937" c="0.00015469478250519289" d="-8.1152074411198281e-06" /> - <width sOffset="726.89029335552937" a="2.4926053785733622" b="0.00034709858576246859" c="-6.4175096462805952e-05" d="-4.5838259013746366e-06" /> - <width sOffset="729.03771918170173" a="2.4930094152366546" b="8.0619842515584732e-06" c="6.558586051827639e-05" d="-4.1805930820340587e-06" /> - <width sOffset="736.98599187435616" a="2.4951176719816317" b="0.00025832320216121613" c="-3.1439967398708444e-05" d="-5.4628428311962267e-06" /> - <width sOffset="741.17417019726736" a="2.4952467691145639" b="-0.0002924976955682476" c="2.8726361652502729e-06" d="-1.5456002046226963e-07" /> - <width sOffset="747.08169039318295" a="2.4935872196925288" b="-0.00027473925858676005" c="1.225072211703834e-06" d="2.4699262298705877e-07" /> - <width sOffset="757.17738891200975" a="2.4911925499073018" b="-0.00017448055654550095" c="7.9403333121540937e-06" d="2.514227335199314e-07" /> - <width sOffset="767.27308743083654" a="2.490499060690464" b="6.2723240763998354e-05" c="1.7106126446560588e-05" d="-4.4658207407518018e-07" /> - <width sOffset="769.51969141046118" a="2.4907212496675069" b="0.00013282261768525266" c="1.9636073129830757e-05" d="-1.3947436536063873e-06" /> - <width sOffset="777.36878594966333" a="2.4922990765938646" b="0.00018329011253869192" c="-2.032824353687486e-05" d="4.6445581626859883e-06" /> - <width sOffset="778.96441232731672" a="2.4925586514739653" b="0.00015389301254536362" c="9.31413813012915e-06" d="-2.5818621825645653e-06" /> - <width sOffset="786.56400925730998" a="2.4931329086794616" b="-0.00015187722202088293" c="8.2513533403982321e-05" d="-1.6178414442665804e-05" /> - <width sOffset="788.31430307312951" a="2.4930331116036264" b="-1.1720465901345935e-05" c="0.00016272890649480468" d="-1.7037388019420203e-05" /> - <width sOffset="794.45618380939038" a="2.4951523356783607" b="5.9113827257857229e-05" c="0.00031811841549957414" d="-0.00014644387486614476" /> - <width sOffset="796.86750963154816" a="2.4950913392768364" b="-0.00096120218663844892" c="7.9967503996376522e-05" d="-1.6810676985593194e-06" /> - <width sOffset="797.56018298731692" a="2.4944633495617232" b="-0.00085283917851776436" c="7.523765692264009e-05" d="-1.1464654743420063e-06" /> - <width sOffset="807.65588150614371" a="2.4923421037306781" b="0.00031576018071729399" c="4.2214415414692641e-05" d="-2.0187709700210585e-06" /> - <width sOffset="812.14200775235088" a="2.4944259584876818" b="0.00057263328663036692" c="-0.00020969262380253679" d="1.0812928708951225e-05" /> - <width sOffset="817.75158002497062" a="2.4929484029941964" b="-0.00075917752010165877" c="-2.5741455250062938e-05" d="1.0919817894614203e-05" /> - <width sOffset="823.69327353030576" a="2.4898194172044281" b="9.1457441212279686e-05" c="0.00014761583248914462" d="-1.3984060190357842e-05" /> - <width sOffset="827.84727854379742" a="2.4917441704251928" b="0.00059393459675879945" c="-2.9505506277203791e-05" d="-1.2044990251638711e-05" /> - <width sOffset="831.1946685532489" a="2.4929499130422634" b="-8.491342617170973e-06" c="0.00052028396460258018" d="-3.4889853755507423e-05" /> - <width sOffset="833.05821023644648" a="2.4945151286503879" b="0.0015671552126654057" c="-0.00081376211857659569" d="6.9146814292829066e-05" /> - <width sOffset="837.94297706262421" a="2.4908125998540296" b="-0.0014331957877766928" c="0.00019873366881776575" d="7.0247744422415875e-05" /> - <width sOffset="840.40866854325986" a="2.4895400582939242" b="0.00082807786736976974" c="0.00014002284979107121" d="-3.4599015512770551e-05" /> - <width sOffset="844.90944120667677" a="2.4929490254081017" b="-1.4112159437220523e-05" c="9.3878276293229626e-05" d="-1.4865876532622453e-05" /> - <width sOffset="848.038675581451" a="2.4933686141334839" b="0.0001367173035944115" c="-5.6357964153358161e-05" d="7.8535020764577213e-07" /> - <width sOffset="849.1712062055559" a="2.4934523053079936" b="1.2084993827610364e-05" c="0.00011244662451717886" d="-7.2636068905822509e-06" /> - <width sOffset="858.1343741002778" a="2.4973639802736489" b="0.00027720173980600935" c="-8.1769580855359236e-05" d="-7.588578048665289e-06" /> - <width sOffset="861.24485176165672" a="2.4972067121952843" b="-0.00045174327010475204" c="-0.00022889960666676917" d="3.4348873139346581e-05" /> - <width sOffset="866.00042238977096" a="2.4935759470860575" b="-0.00029839388750112564" c="-6.0549358311712568e-07" d="1.0713730836507967e-05" /> - <width sOffset="868.23007261910459" a="2.4930263777109296" b="-0.00014130916467686681" c="7.6583139897740129e-05" d="1.2007317254141725e-05" /> - <width sOffset="869.00081518179275" a="2.4929684560965661" b="-1.8587658122577733e-06" c="-0.0002846086787957234" d="2.5574305746887158e-05" /> - <width sOffset="874.42842434608212" a="2.4886632142591694" b="-0.00083117220157268717" c="0.0004085164634468371" d="-2.9702381101501612e-05" /> - <width sOffset="878.32577113793138" a="2.4898706099276247" b="0.00099961225239357868" c="6.1197526354530413e-05" d="-2.9495273941511918e-05" /> - <width sOffset="882.42963812008895" a="2.4929649563744452" b="1.1651460567049451e-05" c="0.0026983954050084249" d="-0.00052612248027739323" /> - <width sOffset="883.23096019052923" a="2.4944362662582638" b="0.0033227223845725112" c="-0.0014602781502596261" d="0.00014746994600920501" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423378" type="poles" s="82.803348537437344" t="-13.417389421176125" zOffset="-2.5139298256931055" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.3860701743068944" name="SgPoleSign01.flt" /> - <object id="5181134" s="0" t="10.362577997595887" orientation="none" validLength="194.65359258788456" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="194.65359258788456" s="0" distance="0" tStart="10.362577997595887" tEnd="10.252241520189076" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273616590" s="194.65359258788456" t="10.252241520189076" orientation="none" validLength="74.426729021067302" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="74.426729021067302" s="194.65359258788456" distance="0" tStart="10.252241520189076" tEnd="10.065408848281511" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542052046" s="269.08032160895186" t="10.065408848281511" orientation="none" validLength="293.09594328698006" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="293.09594328698006" s="269.08032160895186" distance="0" tStart="10.065408848281511" tEnd="9.6779006638162652" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810487502" s="562.17626489593192" t="9.6779006638162652" orientation="none" validLength="91.1287480147015" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="91.1287480147015" s="562.17626489593192" distance="0" tStart="9.6779006638162652" tEnd="9.677514111520038" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078922958" s="653.30501291063342" t="9.677514111520038" orientation="none" validLength="84.335928480201005" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="84.335928480201005" s="653.30501291063342" distance="0" tStart="9.677514111520038" tEnd="9.8420039455733637" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741971" s="737.64094139083443" t="9.8420039455733637" orientation="none" validLength="30.494031236047363" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="30.494031236047363" s="737.64094139083443" distance="0" tStart="9.8420039455733637" tEnd="10.015733869319146" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741972" s="768.13497262688179" t="10.015733869319146" orientation="none" validLength="29.144782570626262" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="29.144782570626262" s="768.13497262688179" distance="0" tStart="10.015733869319146" tEnd="10.014531278878076" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741973" s="797.27975519750805" t="10.014531278878076" orientation="none" validLength="91.141714459250124" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="91.141714459250124" s="797.27975519750805" distance="0" tStart="10.014531278878076" tEnd="10.317158734456672" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5183046" s="0" t="-13.148031569480521" orientation="none" validLength="86.559832002206818" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="86.559832002206818" s="0" distance="0" tStart="-13.148031569480521" tEnd="-13.269307782058105" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273618502" s="86.559832002206818" t="-13.269307782058105" orientation="none" validLength="17.497917265475138" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.497917265475138" s="86.559832002206818" distance="0" tStart="-13.269307782058105" tEnd="-13.197956146226065" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542053958" s="104.05774926768196" t="-13.197956146226065" orientation="none" validLength="13.966834305486046" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.966834305486046" s="104.05774926768196" distance="0" tStart="-13.197956146226065" tEnd="-13.255286425832455" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412677" s="18.96418512399266" t="-13.129504062478855" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848133" s="66.886097120418142" t="-13.14980177432391" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8226426" type="101" subtype="-1" country="DEU" zOffset="1.3860701743068944" s="82.804382056563909" t="-13.443199903134992" orientation="+" name="" /> - <signal dynamic="no" id="8987922" type="2113" subtype="-1" country="DEU" zOffset="0.98895116165707009" s="82.803348537437344" t="-13.417389421176125" orientation="+" name="Sg2113-MarkierungFehlt03.flt" height="0.40999999999999998" /> - </signals> - </road> - <road name="" length="4.9999999928706611" id="4941542" junction="33556302"> - <link> - <predecessor elementType="road" elementId="4941552" contactPoint="end" /> - <successor elementType="road" elementId="33782205" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-479.11980560131803" y="-197.52114844967119" hdg="-0.093881892273964374" length="4.9999999928706611"> - <paramPoly3 aU="0" bU="5.0845819832549255" cU="-0.087034756179742198" dU="0.0024524156981576384" aV="-0" bV="7.7715611723760958e-16" cV="0.0014050435654568792" dV="0.00018432088835987676" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="166.01759377825309" b="0.0025659002958557625" c="4.6996301640619372e-05" d="-1.8298274169144671e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024121049484448639" b="-2.2958630251227261e-05" c="-0" d="-2.1684043542465828e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.4583684310975684" b="-5.6150124243507568e-05" c="0.0066597554116608173" d="-0.00060557152923177381" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15523179294825901" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999928706611" space="0" width="0.15523200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.5833114819454663" b="-4.104466925109471e-09" c="0.0045724155066724451" d="-0.000538732535123011" /> - <roadMark sOffset="0" color="standard" width="0.15745140277557482" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15745100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.693878610709151" b="1.5786741853948119e-09" c="-0.037468324758323283" d="0.0090451528812118161" /> - <width sOffset="2.5111635067115547" a="3.6008377996465173" b="-0.017063545380394184" c="0.012374503384966122" d="-0.0022443101202251543" /> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.5111635067115547" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.4888364861591064" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="1.6431300764452317e-14" b="-0.011425237894950603" c="0.060677806320672621" d="-0.014561733177243692" /> - <width sOffset="2.4966695751842254" a="0.12308252681099452" b="0.019254097709819746" c="-0.030839451370981392" d="-0.0087006993427746464" /> - <width sOffset="2.5111635067115547" a="0.12335508932445505" b="0.01835464454323588" c="-0.012919028057954599" d="0.0025887635195611762" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="157.67465444997839" id="4941552" junction="-1"> - <link> - <successor elementType="junction" elementId="33556302" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-636.55536700044547" y="-187.96230910904956" hdg="-0.051692224543759879" length="72.000609545767645"> - <paramPoly3 aU="0" bU="67.026822550906672" cU="10.269450875529934" dU="-5.3053925073218995" aV="-0" bV="9.7699626167013776e-15" cV="-1.6733186648264402" dV="0.58299777183613422" /> - </geometry> - <geometry s="72.000609545767645" x="-564.71698359664072" y="-192.77088531077436" hdg="-0.073986563877316947" length="85.674044904210746"> - <paramPoly3 aU="0" bU="85.915930908999385" cU="-3.5385302963553507" dU="3.2929117942472756" aV="-0" bV="3.5527136788005009e-15" cV="-0.072558060917240985" dV="-0.54006090006431118" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.7213474559243" b="0.0027729824226864009" c="-2.6108247825788321e-05" d="1.0523446834551095e-07" /> - <elevation s="10.511643629998559" a="165.7477334649638" b="0.0022589847666025309" c="-1.1053659523006633e-05" d="-1.0112442698387457e-06" /> - <elevation s="21.023287259997119" a="165.76908319713397" b="0.0016913892567220297" c="-0.00012957632864243153" d="7.1452374872310019e-06" /> - <elevation s="31.534930889995678" a="165.78084404023949" b="0.0013358004622037432" c="0.00014908279819236849" d="-8.4662950139358301e-06" /> - <elevation s="42.046574519994238" a="165.80152491479234" b="0.0016635699952194717" c="-5.2462958031221466e-05" d="2.4514509321716297e-06" /> - <elevation s="52.558218149992797" a="165.8160622056715" b="0.0013732428095152717" c="1.8646829465733038e-05" d="-1.6514882447978996e-06" /> - <elevation s="63.069861779991356" a="165.83063944839992" b="0.0012178186061590789" c="-2.4820324351348453e-05" d="1.0426358506478138e-06" /> - <elevation s="73.581505409989916" a="165.84190921160479" b="0.001041630853261752" c="-1.0022517189603303e-05" d="8.8798675261622412e-07" /> - <elevation s="84.093149039988475" a="165.8527824085923" b="0.0011252779564273818" c="3.0619967096495984e-05" d="-1.8799828019950356e-06" /> - <elevation s="94.604792669987035" a="165.86581070887547" b="0.0011458261852763268" c="-4.8632024435955353e-05" d="3.9899514268382193e-06" /> - <elevation s="105.11643629998559" a="165.8771158971808" b="0.0014460260463951924" c="0.00010472886363376496" d="-6.3992483934894217e-06" /> - <elevation s="115.62807992998415" a="165.89645538537965" b="0.001526522861841425" c="-1.3622355125310876e-05" d="1.0523446834587978e-07" /> - <elevation s="126.13972355998271" a="165.91111868008275" b="0.0012750197146973198" c="-1.5529289742024833e-05" d="1.5375633040430504e-06" /> - <elevation s="136.65136718998127" a="165.92459117912776" b="0.0014582205612279511" c="1.6517513050626686e-05" d="2.3689983926386591e-07" /> - <elevation s="147.16301081997983" a="165.94201972537527" b="0.0018840014786677421" c="2.2604113650626815e-05" d="1.0523446841041251e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024543555957712987" b="3.7882504664564642e-05" c="-9.1658259412903732e-07" d="-5.6150305879897678e-08" /> - <superelevation s="10.511643629998559" a="0.02477526839208077" b="0" c="-2.7497477823869861e-06" d="1.7439377254252131e-07" /> - <superelevation s="21.023287259997119" a="0.024673990917492797" b="0" c="5.5454033076041941e-05" d="-3.5169909374137565e-06" /> - <superelevation s="31.534930889995678" a="0.026716448942782699" b="0" c="-2.9125384437336077e-05" d="1.8471823857128568e-06" /> - <superelevation s="42.046574519994238" a="0.0256437158720948" b="0" c="2.2138488147646874e-05" d="-1.1615055658858374e-06" /> - <superelevation s="52.558218149992797" a="0.026740834458935471" b="8.0403336616819158e-05" c="8.0844749256855919e-07" d="-2.9382888341179836e-07" /> - <superelevation s="63.069861779991356" a="0.027334058314452434" b="0" c="-8.5390831153598282e-07" d="0" /> - <superelevation s="73.581505409989916" a="0.027239706012896645" b="-1.7951959727120737e-05" c="-1.7134864448852862e-06" d="-1.6246903749649495e-07" /> - <superelevation s="84.093149039988475" a="0.02667296571857487" b="-0.00010783095665541556" c="-1.239308598098087e-05" d="6.3470133690590916e-07" /> - <superelevation s="94.604792669987035" a="0.024907308574122575" b="-0.00015798105360839579" c="-2.3901222006545767e-06" d="3.1779471102096362e-07" /> - <superelevation s="105.11643629998559" a="0.02335168464692856" b="-0.00010288543140092512" c="3.0851431955793803e-06" d="1.147131833718561e-07" /> - <superelevation s="115.62807992998415" a="0.022744318594912199" b="0" c="2.9268632397060914e-05" d="-1.6487402256229477e-06" /> - <superelevation s="126.13972355998271" a="0.024063366479062358" b="6.8791935153859947e-05" c="-3.7475607958030665e-06" d="4.5224415016625502e-08" /> - <superelevation s="136.65136718998127" a="0.024424924632540031" b="4.9970559903056618e-06" c="-2.3769146701496134e-07" d="0" /> - <superelevation s="147.16301081997983" a="0.024451188268424653" b="0" c="-4.3628931369134944e-06" d="1.3081372159300492e-07" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="5.2410149566756603" b="0.00036897645347464897" c="-0.020776639568327468" d="0.0055418856212186797" /> - <laneOffset s="1.9069518300533432" a="5.2045956097411681" b="-0.018412501263367267" c="0.00059933746331113644" d="-4.002331392694338e-05" /> - <laneOffset s="7.8237459317834839" a="5.1083441665566784" b="-0.015523651374217705" c="-0.00022835495793943091" d="6.5492034107285114e-05" /> - <laneOffset s="10.511643629998559" a="5.0662401852535934" b="-0.01533174153357421" c="0.00029986092143094922" d="6.5938806132564948e-05" /> - <laneOffset s="13.233195544244991" a="5.0280642799329316" b="-0.012234371889815607" c="0.00073710667121522149" d="-4.1231418066527481e-05" /> - <laneOffset s="19.431009598152102" a="4.9707361107246264" b="-0.0078489266168806984" c="0.00037334453512422543" d="-1.8488845678461937e-05" /> - <laneOffset s="21.023287259997119" a="4.9591103595129802" b="-0.0068006172721732519" c="0.00029663640000175884" d="-2.0200484020436828e-05" /> - <laneOffset s="27.300318313795394" a="4.9231144547125556" b="-0.0054643904983496441" c="-5.6124255781152796e-05" d="9.8732498760600833e-06" /> - <laneOffset s="31.534930889995678" a="4.899718184585943" b="-0.0054085797752036271" c="7.9444462548635252e-05" d="1.2832036698159402e-05" /> - <laneOffset s="39.373564728420668" a="4.8683841100706315" b="-0.001797745735004893" c="0.00016771248197731573" d="-6.425559899568079e-06" /> - <laneOffset s="42.046574519994238" a="4.864654301442342" b="-0.0010388830388729723" c="0.00011225488604509619" d="-9.1593877201520876e-06" /> - <laneOffset s="49.404215225396499" a="4.8594392480516522" b="-0.00087454777698367861" c="-0.00011297251738830379" d="1.6909821167316779e-05" /> - <laneOffset s="52.558218149992797" a="4.8560876499452128" b="-0.0010825358458417082" c="7.0396375542943742e-05" d="1.8034523751474259e-05" /> - <laneOffset s="55.915569581115584" a="4.8539291792555312" b="-0" c="1.7739313132116052e-05" d="-1.99405730121641e-07" /> - <laneOffset s="63.464733705174233" a="4.8548543510443478" b="0.0002337416472876161" c="1.8635630188148034e-05" d="3.997744855161417e-07" /> - <laneOffset s="73.581505409989916" a="4.8595403447032481" b="0.00073355611974493457" c="2.8384166230824317e-05" d="5.036172355205211e-07" /> - <laneOffset s="84.093149039988475" a="4.8709724653305981" b="0.0014972256332952637" c="2.8895571116353317e-05" d="2.4376167643432982e-06" /> - <laneOffset s="88.409156734952816" a="4.8781687472800357" b="0.0018828758558217967" c="0.00020886318665851782" d="-1.9185369636149178e-06" /> - <laneOffset s="94.604792669987035" a="4.8973954867329557" b="0.0042500220545584975" c="0.0001556842734756218" d="-2.5662745463219497e-06" /> - <laneOffset s="103.01663368388378" a="4.942634588205947" b="0.0063244431732800846" c="0.00011682819536030907" d="5.5253820397930077e-06" /> - <laneOffset s="105.11643629998559" a="4.9564809421561629" b="0.0068881625369851202" c="0.00012918669473368339" d="-4.2951350661282214e-07" /> - <laneOffset s="113.315237354423" a="5.0214028736670713" b="0.0089198984247781353" c="0.0001941728361695208" d="-1.1643915490917811e-05" /> - <laneOffset s="115.62807992998415" a="5.0429278138055897" b="0.0096312225070740391" c="0.00011923973834145323" d="-1.373478471403138e-05" /> - <laneOffset s="119.32534687985114" a="5.0794728282949126" b="0.0099496902188366421" c="-9.2466591619389362e-05" d="1.8280468063713034e-05" /> - <laneOffset s="126.13972355998271" a="5.1487645102661226" b="0.011236086460135252" c="0.00031298792751982627" d="3.2697590995969858e-06" /> - <laneOffset s="127.15190374306975" a="5.1604615038775457" b="0.011879736505853061" c="0.00015748935529949013" d="7.5378067176938832e-06" /> - <laneOffset s="132.63270757525578" a="5.2315438822798752" b="0.014285362321386658" c="0.0003820812843091674" d="-1.8246746970748084e-05" /> - <laneOffset s="136.65136718998127" a="5.2939381493498416" b="0.016472237206414622" c="0.00016396989201535712" d="-1.8084305862204946e-05" /> - <laneOffset s="140.38172667344958" a="5.3567284935458543" b="0.016940609573097551" c="0.00020069678062085432" d="-1.5747852449101037e-05" /> - <laneOffset s="146.67488984295971" a="5.4673619920983398" b="0.017595615501834319" c="-4.8131371216093946e-05" d="5.369215674972493e-06" /> - <laneOffset s="156.03610003008635" a="5.6322649902288324" b="0.01810602918708118" c="0.011194106688632103" d="-0.0068023814756230606" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929383180529507" b="-0.00061421165127674177" c="0.0048387424527979034" d="-0.0021390078425813932" /> - <width sOffset="1.9069518300533432" a="2.4945298779117069" b="-0.0054949973735775627" c="0.0029301374434214538" d="0.0034429010925523004" /> - <width sOffset="2.4052188861073831" a="2.4929452705054755" b="-1.0707684363061437e-05" c="-0.00037879824880359466" d="4.6815293517095521e-05" /> - <width sOffset="7.8237459317834839" a="2.489213428833736" b="7.7873990024131257e-06" c="0.00049947485134398497" d="-5.8700054517170025e-05" /> - <width sOffset="10.511643629998559" a="2.4917030373579099" b="0.0014205745941122533" c="2.646110883229813e-05" d="-5.8966330403310489e-05" /> - <width sOffset="13.233195544244991" a="2.4945765482567914" b="0.00025434177985505374" c="-0.00035385677694802078" d="4.8203893795783573e-05" /> - <width sOffset="17.722336794932868" a="2.4929481228303247" b="-8.4134469635292058e-06" c="-4.9141283301162283e-05" d="4.1464894695377329e-05" /> - <width sOffset="19.431009598152102" a="2.4929971267814661" b="0.00018683189021577364" c="-0.00023946332071430037" d="1.8722322307563317e-05" /> - <width sOffset="21.023287259997119" a="2.4927630737465751" b="-0.00043334948677297824" c="-0.00015228700486227874" d="1.9521053391095854e-05" /> - <width sOffset="27.300318313795394" a="2.4888706340590598" b="-3.7715969753247987e-05" c="0.00018767922944289714" d="-1.0552680505398307e-05" /> - <width sOffset="31.534930889995678" a="2.4912750588653489" b="0.00098409146363913607" c="4.8446848321385025e-05" d="-1.2484937137466016e-05" /> - <width sOffset="39.373564728420668" a="2.495952542855556" b="-0.00055777451837995553" c="-3.1658812022016957e-05" d="6.7726594602974495e-06" /> - <width sOffset="42.046574519994238" a="2.4943647528336026" b="-0.00058185157091290526" c="3.1026454987964904e-05" d="7.3928347670164809e-06" /> - <width sOffset="45.86682282990494" a="2.4930069235762922" b="-2.1114364352271906e-05" c="7.4123578274266124e-06" d="8.5296486161548442e-06" /> - <width sOffset="49.404215225396499" a="2.4934025412383836" b="0.00035152466083761692" c="0.00012098345193457255" d="-1.7539560271278471e-05" /> - <width sOffset="52.558218149992797" a="2.4951644553764449" b="0.00059125231953725951" c="-5.4262850300618812e-05" d="-1.7783349178227249e-05" /> - <width sOffset="55.915569581115584" a="2.4958648739306764" b="-0.00037445812301305768" c="9.2405604907740726e-07" d="4.5058030337135766e-07" /> - <width sOffset="63.069861779991356" a="2.4933981834393713" b="-0.00029204882171310695" c="1.3282345207347551e-05" d="6.8617340791096856e-07" /> - <width sOffset="63.464733705174233" a="2.493284974840785" b="-0.00028123819889238841" c="8.6828402485254133e-06" d="8.6993194895795634e-08" /> - <width sOffset="73.581505409989916" a="2.4914185092326733" b="-7.8842556094059989e-05" c="1.0141763993021424e-05" d="1.4407456786842189e-07" /> - <width sOffset="84.093149039988475" a="2.4918776948483394" b="0.00018212906928528048" c="9.9874383790919394e-06" d="1.5032886151219198e-07" /> - <width sOffset="88.409156734952816" a="2.4928618967185532" b="0.00027674173419024208" c="-0.00013647139746261058" d="4.5064825928000696e-06" /> - <width sOffset="89.408428918940984" a="2.4930066608681534" b="1.7497367003410733e-05" c="-3.2414762280342098e-05" d="2.9290233541333442e-06" /> - <width sOffset="94.604792669987035" a="2.4926332945182557" b="-8.2110234282275693e-05" c="3.689549836795341e-06" d="1.5526578862186371e-06" /> - <width sOffset="103.01663368388378" a="2.4931278291686194" b="0.00030955545964342964" c="1.6966481371397644e-05" d="-6.5389987000013624e-06" /> - <width sOffset="105.11643629998559" a="2.4937921020579976" b="0.00029431329274957375" c="-1.2177787747208029e-05" d="-8.827129880000571e-07" /> - <width sOffset="113.315237354423" a="2.4949000369348751" b="-8.3382023460910198e-05" c="-0.00010943998108585099" d="1.0331688996179722e-05" /> - <width sOffset="115.62807992998415" a="2.4942495897897583" b="-0.00042381684261559756" c="-3.7680720753093905e-05" d="1.1482914617351776e-05" /> - <width sOffset="119.32534687985114" a="2.4927478946230837" b="-0.00023154136000431286" c="0.00014904831455626796" d="-2.0532338160375057e-05" /> - <width sOffset="123.31933977983246" a="2.4928925774834951" b="-2.3539838848601197e-05" c="0.00017151162487658475" d="-2.6914375808185746e-05" /> - <width sOffset="126.13972355998271" a="2.4935866644079532" b="0.00030164094242624874" c="-6.2914917891720762e-05" d="-6.5317541718026812e-06" /> - <width sOffset="127.15190374306975" a="2.4938207491631461" b="0.00015420295883153759" c="8.2678474020357563e-05" d="-1.0799801789899857e-05" /> - <width sOffset="132.63270757525578" a="2.4953714326360652" b="8.7239390596497227e-05" c="-0.00019554852026625594" d="1.4984751898546545e-05" /> - <width sOffset="136.65136718998127" a="2.4935364908541375" b="-0.00075845211553966785" c="-1.4797106417085797e-05" d="1.4929900996019655e-05" /> - <width sOffset="140.38172667344958" a="2.4912762944606781" b="-0.00024557438891423949" c="-8.6825187344377204e-05" d="1.2593447582916601e-05" /> - <width sOffset="146.67488984295971" a="2.4894309515608937" b="0.00015786448608803849" c="0.00010244941091240456" d="-8.5236205363918916e-06" /> - <width sOffset="147.16301081997983" a="2.489531427035427" b="0.00025178733230287256" c="8.8169823428806276e-05" d="-8.3589166079564318e-06" /> - <width sOffset="155.40500709301836" a="2.4929160628258149" b="1.701826265226164e-06" c="0.0077688526287547363" d="-0.0034381166305446475" /> - <width sOffset="156.03610003008635" a="2.4951471294735112" b="0.0056994561814278748" c="-0.0098319117287241665" d="0.0033696340607486689" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15301184618148689" weight="standard" type="solid"> - <type name="solid"> - <line length="157.67465444997839" space="0" width="0.15301200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.5719970546712849" b="3.7089218118176864e-09" c="-0.014507851445080284" d="0.0049634137522181349" /> - <width sOffset="1.9069518300533432" a="3.5536588745877067" b="-0.0011836986451862937" c="0.0035587716188833648" d="-0.00061849518292747649" /> - <width sOffset="5.6055142684552974" a="3.5666704896758854" b="-0.00024088299632458489" c="-8.6239138129941864e-05" d="-3.8507133490015275e-05" /> - <width sOffset="7.8237459317834839" a="3.5652915088270483" b="-0.0011919087948400377" c="-0.00045975566437147846" d="6.7008214544243746e-05" /> - <width sOffset="10.511643629998559" a="3.5600674064477142" b="-0.002211099532428611" c="8.0505212159817549e-05" d="6.7411350930485567e-05" /> - <width sOffset="13.233195544244991" a="3.5560049595060326" b="-0.00027498505717082032" c="0.00052977378328485504" d="-3.9758873268606171e-05" /> - <width sOffset="19.431009598152102" a="3.5651851663755552" b="0.0017101329864535036" c="0.00019339132372426412" d="-1.7016300880468843e-05" /> - <width sOffset="21.023287259997119" a="3.5683297928277913" b="0.0021965716149815679" c="0.00011854509804882111" d="-1.5686398991665802e-05" /> - <width sOffset="22.182479179348366" a="3.5710108993103153" b="0.0024081699923703759" c="4.1802947664901972e-05" d="-2.3389343272427762e-05" /> - <width sOffset="25.302508523567138" a="3.5782210091608126" b="0.0019859663213135405" c="-0.00021235728914221463" d="-1.757034960070875e-05" /> - <width sOffset="27.300318313795394" a="3.5812009208640641" b="0.00092708472371441468" c="-0.00029002739778183757" d="1.2503384295646068e-05" /> - <width sOffset="31.534930889995678" a="3.5808754529475939" b="-0.00085659265982365035" c="-0.00012369925673688263" d="1.5036840179754463e-05" /> - <width sOffset="39.373564728420668" a="3.5738026574132249" b="-2.4080054775915249e-05" c="1.6416704225494922e-05" d="-4.2207564179706727e-06" /> - <width sOffset="42.046574519994238" a="3.5737749776764369" b="-2.678771011088211e-05" c="-2.1360507821868959e-05" d="-6.9545842382801079e-06" /> - <width sOffset="42.72731910334528" a="3.5737446494118643" b="-6.5538348260705073e-05" c="6.6406233766139259e-05" d="-9.0822575268478594e-06" /> - <width sOffset="49.404215225396499" a="3.5735640632884813" b="-0.00039345008215713905" c="-0.00013857058806963153" d="1.6986951360628476e-05" /> - <width sOffset="52.558218149992797" a="3.5714776258829852" b="-0.00076060911855786251" c="4.3144916731955117e-05" d="1.8168583668558634e-05" /> - <width sOffset="55.915569581115584" a="3.5700978764093332" b="0.00014347457199714858" c="-8.1618869153696263e-06" d="-6.5345813044669174e-08" /> - <width sOffset="58.747483696759865" a="3.5704372438016145" b="9.5674877651705494e-05" c="-0.0026256488609637395" d="0.00060386687083058299" /> - <width sOffset="61.349218345572396" a="3.5635479079719135" b="-0.0013040418127289329" c="0.00014430971837164967" d="-5.0029449521122441e-06" /> - <width sOffset="63.069861779991356" a="3.5617058765306293" b="-0.00085186603787524781" c="0.00011773339400419726" d="-5.3350861856834075e-06" /> - <width sOffset="63.464733705174233" a="3.5613875275098645" b="-0.0007613824153039541" c="0.00011682572358452478" d="-4.7359059220364562e-06" /> - <width sOffset="73.581505409989916" a="3.5607380428459789" b="0.0001482692378946079" c="-2.8539961210833068e-05" d="-4.7195353333487315e-06" /> - <width sOffset="78.329759380972305" a="3.5602933594013213" b="-0.00044197946874668785" c="-0.00017895193530296605" d="3.723517684968593e-06" /> - <width sOffset="84.093149039988475" a="3.5525147061446285" b="-0.0021336704686417398" c="-0.00012692290614519893" d="5.7087780442570549e-06" /> - <width sOffset="88.409156734952816" a="3.5414004337356904" b="-0.0029102429242061985" c="9.5399781163696472e-05" d="1.3526243163002919e-06" /> - <width sOffset="94.604792669987035" a="3.5273533229971843" b="-0.0015723531754062376" c="0.00010688394287616988" d="6.0858805739212603e-07" /> - <width sOffset="101.90955553775554" a="3.5218081509344703" b="8.6592512662453207e-05" c="0.00019403087732170794" d="-1.3924652276545394e-05" /> - <width sOffset="103.01663368388378" a="3.5221229303342625" b="0.00046500811915379647" c="0.00017368904496895747" d="-5.8329956897834663e-06" /> - <width sOffset="105.11643629998559" a="3.5238111761617876" b="0.0011172775143997024" c="0.0001189139216305247" d="-1.1011333836035059e-05" /> - <width sOffset="113.315237354423" a="3.5348963119182168" b="0.00084662391551333475" c="-7.6374655957841441e-05" d="-2.2225735820329734e-05" /> - <width sOffset="115.62807992998415" a="3.5361708975985851" b="0.00013666636632547573" c="-0.00022473000753957403" d="-2.4316605021126557e-05" /> - <width sOffset="115.87471020627783" a="3.5361905693346847" b="2.1378637190252667e-05" c="-0.00025648144530603247" d="3.0681571299141566e-05" /> - <width sOffset="119.32534687985114" a="3.5344710361847449" b="-0.00065270332404813308" c="1.7685868660753358e-06" d="6.2696824126552562e-05" /> - <width sOffset="119.49235626825558" a="3.5343623699888407" b="-0.00064686633782629933" c="8.5347947183663189e-05" d="5.3820185210673332e-06" /> - <width sOffset="126.13972355998271" a="3.5354145865074154" b="0.0012012656668189178" c="0.00022151066049816873" d="-9.8464164549810827e-06" /> - <width sOffset="127.15190374306975" a="3.5368472128038526" b="0.0016194198499666235" c="2.6184289355124773e-05" d="-5.5783688368839372e-06" /> - <width sOffset="132.63270757525578" a="3.5455910735239171" b="0.0014037323671763392" c="3.5114662635236818e-05" d="-3.1362922525305864e-05" /> - <width sOffset="135.94084864782877" a="3.5494836544723523" b="0.00060637247677183988" c="-0.00035953053708713285" d="5.3153622047275002e-05" /> - <width sOffset="136.65136718998127" a="3.5497520551661412" b="0.000175967931928072" c="-0.0002443596317910486" d="5.3316063148908861e-05" /> - <width sOffset="140.13042216255258" a="3.5496517037668913" b="0.00041167140232633431" c="-0.00012265962343982104" d="-9.8178197580418224e-06" /> - <width sOffset="140.38172667344958" a="3.5497472563893089" b="0.00034816146644461865" c="0.00010904836352133" d="-7.4813664567351335e-06" /> - <width sOffset="146.67488984295971" a="3.5543924245295164" b="0.00083180582930621194" c="1.6287247250701374e-05" d="1.3635701669617121e-05" /> - <width sOffset="147.16301081997983" a="3.5548039128791169" b="0.00085745273564786367" c="3.6685780392940128e-05" d="1.3600019451057706e-05" /> - <width sOffset="156.03610003008635" a="3.5748013870589492" b="0.0047207435891553681" c="0.011490159328368322" d="-0.0067941506718483882" /> - <width sOffset="156.53433236222673" a="3.5791653858071437" b="0.011110634060249119" c="-0.0099213783290085008" d="0.0029521881264771253" /> - <roadMark sOffset="0" color="standard" width="0.15327738036321931" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.153277" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - <speed sOffset="16.444088899724203" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.5730146475288223" b="2.8990967375765002e-09" c="0.0037888404605455643" d="-0.0004906637714004611" /> - <width sOffset="4.9902916623535907" a="3.606391797241999" b="0.0011578251136073539" c="0.0013139783709352026" d="0.00061627642783549015" /> - <width sOffset="5.6055142684552974" a="3.6077449635120913" b="0.0034743832760705372" c="-0.00076619845773917106" d="3.6288378397318412e-05" /> - <width sOffset="10.511643629998559" a="3.6106335924707782" b="-0.0014233589555996268" c="-0.00023179854880043781" d="3.6400768008201405e-05" /> - <width sOffset="17.280332283356703" a="3.6016676205728793" b="0.00044181614196527053" c="-0.00012112601739476403" d="4.7048586356777064e-05" /> - <width sOffset="20.638316770228769" a="3.6035668950154447" b="0.0012199055890089131" c="0.0013153673917241442" d="-0.00012002859470334043" /> - <width sOffset="21.023287259997119" a="3.604224615059513" b="0.0021792953135674632" c="0.0011819171821733146" d="-0.00012307013493792018" /> - <width sOffset="22.182479179348366" a="3.6081473108143953" b="0.0044233154217301028" c="0.00077612297389207264" d="-0.00011536719065715442" /> - <width sOffset="25.302508523567138" a="3.6259994646687543" b="0.0058972138118229258" c="-0.0002684901619879804" d="-0.00012118618432874434" /> - <width sOffset="30.121772298286494" a="3.6346196962876469" b="-0.0051343936826893739" c="-0.016327308911248024" d="0.0070305210693191924" /> - <width sOffset="31.534930889995678" a="3.6145989146512383" b="-0.0091603328041118051" c="0.013481068226808708" d="0.0070309464003538201" /> - <width sOffset="31.689485846540883" a="3.6135311227363065" b="-0.004489351377940755" c="0.0013140517753002577" d="-5.7080772941733088e-05" /> - <width sOffset="42.046574519994238" a="3.6445753115420283" b="0.0043611089012821477" c="-0.0004578328440363982" d="-5.810203835303387e-05" /> - <width sOffset="42.72731910334528" a="3.6473136178076198" b="0.0036569986915388395" c="-0.00067846041594739294" d="-5.597436506532409e-05" /> - <width sOffset="44.615652241795061" a="3.6514230950575182" b="0.00049589960270991881" c="-2.4959438907287433e-05" d="-3.1803774281922694e-07" /> - <width sOffset="52.558218149992797" a="3.6536279069456064" b="3.9226009701789184e-05" c="-2.2677459068931476e-05" d="-1.0620110131084168e-06" /> - <width sOffset="55.869259030666598" a="3.6534706232253051" b="-0.00014587443220180526" c="1.8822377513479567e-05" d="-2.4749293719203165e-07" /> - <width sOffset="58.747483696759865" a="3.6532007905944752" b="-4.3675195797672751e-05" c="0.0026336171695411563" d="-0.00060417970958080063" /> - <width sOffset="61.349218345572396" a="3.6602738439971998" b="0.0013911515053614222" c="-0.00013878318004282108" d="4.6901062020287708e-06" /> - <width sOffset="63.069861779991356" a="3.6622805284541062" b="0.00095521555010084479" c="-0.0001127624213042971" d="5.1700871898218243e-06" /> - <width sOffset="66.284334774811725" a="3.6643576098700157" b="0.00039053703282902362" c="-0.00035181974348764641" d="1.3033448151244625e-05" /> - <width sOffset="73.581505409989916" a="3.6535378212738783" b="-0.0026619978857603211" c="-6.853018365171395e-05" d="1.3153860894173543e-05" /> - <width sOffset="78.329759380972305" a="3.6407610734200846" b="-0.0024230977996458872" c="0.00020202674995052806" d="4.7108078758673454e-06" /> - <width sOffset="84.093149039988475" a="3.634408310238797" b="0.00037505187909830321" c="0.00027558193462454443" d="4.9395960451671781e-06" /> - <width sOffset="91.713784940666088" a="3.6554566896176839" b="0.0054358587068094651" c="0.0020360980186809488" d="-0.0009362536937277409" /> - <width sOffset="93.110784677663375" a="3.6644716499795393" b="0.0056431141590784157" c="-0.0015818822479434439" d="9.547989845776447e-05" /> - <width sOffset="94.604792669987035" a="3.6696900500108933" b="0.0015557752688000158" c="-0.0011803688961908631" d="8.7153346282041816e-05" /> - <width sOffset="101.90955553775554" a="3.6520411924652754" b="-0.0017374617221810789" c="0.00065572452686306934" d="0.00010168658661596924" /> - <width sOffset="102.8016252516356" a="3.6510852606156003" b="-0.00032479472966445017" c="0.00035049208100947825" d="-1.4291375895199662e-05" /> - <width sOffset="105.11643629998559" a="3.6520342174397751" b="0.001068116563083951" c="0.00023758188911911525" d="-1.7294399028248168e-05" /> - <width sOffset="113.76801949229787" a="3.6678587603152959" b="0.0012955838359044467" c="-4.3821913493215193e-05" d="1.6406078301353874e-05" /> - <width sOffset="115.62807992998415" a="3.6702225894504639" b="0.0013028474920198426" c="4.8520442620576126e-05" d="1.5948731124379175e-05" /> - <width sOffset="115.87471020627783" a="3.6705471016731206" b="0.0013296910285166708" c="7.4080567227899493e-05" d="-3.9049445203659418e-05" /> - <width sOffset="119.49235626825558" a="3.6744781590118336" b="0.00033252277664813992" c="-0.00040188713333759815" d="1.8265360352179918e-05" /> - <width sOffset="126.13972355998271" a="3.6642952688051995" b="-0.0025891586051329952" c="-3.2471183881833271e-05" d="1.8565911446291775e-05" /> - <width sOffset="135.94084864782877" a="3.6532794592059243" b="0.0021247718322650808" c="0.00059681556070984455" d="-6.5950633118564631e-05" /> - <width sOffset="136.65136718998127" a="3.6550667871155937" b="0.0028729859965988154" c="0.00045700749646303588" d="-6.6012002780195227e-05" /> - <width sOffset="138.78586937356653" a="3.6626393866345888" b="0.0039216812220419471" c="-0.0009054437829320326" d="-2.8892103154432045e-05" /> - <width sOffset="140.13042216255258" a="3.6662051842924748" b="0.0013301519381521687" c="-0.0005872161210550193" d="3.4241779864202011e-05" /> - <width sOffset="147.16301081997983" a="3.6584272016856594" b="-0.0018486286575491867" c="0.00013445853315897685" d="3.4302300593494538e-05" /> - <width sOffset="156.53433236222673" a="3.6811424484906925" b="0.0097089353454024863" c="0.012355173253590179" d="-0.009712036497730718" /> - <roadMark sOffset="0" color="standard" width="0.29259667075674861" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.292597" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - <speed sOffset="16.444088772538226" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link /> - <width sOffset="0" a="3.4919747584701648" b="8.3369942205781082e-09" c="0.02542863440958127" d="-0.018629446122290672" /> - <width sOffset="0.90001442746846771" a="3.4989911008594259" b="0.00050127853804910957" c="-0.0070091616819750032" d="0.0010451585695630866" /> - <width sOffset="4.9902916623535907" a="3.4552977426490843" b="-0.0043798883718910234" c="0.00094499933710327083" d="-6.1781629672209742e-05" /> - <width sOffset="6.2100911529885376" a="3.4512491010174027" b="-0.0023502456133908407" c="0.00094119415189289205" d="-5.7638549501875967e-05" /> - <width sOffset="10.511643629998559" a="3.4539670109390488" b="0.0025474270507327614" c="0.00019727595958104083" d="-5.7707303486831011e-05" /> - <width sOffset="10.947367014272032" a="3.4551096644851422" b="0.0026864745108405447" c="0.00066800358154522638" d="-0.0001549477715051445" /> - <width sOffset="14.810466403692887" a="3.466523848181787" b="0.00091049661341365343" c="-0.0013017034761688552" d="0.0001390594453011096" /> - <width sOffset="17.280332283356703" a="3.4629271288409562" b="-0.0029746824753941175" c="0.00035715492617978439" d="0.00012841162695313778" /> - <width sOffset="18.344968544942493" a="3.4603199472919206" b="-0.0017775576865183117" c="0.00030531722253711763" d="-6.0893092938155233e-05" /> - <width sOffset="20.638316770228769" a="3.4571147112598091" b="-0.0013379520829098126" c="-0.001076158117113035" d="0.00010618408809865684" /> - <width sOffset="21.023287259997119" a="3.4564462082809788" b="-0.0021193201464901196" c="-0.00094613025562209684" d="0.00010541156509486061" /> - <width sOffset="30.121772298286494" a="3.4382360762110138" b="0.0068426524268382968" c="0.016237860572877263" d="-0.0070462956885528156" /> - <width sOffset="31.420768135227089" a="3.4590793938860744" b="0.013358928453314486" c="-0.011202619396543993" d="-0.0070170415884102553" /> - <width sOffset="31.689485846540883" a="3.4617240843616846" b="0.0058181589087201889" c="-0.0014324101664358346" d="7.0985584801075253e-05" /> - <width sOffset="40.893186433253263" a="3.4492782785800027" b="-0.002509626665948889" c="0.00084029080985203303" d="-2.5264424667170021e-06" /> - <width sOffset="42.046574519994238" a="3.4474976709085454" b="-0.00058134665714028831" c="0.00082453418099374043" d="-9.1844880484815981e-06" /> - <width sOffset="44.615652241795061" a="3.4512904688006389" b="0.0034733808520678493" c="-0.00021684853231022209" d="-6.4840815370929597e-05" /> - <width sOffset="48.336262630766178" a="3.4578721702586579" b="-0.00083299982659145052" c="1.6133685214460946e-05" d="-1.4851137373894015e-06" /> - <width sOffset="52.558218149992797" a="3.4545310998289707" b="-0.00077618447294391783" c="-1.0153459553284637e-05" d="-7.9807016094903149e-07" /> - <width sOffset="52.924223445423429" a="3.4542456129160573" b="-0.00078393764101983591" c="-9.18045493489442e-07" d="-1.7983001498533055e-07" /> - <width sOffset="55.869259030666598" a="3.451924332847415" b="-0.00079402411803690127" c="-5.4555785096597673e-05" d="-9.943480909197428e-07" /> - <width sOffset="63.069861779991356" a="3.4430070035051434" b="-0.0017343600981397245" c="-7.4911971557667517e-05" d="-9.4604254323139435e-07" /> - <width sOffset="66.284334774811725" a="3.4366264741946453" b="-0.0022452910264068255" c="0.00020487958296182688" d="-8.8094035046540635e-06" /> - <width sOffset="73.432829129970429" a="3.4278275385942178" b="-0.00066663717530511622" c="-0.00083577704826505851" d="0.00014512628421143979" /> - <width sOffset="73.581505409989916" a="3.4277104278593526" b="-0.00090553372906989867" c="-0.00076976951246555156" d="0.00014509334331821758" /> - <width sOffset="79.116112979693341" a="3.4237176297897158" b="0.0039071679874448512" c="7.9801126909146898e-06" d="-7.8213263460970476e-06" /> - <width sOffset="84.093149039988475" a="3.4423971633027977" b="0.0034053790091877192" c="-0.00011830570628944553" d="-8.6219850271809845e-06" /> - <width sOffset="91.713784940666088" a="3.4576620617345788" b="0.00010010774104451154" c="-0.0019630082273759215" d="0.00093257130474575769" /> - <width sOffset="93.110784677663375" a="3.4565134480337614" b="7.5505384917746998e-05" c="0.001639539149931673" d="-9.9162287440442064e-05" /> - <width sOffset="94.604792669987035" a="3.4599551252451062" b="0.0043104660818188431" c="0.0011477215153196006" d="-5.2913446064282496e-05" /> - <width sOffset="95.698834590368946" a="3.4659754059544645" b="0.0066317762715660438" c="-0.00043240914954074483" d="3.0254347215379724e-05" /> - <width sOffset="101.59851945298493" a="3.4962628534289277" b="0.00468874481891394" c="-0.0010581969129024075" d="-2.1367088687512358e-05" /> - <width sOffset="102.8016252516356" a="3.5003349982801399" b="0.0020497148879068533" c="-0.00055795049926640511" d="9.4610873823045976e-05" /> - <width sOffset="105.11643629998559" a="3.5032635192129153" b="0.00098748950869073995" c="8.1528759409751889e-05" d="9.6820536878373963e-05" /> - <width sOffset="108.11684255265718" a="3.5095755631318255" b="0.0040915908561882704" c="0.024304449873662017" d="-0.0060427499816306674" /> - <width sOffset="110.84441939572758" a="3.5789316967964133" b="0.0018078043822136554" c="-9.2897730621453354e-05" d="4.351474309532032e-05" /> - <width sOffset="113.76801949229787" a="3.5845103588126408" b="0.0023804313978089018" c="0.00012129339747651052" d="9.8142657657493476e-06" /> - <width sOffset="115.62807992998415" a="3.5894209185322099" b="0.002933524419013964" c="0.00018223516970007359" d="8.022555342127758e-06" /> - <width sOffset="118.90991922273309" a="3.6012946053620887" b="0.0043888775541917171" c="0.00012140980113911084" d="-1.7683472946068749e-06" /> - <width sOffset="126.13972355998271" a="3.638703167576105" b="0.0058671208532869046" c="8.0799695417783942e-05" d="-1.8511723715566311e-06" /> - <width sOffset="126.75212242774208" a="3.6423260630875474" b="0.0059640013885738337" c="0.00011375593594452347" d="-1.3323786029683187e-05" /> - <width sOffset="134.56053860379978" a="3.6894880041483926" b="0.0053034005784916988" c="-0.00077870041721049338" d="7.7755515603085052e-05" /> - <width sOffset="136.65136718998127" a="3.6978830671244545" b="0.0030668820734179696" c="-0.00028950231614620434" d="7.8415894721822253e-05" /> - <width sOffset="138.78586937356653" a="3.703872927156179" b="0.0029028072945601786" c="0.0011523773665521094" d="4.1295995096163832e-05" /> - <width sOffset="142.24795044972598" a="3.7294487228567101" b="0.012366977099151535" c="0.0021677107296314262" d="-0.00033498833554801855" /> - <width sOffset="146.45539903720925" a="3.7949054147673653" b="0.012817522733885485" c="-0.0032695514298377061" d="0.00036973061300603973" /> - <width sOffset="147.16301081997983" a="3.8024691330662401" b="0.008745764866738481" c="-0.002484354728443894" d="0.00036970577449231551" /> - <width sOffset="151.62236512325282" a="3.8248508869112694" b="0.0086442594939855413" c="-0.00029400949704911516" d="-4.2179979235767361e-05" /> - <width sOffset="157.21766096104392" a="3.8566245946918567" b="0.0013924909782458217" c="-0.00042185136442837766" d="-0.0016071501323709247" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="110.84441939572758" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="110.84441939572758" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="46.830235054250807" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - <speed sOffset="16.444088772538226" max="80" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929383180527127" b="0.0088932641666206944" c="-0.028037811546998234" d="0.017766728543760674" /> - <width sOffset="0.90001442746846771" a="2.4911835966223537" b="0.0015989289013213261" c="0.0020706097420303297" d="-0.0019078761480924259" /> - <width sOffset="1.9035700407534775" a="2.4929452715875033" b="-9.5298628647044747e-06" c="7.376360188454602e-05" d="4.4340663498914372e-06" /> - <width sOffset="6.2100911529885376" a="2.4946264056101812" b="0.00087250338904064535" c="-9.1228613071532534e-05" d="2.9098617960448273e-07" /> - <width sOffset="10.511643629998559" a="2.4967146499339172" b="0.00010380671659681803" c="-8.7323403005443298e-05" d="5.5163094418179398e-07" /> - <width sOffset="10.947367014272032" a="2.4967433478078984" b="2.8023208680326775e-05" c="-0.00063276321418175669" d="9.7792098962484544e-05" /> - <width sOffset="14.810466403692887" a="2.4930463617655949" b="-0.00048261917402882097" c="0.00067454971242497316" d="-0.00019621511785276606" /> - <width sOffset="15.311779920565115" a="2.4929492221776233" b="4.5767053662200061e-05" c="0.00091301374865245324" d="-0.00017765989319965656" /> - <width sOffset="18.344968544942493" a="2.4965301971353506" b="0.00068091552656614207" c="-0.00024164142550052778" d="1.1644826690840958e-05" /> - <width sOffset="21.023287259997119" a="2.4968442451932242" b="-0.0003628712881195463" c="-0.00014480620776613606" d="1.1551431746015577e-05" /> - <width sOffset="31.420768135227089" a="2.4904009948913579" b="0.00037228214435205183" c="0.00019666483752850682" d="-1.7702666090079436e-05" /> - <width sOffset="31.534930889995678" a="2.490446032466032" b="0.00041649357987120616" c="0.00019596519228285366" d="-1.6559806270973914e-05" /> - <width sOffset="40.893186433253263" a="2.4979338408758949" b="-0.00026649354527060604" c="-0.00058165827505207463" d="5.6952220997480454e-05" /> - <width sOffset="42.046574519994238" a="2.4969400730518032" b="-0.0013809576796299655" c="-0.00037908310179039784" d="6.3819415357508038e-05" /> - <width sOffset="48.336262630766178" a="2.4891373072507834" b="0.0014245353766210822" c="-0.00013159489917856447" d="4.6371372396220234e-07" /> - <width sOffset="52.558218149992797" a="2.4928408624481389" b="0.0003381567188115321" c="-7.9618991071337867e-05" d="-1.8453174907257017e-05" /> - <width sOffset="52.924223445423429" a="2.4929530590881042" b="0.00027245881903974949" c="-0.00010999257804394973" d="-1.9071415054696481e-05" /> - <width sOffset="53.924701549996968" a="2.4930964516093264" b="-4.900479974477112e-06" c="6.1599262881657622e-05" d="-3.1106933056271909e-06" /> - <width sOffset="63.069861779991356" a="2.4958242248550775" b="0.0003412910205043123" c="-2.2606432026885763e-05" d="-2.9857227225121319e-06" /> - <width sOffset="73.432829129970429" a="2.4936105010244658" b="-0.0010891684868819494" c="0.00073630544414186156" d="-0.00015692141061190583" /> - <width sOffset="73.581505409989916" a="2.4934643275575024" b="-0.00088063225014439837" c="0.00065344012726867035" d="-0.00014951770975523462" /> - <width sOffset="74.683118611571544" a="2.493087309866576" b="1.4701902848157991e-05" c="0.00081829858356461836" d="-0.00016262650953164832" /> - <width sOffset="79.116112979693341" a="2.4950660654401569" b="-0.002317806900993832" c="0.00028688590455242782" d="-9.7118398673383285e-06" /> - <width sOffset="84.093149039988475" a="2.4894393454779999" b="-0.00018383660799278895" c="0.00014142501107033945" d="-8.7686917716579738e-06" /> - <width sOffset="94.12489294764309" a="2.4929751120785406" b="6.3071863949767975e-06" c="-0.00066751860564615993" d="3.2728935015181832e-05" /> - <width sOffset="94.604792669987035" a="2.4928280241521534" b="-0.00061176401185082804" c="-0.00055046135977981632" d="-5.0970555063615264e-06" /> - <width sOffset="95.698834590368946" a="2.4914931916768861" b="-0.001834522039290685" c="0.00083927154345856726" d="-8.8264848786025982e-05" /> - <width sOffset="101.59851945298493" a="2.4917571695940692" b="-0.001148160312584206" c="0.00043832827285426081" d="-3.6643412883324401e-05" /> - <width sOffset="105.11643629998559" a="2.4915473356733644" b="0.00057537658318563764" c="5.2580550615785268e-05" d="-3.3165586081618924e-05" /> - <width sOffset="108.10573817446655" a="2.4928512407789141" b="6.3922147423855108e-07" c="0.022063747940411049" d="-0.0056646374884986141" /> - <width sOffset="108.11684255265718" a="2.4928539607400744" b="0.0004885521520177988" c="-0.0014763771658710297" d="0.00047493422469591096" /> - <width sOffset="110.84441939572758" a="2.492840258668866" b="0.0030347572674109423" c="-0.0060915111607013246" d="0.0030491796538291245" /> - <width sOffset="111.84581782706539" a="2.4928326893987514" b="7.8390866049562156e-06" c="0.00015632900984576122" d="-1.4273620308587013e-05" /> - <width sOffset="115.62807992998415" a="2.4943263992838887" b="0.00057781955641433326" c="-9.2581708706128641e-06" d="-1.3085508859678635e-05" /> - <width sOffset="118.90991922273309" a="2.4956604625523982" b="9.424069033098486e-05" c="1.7197983165196626e-06" d="-3.2946062229450534e-06" /> - <width sOffset="126.13972355998271" a="2.4951866587369684" b="-0.00039751960016067272" c="-6.0902694143566785e-05" d="-2.9804168394092999e-06" /> - <width sOffset="126.75212242774208" a="2.494919693191445" b="-0.00047546634044815309" c="-0.00010273551395712505" d="8.4921968187189301e-06" /> - <width sOffset="134.56053860379978" a="2.4889861778972726" b="-0.00052652718927260513" c="0.00067653966114568451" d="-8.2587104814333212e-05" /> - <width sOffset="136.65136718998127" a="2.4900879744045712" b="0.0012194252505307156" c="0.00015908192609603405" d="-8.3262747799067816e-05" /> - <width sOffset="139.56994751719324" a="2.4929320646583371" b="2.0287995043524049e-05" c="0.00094080139937905154" d="-0.00020172147715357265" /> - <width sOffset="142.24795044972598" a="2.4958593121169175" b="0.00071916823239589252" c="-0.0012662538363859418" d="0.00017456285349075036" /> - <width sOffset="146.45539903720925" a="2.4894711042593913" b="-0.00066556611998963913" c="0.0021460624194565431" d="-0.00053015609507206843" /> - <width sOffset="147.16301081997983" a="2.4898868658964215" b="0.0015752215601492654" c="0.001018340920672193" d="-0.00052924289895791134" /> - <width sOffset="148.96044462124416" a="2.492934883654085" b="0.00010643884909045109" c="0.0014129339180035526" d="-0.00045414631153444646" /> - <width sOffset="151.62236512325282" a="2.4946639534191055" b="-0.0020253237079737967" c="0.00054183166313523964" d="-4.2260557806302618e-05" /> - <width sOffset="157.21766096104392" a="2.4928920311010359" b="6.8896804523472729e-05" c="-0.00074773582583797409" d="0.0015227095953262292" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276662427" type="poles" s="15.184363790335174" t="-7.6575617924377193" zOffset="-1.7905700390031654" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.1094299609968346" name="SgPoleSign01.flt" /> - <object id="276662647" type="poles" s="16.444088899724203" t="7.0444472029927612" zOffset="-1.4473383199703505" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.4526616800296495" name="SgPoleSign01.flt" /> - <object id="9100424" s="0" t="-6.4713874230884008" orientation="none" validLength="29.532050377696127" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="29.532050377696127" s="0" distance="0" tStart="-6.4713874230884008" tEnd="-6.883826414475239" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="277535880" s="29.532050377696127" t="-6.883826414475239" orientation="none" validLength="8.0155080401598831" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.0155080401598831" s="29.532050377696127" distance="0" tStart="-6.883826414475239" tEnd="-6.7919914944002722" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="545971336" s="37.54755841785601" t="-6.7919914944002722" orientation="none" validLength="16.625836867307882" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.625836867307882" s="37.54755841785601" distance="0" tStart="-6.7919914944002722" tEnd="-6.8984275270688151" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="814406792" s="54.173395285163892" t="-6.8984275270688151" orientation="none" validLength="52.352870381719157" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="52.352870381719157" s="54.173395285163892" distance="0" tStart="-6.8984275270688151" tEnd="-6.7532108880270654" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1082842248" s="106.52626566688305" t="-6.7532108880270654" orientation="none" validLength="2.9007980545930394" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.9007980545930394" s="106.52626566688305" distance="0" tStart="-6.7532108880270654" tEnd="-6.8977477780016878" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741974" s="109.42706372147609" t="-6.8977477780016878" orientation="none" validLength="6.2434651440682813" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.2434651440682813" s="109.42706372147609" distance="0" tStart="-6.8977477780016878" tEnd="-7.9505368180992013" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741975" s="115.67052886554437" t="-7.9505368180992013" orientation="none" validLength="3.4445358376636932" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.4445358376636932" s="115.67052886554437" distance="0" tStart="-7.9505368180992013" tEnd="-8.4498200246892932" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741976" s="119.11506470320806" t="-8.4498200246892932" orientation="none" validLength="3.9907305757244984" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.9907305757244984" s="119.11506470320806" distance="0" tStart="-8.4498200246892932" tEnd="-8.8838193286909828" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741977" s="123.10579527893256" t="-8.8838193286909828" orientation="none" validLength="2.9930478531264555" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.9930478531264555" s="123.10579527893256" distance="0" tStart="-8.8838193286909828" tEnd="-9.0247910565934113" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741978" s="126.09884313205902" t="-9.0247910565934113" orientation="none" validLength="31.575811317919374" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="31.575811317919374" s="126.09884313205902" distance="0" tStart="-9.0247910565934113" tEnd="-8.8112905698373911" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412768" s="44.716233454243067" t="-6.6378982288740049" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848224" s="89.055795633589725" t="-6.7602273395826105" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283680" s="136.85787922921725" t="-8.9027531380152851" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8226971" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.1094299609968346" s="15.184363790335174" t="-7.6575617924377193" orientation="+" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8227191" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.4526616800296495" s="16.444088899724203" t="7.0444472029927612" orientation="+" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - </signals> - </road> - <road name="" length="4.9999999999998659" id="4941863" junction="33556302"> - <link> - <predecessor elementType="road" elementId="4941552" contactPoint="end" /> - <successor elementType="road" elementId="33782184" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-479.67182255845836" y="-203.38377221301198" hdg="-0.093881892273964374" length="4.9999999999998659"> - <paramPoly3 aU="0" bU="5.0296210922123814" cU="-0.031122049781114179" dU="-0.0044221614702145027" aV="-0" bV="8.3266726846886741e-16" cV="-0.21037641589825687" dV="2.1215784233739844e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.87552809792845" b="0.0025841095075130834" c="-4.164810635480914e-05" d="-4.4214704067816695e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024121049484448639" b="6.0499344724807928e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.0714468186553945" b="0.0083388422465161451" c="-0.071744194388550273" d="0.021384137755936457" /> - <laneOffset s="2.4139661457797028" a="1.9743115474875708" b="0.035793760371916311" c="0.018526449567934963" d="-0.0015135440775600089" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.4139661457797028" color="standard" width="0.15449818811100205" weight="standard" type="solid"> - <type name="solid"> - <line length="2.5860338542201631" space="0" width="0.154498" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8570194670074196" b="-6.8440448918079266e-07" c="0.0066884817210566827" d="-0.13359632073854771" /> - <width sOffset="0.24609390931535846" a="3.8554332493925312" b="-0.020981361354209371" c="-0.052083213980172148" d="0.020878697666104864" /> - <width sOffset="2.4139661457797028" a="3.7778925238969876" b="0.047568100786922113" c="0.019112723189397128" d="-0.0020189841673914849" /> - <width sOffset="3.6271035007390395" a="3.8601227536091383" b="0.08502678712190917" c="0.013491249873365439" d="-0.0015243233609051451" /> - <roadMark sOffset="0" color="standard" width="0.28648685363082366" weight="bold" type="solid"> - <type name="solid"> - <line length="4.9999999999998659" space="0" width="0.28648699999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4929126843345846" b="0.0083395266510053259" c="-0.074729781157351766" d="0.15462947949544906" /> - <width sOffset="0.24609390931535846" a="2.4927437866426567" b="-0.00034745127387523123" c="-0.00042968866491374658" d="0.00015446109079650437" /> - <width sOffset="3.6271035007390395" a="2.4926269620900792" b="0.0020440245765048128" c="-0.00058942739802980281" d="-0.00034019971569069379" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5177002" s="0" t="-5.1257877475986025" orientation="none" validLength="4.9999999999998659" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.9999999999998659" s="0" distance="0" tStart="-5.1257877475986025" tEnd="-5.354405809044148" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412770" s="3.1275666822655928" t="-4.8949583996177441" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="98.952921398837859" id="4942035" junction="-1"> - <link> - <predecessor elementType="road" elementId="33782184" contactPoint="end" /> - <successor elementType="road" elementId="9100416" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-464.94182846747492" y="-309.77879248466343" hdg="3.7207251530860881" length="70.000308189289427"> - <paramPoly3 aU="0" bU="69.95014248227713" cU="0.10231717703808496" dU="-0.057459034833361095" aV="0" bV="-0" cV="-1.2231602177186944" dV="0.43314523521248016" /> - </geometry> - <geometry s="70.000308189289427" x="-523.95566023019489" y="-347.42572990027776" hdg="3.7043384318996679" length="28.952613209548428"> - <paramPoly3 aU="0" bU="30.619991438371002" cU="-9.0775499102706831" dU="6.0860634169293313" aV="0" bV="-1.7763568394002505e-15" cV="-1.6350729659485239" dV="-5.2599789995665089" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="161.85819553465288" b="-0.014760346905181188" c="0.00039540615942469231" d="-1.887797168589895e-06" /> - <elevation s="10.994769044315317" a="161.74119850666332" b="-0.006750166880297866" c="0.0004751218876785039" d="-1.2673577969339293e-05" /> - <elevation s="21.989538088630635" a="161.70757258603814" b="-0.00089859041264513887" c="0.00032168909293415549" d="-1.5167678175123488e-05" /> - <elevation s="32.984307132945951" a="161.71642076832475" b="0.00067457226231948505" c="2.6223104066718292e-05" d="-1.8877971685900445e-06" /> - <elevation s="43.97907617726127" a="161.72449843796375" b="0.00056658742973153889" c="-0.00082098348680767507" d="5.9573976383902542e-05" /> - <elevation s="54.973845221576589" a="161.71066328623689" b="0.0041183305913358049" c="0.00083015666473287397" d="-5.125187028945182e-05" /> - <elevation s="65.968614265891901" a="161.7881778571211" b="0.0037863534210478222" c="-0.00029230885414782654" d="1.303311426359632e-05" /> - <elevation s="76.96338331020722" a="161.81179453745102" b="0.0020851386942293258" c="5.762277751234857e-06" d="-8.815991861925281e-06" /> - <elevation s="87.958152354522539" a="161.8236993754594" b="-0.00098531358911348871" c="-0.00017563301908012939" d="-1.8877971685967041e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025301473183488004" b="-5.5162896506742159e-05" c="2.5085973286207956e-06" d="0" /> - <superelevation s="10.994769044315317" a="0.024998221530034455" b="0" c="4.1017324041314374e-05" d="-2.4870811368564313e-06" /> - <superelevation s="21.989538088630635" a="0.026651013868586409" b="0" c="-5.0194862526716846e-05" d="3.0435602193735553e-06" /> - <superelevation s="32.984307132945951" a="0.024628412780927363" b="0" c="0.0001172916904676783" d="-2.8071646857997745e-06" /> - <superelevation s="43.97907617726127" a="0.035076204105715367" b="0.0015611582378057792" c="0.00030868130583085331" d="-2.3021663222066376e-05" /> - <superelevation s="54.973845221576589" a="0.058957561313537035" b="0" c="-0.00058345977117343906" d="3.5378021967947168e-05" /> - <superelevation s="65.968614265891901" a="0.035447060270674964" b="0" c="7.3570265027702545e-05" d="-3.1549226299882087e-06" /> - <superelevation s="76.96338331020722" a="0.040147383625277311" b="0.00047362818653888641" c="5.2861223221896175e-05" d="-4.4263093964819745e-06" /> - <superelevation s="87.958152354522539" a="0.045861925318420864" b="3.079954638325338e-05" c="-1.4006454459895676e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.1850913072854632" b="0.00024878433295416391" c="-0.37924725613893678" d="1.040856313454898" /> - <laneOffset s="0.20774540142322198" a="2.1781076019348449" b="-0.022560658224274374" c="0.0042195162881283749" d="-0.00039463259793364808" /> - <laneOffset s="5.6011511741244524" a="2.1172565356839814" b="-0.011483727934698476" c="-0.000245812367185703" d="3.5507153480261436e-05" /> - <laneOffset s="11.458901833786207" a="2.048689983132185" b="-0.010708446312237154" c="-0.00022801477698183574" d="3.3717278567332547e-05" /> - <laneOffset s="21.989538088630635" a="1.9500123087317405" b="-0.0042935656594935779" c="0.00083229772076312233" d="3.7572126929410971e-05" /> - <laneOffset s="23.282170385849721" a="1.9459341423232519" b="-0.0019535182259122642" c="8.7202679995322823e-05" d="-1.6428343627500109e-06" /> - <laneOffset s="32.984307132945951" a="1.9336889950767226" b="-0.00072534075264645849" c="5.1250702067064016e-05" d="-2.7607244181066554e-06" /> - <laneOffset s="43.97907617726127" a="1.9282401948645598" b="-0.00059955155688284076" c="2.1208749534393764e-05" d="-4.470793365375848e-06" /> - <laneOffset s="55.741156191391518" a="1.9168473114915472" b="-0.0019561897339984515" c="-5.2846014373554344e-05" d="-3.8030729114982131e-06" /> - <laneOffset s="65.968614265891901" a="1.887244190040704" b="-0.0042305650595196127" c="-0.00021796371785792087" d="-9.018555131652895e-06" /> - <laneOffset s="71.680283548648362" a="1.8542894829483103" b="-0.0076030798669090563" c="-0.0041675760193614023" d="0.0012378664290178909" /> - <laneOffset s="73.618415412494301" a="1.8329108693341709" b="-0.0098081059214607108" c="-0.0020499954363225824" d="0.0011223758038572704" /> - <laneOffset s="76.039303851132644" a="1.8130765125273902" b="-0" c="0.00080725486500628706" d="-1.9370872830782868e-06" /> - <laneOffset s="82.973135372833838" a="1.8512419708418151" b="0.010915344497132618" c="0.0039512782490637791" d="-0.00016759802628706885" /> - <laneOffset s="87.958152354522539" a="1.9830839882665554" b="0.037815091723762705" c="0.0014656257201902318" d="-0.00016514727239417222" /> - <laneOffset s="93.186439255402149" a="2.1972529471895799" b="0.039597621127744599" c="0.0050353879452278514" d="-0.00077579834876846307" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929854178702251" b="-0.039766111979799235" c="0.39764966680610209" d="-1.0446830149972974" /> - <width sOffset="0.20774540142322198" a="2.4925194843066274" b="-0.0098060971384841891" c="0.011797955434879531" d="-0.0034320689444660947" /> - <width sOffset="1.9558408942448251" a="2.4930963722347266" b="-2.1730271794867181e-05" c="-0.00092145166406482786" d="0.00022059728166990241" /> - <width sOffset="5.6011511741244524" a="2.4914583611850385" b="0.0020543952763169403" c="-0.00042892758837120951" d="-0.000209542469743323" /> - <width sOffset="6.8499342872922488" a="2.4929468916764277" b="2.801381294910768e-06" c="4.9242390472785318e-05" d="-2.2429588955990336e-05" /> - <width sOffset="10.994769044315317" a="2.4922073302578309" b="-0.0007449932867411007" c="-0.00022579162368457266" d="-2.2855382825983889e-05" /> - <width sOffset="11.458901833786207" a="2.4918106294312912" b="-0.00096935834704324313" c="0.00034856314352765507" d="-2.106550790488486e-05" /> - <width sOffset="21.989538088630635" a="2.4956562975050574" b="-0.00063630924983659829" c="-0.00032199313401744679" d="-2.1119948265293134e-05" /> - <width sOffset="23.282170385849721" a="2.4942501497825118" b="-0.0015746145530222749" c="0.00048690175925314135" d="1.8095013026761323e-05" /> - <width sOffset="24.781593250498627" a="2.4930448230185513" b="7.5760748702109661e-06" c="-6.3877311503279495e-06" d="4.822481233710866e-07" /> - <width sOffset="32.984307132945951" a="2.4929433322751153" b="1.2610622783721433e-07" c="1.9316204826747661e-05" d="-1.1713638259017406e-06" /> - <width sOffset="43.97907617726127" a="2.4937228950869486" b="7.9768284765285163e-08" c="0.00010435425812751497" d="-7.6335105391247968e-06" /> - <width sOffset="53.770441252153276" a="2.4965625810609922" b="-0.00015187192910475064" c="0.00049339392575044956" d="-0.00018737237025246616" /> - <width sOffset="54.973845221576589" a="2.496767798926002" b="0.00022158510492940615" c="2.4649557812101767e-05" d="2.2700801944861304e-06" /> - <width sOffset="55.741156191391518" a="2.4969533619790356" b="0.00026342249610548452" c="-5.3827593843619357e-05" d="1.6023597403605876e-06" /> - <width sOffset="65.968614265891901" a="2.4957312963671532" b="-0.00033479161598616927" c="-5.3864749103091255e-05" d="-2.6263089918577571e-06" /> - <width sOffset="71.680283548648362" a="2.4915724713889666" b="-0.0012071424243286265" c="0.0036962127142522302" d="-0.0012495112931414627" /> - <width sOffset="73.618415412494301" a="2.4940203262487701" b="-0.00096047158691143185" c="0.0037545264133763334" d="-0.0011669727919118797" /> - <width sOffset="76.039303851132644" a="2.497142157725925" b="-0.0032997276521050077" c="0.0005733831137120631" d="-4.2659900772635876e-05" /> - <width sOffset="76.96338331020722" a="2.4945489095123685" b="-0.0023493093287050184" c="0.00059615059006708551" d="-3.3033734798401094e-05" /> - <width sOffset="82.798127775711762" a="2.494574982262642" b="0.0012336379014802161" c="0.00258959548738349" d="-0.00012326826245611909" /> - <width sOffset="82.973135372833838" a="2.4948695307882796" b="0.0021287094140720834" c="-0.00065944085450565662" d="4.2392676508063039e-05" /> - <width sOffset="87.958152354522539" a="2.4943454075132214" b="-0.0012855141212325116" c="1.272387559612953e-06" d="4.5419087565971855e-05" /> - <width sOffset="93.186439255402149" a="2.4941502267491575" b="0.0024523807777347972" c="-0.0054464097387016321" d="0.00065607016400071299" /> - <width sOffset="93.426094618757702" a="2.4944341705821698" b="-4.5098266361051631e-05" c="5.4224964900002198e-05" d="-5.9892617822154522e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16508719176748962" weight="standard" type="solid"> - <type name="solid"> - <line length="98.952921398837859" space="0" width="0.16508700000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="5.1428445157409222" b="7.7633273122762816e-10" c="-0.37761490627159955" d="1.0407945839702397" /> - <width sOffset="0.20774540142322198" a="5.1358790224929987" b="-0.022139207815400141" c="0.0058133941057556728" d="-0.0004563620825918615" /> - <width sOffset="5.6011511741244524" a="5.1139804379567817" b="0.00074366743610738452" c="0.00034926897373712703" d="-2.6222331177946233e-05" /> - <width sOffset="10.994769044315317" a="5.1240376690702796" b="0.0022228037369488498" c="-6.840312265766796e-05" d="-2.7390421943937621e-05" /> - <width sOffset="11.458901833786207" a="5.1250518712397568" b="0.0021416062005456468" c="-0.00071272006643473371" d="-2.9180296847391003e-05" /> - <width sOffset="15.213305740750318" a="5.1215019130347086" b="-0.0044440086890260517" c="-0.00026484952753715561" d="4.5246764809106942e-05" /> - <width sOffset="21.989538088630635" a="5.0933054665950896" b="-0.0018005413685891719" c="0.00065193833430804763" d="4.993132524810935e-05" /> - <width sOffset="23.282170385849721" a="5.0921751958201602" b="0.00013518221765715897" c="-4.5229009716317564e-05" d="1.0716363955949428e-05" /> - <width sOffset="32.984307132945951" a="5.0990162805057704" b="0.0022837870167654005" c="0.00029991910868713454" d="6.2670230294593069e-06" /> - <width sOffset="38.468445826339853" a="5.1215948666537514" b="0.0061388397596254772" c="0.0030582339878661683" d="-0.00016074081458059602" /> - <width sOffset="43.97907617726127" a="5.2213946578905341" b="0.025200762278916121" c="0.00067032068518080919" d="-0.00016375696318497609" /> - <width sOffset="52.809850324102598" a="5.3834395725828319" b="-0.0012709040997063454" c="-0.0040491470579287871" d="0.00015423699826230122" /> - <width sOffset="54.973845221576589" a="5.3632906912780847" b="-0.016628753996394251" c="-0.0029158404865174434" d="0.00023618971235358699" /> - <width sOffset="55.741156191391518" a="5.3489212204680063" b="-0.020686285274767013" c="-0.0022884448908131933" d="0.00023685743280824257" /> - <width sOffset="64.798403891573784" a="5.1498157677372154" b="-0.003849409454814697" c="0.00088797322771839559" d="2.2510931215737984e-05" /> - <width sOffset="65.968614265891901" a="5.1465632058285049" b="-0.0016786995994467918" c="0.00074844942556189062" d="-9.3087187161724688e-05" /> - <width sOffset="71.680283548648362" a="5.1440466285520019" b="-0.0022393046886061635" c="-0.0046416795456296249" d="0.0011537977971196125" /> - <width sOffset="71.84795831852783" a="5.1435460928023629" b="-0.0036985733065220431" c="-0.0041481213766557043" d="0.0013335037850028262" /> - <width sOffset="73.618415412494301" a="5.1313958845238492" b="-0.005847039004443404" c="-0.0021452521934431442" d="0.0012180131598421671" /> - <width sOffset="76.039303851132644" a="5.1219494701119919" b="0.0051813607484549849" c="0.0014065802161004563" d="9.3700268702298422e-05" /> - <width sOffset="76.96338331020722" a="5.1280125083170311" b="0.0080209829194927713" c="0.0018186543833397205" d="6.3069209630616619e-05" /> - <width sOffset="79.022315912430088" a="5.1527873003403872" b="0.016312046158711079" c="0.007021021981601084" d="-0.00054859333357452542" /> - <width sOffset="82.973135372833838" a="5.2929934169015382" b="0.046100688798721916" c="0.0037031600218476639" d="-0.00071425427257850935" /> - <width sOffset="87.456253171148447" a="5.5097389931857723" b="0.036238107227841862" c="-0.010638748302773407" d="0.000791219938409727" /> - <width sOffset="87.958152354522539" a="5.5253469730102918" b="0.026156880587884561" c="-0.0094266258873549284" d="0.00079367069230944795" /> - <width sOffset="92.7240697246433" a="5.5218095734907529" b="-0.0096139265035286303" c="-0.0069929714141761974" d="0.00045523430614003362" /> - <width sOffset="93.186439255402149" a="5.5159143893072997" b="-0.015788632731710411" c="-0.00020143780867230236" d="-0.0001554167702379199" /> - <roadMark sOffset="0" color="standard" width="0.29716791476625065" weight="bold" type="solid"> - <type name="solid"> - <line length="98.952921398837859" space="0" width="0.29716799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="60" unit="km/h" /> - <speed sOffset="11.154114403102588" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929854178702353" b="0.00024878355662143268" c="-3.3660351574111647e-05" d="1.1342951793816627e-06" /> - <width sOffset="10.994769044315317" a="2.4931592998898391" b="-8.0034390721952717e-05" c="9.7332108079046576e-06" d="-3.3826932258168812e-07" /> - <width sOffset="14.518706351323157" a="2.4929833291207864" b="-2.4037962829697238e-05" c="0.00054946893504270798" d="7.5638001093403427e-05" /> - <width sOffset="15.213305740750318" a="2.4932570816888928" b="0.00084876242684052763" c="-6.9451137189750008e-05" d="1.2109394372985405e-06" /> - <width sOffset="21.989538088630635" a="2.4961962621964298" b="7.4337640480863498e-05" c="-4.4115861421382204e-05" d="1.7024758231720217e-06" /> - <width sOffset="32.984307132945951" a="2.4939434079779987" b="-0.00027833867898078039" c="2.8847412083723241e-05" d="-1.1725266045763836e-06" /> - <width sOffset="38.234650374916676" a="2.4931075435975933" b="-7.2387020346749605e-05" c="0.0026892896330955873" d="-0.00016914602195716621" /> - <width sOffset="38.468445826339853" a="2.4932354556816057" b="0.0011573636236512459" c="-8.4554287294676036e-05" d="-2.1381843730890334e-06" /> - <width sOffset="43.97907617726127" a="2.4966877876580824" b="3.0677744730697037e-05" c="1.2393924614348384e-05" d="-2.036891804523016e-06" /> - <width sOffset="52.809850324102598" a="2.496522507638756" b="-0.0002269525427509092" c="0.00033959740268941444" d="-0.00032003085324334253" /> - <width sOffset="53.309871732927718" a="2.4964539241343138" b="-0.00012738429413558299" c="0.00029419192105724183" d="-9.7745886145413985e-05" /> - <width sOffset="54.973845221576589" a="2.4966061838551497" b="3.9752112888032792e-05" c="-0.00011379580179062421" d="8.8771230676228682e-06" /> - <width sOffset="64.060331278173749" a="2.4942317121069526" b="0.00017054264198241523" c="-0.0017941513552288614" d="-0.0002630959942411893" /> - <width sOffset="64.798403891573784" a="2.493274436952452" b="-0.0029078508792362338" c="0.00088270799782211458" d="-4.8749492649098847e-05" /> - <width sOffset="65.968614265891901" a="2.4910022932941813" b="-0.001042214308675732" c="0.00059193977250389786" d="-5.5242694019451918e-05" /> - <width sOffset="71.84795831852783" a="2.4941092114186123" b="0.00018955019832440478" c="-0.00029560246976400044" d="-0.00023494868200119154" /> - <width sOffset="72.108644499212232" a="2.494134373955383" b="-1.2468182836599881e-05" c="-0.00049560620662248507" d="7.5503316585740979e-05" /> - <width sOffset="76.96338331020722" a="2.4910321580440375" b="0.00051395168644151942" c="0.0006280257409878756" d="0.00010188218596112309" /> - <width sOffset="79.022315912430088" a="2.4956419304028219" b="0.0043957749786193382" c="-0.0035554704387754815" d="0.00071354472916625319" /> - <width sOffset="81.484817130524249" a="2.4955614000029418" b="-0.00013430772369839999" c="0.0004498198978205646" d="-7.2761735618068592e-05" /> - <width sOffset="87.456253171148447" a="2.4953059511443962" b="-0.0025457906926583396" c="0.0038819939453403444" d="-0.0015782359466069355" /> - <width sOffset="88.003231681970888" a="2.4948166193976031" b="0.00028438795060470659" c="0.00024615392461763141" d="-6.4833368701537218e-05" /> - <width sOffset="92.7240697246433" a="2.4948239087998885" b="-0.0017261964406903793" c="0.00027425357242238501" d="4.8748272589893733e-07" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276670346" type="poles" s="11.666448561344758" t="4.4103634711383162" zOffset="-1.5513163539876529" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.348683646012347" name="SgPoleSign01.flt" /> - <object id="276670390" type="poles" s="11.154114403102588" t="-7.8426782133530848" zOffset="-1.9427804512813451" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.9572195487186548" name="SgPoleSign01.flt" /> - <object id="276670402" type="poles" s="76.660968185179826" t="3.2098140835107198" zOffset="-2.6781136576589346" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.2218863423410653" name="SgPoleSign01.flt" /> - <object id="276670414" type="poles" s="90.180928724401767" t="3.3478020611373145" zOffset="-2.5841268658450018" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.3158731341549981" name="SgPoleSign01.flt" /> - <object id="5177126" s="0" t="2.8305986075583585" orientation="none" validLength="12.677009374884305" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="12.677009374884305" s="0" distance="0" tStart="2.8305986075583585" tEnd="2.6649913687696456" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273612582" s="12.677009374884305" t="2.6649913687696456" orientation="none" validLength="43.054687133453399" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="43.054687133453399" s="12.677009374884305" distance="0" tStart="2.6649913687696456" tEnd="2.5003283776649647" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542048038" s="55.731696508337706" t="2.5003283776649647" orientation="none" validLength="16.752248790938282" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="16.752248790938282" s="55.731696508337706" distance="0" tStart="2.5003283776649647" tEnd="2.5427158466311246" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810483494" s="72.483945299275987" t="2.5427158466311246" orientation="none" validLength="15.042622507920939" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="15.042622507920939" s="72.483945299275987" distance="0" tStart="2.5427158466311246" tEnd="2.8325372854696038" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078918950" s="87.526567807196926" t="2.8325372854696038" orientation="none" validLength="11.426353591640932" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="11.426353591640932" s="87.526567807196926" distance="0" tStart="2.8325372854696038" tEnd="3.2045773910562203" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5177130" s="0" t="-6.4538264341808862" orientation="none" validLength="19.040884752938528" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.040884752938528" s="0" distance="0" tStart="-6.4538264341808862" tEnd="-6.6180142911470918" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273612586" s="19.040884752938528" t="-6.6180142911470918" orientation="none" validLength="47.780628169511758" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="47.780628169511758" s="19.040884752938528" distance="0" tStart="-6.6180142911470918" tEnd="-6.6784443154019977" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542048042" s="66.821512922450282" t="-6.6784443154019977" orientation="none" validLength="19.707190230959696" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.707190230959696" s="66.821512922450282" distance="0" tStart="-6.6784443154019977" tEnd="-6.9311298566028308" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810483498" s="86.528703153409978" t="-6.9311298566028308" orientation="none" validLength="4.7351922483724564" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.7351922483724564" s="86.528703153409978" distance="0" tStart="-6.9311298566028308" tEnd="-6.7549494057856965" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078918954" s="91.263895401782435" t="-6.7549494057856965" orientation="none" validLength="7.689025997055424" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.689025997055424" s="91.263895401782435" distance="0" tStart="-6.7549494057856965" tEnd="-6.6023439401846753" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412771" s="12.025822209286829" t="-6.7246300249686355" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848227" s="36.16997065837473" t="-6.6920059484036543" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283683" s="60.139541320437175" t="-6.7853222241048705" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719139" s="85.30359036787128" t="-6.7482408700068621" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412808" s="10.728368134342617" t="2.7954596930697022" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848264" s="35.570708830279081" t="2.7255149083519159" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283720" s="60.533725500286444" t="2.7104451036278729" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719176" s="84.628471447167627" t="2.9245627127401992" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8234890" type="274" subtype="54" value="40" unit="km/h" country="DEU" zOffset="2.348683646012347" s="11.666448561344758" t="4.4103634711383162" orientation="+" name="Sg274Hoechstgeschw40_03.flt" height="0.76000000000000001" /> - <signal dynamic="no" id="8234934" type="274" subtype="54" value="40" unit="km/h" country="DEU" zOffset="1.9572195487186548" s="11.154114403102588" t="-7.8426782133530848" orientation="+" name="Sg274Hoechstgeschw40_03.flt" height="0.76000000000000001" /> - <signal dynamic="no" id="8234946" type="625" subtype="20" country="DEU" zOffset="1.2218863423410653" s="76.660968185179826" t="3.2098140835107198" orientation="+" name="Sg625RichtungKurveRechts01.flt" height="0.5" /> - <signal dynamic="no" id="8234958" type="625" subtype="20" country="DEU" zOffset="1.3158731341549981" s="90.180928724401767" t="3.3478020611373145" orientation="+" name="Sg625RichtungKurveRechts01.flt" height="0.5" /> - </signals> - </road> - <road name="" length="73.839786092422898" id="4942083" junction="-1"> - <link> - <predecessor elementType="road" elementId="9100416" contactPoint="end" /> - <successor elementType="junction" elementId="33556490" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-590.74644700625288" y="-296.99517592974007" hdg="1.2773670281122376" length="73.839786092422898"> - <paramPoly3 aU="0" bU="73.832595381761337" cU="0.021604496547238505" dU="-0.019924453624701473" aV="-0" bV="-0" cV="-0.53503951138938788" dV="-0.21657485393604625" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.60245734539996" b="-0.04910965258786032" c="-1.9474738139657636e-05" d="8.8413228402836902e-06" /> - <elevation s="10.548540870346129" a="158.09263272051163" b="-0.046569145277788181" c="-0.0003149953300237556" d="4.716854020442013e-05" /> - <elevation s="21.097081740692257" a="157.6217103913184" b="-0.037469054487150877" c="0.00061313383106225197" d="8.8413228403408717e-06" /> - <elevation s="31.645622611038384" a="157.30506853134901" b="-0.021582352482744586" c="0.002312253190931454" d="-6.3379099696349637e-05" /> - <elevation s="32.000006190504294" a="157.29770766986786" b="-0.019967382268039839" c="0.0018116279109364935" d="-7.5165868086676411e-05" /> - <elevation s="42.194163481384514" a="157.20279330922926" b="-0.0064652436149090914" c="0.00068189616478075293" d="-4.1548530392786043e-05" /> - <elevation s="52.742704351730644" a="157.16170241486458" b="-0.0059487531223196598" c="0.00020217655847049832" d="-2.9454453888326487e-06" /> - <elevation s="63.291245222076768" a="157.11799105273897" b="-0.0026666520173016443" c="8.4148099017599385e-05" d="-2.1611977043605369e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.036925129726173109" b="-0.00017075571636331353" c="-5.0484822920653441e-06" d="0" /> - <superelevation s="10.548540870346129" a="0.034562152793041978" b="-0.00027726395994545248" c="-2.7741672310909819e-05" d="2.1513108113975473e-06" /> - <superelevation s="21.097081740692257" a="0.031075669299455874" b="-0.00014439216113527924" c="1.6578389007415188e-05" d="-9.2280175522684516e-07" /> - <superelevation s="31.645622611038384" a="0.030314105992909325" b="-0.00010268173344157543" c="-3.3269977803691159e-06" d="4.1423997184057417e-08" /> - <superelevation s="42.194163481384514" a="0.028909384375762983" b="-0.0001590437200016087" c="-2.2436536386300742e-05" d="1.8944292207017043e-06" /> - <superelevation s="52.742704351730644" a="0.026958747631691614" b="0" c="2.6881128264566004e-05" d="-1.6729685202349191e-06" /> - <superelevation s="63.291245222076768" a="0.027986202987191046" b="8.6511336596896418e-06" c="-4.1006304881516222e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.7299814530146091" b="9.8755579703548849e-05" c="0.0087967458619898423" d="-0.0062925088724895195" /> - <laneOffset s="0.93756054830477209" a="1.7326206837807814" b="-0" c="-0.00025500992060653783" d="1.4450067281742044e-05" /> - <laneOffset s="7.3213678375562381" a="1.7259875845844148" b="-0.001489217799003162" c="8.6887160621308798e-05" d="-1.7333515923331453e-05" /> - <laneOffset s="10.548540870346129" a="1.7215039429513819" b="-0.0014699852812731478" c="-0.00010738709705790125" d="-1.8873878420233393e-05" /> - <laneOffset s="15.874411035342758" a="1.7077777345700522" b="-0.0042199113803959879" c="-0.00062921636580063256" d="4.1381073004298322e-05" /> - <laneOffset s="19.763769302068813" a="1.6842814083415958" b="-0.0072364792805897794" c="-0.00077005571766860365" d="9.7436382992042682e-05" /> - <laneOffset s="21.097081740692257" a="1.6734949249262459" b="-0.0087702845920125585" c="-0.00040717793436785825" d="8.6675769954235263e-05" /> - <laneOffset s="24.825505665730038" a="1.6396276963437195" b="-0.008191871167294109" c="0.00017968976345581104" d="-3.269160171202878e-06" /> - <laneOffset s="31.645622611038384" a="1.5910791871881222" b="-0.0061970458670282755" c="0.00010971443054244015" d="-3.2772487234605178e-06" /> - <laneOffset s="41.842559658186374" a="1.5358214251387787" b="-0.0049818242188537807" c="-0.00024726384871447517" d="2.7656506121761296e-05" /> - <laneOffset s="53.124873981668806" a="1.4878589647313114" b="-0" c="3.7412306631961711e-05" d="-6.6452090887629601e-07" /> - <laneOffset s="56.276916677583579" a="1.4882098593428639" b="0.00021604358611345369" c="0.0014185313643696761" d="-0.00014262128172475412" /> - <laneOffset s="61.303896795023405" a="1.5070251285748812" b="0.0036655557646157466" c="-0.00021719313623170042" d="2.2073870758019746e-05" /> - <laneOffset s="63.291245222076768" a="1.5136253099781312" b="0.0030638247077486944" c="-8.2051989047641317e-05" d="2.3214108135815743e-05" /> - <laneOffset s="70.187493625812365" a="1.5384655690252005" b="0.0052441894315796459" c="0.00048124654385023655" d="-0.00010422468570174588" /> - <laneOffset s="72.962348179048618" a="1.5544960910978001" b="0.0055074344905680171" c="4.4885701065472671e-05" d="-0.00016184511922510698" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4938874712288639" b="0.0027870485157240545" c="-0.0095694213140751182" d="0.0063340105919621505" /> - <width sOffset="0.93756054830477209" a="2.4933088625146755" b="0.0015463865515678811" c="-0.00040093440688561741" d="2.7051652190884857e-05" /> - <width sOffset="7.3213678375562381" a="2.4938791562525493" b="-0.00026528184628901849" c="5.1985449745094978e-05" d="5.8835235394302739e-05" /> - <width sOffset="8.3209652735718151" a="2.4937246890115601" b="1.5010823370235904e-05" c="-0.00012960260227259105" d="2.0290711613132248e-05" /> - <width sOffset="10.548540870346129" a="2.4933393086946429" b="-0.00026033516825498372" c="-3.2869226534843428e-05" d="6.8536478684616274e-06" /> - <width sOffset="15.874411035342758" a="2.4920558303716982" b="-2.7240668509897169e-05" c="0.00029690548039170171" d="-5.3401303556068519e-05" /> - <width sOffset="19.763769302068813" a="2.4932993509491235" b="-0.0001411189142708864" c="0.00029749188306753017" d="-0.00010945661354423231" /> - <width sOffset="21.097081740692257" a="2.4933806127121985" b="6.8430032697238546e-05" c="-0.00011346606901257517" d="-9.8696000560926798e-05" /> - <width sOffset="21.26304309967766" a="2.4933883930883676" b="2.2612863734934249e-05" c="0.00052656340927445533" d="-8.9189506557941755e-05" /> - <width sOffset="24.825505665730038" a="2.4961192302077686" b="0.00037858831389390307" c="-4.4015080486001874e-05" d="7.554235674949646e-07" /> - <width sOffset="31.645622611038384" a="2.4968935732305013" b="-0.00011637437419075459" c="-3.2617679909309182e-05" d="8.8433824838864793e-07" /> - <width sOffset="41.842559658186374" a="2.4932530270726447" b="-0.00050572132413762624" c="0.00025115952690303529" d="-3.0049416562578227e-05" /> - <width sOffset="42.194163481384514" a="2.4931049570192352" b="-0.00034024862411851601" c="0.00019458714988506202" d="-2.6619405253316704e-05" /> - <width sOffset="45.840414991535262" a="2.4931609491390931" b="1.7051790857578776e-05" c="0.00030030529469117847" d="-3.1669669821804689e-05" /> - <width sOffset="52.742704351730644" a="2.4971715391408571" b="-0.00036374120288829254" c="-0.00036050344512132936" d="-3.2639131346203862e-05" /> - <width sOffset="53.124873981668806" a="2.4969780536377075" b="-0.00065358932976789603" c="0.00025348753075848994" d="-4.3181043045817547e-06" /> - <width sOffset="56.276916677583579" a="2.4973011765082593" b="0.0008157117771077874" c="-0.0011747478692109203" d="0.00013763865651129638" /> - <width sOffset="61.303896795023405" a="2.4892000938416663" b="-0.00056055156151860273" c="0.0003858339577486094" d="-2.7056495971372478e-05" /> - <width sOffset="63.291245222076768" a="2.4893975843296747" b="0.00065243819950803377" c="0.0002241564488150903" d="-2.8014002624013562e-05" /> - <width sOffset="70.187493625812365" a="2.4953695977593329" b="-0.00025277484824824843" c="-0.00043844587818974302" d="9.942479121354618e-05" /> - <width sOffset="72.962348179048618" a="2.4934165285542793" b="-0.00038936360219185215" c="-4.2042062632690336e-05" d="0.0001570452247362631" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15287265664435828" weight="standard" type="solid"> - <type name="solid"> - <line length="73.839786092422898" space="0" width="0.15287300000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.6849096579350133" b="-4.1346115218349449e-10" c="0.0041808612721060071" d="-0.0047112040901426955" /> - <width sOffset="0.93756054830477209" a="3.6847020525734933" b="-0.0045841040132536511" c="-0.00042318757416871778" d="0.0015957548496287842" /> - <width sOffset="1.9566628203426595" a="3.6812798325358824" b="-0.00047474018407252911" c="1.0893438266320634e-05" d="1.5210142504027723e-05" /> - <width sOffset="7.3213678375562381" a="3.6813948985462579" b="0.00095538641982305297" c="0.000320844968376133" d="-1.6573440701136674e-05" /> - <width sOffset="8.3592761834021481" a="3.6827136029162935" b="0.0015678403579627634" c="0.0013997594773024538" d="-0.00018351698856572775" /> - <width sOffset="10.548540870346129" a="3.6909292772428905" b="0.0050580037050862369" c="9.9499160437000874e-05" d="-0.00017283229202525496" /> - <width sOffset="12.012613029482363" a="3.6980054459970475" b="0.004237949774156034" c="-0.00012037506595846597" d="-1.251864996560189e-05" /> - <width sOffset="15.874411035342758" a="3.7118553555014158" b="0.0027481313429993928" c="-0.0004856783491925809" d="4.7736301458928897e-05" /> - <width sOffset="19.730797614262251" a="3.717968070146723" b="0.0011319667696563541" c="0.00059639395637858404" d="-6.2456830262815462e-05" /> - <width sOffset="19.763769302068813" a="3.7180060391219918" b="0.001171091303851346" c="-3.3460771385002337e-05" d="-6.4015119769858259e-06" /> - <width sOffset="21.097081740692257" a="3.7194928125318256" b="0.0010477236513066271" c="-0.00011796110645517847" d="-2.9674250360566372e-05" /> - <width sOffset="24.825505665730038" a="3.7202213785707925" b="-0.0010694125397069819" c="-0.00083250000691325341" d="-0.00011961918023227219" /> - <width sOffset="24.930097541737997" a="3.7201002827403555" b="-0.0012474837226116881" c="-0.00063838041969489431" d="6.5494354349126437e-05" /> - <width sOffset="30.343164414875016" a="3.7050302484858628" b="-0.0024014677326367464" c="0.00023215411979373994" d="-2.4026686140952445e-05" /> - <width sOffset="31.645622611038384" a="3.7022431761469798" b="-0.0019190020807361022" c="0.00011822012028322468" d="-3.0198959381623259e-05" /> - <width sOffset="37.381204637019415" a="3.6894276314378023" b="-0.0035432362339788857" c="-0.021005950300630339" d="0.0037645511636690771" /> - <width sOffset="41.066097522157818" a="3.5795028636542066" b="-0.0050024435173267046" c="0.0019269440050661514" d="-0.00025247701546028212" /> - <width sOffset="41.842559658186374" a="3.5766622070580545" b="-0.0024666956166580524" c="0.0010821028944147254" d="-0.00022154326063171547" /> - <width sOffset="42.194163481384514" a="3.5759190528425" b="-0.0017879176090576489" c="0.00081363339607639534" d="-0.00023432186592892246" /> - <width sOffset="45.95542702894604" a="3.5682362821582219" b="-0.0056122653922790998" c="8.8828358397044109e-05" d="2.8067615073336722e-05" /> - <width sOffset="52.742704351730644" a="3.5430122610920218" b="-0.00052747627898467795" c="0.00065979357213410939" d="2.6852075129599814e-05" /> - <width sOffset="53.124873981668806" a="3.5429085397305959" b="-1.1404619570899691e-05" c="3.9167684858706251e-05" d="-1.4689519044472216e-06" /> - <width sOffset="55.761512641213052" a="3.5431238330352937" b="0.00016450158560148067" c="-0.0011357847647145657" d="0.00015790513127283913" /> - <width sOffset="56.276916677583579" a="3.5429285256550505" b="-0.00088043613590885303" c="0.00049577291391974675" d="1.5948370457828209e-05" /> - <width sOffset="59.539647438514706" a="3.5458875430849304" b="0.0028640418610889188" c="0.00022777699156429767" d="-0.00015722797117341419" /> - <width sOffset="61.303896795023405" a="3.5507860048789599" b="0.0021996007520074618" c="-8.9252507278076945e-05" d="7.4671813093864276e-06" /> - <width sOffset="63.291245222076768" a="3.5548634813445306" b="0.0019333251943951207" c="-3.7319364753893579e-05" d="9.2687170421962589e-06" /> - <width sOffset="70.187493625812365" a="3.5694612218610757" b="0.0027410096408168536" c="0.00023746652493742969" d="-0.00011817007679552631" /> - <width sOffset="71.679016524931072" a="3.5736856777619472" b="0.0026607253232992711" c="-0.0014405157201381644" d="-5.3066899959060524e-05" /> - <width sOffset="72.962348179048618" a="3.5746156670090885" b="-0.0012987875425768949" c="-0.0012135588293965883" d="-0.00011068733348181239" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="37.381204637019415" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="37.381204637019415" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="36.458581455403483" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4938874712288559" b="-0.0018556588642581547" c="0.0048202434740744309" d="-0.0015724597134233968" /> - <width sOffset="1.9566628203426595" a="2.4969314987244111" b="-0.0010531011769615696" c="3.4554267029079548e-05" d="8.0849937011345719e-06" /> - <width sOffset="8.3592761834021481" a="2.4937274279296355" b="0.00038366959286661529" c="-0.00092780660994174662" d="0.00016786261890580249" /> - <width sOffset="10.548540870346129" a="2.4918818793581794" b="-0.0012651228010664524" c="0.00017259638999919045" d="0.00013925722329669491" /> - <width sOffset="12.012613029482363" a="2.4908366337963335" b="0.00013576095644122436" c="0.0002450016462949414" d="-2.105641876296141e-05" /> - <width sOffset="19.730797614262251" a="2.4967980836255466" b="0.00015468063855205404" c="-0.00077235374231114521" d="8.9136704660325636e-05" /> - <width sOffset="21.097081740692257" a="2.4957949856202619" b="-0.0014566455767714495" c="-0.00039248955923508054" d="0.00010107831565281832" /> - <width sOffset="24.930097541737997" a="2.490137375255526" b="-1.0352028551453667e-05" c="0.00053816161320754984" d="-8.4035219182302575e-05" /> - <width sOffset="29.182594085423215" a="2.4933629296973496" b="7.698922226474867e-06" c="0.00050167104197507606" d="-0.0001427147458352425" /> - <width sOffset="30.343164414875016" a="2.4938244857380494" b="0.00059547044471515952" c="0.00019782096342700094" d="-5.3193705344495963e-05" /> - <width sOffset="31.645622611038384" a="2.4948181132769389" b="0.00084006453230366183" c="-1.6613791521793324e-05" d="-4.9114065406950883e-05" /> - <width sOffset="36.347011616350095" a="2.4932966759573061" b="-0.0025728644555577575" c="-0.72967377817024459" d="1.4590153831496886" /> - <width sOffset="36.597171519225157" a="2.4698309674131287" b="-0.093727660021930892" c="-0.012493090249787179" d="0.002052862636780567" /> - <width sOffset="37.381204637019415" a="2.3896551562282804" b="-0.10953192019593466" c="0.012939991225783487" d="-0.0017418874862707178" /> - <width sOffset="40.132216896509988" a="2.1499964057280487" b="-0.077883942390917255" c="-0.018265842875538743" d="0.0012755251127670075" /> - <width sOffset="41.066097522157818" a="2.0623707306734933" b="-0.10866289321872494" c="0.0039907307860113416" d="0.0052925532918988447" /> - <width sOffset="41.816610989956111" a="1.9853030115853771" b="-0.093729281949408855" c="-0.0012442584615282495" d="0.00034024185714893204" /> - <width sOffset="42.194163481384514" a="1.9497562350681434" b="-0.094523327484984071" c="-0.00082409785294450342" d="0.00035302046245131645" /> - <width sOffset="45.95542702894604" a="1.601355057797555" b="-0.085739974880349457" c="0.0012400772974739411" d="9.0630981449065577e-05" /> - <width sOffset="50.208578727528661" a="1.2660949010932705" b="-0.070273148284897141" c="-0.0011977116737569495" d="0.00015914670525305285" /> - <width sOffset="52.742704351730644" a="1.0829123537714147" b="-0.073277430530488283" c="8.4212724007573389e-06" d="0.00015751372577739187" /> - <width sOffset="55.761512641213052" a="0.86611194617513787" b="-0.068920222210832938" c="0.0025982656590861535" d="-1.8603574006944201e-06" /> - <width sOffset="57.76307728176284" a="0.73855807896747105" b="-0.058541388102827739" c="0.0016835216204761669" d="-0.00015127130597730493" /> - <width sOffset="59.539647438514706" a="0.639020518930975" b="-0.05399192774287688" c="0.0013013909961529762" d="2.1905035653775093e-05" /> - <width sOffset="63.291245222076768" a="0.4559375572802713" b="-0.043302430241155807" c="0.0015487609482331003" d="2.1560259691826434e-05" /> - <width sOffset="65.794842751046431" a="0.35757166993295053" b="-0.035142062914017107" c="0.0024990175343403641" d="-9.1941463352447522e-05" /> - <width sOffset="71.679016524931072" a="0.21858310270573655" b="-0.015282762087255508" c="0.0020252410106502529" d="-0.00015704464018851039" /> - <width sOffset="72.679853002324734" a="0.20515874843502235" b="-0.01170081436527496" c="0.0085808393902489875" d="-0.0086325111714999469" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5177063" s="36.849557228629919" t="2.633631116700291" orientation="none" validLength="20.032921435178309" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="20.032921435178309" s="36.849557228629919" distance="0" tStart="2.633631116700291" tEnd="2.5801717036914966" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273612519" s="56.882478663808229" t="2.5801717036914966" orientation="none" validLength="16.957307428614669" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.957307428614669" s="56.882478663808229" distance="0" tStart="2.5801717036914966" tEnd="2.7052241521545559" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5177068" s="14.291793915652589" t="2.5513995908086939" orientation="none" validLength="22.557763312977329" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="22.557763312977329" s="14.291793915652589" distance="0" tStart="2.5513995908086939" tEnd="2.5036311167002911" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5177134" s="0" t="2.7003353570552009" orientation="none" validLength="14.291793915652589" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="14.291793915652589" s="0" distance="0" tStart="2.7003353570552009" tEnd="2.5513995908086939" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5177138" s="0" t="-5.4121255401131494" orientation="none" validLength="34.584020986387955" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="34.584020986387955" s="0" distance="0" tStart="-5.4121255401131494" tEnd="-5.71310848854315" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412809" s="16.316509412673657" t="2.8336381441489698" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848265" s="70.811025060935776" t="2.9797674392279165" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412880" s="24.400922829403662" t="-5.7267529887209099" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="84.611153326026511" id="9100416" junction="-1"> - <link> - <predecessor elementType="road" elementId="4942035" contactPoint="end" /> - <successor elementType="road" elementId="4942083" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-551.002250435272" y="-356.33403980638832" hdg="3.149301039857566" length="67.997936852192623"> - <paramPoly3 aU="0" bU="68.037136542330927" cU="-2.3710459501827148" dU="-22.766958100781672" aV="0" bV="-0" cV="-60.275021313847596" dV="16.809568806657527" /> - </geometry> - <geometry s="67.997936852192623" x="-594.23515359566386" y="-313.20055844340538" hdg="1.5072375044644302" length="16.613216473833891"> - <paramPoly3 aU="0" bU="16.072187416956467" cU="1.1876604737391114" dU="-0.86559817577871856" aV="-0" bV="-6.6613381477509392e-16" cV="-3.6479078078265075" dV="1.1955472376497611" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="161.78912561690734" b="-0.005862400943285934" c="-0.00058392365243638722" d="2.225528168163135e-06" /> - <elevation s="10.576394165753314" a="161.66443775812263" b="-0.017467170864238862" c="-0.00052294261612277756" d="3.1363445518779008e-06" /> - <elevation s="21.152788331506628" a="161.42491218969553" b="-0.027476369759499176" c="-0.0004551632234302106" d="4.3151914820620028e-06" /> - <elevation s="31.729182497259941" a="161.08850186531143" b="-0.035656247653492346" c="-0.00037390038790132465" d="5.3980233596936382e-06" /> - <elevation s="42.305576663013255" a="160.67594907121514" b="-0.041753812897964669" c="-0.0002338897243161441" d="2.2255281681669216e-06" /> - <elevation s="52.881970828766569" a="160.21081432737796" b="-0.045954389228543009" c="-1.6670532480854211e-05" d="-8.0098684528176202e-06" /> - <elevation s="63.458364994519883" a="159.71344153723948" b="-0.04899497185742737" c="-7.8120738139813829e-05" d="-5.7585523999773922e-06" /> - <elevation s="65.998024680365546" a="159.58841278585362" b="-0.0495031978019594" c="-0.00049278985488678136" d="1.2404106898641027e-05" /> - <elevation s="74.034759160273197" a="159.16517866693809" b="-0.055020529894579402" c="-4.4012996084869309e-05" d="2.0388187466885106e-05" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.046031242267997638" b="-8.8789078915053521e-05" c="-3.1521405890451714e-06" d="0" /> - <superelevation s="10.576394165753314" a="0.044739575167563619" b="-0.00015546564158628256" c="-5.5897386589670544e-06" d="2.3047534270372186e-07" /> - <superelevation s="21.152788331506628" a="0.042742710458701129" b="-0.00019636120625234085" c="-2.0202908448563097e-05" d="1.8426285579014272e-06" /> - <superelevation s="31.729182497259941" a="0.040585988135188537" b="-5.3591331970431251e-06" c="7.6006053382493038e-07" d="-4.7909241524927748e-08" /> - <superelevation s="42.305576663013255" a="0.040557647982649186" b="-5.3591331970431251e-06" c="-5.5512052890101017e-08" d="-4.7909241524927748e-08" /> - <superelevation s="52.881970828766569" a="0.040438077787952137" b="-2.2610767492804206e-05" c="-2.0234757501429231e-05" d="9.7050638911848197e-07" /> - <superelevation s="63.458364994519883" a="0.039083658576701499" b="-0.00012494944519832334" c="-1.2831765431668674e-06" d="1.491373373964318e-07" /> - <superelevation s="74.034759160273197" a="0.037795048621532816" b="-0.00010204464852103246" c="1.8714939871045204e-06" d="-1.8328519464154267e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.4442717641772185" b="0.034574392535099481" c="-0.0053675260780968164" d="0.00042150907168520641" /> - <laneOffset s="8.1035326241599801" a="2.5962762703487869" b="0.030620560535839756" c="0.0069447308793043235" d="-0.0010532079995907249" /> - <laneOffset s="10.576394165753314" a="2.6985377624006661" b="0.045646035931965846" c="-0.00091272489465762333" d="-0.0010533072945451188" /> - <laneOffset s="13.301004853685779" a="2.7948254650023223" b="0.017214705076297399" c="-0.0023123744045829087" d="0.00015343652086420405" /> - <laneOffset s="20.111882770061122" a="2.8532834177140507" b="0.0070689722268791871" c="-0.00015243236890072229" d="3.2689614614624059e-05" /> - <laneOffset s="21.152788331506628" a="2.8605132596351672" b="0.0068578928870530291" c="-0.00012685400516902366" d="-1.164482667742543e-05" /> - <laneOffset s="31.995459483853232" a="2.9051140435219622" b="-0" c="-0.0046945541094981051" d="0.0009747992619535547" /> - <laneOffset s="33.60402987140224" a="2.8970241748278487" b="-0.0075361660016464473" c="-0.0023096646164094976" d="0.0002068757066927722" /> - <laneOffset s="37.233404884881047" a="2.8491390605250775" b="-0.016126318392115268" c="-0.00047389533169733692" d="-8.2611835235402216e-05" /> - <laneOffset s="41.279234296400425" a="2.7706666818318206" b="-0.024017671605958274" c="-0.0039230114930271969" d="0.0012818441230872163" /> - <laneOffset s="42.305576663013255" a="2.7432697478219716" b="-0.028019575696821182" c="2.0714656868315287e-05" d="0.0012817885503872682" /> - <laneOffset s="43.448926665644144" a="2.7131764619028957" b="-0.022945356210010499" c="0.0032984625651061084" d="-0.00029258162109270009" /> - <laneOffset s="49.129311236741671" a="2.6356421442000464" b="-0.01379427511877457" c="-0.023916431506638122" d="0.063117058213295427" /> - <laneOffset s="49.507767685434985" a="2.6304174046374991" b="-0.00477629750116201" c="0.0010147129386204937" d="6.3380888789363693e-07" /> - <laneOffset s="51.85612227441684" a="2.6248050804465182" b="-0" c="0.00049344690384861578" d="-0.0001421591222646297" /> - <laneOffset s="52.881970828766569" a="2.6251708964732989" b="0.00056359362244240159" c="3.7593415278943663e-05" d="-0.00014011079223658443" /> - <laneOffset s="54.132798522044176" a="2.6256604746559935" b="-0" c="-0.002186244168795229" d="3.3368037663057807e-07" /> - <laneOffset s="63.458364994519883" a="2.4358017665988663" b="-0.040688873909192055" c="-0.0022053807850895102" d="1.0709549274850689e-05" /> - <laneOffset s="64.947422621956079" a="2.3703590734853233" b="-0.047185513454428306" c="-0.0073711825917303622" d="0.00084514796043897746" /> - <laneOffset s="70.181930067803577" a="2.0426113201485432" b="-0.054883198509695086" c="-0.0014544007637940081" d="0.0004966520478732055" /> - <laneOffset s="74.034759160273197" a="1.8379709688452046" b="-0.043972969572810765" c="0.0042698449648566452" d="0.00049870225443902243" /> - <laneOffset s="76.079608092185737" a="1.7701709260684282" b="-0.020254762217377448" c="0.0074455416984000565" d="-0.0014268451338080813" /> - <laneOffset s="78.218193411159149" a="1.746951065804337" b="-0.0079861404377816192" c="0.0014660112474798534" d="-0.00011377110049023274" /> - <laneOffset s="82.119892065232563" a="1.7313514015276437" b="-0.0017421707468805907" c="0.00036119109967486013" d="1.5276787491223762e-06" /> - <laneOffset s="84.49578144173546" a="1.7292715547805881" b="-0" c="0.15999903019675468" d="-0.92454082075685573" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4948301502775281" b="-0.0089582061724893039" c="0.037686497051336643" d="-0.039715616571661547" /> - <width sOffset="0.47111972022898396" a="2.4948214883283741" b="0.00010640276722083744" c="-4.9933461633794828e-05" d="4.7076611126846239e-06" /> - <width sOffset="7.5379179810954167" a="2.4947411526659762" b="0.00010596003813323485" c="0.003220224025826883" d="-0.0013518568955220641" /> - <width sOffset="8.1035326241599801" a="2.4955866786526077" b="0.0024513138963991911" c="-0.0011387855565416632" d="0.00012286017575152469" /> - <width sOffset="10.576394165753314" a="2.4965425640113121" b="-0.00092691790053215511" c="-0.00026029974989385282" d="0.00012654149160311638" /> - <width sOffset="13.277774392602922" a="2.4946336184358167" b="0.00043703747580902536" c="0.0072608393233499595" d="0.0011746254166922132" /> - <width sOffset="13.301004853685779" a="2.4946477040868107" b="0.00077628444162314986" c="0.00013279316856417778" d="-3.2118395347999624e-05" /> - <width sOffset="20.111882770061122" a="2.4959473048302798" b="-0.0018845693979554091" c="0.00045169995868346482" d="8.8628510902155942e-05" /> - <width sOffset="21.152788331506628" a="2.494575011587338" b="-0.00065613257611744132" c="0.00080496372961289431" d="0.0001329629521899439" /> - <width sOffset="21.528306687466031" a="2.494449173780064" b="4.6736640367996823e-06" c="0.00025424818157793953" d="-2.6759705524510232e-05" /> - <width sOffset="31.729182497259941" a="2.4925484436017036" b="-0.0031618917439914448" c="-0.00057850565944603087" d="-2.7583404708028269e-05" /> - <width sOffset="31.995459483853232" a="2.4916649657851995" b="-0.003475844505763161" c="0.0035883768883501884" d="-0.0010140274933048859" /> - <width sOffset="33.60402987140224" a="2.4911381871074059" b="0.00019708466134593563" c="0.0010141832813386578" d="-0.00024610393804414427" /> - <width sOffset="36.426137969590435" a="2.4942401788105659" b="4.1221925530646186e-05" c="0.00015093105550203898" d="-0.00027439988697401099" /> - <width sOffset="37.233404884881047" a="2.494227458455339" b="-0.0002515574293656675" c="-9.6891517849925909e-05" d="1.5087654955059886e-05" /> - <width sOffset="41.279234296400425" a="2.4926228900083931" b="-0.00029467302907604243" c="0.0025326506997787671" d="-0.0013493683033673333" /> - <width sOffset="42.305576663013255" a="2.4935294560834174" b="0.0006398730975029146" c="-0.0016189842311269726" d="-0.0013493127308787226" /> - <width sOffset="42.453856442149053" a="2.4935843408470468" b="7.0746265585393958e-05" c="0.0028156312810764875" d="-0.0015152752969004096" /> - <width sOffset="43.448926665644144" a="2.4949497015064774" b="0.0011731314066840068" c="-0.00058893378481844659" d="5.9094874579705491e-05" /> - <width sOffset="48.851551465699856" a="2.4934165732595104" b="-1.5798650313291959e-05" c="0.0046717129063220042" d="3.2736729548032235e-05" /> - <width sOffset="49.129311236741671" a="2.4937733114970744" b="0.0025870061283788329" c="0.026927957438868437" d="-0.063376903104840399" /> - <width sOffset="49.507767685434985" a="2.4951738413755091" b="-0.0042631608632705438" c="0.0017017930690142603" d="-0.00026047870043284754" /> - <width sOffset="51.85612227441684" a="2.4911740598838863" b="-0.0005797735393158962" c="0.00039243527334014902" d="-0.00011768576928298431" /> - <width sOffset="52.881970828766569" a="2.4908652355665479" b="-0.00014616046797138056" c="3.280015287132632e-05" d="-0.0001181218753829346" /> - <width sOffset="54.132798522044176" a="2.4905025667559615" b="-0.00061853558760349822" c="0.0012876240210431687" d="-0.00025856634799614281" /> - <width sOffset="57.183486201953158" a="2.4932579629048455" b="1.8547224413186653e-05" c="0.0005004206386871532" d="-6.5723208194448898e-05" /> - <width sOffset="63.458364994519883" a="2.4968398748813683" b="-0.001464672346123963" c="-0.00074162313182405673" d="-7.4397455023365693e-05" /> - <width sOffset="64.947422621956079" a="2.4927688615294938" b="-0.0041681942917996193" c="0.0041396737893258529" d="-0.0009088358661875069" /> - <width sOffset="67.303568698975766" a="2.4940415298790222" b="0.00020315739027861046" c="0.0020888824372048819" d="-0.00073839773355251388" /> - <width sOffset="70.181930067803577" a="2.4943239464534388" b="-0.0061245218832756618" c="0.0030677739512875958" d="-0.00038990182098673032" /> - <width sOffset="74.034759160273197" a="2.4939666749877487" b="0.00015124610937240074" c="-0.0014226006519454746" d="-0.00039195101878513423" /> - <width sOffset="74.047107921723594" a="2.4939683250167084" b="0.00011593208899701724" c="0.0022267372643306992" d="-0.00083946742227779562" /> - <width sOffset="76.079608092185737" a="2.4963542530547773" b="-0.0012360433418379564" c="-0.0030083001888479141" d="0.0010860799659693" /> - <width sOffset="78.218193411159149" a="2.4905751282633535" b="0.00079865727323936379" c="0.00078496410659981554" d="-0.00022699406734854487" /> - <width sOffset="80.683279710642168" a="2.4939135895442703" b="0.00053057498880197933" c="-0.0022630637719830518" d="0.00060562069231045882" /> - <width sOffset="82.119892065232563" a="2.4918008254474109" b="-0.0022219757733083082" c="0.0001201812331634893" d="0.00049032191307115064" /> - <width sOffset="84.49578144173546" a="2.4937760338018409" b="0.0066524802944524699" c="-0.15601191720359978" d="0.92503267034695669" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16508719176748962" weight="standard" type="solid"> - <type name="solid"> - <line length="84.611153326026511" space="0" width="0.16508700000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="5.3883702539538376" b="-0.028295635981200239" c="0.054265973070203199" d="-0.036739566364592254" /> - <width sOffset="0.76310727720481153" a="5.3820520854947365" b="-0.0096580725271630009" c="-0.0019008552416155556" d="0.00042205889300205328" /> - <width sOffset="8.0957496758916854" a="5.3754288635717735" b="0.030544681606494484" c="0.0048561055923512847" d="0.0004273443223986422" /> - <width sOffset="8.1035326241599801" a="5.3756668856051766" b="0.030620348901735418" c="0.0069312029924777458" d="-0.0010473726429938053" /> - <width sOffset="10.576394165753314" a="5.477933370953938" b="0.045685969506325058" c="-0.00091178786454453791" d="-0.0010530567813009852" /> - <width sOffset="13.301004853685779" a="5.5743418999654653" b="0.017265323792937975" c="-0.0023093897212825274" d="0.00015368703410833772" /> - <width sOffset="20.111882770061122" a="5.6333622122445774" b="0.0071951100393653784" c="-0.00014432904023209804" d="3.2940127857895041e-05" /> - <width sOffset="21.152788331506628" a="5.6407324140763908" b="0.0070017145808577213" c="-0.00013118978829591366" d="-1.1382299042858246e-05" /> - <width sOffset="31.729182497259941" a="5.6866442704569664" b="0.00040700896761752597" c="-0.00049913162486634095" d="-1.1799562026575415e-05" /> - <width sOffset="31.995459483853232" a="5.6867170346571907" b="0.00013868454927164006" c="-0.0046974745057672025" d="0.00097464452661539787" /> - <width sOffset="33.60402987140224" a="5.678842049265354" b="-0.0074080779107466872" c="-0.0023133317207271907" d="0.00020672097135461545" /> - <width sOffset="37.233404884881047" a="5.6313661127488466" b="-0.01603096358490445" c="-0.00047924721372515381" d="-8.2766570573550443e-05" /> - <width sOffset="41.279234296400425" a="5.5531816724320091" b="-0.023973220867704665" c="-0.0039302414734012428" d="0.0012816893877496463" /> - <width sOffset="42.305576663013255" a="5.5258225769024918" b="-0.027990454813609102" c="1.1850365072059637e-05" d="0.0012820317747542023" /> - <width sOffset="43.448926665644144" a="5.4957513620403979" b="-0.022935551438297466" c="0.00329043254505057" d="-0.00029233839672557107" /> - <width sOffset="44.077378214892647" a="5.4825644793143784" b="-0.019146174910142564" c="0.0021250793806906771" d="-0.00028293830104720208" /> - <width sOffset="49.129311236741671" a="5.4035948081545486" b="-0.019338134609758237" c="-0.024392042350947173" d="0.06312670153334092" /> - <width sOffset="49.507767685434985" a="5.3962043605427557" b="-0.010676009356876445" c="0.00055005082428566583" d="1.0277128933356531e-05" /> - <width sOffset="51.85612227441684" a="5.3742998036959744" b="-0.0079225526174585836" c="9.6722594161270084e-05" d="-0.00013251580222003553" /> - <width sOffset="52.881970828766569" a="5.3661311923071917" b="-0.0081424722292386831" c="-0.00034005315989298459" d="-0.00012687114501239833" /> - <width sOffset="54.132798522044176" a="5.3551660378392043" b="-0.0095886643793476542" c="-0.0025142091917790595" d="1.3573327600679154e-05" /> - <width sOffset="54.741672733131928" a="5.3483987239861346" b="-0.012635242625811321" c="-0.0018920517639034969" d="-6.9866980041026643e-05" /> - <width sOffset="63.458364994519883" a="5.0482287975265532" b="-0.061545739740323235" c="-0.0037799824841386227" d="-4.704876950425782e-05" /> - <width sOffset="64.871113728703577" a="4.953603158672526" b="-0.072507778807907" c="-0.0047033713276381332" d="0.00014896253268711107" /> - <width sOffset="64.947422621956079" a="4.9480428485578507" b="-0.07322299468148237" c="-0.0098829130445489948" d="0.00098340094288318271" /> - <width sOffset="70.181930067803577" a="4.4350091732027712" b="-0.095851599807494844" c="-0.0017950724185681428" d="0.00063490503031739915" /> - <width sOffset="74.034759160273197" a="4.0753745804645671" b="-0.081409667265235186" c="0.0054993032154300658" d="0.00065211186437528319" /> - <width sOffset="75.077149444261408" a="3.9972279600159997" b="-0.067819116538231999" c="0.0054473154533039806" d="0.00064066565157017987" /> - <width sOffset="76.079608092185737" a="3.9353616373846654" b="-0.054966239969228253" c="0.0074904223383853805" d="-0.0012848817366768678" /> - <width sOffset="78.218193411159149" a="3.839502116871957" b="-0.040557827155974224" c="0.0024216943982752286" d="2.8192296640732083e-05" /> - <width sOffset="79.707536770292478" a="3.7845623878041743" b="-0.033156754525541655" c="-0.0015668008436063785" d="0.00096407383129423773" /> - <width sOffset="82.119892065232563" a="3.7089928310065998" b="-0.023884953437937732" c="0.0056371464924598776" d="0.0010793726105340583" /> - <width sOffset="82.911907754070143" a="3.6941479490242068" b="-0.012924301298158558" c="0.0052691041878067182" d="-0.00070775758737185574" /> - <width sOffset="83.658371783539252" a="3.6871420309319705" b="-0.0062410135419951433" c="0.0033034397027380332" d="1.175579467689295e-05" /> - <width sOffset="84.49578144173546" a="3.6842392027564168" b="-0.00068361749019121691" c="0.16295992326068987" d="-0.92453059264085513" /> - <roadMark sOffset="0" color="standard" width="0.29716791476625065" weight="bold" type="solid"> - <type name="solid"> - <line length="84.611153326026511" space="0" width="0.29716799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4948301502775787" b="0.015348003460695737" c="-0.053199556086730729" d="0.036596609128518399" /> - <width sOffset="0.76310727720481153" a="2.4918253679664506" b="-0.0019117248989847097" c="0.0026399971035570794" d="-0.00056501612907592855" /> - <width sOffset="3.4570839439199008" a="2.4947880831715814" b="1.0625198603585184e-05" c="0.00078857371412933107" d="-0.00015358340152240825" /> - <width sOffset="8.0957496758916854" a="2.4964759417588871" b="-0.0025875784837801133" c="0.0011787675106144507" d="-0.00015886893680259082" /> - <width sOffset="9.7367653040144386" a="2.4947019614167223" b="-2.2965403089771652e-06" c="-1.609961766795952e-05" d="-5.383617346903295e-06" /> - <width sOffset="10.576394165753314" a="2.4946854966571625" b="-4.0717920797960032e-05" c="-8.3516939597316622e-07" d="2.01226005173101e-07" /> - <width sOffset="21.152788331506628" a="2.4943994915222887" b="9.1434091115626917e-06" c="-5.2590216561733323e-06" d="3.3062257363155168e-07" /> - <width sOffset="31.729182497259941" a="2.4942990729090484" b="8.8508730730496729e-06" c="-8.6015542751383139e-07" d="-4.3893735112443201e-08" /> - <width sOffset="42.305576663013255" a="2.494244536494393" b="-2.4073687198709024e-05" c="-1.0949906349488702e-06" d="-4.4185339437263444e-07" /> - <width sOffset="42.557075957797423" a="2.494238405689885" b="-2.4708310147598275e-05" c="-0.00037359692443503386" d="3.0683797034051874e-07" /> - <width sOffset="44.077378214892647" a="2.4933384181369926" b="-0.0011585412038216556" c="0.00024199414432148455" d="-9.0932577080579804e-06" /> - <width sOffset="52.881970828766569" a="2.4956910191515811" b="0.00098802727726605803" c="1.5411814389383409e-06" d="-1.1801991311614875e-05" /> - <width sOffset="54.741672733131928" a="2.4974578779165113" b="0.00087130830505233701" c="-0.00066166745618120295" d="7.1638316330227211e-05" /> - <width sOffset="60.155567544407489" a="2.4941491639857816" b="6.1246834149181195e-06" c="-0.00039513408413209843" d="5.0699520754402135e-05" /> - <width sOffset="63.458364994519883" a="2.4916857100503109" b="-0.00094480825258060064" c="9.7666014034725798e-05" d="3.4625458189603833e-05" /> - <width sOffset="64.871113728703577" a="2.4906434925573357" b="-0.00046153058157028665" c="0.0009684018054942681" d="-0.00016138584303372193" /> - <width sOffset="68.584104729499245" a="2.4940194279224221" b="5.506180130643995e-05" c="0.00040128780713300221" d="-6.0169534618607332e-05" /> - <width sOffset="74.034759160273197" a="2.4964979938213276" b="-0.00093322037529924157" c="-0.0005865545360000128" d="-7.161645583312789e-05" /> - <width sOffset="75.077149444261408" a="2.4948067614981677" b="-0.002389508363516743" c="0.001280741547419144" d="-6.0170243028281976e-05" /> - <width sOffset="76.614432699388502" a="2.4939415130830547" b="0.0011216265659958688" c="-0.00091159435081452776" d="8.5508618643175352e-05" /> - <width sOffset="79.707536770292478" a="2.4912197558261506" b="-0.0020634278562727988" c="0.0039963260896766408" d="-0.0008503729160100192" /> - <width sOffset="82.911907754070143" a="2.4976626564417321" b="-0.0026468756009909167" c="-0.0012457223730942954" d="0.00093675728189506673" /> - <width sOffset="83.658371783539252" a="2.4953823630668479" b="-0.0029407419928021237" c="0.0012327622161357791" d="0.00021724389984687829" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276670426" type="poles" s="4.3495027228818675" t="3.6884768635582996" zOffset="-2.6232366661957029" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.276763333804297" name="SgPoleSign01.flt" /> - <object id="276670438" type="poles" s="17.513772391289866" t="4.0161382155232364" zOffset="-2.6376182155613548" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.2623817844386451" name="SgPoleSign01.flt" /> - <object id="276670450" type="poles" s="30.356394493042423" t="4.0565136251969598" zOffset="-2.6452694896172999" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.2547305103827" name="SgPoleSign01.flt" /> - <object id="276670462" type="poles" s="44.055978782969134" t="3.8705074170157059" zOffset="-2.6298653801598504" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.2701346198401495" name="SgPoleSign01.flt" /> - <object id="276670474" type="poles" s="56.761708084498942" t="3.754064369877447" zOffset="-2.6480302378602345" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.2519697621397654" name="SgPoleSign01.flt" /> - <object id="9100419" s="0" t="3.2045773910562203" orientation="none" validLength="4.4252661299499891" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="4.4252661299499891" s="0" distance="0" tStart="3.2045773910562203" tEnd="3.2339996846134818" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="277535875" s="4.4252661299499891" t="3.2339996846134818" orientation="none" validLength="13.582629350153805" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="13.582629350153805" s="4.4252661299499891" distance="0" tStart="3.2339996846134818" tEnd="3.561167256536848" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="545971331" s="18.007895480103794" t="3.561167256536848" orientation="none" validLength="10.034314507496223" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="10.034314507496223" s="18.007895480103794" distance="0" tStart="3.561167256536848" tEnd="3.6579636674355704" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="814406787" s="28.042209987600017" t="3.6579636674355704" orientation="none" validLength="27.121428915634475" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="27.121428915634475" s="28.042209987600017" distance="0" tStart="3.6579636674355704" tEnd="3.3392524049782444" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1082842243" s="55.163638903234492" t="3.3392524049782444" orientation="none" validLength="4.6617280929606153" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="4.6617280929606153" s="55.163638903234492" distance="0" tStart="3.3392524049782444" tEnd="3.3737583185782651" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741979" s="59.825366996195108" t="3.3737583185782651" orientation="none" validLength="4.5970010046558727" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="4.5970010046558727" s="59.825366996195108" distance="0" tStart="3.3737583185782651" tEnd="3.2376111031649097" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741980" s="64.42236800085098" t="3.2376111031649097" orientation="none" validLength="7.4321417155101273" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="7.4321417155101273" s="64.42236800085098" distance="0" tStart="3.2376111031649097" tEnd="2.8016774271521498" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741981" s="71.854509716361108" t="2.8016774271521498" orientation="none" validLength="10.376293335603265" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="10.376293335603265" s="71.854509716361108" distance="0" tStart="2.8016774271521498" tEnd="2.6537205908871351" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073741982" s="82.230803051964372" t="2.6537205908871351" orientation="none" validLength="2.3803502740621383" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="2.3803502740621383" s="82.230803051964372" distance="0" tStart="2.6537205908871351" tEnd="2.7003353570552009" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="9100423" s="0" t="-6.6023439401846753" orientation="none" validLength="6.7556963430517341" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.7556963430517341" s="0" distance="0" tStart="-6.6023439401846753" tEnd="-6.2948438297165445" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="277535879" s="6.7556963430517341" t="-6.2948438297165445" orientation="none" validLength="16.88884855607494" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.88884855607494" s="6.7556963430517341" distance="0" tStart="-6.2948438297165445" tEnd="-5.967226464477247" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="545971335" s="23.644544899126675" t="-5.967226464477247" orientation="none" validLength="7.1843172456215072" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.1843172456215072" s="23.644544899126675" distance="0" tStart="-5.967226464477247" tEnd="-5.9952257853523259" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="814406791" s="30.828862144748182" t="-5.9952257853523259" orientation="none" validLength="18.928189545155927" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.928189545155927" s="30.828862144748182" distance="0" tStart="-5.9952257853523259" tEnd="-6.2724736531349059" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1082842247" s="49.75705168990411" t="-6.2724736531349059" orientation="none" validLength="13.008781879628252" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.008781879628252" s="49.75705168990411" distance="0" tStart="-6.2724736531349059" tEnd="-6.17500346197256" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741983" s="62.765833569532361" t="-6.17500346197256" orientation="none" validLength="9.1568593235652429" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.1568593235652429" s="62.765833569532361" distance="0" tStart="-6.17500346197256" tEnd="-5.8842772548881381" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741984" s="71.922692893097604" t="-5.8842772548881381" orientation="none" validLength="9.6780441530439703" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.6780441530439703" s="71.922692893097604" distance="0" tStart="-5.8842772548881381" tEnd="-5.4663428357289883" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741985" s="81.600737046141575" t="-5.4663428357289883" orientation="none" validLength="3.0104162798849359" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.0104162798849359" s="81.600737046141575" distance="0" tStart="-5.4663428357289883" tEnd="-5.4121255401131494" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412886" s="82.891399461409577" t="-5.5388694029390892" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9489019" s="9.2667981613511543" t="3.5663099616183804" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277924475" s="32.398085036790299" t="3.712736173917901" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546359931" s="56.03188302141907" t="3.6832884382616551" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9489020" s="10.622257039992894" t="-6.2984437898456154" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277924476" s="33.032131213811894" t="-6.0294539152214117" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546359932" s="55.089360480486299" t="-6.1863695905358318" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8234970" type="625" subtype="20" country="DEU" zOffset="1.276763333804297" s="4.3495027228818675" t="3.6884768635582996" orientation="+" name="Sg625RichtungKurveRechts01.flt" height="0.5" /> - <signal dynamic="no" id="8234982" type="625" subtype="20" country="DEU" zOffset="1.2623817844386451" s="17.513772391289866" t="4.0161382155232364" orientation="+" name="Sg625RichtungKurveRechts01.flt" height="0.5" /> - <signal dynamic="no" id="8234994" type="625" subtype="20" country="DEU" zOffset="1.2547305103827" s="30.356394493042423" t="4.0565136251969598" orientation="+" name="Sg625RichtungKurveRechts01.flt" height="0.5" /> - <signal dynamic="no" id="8235006" type="625" subtype="20" country="DEU" zOffset="1.2701346198401495" s="44.055978782969134" t="3.8705074170157059" orientation="+" name="Sg625RichtungKurveRechts01.flt" height="0.5" /> - <signal dynamic="no" id="8235018" type="625" subtype="20" country="DEU" zOffset="1.2519697621397654" s="56.761708084498942" t="3.754064369877447" orientation="+" name="Sg625RichtungKurveRechts01.flt" height="0.5" /> - </signals> - </road> - <road name="" length="4.9999999999984297" id="9100458" junction="33554629"> - <link> - <predecessor elementType="road" elementId="4940030" contactPoint="end" /> - <successor elementType="road" elementId="33782045" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1446.5610058315126" y="-46.215463538840076" hdg="0.43633231299858255" length="4.9999999999984297"> - <paramPoly3 aU="0" bU="5.0791482586851417" cU="-0.088191790812974069" dU="0.0080533708663595091" aV="-0" bV="2.2204460492503131e-16" cV="-0.081160268201065866" dV="-0.0041537296664624652" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.06423822832744" b="-0.0083892130972954317" c="0.00016790301480920273" d="-1.1051681559232003e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.021856845448807921" b="8.8391347711819923e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.5991691760036475" b="0.0010573567818229117" c="0.0024219391335373723" d="-4.1804869300820694e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.12" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999984297" space="0" width="0.12" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-6" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.3341399433964325" b="0.072478887521709778" c="0.00051138327074184693" d="5.8583203623713409e-05" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999984297" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4927829045308671" b="0.00068069711353800633" c="-0.0004319765675133752" d="6.0198840748003289e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="9100462" s="0" t="-2.6605902685123302" orientation="none" validLength="4.9999999999984297" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.9999999999984297" s="0" distance="0" tStart="-2.6605902685123302" tEnd="-3.041074446793095" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="879.90939930590821" id="9100473" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556587" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1757.6340098858536" y="102.80418759956956" hdg="0.41887902047863901" length="879.90939930590821"> - <paramPoly3 aU="0" bU="879.90355128863928" cU="0.015938721343642936" dU="-0.010575960932935446" aV="-0" bV="-5.6843418860808015e-14" cV="2.4489501231485926" dV="-1.5972043163786773" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.30803489874242" b="0.00018489706642795095" c="3.5365525675895064e-05" d="-6.5278871303994039e-09" /> - <elevation s="10.11390114144722" a="156.31351575075203" b="0.00089826069519569605" c="5.9294857757327614e-05" d="-1.8090149239891939e-06" /> - <elevation s="20.227802282894441" a="156.32679446436529" b="0.0015425275376196035" c="1.9117009715909741e-05" d="3.4145153029113557e-07" /> - <elevation s="30.341703424341659" a="156.34470418580375" b="0.0020340048820570592" c="3.3709296373986474e-05" d="-7.7294777900474364e-07" /> - <elevation s="40.455604565788882" a="156.36792440596679" b="0.0024786730690011432" c="8.7697652950775219e-05" d="-6.8969861639082972e-06" /> - <elevation s="50.569505707236104" a="156.39482878757224" b="0.0021361050950642014" c="-0.00013337342191305855" d="8.0511126659665709e-06" /> - <elevation s="60.683406848683319" a="156.41111961049006" b="0.0019089228945646595" c="5.6220943758433626e-05" d="-2.6567488589637798e-06" /> - <elevation s="70.797307990130548" a="156.43342859546163" b="0.0022308645659693338" c="1.9289882949667019e-05" d="-1.6750385829293542e-06" /> - <elevation s="80.911209131577763" a="156.45623159085525" b="0.0021070324078742162" c="-1.8046820698622586e-05" d="3.2848942459613927e-07" /> - <elevation s="91.025110273024978" a="156.4760357234166" b="0.0018427894184944679" c="1.2493647749092859e-05" d="-2.3757295814070298e-06" /> - <elevation s="101.13901141447221" a="156.49349366386639" b="0.0013664612174980873" c="1.6035246477431635e-06" d="-6.527887130396469e-09" /> - <elevation s="111.25291255591942" a="156.50747119017001" b="0.0013968937647935002" c="-0.00011808410202032582" d="8.0643285306099831e-06" /> - <elevation s="121.36681369736664" a="156.51786333515386" b="0.0014830364960080635" c="8.0878242576288816e-05" d="-3.65328216120915e-06" /> - <elevation s="131.48071483881387" a="156.53735619234118" b="0.0019979319797352193" c="5.5608549056951516e-05" d="-4.8211090705250643e-06" /> - <elevation s="141.5946159802611" a="156.55826360121941" b="0.0016433025650278712" c="-8.7618090956509347e-05" d="6.0169673607165343e-06" /> - <elevation s="151.7085171217083" a="156.5721461790053" b="0.0017174259028331171" c="9.3925494383608693e-06" d="-6.5278871303952812e-09" /> - <elevation s="161.82241826315553" a="156.59047007454654" b="0.0019054133035697172" c="0.00011036829672155433" d="-4.4331004913951326e-06" /> - <elevation s="171.93631940460276" a="156.61644460637905" b="0.0027775225900783908" c="5.8047097793976518e-05" d="-3.7060601639814024e-06" /> - <elevation s="182.05022054604996" a="156.64663974533974" b="0.002814398047798072" c="3.1956539445555286e-05" d="-4.8455030380386245e-06" /> - <elevation s="192.16412168749719" a="156.67336018664011" b="0.0019738546093563476" c="-0.00027551688123178943" d="1.6468057009543681e-05" /> - <elevation s="202.27802282894442" a="156.68217787067519" b="0.0014543554860432586" c="5.8015898698404309e-05" d="-2.6844576461856986e-06" /> - <elevation s="212.39192397039162" a="156.70004434711271" b="0.0018041020727268592" c="2.0326927141649957e-05" d="-1.6555186295698431e-06" /> - <elevation s="222.50582511183885" a="156.71865738370531" b="0.001707237185936348" c="-1.281410960509887e-05" d="-4.7312265697124013e-08" /> - <elevation s="232.61972625328607" a="156.73456449636464" b="0.0014335170540271192" c="-5.4883730306105171e-05" d="4.0519036286395583e-06" /> - <elevation s="242.73362739473328" a="156.74764077624815" b="0.0015667595860903382" c="6.0689840972124486e-05" d="-3.3364485322758179e-06" /> - <elevation s="252.8475285361805" a="156.76624309250172" b="0.0017705157564546162" c="6.1122872595999682e-06" d="-1.2896618380171869e-06" /> - <elevation s="262.96142967762773" a="156.78344091191329" b="0.0014983915117394533" c="-3.5919157346997945e-05" d="1.5634298678669517e-06" /> - <elevation s="273.07533081907496" a="156.79653875274835" b="0.0012516002952392283" c="-1.2685553820572308e-05" d="8.1660892253672434e-07" /> - <elevation s="283.18923196052219" a="156.80874452822741" b="0.0012455946415264006" c="-1.6286090966798934e-06" d="5.2691975320882852e-07" /> - <elevation s="293.30313310196937" a="156.82172088788661" b="0.0013743488982986465" c="1.8954246742875137e-05" d="-9.9432176785691002e-07" /> - <elevation s="303.41703424341659" a="156.83653107901475" b="0.0014526211610072146" c="1.0288362121414122e-05" d="-1.1448702288652385e-06" /> - <elevation s="313.53093538486382" a="156.85109071452828" b="0.0013094023667830426" c="-2.1027370034288571e-05" d="7.9350970552368358e-07" /> - <elevation s="323.64483652631105" a="156.86300390420365" b="0.0011275715782529513" c="-1.1182660613888869e-05" d="6.0057964946860985e-07" /> - <elevation s="333.75873766775828" a="156.8738855024778" b="0.0010856726024615819" c="-8.8462541253603861e-06" d="9.5709409954432603e-07" /> - <elevation s="343.87263880920551" a="156.88495116795502" b="0.0012004386500523098" c="7.7930370640039924e-06" d="2.559422102255803e-07" /> - <elevation s="353.98653995065274" a="156.89815423114865" b="0.0014366164140030549" c="1.4124339026532704e-05" d="-1.2717133877924789e-07" /> - <elevation s="364.10044109209991" a="156.91399725373867" b="0.0016832953023751189" c="1.9538675430176275e-05" d="-8.0273455288643209e-07" /> - <elevation s="374.21434223354714" a="156.93219008871367" b="0.0018321822143112939" c="7.2719321535518994e-06" d="-4.0566516298964093e-07" /> - <elevation s="384.32824337499437" a="156.95104476632082" b="0.0018547897390699835" c="1.4278322362034045e-05" d="-1.5171346361901256e-06" /> - <elevation s="394.4421445164416" a="156.96969490183673" b="0.0016780411803739592" c="-4.1390225740661551e-05" d="2.4568367326910685e-06" /> - <elevation s="404.55604565788883" a="156.98497434454478" b="0.0015947447090400996" c="1.1289471085134224e-05" d="-3.0802495715463842e-07" /> - <elevation s="414.66994679933606" a="157.00193957550769" b="0.0017285813587717641" c="1.7090326161849882e-06" d="3.1814882133253448e-07" /> - <elevation s="424.78384794078323" a="157.01992623950477" b="0.001860782612343317" c="1.8746481615345467e-06" d="6.06866827453931e-07" /> - <elevation s="434.89774908223046" a="157.03956561128649" b="0.002084933661907996" c="2.7636309459415068e-06" d="-7.8097994602911799e-08" /> - <elevation s="445.01165022367769" a="157.06085432165111" b="0.0021168696772347396" c="-1.0927747339435565e-06" d="-7.8097994602715141e-08" /> - <elevation s="455.12555136512492" a="157.08207155413842" b="0.0020707990809461976" c="-1.2311000391207303e-05" d="6.7216211957865894e-07" /> - <elevation s="465.23945250657215" a="157.10245149956239" b="0.0020280429977865976" c="0.00010907924097552005" d="-7.3662946125520889e-06" /> - <elevation s="475.35335364801938" a="157.1264998688884" b="0.0019739594725586081" c="-8.3786750623043174e-05" d="2.3724380584702559e-06" /> - <elevation s="485.46725478946655" a="157.14034810160089" b="0.0010071748050050375" c="-7.2892645374840435e-05" d="3.6546785854145672e-06" /> - <elevation s="495.58115593091378" a="157.14685929471318" b="0.00065423892744929783" c="-2.937800551859378e-05" d="2.9938429042835665e-06" /> - <elevation s="505.69505707236101" a="157.15356841027597" b="0.00097871596067868353" c="2.0094034575873663e-05" d="1.0831406471454239e-06" /> - <elevation s="512.00002909315185" a="157.16080945640866" b="0.0013612738174923077" c="3.9794668453911166e-05" d="1.1014144230149919e-06" /> - <elevation s="515.8089582138083" a="157.16663265444882" b="0.0017123617270837954" c="-2.2065265947784551e-06" d="1.1745888814668811e-08" /> - <elevation s="525.92285935525547" a="157.18373775570998" b="0.0016713330394004795" c="2.8542536880845061e-05" d="-8.227252131688853e-07" /> - <elevation s="536.03676049670264" a="157.20270993794017" b="0.0019962136868724588" c="2.8086890232652696e-05" d="-1.5769071258765999e-06" /> - <elevation s="546.15066163814993" a="157.22414107515999" b="0.0020804395463093362" c="2.9540592471068442e-07" d="-3.8247236967209743e-07" /> - <elevation s="556.2645627795971" a="157.244816961422" b="0.0019690445196958229" c="-5.1638075859675271e-06" d="-2.0167968982622177e-07" /> - <elevation s="566.37846392104439" a="157.26399482206818" b="0.0018027019916031862" c="-1.9207471709166601e-05" d="1.0086830597633849e-06" /> - <elevation s="576.49236506249156" a="157.28130596456069" b="0.0017237146369151323" c="-1.0553029981550602e-05" d="1.185160218626271e-06" /> - <elevation s="586.60626620393873" a="157.2988860846134" b="0.0018739436915744178" c="2.9613616868203425e-05" d="-1.5776174330855219e-06" /> - <elevation s="596.72016734538602" a="157.3192360307207" b="0.0019888339014390113" c="1.7268019967004206e-06" d="-3.7446728749389384e-07" /> - <elevation s="606.83406848683319" a="157.33914012722281" b="0.0019088494150526054" c="-8.5632075768828175e-06" d="2.9196971534776066e-07" /> - <elevation s="616.94796962828048" a="157.35787216295375" b="0.0018252321644961827" c="9.9237635664406697e-06" d="-1.2204461739804575e-06" /> - <elevation s="627.06187076972765" a="157.37608486624416" b="0.001651446126623167" c="-2.4051313757657145e-05" d="9.4184497191178883e-07" /> - <elevation s="637.17577191117493" a="157.39130159236151" b="0.0014539676888975089" c="-2.7446732341603424e-05" d="2.2428997135965711e-06" /> - <elevation s="647.28967305262211" a="157.40551974085847" b="0.0015870659526874122" c="7.7953621077253866e-05" d="-2.902219488051851e-06" /> - <elevation s="657.40357419406928" a="157.4265425994079" b="0.0022732836183404687" c="4.1219316442505764e-05" d="-2.1488863229521997e-06" /> - <elevation s="667.51747533551656" a="157.45152757610072" b="0.0024476246328515175" c="1.3468089118307044e-05" d="-1.5304111254246295e-06" /> - <elevation s="677.63137647696374" a="157.4760769702215" b="0.002250412640364908" c="-1.5335333247387477e-05" d="-1.8942619149256435e-07" /> - <elevation s="687.74527761841102" a="157.49707278172252" b="0.0018820827699357729" c="-7.0904876212744556e-05" d="5.1390121582486742e-06" /> - <elevation s="697.8591787598582" a="157.51417167204937" b="0.0020248569739905499" c="9.1569609500615848e-05" d="-5.7629563029321198e-06" /> - <elevation s="707.97307990130548" a="157.53805549192109" b="0.0021086133045278279" c="-3.8440202393559091e-05" d="1.3521453847359554e-06" /> - <elevation s="718.08698104275265" a="157.55684858874201" b="0.0017459893864335452" c="-2.1168867955596031e-05" d="1.0901914435300545e-06" /> - <elevation s="728.20088218419983" a="157.57346983777313" b="0.0016523400176209416" c="7.2314069486196268e-06" d="-6.0416888913099797e-07" /> - <elevation s="738.31478332564711" a="157.5902960996001" b="0.0016132123747986185" c="-5.4795403726470562e-05" d="3.8673563818563923e-06" /> - <elevation s="748.42868446709429" a="157.60500790981865" b="0.0016916089942379663" c="1.1571887555069638e-05" d="1.1745888814714225e-08" /> - <elevation s="758.54258560854157" a="157.62331252770221" b="0.0019292873437496267" c="0.00012887451520171437" d="-7.2179446531653544e-06" /> - <elevation s="768.65648674998874" a="157.64854044751468" b="0.0023211433071445211" c="-1.5959488118823814e-05" d="-9.2106941026295691e-08" /> - <elevation s="778.77038789143592" a="157.67028845926691" b="0.0019700528046498631" c="-2.2591088840431679e-05" d="1.8385478238072366e-06" /> - <elevation s="788.8842890328832" a="157.68980460351131" b="0.0020772853921519284" c="5.8202129995271515e-05" d="-2.007353420484569e-06" /> - <elevation s="798.99819017433038" a="157.71469088686337" b="0.0026385840262230851" c="8.5660532179230944e-05" d="-6.706132067169352e-06" /> - <elevation s="809.11209131577766" a="157.7432016631781" b="0.0023133775432024454" c="-2.8875725587932305e-05" d="1.0784627733931032e-06" /> - <elevation s="819.22599245722483" a="157.76476094376508" b="0.0020602361699198165" c="2.4468839854879605e-05" d="-3.0939634211312602e-06" /> - <elevation s="829.33989359867212" a="157.78490001675684" b="0.0016057332220158866" c="-8.2677017553388886e-05" d="4.4294847206020949e-06" /> - <elevation s="839.45379474011929" a="157.79726570157663" b="0.0012926480730908608" c="-7.6351412179146989e-06" d="1.4627845494675897e-06" /> - <elevation s="849.56769588156646" a="157.81107175007824" b="0.001587095012940225" c="2.293633454935081e-05" d="-7.3657591791754818e-08" /> - <elevation s="859.68159702301375" a="157.82939344938009" b="0.0020284431279507312" c="1.857275447326772e-05" d="3.0762040739132911e-07" /> - <elevation s="869.79549816446092" a="157.85212700029007" b="0.0024985295271465909" c="2.4914036010295869e-05" d="1.1745888829495503e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.023618982681025563" b="1.6206548328426854e-05" c="2.1505662201545409e-07" d="-5.2399140654590787e-23" /> - <superelevation s="10.11390114144722" a="0.023804892464790006" b="2.0556671158181939e-05" c="8.9534746041071805e-07" d="-6.7262951148245436e-08" /> - <superelevation s="20.227802282894441" a="0.024034798960807745" b="1.8026399700974223e-05" c="-1.2066911077155669e-06" d="7.3310672209071119e-08" /> - <superelevation s="30.341703424341659" a="0.02416952691381374" b="1.6114755656416596e-05" c="2.4219954097252559e-06" d="-2.1216073844899035e-07" /> - <superelevation s="40.455604565788882" a="0.024360765052062895" b="0" c="-8.8766371218768171e-07" d="0" /> - <superelevation s="50.569505707236104" a="0.024269965046564781" b="-1.795548606383186e-05" c="-1.375879232702248e-05" d="9.6543399916433655e-07" /> - <superelevation s="60.683406848683319" a="0.023679764847566721" b="0" c="2.1373848998782838e-06" d="-1.2624778205552275e-07" /> - <superelevation s="70.797307990130548" a="0.02376778904373978" b="4.4925649361997395e-06" c="-2.2209851932355238e-07" d="0" /> - <superelevation s="80.911209131577763" a="0.023790507722557908" b="0" c="-3.1898506197071911e-06" d="2.1026180205480039e-07" /> - <superelevation s="91.025110273024978" a="0.023681743389912999" b="0" c="5.0934466900938934e-07" d="-3.3573900705968055e-08" /> - <superelevation s="101.13901141447221" a="0.023699110514463845" b="0" c="-8.668671500493588e-07" d="0" /> - <superelevation s="111.25291255591942" a="0.02361043781002645" b="-1.7534817316734608e-05" c="-1.6077727973193535e-05" d="1.1169178530463794e-06" /> - <superelevation s="121.36681369736664" a="0.022944005266576011" b="0" c="9.5931260751613e-06" d="-4.648378608004313e-07" /> - <superelevation s="131.48071483881387" a="0.023444392557056257" b="5.1401673826969954e-05" c="5.653712837369788e-06" d="-5.4017090217490303e-07" /> - <superelevation s="141.5946159802611" a="0.02398374816175779" b="0" c="-1.0842128247517239e-05" d="6.1222432610956369e-07" /> - <superelevation s="151.7085171217083" a="0.023508079487195223" b="-3.1437317687929949e-05" c="3.3262994126229379e-06" d="-1.7643785655614128e-07" /> - <superelevation s="161.82241826315553" a="0.023347840315261804" b="-1.8297603231630898e-05" c="-2.5371058492949591e-06" d="2.2686153959718632e-07" /> - <superelevation s="171.93631940460276" a="0.023137959186774942" b="0" c="6.0353427254733715e-06" d="-1.9198144278903598e-07" /> - <superelevation s="182.05022054604996" a="0.023556703889084762" b="6.3167800198969505e-05" c="1.2701581627120511e-05" d="-1.0430793638209236e-06" /> - <superelevation s="192.16412168749719" a="0.024415704959845078" b="0" c="-1.8218890002245571e-05" d="1.2009141179350794e-06" /> - <superelevation s="202.27802282894442" a="0.023794495489914746" b="0" c="1.184664515116092e-06" d="0" /> - <superelevation s="212.39192397039162" a="0.023915676003446004" b="2.3963159583329276e-05" c="2.5326370679204339e-05" d="-1.7474981429718888e-06" /> - <superelevation s="222.50582511183885" a="0.02494080325129194" b="0" c="-1.0100753014298283e-05" d="4.1006630086587429e-07" /> - <superelevation s="232.61972625328607" a="0.024331825774314721" b="-7.8477763488967145e-05" c="-1.3177434815923345e-05" d="1.1243358719235895e-06" /> - <superelevation s="242.73362739473328" a="0.023353370567833362" b="0" c="2.5288484831151418e-05" d="-1.3104432331315478e-06" /> - <superelevation s="252.8475285361805" a="0.024584421382642069" b="0.00010939083946770746" c="2.1642648660577237e-07" d="-1.4191638400679678e-07" /> - <superelevation s="262.96142967762773" a="0.025566106840145996" b="7.0218366713946533e-05" c="-2.0052042261653126e-06" d="-6.4171661809296665e-08" /> - <superelevation s="273.07533081907496" a="0.026004784621159557" b="9.9649424283501078e-06" c="-1.2656583981777349e-06" d="7.6431680076567301e-08" /> - <superelevation s="283.18923196052219" a="0.02605517684245983" b="7.8182727038360198e-06" c="1.6141820000511609e-06" d="-1.3187744934784866e-07" /> - <superelevation s="293.30313310196937" a="0.026162931095606502" b="0" c="-3.153894442792131e-07" d="0" /> - <superelevation s="303.41703424341659" a="0.026130669595129004" b="-6.3796353209918816e-06" c="-2.6995232394389383e-07" d="-6.2367515732724098e-08" /> - <superelevation s="313.53093538486382" a="0.025974009901049568" b="-3.0979083518512489e-05" c="-4.038516190981624e-06" d="1.788327472736566e-07" /> - <superelevation s="323.64483652631105" a="0.025432600058330607" b="-5.7790450877443332e-05" c="-2.5970702458804319e-06" d="2.151442334689216e-07" /> - <superelevation s="333.75873766775828" a="0.024805036086861319" b="-4.4301520357356693e-05" c="1.7338364210758269e-06" d="2.0751982508790141e-09" /> - <superelevation s="343.87263880920551" a="0.024536477663710372" b="-8.5929977511560825e-06" c="1.2744337171649515e-06" d="-8.400541652797266e-08" /> - <superelevation s="353.98653995065274" a="0.024493023298828437" b="-8.5929977511560825e-06" c="-3.7287172951551262e-06" d="2.7378347722415109e-07" /> - <superelevation s="364.10044109209991" a="0.024307946076639657" b="0" c="5.8255143660585604e-07" d="0" /> - <superelevation s="374.21434223354714" a="0.024367535843485458" b="1.1783735279278009e-05" c="3.4458975305324683e-06" d="-1.4296130361598665e-07" /> - <superelevation s="384.32824337499437" a="0.02469129747602546" b="3.761570667676627e-05" c="4.1859389972034157e-06" d="-3.5909333100327789e-07" /> - <superelevation s="394.4421445164416" a="0.025128418920874439" b="1.209200930253582e-05" c="-1.7933746533740185e-06" d="1.1821186360522197e-07" /> - <superelevation s="404.55604565788883" a="0.025189567614218093" b="1.209200930253582e-05" c="2.5897977862884278e-06" d="-1.3780440516215699e-07" /> - <superelevation s="414.66994679933606" a="0.025434210930130038" b="2.2189477180987307e-05" c="1.6009108576981977e-06" d="-1.7783378615111787e-07" /> - <superelevation s="424.78384794078323" a="0.025638411971395901" b="0" c="-4.0210291101027086e-07" d="0" /> - <superelevation s="434.89774908223046" a="0.025597280464013942" b="-8.1336581812927502e-06" c="-3.3493228342428188e-06" d="1.7534903257134572e-07" /> - <superelevation s="445.01165022367769" a="0.025353821154342829" b="-2.2073216528590627e-05" c="1.5425288305037557e-06" d="-1.3297797601410877e-07" /> - <superelevation s="455.12555136512492" a="0.025150787804326093" b="-3.1678597286408833e-05" c="-6.574153926530958e-06" d="5.3657144501861127e-07" /> - <superelevation s="465.23945250657215" a="0.024713032751833914" b="0" c="3.1321041029626278e-05" d="-2.0645538974254766e-06" /> - <superelevation s="475.35335364801938" a="0.025780986249181018" b="0" c="-2.1231025063367364e-05" d="1.3546566567363006e-06" /> - <superelevation s="485.46725478946655" a="0.025010718521271076" b="-1.3749440063219499e-05" c="1.2660052385085495e-06" d="-5.7967289495260755e-08" /> - <superelevation s="495.58115593091378" a="0.024941188282496248" b="-5.9295317952208994e-06" c="6.7972980311594847e-07" d="-5.7967289495260755e-08" /> - <superelevation s="505.69505707236101" a="0.024890777124487212" b="-9.9686871176641006e-06" c="-7.2986485630110571e-06" d="4.1737443861203926e-07" /> - <superelevation s="515.8089582138083" a="0.024475168102019718" b="-2.9523365716540996e-05" c="5.1266934940826519e-07" d="6.2414067621456861e-08" /> - <superelevation s="525.92285935525547" a="0.024293584320047433" b="0" c="7.6313770490378185e-07" d="2.6199570327295767e-23" /> - <superelevation s="536.03676049670264" a="0.024371646436195334" b="1.5436598609412726e-05" c="5.8278308698285502e-06" d="-2.8723953824475821e-07" /> - <superelevation s="546.15066163814993" a="0.024826738463542549" b="4.5174753551921245e-05" c="9.3991405216499189e-07" d="-9.1192088678975696e-08" /> - <superelevation s="556.2645627795971" a="0.025285432419222081" b="3.62027603453616e-05" c="8.6540060109147635e-07" d="-1.7501674811066543e-07" /> - <superelevation s="566.37846392104439" a="0.025559040741903533" b="0" c="-2.3288185376405439e-06" d="6.1515739195187492e-08" /> - <superelevation s="576.49236506249156" a="0.025384465359636683" b="-2.8229362181103773e-05" c="-4.6543933145112369e-06" d="3.5296993085756286e-07" /> - <superelevation s="586.60626620393873" a="0.024988022785131951" b="-1.4060572220867037e-05" c="6.9511121496175937e-07" d="0" /> - <superelevation s="596.72016734538602" a="0.024916919166414937" b="0" c="3.2050846223005992e-06" d="-1.3119704733019204e-07" /> - <superelevation s="606.83406848683319" a="0.025109039113990976" b="2.45709879911801e-05" c="2.1707519501517841e-06" d="-1.6012567640283466e-07" /> - <superelevation s="616.94796962828048" a="0.025413936253395903" b="1.9342284327180112e-05" c="-9.562227303129337e-07" d="2.6199570327295767e-23" /> - <superelevation s="627.06187076972765" a="0.025511749229163334" b="0" c="-8.395097892804416e-06" d="3.2475597935299344e-07" /> - <superelevation s="637.17577191117493" a="0.024988986180304575" b="-7.0155542274996996e-05" c="-1.2414540631591475e-05" d="1.046929600283995e-06" /> - <superelevation s="647.28967305262211" a="0.024092656790975456" b="0" c="8.0044818521775526e-08" d="0" /> - <superelevation s="657.40357419406928" a="0.024100844655210622" b="1.6191307628293205e-06" c="1.6356703023375115e-08" d="1.5828673308616948e-08" /> - <superelevation s="667.51747533551656" a="0.024135269255599723" b="6.8073832060761234e-06" c="2.525224020795656e-06" d="-1.19896615538099e-07" /> - <superelevation s="677.63137647696374" a="0.024338385771970634" b="2.1094082649945798e-05" c="2.3855894074814106e-06" d="-2.2598702401906579e-07" /> - <superelevation s="687.74527761841102" a="0.024561956188781861" b="0" c="-2.4929881142941934e-05" d="1.6432749865284163e-06" /> - <superelevation s="697.8591787598582" a="0.02371192206220641" b="0" c="1.9369827548349122e-05" d="-1.2767791760043153e-06" /> - <superelevation s="707.97307990130548" a="0.024372375048226362" b="0" c="-7.5316592970570209e-06" d="4.9645593009223368e-07" /> - <superelevation s="718.08698104275265" a="0.024115568070466248" b="0" c="5.1000868051371397e-07" d="0" /> - <superelevation s="728.20088218419983" a="0.024167737366517106" b="1.0316354751989179e-05" c="1.1830642416849458e-05" d="-8.1344484353918385e-07" /> - <superelevation s="738.31478332564711" a="0.024640685827810375" b="0" c="-6.1364424368513117e-06" d="3.647170894502037e-07" /> - <superelevation s="748.42868446709429" a="0.024390305102828618" b="-1.2204920991627843e-05" c="1.5989585028131155e-06" d="-9.8437282803309861e-08" /> - <superelevation s="758.54258560854157" a="0.024328585420654369" b="-1.0069247730913907e-05" c="-2.1722191198983904e-06" d="1.7599615657762141e-07" /> - <superelevation s="768.65648674998874" a="0.024186626350590209" b="0" c="5.6138767974167414e-07" d="1.3099785163647883e-23" /> - <superelevation s="778.77038789143592" a="0.024244051255660953" b="1.1355638989868083e-05" c="4.8618681475336288e-06" d="-3.125798370050514e-08" /> - <superelevation s="788.8842890328832" a="0.024823888110855393" b="0.00010010831571861793" c="1.2791534945339046e-05" d="-8.4655238291522612e-07" /> - <superelevation s="798.99819017433038" a="0.026269022472890723" b="9.9068895484682643e-05" c="-3.2017580965875131e-06" d="-1.1178685316215942e-07" /> - <superelevation s="809.11209131577766" a="0.026827834141104279" b="0" c="-1.6582506745524535e-05" d="1.0439982527470851e-06" /> - <superelevation s="819.22599245722483" a="0.026211672906624399" b="-1.5052803579591872e-05" c="2.2324921959991346e-06" d="-1.4715668166528192e-07" /> - <superelevation s="829.33989359867212" a="0.026135551622971591" b="-1.5052803579591872e-05" c="-5.9397352279776709e-06" d="2.4288613646633546e-07" /> - <superelevation s="839.45379474011929" a="0.025627008151557426" b="-6.0665398724824407e-05" c="-3.3799907547616914e-06" d="2.3268056900783793e-07" /> - <superelevation s="849.56769588156646" a="0.024908423932152892" b="-5.7631801760486633e-05" c="1.4092247012514967e-06" d="-8.1668695289869888e-09" /> - <superelevation s="859.68159702301375" a="0.024461243460339337" b="-3.1632474793690202e-05" c="2.1311892725524938e-06" d="-8.7717131203484567e-08" /> - <superelevation s="869.79549816446092" a="0.024268568486307481" b="-1.5441217790949392e-05" c="3.5686448574566084e-07" d="2.6199570327294879e-23" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="7.9903347889575826" b="-0.0034399798413225872" c="0.00039114697916401586" d="-9.8875876516330862e-06" /> - <laneOffset s="6.6567327614788914" a="7.9818517242157139" b="0.00045312292710451049" c="8.8007554445289051e-05" d="-1.1499932283641462e-06" /> - <laneOffset s="10.11390114144722" a="7.9844225960639692" b="0.0010204025931953458" c="8.0866032935147117e-05" d="-6.3671571006318548e-07" /> - <laneOffset s="18.86458180587853" a="7.9991174329020298" b="0.0022893998613235092" c="0.00044287576406860625" d="-3.8973608744288201e-05" /> - <laneOffset s="20.227802282894441" a="8.0029626822389002" b="0.0032795923181236464" c="0.00029256394257548736" d="-3.5009638006511767e-05" /> - <laneOffset s="29.240574072219527" a="8.0306550502566996" b="2.1711917875527123e-05" c="6.3739889769278485e-06" d="-4.775870971439866e-06" /> - <laneOffset s="30.341703424341659" a="8.0306803099749207" b="1.8377062653994305e-05" c="-3.344749762254032e-07" d="-1.9590970941404849e-08" /> - <laneOffset s="40.455604565788882" a="8.030811691936357" b="5.5994291584680545e-06" c="-3.5603238860773934e-07" d="9.0466141083758886e-08" /> - <laneOffset s="49.583431457681336" a="8.030901938896541" b="2.1711988296157628e-05" c="0.00033912545525510062" d="-2.2435312321489222e-05" /> - <laneOffset s="59.692475618643591" a="8.0426003208472405" b="-0" c="-0.00087914676702209777" d="8.1170138616557249e-05" /> - <laneOffset s="66.213495295932574" a="8.0277240560179486" b="-0.0011109034402188378" c="0.0005131078704856901" d="-0.00010494066051562483" /> - <laneOffset s="69.473166117814941" a="8.0259202101425746" b="-0.0011109043736714874" c="-0.0010733636986755475" d="0.00015904667499039678" /> - <laneOffset s="70.797307990130548" a="8.0229364875839249" b="-0.0031168817359698547" c="-0.00043816422914979349" d="0.00016035613729758493" /> - <laneOffset s="74.411577190678557" a="8.0135184165279121" b="-0" c="0.0013021765198530343" d="-0.00010335144133971124" /> - <laneOffset s="80.911209131577763" a="8.0401510757030668" b="0.0038290245085441715" c="-0.00071455860087891445" d="-0.00010271090885946333" /> - <laneOffset s="82.63564273970546" a="8.0441024207371132" b="0.00044832133986858229" c="-2.1368480476483967e-05" d="4.9719183877221592e-07" /> - <laneOffset s="91.025110273024978" a="8.0466531972502224" b="0.00019476279989104261" c="-9.5747121185127905e-06" d="4.2587155135836757e-07" /> - <laneOffset s="101.13901141447221" a="8.0480841922208359" b="0.00013177589209356747" c="2.9488331535262687e-06" d="4.6491589496246929e-07" /> - <laneOffset s="111.25291255591942" a="8.0501995835119633" b="0.00033409443636138523" c="3.6072086990224217e-06" d="4.8056088255922915e-06" /> - <laneOffset s="113.22738391901567" a="8.0509102976604545" b="0.00040454363071805319" c="1.3520641301625681e-05" d="-1.0399484800880269e-06" /> - <laneOffset s="121.92599071451775" a="8.0547678329841244" b="0.00040369963844044102" c="3.8713639719131123e-06" d="-5.3016193537985395e-07" /> - <laneOffset s="131.48071483881387" a="8.058516051033914" b="0.00033247943991685658" c="-5.2457462234109788e-06" d="-5.1630243310263781e-07" /> - <laneOffset s="141.5946159802611" a="8.0608079762392695" b="6.7930251662297862e-05" c="-2.3529731062164731e-05" d="1.7594188503539042e-06" /> - <laneOffset s="143.4062163934191" a="8.0608642771767229" b="-0" c="-0.0012787375222891701" d="0.00013172331561113194" /> - <laneOffset s="149.25637987116261" a="8.0434736691801021" b="-0.0014371877475178815" c="4.0129549433901528e-05" d="2.9454328034341517e-06" /> - <laneOffset s="151.7085171217083" a="8.0402342149914023" b="-0.0011872489615400291" c="5.0077967055333492e-05" d="5.8317645165559077e-08" /> - <laneOffset s="161.82241826315553" a="8.0334093546695335" b="-0.00015638563513747076" c="4.3024709209894832e-05" d="3.4489799660586171e-06" /> - <laneOffset s="163.35673969350736" a="8.033283152877214" b="-0" c="0.0005090608443542214" d="-2.2175890558983772e-05" /> - <laneOffset s="171.93631940460276" a="8.0567498373669117" b="0.0038380082909315431" c="-6.011596647313636e-05" d="-2.2760758103588192e-05" /> - <laneOffset s="176.02356212517711" a="8.0698783417481508" b="0.0022058980418723389" c="-8.0527928766715198e-05" d="1.584433927645107e-06" /> - <laneOffset s="182.05022054604996" a="8.0805945319095898" b="0.0014079122302929361" c="-4.0337527489149708e-05" d="1.6648524722025132e-06" /> - <laneOffset s="190.70793414285026" a="8.0908406949194447" b="0.0010838227791990312" c="0.00012951931314479542" d="-2.9065917465578936e-05" /> - <laneOffset s="192.16412168749719" a="8.0926038372316302" b="0.001276130321583975" c="5.2048897133147949e-06" d="-2.3168137227844867e-05" /> - <laneOffset s="196.52456804585293" a="8.0963464901510687" b="-0" c="-2.4290712924837796e-05" d="7.6347379158635113e-07" /> - <laneOffset s="202.27802282894442" a="8.0956878183980301" b="-0.00020369295443103648" c="-1.7016925595999288e-05" d="-1.4683032982552064e-07" /> - <laneOffset s="205.38765819763458" a="8.0948854416318419" b="-0.00031378529575278659" c="-5.8282685625826887e-05" d="1.2806545096860898e-06" /> - <laneOffset s="212.39192397039162" a="8.0902683407234122" b="-0.00094175440785716281" c="-1.5957628697522997e-05" d="-9.1323105336132518e-07" /> - <laneOffset s="216.45426029539593" a="8.0861180534852508" b="-0.0011166169130302443" c="3.140048201890151e-06" d="-3.39093350281347e-07" /> - <laneOffset s="222.50582511183885" a="8.0794006180871172" b="-0.0011158667596058742" c="1.7383617690402202e-06" d="2.2309880525644875e-06" /> - <laneOffset s="225.03355467350863" a="8.0766271478676952" b="-0.001064314405530667" c="-0.00023894048723671309" d="5.6692701759712026e-05" /> - <laneOffset s="229.30750140715421" a="8.0721397207343237" b="-0" c="0.00013031129291701549" d="-3.3935546786813488e-06" /> - <laneOffset s="232.61972625328607" a="8.0734460296843178" b="0.0007515502349041374" c="7.6436608199579971e-05" d="-5.9724805391355234e-06" /> - <laneOffset s="242.73362739473328" a="8.0826870156856696" b="0.00046490187856727903" c="-9.7312379194305044e-05" d="-1.1092278530118145e-05" /> - <laneOffset s="244.5550796650856" a="8.0831439293574689" b="-0" c="-0.0019656682994209219" d="0.00027093411435921136" /> - <laneOffset s="248.59689567772645" a="8.0689215267312502" b="-0.0026115752535788711" c="0.00021667732418343449" d="-1.0495859043461528e-05" /> - <laneOffset s="252.8475285361805" a="8.0609294978048975" b="-0.0013384575014195124" c="0.00011107404655717766" d="-7.9774454761199224e-06" /> - <laneOffset s="260.68130891021053" a="8.0534256088394933" b="-0.0010668805023759944" c="-1.7256515723449696e-05" d="-8.7289642261770077e-07" /> - <laneOffset s="262.96142967762773" a="8.0508929291551805" b="-0.0011591888185612286" c="1.5226961693871889e-06" d="5.0788484615423365e-06" /> - <laneOffset s="271.58442165057119" a="8.0442668857641291" b="-0" c="8.9167808750322959e-05" d="-6.8267354776621858e-06" /> - <laneOffset s="273.07533081907496" a="8.044442465018161" b="0.00022035859649172652" c="6.5552447169945453e-05" d="-3.8888075593095795e-06" /> - <laneOffset s="283.64894872794576" a="8.0495041723603524" b="0.00030228931720616451" c="-9.2769567273356543e-06" d="-4.8527090040544645e-08" /> - <laneOffset s="293.30313310196937" a="8.0515142216515851" b="0.00010959776456682936" c="-1.0179061565797889e-05" d="2.4200518087579966e-08" /> - <laneOffset s="298.79414975741832" a="8.0518131198947991" b="-0" c="-0.00010688411491910535" d="5.2186471471665118e-06" /> - <laneOffset s="303.41703424341659" a="8.0500444741408916" b="-0.00065364175421603668" c="-3.6148167174110852e-05" d="5.1917474920264932e-06" /> - <laneOffset s="312.6192715539346" a="8.0450141400671296" b="-0" c="3.9634818825526853e-05" d="-9.7961059302038946e-07" /> - <laneOffset s="323.64483652631105" a="8.0485192971229189" b="0.00051673908889450948" c="6.0894443571075831e-07" d="-9.095526930734139e-07" /> - <laneOffset s="333.75873766775828" a="8.0528668469512041" b="0.00024993954305873998" c="-3.7431595333759315e-05" d="1.5804191508304969e-07" /> - <laneOffset s="337.17110047562369" a="8.053290149309003" b="-0" c="-0.00078420673064697724" d="9.6391105224980075e-05" /> - <laneOffset s="342.59488398632897" a="8.0456003677425052" b="-0" c="0.00016277732303593323" d="-1.8111010166787188e-05" /> - <laneOffset s="343.87263880920551" a="8.0458283453138542" b="0.00032727179550199454" c="8.7618707540016512e-05" d="-2.0633486370911231e-05" /> - <laneOffset s="347.98823525675357" a="8.0472209902130398" b="-0" c="-0.00023331448480457456" d="2.8682119718997886e-05" /> - <laneOffset s="353.41123018856297" a="8.0449338181153429" b="-0" c="0.00066797944013905169" d="-6.5216111085316259e-05" /> - <laneOffset s="360.23959850658059" a="8.0553156912618373" b="-0" c="-0.00025843310331392574" d="2.6496739991742702e-05" /> - <laneOffset s="364.10044109209991" a="8.0529883509127291" b="-0.00081064945876909377" c="4.6737127599048274e-05" d="2.6053919328858641e-05" /> - <laneOffset s="366.77799969933375" a="8.0516530010982397" b="-0" c="0.00017893131845977972" d="-6.3223203046654236e-06" /> - <laneOffset s="374.21434223354714" a="8.0589478700459214" b="0.0016123315675980407" c="4.0356025205071609e-05" d="-6.3934209283031194e-06" /> - <laneOffset s="384.32824337499437" a="8.0727685060488312" b="0.00046667707682553815" c="-0.00013361597115851289" d="-1.4821947311544638e-05" /> - <laneOffset s="385.7420048938576" a="8.0731193324001449" b="-0" c="-0.00051158596661148644" d="2.667753449355859e-05" /> - <laneOffset s="394.4421445164416" a="8.0519642300109471" b="-0.0028438764840921205" c="0.00018920609155168114" d="2.6588652409915337e-05" /> - <laneOffset s="397.55699934903913" a="8.0457452499469202" b="-0.00089126257458228581" c="4.6924756649750681e-05" d="-1.2355717339921991e-06" /> - <laneOffset s="404.55604565788883" a="8.0413823205980961" b="-0.00041598504234295717" c="2.2904357507105167e-05" d="-1.287768628052143e-06" /> - <laneOffset s="414.66994679933606" a="8.0381857233217033" b="-0.00034786163517027134" c="-1.144897985706152e-05" d="-1.6384848128346887e-06" /> - <laneOffset s="419.53148273157854" a="8.0360357280970813" b="-0.00057535535245035617" c="-2.109790530015321e-05" d="7.3476240143437059e-07" /> - <laneOffset s="424.78384794078323" a="8.0325381827482296" b="-0.00073617273881826275" c="-8.0026064666547334e-06" d="9.7522049054164602e-07" /> - <laneOffset s="434.89774908223046" a="8.0252829349658725" b="-0.00059877905340771826" c="1.7368910289335121e-05" d="2.0989738096820846e-06" /> - <laneOffset s="437.219287673238" a="8.0240127191674375" b="-0.00048419634345113504" c="2.2556127772267144e-06" d="5.785585196639357e-07" /> - <laneOffset s="445.01165022367769" a="8.0206503989722346" b="-0.00034365143183047046" c="1.2394266035289833e-05" d="4.9298090238842628e-07" /> - <laneOffset s="454.02643271954963" a="8.0189208490922166" b="-0" c="8.8091624728486317e-05" d="4.8200591311990662e-06" /> - <laneOffset s="455.12555136512492" a="8.0190336693088486" b="0.00021111508239739585" c="8.5383727153923506e-05" d="-4.7351630442082407e-06" /> - <laneOffset s="465.23945250657215" a="8.0250040377710778" b="0.00048514659715354411" c="-4.5762907418430286e-05" d="-8.3263024183877576e-06" /> - <laneOffset s="468.18009431589962" a="8.0258232230201543" b="-0" c="-0.0043072869055075886" d="0.00051712528982923831" /> - <laneOffset s="473.67361980869379" a="7.9815676114393384" b="-0.00050568409256694191" c="8.9104823263732799e-05" d="-1.1362813355955784e-05" /> - <laneOffset s="475.35335364801938" a="7.9809157538542745" b="-0.00030252004917177426" c="4.3403336588506786e-05" d="-4.1257049428282657e-06" /> - <laneOffset s="484.21836436674459" a="7.9787705842215875" b="-0.00050567579817899601" c="-0.00043775587641238208" d="3.4242762182784173e-05" /> - <laneOffset s="485.46725478946655" a="7.9775229732257511" b="-0.0014388659294803617" c="-0.00032757391165776328" d="2.4961394359541632e-05" /> - <laneOffset s="492.77120438806242" a="7.9592644373280468" b="-0.0022291351942251235" c="8.4402759869387623e-05" d="-1.6911161090893511e-05" /> - <laneOffset s="495.58115593091378" a="7.9532918989726742" b="-0.002155382704773467" c="-6.0797951138064855e-05" d="-1.6587938518491308e-05" /> - <laneOffset s="497.41579430547574" a="7.9490304775202212" b="-0.0025459671388075749" c="-0.00041619156236446245" d="3.3910203250568996e-05" /> - <laneOffset s="505.69505707236101" a="7.9186678449155803" b="-0.0024642398465922694" c="0.00041858641521940647" d="3.6501541767568885e-05" /> - <laneOffset s="507.50596749374864" a="7.9157948096093707" b="-0.00058908575255086791" c="5.3502745804540545e-05" d="-2.358157748041138e-06" /> - <laneOffset s="515.8089582138083" a="7.9132422748761986" b="-0.00018833189275612399" c="-1.1562884641035119e-05" d="-2.1755050613907992e-06" /> - <laneOffset s="520.5622533040148" a="7.9118521896376368" b="-0.00044571436988097009" c="-5.9337982138115855e-05" d="2.5939307224956626e-06" /> - <laneOffset s="525.92285935525547" a="7.9081573250672088" b="-0.00085827112571679556" c="-1.8378835072687282e-05" d="2.4161441105520755e-06" /> - <laneOffset s="536.03676049670264" a="7.9000965149244466" b="-0.00048858520294613899" c="6.0657470874123749e-05" d="1.4576370059337375e-06" /> - <laneOffset s="539.60517751781788" a="7.8991916604125869" b="-0" c="0.0013964669547502334" d="-0.00012262980452519033" /> - <laneOffset s="546.15066163814993" a="7.9246318569015868" b="0.0025194850960448116" c="-0.00098100573925224066" d="-0.00013861060768308596" /> - <laneOffset s="547.20098556456605" a="7.9260352984689453" b="-0" c="-0.00033322583864296544" d="1.7036500953536737e-05" /> - <laneOffset s="556.2645627795971" a="7.9113459925964165" b="-0.001841870720302315" c="0.00014276005371181708" d="1.4413719205955315e-05" /> - <laneOffset s="558.55692303868693" a="7.9080475833438673" b="-0.00096012714098988011" c="1.521224898286172e-05" d="-1.5835271347324576e-07" /> - <laneOffset s="566.37846392104439" a="7.9013927709312606" b="-0.00075122308149555312" c="1.2324624805489221e-05" d="6.7905271693649536e-08" /> - <laneOffset s="576.49236506249156" a="7.8951259252476396" b="-0.00048108471403277161" c="1.1042986210401845e-05" d="1.5238158135289966e-07" /> - <laneOffset s="586.60626620393873" a="7.8915475281157077" b="-0.00021094758103317758" c="1.2713349697127624e-05" d="5.4119862438108059e-08" /> - <laneOffset s="594.50425824745355" a="7.8907011655265675" b="-0" c="3.7811884576531193e-05" d="-2.182624483204187e-07" /> - <laneOffset s="596.72016734538602" a="7.8908844566084975" b="0.00016436022647566437" c="3.7449161437689951e-05" d="-5.3751655456128697e-07" /> - <laneOffset s="601.81968936843089" a="7.8926252032594961" b="0.00050437131811557109" c="0.00012102876562983839" d="-3.4872003302387434e-06" /> - <laneOffset s="606.83406848683319" a="7.8977577877172402" b="0.0014550930745239796" c="7.3334237433966801e-05" d="-3.2091741577459411e-06" /> - <laneOffset s="616.94796962828048" a="7.9166558009309629" b="0.0019536746642269658" c="-2.1672756954509587e-05" d="-3.1296243886617115e-06" /> - <laneOffset s="627.06187076972765" a="7.9309603580331007" b="0.00055488523135284722" c="-0.00012071258863882107" d="-1.6776699859232347e-06" /> - <laneOffset s="629.25955657300074" a="7.9315789934887935" b="-0" c="-0.00021320789101654145" d="1.8650022856036334e-05" /> - <laneOffset s="636.88091956586175" a="7.9274509210154847" b="-0" c="0.0050846608926044491" d="-0.001093192788049644" /> - <laneOffset s="639.98172114949705" a="7.9437472091111436" b="-0" c="-0.00020992284305293887" d="7.191368845854402e-06" /> - <laneOffset s="647.28967305262211" a="7.935342752827018" b="-0.0019160218732235113" c="-5.9020609214607059e-05" d="6.566181426091483e-06" /> - <laneOffset s="654.408312677509" a="7.9210810788592108" b="-0.0017580904436998771" c="-6.1317757313084973e-05" d="2.4175475970853338e-06" /> - <laneOffset s="657.40357419406928" a="7.9153299853116819" b="-0.0020603481324222676" c="-3.9138076498636083e-05" d="2.463549260894425e-06" /> - <laneOffset s="667.51747533551656" a="7.8930370471917124" b="-0.0020960286805842901" c="3.7435433503809655e-05" d="2.3032469157135582e-06" /> - <laneOffset s="673.81030181615381" a="7.8819034879367944" b="-0.0013512558864288548" c="3.7427145172923486e-05" d="-5.8653702871496693e-07" /> - <laneOffset s="677.63137647696374" a="7.8772539746008921" b="-0.0010909234523081208" c="3.5512691257894087e-05" d="-5.0951718349857405e-08" /> - <laneOffset s="687.74527761841102" a="7.8698003985594696" b="-0.00038821546110886867" c="2.6073142603898273e-05" d="1.148417022112331e-06" /> - <laneOffset s="693.21405611342584" a="7.8686449501524187" b="-0" c="0.0071745232572034317" d="-0.0012608505605288566" /> - <laneOffset s="697.00753938141588" a="7.9030599790642251" b="-0" c="-0.0001925349917444419" d="7.084276842602352e-06" /> - <laneOffset s="707.97307990130548" a="7.8892498129141533" b="-0.0016669947290789886" c="4.1228257628674788e-05" d="7.4933478252378351e-06" /> - <laneOffset s="714.94351460844655" a="7.8821710795382058" b="-0" c="0.0010241979232464701" d="-0.00024488381442183823" /> - <laneOffset s="717.06136092913243" a="7.884438706374377" b="0.0010430752959650752" c="-6.0651014104016721e-05" d="4.2478734399451434e-06" /> - <laneOffset s="718.08698104275265" a="7.8854492895840238" b="0.00093207046712540272" c="-5.1296697902944255e-05" d="1.6238114208135874e-06" /> - <laneOffset s="728.20088218419983" a="7.8913088998167265" b="0.00039275486828991787" c="9.3660089495347833e-07" d="1.4668879121691439e-06" /> - <laneOffset s="738.31478332564711" a="7.8968945746269501" b="0.00086184852399445581" c="4.5376618223299445e-05" d="2.1062972828014399e-06" /> - <laneOffset s="742.25760882139446" a="7.9011272168841016" b="0.0013179053879582758" c="0.00085184103391276961" d="-0.00013416176294041426" /> - <laneOffset s="747.1586242841156" a="7.9122536604166971" b="-0" c="-0.00019842568271256846" d="3.1594797093567382e-05" /> - <laneOffset s="748.42868446709429" a="7.9119983167463657" b="-0.00035113288355198774" c="-8.7558730872539807e-05" d="2.7583030732281781e-05" /> - <laneOffset s="751.80261609400225" a="7.9108762787398605" b="-0" c="0.00036845953592918495" d="-2.5531164229074611e-05" /> - <laneOffset s="759.51946073906083" a="7.9210854485117332" b="0.0011255711502385314" c="-6.845968219363153e-05" d="1.867924341702796e-06" /> - <laneOffset s="768.65648674998874" a="7.9270793135754252" b="0.00034236771657201537" c="-1.7833875545809106e-05" d="1.7809686277896174e-06" /> - <laneOffset s="778.77038789143592" a="7.9305602626450877" b="0.00052815877403486087" c="4.0388569830837681e-05" d="1.3538293058652469e-06" /> - <laneOffset s="784.50991177030937" a="7.9351780996746069" b="0.0011255751766584882" c="0.00051629874211392771" d="-3.6742758795186299e-05" /> - <laneOffset s="788.8842890328832" a="7.9469057241134307" b="0.0035333086162553976" c="6.7642530548318278e-05" d="-3.9217819176588461e-05" /> - <laneOffset s="792.48457601411837" a="7.9586732519019181" b="0.0024953417379918177" c="-0.0001365668640720637" d="3.1078661366151182e-06" /> - <laneOffset s="798.99819017433038" a="7.9699916715966523" b="0.0011118279081354235" c="-5.8443099157338721e-05" d="4.3045889478551628e-06" /> - <laneOffset s="809.11209131577766" a="7.9797117462570046" b="0.0012506145299818509" c="6.8152979192140451e-05" d="5.5992838057032452e-06" /> - <laneOffset s="813.79110849281574" a="7.9876290632167892" b="0.0022561512005204293" c="0.00022621199877788443" d="-3.0921747370779255e-05" /> - <laneOffset s="819.79617590005614" a="8.0026387621395454" b="0.0016277957532532159" c="-9.0767303434799172e-05" d="3.4855573267666584e-08" /> - <laneOffset s="828.809836809481" a="8.009962198816746" b="-0" c="-0.0042148820184053602" d="0.00064148982169988573" /> - <laneOffset s="832.91335118669019" a="7.9833144247603771" b="-0.0021858432890285188" c="6.2031791409477844e-05" d="5.7429930317971907e-07" /> - <laneOffset s="839.45379474011929" a="7.9718322782686828" b="-0.0013007113322982826" c="6.3159132764127786e-05" d="3.1248930969795922e-07" /> - <laneOffset s="849.0652889338603" a="7.9654426561617457" b="-0" c="0.00041048723190217082" d="-2.480517502244127e-05" /> - <laneOffset s="860.09758982889059" a="7.9820963507120393" b="-0" c="-0.00038726633232715607" d="1.7560119792734039e-05" /> - <laneOffset s="869.79549816446092" a="7.9616904561190154" b="-0.0025567892192447823" c="0.00012093673307026695" d="1.769169549278394e-05" /> - <laneOffset s="874.82204060469098" a="7.9541411174671506" b="-0" c="0.0014218195617407448" d="-0.00019524974247642592" /> - <laneOffset s="878.24614765372144" a="7.962972762709799" b="0.0028693026301266694" c="0.0019762053211582467" d="-0.0011382015271577096" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4928828029174319" b="0.00019398594846065011" c="-6.0944370479596279e-05" d="4.8010764722708454e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="6.6567327614788914" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8213665155131364" b="-0.0049824992130395778" c="0.00049575602099060279" d="-1.2374299272633707e-05" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.867120257697608" b="0.0041386059233483336" c="-0.00035062698087319163" d="6.0725843477103483e-06" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9435238105019672" b="-0.016958515215534375" c="0.0034896716632342468" d="-0.0001864493153529357" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.5325186433471409" b="0.030802300650085553" c="-0.0012301810788048696" d="-0.00013539575998564672" /> - <roadMark sOffset="0" color="standard" width="0.30932594790760459" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30932599999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="restricted" level="false"> - <link /> - <width sOffset="0" a="0.31167261757948417" b="-0.029211455665145623" c="-0.012324224197712707" d="0.0014540018687503437" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="-6" type="driving" level="false"> - <link> - <successor id="-5" /> - </link> - <width sOffset="0" a="3.3584506803681373" b="0.0050055822302183658" c="0.010296305825664384" d="-0.0011359466270887491" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="6.6567327614788914" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-7" type="shoulder" level="false"> - <link> - <successor id="-6" /> - </link> - <width sOffset="0" a="2.4928828029175456" b="-9.8642599913210602e-06" c="3.7181576717302005e-06" d="-3.1244798025509387e-07" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="6.6567327614788914"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4928897345644376" b="4.3802457776440573e-05" c="-4.1749297498566143e-05" d="3.1445488245681006e-06" /> - <width sOffset="3.457168379968329" a="2.4926721120228246" b="-0.00013211517736968852" c="-7.9477660156379213e-06" d="3.3455767426047492e-06" /> - <width sOffset="12.207849044399637" a="2.4931492169175486" b="0.0004973448143429939" c="-0.00029884436357208394" d="4.1682469777763861e-05" /> - <width sOffset="13.571069521415549" a="2.4933774411726546" b="-8.5052334676300086e-05" c="-0.00013134972912731243" d="3.6714238865017624e-05" /> - <width sOffset="16.208023018551689" a="2.4929130153047581" b="-1.1898594520637351e-05" c="-0.00025849088085147179" d="3.9280196519832833e-05" /> - <width sOffset="22.583841310740635" a="2.4925100132268572" b="0.0014822643788924312" c="-0.00016757237411288406" d="9.0464294836795938e-06" /> - <width sOffset="23.684970662862767" a="2.4939510768315838" b="0.0011461326626397211" c="-0.00014404045877164671" d="4.31014558255409e-06" /> - <width sOffset="33.798871804309989" a="2.4952680158698506" b="-0.00044482200063169223" c="-1.3084494326405793e-05" d="4.3394910724489524e-06" /> - <width sOffset="42.926698696202443" a="2.4934177994158588" b="0.0004009750471820498" c="-0.0002312583342230419" d="2.6865269537566652e-05" /> - <width sOffset="43.912772945757212" a="2.4936140867644845" b="2.3265994479959714e-05" c="-0.00016383559879579374" d="2.8833718208823756e-05" /> - <width sOffset="47.676906584903115" a="2.4929181107563796" b="1.5476904220096746e-05" c="-0.00030198975318999584" d="2.9732302016309435e-05" /> - <width sOffset="53.035742857164699" a="2.4889042862813451" b="-0.00065967157524761313" c="0.00071387539552409253" d="-7.3873148920752414e-05" /> - <width sOffset="54.026674087204427" a="2.4888797017742625" b="0.0005375132305612785" c="0.00048781608609337784" d="-7.4660574426686197e-05" /> - <width sOffset="59.556762534453682" a="2.4941438965823757" b="-0.00091693635334533447" c="-0.00055514107834019727" d="0.00011145022470550179" /> - <width sOffset="62.816433356336049" a="2.4891164922332099" b="-0.00098346304029754326" c="0.0010949876001783794" d="-0.00015253711079962152" /> - <width sOffset="64.140575228651656" a="2.4893800026740784" b="0.0011140212151263596" c="0.00048727621760698471" d="-0.00015402838673531915" /> - <width sOffset="67.066601493841503" a="2.4929528861948889" b="9.3852037049136066e-06" c="0.00028195539039931375" d="-0.00023966503361785965" /> - <width sOffset="67.754844429199665" a="2.4930147694719889" b="5.6920410300267344e-05" c="-0.00021451791286683335" d="2.4042545021302339e-05" /> - <width sOffset="74.254476370098871" a="2.4909239381291091" b="0.00031539293077134743" c="0.00025394047711556496" d="2.3958248316406828e-05" /> - <width sOffset="75.978909978226568" a="2.4923458032692949" b="0.0014049317811815885" c="-0.00084666084699880286" d="-7.9249852379850933e-05" /> - <width sOffset="76.728940847311918" a="2.4928898218835407" b="1.1431046120235241e-06" c="1.7696690827344326e-05" d="-4.1060165100305534e-07" /> - <width sOffset="84.368377511546086" a="2.493748286263596" b="0.000199639242414265" c="7.9452368777465261e-06" d="-4.5135956869245172e-07" /> - <width sOffset="94.482278652993315" a="2.4961131850037042" b="0.00022184386315668593" c="-5.8733375048578723e-06" d="-4.3924599861284407e-07" /> - <width sOffset="104.59617979444053" a="2.4973016755693198" b="-3.1753579088189272e-05" c="-1.1202064738474973e-05" d="-4.5063007445735943e-06" /> - <width sOffset="106.57065115753677" a="2.4971606198957996" b="-0.00012869383392660261" c="-1.9342571636875627e-05" d="1.3392565611003407e-06" /> - <width sOffset="114.71008093588775" a="2.4955538544123179" b="-0.00017739032544816636" c="1.2152084417856594e-05" d="7.860666659395034e-07" /> - <width sOffset="115.26925795303886" a="2.4954585989582476" b="-0.00016306263334588434" c="-4.0182957573966154e-06" d="2.7628012158799852e-07" /> - <width sOffset="124.82398207733497" a="2.4937747320142769" b="-0.00016418292939503022" c="5.9133431739339982e-06" d="1.8162261856862251e-07" /> - <width sOffset="134.26994137529974" a="2.492904567939064" b="-3.8520721031848625e-06" c="-0.00031770344830262524" d="1.55243384749e-05" /> - <width sOffset="134.93788321878222" a="2.4927648790085204" b="-0.0004074885471785708" c="-0.00028397689297744656" d="1.3248617200598673e-05" /> - <width sOffset="136.74948363194022" a="2.4911734593877028" b="-0.0013059521068194933" c="0.0010527965911812612" d="-0.00011671527956017381" /> - <width sOffset="142.59964710968373" a="2.4961962234947226" b="-0.00097142346628292906" c="-2.6720874084772093e-06" d="1.2062603247634529e-05" /> - <width sOffset="145.05178436022942" a="2.4939759514307553" b="-0.00076693164530158928" c="8.7719080134825918e-05" d="1.6597843130541882e-05" /> - <width sOffset="147.59981081964145" a="2.4928658766264551" b="3.3708731497755079e-06" c="-5.8583953070451869e-05" d="7.2902428317992062e-06" /> - <width sOffset="155.16568550167665" a="2.4926952166516809" b="0.00036882747313057244" c="0.00011193827430567634" d="4.0154852581243788e-06" /> - <width sOffset="156.70000693202849" a="2.493539139145474" b="0.00074068512994187132" c="-0.0003197391939600649" d="2.9640355783179387e-05" /> - <width sOffset="162.45016525951246" a="2.4928616116357318" b="3.6978483343589122e-06" c="-0.00020664441610580795" d="2.3195149467851687e-05" /> - <width sOffset="165.27958664312388" a="2.4917431566290738" b="-0.0006085953802862855" c="-1.1042868720633319e-05" d="2.2940970861233025e-05" /> - <width sOffset="169.36682936369823" a="2.4906376038258422" b="0.00045085966782543998" c="1.1578813418389452e-05" d="-1.4042211699941997e-06" /> - <width sOffset="175.39348778457108" a="2.4934679579572574" b="0.00043741625894730212" c="-1.5927880454436828e-05" d="-1.7065601489694406e-06" /> - <width sOffset="184.05120138137138" a="2.4949536242180042" b="-0.00022213258717453739" c="-0.00018686800044703987" d="2.9024209787593529e-05" /> - <width sOffset="185.50738892601831" a="2.4943235287763805" b="-0.00058172633902179682" c="-6.0992618740904441e-05" d="2.3854694723236203e-05" /> - <width sOffset="189.86783528437405" a="2.4926049882473666" b="0.00024704675005678329" c="-2.2515924710992745e-05" d="-7.6916296197602821e-08" /> - <width sOffset="195.62129006746554" a="2.4932663840839755" b="-1.968026492839281e-05" c="-2.1693145777034348e-05" d="4.6757781387122883e-07" /> - <width sOffset="198.7309254361557" a="2.4930094764602764" b="-0.00014103161476197718" c="2.2564837415183857e-05" d="-9.5990702563899878e-07" /> - <width sOffset="205.73519120891274" a="2.4927988281784028" b="3.3790257516823959e-05" c="6.3482187183904068e-06" d="-1.7382837092201765e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="209.79752753391705" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.806517242273503" b="-2.7261748217319694e-05" c="0.00012628493409160295" d="-2.4067857133802095e-06" /> - <width sOffset="3.457168379968329" a="3.8078329043401133" b="0.00075961700989758598" c="0.00010362154493647844" d="-2.1643399475925622e-06" /> - <width sOffset="12.207849044399637" a="3.8209645520291531" b="0.0020759359321306744" c="0.00042552802035707794" d="-4.0501232602169267e-05" /> - <width sOffset="12.367992972953576" a="3.8213077473483503" b="0.0022091112966131179" c="0.00042161013208923809" d="-3.6342205227158535e-05" /> - <width sOffset="13.571069521415549" a="3.8245124293896788" b="0.0030657654415098897" c="0.00029428820193230044" d="-3.5030412074034483e-05" /> - <width sOffset="22.583841310740635" a="3.8504024773890757" b="-0.00016609668252377645" c="7.5365525435155579e-06" d="-4.7966450381560032e-06" /> - <width sOffset="23.684970662862767" a="3.8502223174011538" b="-0.00016694683679836721" c="-2.0783633356948627e-07" d="-2.9089522833745956e-08" /> - <width sOffset="33.798871804309989" a="3.8484824789257353" b="-0.00018007769787808443" c="-8.1578399403413093e-07" d="2.5591419539511566e-08" /> - <width sOffset="42.926698696202443" a="3.8467902544223556" b="-0.00018857374995103369" c="0.0003368892079708596" d="-2.2500187046082234e-05" /> - <width sOffset="43.912772945757212" a="3.8469103051525728" b="0.00041018813656511981" c="0.00027910159534785063" d="-2.7310997276438264e-05" /> - <width sOffset="45.086589805627078" a="3.8477321787874637" b="0.00095252540629441409" c="0.00020588073584086695" d="-2.3123590844582016e-05" /> - <width sOffset="53.035742857164699" a="3.8566983902985426" b="-0.00015779175524720802" c="-0.00088343168554380614" d="8.0481860094392955e-05" /> - <width sOffset="54.026674087204427" a="3.855752860499388" b="-0.0016715456403283697" c="-0.00064235554033127587" d="8.0653636089062013e-05" /> - <width sOffset="59.556762534453682" a="3.8405048089253491" b="-0.0013764925114420885" c="0.00050002810729034254" d="-0.0001054571630430784" /> - <width sOffset="62.816433356336049" a="3.8376783623695125" b="-0.0014782291111177378" c="-0.0010914943465251438" d="0.0001585301724627453" /> - <width sOffset="64.140575228651656" a="3.8341752611861857" b="-0.0035349384051473857" c="-0.00045960106285478363" d="0.00016035023325125872" /> - <width sOffset="65.40177989132664" a="3.8293076034974343" b="-0.0039290632733631923" c="3.8338815365342123e-05" d="0.00016342753407709053" /> - <width sOffset="67.754844429199665" a="3.8224037931490376" b="-0.0010339838832492121" c="0.0011936354247546071" d="-0.00010028004456014268" /> - <width sOffset="74.254476370098871" a="3.8385739347750931" b="0.00177334174338371" c="-0.00076295791162433665" d="-9.9665547536561774e-05" /> - <width sOffset="75.978909978226568" a="3.8388520840257465" b="-0.0017471165110036734" c="-5.4013220979572531e-05" d="3.5425531616735153e-06" /> - <width sOffset="84.368377511546086" a="3.8224848824702731" b="-0.0019053925222260633" c="3.4705059350216467e-05" d="3.4947379108634004e-06" /> - <width sOffset="94.482278652993315" a="3.8103794655948446" b="-0.00013094477535586553" c="0.00014034323755061998" d="3.5337822535610008e-06" /> - <width sOffset="95.409552565201409" a="3.8103815337160931" b="0.00013844389974018468" c="2.2230212616054166e-05" d="4.4217427106293204e-07" /> - <width sOffset="104.59617979444053" a="3.8138722819700162" b="0.00065883597807964395" c="2.3208309947436114e-05" d="4.6785931172047227e-06" /> - <width sOffset="106.57065115753677" a="3.8152996269049391" b="0.00080520327225803458" c="3.236937591339415e-05" d="-1.1669641884750979e-06" /> - <width sOffset="114.71008093588775" a="3.8233687302756891" b="0.0011002045540398292" c="3.3049558751276596e-06" d="-2.8807818107566724e-07" /> - <width sOffset="115.26925795303886" a="3.8239849223981466" b="0.0011036304368371027" c="2.031072719754399e-05" d="2.2170836293226159e-07" /> - <width sOffset="116.92367370178931" a="3.8258673822509568" b="0.0011726557189333296" c="6.607879602536528e-05" d="-3.2554033552806582e-06" /> - <width sOffset="124.82398207733497" a="3.8376507948930945" b="0.0016071846949311194" c="-9.5731164667436688e-06" d="-3.2173355884617211e-06" /> - <width sOffset="132.60714774826468" a="3.8480629338003665" b="0.00087347033200907529" c="-4.2219389899102347e-05" d="3.0441477628692608e-07" /> - <width sOffset="134.93788321878222" a="3.849873266811402" b="0.0006816269154310405" c="-4.4184776828813653e-05" d="1.66752110991739e-06" /> - <width sOffset="136.74948363194022" a="3.8509730067886663" b="0.00053795448838348046" c="-0.0012998920140094557" d="0.00013163141787069719" /> - <width sOffset="142.59964710968373" a="3.8359871208178253" b="-0.0011561831674278939" c="1.736220729924452e-05" d="2.8535350629828473e-06" /> - <width sOffset="145.05178436022942" a="3.8332984739211868" b="-0.0010195594139637231" c="2.9691367399602597e-05" d="-2.3310328498877538e-07" /> - <width sOffset="148.85446330716726" a="3.8298379469624111" b="-0.00080385821580114091" c="-0.00025732894881116432" d="1.057963795275937e-05" /> - <width sOffset="155.16568550167665" a="3.8171743832631071" b="-0.0027877692023575863" c="-6.4647781564859753e-05" d="1.3992271240727315e-05" /> - <width sOffset="156.70000693202849" a="3.8127953993953314" b="-0.0028873307649472119" c="0.00044991874682694436" d="-1.1632599284313642e-05" /> - <width sOffset="165.27958664312388" a="3.8137950645609049" b="0.0022640981752809911" c="0.0001511077032002639" d="-1.1821974139876146e-05" /> - <width sOffset="168.29768668658204" a="3.8216797628898611" b="0.002853157977226468" c="-0.00024570460152404592" d="-2.3288449897942551e-05" /> - <width sOffset="169.36682936369823" a="3.8244208784248936" b="0.0022479107160343556" c="-6.1726362202376827e-05" d="1.0567421351121222e-06" /> - <width sOffset="175.39348778457108" a="3.8359576415519072" b="0.0016190478772593244" c="-3.5823345564839831e-05" d="1.1011798127809959e-06" /> - <width sOffset="184.05120138137138" a="3.8480043275334141" b="0.0012463714630469348" c="0.00011939314572736078" d="-2.9629590125202716e-05" /> - <width sOffset="185.50738892601831" a="3.8499809583374525" b="0.0014056020342280069" c="-5.5785194849827115e-06" d="-2.4752169564470046e-05" /> - <width sOffset="188.92980682266099" a="3.8537339449328689" b="0.00049765563717186513" c="-0.00049120755378699176" d="-1.0587109855107025e-05" /> - <width sOffset="189.86783528437405" a="3.853759809567542" b="-0.00045182440609215662" c="-0.00024742592872761192" d="1.3344501160804907e-05" /> - <width sOffset="195.62129006746554" a="3.8455113956228724" b="-0.0019737334742671673" c="-2.0245721590397345e-05" d="1.2779578210878105e-05" /> - <width sOffset="198.7309254361557" a="3.839562308943238" b="-0.0017289179702836607" c="5.9077769944528629e-05" d="1.4207063050427799e-05" /> - <width sOffset="202.46110136013445" a="3.8346725429208011" b="-0.00069513674049742299" c="0.0018117018811672119" d="-0.00025120656544536254" /> - <width sOffset="205.73519120891274" a="3.8430008057724798" b="0.0030896625526523531" c="-0.00065412126951540318" d="-0.0002483331300372332" /> - <width sOffset="207.19711661127963" a="3.8453437489103468" b="-0.00041512242630039426" c="-0.00024348693969709979" d="4.0388234122279615e-05" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8809240895974098" b="0.00027781243378937931" c="-0.00020605262271627858" d="4.5273000760634738e-06" /> - <width sOffset="3.457168379968329" a="3.879608858883028" b="-0.00098457373903081385" c="-0.00015678110933713493" d="4.778139912055368e-06" /> - <width sOffset="12.367992972953576" a="3.8617673827536012" b="-0.0026404786779169586" c="-4.4589800762886673e-05" d="6.1911215743037244e-07" /> - <width sOffset="13.571069521415549" a="3.8585272238812456" b="-0.0027450802689722355" c="-3.720474857143454e-05" d="3.2701781031753209e-06" /> - <width sOffset="23.684970662862767" a="3.8303412414249292" b="-0.0024941212383130236" c="6.2856504912299954e-05" d="3.2672538885114127e-06" /> - <width sOffset="29.868999477020083" a="3.8180939715850628" b="-0.0013418673119873321" c="2.7019373062561806e-05" d="-2.087041561511723e-07" /> - <width sOffset="33.798871804309989" a="3.8132252219844358" b="-0.0011391715551553759" c="2.4796531337541397e-05" d="-1.6937662107653077e-07" /> - <width sOffset="43.912772945757212" a="3.8040649849371406" b="-0.00068956933191692863" c="1.1068717000266383e-05" d="4.6325124164685315e-06" /> - <width sOffset="45.086589805627078" a="3.8032783001594441" b="-0.00064443537225721285" c="4.4284128524299152e-06" d="4.4510598461258348e-07" /> - <width sOffset="54.026674087204427" a="3.7981889797689248" b="-0.00045852917370012129" c="1.4681189088971878e-05" d="2.8543724228793016e-07" /> - <width sOffset="64.140575228651656" a="3.7953485167401508" b="-7.3968003847284843e-05" c="2.4566084721916848e-05" d="-2.2632676724515544e-07" /> - <width sOffset="65.40177989132664" a="3.7952938496386124" b="-1.3082293984935118e-05" c="0.00013247325889202474" d="-3.3036275931469463e-06" /> - <width sOffset="74.254476370098871" a="3.8032679796241045" b="0.0015556905991249716" c="4.4544349308056092e-05" d="-3.2900769955257319e-06" /> - <width sOffset="78.024776367927728" a="3.8095902719548667" b="0.0017512747861454837" c="2.1030776007682897e-05" d="-3.1102047582295764e-06" /> - <width sOffset="84.368377511546086" a="3.8207520096627476" b="0.0016426206762865361" c="-3.8388431790003775e-05" d="-3.1278067651529905e-06" /> - <width sOffset="94.482278652993315" a="3.8302026148909092" b="-9.3732342626448768e-05" c="-0.00013327109232304409" d="-3.1297894169003124e-06" /> - <width sOffset="95.409552565201409" a="3.829998612536214" b="-0.00034896328232184021" c="-1.4034231334081209e-05" d="-3.8181434396974202e-08" /> - <width sOffset="104.59617979444053" a="3.8255788083798965" b="-0.000616484651403441" c="-1.7113386794761459e-05" d="5.5389280312135179e-08" /> - <width sOffset="114.71008093588775" a="3.8176505017656668" b="-0.00094565338187658013" c="-1.4905167470012943e-05" d="-7.6627588027376331e-07" /> - <width sOffset="116.92367370178931" a="3.8154758635857569" b="-0.0010229055628437557" c="-6.4661511110911715e-05" d="2.7108358383285617e-06" /> - <width sOffset="118.1106645154407" a="3.8141751130467827" b="-0.0011649525285895603" c="-4.7359719297473192e-05" d="2.5820552539373707e-06" /> - <width sOffset="124.82398207733497" a="3.8050012057341123" b="-0.0014517250997112322" c="8.7999047441375442e-06" d="2.5421337222014447e-06" /> - <width sOffset="132.60714774826468" a="3.7954338470047118" b="-0.00085275326984129236" c="2.5680554216844419e-05" d="-9.7961664232659084e-07" /> - <width sOffset="134.93788321878222" a="3.7935734066615727" b="-0.00074900890886713044" c="2.0288640484518963e-05" d="-8.6436586079363866e-08" /> - <width sOffset="145.05178436022942" a="3.787983925928915" b="-0.00036513935407784821" c="1.4816916482715675e-05" d="1.1574084996085423e-07" /> - <width sOffset="148.85446330716726" a="3.7868160406205273" b="-0.00024743043578181469" c="0.00030049835771078776" d="-1.0697000387769081e-05" /> - <width sOffset="152.17537915414147" a="3.7889166117018807" b="0.0013945140497381274" c="0.00018401255594499149" d="-1.008593174554331e-05" /> - <width sOffset="155.16568550167665" a="3.7944623747878601" b="0.0022244587288222793" c="9.2537122305219892e-05" d="-1.0081489629496385e-05" /> - <width sOffset="165.27958664312388" a="3.8159961286628041" b="0.0010025444875037576" c="-0.00021241019884766623" d="-1.0464854476125381e-05" /> - <width sOffset="168.29768668658204" a="3.8167993828682234" b="-0.00056557678709464676" c="-1.7389529364610417e-05" d="1.0016212801193442e-06" /> - <width sOffset="175.39348778457108" a="3.8122684484604985" b="-0.00066106599427102062" c="8.3316874161514422e-06" d="1.0432262587697126e-06" /> - <width sOffset="185.50738892601831" a="3.8075140301798935" b="-0.00017239630840966823" c="3.8179751626033787e-05" d="2.0635859360067871e-06" /> - <width sOffset="186.27530572119662" a="3.8074050930831977" b="-0.00011010789700945652" c="0.00017515735003734937" d="-3.6601693091437056e-06" /> - <width sOffset="188.92980682266099" a="3.808278574063086" b="0.00074243007159738143" c="0.00037750180965039819" d="-1.7825229015032957e-05" /> - <width sOffset="195.62129006746554" a="3.8248087831924189" b="0.0034000995566914717" c="1.7101850443412112e-05" d="-1.815259323050229e-05" /> - <width sOffset="202.46110136013445" a="3.8430563045389068" b="0.0010863471004389639" c="-0.0019490186636632913" d="0.00024726103526521439" /> - <width sOffset="205.73519120891274" a="3.8343984328974883" b="-0.003724511437485424" c="0.00049202444453947639" d="0.00024312316273136756" /> - <width sOffset="206.74065100881541" a="3.8313981253501872" b="-0.001997734185184427" c="0.0013241152472825942" d="0.0002496492969532806" /> - <width sOffset="207.19711661127963" a="3.8307858662198062" b="-0.00063285664069399319" c="0.00016621633453302886" d="-3.9072067196297871e-05" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.930272501770828" b="0.0047152310406565262" c="-0.00024129267454847501" d="-0.00018617220293578452" /> - <width sOffset="2.2175896873113894" a="3.9375120519450446" b="0.00089843537417241945" c="-0.00047429357843001372" d="2.7293555647005405e-05" /> - <width sOffset="3.457168379968329" a="3.9379489404869563" b="-0.00015159887795352018" c="-0.00036766910407903689" d="2.9548126693893477e-05" /> - <width sOffset="12.082532020913771" a="3.9282489459446701" b="0.00010070857536449707" c="2.0405510210349879e-05" d="-2.634994136477941e-06" /> - <width sOffset="13.571069521415549" a="3.9284353770355449" b="0.00014394189321478845" c="1.2485711888415736e-05" d="-1.1231677498237064e-06" /> - <width sOffset="23.684970662862767" a="3.9300063814445623" b="5.1830560233798693e-05" c="-2.0636386010344779e-05" d="-1.140943186214947e-06" /> - <width sOffset="29.868999477020083" a="3.9292678993357648" b="-0.00033429802608513147" c="5.4648245791786381e-05" d="2.3350148584742283e-06" /> - <width sOffset="33.798871804309989" a="3.9289398506126187" b="0.00020340841512200163" c="8.2493041375229087e-05" d="2.4165004725191089e-06" /> - <width sOffset="38.399151981319967" a="3.9318566071825427" b="0.0011158087581676522" c="0.00011738793271583357" d="-3.5214351384179761e-06" /> - <width sOffset="43.912772945757212" a="3.9409871063780941" b="0.0020891188366295036" c="5.6859142512085993e-05" d="-3.4891846492030699e-06" /> - <width sOffset="54.026674087204427" a="3.9643226516563663" b="0.0021685178072246868" c="-5.0354649813888942e-05" d="-3.6197408101684768e-06" /> - <width sOffset="62.612655920513745" a="3.9769382899540688" b="0.00050329765919106533" c="-0.00027651079279716797" d="2.2112156403492636e-05" /> - <width sOffset="64.140575228651656" a="3.9771406371001436" b="-0.00018680973009235953" c="-0.00017384892761544387" d="2.2592469958851243e-05" /> - <width sOffset="69.97061858132993" a="3.9746194238197265" b="8.9810567913625532e-05" c="4.7826847907575118e-06" d="2.2340455716074159e-07" /> - <width sOffset="74.254476370098871" a="3.975109491599679" b="0.00014308663523860933" c="7.3777444558751965e-06" d="2.6256109045629726e-07" /> - <width sOffset="78.024776367927728" a="3.975767919046759" b="0.00020991630041578886" c="-3.3526118746678414e-06" d="8.2688853161538424e-08" /> - <width sOffset="84.368377511546086" a="3.9769857393161532" b="0.00017736355012559069" c="-2.0547643859246636e-06" d="5.6098654507912111e-08" /> - <width sOffset="94.482278652993315" a="3.9786274303134888" b="0.00015301534417101897" c="-5.4949081102662289e-07" d="7.5402211458949503e-08" /> - <width sOffset="104.59617979444053" a="3.9801968126041594" b="0.00016503925468945214" c="-3.1815274875646172e-07" d="1.7866971766124414e-07" /> - <width sOffset="114.71008093588775" a="3.9820183038750026" b="0.00021343263407583779" c="5.1349339401703532e-06" d="-1.4900616340285084e-07" /> - <width sOffset="118.1106645154407" a="3.9827976200466169" b="0.00024318687033302185" c="-4.0337698986566014e-06" d="-2.0225579052524798e-08" /> - <width sOffset="121.29647626232379" a="3.9835307733295542" b="0.00021686937501579271" c="0.00014877752576375342" d="-8.8953468588465515e-06" /> - <width sOffset="124.82398207733497" a="3.9857566136848841" b="0.00093443421358015675" c="6.1246346639934939e-05" d="-8.2003458091081226e-06" /> - <width sOffset="133.26233358164316" a="3.9930755370832629" b="0.00021633465305488691" c="2.0652181590265092e-07" d="-8.471408047854778e-07" /> - <width sOffset="134.93788321878222" a="3.9934346113434076" b="0.00020989176965341985" c="-2.6906018628901286e-06" d="2.5644290405276225e-07" /> - <width sOffset="145.05178436022942" a="3.9955475174403596" b="0.00023416220759697788" c="3.2928784418211102e-06" d="2.0320234874776245e-07" /> - <width sOffset="152.17537915414147" a="3.9974561490677418" b="0.00031201134807252903" c="1.754975948028121e-05" d="-4.078662934892121e-07" /> - <width sOffset="154.85748976251634" a="3.9984113765098028" b="0.00039734991577101714" c="-5.4491002180144985e-05" d="7.0470291631536317e-07" /> - <width sOffset="155.16568550167665" a="3.9985286828833795" b="0.00036396293418485492" c="-5.4036630603687292e-05" d="6.782898334985115e-07" /> - <width sOffset="165.27958664312388" a="3.9973840394626543" b="-0.00052093051715611997" c="-3.2866247411273326e-05" d="5.6714766047363279e-07" /> - <width sOffset="175.39348778457108" a="3.9893402273827743" b="-0.0010117001738566989" c="-2.1727928936793671e-06" d="-4.1202662521006827e-06" /> - <width sOffset="177.09431931191648" a="3.9875929377279524" b="-0.0010548489464841566" c="-0.00020307682787950798" d="1.4371476866774486e-05" /> - <width sOffset="185.50738892601831" a="3.9729025484652816" b="-0.0014202197239657497" c="0.00015843912472134877" d="1.5463028900382193e-05" /> - <width sOffset="186.27530572119662" a="3.9719123710780635" b="-0.0011495281258429141" c="6.1838471996044557e-05" d="2.1186784145591477e-05" /> - <width sOffset="188.38125095486254" a="3.9699636637393341" b="-0.00060718075347194784" c="-0.00012829201035620714" d="5.4714731838631679e-06" /> - <width sOffset="195.62129006746554" a="3.9609192958557307" b="-0.0016044453244718716" c="-1.1765515070646358e-05" d="5.2099968645042655e-06" /> - <width sOffset="205.73519120891274" a="3.9488786478909845" b="-0.0002436285271232601" c="0.00015422867434411631" d="3.2872322678070419e-06" /> - <width sOffset="206.74065100881541" a="3.9487929479577306" b="7.6482613524562809e-05" c="6.5405110958813699e-05" d="-3.2389019639598942e-06" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.6431112364086315" b="-0.0035746804655285274" c="0.00026469835467373743" d="0.00018421029411629211" /> - <width sOffset="2.2175896873113894" a="3.6384946661369564" b="0.00031697933002321395" c="0.00048464713226027873" d="-2.925546446789692e-05" /> - <width sOffset="3.457168379968329" a="3.639576551762536" b="0.0013836379271977442" c="0.0003750468898338163" d="-3.0993552682917037e-05" /> - <width sOffset="12.082532020913771" a="3.6595246852096248" b="0.00093599701453033379" c="-5.0429698770682594e-05" d="1.1895681477667234e-06" /> - <width sOffset="13.571069521415549" a="3.6608101360240908" b="0.00079377135408131546" c="-4.7018174169679638e-05" d="-2.8930308432015018e-07" /> - <width sOffset="23.684970662862767" a="3.6637294234529785" b="-0.00024608227890846653" c="-5.4948931462345233e-05" d="-2.9915580197514954e-07" /> - <width sOffset="33.798871804309989" a="3.6553102957336945" b="-0.0014493812352829921" c="-6.3763805033229334e-05" d="-2.4415425566205525e-07" /> - <width sOffset="38.399151981319967" a="3.6472695601478486" b="-0.0020515447721171942" c="-6.8678492656516584e-05" d="5.6937813556102794e-06" /> - <width sOffset="39.405843840327591" a="3.6451404948395671" b="-0.0021725102101328546" c="-0.00022364374814262135" d="8.9245432796909788e-06" /> - <width sOffset="43.912772945757212" a="3.6316234133634548" b="-0.0036445663001888695" c="-0.00010548353569964098" d="8.8571860601011979e-06" /> - <width sOffset="54.026674087204427" a="3.5931359136221546" b="-0.0030602352449428951" c="0.00016226562721254718" d="8.6719119175003939e-06" /> - <width sOffset="58.861464398801814" a="3.5831133579636303" b="-0.00088307172263200418" c="0.00016539138301287698" d="2.5815400281533499e-06" /> - <width sOffset="62.612655920513745" a="3.5822643470770004" b="0.00046673572486770576" c="0.00032736199268343342" d="-2.3150357185422133e-05" /> - <width sOffset="64.140575228651656" a="3.5836591434501606" b="0.0013049650187470919" c="0.0002210436320726506" d="-2.3515950805982417e-05" /> - <width sOffset="69.97061858132993" a="3.5941203737908243" b="0.0014844733718082626" c="2.6260219544254361e-05" d="-1.1468854043172297e-06" /> - <width sOffset="74.254476370098871" a="3.6008713970487642" b="0.0016463224762277066" c="1.1304271863979593e-05" d="-1.1302024492795464e-06" /> - <width sOffset="84.368377511546086" a="3.6175092016481649" b="0.0015281544487757025" c="-2.3215566147709829e-05" d="-1.1512794100319356e-06" /> - <width sOffset="94.379459565243195" a="3.6293258650212556" b="0.00071717881392441307" c="-1.4768220395969702e-05" d="3.1179992201547793e-08" /> - <width sOffset="94.482278652993315" a="3.6293994486003962" b="0.00071414289290686712" c="-1.4582072207095248e-05" d="1.3859392863873841e-08" /> - <width sOffset="104.59617979444053" a="3.6351449429136329" b="0.00042343269273943651" c="-1.6031310155978414e-05" d="1.090972469285831e-07" /> - <width sOffset="114.71008093588775" a="3.6379005083797429" b="0.00013263351881324335" c="-1.2121642187795865e-05" d="-4.9693865838346844e-07" /> - <width sOffset="118.61577154784038" a="3.6382040181291608" b="1.5205218854364142e-05" c="-1.8920247525327778e-05" d="-2.1645931452307672e-07" /> - <width sOffset="121.29647626232379" a="3.6381046446922327" b="-9.0900519966842248e-05" c="-0.0001736656383644092" d="8.6586619651913538e-06" /> - <width sOffset="124.82398207733497" a="3.6360030810216819" b="-0.00099288670385535736" c="-8.05378599914995e-05" d="8.3360099635600414e-06" /> - <width sOffset="133.26233358164316" a="3.6268987628616176" b="-0.00057138407052692618" c="-1.6063689700732902e-05" d="9.8280495921297715e-07" /> - <width sOffset="134.93788321878222" a="3.6259009053807802" b="-0.00061693751317861702" c="-1.2148549446927117e-05" d="2.3406201344850682e-07" /> - <width sOffset="145.05178436022942" a="3.6186607245718934" b="-0.00079084865976100638" c="-6.6343153741440644e-06" d="1.7961888636230415e-07" /> - <width sOffset="154.85748976251634" a="3.6104373451394314" b="-0.00086914487476855455" c="6.7408488368575766e-05" d="-9.3295028247332748e-07" /> - <width sOffset="155.16568550167665" a="3.6101758538504929" b="-0.00082786070472918184" c="6.4726276044239255e-05" d="-9.1740391293985177e-07" /> - <width sOffset="165.27958664312388" a="3.6074747574554551" b="0.0001998831288114862" c="3.7392556640208852e-05" d="-1.0217372853449789e-06" /> - <width sOffset="175.39348778457108" a="3.6122642279605728" b="0.00064270879676053372" c="1.6062855639121462e-05" d="-2.8358560613494163e-06" /> - <width sOffset="177.09431931191648" a="3.6133898814062118" b="0.00067273828886931018" c="0.00018147331419867123" d="-2.1327599175756178e-05" /> - <width sOffset="177.47974119595386" a="3.6136749062314317" b="0.00080312121578613566" c="0.00017032036172550546" d="-1.5194197902212883e-05" /> - <width sOffset="185.50738892601831" a="3.6232376925928849" b="0.00060018002180124079" c="-0.000192061479609622" d="-1.5624071185748016e-05" /> - <width sOffset="188.38125095486254" a="3.623005430880887" b="-0.00089085786543459714" c="-2.7806507433267731e-06" d="9.123977593071699e-08" /> - <width sOffset="195.62129006746554" a="3.6164444548466927" b="-0.0009167740404563275" c="-1.2076216047017186e-06" d="8.7537868958189846e-08" /> - <width sOffset="205.73519120891274" a="3.6071393272827388" b="-0.00091433856402082332" c="8.0476723617360175e-06" d="-9.2516107397150442e-07" /> - <roadMark sOffset="0" color="standard" width="0.30932594790760459" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.30932599999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="driving" level="false"> - <link> - <predecessor id="-6" /> - </link> - <width sOffset="0" a="3.5129479104642813" b="-0.0089234162748578153" c="0.00020330825441641607" d="8.6361169534476215e-06" /> - <width sOffset="3.457168379968329" a="3.484884946226825" b="-0.0072080175860845001" c="0.00029475866267252287" d="8.8876495370454855e-06" /> - <width sOffset="13.571069521415549" a="3.4513297420159041" b="0.0014816819413274005" c="0.00056255972484581002" d="8.8558060331977612e-06" /> - <width sOffset="14.109311554511802" a="3.4522916024883123" b="0.0020949652216343834" c="9.8453792724320866e-05" d="-2.1231627259961993e-06" /> - <width sOffset="23.684970662862767" a="3.4795156369652149" b="0.0033964460806835371" c="3.8307113304711307e-05" d="-2.1263113305565524e-06" /> - <width sOffset="33.798871804309989" a="3.5155856308148117" b="0.003518807281306277" c="-2.5961724420788097e-05" d="-2.1046815275939212e-06" /> - <width sOffset="39.405843840327591" a="3.5341282986407627" b="0.003029172167042776" c="0.00011079650966723402" d="-5.3354434519755591e-06" /> - <width sOffset="43.912772945757212" a="3.5495426653093967" b="0.0037027490512693967" c="3.8103218916090196e-05" d="-5.0431765917814308e-06" /> - <width sOffset="54.026674087204427" a="3.5856720454504947" b="0.0029258787555916273" c="-0.00011651245337668327" d="-5.0769758236459083e-06" /> - <width sOffset="58.861464398801814" a="3.5965207838707114" b="0.0014432262584938732" c="-6.7495922584739335e-05" d="1.0133960656889143e-06" /> - <width sOffset="64.140575228651656" a="3.6024077850984817" b="0.00081531638549086033" c="-5.1688682632120545e-05" d="9.3204018771153744e-07" /> - <width sOffset="74.254476370098871" a="3.6063307800277418" b="5.5785891120860949e-05" c="-2.362493636752995e-05" d="9.5380826861164864e-07" /> - <width sOffset="84.368377511546086" a="3.6054651475963855" b="-0.00012939665644362227" c="5.0838536021159459e-06" d="9.3311404403266797e-07" /> - <width sOffset="94.379459565243195" a="3.6056154795558024" b="0.00025294810087393769" c="-9.9157062964082383e-06" d="-2.4934519842942081e-07" /> - <width sOffset="94.482278652993315" a="3.6056413823512328" b="0.00025090114506418526" c="-1.0527683776261463e-05" d="-1.9078195917093252e-07" /> - <width sOffset="103.35931476927388" a="3.6069055837884791" b="1.8890018538627912e-05" c="-3.3575231848186665e-06" d="5.4687821655848081e-06" /> - <width sOffset="104.59617979444053" a="3.6069341597619271" b="3.5683417124601953e-05" c="5.5289149924190398e-06" d="1.0819227558163496e-07" /> - <width sOffset="114.71008093588775" a="3.6079725480495819" b="0.00018072250341375889" c="6.9839138691652252e-06" d="4.1763643966355288e-07" /> - <width sOffset="118.61577154784038" a="3.6088098121628951" b="0.00025438892099782703" c="1.285332941344998e-05" d="1.3715709581220257e-07" /> - <width sOffset="124.82398207733497" a="3.6109173220086612" b="0.00042984014715681832" c="1.5465556106149772e-05" d="-2.4429822292061093e-07" /> - <width sOffset="134.93788321878222" a="3.616593928486326" b="0.00066770583241752173" c="8.2085775157414261e-06" d="-7.5882547613217883e-08" /> - <width sOffset="145.05178436022942" a="3.6241081977130714" b="0.00081046101123938275" c="4.0233021161783738e-06" d="-8.7949781722887831e-08" /> - <width sOffset="153.30517691011912" a="3.6310218657185045" b="0.00085889977605421079" c="-0.0010313160782896395" d="2.0039136840025132e-06" /> - <width sOffset="155.16568550167665" a="3.6290628690272229" b="-0.002957835477611677" c="-0.0010260210951673597" d="-1.2085115143716675e-07" /> - <width sOffset="165.27958664312388" a="3.4940698654745539" b="-0.023749073282789444" c="-0.0010289202021612047" d="-3.0832520938685005e-07" /> - <width sOffset="173.02858944751574" a="3.2481111477030273" b="-0.039750826399546302" c="-0.0033311858854027541" d="4.1562561309836942e-05" /> - <width sOffset="175.39348778457108" a="3.1360237318119193" b="-0.054809312006964171" c="-0.0030341175396237903" d="5.3026038565265148e-05" /> - <width sOffset="177.47974119595386" a="3.0089532562015391" b="-0.066776808073052848" c="-0.0027157476959680585" d="4.689263728724746e-05" /> - <width sOffset="185.50738892601831" a="2.3221401026020958" b="-0.10131321503513235" c="-0.0015941850662521968" d="5.2970439610179622e-05" /> - <width sOffset="186.72305058425138" a="2.1967167356775823" b="-0.10495434992395902" c="-0.0061123982943776922" d="0.00033464282706641504" /> - <width sOffset="195.62129006746554" a="1.0146091013291638" b="-0.13424379980328013" c="0.0028190788891492373" d="0.00033438796647963136" /> - <width sOffset="198.83351458756431" a="0.62355950146236871" b="-0.10578173843528471" c="-0.0074185399356802998" d="0.0015725880035422309" /> - <width sOffset="204.81634840354027" a="0.061915338083085025" b="-0.025680459079028703" c="0.0028333426897273095" d="-3.4115289091795676e-05" /> - <width sOffset="205.73519120891274" a="0.040684680155476549" b="-0.020560073748195778" c="0.0027262305751320185" d="-3.2109273990120258e-05" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="209.79752753391705" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-6" type="shoulder" level="false"> - <link> - <predecessor id="-7" /> - <successor id="-5" /> - </link> - <width sOffset="0" a="2.4928897345643239" b="2.8489581133770911e-05" c="4.3280109854842026e-05" d="-3.2530006528226751e-06" /> - <width sOffset="3.457168379968329" a="2.4933710979036956" b="0.00021110311537874803" c="1.1069985942256438e-05" d="-3.0954925970943065e-06" /> - <width sOffset="13.571069521415549" a="2.493436057842592" b="-0.00051489846308626721" c="-6.8437102366619435e-05" d="-9.31021680197826e-06" /> - <width sOffset="14.109311554511802" a="2.4931376395587517" b="-0.00059666154806401514" c="0.00039493508082367031" d="1.6687519544096859e-06" /> - <width sOffset="14.859266241853771" a="2.4929129984516081" b="-1.4790392704093906e-06" c="4.9701642891543038e-07" d="-3.1280294444623854e-08" /> - <width sOffset="23.684970662862767" a="2.4929171550319911" b="-1.5552500924479254e-08" c="3.3917730315328375e-07" d="-2.2370270701023348e-08" /> - <width sOffset="33.798871804309989" a="2.4929285491096316" b="-1.9572905457531688e-08" c="-1.6168732986567504e-07" d="1.063993816436016e-08" /> - <width sOffset="43.912772945757212" a="2.4929228196584639" b="-2.5042619659389198e-08" c="-1.0350393060579187e-06" d="6.8202977961998573e-08" /> - <width sOffset="54.026674087204427" a="2.4928872513207949" b="-3.1961358731066175e-08" c="1.5232747491448783e-07" d="-1.006806969045358e-08" /> - <width sOffset="64.140575228651656" a="2.4928920937634658" b="-4.0329949936709561e-08" c="-9.515386603592277e-09" d="1.4223959926196215e-09" /> - <width sOffset="74.254476370098871" a="2.4928921840874168" b="2.0368960035994053e-07" c="6.8022335266410758e-07" d="-6.3700309832349291e-08" /> - <width sOffset="75.105731747734112" a="2.492892811099864" b="1.2232986162166726e-06" c="-9.2072377037171275e-06" d="3.1807672532569151e-07" /> - <width sOffset="84.368377511546086" a="2.4923669690414449" b="-8.747375304682262e-05" c="-6.9656985363212633e-07" d="2.8536960392344062e-07" /> - <width sOffset="94.482278652993315" a="2.4917062475960616" b="-1.3991607025032218e-05" c="7.8390436446535267e-06" d="2.9132879386596325e-07" /> - <width sOffset="103.35931476927388" a="2.4924035662236435" b="0.00019405501408546158" c="3.3465567029700536e-06" d="-5.3682353333016656e-06" /> - <width sOffset="104.59617979444053" a="2.4926385479910884" b="0.00017769594760820584" c="-8.327085140910647e-06" d="1.4972851439815119e-07" /> - <width sOffset="114.71008093588775" a="2.4937388646883161" b="5.5204952521625101e-05" c="-4.0695248666691712e-06" d="1.8969931375805442e-08" /> - <width sOffset="124.82398207733497" a="2.4939005519192001" b="-2.1291232325550938e-05" c="-1.7093000156783341e-06" d="1.3265190753561572e-08" /> - <width sOffset="134.93788321878222" a="2.4935240921480286" b="-5.1795886351255251e-05" c="-1.1972072950990987e-06" d="1.2939008986523574e-07" /> - <width sOffset="145.05178436022942" a="2.4930116320908322" b="-3.6306435199555763e-05" c="1.0420359673920095e-06" d="1.8460634812215581e-07" /> - <width sOffset="151.856992533332" a="2.4928709964406863" b="3.52394343987447e-06" c="-0.00056052342315336949" d="-1.9154662478146322e-05" /> - <width sOffset="153.30517691011912" a="2.4916423724462522" b="-0.0017404742424815955" c="0.00038941985620399703" d="-2.1246525945288138e-05" /> - <width sOffset="155.16568550167665" a="2.4896153484500907" b="-0.00051207031884752726" c="0.0002720056202058684" d="-1.9682637703936151e-05" /> - <width sOffset="163.30270175144315" a="2.492854174252189" b="4.9346343021228201e-06" c="0.00020052768196279628" d="-1.9485237411480378e-05" /> - <width sOffset="165.27958664312388" a="2.4934970671663823" b="0.00056932568214915907" c="8.3646889491252618e-05" d="-2.0627154778241985e-05" /> - <width sOffset="173.02858944751574" a="2.49333360957176" b="-0.0018501133956675617" c="0.0018992252933496638" d="-6.2498041308445417e-05" /> - <width sOffset="173.52707318486756" a="2.4928755476992546" b="-3.2372227815463672e-06" c="3.2138381420212386e-06" d="-4.2445597210781022e-06" /> - <width sOffset="175.39348778457108" a="2.4928531044242455" b="-3.5598329325203792e-05" c="-9.334540371386691e-06" d="1.1884165847075693e-06" /> - <width sOffset="185.50738892601831" a="2.4927677164851563" b="0.00014027738304514537" c="3.2143723142977025e-05" d="-5.5510644879664279e-06" /> - <width sOffset="186.48764712277941" a="2.4929308828922938" b="0.00018729352349926287" c="-0.0044016997389148046" d="0.00025395321732521881" /> - <width sOffset="186.72305058425138" a="2.4927343659481895" b="-0.0018428388939388946" c="0.00048904028587967285" d="-2.771916982628953e-05" /> - <width sOffset="195.62129006746554" a="2.4955283401807051" b="0.00027605560729909717" c="-0.00025183693516424212" d="-2.7836474247407833e-05" /> - <width sOffset="198.83351458756431" a="2.4928939027659798" b="-0.0022035404382857587" c="0.00076045202044789512" d="-6.5520026858400171e-05" /> - <width sOffset="204.81634840354027" a="2.4928991323426688" b="-0.00013995489599289562" c="5.6119875955298187e-05" d="-5.4219716293336931e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="216.45426029539593"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="2.4929243247046919" b="-2.5270310218274659e-06" c="2.5652814229561996e-05" d="-1.5661919539228894e-07" /> - <width sOffset="6.0515648164429194" a="2.4938137656499482" b="0.00029074544518420062" c="2.6785151615632841e-05" d="-9.4611817233552118e-07" /> - <width sOffset="8.5792943781127065" a="2.4947045525153069" b="0.00040802125443180999" c="0.00027720741135884354" d="-5.5407831879482901e-05" /> - <width sOffset="12.85324111175828" a="2.497186335582791" b="-0.00025878086819820252" c="-7.5569972511860993e-05" d="4.6784245589430487e-06" /> - <width sOffset="16.165465957890149" a="2.4956701335503375" b="-0.00060541169967820571" c="-2.7950650909036558e-05" d="8.4988289604801955e-06" /> - <width sOffset="22.353466655707336" a="2.4928673486187733" b="2.4965975824001087e-05" c="-0.00022180187913610502" d="1.4579011704107441e-05" /> - <width sOffset="26.27936709933735" a="2.4904289550920709" b="-0.0010424726640918575" c="-6.0726628049208344e-05" d="1.7005553081020589e-05" /> - <width sOffset="28.100819369689674" a="2.4884314336081221" b="-0.001094436595945726" c="0.0018399415342452987" d="-0.00026502083980831353" /> - <width sOffset="32.142635382330525" a="2.4965668606746281" b="0.00079061241966992273" c="-0.00027070298605833394" d="1.6409133594387992e-05" /> - <width sOffset="36.393268240784579" a="2.4962966550167422" b="-0.0006212708400085054" c="-6.667219278312135e-05" d="1.2952218639981385e-05" /> - <width sOffset="42.39285428731975" a="2.492966519604197" b="-2.2635353428221709e-05" c="7.8647526268672135e-05" d="4.9873517680526883e-06" /> - <width sOffset="44.227048614814606" a="2.4932203689539012" b="0.00031621071598786831" c="4.6940738096795734e-05" d="-2.1171972862666616e-06" /> - <width sOffset="46.507169382231808" a="2.494160312402931" b="0.00049725020650054829" c="2.7738105073901837e-05" d="-5.6208890440693833e-06" /> - <width sOffset="55.130161355175261" a="2.496906639554938" b="-0.00027821919689654195" c="-7.392904228505884e-05" d="6.2846948953997046e-06" /> - <width sOffset="56.621070523679037" a="2.4963483373073121" b="-0.00045675312002753664" c="-4.8834203791127447e-05" d="3.5506049638122375e-06" /> - <width sOffset="66.734971665126267" a="2.490406799554032" b="-0.00035497698132047351" c="6.0172621841083115e-05" d="3.5199999825193349e-06" /> - <width sOffset="67.194688432549839" a="2.4902566695260848" b="-0.00029742050974298725" c="1.6500339029763845e-05" d="-3.2028047281067519e-07" /> - <width sOffset="76.848872806573439" a="2.4886350138547861" b="-6.8379447134751429e-05" c="7.3298551475353053e-06" d="-3.1847940992838385e-07" /> - <width sOffset="82.339889462022398" a="2.4884278177696704" b="-1.6690403956378084e-05" c="9.9187237611659187e-05" d="-5.5129260389973254e-06" /> - <width sOffset="86.962773948020669" a="2.4899257417182667" b="0.00054692064444773953" c="2.2793483592577031e-05" d="-5.3843145792558987e-06" /> - <width sOffset="94.340083536387255" a="2.4930392285634078" b="4.1107498157690308e-06" c="9.4729980971437863e-06" d="-6.0532718305617317e-06" /> - <width sOffset="96.165011258538669" a="2.4930414891106309" b="-2.1792921253660838e-05" c="4.3876738819074263e-05" d="1.1808625283974982e-07" /> - <width sOffset="97.076675089467898" a="2.49305817808313" b="5.8503185754884041e-05" c="3.2224218607009924e-05" d="-1.4673292182479516e-06" /> - <width sOffset="107.19057623091513" a="2.4954280793276684" b="0.00026004460555832426" c="-1.4853391715370354e-05" d="-1.4994187332431167e-06" /> - <width sOffset="117.30447737236236" a="2.4949875363432543" b="-0.00050053797356949727" c="-5.8423768907804553e-05" d="-2.5372122543779883e-06" /> - <width sOffset="120.71684018022776" a="2.4924984056033246" b="-0.00098789573831828035" c="0.0006639955892673243" d="-9.8770275564296091e-05" /> - <width sOffset="124.21688035644124" a="2.4929399421382801" b="3.0235780215402252e-05" c="-7.5956087790322554e-06" d="-0.000101321419481133" /> - <width sOffset="126.14062369093304" a="2.4922486539026725" b="-0.0011238956301331316" c="2.9084582727204348e-05" d="1.3180695910983634e-05" /> - <width sOffset="127.41837851380959" a="2.4908875727219861" b="-0.00098501101678182402" c="8.1539895150990841e-05" d="1.5001366067019394e-05" /> - <width sOffset="131.53397496135764" a="2.4892605516590223" b="0.00044844504008860182" c="0.00033293448455088543" d="-3.431424002287073e-05" /> - <width sOffset="136.95696989316704" a="2.4960111169006307" b="0.0010320195979283183" c="-0.00065998831997728406" d="5.9583990763484169e-05" /> - <width sOffset="137.53227965525681" a="2.4963977498351113" b="0.00033178771540593268" c="-0.00055883936310785714" d="5.9650708709736702e-05" /> - <width sOffset="143.78533821118467" a="2.4912059565278319" b="0.00034003798321937523" c="0.00015061242346057639" d="-3.2062142367311224e-05" /> - <width sOffset="147.64618079670399" a="2.4929186539651749" b="6.9254672851254027e-05" c="-0.0002190192351493348" d="-3.1619320931532275e-05" /> - <width sOffset="147.78537750263288" a="2.4929239650530164" b="6.4432191230781545e-06" c="0.00013313354954973188" d="-3.1609626191758509e-05" /> - <width sOffset="150.32373940393782" a="2.4932811497360223" b="7.1316354005783054e-05" c="-3.0487965976662478e-05" d="7.6661344175667861e-07" /> - <width sOffset="157.76008193815122" a="2.492440772372678" b="-0.0002549422545677347" c="-1.2933635835611677e-05" d="7.0634949060478414e-07" /> - <width sOffset="167.87398307959845" a="2.489270078770268" b="-0.00029980170366264533" c="-4.4353976259154098e-06" d="8.9193654217001087e-06" /> - <width sOffset="169.28774459846167" a="2.4888625691243327" b="-0.00025886090679226787" c="0.00034850006841377515" d="-3.2580116383415475e-05" /> - <width sOffset="176.03777068915517" a="2.4929738791963238" b="-7.4208827463462419e-06" c="0.00014670591119229275" d="-3.2775860844448531e-05" /> - <width sOffset="177.98788422104568" a="2.4932742504571177" b="0.00019083131171639556" c="-3.936316572829656e-05" d="-2.9401647309941954e-05" /> - <width sOffset="181.10273905364321" a="2.4925981916352065" b="-0.00091018240986667309" c="7.6631956898323984e-05" d="-1.5774231660291946e-06" /> - <width sOffset="188.1017853624929" a="2.4894408905586705" b="-6.9299205710471215e-05" c="4.3975738486314084e-05" d="-1.6199770825387503e-06" /> - <width sOffset="198.21568650394013" a="2.491562362195948" b="0.00032310612837242763" c="-4.9357261873402e-06" d="-1.4506134922561546e-06" /> - <width sOffset="203.07722243618261" a="2.4928498250011408" b="0.00017226199659296781" c="-4.0340087969931005e-05" d="-3.8238607066821041e-06" /> - <width sOffset="204.82722504452434" a="2.4930072484617067" b="-4.0603467109384542e-06" c="1.0547407926841715e-05" d="-7.808974474576292e-07" /> - <width sOffset="208.32958764538731" a="2.4930888590707116" b="4.1084609208182532e-05" c="3.066696259986158e-06" d="-5.1130915851377065e-07" /> - <width sOffset="218.44348878683454" a="2.493289099635728" b="-5.3789834906885214e-05" c="-1.0467228219146106e-05" d="-1.5303970892615355e-06" /> - <width sOffset="220.76502737784207" a="2.4930886625261834" b="-0.00012713439895412038" c="8.6059876881403335e-06" d="-9.9817992398481275e-09" /> - <width sOffset="228.55738992828176" a="2.4926158256542941" b="5.169241463194509e-06" c="8.2647111509789023e-06" d="5.3695042037360955e-08" /> - <width sOffset="237.57217242415371" a="2.4933734046491391" b="0.00016726918103759621" c="-5.2648153333592698e-05" d="-4.2733831877382152e-06" /> - <width sOffset="238.67129106972899" a="2.4934879768900515" b="3.6048514149907143e-05" c="-5.6360522327384614e-05" d="5.8974607312414525e-06" /> - <width sOffset="244.82216102678623" a="2.4929497886191196" b="1.2075482804011026e-05" c="0.00056149755546776444" d="-8.143154624226091e-05" /> - <width sOffset="248.78519221117622" a="2.4967478594064065" b="0.00062574229950517965" c="-0.00040923958546285473" d="-8.0782819388028701e-05" /> - <width sOffset="251.7258340205037" a="2.4929948829181132" b="-0.0038767895874223406" c="0.0030661703850961451" d="-0.00060623441163550388" /> - <width sOffset="254.22574637786695" a="2.4929940535236792" b="8.7426631145557515e-05" c="0.0020203926965923669" d="-0.00058658747718656268" /> - <width sOffset="257.21935951329783" a="2.495625045067964" b="-0.0035865226207503773" c="0.00087847592540371393" d="-5.8099374001939086e-05" /> - <width sOffset="258.89909335262348" a="2.4918039116126991" b="-0.0011270942999965423" c="0.00058000232359916605" d="-6.133560901724406e-05" /> - <width sOffset="263.96933750181245" a="2.4930049588598377" b="2.4079835149279984e-05" c="-0.00016878498893782131" d="9.4072481583989812e-06" /> - <width sOffset="267.7641040713487" a="2.4911798543352575" b="-0.00085051916227250706" c="0.00030974590091014157" d="-2.8961218967747515e-05" /> - <width sOffset="269.01299449407065" a="2.4905443538501242" b="-0.00021235659457875659" c="0.00020632960984653741" d="-2.1295640189692919e-05" /> - <width sOffset="276.31694409266652" a="2.4917026980543131" b="-0.0006065334305631778" c="-0.00012532361058772347" d="2.0576915260614349e-05" /> - <width sOffset="279.12689563551783" a="2.4894653726930205" b="-0.00082342464558777303" c="4.9861892591564018e-05" d="2.0243891509054326e-05" /> - <width sOffset="280.96153401007984" a="2.4882475264741402" b="-0.000436050942707628" c="0.00042537755877422806" d="-3.0254250260011829e-05" /> - <width sOffset="289.24079677696511" a="2.4966257098352838" b="0.00038613328767865551" c="-0.00032355495829967284" d="-3.2422999135483111e-05" /> - <width sOffset="291.05170719835269" a="2.4960713473637712" b="-0.0011047084190089901" c="6.3686337184380785e-05" d="6.4367003801490005e-06" /> - <width sOffset="296.05167265731529" a="2.4929445507311314" b="1.4896411878137229e-05" c="-6.6694779221700899e-05" d="5.3319448027722351e-06" /> - <width sOffset="299.3546979184124" a="2.49245825709143" b="-0.0002511785017255917" c="-1.8791269288801297e-05" d="3.238908962118888e-06" /> - <width sOffset="304.10799300861891" a="2.4911876079475661" b="-0.00021028147578053919" c="4.4147845828964617e-05" d="-1.530526821765942e-06" /> - <width sOffset="309.46859905985957" a="2.491093241801404" b="0.00013109284049900771" c="1.9517977141496561e-05" d="-1.4799874408689952e-06" /> - <width sOffset="319.58250020130674" a="2.4928844778354344" b="7.1730453569445395e-05" c="-1.7176754924994248e-05" d="-7.4659059941781051e-06" /> - <width sOffset="320.8578391605447" a="2.4929325339483119" b="-8.5115681803720551e-06" c="0.00056015715979156598" d="-3.6932983407147678e-05" /> - <width sOffset="323.15091722242198" a="2.4954131198796023" b="0.0019778528050510428" c="-0.0010141185960092561" d="8.7154458123886089e-05" /> - <width sOffset="329.69640134275403" a="2.4893516459697222" b="-9.5971433011551345e-05" c="0.00068065628494457344" d="0.00010174569242046275" /> - <width sOffset="330.74672526917016" a="2.4901196239161054" b="0.001670579276331617" c="-8.3283923301988544e-05" d="-5.3901416216067035e-05" /> - <width sOffset="333.49668920860745" a="2.4929629016139634" b="-1.0332604607885725e-05" c="0.00020319128020715278" d="-1.7389514458742004e-05" /> - <width sOffset="339.8103024842012" a="2.4966207738506991" b="0.0004758822412974182" c="-0.00013132097575026329" d="-1.4327128102498493e-05" /> - <width sOffset="342.10266274329103" a="2.4968489998785959" b="-0.00035205127576554693" c="-3.177677008156345e-06" d="2.4494381692297982e-07" /> - <width sOffset="349.92420362564849" a="2.4940182215409505" b="-0.00035680551947538228" c="2.509409837231434e-06" d="2.47909647201622e-07" /> - <width sOffset="360.03810476709566" a="2.4909226934811484" b="-0.00022996889902860427" c="8.9770116886500044e-06" d="2.7454773254878218e-07" /> - <width sOffset="370.15200590854283" a="2.4897991146235698" b="3.5867601782679786e-05" c="1.667876567575632e-05" d="2.0796962494277198e-07" /> - <width sOffset="378.04999795205765" a="2.4912252483140849" b="0.00033824348042903472" c="-2.2098271437455579e-06" d="4.8035193534122173e-07" /> - <width sOffset="380.26590704999012" a="2.4919691408621238" b="0.00033552587706344621" c="8.1920707299683153e-07" d="6.6749634202869518e-07" /> - <width sOffset="385.36542907303499" a="2.4937899852080259" b="0.00039595598324449876" c="-8.0771892752827166e-05" d="3.6171801177142034e-06" /> - <width sOffset="390.37980819143729" a="2.4942005899503057" b="-0.00014123469318515626" c="-2.6308742014978588e-05" d="3.1374143998145794e-06" /> - <width sOffset="397.8651847819657" a="2.492985163159612" b="-7.7202699689483609e-06" c="-5.5691367769684707e-05" d="1.4634441014243741e-06" /> - <width sOffset="400.49370933288458" a="2.4926066680957817" b="-0.00027015909857259091" c="-3.8126574586208264e-05" d="3.2686438844270358e-06" /> - <width sOffset="410.60761047433175" a="2.4893559119453723" b="-3.831739257326573e-05" c="6.1484750207192209e-05" d="2.2047138384615019e-06" /> - <width sOffset="412.80529627760484" a="2.4895920645973799" b="0.00026387606480901955" c="0.00015745488296227145" d="-1.8122979003511563e-05" /> - <width sOffset="419.30516389077741" a="2.4929827028975664" b="1.3753834271407357e-05" c="0.0014830115893220211" d="-0.00019666640481580871" /> - <width sOffset="420.42665927046585" a="2.4945859780434141" b="0.0025980625000643527" c="-0.0040501228052604796" d="0.00091517640605260503" /> - <width sOffset="420.72151161577904" a="2.4950233731614286" b="0.00044837664400018424" c="-0.0032989283516346507" d="0.00089946045657214894" /> - <width sOffset="423.52746085410115" a="2.4901789555321114" b="0.0031804296540407844" c="-0.00060214525212855393" d="-0.00020092370032350005" /> - <width sOffset="425.02742625154349" a="2.4929166550909887" b="1.7863163549491456e-05" c="2.0424382834949702e-05" d="-1.418625889043754e-06" /> - <width sOffset="430.83541275722621" a="2.493431437911279" b="0.00011154996789544008" c="-7.5770660237343368e-06" d="-1.9578191729058676e-06" /> - <width sOffset="437.9540523821131" a="2.4931352955260779" b="-0.00029396447358198945" c="9.3135892499320131e-05" d="2.190814655919075e-06" /> - <width sOffset="439.45401265726377" a="2.4929112985642732" b="2.2301996786540206e-07" c="4.7360094055849799e-05" d="-2.2243994892469965e-06" /> - <width sOffset="440.94931389867338" a="2.4930100886840068" b="0.00012693745819726196" c="3.793358730092197e-05" d="-1.9505518142497633e-06" /> - <width sOffset="451.06321504012067" a="2.496156221142809" b="0.00029567889676475442" c="-2.1322774342223795e-05" d="-1.8723592577060557e-06" /> - <width sOffset="457.35604152075791" a="2.4967059220526497" b="-0.00019511654002128068" c="-1.3179982217887042e-05" d="1.0174246867441527e-06" /> - <width sOffset="461.17711618156784" a="2.4958246935355142" b="-0.00025127486424730253" c="-3.1647259522597169e-06" d="4.710806154413424e-07" /> - <width sOffset="471.29101732301513" a="2.4934469630725165" b="-0.00017072839861826327" c="8.6279308355600567e-06" d="8.510665194721713e-07" /> - <width sOffset="476.75979581802994" a="2.4929105259330466" b="0" c="-4.4257574141831971e-06" d="7.7778251123396085e-07" /> - <width sOffset="480.55327908601998" a="2.4928892962897811" b="0" c="2.5945660867644961e-05" d="-1.1211260362478911e-06" /> - <width sOffset="491.51881960590958" a="2.4945308437271549" b="0.0001645934518412055" c="-9.6338740182792674e-06" d="-1.1507630512222767e-06" /> - <width sOffset="498.48925431305065" a="2.4948203194933454" b="-0.00013744736284141497" c="-0.00085997182050990694" d="0.00025122639919571453" /> - <width sOffset="500.60710063373654" a="2.4930584481437794" b="-0.00039956669049076197" c="0.00026517497632631826" d="2.0947113317149375e-06" /> - <width sOffset="501.35707809938788" a="2.4929088177175753" b="1.7184358657654089e-06" c="-1.379727825107232e-06" d="-2.7100604016914562e-06" /> - <width sOffset="501.63272074735676" a="2.4929091298047865" b="3.4009023639858076e-07" c="9.5044670028436996e-08" d="-8.599831536167717e-08" /> - <width sOffset="504.35698436872838" a="2.4929090229341613" b="-1.0567947485185534e-06" c="4.4927673748228661e-05" d="-1.7759459756670963e-06" /> - <width sOffset="511.74662188880393" a="2.4946379306382926" b="0.00037200577777836603" c="6.7774062618203686e-06" d="-1.7907679280706451e-06" /> - <width sOffset="521.86052303025122" a="2.497240969235822" b="-4.04404948731521e-05" c="-4.5844964949014393e-05" d="-2.0748907570609928e-06" /> - <width sOffset="525.80334852599856" a="2.4962416396920775" b="-0.00049872585208774497" c="-0.0008519378892873382" d="0.00013419316946616634" /> - <width sOffset="530.70436398871971" a="2.4891313785140419" b="0.00082049330627018103" c="0.00019879059893960482" d="-3.156339056627812e-05" /> - <width sOffset="531.97442417169839" a="2.4904294510339797" b="0.0011727051021302851" c="8.571225902138188e-05" d="-2.7644785353233294e-05" /> - <width sOffset="535.34835579860635" a="2.4943000265766218" b="0.00080700354365912221" c="-0.00037093107538672211" d="2.5469409608134675e-05" /> - <width sOffset="542.08832531314567" a="2.4906870193383863" b="-0.00072211368023329951" c="0.00014254705900412396" d="2.5508500465320888e-05" /> - <width sOffset="543.06520044366493" a="2.4901414144314371" b="-0.00037058518681729383" c="6.3162052403211845e-05" d="-1.8905881033738616e-06" /> - <width sOffset="552.20222645459285" a="2.4905863137633935" b="0.00031013281542577569" c="1.1288203275643072e-05" d="-1.9024530070638876e-06" /> - <width sOffset="561.814523228079" a="2.4929207451334792" b="-1.9463147185149864e-07" c="0.00011038997977004072" d="-5.6514063578066514e-06" /> - <width sOffset="562.31612759604002" a="2.4929477091428751" b="0.00010628376137489411" c="9.7700845966606543e-05" d="-5.2242670278821459e-06" /> - <width sOffset="568.05565147491347" a="2.4957884382370707" b="0.00071150091916202503" c="-0.0004448527354977658" d="3.287232107315099e-05" /> - <width sOffset="572.43002873748731" a="2.4931400366639602" b="-0.0012933534728290629" c="-3.1678732950921768e-05" d="3.4851527630624497e-05" /> - <width sOffset="576.03031571872248" a="2.4896993929268634" b="-0.00016621509212480078" c="0.00012537095384194624" d="-7.4741576825987574e-06" /> - <width sOffset="582.54392987893448" a="2.4918703516956935" b="0.00051569888532841559" c="-7.7543349037296339e-06" d="-1.1315948264506681e-05" /> - <width sOffset="586.27990093597657" a="2.4930986896492335" b="-1.6067412094073201e-05" c="0.00011242639168499205" d="-7.7293422061964547e-06" /> - <width sOffset="592.65783102038176" a="2.4955641814123659" b="0.00047478555449079196" c="-3.1546526478680732e-05" d="-8.1769831366306495e-06" /> - <width sOffset="597.33684819741984" a="2.4962574174560173" b="-0.00035748894842886994" c="-0.00022578884440465079" d="2.8344048039881682e-05" /> - <width sOffset="602.77173216182894" a="2.4921953870510176" b="-0.00030008490112388205" c="0.00023070477213003711" d="2.8057298578847623e-05" /> - <width sOffset="603.34191560466024" a="2.4921044888768886" b="-9.6317644169372635e-06" c="3.8615963714756558e-05" d="-2.8993043737206806e-06" /> - <width sOffset="612.09154417054947" a="2.4930344381533889" b="2.4147675805139956e-07" c="-0.0035635270115682437" d="0.00051413356420372514" /> - <width sOffset="612.3555765140851" a="2.4927955408762994" b="-0.0017740057990164515" c="0.00096877390193947062" d="-0.00012732140182013772" /> - <width sOffset="616.4590908912943" a="2.4930311989943883" b="-0.00025508094428868889" c="1.6979124686285427e-05" d="5.1939107861245214e-07" /> - <width sOffset="622.99953444472339" a="2.4922344962057599" b="3.3675671606563052e-05" c="2.4344358388925995e-05" d="3.9460010123652553e-07" /> - <width sOffset="632.6110286384644" a="2.4951574939563708" b="0.0006110074337437022" c="-0.00030259518345228257" d="2.551226444915521e-05" /> - <width sOffset="633.11343558617057" a="2.4953913247666115" b="0.00032627445052389503" c="-0.00027555362747227964" d="2.5744210741122987e-05" /> - <width sOffset="639.61070458949109" a="2.4929399539545543" b="5.9196661251498944e-06" c="-0.00030776853877081213" d="3.8646676334302435e-05" /> - <width sOffset="643.22733672761785" a="2.4907639482310069" b="-0.00070375268243104275" c="0.00010244455169993491" d="3.7329718466725805e-05" /> - <width sOffset="643.64332953349469" a="2.490491607484552" b="-0.00059914056444494105" c="0.00012581033511678249" d="-5.0355763291627893e-06" /> - <width sOffset="653.34123786906503" a="2.4919207249029931" b="0.00042027443951823864" c="-2.2074364292153686e-05" d="-4.8301909704337054e-06" /> - <width sOffset="657.39266284592145" a="2.4929398966701282" b="3.5602715133848002e-06" c="0.00099400895429180335" d="-0.00015757605499755169" /> - <width sOffset="658.36778030929509" a="2.4937424221735043" b="0.0014926157532313151" c="-0.00050105518878655966" d="5.5365382971344832e-05" /> - <width sOffset="661.79188735832554" a="2.495201369419763" b="8.6783521084845411e-06" c="-0.0024923780124954014" d="0.00099831716765280036" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="663.45513901051231" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="3.8433279682148838" b="-0.00086212230840049405" c="-1.4764766284318101e-05" d="5.6754705280914672e-07" /> - <width sOffset="6.0515648164429194" a="3.8376958503057024" b="-0.00097846902328526395" c="-3.20742609590217e-06" d="2.4233576199729461e-06" /> - <width sOffset="8.5792943781127065" a="3.8352411906128738" b="-0.00094823250959294989" c="-0.00024242750037471397" d="5.6885071327117723e-05" /> - <width sOffset="12.85324111175828" a="3.8312012137737614" b="9.6817104870744824e-05" c="0.00012929081163140429" d="-3.2011851111912391e-06" /> - <width sOffset="16.165465957890149" a="3.832823997513608" b="0.00084793857628293013" c="8.2095595089498111e-05" d="-5.8483506184511772e-06" /> - <width sOffset="26.27936709933735" a="3.8437471290557443" b="0.00071385120764842758" c="-9.1683142057489398e-05" d="-8.6771883909283067e-06" /> - <width sOffset="28.100819369689674" a="3.8446907625191242" b="0.00029349365203241231" c="-0.0019468421480082294" d="0.0002733492044837331" /> - <width sOffset="28.405998294534584" a="3.8446067823484595" b="-0.00081840227622342529" c="-0.0017332576271285084" d="0.00027240333724789899" /> - <width sOffset="32.142635382330525" a="3.8315601749529833" b="-0.002361252315751581" c="0.00021750770951255629" d="-9.0266361547658971e-06" /> - <width sOffset="36.393268240784579" a="3.8247600164385176" b="-0.0010014380100568326" c="0.00012185999973972568" d="-6.7185711026555424e-06" /> - <width sOffset="44.227048614814606" a="3.8211633744878108" b="-0.00032910719253041916" c="2.3114673539041146e-05" d="3.8597795104506019e-07" /> - <width sOffset="45.733902336705768" a="3.8207212630693643" b="-0.00025681711479327634" c="0.0026712868798471853" d="-0.00037166255334680954" /> - <width sOffset="46.507169382231808" a="3.8219481041103318" b="0.0032077212455367647" c="0.0018338538058614694" d="-0.00036571080845248887" /> - <width sOffset="50.731057795072246" a="3.8406556350317054" b="-0.00087448665988813464" c="-8.0035875009958006e-05" d="1.1029690623249499e-05" /> - <width sOffset="55.130161355175261" a="3.8361987934447841" b="-0.00093831543608804686" c="2.1786882887119883e-05" d="-8.758933159015852e-07" /> - <width sOffset="56.621070523679037" a="3.8348453757450756" b="-0.00087919174284985821" c="2.2906268108938087e-05" d="1.8769462312089557e-06" /> - <width sOffset="67.194688432549839" a="3.830328913984272" b="0.00023474813536580755" c="0.00013097149679142903" d="5.71722684699445e-06" /> - <width sOffset="67.432006564054035" a="3.8303920766890753" b="0.00029787793801108541" c="2.9222454510964149e-05" d="-1.3566645022569966e-06" /> - <width sOffset="76.848872806573439" a="3.8346556235590654" b="0.00048732950942386973" c="-8.8750498037738748e-06" d="-1.3228926354524072e-06" /> - <width sOffset="82.339889462022398" a="3.8368449444934098" b="0.00027020276191248719" c="-0.00012777083594099915" d="3.8715539595584224e-06" /> - <width sOffset="82.574983228711773" a="3.8369014560067436" b="0.00021076843937579254" c="-0.00010918023836849964" d="5.2513427935793474e-06" /> - <width sOffset="86.962773948020669" a="3.836167865528032" b="-0.00044404393518673695" c="-4.0813753772707734e-05" d="5.2483836606465894e-06" /> - <width sOffset="96.165011258538669" a="3.8327153470733348" b="0.00013811820021048516" c="3.6532770618425946e-05" d="-9.2297442447787954e-07" /> - <width sOffset="97.076675089467898" a="3.8328709286080569" b="0.00020242807364026451" c="3.6232018334225917e-05" d="-1.003052260171312e-06" /> - <width sOffset="107.19057623091513" a="3.8375867566128044" b="0.00062751253171702413" c="2.8402470592652421e-06" d="-9.4800589841544327e-07" /> - <width sOffset="117.30447737236236" a="3.8432431180717996" b="0.00039404708412804081" c="-3.3602070664513e-05" d="1.9400146227646914e-07" /> - <width sOffset="120.71684018022776" a="3.8442041882981073" b="0.00017149915880415942" c="-0.00078000908491341627" d="9.6427064772174349e-05" /> - <width sOffset="126.14062369093304" a="3.8375738024614794" b="0.00022020691435632064" c="0.00016756007916585126" d="-1.8075050619538897e-05" /> - <width sOffset="127.41837851380959" a="3.838091034098305" b="0.0005598772181448021" c="9.3492715644111712e-05" d="-2.0553682930719342e-05" /> - <width sOffset="131.53397496135764" a="3.8405460469253647" b="0.0002850106805343733" c="-0.00022645516043560642" d="2.8761923159190951e-05" /> - <width sOffset="136.374683749924" a="3.8398817557538383" b="0.00011449168767412612" c="0.0024285189053548364" d="-0.00084652936090518882" /> - <width sOffset="136.95696989316704" a="3.8406047005450423" b="0.0020816119979163812" c="0.0013844169105628463" d="-0.00094042759172243339" /> - <width sOffset="138.16109908142542" a="3.8434766418055624" b="0.0013249912612038287" c="-3.8443638925377975e-05" d="-4.7166918530765488e-05" /> - <width sOffset="143.78533821118467" a="3.8413213657274872" b="-0.0035834023855137887" c="-0.00042473138859318212" d="4.4545932546274645e-05" /> - <width sOffset="147.64618079670399" a="3.8237189463873094" b="-0.0048710253440855033" c="8.9922978200552932e-05" d="4.4161230363470093e-05" /> - <width sOffset="150.32373940393782" a="3.8121689082762513" b="-0.0034396592667289543" c="0.0003675673286050998" d="1.1784990729935478e-05" /> - <width sOffset="155.53326452586967" a="3.805891569183613" b="0.001349547162085344" c="0.00032893299974415193" d="-1.2647052599105562e-05" /> - <width sOffset="157.76008193815122" a="3.8103881988509762" b="0.0026263552065239511" c="0.00024446539001559916" d="-1.3090911486716431e-05" /> - <width sOffset="167.87398307959845" a="3.8484141572816224" b="0.0035541056454568105" c="-0.00013574109347911997" d="-2.140476637972121e-05" /> - <width sOffset="169.28774459846167" a="3.8531070226321606" b="0.0030419480676941351" c="-0.00054163069778477633" d="2.0094715425380892e-05" /> - <width sOffset="175.41219253699828" a="3.856037503455493" b="-0.0013312401965704422" c="6.1781241932742662e-05" d="1.9797481004307965e-05" /> - <width sOffset="177.98788422104568" a="3.8533567993752627" b="-0.00061896072240302802" c="0.00021574654270428465" d="1.886217594472422e-05" /> - <width sOffset="181.10273905364321" a="3.8540921085703399" b="0.001274098236197257" c="1.2646501326773078e-06" d="-8.9620481991818554e-06" /> - <width sOffset="188.1017853624929" a="3.8599988058093055" b="-2.5261208755049326e-05" c="-0.00018498964876170697" d="-9.0142450940088654e-06" /> - <width sOffset="188.99684278880497" a="3.8598215315141688" b="-0.00037807861350945467" c="-7.3646085860417523e-05" d="1.4099057261888298e-06" /> - <width sOffset="198.21568650394013" a="3.8511817547230534" b="-0.0013764708151845807" c="-3.1406567257457882e-05" d="1.035412736171677e-06" /> - <width sOffset="203.07722243618261" a="3.8438666819409288" b="-0.0016084246404846764" c="-2.0577456596226746e-06" d="3.4086599504350936e-06" /> - <width sOffset="208.32958764538731" a="3.8358557912777993" b="-0.001347933117943761" c="5.3170412546852021e-05" d="3.6491180397124837e-06" /> - <width sOffset="208.61538075748152" a="3.8354749892953759" b="-0.001316647487857309" c="2.2231522988366143e-05" d="-2.1137072147738522e-07" /> - <width sOffset="218.44348878683454" a="3.824481559183333" b="-0.0009409098453530473" c="1.3156391271441514e-05" d="7.7283271626708592e-07" /> - <width sOffset="220.76502737784207" a="3.8223777772874099" b="-0.00086732806342036629" c="-1.1192969417052811e-05" d="-7.4758257374555071e-07" /> - <width sOffset="223.98692764550904" a="3.8194421393751785" b="-0.00096273448544028717" c="-3.4301413279923165e-05" d="1.9894184878607449e-06" /> - <width sOffset="228.55738992828176" a="3.8145154068670157" b="-0.0011516094794576869" c="-7.853177924767375e-06" d="2.1426726391975393e-06" /> - <width sOffset="237.57217242415371" a="3.8050654169461477" b="-0.00077081760658479555" c="0.00011245901734780985" d="6.4697508670463446e-06" /> - <width sOffset="238.67129106972899" a="3.8043626449412047" b="-0.00050015842435440221" c="0.00011804373436606548" d="-3.2472071673628514e-06" /> - <width sOffset="245.94488942533755" a="3.8057202623354431" b="0.00070166424425201646" c="0.0010143466825761251" d="-4.855563608413761e-05" /> - <width sOffset="248.78519221117622" a="3.814783674497078" b="0.0052886261109703243" c="0.00061241067700485395" d="-5.1328261345290028e-05" /> - <width sOffset="251.7258340205037" a="3.834326156226691" b="0.007558822937046036" c="-0.0040284733959945543" d="0.00047412333090233257" /> - <width sOffset="257.21935951329783" a="3.8328801801645174" b="0.0062232316527910869" c="-0.00034077874003732208" d="-5.4364772283203428e-05" /> - <width sOffset="258.89909335262348" a="3.8421143885350846" b="0.0046182249338631498" c="-0.00060099217470033174" d="-4.8597667828326571e-05" /> - <width sOffset="261.82871916577744" a="3.8492639738760719" b="-0.00015443813377055975" c="-0.00021259880582032961" d="4.6119835505842824e-06" /> - <width sOffset="267.7641040713487" a="3.8418220739751572" b="-0.0021907257647973974" c="-0.00050191307054685697" d="4.2980450675739307e-05" /> - <width sOffset="269.01299449407065" a="3.8383869728799889" b="-0.0032432812731750344" c="-0.00035497397282635156" d="3.4033023661982439e-05" /> - <width sOffset="276.31694409266652" a="3.8090220977142533" b="-0.0029819567452594635" c="0.00025577886830676386" d="-7.8395317881963361e-06" /> - <width sOffset="278.22444139851848" a="3.8042102760266445" b="-0.0020917352313093137" c="0.00037639210800155851" d="-2.957812520871796e-05" /> - <width sOffset="279.12689563551783" a="3.8026073840062127" b="-0.0014846493000976952" c="0.00029367131333693888" d="-2.9254902637803174e-05" /> - <width sOffset="280.96153401007984" a="3.8006914020657643" b="-0.00070249502998615617" c="-0.00013144019327688612" d="2.1243239131254738e-05" /> - <width sOffset="289.24079677696511" a="3.7979213281436515" b="0.0014894786157035062" c="0.00039061392856474142" d="2.3677726959814716e-05" /> - <width sOffset="291.05170719835269" a="3.8020402332233854" b="0.0031371582522745694" c="-4.413808048206857e-05" d="-1.5181972555797961e-05" /> - <width sOffset="296.31205821764536" a="3.8151115303247405" b="0.0014124802332456531" c="-2.3141212277123306e-05" d="-3.2700425891663906e-06" /> - <width sOffset="299.3546979184124" a="3.8191028557479028" b="0.0011808406992423835" c="-5.4622833940915028e-05" d="-2.2104975849568711e-06" /> - <width sOffset="304.10799300861891" a="3.8232442053495781" b="0.00051173308720516312" c="-0.0001028969208094698" d="2.5589381989334951e-06" /> - <width sOffset="309.46859905985957" a="3.823424735164477" b="-0.00037084493476334865" c="-6.219661639526286e-05" d="2.4432432320584667e-06" /> - <width sOffset="315.05956512981868" a="3.8198341552149708" b="-0.0008372039793339294" c="-0.00017662076845982274" d="1.0667802087060552e-05" /> - <width sOffset="319.58250020130674" a="3.8134214580751422" b="-0.0017802007005404033" c="-2.8281334515549818e-05" d="9.6814869787509654e-06" /> - <width sOffset="323.15091722242198" a="3.8071487514953031" b="-0.001612199342630394" c="0.0013955665280267785" d="-0.00011440595455236747" /> - <width sOffset="329.69640134275403" a="3.8243039642348782" b="0.0019525104491496968" c="-0.00083071359149423755" d="-0.00012671555414188657" /> - <width sOffset="330.74672526917016" a="3.8252914808686471" b="-0.00021189660140881835" c="-0.00014545271287161267" d="2.8931554505353822e-05" /> - <width sOffset="331.28357490734413" a="3.8251402800961891" b="-0.00034305419802758421" c="-0.00021661553319225757" d="1.4385997452516519e-05" /> - <width sOffset="339.8103024842012" a="3.8153845040615177" b="-0.00089929205511679058" c="0.00016166254932719202" d="1.1690387604245119e-05" /> - <width sOffset="342.10266274329103" a="3.8143133500133013" b="2.6181550882452514e-05" c="1.5386173190067683e-05" d="-2.8816843151884592e-06" /> - <width sOffset="349.92420362564849" a="3.8140805322119409" b="-0.0002620053807232968" c="-5.1569613863293754e-05" d="-2.8520737207169839e-06" /> - <width sOffset="353.07291114998941" a="3.8126552398544042" b="-0.00067159009203637506" c="6.4202930040340293e-06" d="2.6710127183175687e-07" /> - <width sOffset="360.03810476709566" a="3.8083792143133088" b="-0.00054327853343128191" c="1.0839894759394424e-05" d="3.675847225494449e-07" /> - <width sOffset="370.15200590854283" a="3.8043736613956813" b="-0.00021120946298902683" c="1.9039893311281858e-05" d="2.6924907446238542e-07" /> - <width sOffset="370.17268119417577" a="3.804369302721021" b="-0.00021042180735706212" c="0.00015713183818394187" d="-6.5577653440057621e-06" /> - <width sOffset="378.04999795205765" a="3.8092566438232662" b="0.0010443630044067297" c="2.5975273818908155e-05" d="-6.8301476548577838e-06" /> - <width sOffset="380.26590704999012" a="3.8116240858618564" b="0.0010588674338520309" c="-1.8927495930967249e-05" d="-7.0164221315917942e-06" /> - <width sOffset="384.74336110338345" a="3.8153558559979528" b="0.0004673862835735857" c="-0.00037437744198285001" d="1.3069990729502253e-05" /> - <width sOffset="385.36542907303499" a="3.8155048759531383" b="1.6782879567690779e-05" c="-0.00025818333747481691" d="1.0120306959128505e-05" /> - <width sOffset="390.37980819143729" a="3.8103732542364428" b="-0.0018090804606484042" c="-0.00010345449739515495" d="1.0300305504323231e-05" /> - <width sOffset="400.49370933288458" a="3.7921502243027749" b="-0.00074085204257083636" c="0.00020937603487157977" d="1.049751318087931e-05" /> - <width sOffset="404.7340595700349" a="3.7935738241485852" b="0.0016010572116060364" c="-1.9555534573242272e-05" d="-3.655695322128014e-06" /> - <width sOffset="410.60761047433175" a="3.8015623256845554" b="0.00099298724166249175" c="-8.6757775339075898e-05" d="-2.3433706875020376e-06" /> - <width sOffset="412.80529627760484" a="3.8033007014075624" b="0.00057770038313398147" c="-0.00018364208066006286" d="1.7984322154457068e-05" /> - <width sOffset="420.42665927046585" a="3.8049981306486664" b="0.00091236190595586348" c="0.005099006062884227" d="-0.001093858488779227" /> - <width sOffset="420.72151161577904" a="3.8056823998045095" b="0.0036339764008760664" c="0.0041431573117398229" d="-0.0010960333398706808" /> - <width sOffset="423.52746085410115" a="3.8242858717943484" b="0.00099658860860664606" c="-0.00020834638434919105" d="4.3508171500300981e-06" /> - <width sOffset="423.68451361185021" a="3.8244372666557886" b="0.00093146780630345093" c="-0.00010871106902247245" d="4.5599012114321871e-06" /> - <width sOffset="430.83541275722621" a="3.8272065102671649" b="7.6220575880541711e-05" c="-1.4097273018761215e-05" d="4.2695282175400738e-06" /> - <width sOffset="437.9540523821131" a="3.8285748953288374" b="0.00052458917617601323" c="-6.5441560722223778e-05" d="1.2089438855856693e-07" /> - <width sOffset="440.94931389867338" a="3.8295623108526744" b="0.00013581384457179036" c="-6.4022014954327196e-05" d="1.7187201501047972e-07" /> - <width sOffset="451.06321504012067" a="3.8245648550434517" b="-0.0011064679367231486" c="-5.8113297514897542e-05" d="1.5802396120128171e-07" /> - <width sOffset="455.56040327824155" a="3.8184279092827715" b="-0.0016195728502523153" c="2.6856577757602572e-05" d="3.8251909084834092e-06" /> - <width sOffset="457.35604152075791" a="3.8156284831805971" b="-0.0014861225733236037" c="3.97246711914404e-06" d="9.3540696381932335e-07" /> - <width sOffset="461.17711618156784" a="3.8100600847018171" b="-0.0014147918452284099" c="1.7609520970269454e-05" d="1.3665576231733776e-06" /> - <width sOffset="471.29101732301513" a="3.7989661025421473" b="-0.00063923031442166857" c="5.6068075421806447e-05" d="1.5683790328664938e-06" /> - <width sOffset="475.1608006098736" a="3.797422940593945" b="-0.00013482723620810284" c="0.00028259632543876126" d="-7.1382193979735488e-06" /> - <width sOffset="476.75979581802994" a="3.7979007076291884" b="0.00071416041290757286" c="0.0073779631892589275" d="-0.0012691371969492942" /> - <width sOffset="480.55327908601998" a="3.837500128608105" b="0.0018999054648007722" c="-8.3400709516427186e-05" d="-1.2023595783983014e-06" /> - <width sOffset="481.4049184644623" a="3.839056930567696" b="0.0017552346311707483" c="-8.4057120516503039e-05" d="-6.1888636478496089e-07" /> - <width sOffset="491.51881960590958" a="3.8475706377923125" b="-0.00013497569165578523" c="-0.00010237373985985309" d="-6.0783875706903172e-07" /> - <width sOffset="495.50707361311265" a="3.8453653863551116" b="-0.00098056580796793678" c="-0.0003421735743975641" d="2.6858479838755602e-05" /> - <width sOffset="498.48925431305065" a="3.8401104082470701" b="-0.002304822914209209" c="0.00072439093657348272" d="-0.00022551868240833504" /> - <width sOffset="500.60710063373654" a="3.8363360098540742" b="-0.0022710641520318374" c="-0.00023742088002406354" d="2.3613005453414283e-05" /> - <width sOffset="501.63272074735676" a="3.8337824933640547" b="-0.0026835560902241499" c="-0.00016731626971109887" d="2.1146196267293942e-05" /> - <width sOffset="508.81578831042816" a="3.8137106228552655" b="-0.0018140376445054905" c="8.609323936505526e-05" d="-1.3855767344511607e-06" /> - <width sOffset="511.74662188880393" a="3.8090986206550896" b="-0.001345093151577376" c="7.4599657819827779e-05" d="-1.653684615124305e-06" /> - <width sOffset="521.86052303025122" a="3.8014145171667719" b="-0.00034357716336347191" c="2.4261269998904172e-05" d="-1.2728061838548151e-06" /> - <width sOffset="525.80334852599856" a="3.800358998759501" b="-0.00021162190498464077" c="0.0007907560397839192" d="-0.00013754086640654093" /> - <width sOffset="526.99805638339819" a="3.8010002997484529" b="0.0010888756822690284" c="0.00045038969933113059" d="-0.0001393116262780459" /> - <width sOffset="530.70436398871971" a="3.8041301808816828" b="-0.0013136115460677872" c="-0.00017628561321661793" d="2.6444933756472696e-05" /> - <width sOffset="531.97442417169839" a="3.8022316342011351" b="-0.0016334269936735812" c="-8.3181454200208994e-05" d="2.264601311751469e-05" /> - <width sOffset="535.34835579860635" a="3.7966434365394965" b="-0.0014213572012431693" c="0.00032286533298226126" d="-3.0468181843835868e-05" /> - <width sOffset="542.08832531314567" a="3.7924017138544883" b="-0.0012214037685604629" c="-0.00029166032795314978" d="-3.0719502498691591e-05" /> - <width sOffset="543.06520044366493" a="3.7909015905547792" b="-0.0018791806936586429" c="-0.00022754681622670089" d="-3.3204139299584525e-06" /> - <width sOffset="545.52189518056468" a="3.7848624609671209" b="-0.0030573263962796779" c="-0.0035234087077263584" d="0.00071200698541798359" /> - <width sOffset="549.26488479658224" a="3.7613931255715185" b="0.0004921014115772869" c="0.00012615075659042527" d="-6.2403550047867355e-06" /> - <width sOffset="552.20222645459285" a="3.7637688699774978" b="0.0010716722566866182" c="7.1215357460887118e-05" d="-6.1344847560609089e-06" /> - <width sOffset="562.31612759604002" a="3.7755458482717774" b="0.00062969475447601734" c="-0.00011073053621120778" d="-6.5616240723797368e-06" /> - <width sOffset="562.64364654062388" a="3.7757399767906614" b="0.00055505048792606996" c="-0.0017585848909314737" d="0.00025585194062225519" /> - <width sOffset="567.35960472118211" a="3.7660809953696557" b="0.0010388671235483531" c="0.00077775964979847506" d="-3.1402697525347773e-05" /> - <width sOffset="568.05565147491347" a="3.7671703156320078" b="0.0020759392436503076" c="0.0011647855781875937" d="-6.9499285624894877e-05" /> - <width sOffset="572.43002873748731" a="3.7927222329926256" b="0.0082767190639606459" c="0.00027651619694869269" d="-7.2257804280709601e-05" /> - <width sOffset="576.03031571872248" a="3.822732951755758" b="0.0074579630323298634" c="-0.00028455348236332289" d="-2.9932118967515449e-05" /> - <width sOffset="581.7689000244867" a="3.8505038193838041" b="0.0012349794932387888" c="-0.00013713032305200386" d="5.1826611037542976e-06" /> - <width sOffset="582.54392987893448" a="3.8513810078412414" b="0.0010317585315750991" c="-0.00010768672951986803" d="6.3793839144717492e-06" /> - <width sOffset="592.65783102038176" a="3.8574005907371713" b="0.00081115326751048707" c="8.3193707883550986e-05" d="7.2625258440097837e-06" /> - <width sOffset="597.33684819741984" a="3.8637613309061418" b="0.0020666826743299615" c="0.00026459974166966602" d="-2.9258505332444736e-05" /> - <width sOffset="599.5004416311906" a="3.8691750871166928" b="0.0028007660258009574" c="5.0086631541686373e-05" d="-3.200153702678059e-05" /> - <width sOffset="602.77173216182894" a="3.8777529165166165" b="0.0021010837213617031" c="-0.00025843295169909438" d="-3.0937632041409314e-05" /> - <width sOffset="603.34191560466024" a="3.8788611657807133" b="0.001776201018533332" c="-7.1271098635183885e-05" d="1.8970885111084332e-08" /> - <width sOffset="612.3555765140851" a="3.8890946347208919" b="0.00049599791737225886" c="-0.0041958153511854838" d="0.00064147393702150394" /> - <width sOffset="612.88563330327622" a="3.8882742160823103" b="-0.0034113569723366885" c="-0.003173932171817025" d="0.00064138502031439498" /> - <width sOffset="616.4590908912943" a="3.8648214732236497" b="-0.0015244921801225778" c="8.1780022512304717e-05" d="4.6949791767421814e-07" /> - <width sOffset="622.99953444472339" a="3.8584803126818192" b="-0.00039448523473129687" c="8.4628525042315726e-05" d="1.682386492452e-07" /> - <width sOffset="632.6110286384644" a="3.8626561548093816" b="0.001278953992847019" c="0.00042779723101499711" d="-2.4949425670549411e-05" /> - <width sOffset="633.11343558617057" a="3.8634035277185612" b="0.0016899179362226582" c="0.00039558799887886545" d="-2.5246204424895829e-05" /> - <width sOffset="637.96085345463041" a="3.8780149859317135" b="0.0037454135696190966" c="0.00051382097269437568" d="-4.856306105351034e-05" /> - <width sOffset="643.22733672761785" a="3.9048977789845578" b="0.005116659928203867" c="-0.00025072700940250944" d="-4.8323331116805312e-05" /> - <width sOffset="643.64332953349469" a="3.906979405713435" b="0.004882971604447988" c="-0.00028781258411701585" d="-5.9580362872505477e-06" /> - <width sOffset="653.34123786906503" a="3.9218311864801425" b="-0.0023804381929639273" c="-0.00046384028439931479" d="-5.8264604434351003e-06" /> - <width sOffset="653.49067553989653" a="3.9214650815932561" b="-0.0025194589593007196" c="-0.00058558648829757157" d="5.3682896063581684e-05" /> - <width sOffset="658.36778030929509" a="3.901476188949883" b="-0.0044006638645876627" c="0.0012339634909526022" d="-0.00015925854187068392" /> - <width sOffset="658.62139536642928" a="3.9004368856687561" b="-0.0038054912356462129" c="-0.00069005892068492707" d="0.00013961522929088649" /> - <width sOffset="661.79188735832554" a="3.8858846365033335" b="-0.0039708987898761918" c="0.0031979417965778251" d="-0.00080333655539011842" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.8295771002070649" b="-0.00056102710685798575" c="-2.2077724498259595e-05" d="7.6365973229472906e-07" /> - <width sOffset="6.0515648164429194" a="3.8255427302927139" b="-0.00074433771875739125" c="-5.0241120677926777e-06" d="1.402513667018203e-06" /> - <width sOffset="14.042555241011343" a="3.8199895789778524" b="-0.00055595654653334964" c="-1.1101228402902146e-05" d="6.411816844087179e-07" /> - <width sOffset="16.165465957890149" a="3.8187654368663702" b="-0.00059442144352922423" c="-1.0308443089735404e-05" d="1.0628802998471765e-06" /> - <width sOffset="26.27936709933735" a="3.8127986707678621" b="-0.0004767693377387939" c="2.5388481361978748e-05" d="-1.0699230288585177e-06" /> - <width sOffset="28.405998294534584" a="3.8118892888330542" b="-0.00038330183886470422" c="5.523921439685459e-05" d="-1.2405577845084758e-07" /> - <width sOffset="29.341727554913632" a="3.8115788873084098" b="-0.00028024980611932038" c="0.00022215077816529349" d="-8.0893987625542589e-06" /> - <width sOffset="36.393268240784579" a="3.8178125645806502" b="0.0016460434172412206" c="5.8872694456066601e-05" d="-7.920191933053e-06" /> - <width sOffset="45.733902336705768" a="3.8318696136391277" b="0.00067281047388822058" c="-0.0028094935193567357" d="0.00036412833935454329" /> - <width sOffset="46.507169382231808" a="3.8308783234246468" b="-0.0030189842332687799" c="-0.0019655626578419559" d="0.00036419010259681182" /> - <width sOffset="50.425168454793351" a="3.810781034153774" b="-0.0016493922689084436" c="0.0024741991845379872" d="0.00037271421399935259" /> - <width sOffset="50.731057795072246" a="3.810518676879417" b="-3.1107263043377355e-05" c="9.5951841711588724e-05" d="-4.0262850460499115e-06" /> - <width sOffset="56.621070523679037" a="3.812841517775988" b="0.0006801652135058657" c="2.6514961348470912e-05" d="-3.8572498807641582e-06" /> - <width sOffset="66.734971665126267" a="3.8184423229310545" b="3.2818809369005841e-05" c="-9.0722354295112782e-05" d="-3.7857561798592613e-06" /> - <width sOffset="67.432006564054035" a="3.8184198385534374" b="-9.917250055296036e-05" c="7.1806801700265591e-06" d="3.2881350302948985e-06" /> - <width sOffset="68.449443728278681" a="3.8183298332096283" b="-7.4349299901166634e-05" c="-2.6903561534684213e-05" d="1.0032310375481868e-06" /> - <width sOffset="76.848872806573439" a="3.8164017820864626" b="-0.00031396333444523702" c="-1.3798639374406863e-06" d="1.0381929432924904e-06" /> - <width sOffset="82.574983228711773" a="3.8147536702869176" b="-0.00022764396959707746" c="5.9449537902256522e-07" d="-3.4159585670921692e-07" /> - <width sOffset="85.062743272884774" a="3.8141857665947621" b="-0.00023102840496684685" c="-3.4724546731075819e-05" d="5.4501068912380699e-07" /> - <width sOffset="86.962773948020669" a="3.8136251842864621" b="-0.00035708115655096802" c="-3.2355047881131417e-05" d="5.5139846730463209e-07" /> - <width sOffset="97.076675089467898" a="3.8072745260496603" b="-0.00084234337220961497" c="-1.763277538052887e-05" d="6.2364072532442895e-07" /> - <width sOffset="107.19057623091513" a="3.7975966686823313" b="-0.0010076371729274059" c="-2.0163982697405167e-06" d="6.3689744614541019e-07" /> - <width sOffset="117.30447737236236" a="3.7878581758151602" b="-0.00085297785553202997" c="1.5426644443353764e-05" d="3.2854713361850943e-07" /> - <width sOffset="119.17089326755311" a="3.7863220393379811" b="-0.00079195929674037518" c="-3.1503452052729179e-05" d="1.3614481477742064e-06" /> - <width sOffset="127.41837851380959" a="3.7784112455469461" b="-0.0010337865627469281" c="1.3308691603985072e-06" d="1.3238851859797599e-06" /> - <width sOffset="136.374683749924" a="3.7702102173994305" b="-0.00069135926881412364" c="-0.0022003875545273032" d="0.00087661516926314383" /> - <width sOffset="137.53227965525681" a="3.7678211365031049" b="-0.0022616111627635819" c="0.00084415798164610772" d="0.00087654094578091092" /> - <width sOffset="138.16109908142542" a="3.7669507298242313" b="-0.00016017594286511227" c="0.00052338751684423055" d="-1.6719727411503892e-05" /> - <width sOffset="139.60590776739727" a="3.7677614364276426" b="0.0012475078226335768" c="0.0006794533653297247" d="-2.8790490826558834e-05" /> - <width sOffset="147.64618079670399" a="3.806751201554019" b="0.0065899195789695247" c="-1.5367211675889569e-05" d="-2.8841153009779885e-05" /> - <width sOffset="155.53326452586967" a="3.8436203346286719" b="0.00096522855069167222" c="-0.00047496803290871133" d="-4.409109680698201e-06" /> - <width sOffset="157.41511874519475" a="3.8437253301288807" b="-0.00086925557924729746" c="-0.00024221755337246214" d="7.6879616719181874e-06" /> - <width sOffset="157.76008193815122" a="3.8433969607502587" b="-0.0010336232672616091" c="-0.00023181225811729834" d="8.0607199553884911e-06" /> - <width sOffset="167.87398307959845" a="3.8175699970636048" b="-0.0032490585658385323" c="1.5309984001484707e-05" d="8.0080992766435061e-06" /> - <width sOffset="171.66857733534718" a="3.8058991334979355" b="-0.0027869436544344043" c="0.00022925320351096685" d="1.7528253493351683e-06" /> - <width sOffset="175.41219253699828" a="3.7987707561849859" b="-0.00099677637258118465" c="1.4734090051820911e-05" d="2.0500597704101008e-06" /> - <width sOffset="177.98788422104568" a="3.7963361469359076" b="-0.00088007398250507024" c="3.3871891980201264e-05" d="2.8771783363198078e-06" /> - <width sOffset="188.1017853624929" a="3.7938765718233869" b="0.00068800826707385147" c="0.00012099754628132099" d="2.9036516059316561e-06" /> - <width sOffset="188.99684278880497" a="3.7945913953088342" b="0.00091158635984073353" c="-6.7540128614525409e-06" d="-7.5204992140623672e-06" /> - <width sOffset="191.83769123946487" a="3.7969541450052597" b="0.00069113134590640952" c="6.0786195439925959e-05" d="-2.51978907375073e-06" /> - <width sOffset="198.21568650394013" a="3.8031811307549903" b="0.001159013313555581" c="1.3864742959116134e-05" d="-2.5049521973463474e-06" /> - <width sOffset="208.32958764538731" a="3.8137299892897008" b="0.00067076442499223012" c="-6.2186592619972047e-05" d="-2.5095954089724907e-06" /> - <width sOffset="208.61538075748152" a="3.8139165513028672" b="0.00063460449135443716" c="-3.0270699902939258e-05" d="1.3508933541654551e-06" /> - <width sOffset="218.44348878683454" a="3.8185120358270903" b="0.00043105236074484157" c="8.2624342805846905e-06" d="1.4870069539655422e-06" /> - <width sOffset="223.98692764550904" a="3.8214087595752924" b="0.00065974285618917213" c="4.8874365055095385e-05" d="-1.2499941076499068e-06" /> - <width sOffset="228.55738992828176" a="3.825325691522552" b="0.0010281658890615665" c="2.9178303455025018e-05" d="-1.4888258763635384e-06" /> - <width sOffset="228.96245503278797" a="3.8257468542053159" b="0.0010510712645877226" c="5.4263486106467977e-05" d="-1.9307543903302608e-06" /> - <width sOffset="238.67129106972899" a="3.8392995228424285" b="0.0015587544447598276" c="-4.6482482977108258e-06" d="-1.7727752134825466e-06" /> - <width sOffset="245.94488942533755" a="3.8497091758090107" b="0.0012097682050272889" c="-0.0010104912032788055" d="4.3535653703166409e-05" /> - <width sOffset="248.78519221117622" a="3.8459908879178708" b="-0.0034767856160210029" c="-0.00063896495089826107" d="4.2743602759690841e-05" /> - <width sOffset="258.89909335262348" a="3.7896875259301792" b="-0.0032847851734025104" c="0.00065582820161710193" d="4.4155517331076218e-05" /> - <width sOffset="261.82871916577744" a="3.7868033677356916" b="0.0016947989402216204" c="0.00022839331644902645" d="-9.0541340478278441e-06" /> - <width sOffset="264.80202114016743" a="3.7936236406232062" b="0.0028128336525079936" c="0.00018521506035469332" d="-1.0560674479986306e-05" /> - <width sOffset="269.01299449407065" a="3.8079641285896959" b="0.0038109099841749008" c="4.8240529521954685e-05" d="-1.0825573420201532e-05" /> - <width sOffset="278.22444139851848" a="3.8387001200015303" b="0.001943965932897816" c="-0.00041639195178219332" d="1.0913020001556784e-05" /> - <width sOffset="280.12689074722653" a="3.8409665059631202" b="0.00047812966059825827" c="-0.00031401291428660895" d="1.2414188912616817e-05" /> - <width sOffset="289.24079677696511" a="3.8286391164687124" b="-0.0021521488602458559" c="2.3613419863977779e-05" d="1.2566320811795298e-05" /> - <width sOffset="296.31205821764536" a="3.8190446751945126" b="6.6855825680408373e-05" c="2.9608256655513328e-05" d="6.5439084517296928e-07" /> - <width sOffset="299.3546979184124" a="3.8195406291425038" b="0.00026520471670855015" c="3.1008437928976772e-05" d="-2.1916718766702017e-07" /> - <width sOffset="309.46859905985957" a="3.8251680256088187" b="0.00082518077828965929" c="2.4075574977621801e-05" d="-2.7805017344549621e-07" /> - <width sOffset="315.05956512981868" a="3.830485565248833" b="0.0010683175948880649" c="0.00017481628981899495" d="-8.5026090284323805e-06" /> - <width sOffset="319.58250020130674" a="3.8381069955464002" b="0.0021278709208881726" c="6.1488017833607493e-05" d="-8.4704437342833231e-06" /> - <width sOffset="329.69640134275403" a="3.8571545513412664" b="0.00077228800237075419" c="-0.00018560617342469791" d="-1.2076519506939726e-05" /> - <width sOffset="331.28357490734413" a="3.8578644569203124" b="9.1842975891224824e-05" c="-0.0001253502669504302" d="2.4690375352686986e-06" /> - <width sOffset="332.54099685887718" a="3.8577866584869756" b="-0.000211681919149858" c="-0.00010719095063560663" d="3.2113833966871324e-06" /> - <width sOffset="339.8103024842012" a="3.8518171977886806" b="-0.0012609939671847062" c="-3.4850905219451867e-05" d="3.2772032987404911e-06" /> - <width sOffset="349.92420362564849" a="3.838889162449143" b="-0.00096026601583623975" c="6.4734020429812458e-05" d="3.4683864421832177e-06" /> - <width sOffset="353.07291114998941" a="3.836615636008478" b="-0.00044944853563702315" c="1.256587907280957e-05" d="3.4921144963414244e-07" /> - <width sOffset="360.03810476709566" a="3.8342127616586921" b="-0.0002235761229975447" c="1.7847996523203759e-05" d="3.2128031874953614e-07" /> - <width sOffset="366.33027582222871" a="3.8335926459713372" b="3.9189000055792807e-05" c="3.6334856278532143e-06" d="-2.7930947457520258e-07" /> - <width sOffset="370.15200590854283" a="3.833779894362237" b="5.4722937881488613e-05" c="6.0408913320963741e-07" d="-2.5243883186583888e-07" /> - <width sOffset="370.17268119417577" a="3.8337810260306036" b="5.474759345351884e-05" c="-0.00013748681272817459" d="6.5747820844572876e-06" /> - <width sOffset="380.26590704999012" a="3.827087766734159" b="-0.00071124088065446312" c="6.2159338529898245e-05" d="6.4450051721630367e-06" /> - <width sOffset="384.74336110338345" a="3.8257278813460394" b="0.00023301084039062121" c="0.0004099338050449526" d="-1.3641407694239558e-05" /> - <width sOffset="390.37980819143729" a="3.837621911159018" b="0.0035540076745223764" c="0.00018145140627810432" d="-1.3542017021474181e-05" /> - <width sOffset="400.49370933288458" a="3.8781175955632703" b="0.0030686916055964876" c="-0.000227624419583107" d="-1.3587190992846642e-05" /> - <width sOffset="402.19960278275278" a="3.882622602384854" b="0.0021734664617577" c="-0.00027634409287678545" d="-1.4730403166391795e-05" /> - <width sOffset="404.7340595700349" a="3.8861162597733157" b="0.00048884117632091431" c="-2.587383676754325e-05" d="-5.7719466341179499e-07" /> - <width sOffset="410.60761047433175" a="3.8879779256139178" b="0.00012516135779728322" c="-3.7261345010225326e-05" d="-4.457691569240174e-07" /> - <width sOffset="420.05844145377785" a="3.8854564002699763" b="-0.00069858589414964999" c="-2.7662954613403602e-05" d="1.0199949655574938e-06" /> - <width sOffset="420.72151161577904" a="3.8849813238127662" b="-0.00073392549454863725" c="-3.7365441335459991e-05" d="3.194846086950811e-06" /> - <width sOffset="423.68451361185021" a="3.882561764231073" b="-0.00087120693761101836" c="-0.00010655182714346012" d="2.9857619003373484e-06" /> - <width sOffset="430.83541275722621" a="3.8719750704148974" b="-0.0019370556606370702" c="-4.5910806376699178e-05" d="2.6597867312390223e-06" /> - <width sOffset="440.94931389867338" a="3.8504393305174687" b="-0.0020495136706298409" c="3.4897796941131496e-05" d="2.660168187016736e-06" /> - <width sOffset="442.83389657919167" a="3.8467186028972673" b="-0.0018896341291975891" c="3.8313131590619441e-05" d="2.5034120141277781e-06" /> - <width sOffset="451.06321504012067" a="3.8351579913533977" b="-0.00075044638751241603" c="0.00010119837743533821" d="2.360076889388124e-06" /> - <width sOffset="455.56040327824155" a="3.83404445884057" b="0.00030296547362837267" c="5.0201622744879219e-05" d="-1.3070900576544507e-06" /> - <width sOffset="458.6220115239845" a="3.8354050719542165" b="0.00057360506742511067" c="5.5581020187118885e-05" d="-1.8652961242388162e-06" /> - <width sOffset="461.17711618156784" a="3.8372024416571455" b="0.00082110262259423689" c="4.2989067967772454e-05" d="-1.7982340111878755e-06" /> - <width sOffset="471.29101732301513" a="3.848044004181018" b="0.0011388475440229241" c="-1.6367275669616618e-05" d="-8.1174334091636797e-07" /> - <width sOffset="475.1608006098736" a="3.8521589525452611" b="0.00097570381246145919" c="-0.00023411147722197747" d="7.8948550902788889e-06" /> - <width sOffset="481.4049184644623" a="3.8510456058768576" b="-0.0010244977976526703" c="-8.8601319838645817e-05" d="7.3264082096831375e-06" /> - <width sOffset="491.51881960590958" a="3.839200435533392" b="-0.00056843099216787984" c="0.0001338857751565334" d="7.715682883185415e-06" /> - <width sOffset="495.50707361311265" a="3.8395524645599526" b="0.00086769085780281766" c="0.00045872927315020558" d="-1.9750635712656248e-05" /> - <width sOffset="501.63272074735676" a="3.857540981697904" b="0.0042643761059564123" c="9.4635859271328317e-05" d="-1.9905045419774878e-05" /> - <width sOffset="508.81578831042816" a="3.88567793371148" b="0.002542838031579325" c="-0.00013202783862382934" d="2.6267275819232801e-06" /> - <width sOffset="511.74662188880393" a="3.8920626064651382" b="0.0018366238653450958" c="-0.00010690876406571684" d="2.8490554471827544e-06" /> - <width sOffset="513.20607132836722" a="3.8945242078737126" b="0.0015427733953728162" c="-0.00019905893867443094" d="8.1362627766903674e-06" /> - <width sOffset="521.86052303025122" a="3.8982406866221297" b="-7.4511668020079769e-05" c="1.2260635285000935e-05" d="8.3813627654699325e-06" /> - <width sOffset="526.99805638339819" a="3.8993180146770836" b="0.00071512650362877384" c="-1.1157893434340645e-05" d="1.0152122636331281e-05" /> - <width sOffset="527.48038389357748" a="3.899661483247995" b="0.00071144834987442863" c="-4.563812382574735e-05" d="4.5577970748722237e-06" /> - <width sOffset="531.97442417169839" a="3.902350716352752" b="0.00057740246796682423" c="1.4051278631163228e-05" d="4.3577963184265171e-06" /> - <width sOffset="542.08832531314567" a="3.9141362333456193" b="0.0021989189351791245" c="0.00014476719134276354" d="4.6082951641982271e-06" /> - <width sOffset="545.52189518056468" a="3.9235796363322053" b="0.0033560426003007935" c="0.0034636260628118053" d="-0.00071071910418378222" /> - <width sOffset="549.26488479658224" a="3.9473970456721137" b="-0.0005867873085685846" c="-0.00017147182324605748" d="7.5282362390126285e-06" /> - <width sOffset="552.20222645459285" a="3.9443847865380683" b="-0.0013992696426236883" c="-0.00010575101763977037" d="7.3374443490347674e-06" /> - <width sOffset="562.31612759604002" a="3.9270063686892951" b="-0.0012867168404028528" c="0.00011673601057082651" d="7.3623289471127129e-06" /> - <width sOffset="562.64364654062388" a="3.9265977253202191" b="-0.0012078810889902805" c="0.001765377103337711" d="-0.00025505123574752345" /> - <width sOffset="565.82227895150834" a="3.9324039475047394" b="0.0022842020920360116" c="-0.00068947220205597937" d="-0.00025124572233563183" /> - <width sOffset="567.35960472118211" a="3.9333731883179963" b="-0.0016170448772686518" c="-0.00076479515601998336" d="3.6008915810943206e-05" /> - <width sOffset="572.43002873748731" a="3.910205811542014" b="-0.0065954351072979641" c="-0.00020789815122662059" d="3.6309580391940536e-05" /> - <width sOffset="579.60667009462838" a="3.865586117739193" b="-0.003969170427596572" c="0.0005492918561608122" d="3.2427565361687587e-05" /> - <width sOffset="581.7689000244867" a="3.8598997372673649" b="-0.0011389600606562503" c="9.6912289543536957e-05" d="-2.6872147091325181e-06" /> - <width sOffset="582.54392987893448" a="3.8590739706448627" b="-0.00099358262339694888" c="8.9660051819968271e-05" d="-2.8818495493906047e-06" /> - <width sOffset="592.65783102038176" a="3.8552149410233576" b="-6.431860728150048e-05" c="9.031554895574526e-07" d="-2.4864041018540269e-06" /> - <width sOffset="599.5004416311906" a="3.8540205264734197" b="-0.00040120889070088318" c="-2.5534749710206476e-05" d="2.5662759241522502e-07" /> - <width sOffset="602.77173216182894" a="3.8524437833585834" b="-0.00056003328186400169" c="-2.841073509732615e-05" d="-7.9981007651323036e-07" /> - <width sOffset="612.88563330327622" a="3.8430460473792531" b="-0.0013801601228540378" c="-5.4231083411454619e-05" d="-7.8609428011001781e-07" /> - <width sOffset="615.16980109816279" a="3.839601215345422" b="-0.0016402100692628849" c="-7.6599246616951852e-05" d="1.2574283943059749e-06" /> - <width sOffset="622.99953444472339" a="3.8226664773585779" b="-0.0026084545173413864" c="-5.0519910871285423e-05" d="1.2999843745275953e-06" /> - <width sOffset="633.11343558617057" a="3.7924620073882571" b="-0.0032314311952649725" c="-1.6208919987943131e-05" d="1.6004392519020299e-06" /> - <width sOffset="637.96085345463041" a="3.7765993348662645" b="-0.0032757552401499312" c="-0.00047830460764244968" d="2.4917295880527377e-05" /> - <width sOffset="643.22733672761785" a="3.7497211203307876" b="-0.0062404148225647538" c="-8.7198078208291135e-05" d="2.4681340442245151e-05" /> - <width sOffset="653.34123786906503" a="3.7032209562857115" b="-0.0004302035965167443" c="0.00066195064676214071" d="2.4588459116330954e-05" /> - <width sOffset="653.49067553989653" a="3.7031715321471226" b="-0.00023071557062036611" c="0.0007921080986562452" d="-3.4920897901730816e-05" /> - <width sOffset="654.93320021693046" a="3.7043821764636387" b="0.0018365570614720639" c="0.0011960049004263121" d="-0.00014599266286624121" /> - <width sOffset="657.87210461303789" a="3.7164038803121908" b="0.0050835596330403993" c="0.00037362504588388289" d="-6.1328750199487878e-05" /> - <width sOffset="658.62139536642928" a="3.7203969115930073" b="0.0055401705961944476" c="0.002038617168584366" d="-0.00036020252139199968" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="3.9495454044163694" b="0.00038555560936869818" c="3.2240285946167314e-05" d="4.4128180171995647e-07" /> - <width sOffset="5.2795893077952769" a="3.9525445880804608" b="0.000762887497860557" c="0.00010196284793867561" d="-6.8528563548830665e-06" /> - <width sOffset="6.0515648164429194" a="3.9531911302182765" b="0.00090806133983924468" c="8.6403285672570729e-05" d="-6.7774394541875296e-06" /> - <width sOffset="14.042555241011343" a="3.9625064633523501" b="0.00099061794002845683" c="-3.6372539487567802e-05" d="-6.0161074713153719e-06" /> - <width sOffset="16.165465957890149" a="3.9643879761812575" b="0.0007548473568260301" c="-9.513749895649329e-05" d="2.080982586052108e-06" /> - <width sOffset="17.545888858689807" a="3.9652541678456279" b="0.00050408374989351166" c="-0.00016225330175756667" d="9.4405071890965357e-06" /> - <width sOffset="26.27936709933735" a="3.9635695666763411" b="-0.00016980200883969445" c="8.8431551387873898e-05" d="6.4144434572471273e-06" /> - <width sOffset="27.736788952481817" a="3.9635297861250809" b="0.00012883648566350506" c="0.00052283340988752973" d="-3.3936693062890533e-05" /> - <width sOffset="29.341727554913632" a="3.9649429938291454" b="0.0015448222857379539" c="0.00019217467204735625" d="-2.5971350078691885e-05" /> - <width sOffset="36.393268240784579" a="3.9762857109744489" b="0.00038086147722875057" c="-0.00034203255076697037" d="-2.8060142716958245e-05" /> - <width sOffset="39.198161299189991" a="3.974043860030275" b="-0.0022001511883207705" c="-1.2295139241501613e-05" d="6.4693636731052905e-06" /> - <width sOffset="46.507169382231808" a="3.9598321318346268" b="-0.0013430704736622388" c="0.00013746796021129088" d="6.1593101796349734e-06" /> - <width sOffset="50.425168454793351" a="3.9570506608113791" b="1.7777685074485509e-05" c="5.079208518692255e-05" d="-2.3648012596611793e-06" /> - <width sOffset="50.940493744139388" a="3.9570729868333112" b="6.8242586106556411e-05" c="5.4441415297679448e-05" d="-2.0211246900369112e-06" /> - <width sOffset="56.621070523679037" a="3.9588469267171531" b="0.00049110113512585384" c="2.1800019643928771e-05" d="-1.8424650233161773e-06" /> - <width sOffset="65.551455972358639" a="3.9636590099075475" b="0.00043964667239494048" c="0.00068649522790410072" d="-4.3330357034832655e-05" /> - <width sOffset="66.734971665126267" a="3.9650690875591259" b="0.0018825227082986237" c="0.00053468479512352258" d="-4.2532692374238731e-05" /> - <width sOffset="68.449443728278681" a="3.9696539349933859" b="0.0033408633635949431" c="0.00036004211063193084" d="-4.0247788381433192e-05" /> - <width sOffset="76.848872806573439" a="3.9992662365400871" b="0.0008706659346947507" c="-0.00065410293188755447" d="-4.0243794540267964e-05" /> - <width sOffset="77.488901014438198" a="3.9995449920551529" b="-1.6078653780391333e-05" c="-6.3517421675419913e-07" d="3.1601447267361582e-07" /> - <width sOffset="85.062743272884774" a="3.9995240746361147" b="2.8682624217574413e-05" c="3.9314773623584942e-05" d="-5.7059207276002734e-07" /> - <width sOffset="86.962773948020669" a="3.9997165895369502" b="0.00017190146427580714" c="3.5386634606440805e-05" d="-5.7972438793985483e-07" /> - <width sOffset="97.076675089467898" a="4.0044751578057092" b="0.00070979355688834903" c="1.7581330900734666e-05" d="-5.718972840211417e-07" /> - <width sOffset="97.111288807095292" a="4.0044997474401001" b="0.00071100861175141261" c="-6.7870531978701114e-06" d="-1.2791304341253216e-07" /> - <width sOffset="107.19057623091513" a="4.0108457172533001" b="0.0005352064527278991" c="-1.4153816516069027e-05" d="-1.1422870678336567e-07" /> - <width sOffset="117.30447737236236" a="4.0146927578457072" b="0.00021385214602395806" c="-2.29091750398752e-05" d="5.0678576992595313e-07" /> - <width sOffset="119.17089326755311" a="4.0150153855455084" b="0.0001336322264419011" c="2.8698157283219538e-05" d="-5.2611524438161212e-07" /> - <width sOffset="120.98667363475792" a="4.0153495021056571" b="0.00023264742961580495" c="4.7355465599638173e-05" d="-3.8498302733344814e-06" /> - <width sOffset="127.41837851380959" a="4.0177804842301095" b="0.00036403439169942415" c="-2.7999625690841295e-05" d="-3.9280928281932501e-06" /> - <width sOffset="134.39722364412458" a="4.0176221650098851" b="-0.00060072050239291818" c="-0.00024804375830878879" d="1.3023072996520755e-05" /> - <width sOffset="137.53227965525681" a="4.0137022373408966" b="-0.0017719878577748555" c="-0.00012686012699426871" d="1.3045640481783073e-05" /> - <width sOffset="139.60590776739727" a="4.0095986243605131" b="-0.0021298231475976774" c="-0.00027424097712183275" d="2.5116403896842032e-05" /> - <width sOffset="146.3472047327725" a="3.990472581246391" b="-0.0024030515682693225" c="-4.2548500145031401e-05" d="1.0877064712322296e-05" /> - <width sOffset="147.64618079670399" a="3.9873031215319394" b="-0.0024585306543211958" c="-1.1662397432818288e-06" d="1.0296044827364337e-05" /> - <width sOffset="157.41511874519475" a="3.9727732926743737" b="0.00046640453946101147" c="4.2935644869085778e-05" d="-1.8010265489125221e-06" /> - <width sOffset="157.76008193815122" a="3.9729392204652645" b="0.00049538400941549429" c="4.2055457413306914e-05" d="-1.8458558714288707e-06" /> - <width sOffset="167.87398307959845" a="3.9803417294612382" b="0.00077963017854992638" c="-9.0469168233160757e-06" d="-2.5302463498960137e-06" /> - <width sOffset="171.41542454582034" a="3.982876895794683" b="0.00062035033664211694" c="1.2954716112241912e-06" d="-2.1572962617462957e-06" /> - <width sOffset="171.66857733534718" a="3.9830339872357294" b="0.00062059148151525105" c="-0.00012312366205597067" d="4.097977656684942e-06" /> - <width sOffset="177.98788422104568" a="3.983073055962405" b="-0.00044457944187420212" c="-4.3400455687382899e-05" d="4.275072533143668e-06" /> - <width sOffset="188.1017853624929" a="3.978559971004215" b="-1.0570992509396828e-05" c="8.7300722111818984e-05" d="4.2161985789767629e-06" /> - <width sOffset="191.83769123946487" a="3.9799587753875243" b="0.00081825992773219955" c="2.9206813382049461e-06" d="-7.8451156133784076e-07" /> - <width sOffset="198.21568650394013" a="3.9850929022024983" b="0.00075977708898779185" c="-1.0780902829756173e-05" d="-7.6158137747376208e-07" /> - <width sOffset="208.32958764538731" a="3.9908865208686874" b="0.00030799436452277158" c="-3.3841760202074579e-05" d="-7.5693816540408931e-07" /> - <width sOffset="209.10852997155465" a="3.9911055394413415" b="0.00025389498639580407" c="-5.3721330083756494e-05" d="4.903360278263725e-06" /> - <width sOffset="216.95899158795604" a="3.9921602536924445" b="0.00031699907567291844" c="0.00078221214156924364" d="-3.7422523312242032e-05" /> - <width sOffset="218.44348878683454" a="3.9942321984967322" b="0.0023919749128854789" c="0.00061341265910862144" d="-3.8009197504381903e-05" /> - <width sOffset="228.72575845534888" a="4.042360667404747" b="0.0029509485234750386" c="-0.00026061220234638966" d="1.0327631594247132e-05" /> - <width sOffset="228.96245503278797" a="4.0430446829061264" b="0.0028293123158467711" c="-0.00028017305407145591" d="1.0769560098266889e-05" /> - <width sOffset="238.67129106972899" a="4.0539604528060771" b="0.00043446840484113894" c="2.9380963548622255e-05" d="1.1293912058367721e-05" /> - <width sOffset="242.7150712123171" a="4.0569445943075566" b="0.0012261282166597608" c="0.00018311627718316454" d="-6.3338587254424592e-06" /> - <width sOffset="248.78519221117622" a="4.0697178678610957" b="0.0027490650491347867" c="6.9117269745874016e-05" d="-6.7496391339888154e-06" /> - <width sOffset="258.89909335262348" a="4.0976088008075946" b="0.0020758735808651821" c="-0.00013559799260039483" d="-6.2774418550412904e-06" /> - <width sOffset="264.80202114016743" a="4.1038465057378257" b="-0.0001811807675672981" c="-0.00028434761831049857" d="-4.7709014228931486e-06" /> - <width sOffset="267.38442670400082" a="4.1014001983320192" b="-0.0017452313377005187" c="-4.9971674075741907e-05" d="5.2839851113044554e-06" /> - <width sOffset="269.01299449407065" a="4.0984482575990109" b="-0.0018659527755386111" c="-3.2196477435977792e-05" d="2.201855438800535e-06" /> - <width sOffset="279.12689563551783" a="4.0785607397563286" b="-0.0018415267956954774" c="3.4276488573603092e-05" d="2.2002806707613538e-06" /> - <width sOffset="280.12689074722653" a="4.0767556983644244" b="-0.0017663733761766021" c="7.8266420667963097e-07" d="6.9911175975963312e-07" /> - <width sOffset="287.7410366490102" a="4.0636602590285715" b="-0.0016328612676084588" c="0.00044053814986063549" d="-0.00017195331939488632" /> - <width sOffset="289.24079677696511" a="4.0616221885674886" b="-0.0014717718780482959" c="-0.00033322464510130052" d="-0.00017194860061073752" /> - <width sOffset="289.61951711164625" a="4.0610076643566497" b="-0.0017981570711921553" c="-0.0003083976325102991" d="1.8306934503456532e-05" /> - <width sOffset="299.3546979184124" a="4.0311649832128431" b="-0.0025977202511413347" c="0.00022067805290914248" d="1.9766871604076576e-05" /> - <width sOffset="301.19060350914765" a="4.0272619379523089" b="-0.0015875564609623568" c="4.7976008389366129e-05" d="5.9139821459920254e-08" /> - <width sOffset="309.46859905985957" a="4.0174412658437069" b="-0.0007811083868716431" c="4.9114650492291045e-05" d="3.4335605384547367e-10" /> - <width sOffset="319.58250020130674" a="4.0145655545926537" b="0.00021247841917826523" c="5.0668145932960835e-05" d="-7.1839817934354167e-08" /> - <width sOffset="329.69640134275403" a="4.0218231127713953" b="0.001215337957499822" c="5.1384798225901252e-05" d="-1.3946831137451245e-07" /> - <width sOffset="332.54099685887718" a="4.0256928390258722" b="0.0015042902736595563" c="4.1349155099445392e-05" d="-8.8181417277830948e-07" /> - <width sOffset="339.8103024842012" a="4.0384742583700053" b="0.0019656569639776873" c="2.4913322035237639e-05" d="-9.1709986008012614e-07" /> - <width sOffset="346.95828797548052" a="4.0534627190849859" b="0.0021812430269092936" c="0.0001154690706824404" d="-8.2729721461697537e-06" /> - <width sOffset="349.92420362564849" a="4.060732000577346" b="0.0026478626132397627" c="4.252015966624473e-05" d="-7.9765672839216904e-06" /> - <width sOffset="359.94267381831241" a="4.0835064232352316" b="0.0010980184448288058" c="-4.6600929130547546e-05" d="3.7450081079906266e-11" /> - <width sOffset="360.03810476709566" a="4.0836107837794984" b="0.0010891241040894809" c="-4.6766425532220781e-05" d="1.1961388118917564e-08" /> - <width sOffset="366.33027582222871" a="4.0886151696799145" b="0.00050202011081765946" c="-2.6261473169904444e-05" d="6.125511814251141e-07" /> - <width sOffset="370.15200590854283" a="4.0901843817567336" b="0.00032813165749461675" c="-2.0720727804108597e-05" d="5.2623740035722013e-07" /> - <width sOffset="380.26590704999012" a="4.0919279537147926" b="7.0484916232526099e-05" c="-4.1679984557788787e-06" d="3.882518553109098e-07" /> - <width sOffset="384.45039176868863" a="4.0921783626801673" b="5.5997832423198771e-05" c="-6.6042763060942204e-06" d="-2.0167744657046922e-07" /> - <width sOffset="390.37980819143729" a="4.0922361611881115" b="-4.3592890719596346e-05" c="-8.0366239330219159e-06" d="-1.2589227537097094e-07" /> - <width sOffset="400.49370933288458" a="4.0908429494905638" b="-0.00024478906948098317" c="-1.0273810238312483e-05" d="-1.8157174699458229e-07" /> - <width sOffset="402.19960278275278" a="4.0903945665162587" b="-0.00028142628148498976" c="-3.2018263456619236e-05" d="9.6164042657493921e-07" /> - <width sOffset="408.12957857017045" a="4.08780033200392" b="-0.00055971419571740236" c="-0.00013889142130177627" d="5.2750034685373405e-06" /> - <width sOffset="410.60761047433175" a="4.0856407280408691" b="-0.0011508932167022862" c="-0.00010095897730183533" d="5.4569041177121402e-06" /> - <width sOffset="420.05844145377785" a="4.070352699426091" b="-0.0015969830157450007" c="3.1520800896009929e-05" d="3.9911399941816359e-06" /> - <width sOffset="420.72151161577904" a="4.0693088096629335" b="-0.0015499177523800617" c="3.4652023645198151e-05" d="4.1536281833857301e-06" /> - <width sOffset="429.21765906899645" a="4.0611891996820724" b="-6.1617358192470276e-05" c="5.7941871933066012e-05" d="2.1586686094280541e-07" /> - <width sOffset="430.83541275722621" a="4.0612420731623669" b="0.00012754884882156258" c="5.3984229639697276e-05" d="-1.8084050839722319e-06" /> - <width sOffset="440.94931389867338" a="4.0661832848284352" b="0.00066458049911247803" c="-7.5351913899511912e-07" d="-1.8184605509094983e-06" /> - <width sOffset="442.83389657919167" a="4.0674208938387793" b="0.0006423647443734872" c="5.8994911068875617e-07" d="-1.6617043780168603e-06" /> - <width sOffset="451.06321504012067" a="4.071820996916669" b="0.00031447425453841338" c="-3.9457916125984337e-05" d="-1.7535394330621898e-06" /> - <width sOffset="456.91369899582037" a="4.071959102953147" b="-0.00032728285398081063" c="-9.6959275064584965e-05" d="2.3019381195591724e-06" /> - <width sOffset="458.6220115239845" a="4.0711285183623129" b="-0.00063840288569494961" c="-0.00010254677641573126" d="2.8601441860467049e-06" /> - <width sOffset="461.17711618156784" a="4.0688755599168127" b="-0.0011064205106136936" c="-7.8266451260929813e-05" d="3.0998399196504218e-06" /> - <width sOffset="471.29101732301513" a="4.0528863525375476" b="-0.0017383216708585308" c="1.2641265306537891e-05" d="3.4937062713488815e-06" /> - <width sOffset="478.43621533543092" a="4.0423855540750893" b="-0.0010225714670114962" c="4.8641009161256888e-05" d="1.0623841964005151e-07" /> - <width sOffset="481.4049184644623" a="4.039781305416521" b="-0.00073096113405215829" c="4.5855587730129783e-05" d="-1.2568360800243831e-06" /> - <width sOffset="491.51881960590958" a="4.0357787769010312" b="-0.00018909241631160192" c="8.864673303964554e-06" d="-1.0843376754252778e-06" /> - <width sOffset="501.63272074735676" a="4.0336512776638873" b="-0.00034253350084810681" c="-2.4624163903759563e-05" d="-1.1659270956605754e-06" /> - <width sOffset="504.53523810704814" a="4.0324211094154894" b="-0.00051494506004132017" c="-2.5611475808114086e-05" d="1.3278363495023603e-06" /> - <width sOffset="511.74662188880393" a="4.0278737091272694" b="-0.00067717479475530801" c="4.9203319791216528e-06" d="1.1547962883435085e-06" /> - <width sOffset="513.20607132836722" a="4.0268994768425257" b="-0.00065543372037949409" c="0.00011460076410240669" d="-4.1324110411661177e-06" /> - <width sOffset="521.86052303025122" a="4.027131912872024" b="0.00039963284840136308" c="7.939689818149069e-06" d="-3.9880009166833236e-06" /> - <width sOffset="527.48038389357748" a="4.0289207169511574" b="0.00011101561432164532" c="-1.0126166511296424e-05" d="1.6063246449561683e-06" /> - <width sOffset="531.97442417169839" a="4.0293609090324622" b="0.00011732672963556839" c="1.0523022363603686e-05" d="1.567863588946041e-06" /> - <width sOffset="539.34165585726271" a="4.0314233640591333" b="0.00052767039276650361" c="0.00012978072982501492" d="-7.1836646479005126e-06" /> - <width sOffset="542.08832531314567" a="4.0337029354733582" b="0.0010780150661075195" c="6.934344336425986e-05" d="-7.3168893581420558e-06" /> - <width sOffset="550.77715028914986" a="4.0435050993456061" b="0.00062586055039906487" c="-0.00036392090984986255" d="2.1430278845691322e-05" /> - <width sOffset="552.20222645459285" a="4.043719953871781" b="-0.00028080494304281371" c="-0.00027296856166081476" d="2.1034772940322714e-05" /> - <width sOffset="559.32454289572297" a="4.0354727796834133" b="-0.00096802440691095637" c="-0.00012913867422244306" d="5.5358109114620606e-06" /> - <width sOffset="562.31612759604002" a="4.0315693285196597" b="-0.001592053439394851" c="-7.6839143470653314e-05" d="5.6063051993599305e-06" /> - <width sOffset="565.82227895150834" a="4.0252843970644037" b="-0.0019241162070707579" c="4.8374524959227043e-06" d="1.800791786986163e-06" /> - <width sOffset="572.43002873748731" a="4.0133010795033259" b="-0.0016243064127587426" c="4.6766050638242073e-05" d="1.6201894646146046e-06" /> - <width sOffset="579.60667009462838" a="4.0046515279000898" b="-0.00070272047137665016" c="0.0001062011083095437" d="5.5022044948630385e-06" /> - <width sOffset="582.54392987893448" a="4.0036431372878933" b="6.3570743568602079e-05" c="0.00017140643748798546" d="2.6115325648916096e-06" /> - <width sOffset="584.85966444261271" a="4.0047419700793068" b="0.00089944838878457123" c="0.0017812844050027576" d="-0.00011864671690652248" /> - <width sOffset="592.65783102038176" a="4.0638140777832881" b="0.00703573382965271" c="-0.00099722438858738265" d="-0.0001167217059212893" /> - <width sOffset="594.36963884096201" a="4.07235026312188" b="0.0025955368677535564" c="-4.4013048921453294e-05" d="1.0183724418497248e-06" /> - <width sOffset="602.77173216182894" a="4.0916551421235372" b="0.0020716099126106371" c="-2.1170758096113814e-05" d="8.3044414899979849e-07" /> - <width sOffset="612.88563330327622" a="4.1113007671946198" b="0.0018982128817788141" c="2.0426652573788935e-06" d="9.8859631176169523e-07" /> - <width sOffset="615.16980109816279" a="4.1156590429401092" b="0.0019230182361383726" c="2.5798474320160716e-05" d="-1.0549263626542656e-06" /> - <width sOffset="622.99953444472339" a="4.1317909670261415" b="0.0021329926760993382" c="-3.7380220212894657e-06" d="-8.8288196207445637e-07" /> - <width sOffset="630.21893370514033" a="4.1466628633513274" b="0.001940973432251212" c="-0.00055213163834649359" d="2.2609937559072895e-05" /> - <width sOffset="633.11343558617057" a="4.1482034811231907" b="-0.00068703095522893603" c="-0.00036381823335468228" d="2.1156543415829545e-05" /> - <width sOffset="643.22733672761785" a="4.1259273236247127" b="-0.0015539025336966704" c="0.00027795870484233421" d="2.1152768905484412e-05" /> - <width sOffset="643.77192267268504" a="4.1251669418112025" b="-0.0012323376513328774" c="-0.0001194561254963238" d="1.0377455708587101e-05" /> - <width sOffset="653.34123786906503" a="4.1115290529403374" b="-0.00066771759711678393" c="0.00017514574955989541" d="1.1459256831496444e-05" /> - <width sOffset="654.93320021693046" a="4.1109561845598739" b="-2.2941619332024816e-05" c="-0.00032514570687715782" d="0.00012253101906730044" /> - <width sOffset="654.96986594780924" a="4.1109549123104685" b="-4.6290846074745379e-05" c="-0.00035081285352237359" d="0.00011017852365538154" /> - <width sOffset="657.87210461303789" a="4.1105590441956359" b="0.00070152146600558241" c="0.00014368467922858892" d="2.5514610982546074e-05" /> - <width sOffset="658.63010343956682" a="4.1111844644913917" b="0.00096332629716069755" c="0.0055653663350812019" d="-0.00078274964936564818" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - </link> - <width sOffset="0" a="3.6034957619611965" b="-0.00089475648444924051" c="5.486268451140568e-06" d="-1.71523065792299e-06" /> - <width sOffset="5.2795893077952769" a="3.5986723202573434" b="-0.00098025733952868165" c="-8.4414073826223287e-05" d="5.578907498262376e-06" /> - <width sOffset="6.0515648164429194" a="3.5978678459628091" b="-0.0011006143487416744" c="-6.5468286161228452e-05" d="6.7576428301098907e-06" /> - <width sOffset="16.165465957890149" a="3.5870307189150461" b="-0.00035115584383719773" c="0.00015854286553308917" d="-1.6929061960995102e-06" /> - <width sOffset="16.943924595291918" a="3.5868526366322189" b="-0.0001073954102379338" c="9.5559989830470963e-05" d="-2.9171098948368212e-06" /> - <width sOffset="17.545888858689807" a="3.5868219793398435" b="4.4808471906019429e-06" c="0.00016602571296207594" d="-1.0276634497863776e-05" /> - <width sOffset="26.27936709933735" a="3.5926788809029335" b="0.00055293572276672804" c="-0.00010536222504546593" d="-8.1953188073481799e-06" /> - <width sOffset="27.736788952481817" a="3.5932355738050639" b="0.00019359880380674278" c="-0.0005475505435039833" d="3.2155817712780557e-05" /> - <width sOffset="36.393268240784579" a="3.5747394760784128" b="-0.0020573678125902889" c="0.00028456498622511563" d="3.4353024504656172e-05" /> - <width sOffset="39.198161299189991" a="3.571965651104168" b="0.00034979043502548503" c="7.7801560306307986e-06" d="-1.7648188540884511e-07" /> - <width sOffset="46.507169382231808" a="3.5748689916751442" b="0.00043523704803461919" c="4.296091661977368e-06" d="2.5523942708852827e-07" /> - <width sOffset="50.940493744139388" a="3.5769052157133956" b="0.00048837869019547459" c="3.8551338678592801e-07" d="-8.8437136106134013e-08" /> - <width sOffset="56.621070523679037" a="3.5796757173928375" b="0.00048419724573654744" c="-1.0612764825323495e-07" d="-1.130220738429237e-07" /> - <width sOffset="65.551455972358639" a="3.5839108256382151" b="0.00045526058797507274" c="-0.00071719109646060301" d="4.1374869937841782e-05" /> - <width sOffset="66.734971665126267" a="3.5835136470500588" b="-0.0010684907396557796" c="-0.00057125676232269447" d="4.0484930048324745e-05" /> - <width sOffset="76.848872806573439" a="3.55615674467471" b="-0.00020002809147377277" c="0.000657537898617464" d="4.0535509072954172e-05" /> - <width sOffset="77.488901014438198" a="3.5563086998642941" b="0.00069147193862000174" c="4.6302575336213397e-06" d="-2.429994313096439e-08" /> - <width sOffset="86.962773948020669" a="3.5632545397845603" b="0.00077266181081529761" c="3.4363496893545254e-06" d="-6.1374701849746595e-10" /> - <width sOffset="97.076675089467898" a="3.57142003762953" b="0.00084198327052453727" c="-3.6981973713363984e-07" d="1.3590846261112396e-07" /> - <width sOffset="97.111288807095292" a="3.5714491813632558" b="0.00084195815734921045" c="2.3953290779609951e-05" d="-3.0807577799884054e-07" /> - <width sOffset="107.19057623091513" a="3.5820535211910878" b="0.0012309282267406116" c="1.152536821325041e-05" d="-2.9410750634533256e-07" /> - <width sOffset="117.30447737236236" a="3.5953776768228085" b="0.0013738074466668189" c="2.2881705988409206e-06" d="-8.080073106650354e-07" /> - <width sOffset="120.98667363475792" a="3.6004269897697476" b="0.001357792163735443" c="-2.8160791409829778e-05" d="2.5157077184434393e-06" /> - <width sOffset="127.41837851380959" a="3.6086643129007285" b="0.0013077489075472941" c="1.9425815318066707e-05" d="2.572573035776475e-06" /> - <width sOffset="131.97577607292035" a="3.6152712272176055" b="0.0016451072761151171" c="8.3782670328360248e-05" d="1.867965723147479e-06" /> - <width sOffset="134.39722364412458" a="3.6197725415012565" b="0.002083715900667543" c="0.00023515569162022354" d="-1.508320010145688e-05" /> - <width sOffset="137.53227965525681" a="3.6281515924841981" b="0.0031134292855090973" c="9.3002056556964747e-05" d="-1.5015514220221125e-05" /> - <width sOffset="146.3472047327725" a="3.6525379626898924" b="0.0012527944213192828" c="-2.7820906860044528e-05" d="-7.7617503614121241e-07" /> - <width sOffset="147.64618079670399" a="3.6541166681298765" b="0.0011765880263424919" c="-3.0546935624407054e-05" d="-2.8585054190287903e-07" /> - <width sOffset="157.76008193815122" a="3.6625961568042067" b="0.00047097084201213187" c="-3.8210828771876764e-05" d="-3.3186814317231922e-07" /> - <width sOffset="167.87398307959845" a="3.6631075477502311" b="-0.00040379161646528715" c="-3.9915351173425761e-05" d="-2.9993293855825181e-06" /> - <width sOffset="170.05161354625429" a="3.6620079847248004" b="-0.00062030251580513925" c="-3.7414726080941048e-06" d="9.9627801738683389e-07" /> - <width sOffset="171.41542454582034" a="3.6611575774851852" b="-0.0006249486659165572" c="-3.6889814320569721e-05" d="6.2332793827433729e-07" /> - <width sOffset="177.98788422104568" a="3.6556335602248717" b="-0.0010290841862073776" c="-2.3177526364383505e-05" d="6.8910933517928795e-07" /> - <width sOffset="188.1017853624929" a="3.6435675778953933" b="-0.0012864455655494842" c="-1.443690454433451e-06" d="6.5642383823660356e-07" /> - <width sOffset="198.21568650394013" a="3.6310880286050549" b="-0.0011142095053966552" c="1.9765382921503738e-05" d="6.5613402715710527e-07" /> - <width sOffset="208.32958764538731" a="3.6225196552190506" b="-0.00051304943758389296" c="4.0556301953215879e-05" d="7.450262218558982e-07" /> - <width sOffset="209.10852997155465" a="3.6221449789968334" b="-0.0004485112606716123" c="6.0408035683834022e-05" d="-4.9152722218131212e-06" /> - <width sOffset="216.95899158795604" a="3.6199687738729773" b="-0.00040883028886434493" c="-0.00077580597873689672" d="3.7410611368018334e-05" /> - <width sOffset="217.65330381698377" a="3.61932344720914" b="-0.0014320299047020152" c="-0.00065891996685003829" d="3.6712302488100049e-05" /> - <width sOffset="218.44348878683454" a="3.6177985674713482" b="-0.0024045985774918273" c="-0.00056983113058031178" d="3.7302412962431838e-05" /> - <width sOffset="228.55738992828176" a="3.5737817236650864" b="-0.0024839270626611869" c="0.00055973799430866658" d="3.7303232283693777e-05" /> - <width sOffset="228.72575845534888" a="3.5733795539997475" b="-0.0022922701276754309" c="0.00028014247068899786" d="-1.1033596686869216e-05" /> - <width sOffset="238.67129106972899" a="3.5674373267367079" b="5.9430940317973299e-06" c="-4.8525538249267321e-05" d="-1.147290066628513e-05" /> - <width sOffset="242.7150712123171" a="3.5659092218638397" b="-0.00094933016971788641" c="-0.00020443222361905198" d="6.1548701175183681e-06" /> - <width sOffset="248.78519221117622" a="3.5539906977854634" b="-0.0027508329911871843" c="-9.0103987103109755e-05" d="6.012292371701752e-06" /> - <width sOffset="258.89909335262348" a="3.5231723015987022" b="-0.0027284284969834685" c="9.0097328996600106e-05" d="6.9554876240828539e-06" /> - <width sOffset="264.2293522569488" a="3.5122422354893335" b="-0.0011750934684429293" c="0.00019972018638614311" d="8.2132176466815518e-06" /> - <width sOffset="267.38442670400082" a="3.510780795604171" b="0.00033044594105111188" c="6.1229743891119039e-06" d="-1.8416688874887367e-06" /> - <width sOffset="269.01299449407065" a="3.5113272339786374" b="0.00033573569353737476" c="-4.6116778146394332e-06" d="-5.1411615655376434e-08" /> - <width sOffset="279.12689563551783" a="3.5141979100207106" b="0.00022667475035022526" c="-6.4757532712416046e-06" d="-5.6596348968956939e-08" /> - <width sOffset="287.7410366490102" a="3.5156338188930008" b="0.00010250971777990266" c="-0.00043172440889816677" d="0.00017259583480629551" /> - <width sOffset="289.24079677696511" a="3.5153987211424234" b="-2.7807085186965039e-05" c="0.00034237143187922808" d="0.00017272267148482368" /> - <width sOffset="289.61951711164625" a="3.5154466782688996" b="0.00030583932910409432" c="0.00031842388842970998" d="-1.7532863629368758e-05" /> - <width sOffset="299.3546979184124" a="3.5324257905978782" b="0.001520702125122092" c="-0.00020200534197233148" d="-1.3257086280887032e-05" /> - <width sOffset="300.67448885705051" a="3.5340504604683951" b="0.00091821699282303474" c="-0.00027567892394884794" d="-1.9576455448265524e-05" /> - <width sOffset="301.19060350914765" a="3.5344482405572459" b="0.00061800913312944549" c="-2.4417635630907277e-05" d="1.3127633869274023e-07" /> - <width sOffset="309.46859905985957" a="3.5379653604791401" b="0.00024073819106872638" c="-2.1431845488982048e-05" d="8.4976732692033264e-08" /> - <width sOffset="319.58250020130674" a="3.5382957915325988" b="-0.00016670387809149245" c="-1.7494957694193594e-05" d="2.1403472523719957e-08" /> - <width sOffset="329.69640134275403" a="3.534842331535391" b="-0.00051402027569178647" c="-1.3304458199259442e-05" d="-1.6156128921562763e-07" /> - <width sOffset="336.78868779684115" a="3.5304698949332924" b="-0.00072711818706538154" c="3.7036854036741089e-05" d="-2.8529985221570594e-06" /> - <width sOffset="339.8103024842012" a="3.5285322681845024" b="-0.00058144094170167965" c="1.753717520886853e-05" d="-1.2548046913529226e-06" /> - <width sOffset="346.95828797548052" a="3.5248138998709249" b="-0.0005230678243143454" c="-0.00011959280010443913" d="6.1010675947684782e-06" /> - <width sOffset="349.92420362564849" a="3.5223696858441018" b="-0.0010714651671958648" c="-6.5414444999288199e-05" d="5.9718096615266617e-06" /> - <width sOffset="359.94267381831241" a="3.5110745737998754" b="-0.00058400346321536346" c="-3.6547169663887812e-05" d="-2.0047944341259955e-06" /> - <width sOffset="360.03810476709566" a="3.5110185072154412" b="-0.00059103369876915704" c="-5.0874619983134277e-05" d="3.6074496013717431e-06" /> - <width sOffset="361.54124086436275" a="3.5100274077565636" b="-0.00071952444316587729" c="-0.00014956505892412268" d="4.7659962398563293e-06" /> - <width sOffset="370.15200590854283" a="3.4957850480322947" b="-0.0022351353050957829" c="-2.8096946494213934e-05" d="4.6509070665168093e-06" /> - <width sOffset="380.26590704999012" a="3.4751166930472701" b="-0.0013762370309500138" c="0.00011354788294300552" d="4.5091494243657711e-06" /> - <width sOffset="384.172577711543" a="3.471742017684206" b="-0.00028259172599911858" c="5.5655178518912863e-05" d="-1.7397924624739999e-06" /> - <width sOffset="384.45039176868863" a="3.4716677679287593" b="-0.00025207097904578858" c="6.1515341851693e-05" d="-1.1498631221788784e-06" /> - <width sOffset="390.37980819143729" a="3.4720961815207878" b="0.00035614858650442237" c="4.2804489594415931e-05" d="-1.1047571718855502e-06" /> - <width sOffset="400.49370933288458" a="3.4789338082917749" b="0.00088296920349918565" c="1.0176318867940877e-05" d="-1.0514051588728356e-06" /> - <width sOffset="408.12957857017045" a="3.4858012837480508" b="0.00085446802232280489" c="0.00011007181312452084" d="-5.3647682007945276e-06" /> - <width sOffset="410.28806688212012" a="3.4881045243964466" b="0.0012546609459327934" c="0.00014128041674289456" d="-6.062989258946495e-06" /> - <width sOffset="410.60761047433175" a="3.4885196713149114" b="0.0013430942086083153" c="0.00013667245325853184" d="-6.2366856411519177e-06" /> - <width sOffset="420.72151161577904" a="3.5096317228901688" b="0.0021938072071296002" c="-5.7416365803914619e-05" d="-5.9830346305868979e-06" /> - <width sOffset="428.67231111215187" a="3.5204375144598479" b="0.00014613876343182934" c="-0.00015808822703219247" d="-1.2591927957417404e-06" /> - <width sOffset="429.21765906899645" a="3.5204699905754668" b="-2.7410888211292954e-05" c="-7.75686574432685e-05" d="2.6785685286625545e-06" /> - <width sOffset="430.83541275722621" a="3.5202339801850453" b="-0.000257354389530067" c="-6.8749557606637596e-05" d="1.8902180959736377e-06" /> - <width sOffset="440.94931389867338" a="3.5125542085577126" b="-0.0010679499710544642" c="-1.1291390381180182e-05" d="1.8859319104080881e-06" /> - <width sOffset="451.06321504012067" a="3.5025491722036208" b="-0.00071760842098093902" c="4.6845491500442325e-05" d="1.7833068350319033e-06" /> - <width sOffset="456.51663376762906" a="3.5003181502725278" b="-4.7566823222573062e-05" c="6.8387205397604016e-05" d="1.1078330491575366e-06" /> - <width sOffset="456.91369899582037" a="3.5003101144743511" b="7.2655249266840623e-06" c="9.6431047326890398e-05" d="-2.9476444976577125e-06" /> - <width sOffset="461.17711618156784" a="3.5018654635615563" b="0.00066878151373477035" c="6.0456572577324135e-05" d="-2.8388834048127569e-06" /> - <width sOffset="471.29101732301513" a="3.5118766185955077" b="0.0010205084749659969" c="-2.5869249600459681e-05" d="-2.8528034035936377e-06" /> - <width sOffset="478.43621533543092" a="3.5168069549435819" b="0.00021388682248829567" c="-4.813085976477765e-05" d="5.3466444804898448e-07" /> - <width sOffset="481.4049184644623" a="3.5170317234500938" b="-5.7749334118316407e-05" c="-4.0671416006479513e-05" d="1.3658952781371439e-06" /> - <width sOffset="491.51881960590958" a="3.5137004347475824" b="-0.00046128632914050152" c="1.769102912179879e-06" d="1.5161306127088661e-06" /> - <width sOffset="501.63272074735676" a="3.5107845233557469" b="3.975826746579976e-05" c="4.7259571759445347e-05" d="1.488507790436977e-06" /> - <width sOffset="504.53523810704814" a="3.511334463575583" b="0.00035172200190905105" c="5.1055771863326474e-05" d="-1.005255654724091e-06" /> - <width sOffset="511.74662188880393" a="3.5161489809490307" b="0.00093125541803640451" c="3.0516360764048444e-05" d="-1.0896138921712359e-06" /> - <width sOffset="521.86052303025122" a="3.5275618830661672" b="0.0012141612581315787" c="-1.9894773923322859e-06" d="-9.69091458975464e-07" /> - <width sOffset="531.97442417169839" a="3.5386357001237365" b="0.00087653051026203601" c="-3.2135303567912605e-05" d="-1.0094166303046002e-06" /> - <width sOffset="539.34165585726271" a="3.5429454944342935" b="0.00023867245481356986" c="-0.00013905038664426204" d="7.7421116065559822e-06" /> - <width sOffset="542.08832531314567" a="3.5427124532367023" b="-0.0003499544899544992" c="-7.5111204644056251e-05" d="7.9037906777873938e-06" /> - <width sOffset="550.77715028914986" a="3.5391858281480397" b="0.00013489543094109089" c="0.00037345159710372119" d="-2.0843377525867024e-05" /> - <width sOffset="552.20222645459285" a="3.5400761627131239" b="0.001072300546560104" c="0.00028455239341456263" d="-2.0518892924105203e-05" /> - <width sOffset="559.32454289572297" a="3.5547346222818326" b="0.0020030351837601271" c="0.00015174528813978902" d="-5.0199308952366381e-06" /> - <width sOffset="562.24035881544171" a="3.5617407947687512" b="0.002759919744028623" c="2.9075133150687391e-05" d="-3.7420341929009647e-06" /> - <width sOffset="562.31612759604002" a="3.561950075812256" b="0.0027642612707571802" c="2.5751087859376436e-05" d="-3.8374142468761634e-06" /> - <width sOffset="572.43002873748731" a="3.5885716062531086" b="0.0021075504049716271" c="-8.5334917298742234e-05" d="-4.0003213486450761e-06" /> - <width sOffset="582.54392987893448" a="3.5970195924383335" b="-0.00084617799878163795" c="-0.00021127542557151227" d="-6.0055902999351835e-07" /> - <width sOffset="584.85966444261271" a="3.5939196195948058" b="-0.0018343553311195057" c="-0.0018071827503220439" d="0.0001206576904414216" /> - <width sOffset="592.65783102038176" a="3.5269356758585997" b="-0.0080076896337914691" c="0.0010147963751801017" d="0.00011988734001467685" /> - <width sOffset="594.36963884096201" a="3.5168030590142774" b="-0.0034795043038136392" c="7.7841907108517982e-05" d="2.1472616515337122e-06" /> - <width sOffset="597.5082304943727" a="3.5067155055776715" b="-0.0029274199220535916" c="4.3680677881010536e-05" d="4.3175308871628035e-07" /> - <width sOffset="602.77173216182894" a="3.4925801343635872" b="-0.0024317088350079437" c="4.553713966731727e-05" d="-2.7351371028969419e-07" /> - <width sOffset="612.88563330327622" a="3.4723611443624516" b="-0.001594526547069534" c="3.5697630184143571e-05" d="-1.9875254483426508e-07" /> - <width sOffset="622.99953444472339" a="3.4596801850186742" b="-0.00093343372922083769" c="2.58868472673872e-05" d="-8.0239870937523079e-08" /> - <width sOffset="630.21893370514033" a="3.4542603775169116" b="-0.00057220499737393841" c="0.00055342098045712868" d="-2.357305937254089e-05" /> - <width sOffset="630.50269696945907" a="3.4541420304739092" b="-0.00026381833014898527" c="0.00050443632753004305" d="-1.9506850473271329e-05" /> - <width sOffset="633.11343558617057" a="3.4565443674884455" b="0.0019712109588850227" c="0.00034329100912622914" d="-2.1415240605801254e-05" /> - <width sOffset="643.22733672761785" a="3.4894412063443214" b="0.0023434747243371006" c="-0.00030984837964833007" d="-2.1504755337087554e-05" /> - <width sOffset="643.77192267268504" a="3.4906220635824767" b="0.0019868633346739337" c="8.6991390099800466e-05" d="-1.0729442140190455e-05" /> - <width sOffset="653.34123786906503" a="3.5081989540581193" b="0.00070421662259815459" c="-0.00022156282556817905" d="-1.1206958497734386e-05" /> - <width sOffset="654.96986594780924" a="3.5087097692115536" b="-0.00010664725449886527" c="-0.00023717351237989017" d="1.1455396438537035e-06" /> - <width sOffset="656.30724125713016" a="3.5081456798557156" b="-0.00073488061060036187" c="0.0021974643491062783" d="-0.00023990623369374688" /> - <width sOffset="658.63010343956682" a="3.5152886363837976" b="0.0055905549809991389" c="-0.0048380045239252052" d="0.00056835802665651351" /> - <roadMark sOffset="0" color="standard" width="0.30932594790760459" weight="bold" type="solid"> - <type name="solid"> - <line length="663.45513901051231" space="0" width="0.30932599999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <predecessor id="-6" /> - </link> - <width sOffset="0" a="2.4929243247049131" b="-6.1138203418796859e-06" c="3.3636137400584421e-05" d="-1.7927099026889977e-06" /> - <width sOffset="6.0515648164429194" a="2.4937218352154451" b="0.00020403387415009807" c="3.0135459858018356e-06" d="-1.3499807568505349e-06" /> - <width sOffset="16.165465957890149" a="2.4946970347948882" b="-0.00014928134328711447" c="-4.8769064873695574e-05" d="-1.1951428726229157e-06" /> - <width sOffset="16.943924595291918" a="2.4945507076935494" b="-0.00022738350489920922" c="7.4691305965234424e-06" d="2.9060826097655489e-08" /> - <width sOffset="26.27936709933735" a="2.4931025639740518" b="-8.03302310014264e-05" c="1.28249515992415e-05" d="-9.6905685050810894e-07" /> - <width sOffset="32.193676781307857" a="2.4928755952880897" b="-3.0318850457473803e-05" c="2.3692838285902366e-05" d="-3.4706259321731025e-06" /> - <width sOffset="36.393268240784579" a="2.492909072159744" b="-1.4948163031260672e-05" c="1.4498451227323846e-07" d="-9.8891471925955345e-08" /> - <width sOffset="46.507169382231808" a="2.4926704092643233" b="-4.2362566549556128e-05" c="-2.2844291743506063e-07" d="-3.4753058875426225e-08" /> - <width sOffset="56.621070523679037" a="2.4921826366403366" b="-5.7648239766656386e-05" c="-3.5995863206350864e-07" d="1.3442206390270478e-08" /> - <width sOffset="66.734971665126267" a="2.4915766742980709" b="-6.0804361753315911e-05" c="3.4938400853826996e-07" d="6.2100766295620408e-09" /> - <width sOffset="76.848872806573439" a="2.4910038685358868" b="-5.1831386332193679e-05" c="6.817881052423064e-07" d="2.3825163772473817e-08" /> - <width sOffset="86.962773948020669" a="2.4905740403888847" b="-3.0729012122508357e-05" c="1.0448839091171255e-06" d="3.9416328909020518e-08" /> - <width sOffset="97.076675089467898" a="2.4904109110117938" b="2.5024996638710805e-06" c="9.2600741388828833e-07" d="8.6774555695934613e-08" /> - <width sOffset="107.19057623091513" a="2.4906207168401631" b="4.7862361810675574e-05" c="1.3903805715565267e-06" d="9.568410015825195e-08" /> - <width sOffset="117.30447737236236" a="2.4913460064904758" b="0.00010534957091598107" c="2.6574718686077199e-06" d="5.1685131172807309e-08" /> - <width sOffset="127.41837851380959" a="2.4927368085033335" b="0.0001749651571310031" c="3.9650287139243523e-06" d="-3.729807753449329e-08" /> - <width sOffset="131.97577607292035" a="2.4936130169163118" b="0.00020878155255210325" c="-2.5729058577240589e-05" d="6.673092350244461e-07" /> - <width sOffset="137.53227965525681" a="2.4940932151802926" b="-1.5336678257950797e-05" c="-1.4847284943065557e-05" d="7.1606408498009924e-07" /> - <width sOffset="147.64618079670399" a="2.4931601699565613" b="-9.5923896524741309e-05" c="6.654372797101669e-06" d="6.5097320666772157e-07" /> - <width sOffset="151.9755998975717" a="2.4929224304235129" b="-1.6994881489042993e-06" c="-1.7464375321508689e-05" d="8.489985347355214e-07" /> - <width sOffset="157.76008193815122" a="2.4924925614695486" b="-0.00011852115390705898" c="-1.4254947210547149e-06" d="9.0950902619203281e-07" /> - <width sOffset="167.87398307959845" a="2.4920889775502069" b="0.00013174797401608075" c="1.8750249253168257e-05" d="4.1438119740464018e-06" /> - <width sOffset="170.05161354625429" a="2.4925075820457412" b="0.00027236099673437172" c="-9.9468488522833071e-06" d="1.4820457091178282e-07" /> - <width sOffset="177.98788422104568" a="2.4941166981200142" b="0.0001424829514992464" c="-6.1155662145963993e-06" d="1.0055549987103229e-07" /> - <width sOffset="188.1017853624929" a="2.4950362200457361" b="4.9636254058265809e-05" c="-2.4986959136770955e-06" d="7.8099963183402647e-08" /> - <width sOffset="198.21568650394013" a="2.4953634412957575" b="2.3059896286025213e-05" c="7.0597599545228251e-07" d="8.2816496462189726e-08" /> - <width sOffset="208.32958764538731" a="2.4957545605144658" b="6.2754384937534202e-05" c="3.5233560734252751e-06" d="1.1181321590791453e-07" /> - <width sOffset="217.65330381698377" a="2.4967365834190414" b="0.00015761626214168205" c="-3.2311176831214998e-05" d="8.1012209023890031e-07" /> - <width sOffset="218.44348878683454" a="2.496841354273216" b="0.00010807015151392867" c="-3.2461342769624356e-05" d="9.0696385996721034e-07" /> - <width sOffset="228.55738992828176" a="2.4955521714687716" b="-0.00027022876133686927" c="-5.92681712203974e-06" d="8.8597780167381186e-07" /> - <width sOffset="238.67129106972899" a="2.4931294425646806" b="-0.00011823259015276803" c="9.6952464753411451e-06" d="4.2555213858772095e-06" /> - <width sOffset="241.15331236649391" a="2.4929607819166737" b="8.5425475343538487e-06" c="-2.5830515661897698e-05" d="9.2769901383667791e-07" /> - <width sOffset="248.78519221117622" a="2.4919338478571653" b="-0.00022362510707267199" c="-4.3813808198628344e-06" d="5.942771905541745e-07" /> - <width sOffset="258.89909335262348" a="2.4898387658411929" b="-0.00012988319432429224" c="1.7839835641395795e-05" d="1.1504056825148953e-07" /> - <width sOffset="264.2293522569488" a="2.4896707360492281" b="7.0104171764039059e-05" c="2.1280215818310441e-05" d="-1.142689454356432e-06" /> - <width sOffset="269.01299449407065" a="2.4903679647344275" b="0.00019525276289796028" c="8.1007591228853038e-06" d="-2.5642761743066491e-07" /> - <width sOffset="279.12689563551783" a="2.4929060765788975" b="0.00028042260737981545" c="1.0149147343832143e-07" d="-2.5873496431157212e-07" /> - <width sOffset="289.24079677696511" a="2.4954849476620131" b="0.00020307678500694189" c="-8.592128962185657e-06" d="-2.1527066867986923e-07" /> - <width sOffset="299.3546979184124" a="2.4964372381143525" b="-3.6783854348301716e-05" c="-5.4985461080785715e-06" d="-6.0645691748370419e-06" /> - <width sOffset="300.67448885705051" a="2.4963651717957926" b="-8.2988392282361853e-05" c="-8.3266015039282067e-06" d="2.5479998819738709e-07" /> - <width sOffset="309.46859905985957" a="2.4951647042018212" b="-0.00017032257301681367" c="-1.7463953498838415e-06" d="2.3691661272150012e-07" /> - <width sOffset="319.58250020130674" a="2.4935085427094137" b="-0.000132945003797019" c="7.1819232678137001e-06" d="6.4157004233666663e-08" /> - <width sOffset="327.42471522048629" a="2.492938592951047" b="-8.4635987325039005e-06" c="4.7735536207401732e-05" d="-5.3736402638438843e-06" /> - <width sOffset="329.69640134275403" a="2.4931027122212299" b="0.00012522376740093343" c="2.448712946439605e-05" d="-6.7515097685001487e-07" /> - <width sOffset="336.78868779684115" a="2.4949816933310807" b="0.00037068189048304807" c="-4.3656791983398049e-05" d="2.0162862560633138e-06" /> - <width sOffset="339.8103024842012" a="2.4957587828091565" b="0.0001620809028227135" c="-2.9061139533189658e-05" d="5.4628726314819797e-07" /> - <width sOffset="349.92420362564849" a="2.4949905276312725" b="-0.00025812127653194366" c="-1.2301671632724598e-05" d="6.0130413209108349e-07" /> - <width sOffset="360.03810476709566" a="2.4917436501292416" b="-0.00032243306181637662" c="1.5534349303476135e-05" d="-4.9056377455961614e-06" /> - <width sOffset="361.54124086436275" a="2.4912774273550644" b="-0.00030898423998681443" c="0.00010837072786261036" d="-6.0641843840831918e-06" /> - <width sOffset="370.15200590854283" a="2.4927803504464006" b="0.00020843366060937455" c="-5.400631548832894e-05" d="-3.7197080872653156e-06" /> - <width sOffset="371.79137913959914" a="2.4929605180093217" b="1.3700007230369685e-06" c="8.432002889372989e-05" d="-5.3374341781004454e-06" /> - <width sOffset="380.26590704999012" a="2.4957793205826331" b="0.00028054936561382378" c="-5.1596925795340779e-05" d="-5.1921790008444979e-06" /> - <width sOffset="384.172577711543" a="2.4957782803950099" b="-0.00036032531306754659" c="-1.7093361850190796e-06" d="1.0567628475897012e-06" /> - <width sOffset="390.37980819143729" a="2.4937285362539887" b="-0.00025939550150285345" c="1.9968835319974936e-05" d="4.6847820391045154e-07" /> - <width sOffset="395.67276907828182" a="2.4929844697209766" b="-8.6331109521811146e-06" c="-6.2247609805501687e-06" d="2.7662084203029374e-07" /> - <width sOffset="400.49370933288458" a="2.4928291716245079" b="-4.9364291721422826e-05" c="6.9405265767491707e-07" d="7.7099039366902293e-07" /> - <width sOffset="410.28806688212012" a="2.493136657494663" b="0.00018611333772722521" c="-4.2599852608154851e-05" d="1.4692114131487121e-06" /> - <width sOffset="410.60761047433175" a="2.493191826966255" b="0.00015933837308324255" c="-4.42809831081068e-05" d="1.7674209067344689e-06" /> - <width sOffset="420.72151161577904" a="2.4921023184239459" b="-0.00019399486183116054" c="8.8572826681661058e-06" d="1.5187694187489025e-06" /> - <width sOffset="428.67231111215187" a="2.4918831701278865" b="0.00023487809055699414" c="3.0457111096774619e-06" d="-3.2050724183141922e-06" /> - <width sOffset="430.83541275722621" a="2.4923730471332854" b="0.00020306477053172445" c="-1.4996944636207259e-05" d="-8.2752303439095137e-07" /> - <width sOffset="435.6724622398508" a="2.4929107442501" b="-1.0194377368571224e-07" c="1.6433359654741986e-05" d="-4.9793060263452284e-07" /> - <width sOffset="440.94931389867338" a="2.4932946325612644" b="0.00013173598151187889" c="8.7304002859189871e-06" d="-4.8435665346929475e-07" /> - <width sOffset="451.06321504012067" a="2.4950189420828748" b="0.00015969681840317091" c="-6.1462520289212491e-06" d="-3.7085268657657895e-07" /> - <width sOffset="456.51663376762906" a="2.4956469013773246" b="5.9573419286332501e-05" c="-4.5798542045418922e-06" d="3.0462109354577316e-07" /> - <width sOffset="461.17711618156784" a="2.4958559029892387" b="3.6733957816454069e-05" c="-1.217294303852307e-06" d="-1.6810176356766392e-08" /> - <width sOffset="471.29101732301513" a="2.496085517206728" b="6.9521802553249728e-06" c="-2.8293638808214481e-06" d="1.0859517092645828e-07" /> - <width sOffset="481.4049184644623" a="2.4959787607515436" b="-1.6954708230846406e-05" c="1.2585755577106787e-07" d="-6.705869382977517e-08" /> - <width sOffset="491.51881960590958" a="2.4957507802924184" b="-3.4987388283174055e-05" c="-1.202010363731488e-06" d="3.9614517891643012e-08" /> - <width sOffset="501.63272074735676" a="2.4953149501046585" b="-4.7144790754175621e-05" c="-3.6364620645770156e-07" d="3.4957591508353123e-09" /> - <width sOffset="511.74662188880393" a="2.4948045511950472" b="-5.3427800259861025e-05" c="6.7915089786944911e-07" d="-4.6099254960435111e-08" /> - <width sOffset="521.86052303025122" a="2.4942859662345622" b="-5.383668633395243e-05" c="-3.2401893299361438e-07" d="3.9172466737266925e-08" /> - <width sOffset="531.97442417169839" a="2.4937488493990365" b="-4.8369905295265954e-05" c="3.0549222424884434e-07" d="1.6820597984056299e-08" /> - <width sOffset="542.08832531314567" a="2.4933082919977156" b="-3.7028681806173597e-05" c="4.540501532897661e-07" d="2.6172035390024251e-08" /> - <width sOffset="552.20222645459285" a="2.49300730938082" b="-1.9812754353019468e-05" c="1.0978851064400888e-06" d="-8.7049438366112417e-10" /> - <width sOffset="561.01961614780589" a="2.4929173724353486" b="-6.5482602038901175e-07" c="-5.5569640443779203e-05" d="-2.0606368825603982e-06" /> - <width sOffset="562.24035881544171" a="2.492830013838625" b="-0.00014553964976391181" c="1.5642409840831476e-05" d="-3.3385385430400495e-06" /> - <width sOffset="562.31612759604002" a="2.4928190748262669" b="-0.00014322673585400684" c="2.4873146167430722e-05" d="-5.8766380470466608e-07" /> - <width sOffset="572.43002873748731" a="2.4933068186138927" b="0.00017956419875929429" c="1.0825416602714839e-05" d="-6.9299182522295185e-07" /> - <width sOffset="582.54392987893448" a="2.4955133134858478" b="0.0001858781127420002" c="-6.4137556747555138e-06" d="-5.8656198032025338e-07" /> - <width sOffset="592.65783102038176" a="2.4961303627213534" b="-0.00012385809701263547" c="-2.1074182367973609e-05" d="-1.1331763850176888e-06" /> - <width sOffset="597.5082304943727" a="2.4949044929712407" b="-0.00040827310107823499" c="1.6816104925809997e-05" d="5.8233217779033951e-07" /> - <width sOffset="602.77173216182894" a="2.4933063448438366" b="-0.00018285033067744411" c="2.612137591100106e-05" d="1.8471745107549325e-06" /> - <width sOffset="605.50854288380401" a="2.4930394360470265" b="1.6349405339625934e-06" c="-1.7615978983280584e-05" d="4.5676844899329083e-07" /> - <width sOffset="612.88563330327622" a="2.492276189569024" b="-0.00018370037722199189" c="-8.7290847835593953e-06" d="4.8619581883220423e-07" /> - <width sOffset="622.99953444472339" a="2.4900283545791702" b="-0.00021107021422062599" c="5.2450984225438743e-06" d="2.8686899263654878e-07" /> - <width sOffset="630.50269696945907" a="2.4888611221287178" b="-8.3910585897965751e-05" c="4.0619520514444621e-05" d="-3.7793399262082373e-06" /> - <width sOffset="633.11343558617057" a="2.4888516622473142" b="5.0903870348003233e-05" c="1.8759836264247355e-05" d="-5.5608065965220721e-07" /> - <width sOffset="643.22733672761785" a="2.4907101619248042" b="0.00025972799506562643" c="7.3820849627352503e-07" d="-5.8658453075413177e-07" /> - <width sOffset="653.34123786906503" a="2.492805679780191" b="9.4653382378549983e-05" c="-1.9132583815053314e-05" d="1.2765166188850828e-09" /> - <width sOffset="655.75375443096095" a="2.4929226944007441" b="2.3603206130112014e-06" c="0.0021099014356190985" d="-0.00019493823308694389" /> - <width sOffset="656.30724125713016" a="2.4935373105795557" b="0.0021588090002748503" c="-0.00064382760835765096" d="4.6113540248475727e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276662537" type="poles" s="813.99260546588505" t="-12.447916806466203" zOffset="-2.2018721416402172" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.6981278583597827" name="SgPoleSign01.flt" /> - <object id="5174023" s="173.24394588066372" t="-11.931747053511677" orientation="none" validLength="38.419187432359934" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="38.419187432359934" s="173.24394588066372" distance="0" tStart="-11.931747053511677" tEnd="-10.671276624112666" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273609479" s="211.66313331302365" t="-10.671276624112666" orientation="none" validLength="35.495968171895043" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="35.495968171895043" s="211.66313331302365" distance="0" tStart="-10.671276624112666" tEnd="-10.635318945906688" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542044935" s="247.15910148491869" t="-10.635318945906688" orientation="none" validLength="244.19030354830235" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="244.19030354830235" s="247.15910148491869" distance="0" tStart="-10.635318945906688" tEnd="-10.811055205340535" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810480391" s="491.34940503322105" t="-10.811055205340535" orientation="none" validLength="16.999372581351963" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.999372581351963" s="491.34940503322105" distance="0" tStart="-10.811055205340535" tEnd="-10.953966568016924" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078915847" s="508.34877761457301" t="-10.953966568016924" orientation="none" validLength="12.82295233193588" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.82295233193588" s="508.34877761457301" distance="0" tStart="-10.953966568016924" tEnd="-11.18350525172746" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5174060" s="717.17213419827021" t="-10.953650710193125" orientation="none" validLength="14.609745537654817" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.609745537654817" s="717.17213419827021" distance="0" tStart="-10.953650710193125" tEnd="-10.901670447792183" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273609516" s="731.78187973592503" t="-10.901670447792183" orientation="none" validLength="29.172935821379951" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="29.172935821379951" s="731.78187973592503" distance="0" tStart="-10.901670447792183" tEnd="-11.185792826803286" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542044972" s="760.95481555730498" t="-11.185792826803286" orientation="none" validLength="19.751454581601593" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.751454581601593" s="760.95481555730498" distance="0" tStart="-11.185792826803286" tEnd="-11.956288909748361" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810480428" s="780.70627013890658" t="-11.956288909748361" orientation="none" validLength="27.354238504306295" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="27.354238504306295" s="780.70627013890658" distance="0" tStart="-11.956288909748361" tEnd="-12.120830099155409" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078915884" s="808.06050864321287" t="-12.120830099155409" orientation="none" validLength="33.535884810168" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="33.535884810168" s="808.06050864321287" distance="0" tStart="-12.120830099155409" tEnd="-11.981228874742595" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741986" s="841.59639345338087" t="-11.981228874742595" orientation="none" validLength="28.494769715402299" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="28.494769715402299" s="841.59639345338087" distance="0" tStart="-11.981228874742595" tEnd="-11.691479601234777" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741987" s="870.09116316878317" t="-11.691479601234777" orientation="none" validLength="9.8182361371250408" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.8182361371250408" s="870.09116316878317" distance="0" tStart="-11.691479601234777" tEnd="-11.670268529948389" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="9100479" s="0" t="9.5898396879856609" orientation="none" validLength="43.928377331721045" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="43.928377331721045" s="0" distance="0" tStart="9.5898396879856609" tEnd="9.4558344432444361" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="277535935" s="43.928377331721045" t="9.4558344432444361" orientation="none" validLength="12.748959984626516" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.748959984626516" s="43.928377331721045" distance="0" tStart="9.4558344432444361" tEnd="9.6057535912788321" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="545971391" s="56.677337316347561" t="9.6057535912788321" orientation="none" validLength="83.327611659886472" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="83.327611659886472" s="56.677337316347561" distance="0" tStart="9.6057535912788321" tEnd="9.6521227447358804" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="814406847" s="140.00494897623403" t="9.6521227447358804" orientation="none" validLength="8.9986109371997145" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.9986109371997145" s="140.00494897623403" distance="0" tStart="9.6521227447358804" tEnd="9.8352104712242472" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1082842303" s="149.00355991343375" t="9.8352104712242472" orientation="none" validLength="9.1080381641382075" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.1080381641382075" s="149.00355991343375" distance="0" tStart="9.8352104712242472" tEnd="9.836334863243799" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741988" s="158.11159807757195" t="9.836334863243799" orientation="none" validLength="8.4983729455406376" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.4983729455406376" s="158.11159807757195" distance="0" tStart="9.836334863243799" tEnd="9.6335004050535336" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741989" s="166.60997102311259" t="9.6335004050535336" orientation="none" validLength="322.3661555828985" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="322.3661555828985" s="166.60997102311259" distance="0" tStart="9.6335004050535336" tEnd="9.5433201768201474" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741990" s="488.97612660601112" t="9.5433201768201474" orientation="none" validLength="29.687032284209749" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="29.687032284209749" s="488.97612660601112" distance="0" tStart="9.5433201768201474" tEnd="9.4623403192418696" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741991" s="518.66315889022087" t="9.4623403192418696" orientation="none" validLength="146.50654577425405" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="146.50654577425405" s="518.66315889022087" distance="0" tStart="9.4623403192418696" tEnd="9.4782624267638322" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741992" s="665.16970466447492" t="9.4782624267638322" orientation="none" validLength="39.695189254160027" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="39.695189254160027" s="665.16970466447492" distance="0" tStart="9.4782624267638322" tEnd="9.3998445116010405" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741993" s="704.86489391863495" t="9.3998445116010405" orientation="none" validLength="55.794505089197514" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="55.794505089197514" s="704.86489391863495" distance="0" tStart="9.3998445116010405" tEnd="9.4206056164566352" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741994" s="760.65939900783246" t="9.4206056164566352" orientation="none" validLength="77.966114669345075" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="77.966114669345075" s="760.65939900783246" distance="0" tStart="9.4206056164566352" tEnd="9.5897813199504771" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741995" s="838.62551367717754" t="9.5897813199504771" orientation="none" validLength="21.272981999659805" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="21.272981999659805" s="838.62551367717754" distance="0" tStart="9.5897813199504771" tEnd="9.5291886615170647" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073741996" s="859.89849567683734" t="9.5291886615170647" orientation="none" validLength="20.010904092094165" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="20.010904092094165" s="859.89849567683734" distance="0" tStart="9.5291886615170647" tEnd="9.2663003697940791" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412699" s="556.63822435305929" t="-10.917745139339365" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848155" s="607.55840804089019" t="-10.387060850270846" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283611" s="655.98431171808181" t="-10.111630043269159" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719067" s="707.83777135666173" t="-11.442665160023115" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154523" s="760.06637069754913" t="-11.179350402893427" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741997" s="803.74064734911735" t="-11.733197670159141" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741998" s="855.20450351923387" t="-12.809023651464782" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9489013" s="30.698986164179722" t="-11.625805657208062" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277924469" s="82.467154060101436" t="-11.817444831033553" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546359925" s="131.93082504219282" t="-11.666584230867793" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814795381" s="189.20039313072655" t="-11.142935638099811" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083230837" s="239.97423010680578" t="-11.180259676313293" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073741999" s="293.40017236081337" t="-10.819397815695147" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742000" s="341.45739566418655" t="-10.948977544912019" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742001" s="388.6983739946823" t="-10.457316240156077" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8227081" type="103" subtype="20" country="DEU" zOffset="1.6981278583597827" s="813.99260546588505" t="-12.447916806466203" orientation="+" name="Sg103-20KurveRechts03.flt" height="1.04" /> - </signals> - </road> - <road name="" length="5.0000000000012479" id="9100480" junction="33554629"> - <link> - <predecessor elementType="road" elementId="4940030" contactPoint="end" /> - <successor elementType="road" elementId="33782019" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1442.7188584116122" y="-37.975951807246112" hdg="0.43633231299858233" length="5.0000000000012479"> - <paramPoly3 aU="0" bU="5.0894926213886835" cU="-8.6342706190357852" dU="8.5441038238517439" aV="-0" bV="-0" cV="0.0026531889047518575" dV="-0.077484917610545434" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.26297691306499" b="-0.0074693377896188316" c="8.5016479576216142e-05" d="-2.8157037410633443e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.021856845448807921" b="9.5390310689138834e-06" c="-0" d="-1.0842021724846924e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="8.1301074543726468" b="-0.014571297946810346" c="0.01150008980747428" d="-0.0016673864407328652" /> - <laneOffset s="3.8393220840815991" a="8.1493168022215983" b="-0" c="-0.00043877885829565419" d="2.9792040826741926e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000012479" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8146197255738157" b="-0.009322522737274368" c="0.011347528922335559" d="-0.0016841390020220404" /> - <width sOffset="3.8393220840815991" a="3.8507839247141176" b="0.0033364963935582914" c="-0.00078429517900038197" d="1.3039479536912784e-05" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8747555124847315" b="0.0086196980415080299" c="-0.0023484712944917786" d="0.00012884493409147935" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.8999761044278167" b="-0.0010906886745193113" c="0.0003532604345983896" d="-2.7266117737691361e-07" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.5925037676165599" b="-0.00033579098416836387" c="-0.0068289325426794546" d="0.00079624768975796736" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000012479" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <successor id="-5" /> - </link> - <width sOffset="0" a="0.21684866959479621" b="-0.0038377284122688097" c="0.00068852897146473406" d="-2.0358956844660847e-05" /> - <width sOffset="3.3159711411229673" a="0.21095139240994332" b="5.6975202395663505e-05" c="0.0070580086258207964" d="-0.0029413160858618873" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="9100472" s="0" t="10.774166221929725" orientation="none" validLength="5.0000000000012479" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.0000000000012479" s="0" distance="0" tStart="10.774166221929725" tEnd="10.740608623147798" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="710.67644354620177" id="33781870" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554459" /> - <successor elementType="junction" elementId="33554492" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-699.89308644884193" y="-627.7457745232" hdg="1.2151937612974701" length="81.002718620908524"> - <paramPoly3 aU="0" bU="80.940244788552306" cU="0.27304678246960068" dU="-0.21700856205832425" aV="-0" bV="1.0658141036401503e-14" cV="0.59461598861899945" dV="-1.2453905903195428" /> - </geometry> - <geometry s="81.002718620908524" x="-671.08374149424878" y="-552.04344290694394" hdg="1.1836964194078403" length="184.53983328133188"> - <paramPoly3 aU="0" bU="183.95678619546979" cU="1.1745838549396233" dU="-6.285022191467144" aV="-0" bV="-0" cV="-43.177958532953269" dV="3.5865075306708403" /> - </geometry> - <geometry s="265.5425519022404" x="-566.90645021923183" y="-401.37628949403779" hdg="0.75963389673488846" length="142.01739916214007"> - <paramPoly3 aU="0" bU="141.91904821878057" cU="-0.62357092325676788" dU="-0.41388113444931118" aV="-0" bV="-0" cV="-25.435455634213834" dV="9.0189556363538088" /> - </geometry> - <geometry s="407.55995106438047" x="-453.44954848492534" y="-316.26073828320597" hdg="0.59047080485336878" length="62.502266889590011"> - <paramPoly3 aU="0" bU="62.401649013434316" cU="0.42141581952308532" dU="-0.32509719354630501" aV="-0" bV="7.1054273576010019e-15" cV="1.1510376299465324" dV="-1.445669385539667" /> - </geometry> - <geometry s="470.0622179539705" x="-401.36978425681411" y="-281.70960335434108" hdg="0.55780281954742761" length="101.51871143043824"> - <paramPoly3 aU="0" bU="101.19924335475625" cU="0.63942591805292182" dU="-1.2580846555341241" aV="-0" bV="-0" cV="-15.039635715578452" dV="2.8096190331054034" /> - </geometry> - <geometry s="571.58092938440871" x="-309.56155352482619" y="-238.84614479266568" hdg="0.34187523264838759" length="139.09551416179306"> - <paramPoly3 aU="0" bU="139.35679565633433" cU="-0.71646902425318437" dU="-3.1106917220783594" aV="-0" bV="2.1316282072803006e-14" cV="-27.388927480437765" dV="0.38111073398639317" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.08371747948448" b="-0.00025915965332692036" c="-9.7245200862250686e-06" d="-4.9022674158495201e-08" /> - <elevation s="10.009527373890165" a="158.0800999450413" b="-0.00046857019236674316" c="-1.3563246577232664e-05" d="1.8741657075430724e-07" /> - <elevation s="20.019054747780331" a="158.0742388213005" b="-0.00068376141062725265" c="-8.0845017735923559e-05" d="6.9985608245740008e-06" /> - <elevation s="30.028582121670496" a="158.06631336207772" b="-0.00019863141925963867" c="4.9224409210158043e-05" d="-3.4884103028893501e-06" /> - <elevation s="40.038109495560661" a="158.06575859000347" b="-0.00026172344051336239" c="-1.5842479638873305e-05" d="5.481504028954508e-07" /> - <elevation s="50.047636869450827" a="158.06210131254099" b="-0.00041411629157750191" c="0.00010965310492456974" d="-8.1073615732974313e-06" /> - <elevation s="60.057164243340992" a="158.06081186253564" b="-0.00065580997245234232" c="-3.531638348630794e-05" d="1.6490842389889569e-06" /> - <elevation s="70.066691617231157" a="158.05236294582591" b="-0.00086714217966803511" c="2.9456251501266645e-05" d="-4.9022674158179575e-08" /> - <elevation s="80.076218991121323" a="158.04658534015491" b="-0.00029219070723748332" c="0.00037315914142042802" d="-2.8466792082191234e-05" /> - <elevation s="90.085746365011488" a="158.05249946806271" b="-0.001378215628326862" c="-0.00018847729143304902" d="9.1535129725527379e-06" /> - <elevation s="100.09527373890165" a="158.02900022146855" b="-0.0024000639234261689" c="-1.6180793012862856e-05" d="9.9573046176841105e-07" /> - <elevation s="110.10480111279182" a="158.00435413113163" b="-0.0024246994931485465" c="2.4346970540085934e-06" d="3.3638447764073766e-08" /> - <elevation s="120.11432848668198" a="157.9803617037185" b="-0.0023658483868765619" c="0.00013537608790611578" d="-7.0286634256164138e-06" /> - <elevation s="123.00370165140839" a="157.97448652459349" b="-0.001759580226638011" c="0.00013682330429014292" d="-6.9563145118348107e-06" /> - <elevation s="130.12385586057215" a="157.96638351378931" b="-0.000869158573310646" c="8.0454715971185197e-05" d="-2.2104058687077021e-06" /> - <elevation s="140.13338323446231" a="157.96352772690202" b="7.7082866110421791e-05" c="0.00012504472970374211" d="-8.8289164186940439e-06" /> - <elevation s="150.14291060835248" a="157.96797342585415" b="-7.3364157127969067e-05" c="8.3342377665143342e-06" d="5.2427967731333504e-07" /> - <elevation s="160.15243798224265" a="157.96859987752427" b="0.00025106315147336818" c="-2.7546501851371925e-05" d="4.6798705562952047e-06" /> - <elevation s="170.16196535613281" a="157.97304625877666" b="0.0011062458766698557" c="7.4386031841444739e-05" d="-7.7715752851440272e-07" /> - <elevation s="180.17149273002298" a="157.99079266024182" b="0.0023617921941690443" c="8.4931549396908478e-05" d="-2.5612105797309789e-06" /> - <elevation s="190.18102010391314" a="158.02037389196263" b="0.0032922135633421897" c="3.8530459536413966e-07" d="3.3708084291425874e-06" /> - <elevation s="200.19054747780331" a="158.05674644975576" b="0.0043130973409205948" c="7.2995230791188205e-05" d="-8.4476129595449023e-07" /> - <elevation s="210.20007485169347" a="158.10638477631394" b="0.0055204813422279177" c="6.2430185295635847e-05" d="-8.4476129595450347e-07" /> - <elevation s="220.20960222558364" a="158.16704992743269" b="0.0065163631193469766" c="-1.7087803626448909e-05" d="3.3570904303202833e-06" /> - <elevation s="230.2191295994738" a="158.23393029935411" b="0.0071833285416465237" c="6.8431506422442158e-05" d="-1.782957676831796e-06" /> - <elevation s="240.22865697336397" a="158.31090016072721" b="0.0080173556123541087" c="-6.6002327266334647e-05" d="9.9113246705758047e-06" /> - <elevation s="250.23818434725413" a="158.39447696623827" b="0.0096751172432323774" c="0.00040191251732684465" d="-1.9843792986105558e-05" /> - <elevation s="260.2477117211443" a="158.51168762395014" b="0.0117565390777603" c="2.5142421479194154e-06" d="2.6087807618200938e-07" /> - <elevation s="270.25723909503449" a="158.62987855162842" b="0.011885284451841937" c="4.5152074769944052e-05" d="4.0710173835024822e-07" /> - <elevation s="280.26676646892463" a="158.75377671331549" b="0.012911549657629667" c="5.5848178346116708e-05" d="-2.0773631483522415e-07" /> - <elevation s="290.27629384281477" a="158.88840235705121" b="0.013967137695592078" c="3.334250858686569e-05" d="1.465791208198682e-06" /> - <elevation s="300.28582121670496" a="159.03301739610953" b="0.015075198870486969" c="0.00023720884482086006" d="-1.0150732396503993e-05" /> - <elevation s="310.29534859059515" a="159.19749934443752" b="0.016772870649122341" c="4.4166455209729208e-05" d="-9.6894771790829199e-07" /> - <elevation s="320.30487596448529" a="159.36884119785978" b="0.017365802863120863" c="5.2243931786145171e-05" d="3.4685315986401726e-07" /> - <elevation s="330.31440333837543" a="159.54824687534267" b="0.018515931312183018" c="6.9027227690864781e-05" d="-1.3437231490496681e-07" /> - <elevation s="340.32393071226562" a="159.74036372191838" b="0.019857402618434102" c="0.0001036608998618984" d="-3.6821628298931889e-06" /> - <elevation s="347.05664092452645" a="159.87763298644771" b="0.020752509667101172" c="8.4362759875094884e-05" d="-4.1760324298238625e-06" /> - <elevation s="350.33345808615582" a="159.94639408060931" b="0.021170871516430486" c="-3.0093456669526641e-05" d="4.9307463911129098e-06" /> - <elevation s="360.34298546004595" a="160.16023426889305" b="0.022050472843716855" c="-5.5299312485269892e-06" d="6.4663915497618437e-06" /> - <elevation s="370.35251283393609" a="160.38687992457133" b="0.02388338453691019" c="0.00017683907839026249" d="-6.227846146722687e-06" /> - <elevation s="380.36204020782628" a="160.63741327238893" b="0.025551620087688125" c="4.5466904448626929e-05" d="-2.7206602580811333e-07" /> - <elevation s="390.37156758171648" a="160.89745542689045" b="0.026380049130742812" c="-1.5440311536707924e-05" d="4.5997054903198917e-06" /> - <elevation s="400.38109495560661" a="161.16457314107564" b="0.027453490975259655" c="2.4929472454854703e-05" d="4.2251883790902591e-06" /> - <elevation s="410.39062232949675" a="161.44610458663104" b="0.029222528410432245" c="9.0183408075800284e-05" d="-9.2228804492422156e-07" /> - <elevation s="420.40014970338694" a="161.74671889125196" b="0.030750701110432911" c="0.00011710984170505885" d="-5.4757432343178972e-06" /> - <elevation s="430.40967707727714" a="162.06076077658261" b="0.031449274814434151" c="2.2856822787750553e-05" d="-2.4762425888774508e-06" /> - <elevation s="440.41920445116727" a="162.37535986642928" b="0.031162557824868039" c="-4.1923943077707126e-05" d="5.7833865588768573e-07" /> - <elevation s="450.42873182505741" a="162.68366194864873" b="0.030497112470324366" c="1.2786091980613104e-06" d="-4.1005524866587324e-06" /> - <elevation s="460.43825919894761" a="162.98493945151114" b="0.029290198105429995" c="-0.00012223232124692048" d="3.1971452018229923e-06" /> - <elevation s="470.4477865728378" a="163.26908024898387" b="0.027804194629472447" c="2.6980204262640062e-06" d="-7.0279392338961723e-06" /> - <elevation s="480.45731394672794" a="163.5406093669057" b="0.025745805295845976" c="-0.00010307437789781322" d="-4.7054336087269782e-07" /> - <elevation s="490.46684132061807" a="163.78751373251325" b="0.023540921562667752" c="-0.00027690203710832118" d="1.0929358312096785e-05" /> - <elevation s="500.47636869450827" a="164.00636486597961" b="0.021282662676836081" c="-7.5715697609021591e-05" d="8.1814548282147974e-07" /> - <elevation s="507.06530178511071" a="164.14354181439296" b="0.020391448346292706" c="-3.6962449327153389e-05" d="1.6415635901460888e-06" /> - <elevation s="510.48589606839846" a="164.2129259077322" b="0.02019620243379391" c="0.00012085611411556244" d="-1.2722112776050928e-05" /> - <elevation s="520.4954234422886" a="164.41443049012292" b="0.01879171780216557" c="-8.5193327854090348e-05" d="3.5287474652014527e-07" /> - <elevation s="530.50495081617873" a="164.59434501427253" b="0.017192292145935994" c="-0.00018353903942130002" d="4.433270868808787e-06" /> - <elevation s="540.51447819006898" a="164.7524887937978" b="0.014850530781031355" c="-0.00021665200428638663" d="1.2880435924027411e-05" /> - <elevation s="550.52400556395912" a="164.89234637160888" b="0.014384859734453522" c="-1.0666521862227791e-05" d="3.5287474652040981e-07" /> - <elevation s="560.53353293784926" a="165.03561721755585" b="0.014277390287552325" c="3.9236686901688661e-05" d="-2.574649514442538e-06" /> - <elevation s="570.5430603117394" a="165.17987627974793" b="0.014289004336402969" c="2.2334239537236519e-05" d="-2.7549136259761066e-06" /> - <elevation s="580.55258768562953" a="165.32237734625483" b="0.013908065036929549" c="-4.5435020022593651e-05" d="1.9663977119548147e-06" /> - <elevation s="590.56211505951978" a="165.4590103637552" b="0.013589542809065108" c="7.9932904891603525e-06" d="-6.9920066445591304e-07" /> - <elevation s="600.57164243340992" a="165.59513491634411" b="0.013539400846475352" c="-1.7042284763053751e-05" d="2.136950618206155e-06" /> - <elevation s="603.08034401013185" a="165.62902771527351" b="0.013494240065217581" c="-9.1330271059795277e-05" d="1.8931486788441273e-06" /> - <elevation s="610.58116980730006" a="165.72590613609867" b="0.012443674353247029" c="0.00016860179956492777" d="-1.3235424115936575e-05" /> - <elevation s="620.59069718119031" a="165.85408046725823" b="0.011840726240309529" c="-0.00010919960299883647" d="1.5009956631447454e-06" /> - <elevation s="630.60022455508044" a="165.96316505268231" b="0.010105810549936754" c="-2.298825803524337e-05" d="-5.3927916862606117e-06" /> - <elevation s="640.60975192897058" a="166.05660801165351" b="0.0080246856308076302" c="-0.00018815326723464862" d="8.2654887493833922e-06" /> - <elevation s="650.61927930286072" a="166.12636926199417" b="0.0067424088527768909" c="-2.4321456293874205e-05" d="-2.4280903472150705e-06" /> - <elevation s="660.62880667675086" a="166.18898576878411" b="0.005525700522845442" c="-0.00015151137697425862" d="2.813669832754205e-06" /> - <elevation s="670.63833405064111" a="166.23193711742897" b="0.0033382961013800651" c="-0.0002194882690438365" d="1.2636704248914773e-05" /> - <elevation s="680.64786142453124" a="166.25603407092729" b="0.002742586819070796" c="-2.5295141446574086e-05" d="1.0907281233304537e-07" /> - <elevation s="690.65738879842138" a="166.28106111726464" b="0.0022689862216486549" c="2.1954748197365968e-05" d="-3.8844949732183661e-06" /> - <elevation s="700.66691617231163" a="166.30207664893035" b="0.001540929435864101" c="-5.4717402037970865e-05" d="1.0907281231449764e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028527093940823998" b="1.9594184551828032e-06" c="2.7993922163315515e-06" d="0" /> - <superelevation s="10.009527373890165" a="0.028827179686350624" b="5.8000604494431826e-05" c="2.6487569165673697e-06" d="1.5049192048466983e-08" /> - <superelevation s="20.019054747780331" a="0.029688211217602383" b="0.00011554957869014336" c="2.0394042055461064e-05" d="-1.7427410793508812e-06" /> - <superelevation s="30.028582121670496" a="0.031140373028231555" b="0" c="-5.3109127168752602e-05" d="2.8667317352582341e-06" /> - <superelevation s="40.038109495560661" a="0.02869426895209852" b="-0.00020153547766848314" c="1.8524131903931087e-05" d="-1.4230441643533788e-06" /> - <superelevation s="50.047636869450827" a="0.027105823267166131" b="-0.00025842697617635624" c="-5.570970114099729e-05" d="4.5702291728135618e-06" /> - <superelevation s="60.057164243340992" a="0.023520805167720722" b="0" c="7.8825810310719136e-05" d="-5.2500520997848573e-06" /> - <superelevation s="70.066691617231157" a="0.026153341249553548" b="0" c="-4.6919607873086207e-05" d="3.1249965571452071e-06" /> - <superelevation s="80.076218991121323" a="0.024586372763159815" b="0" c="3.9558950422780539e-05" d="-2.2157499093549021e-06" /> - <superelevation s="90.085746365011488" a="0.02632772022607871" b="0.00012594060142536053" c="-6.3748492566908192e-06" d="1.5750802988149849e-07" /> - <superelevation s="100.09527373890165" a="0.027107584558062489" b="4.5664635276166275e-05" c="-2.2810585140754195e-06" d="-5.4055459405952903e-23" /> - <superelevation s="110.10480111279182" a="0.027336125266470238" b="0" c="-7.1504580915365641e-05" d="4.7624347114120635e-06" /> - <superelevation s="120.11432848668198" a="0.024948095399932507" b="0" c="4.1298999060590199e-06" d="1.0811091881190581e-22" /> - <superelevation s="130.12385586057215" a="0.025361872707423631" b="8.2676692322249069e-05" c="4.1451390301651899e-05" d="-1.6971730232929185e-06" /> - <superelevation s="140.13338323446231" a="0.028640440046061838" b="0.0004023717988762701" c="2.5126307811417834e-05" d="-1.7633916687779462e-06" /> - <superelevation s="150.14291060835248" a="0.033416975778090538" b="0.00037535072023094556" c="-5.9738344781823673e-06" d="-4.1972931513273278e-07" /> - <superelevation s="160.15243798224265" a="0.036154606663983915" b="0.000129601356833575" c="-1.1280070589140487e-05" d="4.801596013914267e-07" /> - <superelevation s="170.16196535613281" a="0.036803230828443403" b="4.8107496924627564e-05" c="-1.970170496757251e-07" d="-1.4693123227513806e-07" /> - <superelevation s="180.17149273002298" a="0.037117673278696708" b="0" c="-6.13721061632214e-06" d="2.5767694292532694e-07" /> - <superelevation s="190.18102010391314" a="0.03676119637018925" b="-4.5410703205857436e-05" c="-7.4730333571278436e-06" d="6.4880901224257204e-07" /> - <superelevation s="200.19054747780331" a="0.036208593925083445" b="0" c="8.6426449585097943e-06" d="-3.7952533728049674e-07" /> - <superelevation s="210.20007485169347" a="0.036693894904592489" b="5.8942925269027784e-05" c="9.0234015192031176e-06" d="-7.9709008905786453e-07" /> - <superelevation s="220.20960222558364" a="0.037388575573038436" b="0" c="-6.4854780317150616e-05" d="4.3195366370859956e-06" /> - <superelevation s="230.2191295994738" a="0.035222628295221194" b="0" c="1.2791425619517095e-05" d="-8.5195002332701838e-07" /> - <superelevation s="240.22865697336397" a="0.035649821994197743" b="0" c="-5.268632927576482e-05" d="3.5090787212189514e-06" /> - <superelevation s="250.23818434725413" a="0.033890263008491822" b="0" c="3.9146512674570359e-05" d="-2.5985647408929048e-06" /> - <superelevation s="260.2477117211443" a="0.035206378029848544" b="2.6206006553570048e-06" c="-3.9271594314118677e-07" d="2.6156142940751543e-08" /> - <superelevation s="270.25723909503449" a="0.035219493516846459" b="2.6206006553570048e-06" c="7.0738731222323681e-06" d="-4.2869096652529714e-07" /> - <superelevation s="280.26676646892463" a="0.035524542929836964" b="1.538038932537002e-05" c="-1.7168996276137618e-06" d="9.4770921955519167e-08" /> - <superelevation s="290.27629384281477" a="0.035601518143823653" b="9.4951591581370309e-06" c="-7.6828749005127827e-07" d="9.4770921955518095e-08" /> - <superelevation s="300.28582121670496" a="0.035714627040862597" b="2.2600247307178124e-05" c="2.539669014367176e-05" d="-1.7666919351215855e-06" /> - <superelevation s="310.29534859059515" a="0.036713609101880477" b="0" c="-1.2152583080686202e-05" d="2.8310915444106218e-07" /> - <superelevation s="320.30487596448529" a="0.035779953158314212" b="-0.00015818856538674401" c="-1.6594046332753285e-05" d="1.0099418820502779e-06" /> - <superelevation s="330.31440333837543" a="0.03354682355093043" b="-0.00018682552213933448" c="1.0362297257148787e-05" d="-6.7318480777003682e-07" /> - <superelevation s="340.32393071226562" a="0.032039882802324234" b="-0.00018172257268503784" c="-5.6662949995129119e-06" d="2.5496395975659822e-07" /> - <superelevation s="350.33345808615582" a="0.029908909419441156" b="-0.00021852143692210226" c="-7.3143241786154506e-06" d="6.7457397297238873e-07" /> - <superelevation s="360.34298546004595" a="0.027665290193017042" b="-0.00016218930240271306" c="9.1488224617654607e-06" d="-2.9559970551028019e-07" /> - <superelevation s="370.35251283393609" a="0.026662032895136953" b="-6.788749414647837e-05" c="2.9112996455860281e-06" d="3.1959164123560641e-08" /> - <superelevation s="380.36204020782628" a="0.026306246731009078" b="0" c="1.5382960638172561e-05" d="-1.0245545777581783e-06" /> - <superelevation s="390.37156758171648" a="0.026819989612506569" b="0" c="-2.8560781468081764e-05" d="1.902239762927099e-06" /> - <superelevation s="400.38109495560661" a="0.025866148637784074" b="0" c="1.7761700959854784e-06" d="0" /> - <superelevation s="410.39062232949675" a="0.026044104253339032" b="3.5557246392902743e-05" c="1.3081958249025892e-05" d="-7.6099629369329699e-07" /> - <superelevation s="420.40014970338694" a="0.02694753177545553" b="6.8711571678349475e-05" c="-2.1844804271912218e-06" d="3.1981739713857571e-09" /> - <superelevation s="430.40967707727714" a="0.027419644968573947" b="2.594161968522563e-05" c="-3.8875391488853779e-06" d="2.5892259135871535e-07" /> - <superelevation s="440.41920445116727" a="0.027549476644755103" b="2.594161968522563e-05" c="-1.0209418675781922e-08" d="2.5892259135871535e-07" /> - <superelevation s="450.42873182505741" a="0.028067780461306462" b="0.00010356209582949043" c="6.0867712198134084e-05" d="-3.846788197997541e-06" /> - <superelevation s="460.43825919894761" a="0.031344969414832509" b="0.00016583966440174942" c="-1.5237257997076534e-05" d="6.9465491028370629e-07" /> - <superelevation s="470.4477865728378" a="0.032174957745085546" b="6.9597918823888181e-05" c="-2.6986827325194812e-06" d="1.3664575400382173e-07" /> - <superelevation s="480.45731394672794" a="0.032738253962099499" b="5.6644717377526999e-05" c="-4.6448819725355591e-06" d="4.6772618682103137e-07" /> - <superelevation s="490.46684132061807" a="0.0333089314434388" b="0.0001042439264219868" c="1.4371767047351884e-05" d="-9.6440246560763515e-07" /> - <superelevation s="500.47636869450827" a="0.034825118832264843" b="0.00010208082209184875" c="-4.6056102868873981e-06" d="-3.2873522531405502e-08" /> - <superelevation s="510.48589606839846" a="0.035352493009593949" b="0" c="-1.3173493784944891e-05" d="6.3283840073429123e-07" /> - <superelevation s="520.4954234422886" a="0.03466728117031239" b="-7.3507443466872842e-05" c="-1.8577432911083127e-06" d="1.3517881978029382e-07" /> - <superelevation s="530.50495081617873" a="0.033880943474461259" b="-7.0066751424430602e-05" c="-4.454779266586445e-06" d="5.2981404329172832e-07" /> - <superelevation s="540.51447819006898" a="0.033264611037547596" b="0" c="2.0178136057764521e-05" d="-1.3439286594356187e-06" /> - <superelevation s="550.52400556395912" a="0.03393849781431281" b="0" c="-2.1128579553103666e-06" d="1.4072312483815894e-07" /> - <superelevation s="560.53353293784926" a="0.033867934951955711" b="0" c="7.4554346302266519e-06" d="-4.9655588798822678e-07" /> - <superelevation s="570.5430603117394" a="0.034116923203296894" b="0" c="-6.5736646228352643e-06" d="3.094135459065439e-07" /> - <superelevation s="580.55258768562953" a="0.033768602307410037" b="-3.8597530036618759e-05" c="-4.9945728957412157e-06" d="4.6106822187750437e-07" /> - <superelevation s="590.56211505951978" a="0.033344237136364724" b="0" c="3.1123819120102984e-05" d="-2.0729463012269356e-06" /> - <superelevation s="600.57164243340992" a="0.034383675570491004" b="0" c="-3.2944962207632834e-05" d="2.1942402790878172e-06" /> - <superelevation s="610.58116980730006" a="0.033283416640270812" b="0" c="1.0237314558934486e-05" d="-6.8183802468292471e-07" /> - <superelevation s="620.59069718119031" a="0.033625311000141454" b="0" c="-0.00013830823443814443" d="9.0683260875404963e-06" /> - <superelevation s="630.60022455508044" a="0.028862390706270863" b="-4.3115981613185941e-05" c="2.153747125246628e-06" d="-5.4055459405953361e-23" /> - <superelevation s="640.60975192897058" a="0.028646605407166199" b="0" c="1.8696349171695621e-05" d="-1.2452368943655978e-06" /> - <superelevation s="650.61927930286072" a="0.029271005125976836" b="0" c="-1.0576767651673022e-05" d="7.0444669074402246e-07" /> - <superelevation s="660.62880667675086" a="0.028917774092100553" b="0" c="3.2514877159422688e-06" d="-2.7354905043399757e-08" /> - <superelevation s="670.63833405064111" a="0.029216109555938168" b="5.6869594410596929e-05" c="1.379315154213327e-05" d="-1.1078728049439547e-06" /> - <superelevation s="680.64786142453124" a="0.030056249616090353" b="0" c="-2.4726916709908483e-05" d="1.3244414125241961e-06" /> - <superelevation s="690.65738879842138" a="0.028907074603852962" b="-9.6919608028210474e-05" c="7.2379203532561108e-06" d="-5.4455837044151287e-07" /> - <superelevation s="700.66691617231163" a="0.028116010676840195" b="-0.00011570223631085433" c="-3.6636234779746663e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.6194681791799366" b="-0.006887088043902795" c="0.00036926987575327993" d="-9.5496049781021743e-07" /> - <laneOffset s="9.6894715395251403" a="2.5865364232464625" b="-0" c="0.00061670974874199137" d="-3.814553697154631e-05" /> - <laneOffset s="20.467661208249229" a="2.610417351428985" b="-0" c="-0.00084864123205392818" d="4.4773230822729602e-05" /> - <laneOffset s="30.028582121670496" a="2.5719727301449589" b="-0.0039492579646373373" c="0.00042866221965404458" d="4.7329386781149731e-05" /> - <laneOffset s="33.086452816984597" a="2.5652579291655413" b="-0" c="0.00091372460953092626" d="-2.8141857830312362e-05" /> - <laneOffset s="37.594950657212863" a="2.5812518183568742" b="0.0065229699821149501" c="0.0030831743457040337" d="-0.00057988959176962667" /> - <laneOffset s="40.038109495560661" a="2.6071353249785001" b="0.011204212686011421" c="-0.0012139417840034486" d="-0.00057797529625498723" /> - <laneOffset s="41.776848096647178" a="2.6199083481465872" b="0.0017407323870204316" c="-6.6200237800343513e-05" d="3.3162432184526768e-07" /> - <laneOffset s="50.047636869450827" a="2.62996471154616" b="0.00071373124718521425" c="-7.7286104465290644e-05" d="1.7632925000749156e-06" /> - <laneOffset s="55.795904782415988" a="2.6318486129643537" b="-0" c="-0.0002411845738601517" d="1.2442252247464689e-06" /> - <laneOffset s="60.622134467522358" a="2.6263706924528054" b="-0.0022410809779926152" c="7.9385910724143099e-05" d="-7.713896717259301e-05" /> - <laneOffset s="65.297189829490577" a="2.609746627000558" b="-0.0065566947310951532" c="-0.00029230927036933422" d="-5.9214195966206776e-05" /> - <laneOffset s="70.066691617231157" a="2.5654003833035848" b="-0.013386073663144529" c="-0.0011376167500667413" d="-5.2058704375129209e-05" /> - <laneOffset s="71.098982045605709" a="2.5503125301211798" b="-0.015901200368387068" c="-0.0010618590314135773" d="2.6252440115113318e-05" /> - <laneOffset s="74.362591713834036" a="2.4880197671468407" b="-0.021993331290497617" c="-0.0021189434813328233" d="0.0003065651186613703" /> - <laneOffset s="78.348014638171492" a="2.3861170433292611" b="-0.02427503376972567" c="6.457877473212988e-05" d="2.8593245317370495e-05" /> - <laneOffset s="80.076218991121323" a="2.3445052883134774" b="-0.023795625626458261" c="0.00020924003639340681" d="2.547831431693127e-05" /> - <laneOffset s="88.024510789027673" a="2.1813831035669313" b="-0.015640620196098947" c="0.00039833104466463335" d="2.9409043060931705e-05" /> - <laneOffset s="90.085746365011488" a="2.151094038071955" b="-0.013623662048797291" c="0.00059961922435163538" d="3.298478770260162e-05" /> - <laneOffset s="93.519295807743006" a="2.1127207804947732" b="-0.0083394186510262255" c="-3.307145969678904e-05" d="0.00021937447099994008" /> - <laneOffset s="97.129608344859207" a="2.0925051536229033" b="-0" c="0.0004276568795851578" d="-4.4810763245198203e-05" /> - <laneOffset s="100.09527373890165" a="2.0950976459970625" b="0.0013542194096320085" c="3.3823172870080404e-05" d="-4.4505315619713621e-05" /> - <laneOffset s="103.54342898236821" a="2.0983447351361835" b="-0" c="-0.00046622826310015517" d="1.8210597736112644e-05" /> - <laneOffset s="110.10480111279182" a="2.0834169463442227" b="-0.0037662079240489417" c="-0.00011087480072650159" d="1.8472857906455473e-05" /> - <laneOffset s="120.58852400266852" a="2.0530323338607728" b="-0" c="0.0012257836608290283" d="-9.9278338446591576e-08" /> - <laneOffset s="125.66070698584386" a="2.0845551643432687" b="0.012427135637606055" c="0.00066371604281106704" d="0.0015629799378094997" /> - <laneOffset s="126.3755816350195" a="2.0943492070278418" b="0.01577234601358142" c="0.00066873400994624883" d="9.2160225899071786e-05" /> - <laneOffset s="130.12385586057215" a="2.1677170086156878" b="0.024669974698938647" c="0.0017242873847912149" d="8.4964889247415769e-05" /> - <laneOffset s="131.53408379059238" a="2.2061747510012468" b="0.030040171096720684" c="0.0011043282345734688" d="0.00014667404143988799" /> - <laneOffset s="135.09694802570237" a="2.3338557740293822" b="0.043494955769880092" c="0.0037330803231008856" d="-0.00010935173494871711" /> - <laneOffset s="140.13338323446231" a="2.6336374514529144" b="0.072776446901479719" c="0.0021117931691647719" d="-0.00010817656256966135" /> - <laneOffset s="149.67152784534051" a="3.4260430672830893" b="0.083537145548419539" c="0.0029793990981376167" d="-0.00045260931663538" /> - <laneOffset s="154.92677578476233" a="3.8816448401574868" b="0.077352116338100144" c="0.0015046758295620408" d="-0.00028844542690055605" /> - <laneOffset s="160.15243798224265" a="4.285788709288104" b="0.069447761768699545" c="-0.002993304797315815" d="-0.0002868361100000393" /> - <laneOffset s="166.30747782827254" a="4.5329579025544824" b="-0" c="-0.00067453129912554142" d="3.7769456044432236e-05" /> - <laneOffset s="170.16196535613281" a="4.5250992620944901" b="-0.0035165141374797499" c="-0.00022861651598920298" d="3.8329132172404083e-05" /> - <laneOffset s="176.01723834656082" a="4.5043654958008696" b="-0.0022514849544228808" c="2.686143256848431e-05" d="-4.3721338039674801e-05" /> - <laneOffset s="180.17149273002298" a="4.4923412926036299" b="-0.0042919126963435125" c="-0.00051887286059916916" d="-4.2278434059083907e-05" /> - <laneOffset s="181.86568515730804" a="4.4833750596581279" b="-0.0064141074820078829" c="-0.0014565759850521652" d="4.5722663674992161e-05" /> - <laneOffset s="190.18102010391314" a="4.3556137594849647" b="-0.021153489206188307" c="-0.00032095189146441426" d="4.569788099362114e-05" /> - <laneOffset s="200.19054747780331" a="4.1575495750830749" b="-0.013843143102731792" c="0.0010520743703142021" d="4.4779815747622141e-05" /> - <laneOffset s="203.20146274364248" a="4.1266290411538868" b="-0.0062898604025065277" c="0.0014833303582032274" d="-0.00033384954927969101" /> - <laneOffset s="206.17296392355337" a="4.1122767686831967" b="-0.0063179181260407703" c="-0.0011408414089758875" d="0.00017356168979927375" /> - <laneOffset s="209.89153911950442" a="4.0819322799446791" b="-0.0076025974805358559" c="0.00047394047090245321" d="-6.2054750836101951e-05" /> - <laneOffset s="215.03189795210912" a="4.0469466687187499" b="-0.0076492211411515586" c="-0.00073235041443363465" d="7.1435830503242061e-05" /> - <laneOffset s="220.20960222558364" a="3.9976237601217068" b="-0.0094877204483062409" c="0.00035871452557862613" d="7.7621159279627391e-05" /> - <laneOffset s="223.01938668215413" a="3.975519187101948" b="-0.0056334682136122364" c="0.0011289487013957206" d="-0.00020583124956728455" /> - <laneOffset s="226.5542554148505" a="3.9606207569968399" b="-0.0053678650422134032" c="-0.00074438509751555918" d="0.00013159519512665523" /> - <laneOffset s="229.56129756428246" a="3.9413265556434189" b="-0.0062748890884000916" c="0.00022278839370706044" d="-1.3716464784035365e-05" /> - <laneOffset s="240.22865697336397" a="3.8830917677944927" b="-0.0062042561452650526" c="-0.00023229652833382496" d="-9.5005760233941025e-06" /> - <laneOffset s="243.07561396740056" a="3.8633264895790314" b="-0.0077579437812069522" c="-0.00030249988482984537" d="2.1121249657997072e-05" /> - <laneOffset s="250.27095662146792" a="3.7997122883267296" b="-0.008830595847652974" c="0.00020928423055207126" d="-8.8779854780165891e-05" /> - <laneOffset s="252.60399553064155" a="3.7791219073672964" b="-0.0093037643811622432" c="-0.00031062311762824986" d="3.4656834417239841e-05" /> - <laneOffset s="255.97929921023433" a="3.745512733829846" b="-0.010216156939156134" c="-0.0015778612097963407" d="0.00030422730030759152" /> - <laneOffset s="260.94569998750251" a="3.6931239592697276" b="-0.0033773153846309023" c="0.00017932085242581297" d="-3.6684240031169386e-09" /> - <laneOffset s="270.36538498742902" a="3.6772188687937128" b="-0" c="0.00086912101013948066" d="-3.2885807224086695e-05" /> - <laneOffset s="280.26676646892463" a="3.7305027681689085" b="0.0075388846541939543" c="-0.00010426108699006433" d="-3.3500860411497347e-05" /> - <laneOffset s="282.41774272313512" a="3.7459029475313463" b="0.0066253632328516976" c="0.00037695720106919653" d="-9.3200745339546106e-05" /> - <laneOffset s="285.63126110902317" a="3.7679935275623033" b="0.0061607124983758315" c="-0.00061704217783156766" d="0.00011003272716791478" /> - <laneOffset s="289.22552865951991" a="3.7872745593706405" b="0.0059895420715500511" c="0.00054024338090574535" d="-9.2343032913881534e-05" /> - <laneOffset s="290.27629384281477" a="3.7940575159163923" b="0.0068190100444262946" c="0.00025349636604963112" d="-9.0533549785123916e-05" /> - <laneOffset s="293.2445009558553" a="3.8141636054638388" b="0.0059309989157750329" c="0.00018886848564854072" d="-4.7977713542864062e-05" /> - <laneOffset s="301.10868005026862" a="3.8491521074449482" b="-0" c="-1.9631542274862234e-05" d="7.6540259655735404e-07" /> - <laneOffset s="310.29534859059515" a="3.8480887283995657" b="-0.00016690876535957762" c="1.3885684363130716e-06" d="2.4445743898347857e-06" /> - <laneOffset s="312.7257363557635" a="3.8477263711185032" b="-0.00011684052215049313" c="5.4612868397672212e-06" d="-3.5916999659637212e-07" /> - <laneOffset s="320.30487596448529" a="3.8469981628589269" b="-9.5952602585552086e-05" c="-3.1583460790830106e-05" d="3.12188914721801e-06" /> - <laneOffset s="324.03432884246604" a="3.8463629630378744" b="-0.00020126528897268709" c="-0.00045856169218259527" d="1.0840194498955879e-05" /> - <laneOffset s="330.31440333837543" a="3.8296985542108195" b="-0.004678278255873804" c="-0.00028473735540653615" d="1.2034149137404034e-05" /> - <laneOffset s="334.12241851038419" a="3.8084191541809318" b="-0.0063233257430864382" c="-0.00039786139408612024" d="2.1115436366861543e-05" /> - <laneOffset s="340.68055963979464" a="3.7557940158711891" b="-0.0088173130556032913" c="-0.00014900011217040728" d="5.8025637028715198e-06" /> - <laneOffset s="343.68916521550301" a="3.7280755145349231" b="-0.0095563088637732573" c="-0.00066921825395889879" d="0.00013697589415740812" /> - <laneOffset s="347.63800251750251" a="3.6883382286838327" b="-0.008433851651183594" c="0.00085209315125887896" d="-6.8963926397991437e-05" /> - <laneOffset s="350.33345808615582" a="3.6704454482546613" b="-0.0053434614254350482" c="0.00024543546453823916" d="-7.1715828785340243e-05" /> - <laneOffset s="353.88668840158988" a="3.6513403791157062" b="-0.0063156168602707952" c="-0.00027680684754417595" d="2.803225085258849e-05" /> - <laneOffset s="361.26016796368657" a="3.6009604647012763" b="-0.0058254869921850663" c="-0.0011839601018234578" d="0.00043542709384286865" /> - <laneOffset s="364.27694213492822" a="3.5845659945789814" b="-0.0010805977008658757" c="5.5484897446574553e-05" d="4.2014455585465768e-07" /> - <laneOffset s="370.35251283393609" a="3.580143060080077" b="-0.00035986703401635586" c="5.3783942519088116e-05" d="1.2149768398765046e-06" /> - <laneOffset s="373.38615748383575" a="3.5795802454836569" b="-0" c="0.00022471684964299178" d="1.0834641285132122e-07" /> - <laneOffset s="380.14959416509009" a="3.58989323106303" b="0.0030545849870902233" c="0.00039212800794441558" d="-1.3241657540254446e-05" /> - <laneOffset s="390.37156758171648" a="3.6479469147539567" b="0.0069204167765941965" c="-1.9870484533168685e-05" d="-1.0545193750413318e-05" /> - <laneOffset s="392.24975382116213" a="3.6608047847730156" b="0.0067341786793344996" c="0.00016133114548981263" d="-8.2801210006019199e-06" /> - <laneOffset s="400.38109495560661" a="3.721778023164962" b="0.0077154431145660674" c="-4.3940548312454227e-05" d="-8.721885368454881e-06" /> - <laneOffset s="403.03381321903669" a="3.7417729031528477" b="0.0072981938479271596" c="7.6362134857276549e-05" d="-2.16770696803568e-05" /> - <laneOffset s="407.46958106350735" a="3.7737565624601559" b="0.006696086818318266" c="-0.00053691236303982472" d="0.00020053155962358607" /> - <laneOffset s="409.57745257204073" a="3.7873635703092905" b="0.0071055610041945577" c="0.0026164644087785828" d="-0.00065626555291246403" /> - <laneOffset s="413.08973844109204" a="3.8161626999919203" b="0.001197728053510434" c="-0.00022238055389147386" d="-3.1543920703053089e-06" /> - <laneOffset s="415.64390206028469" a="3.8177185770927911" b="-0" c="-0.00028397330782007328" d="4.8418437512864543e-05" /> - <laneOffset s="419.55389065701166" a="3.8162714480913249" b="-0" c="0.00032488066405243722" d="-6.1295423634583022e-05" /> - <laneOffset s="423.08738625138977" a="3.8176235571355543" b="-0" c="-0.0010962747115188054" d="8.9185724837460961e-05" /> - <laneOffset s="430.1659108604681" a="3.7943259295348755" b="-0.0021139261928989901" c="0.00061760111821341623" d="-0.0001136195902775799" /> - <laneOffset s="434.12859710591039" a="3.7885771742620031" b="-0.0025716724327001263" c="-0.00036036462009736761" d="9.8209846380862271e-06" /> - <laneOffset s="440.41920445116727" a="3.7605842779242309" b="-0.0059395967103317727" c="-0.00016943239235381341" d="7.8587007183084217e-06" /> - <laneOffset s="442.07013927569585" a="3.7503519506522589" b="-0.0064347816950809586" c="1.7335676843308772e-05" d="-3.7272095776806907e-05" /> - <laneOffset s="447.98716750460341" a="3.7051627323298217" b="-0.010144455294237829" c="-0.00054641904306949472" d="1.5503236998715277e-05" /> - <laneOffset s="450.42873182505741" a="3.6773627047951369" b="-0.012535434394458096" c="-0.00040188712189775076" d="1.5712452338324764e-05" /> - <laneOffset s="455.25532478192679" a="3.609263616187885" b="-0.015316813649661117" c="-0.00075435709455356126" d="3.2990454380859071e-05" /> - <laneOffset s="460.43825919894761" a="3.5142066257472142" b="-0.020477731504325459" c="-0.000216235917067146" d="3.5524928445054711e-05" /> - <laneOffset s="468.87457167742792" a="3.3473902940005735" b="-0.016541125743615576" c="-0.000187150804520297" d="2.2547038868207202e-05" /> - <laneOffset s="470.4477865728378" a="3.3209921411380865" b="-0.016962570501284507" c="-6.6199188182986888e-05" d="2.7839050904443484e-05" /> - <laneOffset s="480.45731394672794" a="3.1724909851101066" b="-0.0099201788387192572" c="0.0007770718266911622" d="2.6583456920412286e-05" /> - <laneOffset s="483.13641781945768" a="3.1520024917799985" b="-0.0051840504915109335" c="0.00014832831166067923" d="-2.3339430391281304e-07" /> - <laneOffset s="490.46684132061807" a="3.1218797099032329" b="-0.0030470562130182027" c="0.00015030634178439883" d="-2.8953001495194319e-07" /> - <laneOffset s="500.91863229421762" a="3.1061213984676677" b="-0" c="0.0011104677024024517" d="-7.1462827562137349e-05" /> - <laneOffset s="505.88284542352136" a="3.1247446958790408" b="0.0057419329904404102" c="0.00065204131711064711" d="-3.0134080945564552e-05" /> - <laneOffset s="510.48589606839846" a="3.1620516343322072" b="0.0098292418778406221" c="0.00023406320487258226" d="-2.921202203974236e-05" /> - <laneOffset s="514.17312619668871" a="3.2000121474128633" b="0.010363860993526182" c="7.2544750723920734e-05" d="8.6609273632516914e-06" /> - <laneOffset s="520.4954234422886" a="3.2706239901200949" b="0.012319729228191544" c="0.00022390446702298737" d="9.9244874572339456e-06" /> - <laneOffset s="523.68520535289395" a="3.3125215025185901" b="0.014051078370171333" c="0.00069146431110368777" d="-4.7310508738217839e-05" /> - <laneOffset s="530.50495081617873" a="3.425499642164223" b="0.016881216407754637" c="-0.00028997883884560597" d="-4.5494994036836617e-05" /> - <laneOffset s="533.38614722714499" a="3.4706424094887867" b="0.014077242634631471" c="-0.0002279077625259107" d="-1.1259990182504323e-07" /> - <laneOffset s="540.51447819006898" a="3.5593681684733727" b="0.010810874063026667" c="-0.00022863686761297614" d="-8.518245107611362e-07" /> - <laneOffset s="546.51812233775206" a="3.6158475512159352" b="0.0079734564472744591" c="-0.00016852373166303765" d="-7.3423803915168001e-06" /> - <laneOffset s="550.52400556395912" a="3.6446119805608133" b="0.0062698119210638044" c="-0.0002518185558703992" d="-6.3733456343591756e-06" /> - <laneOffset s="555.97071794851445" a="3.6702613808678679" b="0.0029594174911344072" c="-0.00028329882267590399" d="-2.5497721143943874e-06" /> - <laneOffset s="560.86982783424889" a="3.6776605439566432" b="-0" c="-0.0016154600098866577" d="0.00028603658710477732" /> - <laneOffset s="564.19617156095546" a="3.6703136301092676" b="-0.0012525413776549618" c="0.00012476021763209021" d="-3.0397945908844522e-07" /> - <laneOffset s="569.31160288547471" a="3.667130330565715" b="-0" c="0.00013684103429500164" d="-1.3909642096599795e-06" /> - <laneOffset s="570.5430603117394" a="3.6673352506577466" b="0.00033069967673766265" c="0.00013281264413961326" d="1.1230733832100551e-07" /> - <laneOffset s="579.1949136383555" a="3.6802107822734875" b="0.0026540708619701317" c="0.00097645164345236044" d="-2.026939714990509e-05" /> - <laneOffset s="580.55258768562953" a="3.6855632924122208" b="0.0051933905201378867" c="0.0008808210851904613" d="-2.5798367802220019e-05" /> - <laneOffset s="590.56211505951978" a="3.7999245284094814" b="0.015072331239930894" c="0.00011533285067162623" d="-3.1028532109085779e-05" /> - <laneOffset s="591.96311480733084" a="3.8211819112045338" b="0.015212785393563903" c="-0.00011494945319261863" d="4.1889067213170669e-05" /> - <laneOffset s="600.57164243340992" a="3.9703461942492679" b="0.022546481936552724" c="0.00096026568512701076" d="4.6321788336810937e-05" /> - <laneOffset s="602.52365790144631" a="4.0183607742849148" b="0.026824897556063789" c="0.0015329009032718579" d="-0.00021202882233358722" /> - <laneOffset s="606.13418666833832" a="4.1252161423995224" b="0.029602092162359706" c="-6.4250955492274985e-05" d="1.2557754504953368e-05" /> - <laneOffset s="610.70161974901953" a="4.2602778933376388" b="0.029801086995967667" c="0.005087770240062869" d="-0.0011829368909510715" /> - <laneOffset s="614.96154725328472" a="4.3881093058882108" b="0.0087479471440880235" c="-0.0012000230582032993" d="-1.0340205177278829e-06" /> - <laneOffset s="618.58944377094588" a="4.4040023161236768" b="-0" c="-0.010517535209143447" d="0.00029633282383087337" /> - <laneOffset s="620.59069718119031" a="4.3642545501218493" b="-0.03853605400754314" c="-0.0087584337686310142" d="0.00029967751925814233" /> - <laneOffset s="628.77922060832543" a="3.6259711997250683" b="-0.12169147873613219" c="-0.011816927333394213" d="0.0010256167721493289" /> - <laneOffset s="630.60022455508044" a="3.3713781893522996" b="-0.15452581533423865" c="-0.0062591278281023165" d="0.0010099314162617412" /> - <laneOffset s="636.02764208294025" a="2.5097902780106276" b="-0.13321938739008218" c="-0.00064445665523493896" d="0.00081978402418799042" /> - <laneOffset s="640.30743577934106" a="1.9920985366084263" b="-0.093688618455166531" c="0.0072688976699662221" d="-0.00022549618585212248" /> - <laneOffset s="644.28055157345091" a="1.7204643574079679" b="-0.046607085177362867" c="0.0041602794292703331" d="0.00034730426400126285" /> - <laneOffset s="648.07708696552413" a="1.6224890507994709" b="9.6072401730560309e-09" c="-0.0011829739057364057" d="2.6175212668008969e-05" /> - <laneOffset s="650.61927930286072" a="1.6152738667366735" b="-0.0055071938602410091" c="-0.00098161284234383767" d="2.6786931618913779e-05" /> - <laneOffset s="660.62880667675086" a="1.4886646091718942" b="-0.017106755765380306" c="-0.00017737534732966884" d="2.6730342646354812e-05" /> - <laneOffset s="670.63833405064111" a="1.326469536251462" b="-0.012623252283448645" c="0.00062813524321069067" d="2.6385561535520552e-05" /> - <laneOffset s="675.10415769995859" a="1.2849736009344579" b="-0.0054343020946495896" c="0.00072537371466648958" d="-4.3035386383620693e-05" /> - <laneOffset s="680.64786142453124" a="1.2698080419002518" b="-0.001359562696547933" c="9.2315660136807325e-06" d="-4.2626015070201551e-05" /> - <laneOffset s="686.36534034109968" a="1.2543696635366433" b="-0.0054342778200726638" c="-0.00096023982175594182" d="2.6392992446944261e-05" /> - <laneOffset s="690.65738879842138" a="1.2154430570733279" b="-0.012218459731192639" c="-0.00062464082533515784" d="2.5904084161618143e-05" /> - <laneOffset s="700.66691617231163" a="1.0565370810533035" b="-0.016937138435077596" c="0.00015124331438808191" d="2.5931941426546958e-05" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <successor id="1" /> - </link> - <width sOffset="0" a="0.15243017090274114" b="-9.991119748585086e-05" c="0.0021032966172328557" d="-0.0004168539264355682" /> - <width sOffset="4.1656891333797947" a="0.15837926100095778" b="-0.0042775074542543215" c="0.00047008324656568659" d="-1.8964280763275635e-05" /> - <width sOffset="9.6894715395251403" a="0.14589821231677247" b="-0.00082015651417161831" c="-0.000119379495390973" d="1.8226295704780037e-05" /> - <width sOffset="10.009527373890165" a="0.14562408526464843" b="-0.00089097165007270287" c="-9.7303822687741688e-05" d="1.8105759341206708e-05" /> - <width sOffset="16.188933622138194" a="0.140675110248766" b="-1.9422743625299201e-05" c="-0.00040570404368318815" d="5.224733830275433e-05" /> - <width sOffset="20.019054747780331" a="0.13758474287589362" b="-0.00082783562702218663" c="0.00020484697690781951" d="5.3154551142582994e-05" /> - <width sOffset="20.467661208249229" a="0.1372593943082645" b="-0.00061195257004412282" c="0.00050831488536667651" d="-2.9764216646417286e-05" /> - <width sOffset="30.028582121670496" a="0.15186105098419267" b="0.0009456152060605392" c="-0.0003474847336210264" d="-2.4963079582147978e-05" /> - <width sOffset="31.212183739080032" a="0.1524520950168311" b="1.8134928284093202e-05" c="4.6796312779788605e-05" d="-6.4295268349918682e-05" /> - <width sOffset="33.086452816984597" a="0.15222714890398237" b="-0.00048403287727424778" c="-0.0003656045424729542" d="1.1175976261502548e-05" /> - <width sOffset="37.594950657212863" a="0.14363759896201245" b="-0.003099180243621812" c="-0.0027645261998779625" d="0.00056292371020081635" /> - <width sOffset="40.038109495560661" a="0.12777355514295552" b="-0.0065272161991825946" c="0.0013684044784874399" d="0.00057702719850605765" /> - <width sOffset="41.341128202407823" a="0.12286840707037028" b="-2.1972627662870774e-05" c="0.00078640085484500471" d="0.00095236141746110072" /> - <width sOffset="41.776848096647178" a="0.12308691424626961" b="0.0012057510299651279" c="-0.0021312961173011852" d="0.00037405449688049911" /> - <width sOffset="45.272226265567795" a="0.11723613694502699" b="1.6600770698997971e-05" c="0.0028085603261909595" d="-0.00075010133826574547" /> - <width sOffset="47.768924618244981" a="0.12311079331773245" b="1.3580578654087336e-05" c="0.00032982737296310293" d="-6.8893982228385907e-06" /> - <width sOffset="50.047636869450827" a="0.12477286062734061" b="0.001409423718743464" c="0.00027362592938023954" d="-1.3927493325050141e-05" /> - <width sOffset="55.795904782415988" a="0.13927055851204351" b="0.003174572914492222" c="0.00022775514290793083" d="-1.3408426049728135e-05" /> - <width sOffset="60.057164243340992" a="0.15589638224741975" b="0.0043851964662720662" c="5.9909056091703411e-05" d="-1.5528291627447418e-05" /> - <width sOffset="60.622134467522358" a="0.15839020985789043" b="0.0044380206426737692" c="-0.0002689657455529839" d="6.2854900771277221e-05" /> - <width sOffset="64.614742901716724" a="0.17582238072576883" b="0.0052961660663205391" c="0.0013118116580150723" d="5.5842670413926954e-05" /> - <width sOffset="65.297189829490577" a="0.18006543698377708" b="0.0071646731968077297" c="0.00071594898940071663" d="3.7917899203844749e-05" /> - <width sOffset="70.066691617231157" a="0.23463786247069107" b="0.01658179903612058" c="0.001263693438872277" d="3.2308222870302735e-05" /> - <width sOffset="71.098982045605709" a="0.25313725647251761" b="0.019294081526180288" c="0.0011267710211794427" d="-4.6002921619939352e-05" /> - <width sOffset="74.362591713834036" a="0.32650789617448739" b="0.02517881133437759" c="0.0019904818839248336" d="-0.0003263156001662022" /> - <width sOffset="78.348014638171492" a="0.43781541137176649" b="0.025495440222871826" c="-0.00042918243740815729" d="-4.83437268221867e-05" /> - <width sOffset="79.840601379605744" a="0.47475267534787724" b="0.023891153525888168" c="0.0074682869172348681" d="-0.0014795204024410967" /> - <width sOffset="80.076218991121323" a="0.48077710592902267" b="0.027164063727194404" c="0.0064260673784370592" d="-0.0014764054713659724" /> - <width sOffset="83.074534784114988" a="0.58019738691666278" b="0.02588062035572667" c="0.0073814220429461981" d="-0.0011637998601267351" /> - <width sOffset="87.054766512537128" a="0.72676221015973708" b="0.029328554597742383" c="0.032036771164520771" d="-0.016901619174460782" /> - <width sOffset="88.024510789027673" a="0.76991746006016415" b="0.043780456649013255" c="-0.016715537987137621" d="-0.0169055499032972" /> - <width sOffset="88.273150131993773" a="0.77950976437135244" b="0.032332795364151706" c="0.0054661746232408798" d="-0.00069727816753127863" /> - <width sOffset="90.085746365011488" a="0.85192271546564813" b="0.045275997491469377" c="0.0016878492390288982" d="-0.00069599963389997482" /> - <width sOffset="92.500052289233508" a="0.9612765013441944" b="0.041255285703393291" c="0.0040452966924860011" d="-0.00084793519557157724" /> - <width sOffset="93.519295807743006" a="1.0066303350914043" b="0.046858919441131346" c="0.0024249947182320855" d="-0.0010343248788691431" /> - <width sOffset="95.011449027977108" a="1.0785139761174638" b="0.04718700788405765" c="-0.0060698463253656011" d="0.0060529125602707592" /> - <width sOffset="96.006217449669947" a="1.1254060286033458" b="0.053080061944556667" c="-0.00087944112970658674" d="-0.00023621120213648702" /> - <width sOffset="97.129608344859207" a="1.1835909428878542" b="0.050209848983630331" c="0.00023978919846982181" d="2.7974032108859798e-05" /> - <width sOffset="100.09527373890165" a="1.3353352031624088" b="0.052370227246288661" c="0.00048820285304537601" d="2.8203838712178017e-05" /> - <width sOffset="103.54342898236821" a="1.5228767937331891" b="0.056743037555489463" c="0.00081962421979069099" d="-3.4512074643647462e-05" /> - <width sOffset="109.51366315052685" a="1.8835162405866517" b="0.062839320906451529" c="-0.010541802310130331" d="0.0070592791002602271" /> - <width sOffset="110.10480111279182" a="1.9184374111144726" b="0.057776471926890671" c="0.0019803273400519471" d="0.0070590168400856959" /> - <width sOffset="111.0062215562718" a="1.9772978637027232" b="0.07855428612059745" c="-0.0021730120154648952" d="0.00027738065286868406" /> - <width sOffset="116.23017537817506" a="2.3679044082500313" b="0.078559756300761688" c="-0.12381726106752919" d="0.24722573210086418" /> - <width sOffset="116.47893607846798" a="2.3835906814583052" b="0.062854402875733045" c="0.039345384951346526" d="-0.023717758125686671" /> - <width sOffset="117.4739755598896" a="2.4617227510463424" b="0.070705714803789427" c="0.090363313231348386" d="-0.21349976115205357" /> - <width sOffset="117.97149431329146" a="2.4929752117480102" b="0.0020810732240972708" c="-0.0005609676337192328" d="7.8388287520821261e-05" /> - <width sOffset="120.11432848668198" a="2.4956300785258052" b="0.00075676749768253634" c="-7.6627559187823443e-05" d="7.1707478739155276e-05" /> - <width sOffset="120.58852400266852" a="2.4959793497443803" b="0.00073246733720863167" c="-0.00073028295627831203" d="9.0279614983649394e-05" /> - <width sOffset="125.66070698584386" a="2.4926873297161016" b="0.00029209162551929214" c="0.0012040181685860859" d="-0.0014727996011642968" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1620678747004908" weight="standard" type="solid"> - <type name="solid"> - <line length="126.3755816350195" space="0" width="0.16206799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.9076125807940039" b="-0.0056025582996763017" c="0.00049340820615001934" d="-7.3892485354212573e-06" /> - <width sOffset="6.4247347117850975" a="3.8900245541991243" b="-0.00017754746762567919" c="0.00042609367000577634" d="-5.6810980211968437e-06" /> - <width sOffset="9.6894715395251403" a="3.893788744206137" b="0.0024229638639589211" c="0.00064565086089673324" d="-4.287167449687421e-05" /> - <width sOffset="10.009527373890165" a="3.894628960094598" b="0.00282307773920839" c="0.00060811477994903449" d="-4.298009341550697e-05" /> - <width sOffset="13.654985143705662" a="3.9109196230291055" b="0.0055432571323172451" c="0.00035320986252202196" d="-5.003689342006641e-05" /> - <width sOffset="20.019054747780331" a="3.9476055947002173" b="0.0039592714398728832" c="-0.00059814130319001959" d="-5.0015411101533757e-05" /> - <width sOffset="20.467661208249229" a="3.9492568594081181" b="0.0033924148663035604" c="-0.00089738449612773957" d="3.2903356690515774e-05" /> - <width sOffset="28.954825316157496" a="3.9335238508710777" b="-0.0047298048213336094" c="-0.00050577314763039505" d="0.00015560788101811094" /> - <width sOffset="30.028582121670496" a="3.9280546990346075" b="-0.0052777335040103956" c="-1.3329267328099728e-05" d="0.00016193991370837231" /> - <width sOffset="32.726843663587111" a="3.9168982587407402" b="-0.0018125985389551317" c="0.0010135182114734006" d="2.8359181052205845e-05" /> - <width sOffset="33.086452816984597" a="3.9163788174371583" b="-0.0010726555660346036" c="0.0010949938300290234" d="-4.7112063551593579e-05" /> - <width sOffset="37.594950657212863" a="3.9294827479500878" b="0.0059280215310532061" c="0.003007862171632843" d="-0.00059885979749091107" /> - <width sOffset="40.038109495560661" a="3.9531865129926751" b="0.0099015641246729229" c="-0.0014282956353916317" d="-0.00059694550197668741" /> - <width sOffset="40.639591238735917" a="3.9584954959660963" b="0.007535487281826854" c="-0.0038919572711995035" d="-0.00033139724286672899" /> - <width sOffset="41.776848096647178" a="3.9615441614790146" b="-0.0026026639276034184" c="-0.00086002321220608258" d="0.00024690967771038387" /> - <width sOffset="45.500021307652837" a="3.9526755155022393" b="0.0012613050560496628" c="0.00088799559952690158" d="-0.00011479388938549159" /> - <width sOffset="50.047636869450827" a="3.9659797347176813" b="0.0022157393544069812" c="-0.00069743408459910011" d="-0.00011336222120677562" /> - <width sOffset="51.003969952572781" a="3.9673617144833626" b="0.00057074670900814875" c="-0.00086932909662274546" d="6.0985833621952182e-05" /> - <width sOffset="55.795904782415988" a="3.9568452099028262" b="-0.0035596029240264606" c="-0.0001869147783354982" d="6.0466766346627189e-05" /> - <width sOffset="59.976925879114219" a="3.9431143946238674" b="-0.0019515449131778597" c="0.0013721622695823594" d="-9.1474948680573536e-05" /> - <width sOffset="60.622134467522358" a="3.942401894318238" b="-0.0002951246016205636" c="0.0014976567364833463" d="-0.00016985814107787535" /> - <width sOffset="65.297189829490577" a="3.956399289617516" b="0.002570800432348112" c="-0.00017444025795876724" d="-0.00015193336992875338" /> - <width sOffset="65.493725237126156" a="3.9568966515815891" b="0.0024846272470241482" c="0.0021210186428536476" d="-0.00040743806267755676" /> - <width sOffset="70.066691617231157" a="3.9736502656901855" b="-0.0036777394587655683" c="-0.0034666238840807082" d="-0.00040028257108680113" /> - <width sOffset="70.865462408535947" a="3.9682967668075024" b="-0.0099819978678433001" c="-0.0048709706460640127" d="0.001417979562533667" /> - <width sOffset="71.098982045605709" a="3.9657182101129411" b="-0.012024959141694519" c="-0.0036406156022529583" d="0.001496290707022343" /> - <width sOffset="72.439675297605049" a="3.9466583951648371" b="-0.013718295801435692" c="0.0015948480699868647" d="-0.00019045958214962465" /> - <width sOffset="74.362591713834036" a="3.9248221773569734" b="-0.0096975110943364855" c="-0.00081798310348614846" d="8.985309639665808e-05" /> - <width sOffset="78.348014638171492" a="3.8788689381038117" b="-0.011935957502278813" c="-0.0012255280319614945" d="-0.00018811877694729066" /> - <width sOffset="79.5242330364417" a="3.8628280167904321" b="-0.015599715922234841" c="-0.0011468173888565323" d="0.00039878501170963768" /> - <width sOffset="80.076218991121323" a="3.853934839807498" b="-0.016501254490558236" c="-0.00049002986406053483" d="0.00039567008071058317" /> - <width sOffset="81.66493996815781" a="3.8280687300508602" b="-0.015062241322886895" c="0.0031909172458192679" d="-0.00064239951457139319" /> - <width sOffset="85.535519963377141" a="3.7803228878140276" b="-0.019232952432794069" c="0.00048978803276195342" d="2.6841927442556607e-05" /> - <width sOffset="88.024510789027673" a="3.7359004081327196" b="-0.016295933305137782" c="0.00027177974434575006" d="3.0772656186646682e-05" /> - <width sOffset="90.085746365011488" a="3.7037348523514777" b="-0.01478329852570214" c="0.00049438447038556703" d="3.2472121075240373e-05" /> - <width sOffset="91.963636482683029" a="3.677931915744979" b="-0.012582963094681095" c="0.00018129015113083947" d="0.00011542897809235558" /> - <width sOffset="93.519295807743006" a="3.6592304163996854" b="-0.011180870989911787" c="-0.00025246073276789013" d="0.00030181866138955188" /> - <width sOffset="97.129608344859207" a="3.6297763275489494" b="-0.0012017590897580557" c="0.001101215489041961" d="3.7633427144260863e-05" /> - <width sOffset="97.909914468914906" a="3.6295269731212256" b="0.00058555374798256103" c="0.0024419970212515405" d="-0.00020350082656988585" /> - <width sOffset="100.09527373890165" a="3.6403451927747286" b="0.0083432006284336613" c="0.001116508467566927" d="-0.00020246477607749149" /> - <width sOffset="103.54342898236821" a="3.6740882696854529" b="0.0088212080363601862" c="-0.001017549193901396" d="-0.00013974886272182408" /> - <width sOffset="104.71690111786771" a="3.6828126865816877" b="0.0058557587829625151" c="-0.00065210283998384647" d="3.67801835924886e-05" /> - <width sOffset="110.10480111279182" a="3.7011854417111794" b="0.0020319563129044646" c="-6.5807918123437684e-05" d="3.7644783489110471e-05" /> - <width sOffset="116.43970746658842" a="3.7209870512597458" b="0.0057303550834652654" c="0.00048891336614549641" d="1.2709068535673874e-05" /> - <width sOffset="120.11432848668198" a="3.7492762495379472" b="0.0098383232912340312" c="0.00062269901892737767" d="1.1403891109209464e-05" /> - <width sOffset="120.58852400266852" a="3.7540827752698784" b="0.010436578340730992" c="0.0013945875327493287" d="-7.1682451250894157e-06" /> - <width sOffset="125.66070698584386" a="3.8419622193954712" b="0.024030531453242139" c="0.00072495463559984585" d="0.0015559109710228569" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="45.500021307652837" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="45.500021307652837" color="standard" width="0.30074322676080184" weight="bold" type="solid"> - <type name="solid"> - <line length="80.875560327366657" space="0" width="0.30074299999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="2.4932066336497991" b="-0.00012794888538194779" c="1.4272126046751177e-05" d="2.8954954222860199e-06" /> - <width sOffset="6.4247347117850975" a="2.4937415810168639" b="0.00041399433279829282" c="-5.0268526454287649e-06" d="1.1873449080468031e-06" /> - <width sOffset="10.009527373890165" a="2.4952157637890831" b="0.00042372866036412271" c="7.9749863577969685e-06" d="1.1688378472421221e-06" /> - <width sOffset="13.654985143705662" a="2.4969230565051381" b="0.00052847294137481609" c="-0.00019438359564642149" d="8.2256378518005307e-06" /> - <width sOffset="20.019054747780331" a="2.4945336787213437" b="-0.00094621942314344638" c="-3.3336781235243103e-05" d="8.0571350741381886e-06" /> - <width sOffset="28.954825316157496" a="2.489165396909458" b="0.00038803917871387927" c="0.00062881056544881173" d="-0.00011464738925270735" /> - <width sOffset="30.028582121670496" a="2.4901651135378398" b="0.0013418690396476147" c="0.00025052600249818541" d="-0.00011447771975575501" /> - <width sOffset="32.726843663587111" a="2.4933608953129047" b="0.00019343366465460264" c="-0.00039212523835945555" d="1.9103012874507135e-05" /> - <width sOffset="32.976954897898118" a="2.4933850444875629" b="8.6881288962909614e-07" c="0.00017183078363764489" d="-2.1811813050178949e-05" /> - <width sOffset="40.038109495560661" a="2.4942793935978238" b="-0.00083508846204363588" c="-0.00033489307547399447" d="-1.2153761396737502e-05" /> - <width sOffset="40.639591238735917" a="2.4936533007108985" b="-0.0012511435775398368" c="0.0010296823002324553" d="-0.00027770202050655533" /> - <width sOffset="41.890290193335098" a="2.4931558779799392" b="2.1317188989918197e-05" c="0.0013602756791530589" d="-0.00027599152831941215" /> - <width sOffset="45.500021307652837" a="2.4979760718281279" b="-0.00094686418103834497" c="-0.00061864626100001548" d="8.5712038776471341e-05" /> - <width sOffset="50.047636869450827" a="2.4889370702075535" b="-0.0012558124374414887" c="0.00052239543576700824" d="8.7816011795134789e-05" /> - <width sOffset="51.003969952572781" a="2.4882906710495112" b="-1.5701910974140135e-05" c="0.00062099839216453651" d="-8.6532043033597577e-05" /> - <width sOffset="55.757736287569067" a="2.4929536535634798" b="2.2030848397234983e-05" c="0.00034737981750443707" d="-3.5888035631409016e-05" /> - <width sOffset="59.976925879114219" a="2.4965350245098232" b="0.0010367643231846552" c="-0.00090751403209374292" d="0.00011605367762044651" /> - <width sOffset="60.057164243340992" a="2.4966124299830117" b="0.00089337096893188817" c="-0.00088537985868675445" d="0.00011240674885544687" /> - <width sOffset="65.493725237126156" a="2.4933628082975505" b="0.0012334752736447453" c="-0.0014371011810664139" d="0.00036791144166149493" /> - <width sOffset="67.49573260186196" a="2.493024448040329" b="-9.6894886189398052e-05" c="-0.0019107524710431729" d="0.00046457512676620886" /> - <width sOffset="70.066691617231157" a="2.4880403908847679" b="-0.00070953927829727273" c="0.0016837996829324737" d="0.00047060680474034721" /> - <width sOffset="70.865462408535947" a="2.4887877961089382" b="0.0028811912551832556" c="0.0032566652762135882" d="-0.0013476553288783795" /> - <width sOffset="72.439675297605049" a="2.4961365190063938" b="0.0031154992837627692" c="-0.0023250870004526843" d="0.00033909496029361781" /> - <width sOffset="76.194300989012731" a="2.4930050190547419" b="-3.2807408047643566e-06" c="-0.0015799623658876033" d="0.00034129910004289854" /> - <width sOffset="79.5242330364417" a="2.488076816444345" b="0.0008278160243346197" c="0.0010870291244663582" d="-0.00024560468861893354" /> - <width sOffset="80.076218991121323" a="2.4888236578075844" b="0.001803366874200382" c="0.00068006807202668532" d="-0.00024996304130978043" /> - <width sOffset="81.66493996815781" a="2.4924028713862278" b="0.0020714977957366713" c="-0.0023064155478579778" d="0.00078810655397120095" /> - <width sOffset="82.668826789886154" a="2.4929553730886802" b="-0.00017652779344543533" c="-0.0023232562652798945" d="0.00071751527308439316" /> - <width sOffset="85.535519963377141" a="2.4902603932310519" b="0.004192816782961498" c="-0.00091081477665859174" d="4.827383107040915e-05" /> - <width sOffset="90.085746365011488" a="2.4950285381009283" b="-0.0010975447647237624" c="-0.00025366223116205086" d="5.0755245192203371e-05" /> - <width sOffset="91.963636482683029" a="2.4924090548162066" b="-0.0015132836133974115" c="0.00052830763399264896" d="-3.2201611824773155e-05" /> - <width sOffset="97.909914468914906" a="2.4953202853519043" b="0.0013538692862360407" c="-0.001298816323751503" d="0.00020893264188947375" /> - <width sOffset="100.09527373890165" a="2.4942566895458689" b="-0.0013294328135140272" c="8.0226116210452801e-05" d="0.00020306493203081665" /> - <width sOffset="101.42342993046847" a="2.4931082678307241" b="-4.1708256143985906e-05" c="-0.00075387210773578421" d="0.00016757123191337269" /> - <width sOffset="104.71690111786771" a="2.4907800236788447" b="0.00044549117203725955" c="4.4380421663019746e-05" d="-8.9578144007882579e-06" /> - <width sOffset="110.10480111279182" a="2.4930675529246136" b="0.00014360400404916235" c="-9.5308134737756654e-05" d="-9.5601541238141817e-06" /> - <width sOffset="110.74083444763598" a="2.4931178742307942" b="1.07633540521292e-05" c="0.00018052670785618607" d="-2.2203377876259228e-05" /> - <width sOffset="116.43970746658842" a="2.4949327351840216" b="-9.4946623660474225e-05" c="-3.8368735401180133e-05" d="2.7323370771825765e-06" /> - <width sOffset="120.11432848668198" a="2.4942013280484097" b="-0.00026624481870225584" c="-9.3217705236720353e-06" d="3.2776024641766718e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="126.3755816350195"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="2.4929733837289425" b="-4.5842152683252257e-05" c="0.00021528500479174172" d="-3.9689353762500893e-05" /> - <width sOffset="3.7482742255526489" a="2.4937361093234576" b="-0.00010480151530809986" c="-0.00022501373743303156" d="-3.4086523575991168e-05" /> - <width sOffset="5.1585021555728758" a="2.4930452224410713" b="-0.00094281081615021564" c="0.00061019568969551664" d="-9.5795675768451844e-05" /> - <width sOffset="8.3891117886736879" a="2.4931379062095869" b="3.8531011620213107e-07" c="0.00118801066047911" d="-0.00025174577944723906" /> - <width sOffset="8.7213663906828742" a="2.4932599487463425" b="0.00070645632193788027" c="-0.00012393341992129533" d="4.2799969467504181e-06" /> - <width sOffset="13.757801599442814" a="2.4942210955626933" b="-0.00021621386345356541" c="-3.326108780240351e-05" d="5.107032009792932e-06" /> - <width sOffset="23.295946210321006" a="2.493564446289807" b="0.00054314314249695461" c="-0.00033521763517486806" d="4.5174254341992276e-05" /> - <width sOffset="28.551194149742827" a="2.4937173594940707" b="0.00076265721792598273" c="-0.00012304327419573511" d="4.4872792738823533e-06" /> - <width sOffset="33.776856347223145" a="2.4949830734778882" b="-0.00015569820780041155" c="-3.8232440693333845e-05" d="5.5090030666886717e-06" /> - <width sOffset="39.923558738106323" a="2.4938609268028573" b="-1.2824371293828133e-06" c="0.007580951467934062" d="0.0003257762815806323" /> - <width sOffset="39.931896193253039" a="2.4938614432752813" b="0.00012519718551229922" c="-2.6136667601703366e-05" d="1.1707634158518939e-06" /> - <width sOffset="43.78638372111331" a="2.4940227452720842" b="-2.4107376592027302e-05" c="-6.4594362013897062e-06" d="1.2256855384160353e-06" /> - <width sOffset="48.840812369196783" a="2.4938941442188796" b="4.5337854188073901e-06" c="-1.7706914070792672e-05" d="-0.00010253360778457874" /> - <width sOffset="49.641656711541316" a="2.4938337551127967" b="-0.00022110747737021401" c="0.00015375735535436046" d="-2.0483137572840849e-05" /> - <width sOffset="53.795911095003476" a="2.4941002305686446" b="-4.0966289271693324e-06" c="-0.0001015796288319253" d="-2.0891210594968798e-05" /> - <width sOffset="55.490103522288535" a="2.4937001371031497" b="-0.00052817887681262232" c="0.00051505889479995797" d="-0.00010889230832913338" /> - <width sOffset="57.966262799224239" a="2.4938970673412006" b="1.9581456917064366e-05" c="1.1260901175216614e-05" d="-3.8439303349918077e-07" /> - <width sOffset="63.805438468893641" a="2.4943188285635882" b="0.00011177145433882013" c="-5.8496471972536252e-07" d="-7.7756965151215519e-07" /> - <width sOffset="73.814965842783806" a="2.4945992057781465" b="-0.00013365458541430425" c="-2.3542901444439587e-05" d="-1.1331964416848292e-06" /> - <width sOffset="76.82588110862298" a="2.4939524208791299" b="-0.00030624530162744537" c="-6.0550072234378562e-05" d="0.00037749616859179992" /> - <width sOffset="77.321369795212235" a="2.4938317354647781" b="-8.8212888940313559e-05" c="-0.0011611082018897381" d="0.00033493527641988732" /> - <width sOffset="79.797382288533868" a="2.4915791474090536" b="0.00032205094903200397" c="0.00097487236310610887" d="-0.00017247596265914869" /> - <width sOffset="83.515957484484915" a="2.4973883939506356" b="0.00041743320708421093" c="-0.0006277974427432774" d="6.3140477940925235e-05" /> - <width sOffset="83.824493216673972" a="2.4974592787629897" b="4.8069160201678722e-05" c="-0.000557333835175203" d="6.3474772106072663e-05" /> - <width sOffset="88.656316317089619" a="2.491840087603225" b="-0.00089206378161462568" c="0.00061210260093159941" d="-7.0015809233282827e-05" /> - <width sOffset="93.612599580115102" a="2.4939304976092451" b="1.568272708988433e-05" c="0.0006991552892300335" d="-0.00014349790053080913" /> - <width sOffset="93.834020590564137" a="2.4939666900000521" b="0.00030419213999885453" c="0.00062239081345914315" d="-0.00014968322931232836" /> - <width sOffset="96.643805047134634" a="2.4964146971158647" b="0.00025656290352503875" c="-0.00075528001521645797" d="0.00013376917953460468" /> - <width sOffset="100.178673779831" a="2.4937926474878607" b="-6.8611650818048431e-05" c="0.00071616710666357649" d="-0.00012784957215171403" /> - <width sOffset="103.18571592926295" a="2.4965858243508259" b="0.0007703141874816806" c="-0.00021721664607066363" d="1.7462087759629729e-05" /> - <width sOffset="103.8435479644543" a="2.4970035336912999" b="0.00050719983877569718" c="-0.00021358176406589691" d="1.1136467834139133e-05" /> - <width sOffset="113.85307533834447" a="2.4918497996591529" b="-0.00042119572877305934" c="0.00012827361911340918" d="7.8882829798520293e-06" /> - <width sOffset="116.70003233238106" a="2.4918723748225302" b="0.00050099071006781161" c="0.00018470658873915127" d="-2.2733542701539775e-05" /> - <width sOffset="123.86260271223463" a="2.4965830471051516" b="-0.00035191829552245341" c="-0.0003039352601184317" d="-2.4442060698187688e-05" /> - <width sOffset="123.89537498644842" a="2.4965711866488127" b="-0.00037191834880931883" c="-0.00036219855566223789" d="8.5459035411429902e-05" /> - <width sOffset="126.22841389562205" a="2.4948172497279857" b="-0.0006664863181447666" c="0.00013446599012526642" d="-3.7977653785983948e-05" /> - <width sOffset="129.60371757521483" a="2.4926392005867961" b="-0.0010567604081482985" c="0.0013680777607892425" d="-0.00030754811967629149" /> - <width sOffset="132.0835029783787" a="2.4937416195362414" b="5.4668269728880628e-05" c="0.00074619516660101711" d="-0.00036736529701104817" /> - <width sOffset="133.8721300861248" a="2.4941244982695596" b="-0.00080181269579071221" c="-0.0012015962796419171" d="-0.00035867219364055177" /> - <width sOffset="134.57011835248301" a="2.4928574726594244" b="-0.0030034348610757091" c="0.00082291881238918095" d="-5.4441224911181282e-05" /> - <width sOffset="142.25419998443937" a="2.4936677769538513" b="-1.4862558068799974e-07" c="0.00047769270243522798" d="-1.8428133378364482e-05" /> - <width sOffset="143.88165746001499" a="2.4948533257767056" b="0.0014082732454486165" c="0.00039054567349758134" d="-1.8224669186348492e-05" /> - <width sOffset="143.98980335240952" a="2.495010169332788" b="0.0014921056245037394" c="-0.00030527091980626052" d="1.465746893269412e-05" /> - <width sOffset="153.89118483390513" a="2.4940842048203038" b="-0.00024216357380013598" c="0.00012943640006877257" d="1.5329149505383718e-05" /> - <width sOffset="156.04216108811562" a="2.4943147344259109" b="0.00052743574714419778" c="-0.00046904264396276666" d="7.5029034433428578e-05" /> - <width sOffset="159.25567947400367" a="2.493655837662915" b="-0.00016271148974712334" c="0.00034977135363913921" d="-0.0001282044380741685" /> - <width sOffset="160.74378626473435" a="2.493765781676351" b="2.6571263311868376e-05" c="0.00044485244930200725" d="-0.00013251246121855997" /> - <width sOffset="162.84994702450041" a="2.494557041562615" b="0.00013699150234647121" c="-0.0003632495651783084" d="6.986329886525224e-05" /> - <width sOffset="163.90071220779527" a="2.4943809733484739" b="-0.0003949787189658242" c="-0.00014514003413935745" d="6.8311293876678719e-05" /> - <width sOffset="166.8689193208358" a="2.4937162594322757" b="0.00054892935851076456" c="-0.00027839292790396723" d="2.5755457634416317e-05" /> - <width sOffset="173.91023958168546" a="2.4927701602090333" b="0.00045930335870098373" c="0.00029164275891488953" d="1.5084367674118758e-05" /> - <width sOffset="174.73309841524912" a="2.4933539767033794" b="0.0009699057244497855" c="-0.00059453629312635706" d="-3.3658748462705112e-05" /> - <width sOffset="175.4781171460873" a="2.4937326568083655" b="2.7977216606013792e-05" c="2.8270731638454399e-05" d="-1.7699053957993564e-06" /> - <width sOffset="183.91976695557565" a="2.4949187322889936" b="0.00012690236670609743" c="-1.4112658008275113e-05" d="-2.3262509672668753e-06" /> - <width sOffset="186.350154720744" a="2.4951103986754704" b="1.708191320215854e-05" c="-1.7322661016037894e-05" d="4.7749341916099125e-07" /> - <width sOffset="193.92929432946579" a="2.4944526799701534" b="-0.00016321334414498589" c="-2.1228483152572205e-05" d="3.220127062192631e-06" /> - <width sOffset="197.65874720744654" a="2.4937157557152885" b="-0.00018719010815695925" c="5.7026812892687251e-05" d="-3.5902058106180567e-06" /> - <width sOffset="203.93882170335593" a="2.493900058273383" b="0.00010428916199171304" c="-1.3727527783769758e-05" d="-6.7342304427911939e-06" /> - <width sOffset="207.74683687536469" a="2.4937262665155977" b="-0.00029321891997098181" c="0.00015994302329431359" d="-1.5815517672253419e-05" /> - <width sOffset="213.94834907724612" a="2.4942870357357707" b="-0.00013417699001046571" c="-0.00017623078386259586" d="-1.0418550936135359e-05" /> - <width sOffset="214.30497800477514" a="2.4942162980098108" b="-0.00026385020584748613" c="-2.0804700604546518e-05" d="4.8943217308032995e-06" /> - <width sOffset="217.31358358048351" a="2.4933674458948851" b="-0.00025613057602450265" c="0.00059596156872033373" d="-0.00012627900881766191" /> - <width sOffset="217.56263270835734" a="2.4933386709126375" b="1.721929794222532e-05" c="0.0008225606562330904" d="-0.00014188569718425414" /> - <width sOffset="221.26242088248301" a="2.4974762427862602" b="0.00027724129472435008" c="-0.00065090526157428167" d="6.4054123371228158e-05" /> - <width sOffset="223.95787645113631" a="2.4947488166382574" b="-0.0018355791335607765" c="-0.00011545391175407979" d="6.5550040133335682e-05" /> - <width sOffset="227.51110676657038" a="2.4897095720987226" b="-0.0001732524001246535" c="0.00034106299885781807" d="-3.4198039504598235e-05" /> - <width sOffset="233.96740382502645" a="2.4936043227406817" b="-4.5754142190001373e-05" c="-0.00037149958736787793" d="-2.1645653311193586e-05" /> - <width sOffset="234.88458632866707" a="2.4932331427406469" b="-0.00078184649809876546" c="0.0010961803096479618" d="-0.00042904049630128143" /> - <width sOffset="235.88207015561039" a="2.4931181243766374" b="0.00012434536546004384" c="0.0008176856712505486" d="-0.00047625120165004033" /> - <width sOffset="237.90136049990872" a="2.4927820335292354" b="-0.0023991557529648303" c="0.00063392794361550665" d="-4.1244252363016809e-05" /> - <width sOffset="243.97693119891659" a="2.4923560593169944" b="0.00073649959035039286" c="-0.00013231482039017704" d="-3.5082528962494832e-05" /> - <width sOffset="245.63510841513596" a="2.4930535499127617" b="8.3130698954741468e-06" c="0.00018738219216808498" d="-3.5877239505052749e-06" /> - <width sOffset="247.01057584881625" a="2.4934101584408253" b="0.00050342631627977945" c="1.2702316650276463e-05" d="-2.4810935231961582e-06" /> - <width sOffset="253.77401253007059" a="2.496628487711213" b="0.00033476295487903191" c="-0.00020285261608106575" d="1.0868910290711365e-05" /> - <width sOffset="253.98645857280678" a="2.4966905555793857" b="0.00025004413382080821" c="-0.00019516126637226201" d="1.0564137886302449e-05" /> - <width sOffset="263.99598594669698" a="2.4902344085526464" b="-0.00048161679020527169" c="0.00012583403465205473" d="8.3431886030310957e-06" /> - <width sOffset="265.87417218614263" a="2.4898290100483069" b="7.935659908158213e-05" c="-6.7774922671910343e-05" d="6.0781158532165263e-06" /> - <width sOffset="274.00551332058711" a="2.4892608956343807" b="0.00018278607949259382" c="8.0012240189114453e-05" d="6.1530074054543865e-06" /> - <width sOffset="276.65823158401719" a="2.4904236727600928" b="0.00073718049646641966" c="-6.0733971447575447e-05" d="1.9108191717357465e-05" /> - <width sOffset="281.09399942848785" a="2.494166361522439" b="0.0013262973268265768" c="0.0005183556876552953" d="-0.00020310043758651523" /> - <width sOffset="283.20187093702123" a="2.4973630001592815" b="0.00080435144941584831" c="-0.0026512656781682432" d="0.00065369667495061249" /> - <width sOffset="284.01504069447725" a="2.4966154337456508" b="-0.0022107456072671672" c="-0.0010395152823516544" d="0.00064737456234226405" /> - <width sOffset="285.70612132548638" a="2.4930348783426903" b="-0.00017255852556438515" c="0.00056040449086905745" d="0.00076546414754535841" /> - <width sOffset="286.71415680607254" a="2.4942144455780917" b="0.0032907026470510711" c="-0.0012008821704517186" d="0.00011235298670319523" /> - <width sOffset="289.26832042526519" a="2.4966572887724152" b="-0.00064490745879215846" c="-0.00030255618348826039" d="6.0780157120030444e-05" /> - <width sOffset="293.17830902199216" a="2.4931434172651294" b="-0.00022326681314116439" c="0.00036948562406548735" d="0.00017049401820374001" /> - <width sOffset="293.42840789088314" a="2.4931133567390193" b="-6.4580216077753951e-06" c="-0.00059901227961443014" d="7.3616158932499791e-05" /> - <width sOffset="296.71180461637027" a="2.4892401973052425" b="-0.0015591480751375661" c="0.00089751493339760994" d="-7.6864989539555888e-05" /> - <width sOffset="303.7903292254486" a="2.4959122299698651" b="-0.00040706364295575075" c="-0.00055472301236284113" d="0.00012594032566059826" /> - <width sOffset="304.03409544225764" a="2.4957818631265183" b="-0.00065505823696937991" c="-0.00045740011265245454" d="0.00012545327331346423" /> - <width sOffset="307.03684442678929" a="2.4930872972655735" b="-8.5248170317050835e-06" c="0.00021889761592899272" d="0.00011188806259947322" /> - <width sOffset="307.75301547089089" a="2.4932345640991409" b="0.00047717393690998059" c="8.6539963264513624e-05" d="-1.1552512317102209e-05" /> - <width sOffset="314.04362281614777" a="2.4967850448019897" b="0.00019449272600870465" c="-0.00013354465287391149" d="-9.689021826028191e-06" /> - <width sOffset="315.69455764067635" a="2.4966985538911142" b="-0.00032567909087414821" c="-0.00032937794464141479" d="3.544177466908693e-05" /> - <width sOffset="321.61158586958391" a="2.4905817797554453" b="-0.00050097664779543034" c="0.00020188659028448516" d="-1.7333558106555035e-05" /> - <width sOffset="324.05315019003791" a="2.4903098212585415" b="0.00017487323445303758" c="6.4351211733279002e-05" d="-1.8549708015893873e-05" /> - <width sOffset="328.87974314690729" a="2.4905672541087576" b="-0.00050033452486957473" c="0.0003757383495785371" d="-3.5827710058425693e-05" /> - <width sOffset="334.0626775639281" a="2.4930792138626017" b="0.00050722110776450433" c="-0.00010643435951485317" d="-9.006399136073952e-05" /> - <width sOffset="335.09945067553485" a="2.4933903112971332" b="-3.9044000150721681e-06" c="0.00018462491966709642" d="-2.8302243239595194e-05" /> - <width sOffset="342.49899004240842" a="2.4920036158816639" b="-0.0019205393744513716" c="0.0004263673094668536" d="-1.53243536624677e-05" /> - <width sOffset="344.0722049378183" a="2.489977787334805" b="-0.00069278813084677759" c="0.00034736308758285042" d="-2.0474921172890216e-05" /> - <width sOffset="354.08173231170844" a="2.4973123364085406" b="0.00010690627562343936" c="-0.00026623775028218914" d="-1.9781030371525427e-05" /> - <width sOffset="356.76083618443818" a="2.4953074220930151" b="-0.00174559172610971" c="0.00041717898668119219" d="7.0358208526480347e-06" /> - <width sOffset="358.74509097175445" a="2.4935412360755644" b="-6.9072060572975338e-06" c="-0.00010969499904642325" d="6.5810462317696182e-06" /> - <width sOffset="364.09125968559857" a="2.4913746537619694" b="-0.00061551423814831807" c="4.4487597494747536e-06" d="6.93941067996163e-06" /> - <width sOffset="374.10078705948877" a="2.4926186351158042" b="0.0015593376821203119" c="0.00022738320439639296" d="6.9476496578625915e-06" /> - <width sOffset="374.54305065919812" a="2.4933533499154512" b="0.0017645411312987834" c="-0.00073263840017627989" d="7.8120947198305742e-05" /> - <width sOffset="379.50726378850186" a="2.4936151359733087" b="0.00026609486223341371" c="-0.00017505504014153541" d="3.6792200581979943e-05" /> - <width sOffset="380.99652998559685" a="2.4937446920619415" b="-1.0506456745127367e-05" c="-0.00027131793261976064" d="2.8483520833892431e-05" /> - <width sOffset="384.11031443337896" a="2.4919412950222295" b="-0.00087165852188386163" c="-4.2219591512846269e-06" d="2.8537143386234965e-05" /> - <width sOffset="387.79754456166921" a="2.4901004660798636" b="0.00026115121999598263" c="0.00014983119628485313" d="-9.3358060167630829e-06" /> - <width sOffset="394.1198418072691" a="2.495381246706124" b="0.0010362090400512971" c="-2.3341151175388091e-05" d="-1.0533107392282627e-05" /> - <width sOffset="397.30962371787444" a="2.4981071850750953" b="0.0005657887801851242" c="-0.00049672508983382522" d="4.6701888803165539e-05" /> - <width sOffset="403.76532034019584" a="2.493623258941053" b="-8.5777907383836893e-06" c="-0.00011965538356240179" d="4.9836189376377226e-05" /> - <width sOffset="404.12936918115923" a="2.4936066825862837" b="-7.5883994585804887e-05" c="-5.1720694677912361e-05" d="4.8020674675069607e-05" /> - <width sOffset="407.01056559212549" a="2.4941072391902921" b="0.00082198208248158468" c="-9.1960825027310067e-05" d="2.6382805400592647e-06" /> - <width sOffset="414.13889655504948" a="2.4962494031903755" b="-8.6894653285809684e-05" c="-3.6662007134141336e-05" d="2.8695972762550682e-06" /> - <width sOffset="420.14254070273256" a="2.4950272457280618" b="-0.00021681286176805994" c="-6.0433174119366476e-05" d="9.3601531570045045e-06" /> - <width sOffset="424.14842392893962" a="2.4937906384587611" b="-0.00025037938576348475" c="5.0070418244324197e-05" d="9.1240009854309609e-06" /> - <width sOffset="425.8577991770141" a="2.493554522024771" b="7.7888154950255667e-07" c="-0.00017157995492602605" d="1.7337394942852504e-05" /> - <width sOffset="429.59513631349495" a="2.4920659035784052" b="-0.00055523537806865305" c="-4.9853960004307262e-05" d="1.3513821422868531e-05" /> - <width sOffset="434.15795130282976" a="2.4897782827456698" b="-0.0001661400484053404" c="0.00013609894314451607" d="1.3362127794251721e-05" /> - <width sOffset="434.49424619922939" a="2.4897383109062967" b="-7.0067748686694338e-05" c="0.00144426613516701" d="-0.00027522423143493292" /> - <width sOffset="437.82058992593596" a="2.4953559137547798" b="0.00040247624462430836" c="-0.00018805725799176699" d="1.1116335128934679e-05" /> - <width sOffset="442.93602125045521" a="2.493981757923065" b="-0.00064884704356502152" c="-3.4208486000287007e-05" d="1.2203319879718083e-05" /> - <width sOffset="444.1674786767199" a="2.4931536432487311" b="-0.0006775810895739301" c="9.1458045345665256e-06" d="1.0949333380570962e-05" /> - <width sOffset="452.819332003336" a="2.4950670409974141" b="0.0019394980232927445" c="-0.00054738211562123851" d="3.1331037868248829e-05" /> - <width sOffset="454.17700605061003" a="2.4967696774412147" b="0.00062642055405266045" c="-0.00041380128483255131" d="3.7213938650051678e-05" /> - <width sOffset="460.73564318679399" a="2.4935771459456499" b="8.2882288465410681e-07" c="-6.6641209227284574e-06" d="4.0485730649176045e-06" /> - <width sOffset="461.72518181422055" a="2.4935753635161304" b="-4.6706062719129027e-07" c="-0.00045367263138654842" d="5.4801968484929182e-05" /> - <width sOffset="464.18653342450028" a="2.4916429297818832" b="-0.0012377504198927709" c="-5.6322858823666867e-05" d="5.8273244254197213e-05" /> - <width sOffset="465.58753317231134" a="2.4899585358191172" b="-0.0010524308191577885" c="0.00028846894957397132" d="-1.4644355068057696e-05" /> - <width sOffset="474.19606079839042" a="2.492933785640044" b="0.00065841843711437684" c="-9.4194958501917945e-05" d="-1.461645463483329e-05" /> - <width sOffset="476.14807626642681" a="2.4937513959133506" b="0.00012359635046572948" c="-0.00048116227122888574" d="0.0002437341560347563" /> - <width sOffset="477.13631443459388" a="2.4936388630422499" b="-0.00011330643033051133" c="-0.0010352996776849342" d="0.00024815972828981427" /> - <width sOffset="479.75860503331882" a="2.490697399018976" b="-0.00042367704276259632" c="0.00021748446117195316" d="2.3573151451247098e-05" /> - <width sOffset="484.20558817228056" a="2.4951872835144142" b="0.0029091462375420291" c="0.00052629963887982874" d="2.0567395897224395e-05" /> - <width sOffset="484.32603811400003" a="2.4955453616052674" b="0.0030368269461687608" c="-0.0044462194218727533" d="0.0012160620405885518" /> - <width sOffset="486.30109487932435" a="2.4935682623685373" b="-0.00029522054208985099" c="-0.0038108696240632938" d="0.001488293892341618" /> - <width sOffset="488.58596561826522" a="2.4907516407396466" b="0.0055996048702743832" c="-0.0024390750218470031" d="0.00030639102190836508" /> - <width sOffset="492.21386213592638" a="2.4935940951972597" b="0" c="-4.8934517789272006e-05" d="4.4457208518006164e-06" /> - <width sOffset="494.21511554617081" a="2.4934337443855927" b="-0.00014244520229195895" c="-3.7163172825642465e-05" d="6.7287078065243365e-06" /> - <width sOffset="502.0741483821883" a="2.4932850733578436" b="0.00052020534980579125" c="-0.0084257307365222783" d="0.00043711644870592027" /> - <width sOffset="502.40363897330593" a="2.4925573806956001" b="-0.004889827256635379" c="0.0024265892605644865" d="-0.00028882280417786221" /> - <width sOffset="504.22464292006094" a="2.4899556193983519" b="0.0010745727487779244" c="0.00081448940331936993" d="-0.00029288941794879337" /> - <width sOffset="506.56893616434883" a="2.4931774735299044" b="6.4470134620298047e-05" c="0.0026593396011635323" d="-0.00088488174081208194" /> - <width sOffset="509.65206044792075" a="2.4927216761066129" b="-0.0087715234157186017" c="0.0053040256904006589" d="-0.000694734348738335" /> - <width sOffset="513.93185414432151" a="2.4978720545162094" b="-0.0015468365388309896" c="-0.0010037681966325301" d="0.00035054586133580418" /> - <width sOffset="514.23417029395114" a="2.4973223670533988" b="-0.0020576327373645897" c="-0.00068080930898764807" d="0.00034863180341799968" /> - <width sOffset="516.41306735802209" a="2.4932132189924268" b="-5.8974428994836015e-05" c="-0.0013248504938369746" d="0.00042377622884165293" /> - <width sOffset="517.90496993843135" a="2.4915836250228356" b="-0.0011823807118362881" c="0.0009926989222721087" d="-0.00014902422101168545" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1620678747004908" weight="standard" type="solid"> - <type name="solid"> - <line length="521.70150533050469" space="0" width="0.16206799999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link /> - <width sOffset="0" a="0" b="0" c="0.003367991492344645" d="3.2954534333379765e-05" /> - <width sOffset="3.7482742255526489" a="0.049054236023605924" b="0.026637301494807957" c="0.0037495145245922141" d="2.5613499276607166e-05" /> - <width sOffset="5.1585021555728758" a="0.094147557765785539" b="0.037365457695930158" c="0.0028784584109074148" d="8.7322651469078202e-05" /> - <width sOffset="8.7213663906828742" a="0.26776410809177786" b="0.061201992366223007" c="0.0048728276655416215" d="-0.00016870312491952576" /> - <width sOffset="13.757801599442814" a="0.67805429950426555" b="0.097447545759355034" c="0.0023186360003117409" d="-0.00015969048448002742" /> - <width sOffset="16.251559602642203" a="0.93300757670292778" b="0.1060325164864869" c="0.0093599027522809075" d="-0.0015858443021211587" /> - <width sOffset="19.170073889083994" a="1.2827674061738876" b="0.12014317627050189" c="-0.00083861227126504393" d="-5.5920618097610881e-05" /> - <width sOffset="23.295946210321006" a="1.7602597357345102" b="0.11036738170098545" c="0.0024322407584107131" d="-0.00040035337215747351" /> - <width sOffset="23.76732897333298" a="1.8127835312857907" b="0.11239353682819393" c="0.0018424099598840118" d="-0.00040219256320244399" /> - <width sOffset="28.551194149742827" a="2.3485910393132201" b="0.10240824645816329" c="0.001731304235196376" d="-0.00023802867346763647" /> - <width sOffset="31.202110036677993" a="2.6277989575347016" b="0.10656919426837359" c="-0.00072586822749677962" d="-0.00028858230678893563" /> - <width sOffset="33.776856347223145" a="2.8924498280018485" b="0.09709202905637021" c="-0.0029423662145323273" d="-0.00028962019442342786" /> - <width sOffset="39.931896193253039" a="3.3110511767058339" b="0.027954904232610545" c="-0.00067500116802404796" d="3.4985371621040565e-05" /> - <width sOffset="43.78638372111331" a="3.4107779505646896" b="0.024310677841755619" c="-0.00026300201729526296" d="3.5579382506801975e-05" /> - <width sOffset="49.63351140716378" a="3.5510464010220484" b="0.024884325172253925" c="-0.00060945297119223689" d="6.9066487941398257e-05" /> - <width sOffset="49.641656711541316" a="3.5512490510273773" b="0.024874410559665806" c="-0.0010255698836716882" d="-1.2983602226621125e-05" /> - <width sOffset="53.795911095003476" a="3.6359537311893515" b="0.015681247810198602" c="-0.0011883360152266792" d="-1.1625538450316633e-05" /> - <width sOffset="55.490103522288535" a="3.6590533829955123" b="0.011554602124217377" c="-0.0019702434288354663" d="7.6375559283759102e-05" /> - <width sOffset="63.630127774986079" a="3.6637535713257314" b="-0.0053391239737872742" c="-0.00051628184275961378" d="4.4420555017951342e-05" /> - <width sOffset="63.805438468893641" a="3.6628019378104373" b="-0.0055160477873866347" c="-0.00049789334347312224" d="4.4395772523870358e-05" /> - <width sOffset="73.814965842783806" a="3.6022274406192976" b="-0.0021392795348041029" c="0.00083599225188318318" d="4.3582020639141665e-05" /> - <width sOffset="76.82588110862298" a="3.6045546370442585" b="0.0040802170347111928" c="0.0012564288610397046" d="-0.00033504734438813324" /> - <width sOffset="77.336708740371023" a="3.6069221222235881" b="0.0051015675372712132" c="0.00074242626292593582" d="-0.00033253332148723823" /> - <width sOffset="79.797382288533868" a="3.6190162722709909" b="0.002714922569456742" c="-0.0013604103596605492" d="0.00017487791759165933" /> - <width sOffset="83.515957484484915" a="3.6192926050927947" b="-0.00014812248279424522" c="0.00026905499627955247" d="-6.0738523042504402e-05" /> - <width sOffset="83.824493216673972" a="3.6192707325740248" b="5.5779456401613275e-07" c="0.00021176770929393524" d="-6.0736209134341615e-05" /> - <width sOffset="88.656316317089619" a="3.6173660429764585" b="-0.002206930342958123" c="-0.00091797197132663746" d="7.2754372205025605e-05" /> - <width sOffset="90.892008192384708" a="3.6086567189959444" b="-0.0052205867993348311" c="-0.00070766103932599434" d="0.00010315288283895582" /> - <width sOffset="93.834020590564137" a="3.589799298958757" b="-0.0067059820809541263" c="0.00018548997296221779" d="0.00010896992350926469" /> - <width sOffset="96.643805047134634" a="3.5748386302201185" b="-0.0030826921444256105" c="0.0012199739601746935" d="-0.00017448248533764871" /> - <width sOffset="99.103126565306411" a="3.5720406606802095" b="-0.00024802325049463588" c="-0.00045659809239872524" d="-0.00019414527732183309" /> - <width sOffset="100.178673779831" a="3.5710041518873981" b="-0.001903971688389244" c="-0.00077360978309984612" d="0.00014328116737190799" /> - <width sOffset="103.18571592926295" a="3.5621795138211421" b="-0.0026697511695476447" c="0.00029898434141807477" d="-2.0304925388062061e-06" /> - <width sOffset="103.8435479644543" a="3.560552071327876" b="-0.0022790242581522606" c="0.00029654345179489622" d="-1.7435617725959999e-06" /> - <width sOffset="110.28848289745611" a="3.5577147296058813" b="0.0013261142946268461" c="0.00026652153256805159" d="-2.4020656624529635e-05" /> - <width sOffset="113.85307533834447" a="3.5647403302930378" b="0.0023105531788667087" c="-6.3365484352690294e-06" d="-1.9905823182484471e-05" /> - <width sOffset="116.70003233238106" a="3.5708076891218465" b="0.0017904535252291761" c="-0.00016540977845404787" d="1.0716002498906818e-05" /> - <width sOffset="123.58862838477737" a="3.578795128016508" b="0.0010370827733603427" c="0.00039336469547597325" d="1.4936267926784194e-06" /> - <width sOffset="123.89537498644842" a="3.5791503057953973" b="0.0012788309620917742" c="0.00045059942000148345" d="-0.0001084074775980908" /> - <width sOffset="126.22841389562205" a="3.5832098574051434" b="0.001611154274021245" c="-0.00020668395136524579" d="1.5029211599314853e-05" /> - <width sOffset="129.60371757521483" a="3.5868712386429187" b="0.00072958083750124941" c="-0.0016726696060903404" d="0.00028459967748966654" /> - <width sOffset="133.72258510245894" a="3.581386265006381" b="0.0014353318904275856" c="0.0025537050713282362" d="0.00026030859795153865" /> - <width sOffset="134.57011835248301" a="3.5845955893289618" b="0.0063249806529554996" c="0.00044000360750100101" d="-4.3922370779780669e-05" /> - <width sOffset="143.88165746001499" a="3.6461803659625138" b="0.0030943663264647319" c="-0.00078697718288595379" d="-4.3911166403877325e-05" /> - <width sOffset="143.98980335240952" a="3.6465057493119604" b="0.002922608933406623" c="-0.00011131979556936746" d="-7.6793304899811204e-05" /> - <width sOffset="145.35505195727194" a="3.6500929323875826" b="0.002189244554575078" c="-0.00022005663794810075" d="5.3491220047328435e-05" /> - <width sOffset="149.33230031613004" a="3.6586844878755329" b="0.0029772580666828359" c="-8.7065985651317936e-05" d="-1.9286206084479581e-05" /> - <width sOffset="153.89118483390513" a="3.6686205804031076" b="0.00098091008932633429" c="-0.00034741886638373174" d="-1.9905533471655197e-05" /> - <width sOffset="156.04216108811562" a="3.6689249939807289" b="-0.00078996010062266919" c="0.00022152909792301533" d="-7.9605418399704268e-05" /> - <width sOffset="159.25567947400367" a="3.6660323981755707" b="-0.0018323683642725202" c="-0.00064140378172771731" d="0.00012362805410775151" /> - <width sOffset="161.22412629134283" a="3.6608831268661004" b="-0.0029204112298918143" c="-0.00062985188232220007" d="0.00017675145020404169" /> - <width sOffset="162.84994702450041" a="3.6552297716401427" b="-0.0035668460850067051" c="0.00020307101123002698" d="-2.5624309877908947e-05" /> - <width sOffset="163.90071220779527" a="3.6516763379402533" b="-0.003224962164215325" c="0.00012657746916307217" d="-2.3820737407139351e-05" /> - <width sOffset="166.8689193208358" a="3.6425962339579927" b="-0.0031031460784823614" c="0.00065600192145579038" d="1.8735098835120693e-05" /> - <width sOffset="169.57081990280534" a="3.6393703730176097" b="0.00085207152575116334" c="0.00011160437155415199" d="-5.7587480487899491e-05" /> - <width sOffset="173.91023958168546" a="3.640463755087834" b="-0.0014325461257422437" c="-0.00063839930928052718" d="-5.7583549260667501e-05" /> - <width sOffset="174.73309841524912" a="3.6388206308532007" b="-0.0026001400343279059" c="0.00014286726178686549" d="-8.8404331236373161e-06" /> - <width sOffset="183.91976695557565" a="3.6201372148847248" b="-0.0022134535236061821" c="-0.00010078939981657784" d="-7.2920975177851549e-06" /> - <width sOffset="185.63411573713898" a="3.6160096234002781" b="-0.0026233241363686124" c="-6.2327827389963076e-05" d="1.1208569252397122e-05" /> - <width sOffset="186.350154720744" a="3.614103379746306" b="-0.0026953421466869416" c="-5.2001582442796473e-05" d="8.4048248652922893e-06" /> - <width sOffset="193.92929432946579" a="3.5943470787356997" b="-0.0020351925820678951" c="0.0001102242916918195" d="1.1885884008828752e-05" /> - <width sOffset="194.64872160290253" a="3.5929443808936106" b="-0.0018581403280858114" c="4.4643139119244268e-05" d="4.4089249654902229e-06" /> - <width sOffset="197.65874720744654" a="3.5878760475398881" b="-0.0014695484024369657" c="-0.00037745097656297175" d="1.2127230317236932e-05" /> - <width sOffset="203.93882170335593" a="3.5667644545803849" b="-0.0047755191833369626" c="-0.00017937859733431239" d="1.3321184956568893e-05" /> - <width sOffset="204.39645943858085" a="3.5645427058824568" b="-0.0049313303543200701" c="0.0016750302096115736" d="-0.00017765536578587631" /> - <width sOffset="207.74683687536469" a="3.560141872675433" b="0.0003100766038225105" c="-0.00036121008371817518" d="-0.00016857407855644404" /> - <width sOffset="208.89514682916246" a="3.5597663879912824" b="-0.0011863389703430987" c="0.0011917331334126175" d="-0.00015173301286831999" /> - <width sOffset="213.94834907724612" a="3.5646237756494239" b="-0.00076564239091847161" c="-0.0011063731266032343" d="-0.00015205666552373231" /> - <width sOffset="214.30497800477514" a="3.5642031153329476" b="-0.0016127893265008688" c="-0.0014356292964477092" d="-0.00016736953818900641" /> - <width sOffset="216.30066355516976" a="3.5539364171741568" b="-0.0093426971272892508" c="-0.00076206212732397144" d="0.00012388720877297253" /> - <width sOffset="217.31358358048351" a="3.5438198824973863" b="-0.010505185683947486" c="-0.00095818964170197869" d="0.00025506053922814411" /> - <width sOffset="219.95794003610803" a="3.5140564898506792" b="-0.010222150515527611" c="0.0025283450791942631" d="3.6514025643227921e-05" /> - <width sOffset="221.26242088248301" a="3.5051053536680983" b="-0.003439390561293847" c="0.0025698654646692212" d="-0.00016942579491185185" /> - <width sOffset="223.95787645113631" a="3.5111879396461183" b="0.0067216462530486952" c="0.0011519095531669636" d="-0.00017203024627231574" /> - <width sOffset="227.51110676657038" a="3.5418973994795575" b="0.0083917705568963656" c="-0.00043965344678494267" d="-7.2282166634386868e-05" /> - <width sOffset="233.16370526709898" a="3.562229998451667" b="-0.0035072494044661394" c="-0.00011717898736014073" d="4.3095729154671964e-05" /> - <width sOffset="234.88458632866707" a="3.556067049354751" b="-0.0035276764387298484" c="-0.0014219300554519328" d="0.0004504905721451062" /> - <width sOffset="237.90136049990872" a="3.5448523821472575" b="0.00019268445539564658" c="-4.6155719368152572e-05" d="1.5483622858092232e-05" /> - <width sOffset="243.97693119891659" a="3.5477917570212814" b="0.0013464602246771895" c="0.00022688296110675655" d="1.6183486191836019e-05" /> - <width sOffset="245.03712882963185" a="3.5494935772980787" b="0.0018821134189901088" c="0.00048977286889924918" d="-5.5022575937935678e-05" /> - <width sOffset="247.01057584881625" a="3.554692365309303" b="0.0031723399022055136" c="0.00032389593663474555" d="-5.6129206365134356e-05" /> - <width sOffset="251.97436680231982" a="3.571554917747612" b="0.0022389036442275771" c="-0.00020307356715203859" d="1.0614088042302004e-05" /> - <width sOffset="253.77401253007059" a="3.5749883165574836" b="0.0016111110179173854" c="1.9444003438403939e-05" d="-2.7359159108068317e-06" /> - <width sOffset="253.98645857280678" a="3.5753314420570552" b="0.0016190021781745379" c="1.7688795710385952e-05" d="-2.7337879329624935e-06" /> - <width sOffset="263.99598594669698" a="3.5905675312842473" b="0.0011514152744029433" c="-7.0217826348711215e-05" d="-6.0274542553349957e-08" /> - <width sOffset="265.87417218614263" a="3.592482005012867" b="0.00088701309352553874" c="0.00017006169660797294" d="2.2047982072555935e-06" /> - <width sOffset="267.53659693634012" a="3.5944367192292304" b="0.0014707225522429049" c="-0.00020056279158214108" d="1.3219853670589696e-05" /> - <width sOffset="274.00551332058711" a="3.5991364403064527" b="0.00053550355341577555" c="5.2801543142325899e-05" d="1.2794209694055685e-05" /> - <width sOffset="276.65823158401719" a="3.6011673691732562" b="0.0010857340561282146" c="0.00034433264130216137" d="-1.60974617880143e-07" /> - <width sOffset="277.68645977470618" a="3.6026476233333016" b="0.0017933285408553174" c="-9.8233777082663685e-05" d="3.9509238602455289e-07" /> - <width sOffset="281.09399942848785" a="3.6076334692375225" b="0.001137620199421866" c="-0.00041900605011163466" d="0.00022260372168994623" /> - <width sOffset="283.20187093702123" a="3.6102545333532308" b="0.002338365046919407" c="0.0028739465663608892" d="-0.00063419339084598071" /> - <width sOffset="284.01504069447725" a="3.6137153954172265" b="0.0057543061817694821" c="0.0013264866008242207" d="-0.00063414762559568696" /> - <width sOffset="286.71415680607254" a="3.6264410197346653" b="-0.00094474080923107333" c="0.00026770410154703766" d="1.8963535246423472e-05" /> - <width sOffset="287.82152445868519" a="3.6257488710304306" b="-0.00028208423259937373" c="9.0350560760481399e-05" d="-5.0793115941370592e-05" /> - <width sOffset="289.26832042526519" a="3.6253760512427826" b="-0.00033960985921129591" c="-0.00016753351859091894" d="7.7971364155553859e-07" /> - <width sOffset="292.34461943346128" a="3.6227685366857414" b="-0.001348239522856154" c="-0.000366559955948109" d="7.8302058832784737e-05" /> - <width sOffset="293.17830902199216" a="3.6214351220450158" b="-0.0017961651639218899" c="-0.00012981376608802743" d="-3.141180231522662e-05" /> - <width sOffset="294.02456806836744" a="3.6198030971406294" b="-0.0020833644105434316" c="-0.00021049886756530699" d="-3.1700973039176439e-05" /> - <width sOffset="296.71180461637027" a="3.6120693781434752" b="-0.0039014459398561832" c="-0.0012374569551060208" d="0.00011878017543287425" /> - <width sOffset="299.88752424684702" a="3.5910037468114795" b="-0.0081673148730571649" c="-0.00074307478452905059" d="0.00020743202584178326" /> - <width sOffset="303.38819246448685" a="3.5622052880083372" b="-0.0057437934040545681" c="0.00085267640200594841" d="8.918772392528449e-05" /> - <width sOffset="303.7903292254486" a="3.560039187201959" b="-0.0050147396472097535" c="0.00078023917487446827" d="-0.0001136175911793741" /> - <width sOffset="307.75301547089089" a="3.5453494290061389" b="-0.0041834245319670865" c="-0.00019770279803942549" d="9.8229837362923129e-06" /> - <width sOffset="312.70686666172219" a="3.5209677997710012" b="-0.0054190180444028185" c="0.0014023460008061135" d="-0.00010381174398627931" /> - <width sOffset="314.04362281614777" a="3.5159817977416576" b="-0.0022263376654719494" c="0.00099111968594294626" d="-0.00010589475801901118" /> - <width sOffset="315.69455764067635" a="3.5145311396220653" b="0.00018033459951165721" c="0.00061448911581996936" d="-0.00015102555451411946" /> - <width sOffset="317.05314358773262" a="3.5155316221316948" b="0.0010137382857607728" c="0.00088265134289982282" d="-9.0965858133987583e-05" /> - <width sOffset="321.61158586958391" a="3.5298772127364897" b="0.0033901219129491185" c="-0.00026347109019585771" d="-3.8190525358474292e-05" /> - <width sOffset="324.05315019003791" a="3.5360279467652984" b="0.0014205704445709698" c="-0.0005122294922319348" d="-3.7981310015496179e-05" /> - <width sOffset="324.30433931338212" a="3.5363518570236816" b="0.0011560480869214334" c="0.00018406774200516239" d="1.2972066969628696e-06" /> - <width sOffset="328.87974314690729" a="3.5456188272382234" b="0.0029218850129534308" c="-0.00037810933254205651" d="1.8575208739503886e-05" /> - <width sOffset="334.0626775639281" a="3.5531918792608512" b="0.00049940012994559302" c="-6.4264491739881175e-05" d="2.1087171593886618e-05" /> - <width sOffset="342.49899004240842" a="3.5654924248522826" b="0.0039174980263704702" c="-0.00040058366404737431" d="8.1092820170613386e-06" /> - <width sOffset="344.0722049378183" a="3.570695619717978" b="0.002717301195318933" c="-0.00034718312509466898" d="1.3316141213227646e-05" /> - <width sOffset="347.57226160604125" a="3.5765241541695363" b="0.00077636400751232224" c="0.0014903521553024097" d="-0.00035762328194242698" /> - <width sOffset="351.10386955738375" a="3.5821017457280577" b="-0.0020780629492501024" c="-0.0010449683373237842" d="0.00013074495226279601" /> - <width sOffset="354.08173231170844" a="3.5700996706158343" b="-0.0048233995991181847" c="0.00013136193211603006" d="0.00012960670177203821" /> - <width sOffset="356.76083618443818" a="3.5606124210387029" b="-0.0013287408374606318" c="0.00033064833987508804" d="0.00010278985054771087" /> - <width sOffset="359.7443546376652" a="3.5623211606684442" b="0.0033891652972192028" c="0.0017418621961873802" d="-0.00034473189801229292" /> - <width sOffset="363.7533796968703" a="3.5816915920549319" b="0.00073361892508601355" c="-4.8896912033597232e-05" d="-2.8220582908044107e-07" /> - <width sOffset="364.09125968559857" a="3.5819338741108115" b="0.00070047969661524287" c="-4.2072299744077364e-05" d="-3.3834153489837966e-07" /> - <width sOffset="373.79541923554473" a="3.5844602697955525" b="-0.0002116585123850995" c="-0.00057446861813925589" d="2.1885268007325244e-05" /> - <width sOffset="374.54305065919812" a="3.5839900720778077" b="-0.0010339416021096736" c="0.00044385740630162557" d="-4.9288029538280655e-05" /> - <width sOffset="379.50726378850186" a="3.5837658680758024" b="-0.00027101172903434053" c="0.00031567229147887844" d="-7.9592829217072238e-06" /> - <width sOffset="383.63546681307054" a="3.5874668227309221" b="0.001928379151487314" c="-0.00016094691707315632" d="2.779322464081216e-06" /> - <width sOffset="384.11031443337896" a="3.5883465162075723" b="0.0017774086774206537" c="-0.00015883966315159587" d="3.7013813770377865e-06" /> - <width sOffset="387.79754456166921" a="3.5929262515640068" b="0.00075702012937205708" c="4.3719760807732331e-05" d="4.1574330780400289e-05" /> - <width sOffset="388.49147473940758" a="3.5934865157008598" b="0.000877756048579207" c="-0.00020286806361905399" d="2.3190802881251324e-05" /> - <width sOffset="394.1198418072691" a="3.5961351708552218" b="0.00079807484177579421" c="0.00017484709636929994" d="2.4425732464575637e-05" /> - <width sOffset="397.30962371787444" a="3.6012526134381835" b="0.0026590971852497453" c="0.00078117436746701682" d="-3.280926373087525e-05" /> - <width sOffset="400.42803921830802" a="3.6161463818383441" b="0.0065739871425136657" c="0.00055886450719313098" d="-8.4875086782769233e-05" /> - <width sOffset="404.12936918115923" a="3.6438314182588916" b="0.0072227448174438935" c="-0.00039810360811450013" d="-8.3039782920920263e-05" /> - <width sOffset="407.01056559212549" a="3.6593506732339676" b="0.0028607027977566764" c="-0.00066055426474600565" d="-3.7657388784983735e-05" /> - <width sOffset="407.28320924826875" a="3.6600807604945835" b="0.0024921132014706759" c="-0.00064489467478936492" d="4.6848146251744923e-05" /> - <width sOffset="411.77773672911832" a="3.6625077394067445" b="-0.00046577357002733182" c="-0.00021647410543741252" d="-9.527304398189467e-07" /> - <width sOffset="414.13889655504948" a="3.6601885726300822" b="-0.0015039681252924063" c="-0.00022161662355172303" d="-1.7315568563820164e-06" /> - <width sOffset="420.14254070273256" a="3.642796692380768" b="-0.004352218186557618" c="-0.00017734828744674343" d="-8.2221127371216758e-06" /> - <width sOffset="420.95447647672967" a="3.6391416547363495" b="-0.0046564700540575061" c="-0.00044747857693267363" d="1.8190505748973093e-05" /> - <width sOffset="424.14842392893962" a="3.6202969613647125" b="-0.0069582157387200862" c="-0.0002682206368676386" d="1.9157775623065489e-05" /> - <width sOffset="429.59513631349495" a="3.5775359723169045" b="-0.0081750145125810171" c="0.00011748111936002974" d="2.2981349143036919e-05" /> - <width sOffset="431.06662825058658" a="3.5658341081755642" b="-0.0076799857182990369" c="-0.0019556296056237547" d="0.00047258112394122281" /> - <width sOffset="434.49424619922939" a="3.5355648589842965" b="-0.0044298381162892787" c="0.001609166676313668" d="0.00076116748316050194" /> - <width sOffset="435.10001811439366" a="3.5336410894791772" b="-0.0016423089820240739" c="-0.00072742232136846605" d="0.00026610591447143265" /> - <width sOffset="437.82058992593596" a="3.5291474453960747" b="0.00030843923758665064" c="0.00033031063416351098" d="-2.0234652092463848e-05" /> - <width sOffset="442.93602125045521" a="3.5366601088142318" b="0.0020993228362991105" c="3.6529489503822746e-05" d="-2.1321636843007065e-05" /> - <width sOffset="444.1674786767199" a="3.5392609140850415" b="0.0020922898781608038" c="-4.1102320384597325e-05" d="-1.983614145363351e-05" /> - <width sOffset="447.41615727204709" a="3.5449441938279298" b="0.0011971867106522385" c="0.00013060681758393593" d="1.0573787358993492e-07" /> - <width sOffset="452.819332003336" a="3.5552424563493243" b="0.0026178304523725568" c="0.00097304477766088681" d="-2.0275966614646169e-05" /> - <width sOffset="454.17700605061003" a="3.5605394675803756" b="0.0051478629559394314" c="0.0008773874618236262" d="-2.5804937267071103e-05" /> - <width sOffset="454.83799458370498" a="3.5643180294695793" b="0.0062739260751861724" c="-0.00088458598943881453" d="0.00021965189463847914" /> - <width sOffset="457.1296268806679" a="3.5766935300755947" b="0.0056801919872824054" c="0.00020563110940839869" d="-3.9947700848663029e-05" /> - <width sOffset="464.18653342450028" a="3.6129795705329535" b="0.0026142529164973356" c="-0.00063134625000063887" d="-4.5056620585173036e-05" /> - <width sOffset="465.58753317231134" a="3.6152790311827756" b="0.00057990959812637306" c="-0.00092058859911665447" d="2.7860978737071445e-05" /> - <width sOffset="467.20132673585766" a="3.6139344648881226" b="-0.0021736927934059222" c="-0.00069400297833039617" d="5.8840392038297658e-05" /> - <width sOffset="470.13531472195751" a="3.603068809182731" b="-0.0047265409136358211" c="-0.00075857859086112174" d="0.00010206090905567197" /> - <width sOffset="474.19606079839042" a="3.5782008554632783" b="-0.0058384823166642182" c="0.00047853402692411742" d="0.00010621828798055522" /> - <width sOffset="476.14807626642681" a="3.569417476651362" b="-0.002756079526135987" c="0.0014019259264264575" d="-0.00015213232268983798" /> - <width sOffset="478.98764339381165" a="3.569412134884443" b="0.0015256527048364069" c="-0.00077532825262823359" d="-0.00010891241831088444" /> - <width sOffset="479.75860503331882" a="3.5700776049171932" b="0.00013594932931039472" c="-0.0003277735138077289" d="0.00011567415852785215" /> - <width sOffset="482.39798120756933" a="3.5702799220198473" b="0.00082317908178001706" c="0.00056905185178588607" d="-2.5360328242197814e-05" /> - <width sOffset="484.20558817228056" a="3.5734774662112976" b="0.0026318329865922183" c="0.00043297362331765901" d="-2.4616317620754008e-05" /> - <width sOffset="484.32603811400003" a="3.5738007089868011" b="0.0027350648674542601" c="0.0054040296067569106" d="-0.0012201109630860941" /> - <width sOffset="488.58596561826522" a="3.5891982472868973" b="-0.017647382726900813" c="-0.0013588402485098085" d="-3.8208092652751293e-05" /> - <width sOffset="491.26229209724391" a="3.5315026517621249" b="-0.025741805002949231" c="-0.0013875017823048157" d="1.2256012339773801e-05" /> - <width sOffset="492.21386213592638" a="3.5057617187647279" b="-0.028349122326471146" c="-0.010658772612530888" d="0.00030962285668846231" /> - <width sOffset="494.21511554617081" a="3.408821037363063" b="-0.06729079965309219" c="-0.0088198810012834576" d="0.00031296755211585834" /> - <width sOffset="495.13314212767222" a="3.3398552779339217" b="-0.082693288438111412" c="-0.007838492155364786" d="0.00028672782313619508" /> - <width sOffset="502.40363897330593" a="2.4344853705425598" b="-0.15120334823372303" c="-0.012004773680219525" d="0.0010126670760273039" /> - <width sOffset="504.22464292006094" a="2.1254500230641331" b="-0.18485064843798901" c="-0.0065111136072010974" d="0.00099725516627814387" /> - <width sOffset="508.2896797215821" a="1.333420700849852" b="-0.18834897992290678" c="0.0012831308757400191" d="0.001566437456247865" /> - <width sOffset="509.65206044792075" a="1.08316030958332" b="-0.17613044882898388" c="-0.0031439037648383792" d="0.0013762900641737118" /> - <width sOffset="513.93185414432151" a="0.37966191579186703" b="-0.12741396336295513" c="0.011914643686188329" d="0.00033100985411143333" /> - <width sOffset="514.23417029395114" a="0.34224070235470205" b="-0.12011922696532262" c="0.012212840893671244" d="0.00033173058682453734" /> - <width sOffset="516.4352832979655" a="0.14055231488258668" b="-0.061533938127101478" c="0.0095271476599170044" d="-0.0007257652661382427" /> - <width sOffset="517.90496993843135" a="0.068391209209770265" b="-0.038233007664035715" c="0.0059063542445104431" d="-0.00015296481628474667" /> - <roadMark sOffset="0" color="standard" width="0.12" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.12" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="49.63351140716378" color="standard" width="0.16130402690251466" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.161304" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8600799487849162" b="0.027452459967692133" c="-0.0016703246955980795" d="-3.6530578597780498e-05" /> - <width sOffset="3.6607340635815149" a="3.9364000312294598" b="0.013754594957560241" c="-0.00036337823942496892" d="-0.00036181834438701833" /> - <width sOffset="3.7482742255526489" a="3.9376010833067703" b="0.013682656431902895" c="-0.00045012630936481623" d="-0.00036167264678174931" /> - <width sOffset="6.8766494994387699" a="3.9649271259917152" b="0.00024754875999458484" c="-0.0044993808702306383" d="0.00085599835600256257" /> - <width sOffset="9.4104291658296972" a="3.9505926530934934" b="-0.006066701250676293" c="0.00072305175609770306" d="-0.00016873414378915937" /> - <width sOffset="12.569292942251678" a="3.9333251050122713" b="-0.0065497578954667145" c="0.00018894181462767367" d="4.8025646211225062e-07" /> - <width sOffset="13.757801599442814" a="3.9258083576151872" b="-0.0060986047678157143" c="0.00029449903842307932" d="2.4345563332766409e-05" /> - <width sOffset="16.251559602642203" a="3.9128089095143705" b="-0.004175583415554851" c="-0.0077593201544562248" d="0.0014504993809739001" /> - <width sOffset="19.170073889083994" a="3.8705887643503134" b="-0.012402089558173204" c="0.0012541766111929067" d="-7.9424303049656256e-05" /> - <width sOffset="23.139028086587331" a="3.8361562645233374" b="-0.0061999677217277338" c="0.00060211096999922926" d="-5.2138171639252115e-05" /> - <width sOffset="23.76732897333298" a="3.8324855780441807" b="-0.0055051005163968825" c="0.00052750735385305989" d="-5.0298980597699847e-05" /> - <width sOffset="28.678876478692985" a="3.8122126724406709" b="-0.0039634776902250334" c="9.124281106099631e-05" d="-9.3698742141031703e-05" /> - <width sOffset="31.202110036677993" a="3.8012875675555171" b="-0.0052926813224025843" c="-5.3838133904410098e-05" d="-4.3145108819639356e-05" /> - <width sOffset="33.776856347223145" a="3.7865669098907948" b="-0.0064279884081641751" c="-0.00034944182551324932" d="-4.4904001190959111e-05" /> - <width sOffset="35.607716668511955" a="3.7733512327736447" b="-0.0081591080604126349" c="-0.00052507768181776413" d="2.4648051943138371e-05" /> - <width sOffset="43.78638372111331" a="3.6849822013563363" b="-0.011801810570834414" c="8.8399758212491292e-05" d="2.3436856134365736e-05" /> - <width sOffset="46.377635793821298" a="3.6554020854194831" b="-0.010871572007486448" c="0.0004235189399354583" d="-0.00011540812307245276" /> - <width sOffset="49.625072046866904" a="3.6206113360122285" b="-0.011772098058343256" c="0.00072229197325366149" d="-0.00010347251996192944" /> - <width sOffset="49.63351140716378" a="3.6205120384167282" b="-0.011759928802740349" c="0.001690234753046842" d="-0.00013696019577316603" /> - <width sOffset="53.079370255830696" a="3.5944548810600483" b="-0.0049900808003628047" c="0.00012614422846497298" d="0.00010868746764246647" /> - <width sOffset="53.795911095003476" a="3.5909840361847234" b="-0.0046418953457464732" c="0.00035989021588691362" d="0.00010877230784700721" /> - <width sOffset="56.775923451579359" a="3.5832256680569712" b="0.00040090807449784729" c="0.0017387668009481909" d="-0.00032702451341622959" /> - <width sOffset="59.89193451119931" a="3.5914633792241872" b="0.0017111832472064201" c="-0.00082625432205569234" d="0.00010685321134062844" /> - <width sOffset="63.008501137803165" a="3.592005569916378" b="-0.00032537831274624847" c="-0.00013247677367169919" d="-3.9995193673582643e-05" /> - <width sOffset="63.630127774986079" a="3.5917425072620173" b="-0.00053644528474054536" c="0.00020407212170755717" d="-8.0401895947621847e-06" /> - <width sOffset="73.814965842783806" a="3.5989531680348983" b="0.0011183887958343686" c="-4.0626078014013612e-05" d="-8.900848267602139e-06" /> - <width sOffset="76.408965663498208" a="3.6014255414731329" b="0.00072794369774074712" c="1.9444060513260309e-05" d="1.7004198618734657e-06" /> - <width sOffset="77.336708740371023" a="3.6021189796533104" b="0.00076841257373513709" c="2.4724992518921978e-05" d="-8.1360303902217547e-07" /> - <width sOffset="79.574492778864141" a="3.6039532185146452" b="0.00086684817629712266" c="-0.00031257877748869006" d="2.8095944724333144e-05" /> - <width sOffset="83.824493216673972" a="3.6041481717350816" b="-0.00026762238763887013" c="5.6099309416056056e-05" d="2.8494055734362419e-05" /> - <width sOffset="90.733370990757152" a="3.6143736979029391" b="0.0045878295749845251" c="0.00077230837805776671" d="-5.7598869426146725e-05" /> - <width sOffset="90.892008192384708" a="3.6151207041291857" b="0.0048285146964876487" c="0.0010225545521601268" d="-8.7997380058918288e-05" /> - <width sOffset="93.834020590564137" a="3.6359361099531999" b="0.0085602837121580132" c="0.00023362476504957478" d="-8.465490737964796e-05" /> - <width sOffset="98.943174075794929" a="3.6744801943610406" b="0.00431817801994085" c="-0.0012083590694138969" d="9.1361665520348583e-05" /> - <width sOffset="99.103126565306411" a="3.6751403559458131" b="0.0039386303467075232" c="-0.00077527203150485821" d="0.00011102445750024256" /> - <width sOffset="103.65037945928648" a="3.6874587802019287" b="0.0037750419871222093" c="0.00064504012034523968" d="-4.6242720598047048e-05" /> - <width sOffset="103.8435479644543" a="3.6882117351795638" b="0.0040190683462321044" c="0.00061667592921626504" d="-4.6529651370138187e-05" /> - <width sOffset="110.28848289745611" a="3.7272731567841473" b="0.0061698084323285555" c="-0.00028665530469251652" d="-2.4252556518192922e-05" /> - <width sOffset="113.85307533834447" a="3.7445252080667162" b="0.0032017075891581839" c="-0.00055894457534262079" d="-2.1651255294051666e-05" /> - <width sOffset="117.79491791144812" a="3.7471347717118779" b="-0.0022140950522440668" c="-0.00066426049167074401" d="6.409252710022925e-05" /> - <width sOffset="123.58862838477737" a="3.7244742434760276" b="-0.00345696383208663" c="0.00011242030861905502" d="7.3314902806598803e-05" /> - <width sOffset="123.72868075691571" a="3.7239924939798055" b="-0.0034211602281199321" c="0.00022675693906834901" d="-1.0923607011193067e-05" /> - <width sOffset="133.72258510245894" a="3.7015461603774713" b="-0.0021618740396431198" c="-0.00081044107944733029" d="1.3367472429891895e-05" /> - <width sOffset="133.8721300861248" a="3.7012047832025248" b="-0.0024033719970991624" c="-0.00079957255643687067" d="1.3632684907246052e-05" /> - <width sOffset="136.9982764156295" a="3.6862939298061543" b="-0.0070028454861284358" c="-0.00016131935638373415" d="4.3912174358407299e-05" /> - <width sOffset="143.88165746001499" a="3.6447687757030023" b="-0.0029818911012279401" c="0.00074549950002820932" d="4.3900969668082696e-05" /> - <width sOffset="144.22429216877686" a="3.6438363627779848" b="-0.0024555613633709321" c="0.00032835187484846456" d="8.2951274679181756e-05" /> - <width sOffset="145.35505195727194" a="3.6415994809881176" b="-0.0013947982663124025" c="0.00040395675753038306" d="-4.7333250267961224e-05" /> - <width sOffset="149.33230031613004" a="3.639464083823396" b="-0.00042774926266940386" c="0.00034444143083032781" d="2.5444175864050846e-05" /> - <width sOffset="150.84772534916118" a="3.6396954267683808" b="0.00079149971500006543" c="0.00010591471581407119" d="8.2654095149653542e-07" /> - <width sOffset="153.89118483390513" a="3.6431086751550277" b="0.0014591618756471915" c="0.00011829591248281864" d="1.4141056900860118e-06" /> - <width sOffset="157.40720983798525" a="3.6497630163424137" b="0.0023434700035664486" c="-0.00019961612374759974" d="9.8328349300341121e-06" /> - <width sOffset="161.22412629134283" a="3.6563464530996677" b="0.0012493931966519644" c="0.0006314910540555288" d="-4.3290561166039459e-05" /> - <width sOffset="163.90071220779527" a="3.6633845219083874" b="0.0036994580119074517" c="0.00028515546685042094" d="-4.3410598999530769e-05" /> - <width sOffset="167.39891193984164" a="3.6779571679631986" b="0.0041008207969698328" c="-0.00019386621126030683" d="-9.608617587125315e-05" /> - <width sOffset="169.57081990280534" a="3.6849648399485675" b="0.0018989330891428778" c="-0.00012367852953755546" d="-1.9763596548236482e-05" /> - <width sOffset="173.91023958168546" a="3.6892612142824683" b="-0.00029093195930315592" c="-0.00038065120632203603" d="-1.9767527774775491e-05" /> - <width sOffset="174.54449011481074" a="3.6889185210150828" b="-0.00079764429230714824" c="-0.00057953957331904719" d="4.1358044667212948e-05" /> - <width sOffset="183.91976695557565" a="3.6645822790691454" b="-0.00075873493955922822" c="0.00058346970092496789" d="4.3020763958749483e-05" /> - <width sOffset="185.63411573713898" a="3.665213113650104" b="0.0016211192125560132" c="0.00072876231582977681" d="2.4520097193348017e-05" /> - <width sOffset="186.2640200452434" a="3.666529549911032" b="0.0025684074683111841" c="0.00029022015735512572" d="-8.2831676681974177e-06" /> - <width sOffset="193.92929432946579" a="3.6995387905106494" b="0.0055575736060300045" c="8.0019099243892043e-05" d="-7.0940479115462558e-06" /> - <width sOffset="194.64872160290253" a="3.7035758349448828" b="0.0056616943324636244" c="0.00015594238455167106" d="3.8291113204486237e-07" /> - <width sOffset="199.58615734482441" a="3.7353777822616197" b="0.0072296094736438322" c="0.0014816920910586894" d="-0.00018101052994597177" /> - <width sOffset="203.98022187088276" a="3.7803964869354876" b="0.0097661637938731699" c="0.00060539358287692194" d="-8.0602372437247395e-05" /> - <width sOffset="204.39645943858085" a="3.7845606052684775" b="0.010228244917899422" c="-0.0013313755996899742" d="0.00011037417830469146" /> - <width sOffset="208.89514682916246" a="3.8136786999214105" b="0.0049506798644865123" c="-0.0019754279213414373" d="9.353311261656893e-05" /> - <width sOffset="213.16041335263759" a="3.8061144813227581" b="-0.0067959702628848434" c="-0.0012253183443051204" d="0.00077550632890038005" /> - <width sOffset="213.94834907724612" a="3.800378329014916" b="-0.007282512114346943" c="0.00060572253411045232" d="0.00077582998155674454" /> - <width sOffset="215.28430738624166" a="3.7935801680154086" b="-0.0015100037918060788" c="0.0030620061082785133" d="8.2862144098502858e-05" /> - <width sOffset="216.30066355516976" a="3.7952954519252944" b="0.0049709585816398458" c="0.0016390403863111081" d="-0.00020839460286407833" /> - <width sOffset="219.95794003610803" a="3.8252045300233304" b="0.0085975531943977487" c="-0.0021105514235634656" d="1.0151910720511623e-05" /> - <width sOffset="222.3737910289251" a="3.8338001892294891" b="-0.0014222524230022692" c="-0.0012299637059245553" d="8.8550445762865907e-05" /> - <width sOffset="223.95787645113631" a="3.828812826159655" b="-0.0046523816022229058" c="-0.00087089729546659025" d="7.0800816982335502e-05" /> - <width sOffset="229.27804683618746" a="3.7900727169408275" b="-0.0079071414041440823" c="0.00046297549179521991" d="0.00010083605443236973" /> - <width sOffset="233.16370526709898" a="3.7722541769087266" b="0.00025815938022036647" c="9.0198227306674452e-05" d="-1.454184135820254e-05" /> - <width sOffset="233.96740382502645" a="3.7725123719291416" b="0.00037496465603310781" c="3.5507550025518401e-05" d="-1.5913682565000721e-05" /> - <width sOffset="240.21509944949906" a="3.772360147450156" b="-0.0010448643769310406" c="-0.0002445902599747662" d="-9.2674040011860084e-06" /> - <width sOffset="243.97693119891659" a="3.7644749030010733" b="-0.0032785188024569171" c="-0.00035624459586316412" d="-1.0136830263676313e-05" /> - <width sOffset="245.03712882963185" a="3.7605865195531125" b="-0.0040680801253756872" c="-0.00059990255278976853" d="6.1069231866269831e-05" /> - <width sOffset="251.97436680231982" a="3.7238831641681767" b="-0.0035744937204973729" c="0.00036218139344577698" d="-5.6740625411551391e-06" /> - <width sOffset="253.98645857280678" a="3.7181110301537368" b="-0.0021859238710125097" c="0.00033007812963734549" d="-6.2315312687840593e-06" /> - <width sOffset="258.36774353482787" a="3.7143458595870538" b="0.0003475537927018703" c="0.00022297331269307381" d="-2.743960179000349e-05" /> - <width sOffset="261.67198252879354" a="3.7169387800612457" b="0.00092231168899104075" c="-0.000106219651500128" d="-2.1384253959735793e-06" /> - <width sOffset="263.99598594669698" a="3.7184817027507009" b="0.00039395316808346192" c="-0.00012000620135903692" d="-8.4682270024115691e-07" /> - <width sOffset="267.53659693634012" a="3.7183345626972817" b="-0.00048768450320407688" c="0.00025261941088159555" d="-1.1861878163572947e-05" /> - <width sOffset="274.00551332058711" a="3.7225400489710916" b="0.0012915154415537233" c="2.2322737858753895e-05" d="-1.1877998580699388e-05" /> - <width sOffset="274.24765613753021" a="3.722853920371521" b="0.0013002366896090823" c="-0.00061961287881751644" d="2.4213752683029571e-05" /> - <width sOffset="277.68645977470618" a="3.7209826825245487" b="-0.0021022075662767226" c="7.2256006035328657e-05" d="2.3657685679177798e-05" /> - <width sOffset="284.01504069447725" a="3.7165690218504737" b="0.0016548857936376578" c="0.00053250224020709447" d="1.8855804236127206e-05" /> - <width sOffset="285.43818368654297" a="3.7200570058043869" b="0.0032851074724804569" c="-0.00035488174453323279" d="-3.2457066753258416e-05" /> - <width sOffset="287.82152445868519" a="3.7254312891798507" b="0.0010404002927544291" c="-0.00034659813882702132" d="3.7299584434462844e-05" /> - <width sOffset="288.69682167203598" a="3.7261014174316207" b="0.00051937821666121309" c="-0.00026746450263402742" d="5.1063187958801242e-05" /> - <width sOffset="292.34461943346128" a="3.7269155711017183" b="0.00060647136865572902" c="0.00049756237981140683" d="-2.6459157231999215e-05" /> - <width sOffset="294.02456806836744" a="3.7292131979596364" b="0.0020542085733177761" c="0.00037267646042599698" d="-2.5730794531438664e-05" /> - <width sOffset="299.88752424684702" a="3.7488817592610273" b="0.0037707493964074914" c="0.00055735633202453477" d="-0.00011438264494036666" /> - <width sOffset="300.87840377971634" a="3.7530540722230969" b="0.0045383782202957513" c="0.00096885630175051491" d="-0.00014715022752420943" /> - <width sOffset="303.38819246448685" a="3.7682209705667788" b="0.0066209122138779037" c="0.00044360928776973553" d="-2.8905925618812973e-05" /> - <width sOffset="304.03409544225764" a="3.7726747180051499" b="0.0071577914874814139" c="0.00039118306689892046" d="-2.8340387389863745e-05" /> - <width sOffset="309.96580548963414" a="3.8229816355528699" b="0.0088070753019022837" c="0.00045296936587565974" d="-9.5300246091084372e-05" /> - <width sOffset="312.70686666172219" a="3.8485630319401558" b="0.0091422175026263392" c="-0.0017847660466837967" d="1.8334481628045379e-05" /> - <width sOffset="313.20011708189452" a="3.8526404084105104" b="0.0073949264146189672" c="-0.001683226703065966" d="0.0001392107509481425" /> - <width sOffset="314.04362281614777" a="3.8577640003691829" b="0.0048524498137555638" c="-0.001330445797707867" d="0.00013933148106127984" /> - <width sOffset="317.05314358773262" a="3.8641152953186131" b="0.00063030694191916221" c="-0.00095618865364671777" d="7.92717846811488e-05" /> - <width sOffset="322.3741377262412" a="3.8523391534528271" b="-0.0028121804657804551" c="0.00041074499299254957" d="3.0445270740417801e-05" /> - <width sOffset="324.05315019003791" a="3.8489194974136796" b="-0.0011754053182770115" c="0.00059206741610052247" d="3.6412144853793521e-05" /> - <width sOffset="324.30433931338212" a="3.8486621825504135" b="-0.00087107114843561727" c="-0.0001054122898015733" d="-2.8663718623383609e-06" /> - <width sOffset="334.0626775639281" a="3.827460527315699" b="-0.0037472209119032672" c="-0.00017377609232347479" d="-2.5034147571008406e-06" /> - <width sOffset="341.64136598496884" a="3.7879906937832946" b="-0.006812572911043327" c="0.00089316478210375156" d="-6.1574472872482508e-05" /> - <width sOffset="344.0722049378183" a="3.7758236754347729" b="-0.003561820043150192" c="0.00045577540336014049" d="-5.9092358724604298e-05" /> - <width sOffset="347.57226160604125" a="3.7664068249847094" b="-0.002543055069201397" c="-0.0018624179430770504" d="0.00031184706443105443" /> - <width sOffset="351.10386955738375" a="3.747933163677899" b="-0.00402940703652639" c="0.00018791158831201762" d="-0.00017652116977424359" /> - <width sOffset="352.41848485757794" a="3.7425597501013366" b="-0.0044505428847131769" c="0.00091810689703566777" d="-0.0001082492456845987" /> - <width sOffset="354.08173231170844" a="3.7371991637944957" b="-0.0022948445387083643" c="0.00039366340113714275" d="-0.00010343279159783403" /> - <width sOffset="359.56677240252736" a="3.7193868839011879" b="-0.0073118583550261197" c="-0.003848322183965973" d="0.00041904112915384223" /> - <width sOffset="359.7443546376652" a="3.717969415865968" b="-0.0086390017129175864" c="-0.0041162670115457373" d="0.00086656287771729075" /> - <width sOffset="362.77765294639175" a="3.6780763553072324" b="-0.009691261659220898" c="0.0020285923700602494" d="0.00027741182119938337" /> - <width sOffset="363.7533796968703" a="3.6708093357406479" b="-0.0049402342858435346" c="0.00048526942925194061" d="-6.7037870912662478e-05" /> - <width sOffset="364.09125968559857" a="3.6691929433191586" b="-0.0046352683378674247" c="0.00046034165474354851" d="-5.4364215797552147e-05" /> - <width sOffset="368.55057810790254" a="3.6528561452850115" b="-0.0037728305254314809" c="0.00023897237404616454" d="-1.9557723764176828e-05" /> - <width sOffset="373.79541923554473" a="3.6368202571831358" b="-0.0028800888814564246" c="0.00045378726982851309" d="-4.1781333243091147e-05" /> - <width sOffset="374.10078705948877" a="3.635981896408095" b="-0.0026146330855126914" c="0.00043560247118214245" d="-4.1680962753551409e-05" /> - <width sOffset="378.34102793585242" a="3.6295495252086836" b="-0.0011687407290103275" c="-0.0010657355739197567" d="8.068640157612498e-05" /> - <width sOffset="383.63546681307054" a="3.6054625530321753" b="-0.0056685027751911003" c="0.0005938786912494373" d="6.9947796182549671e-05" /> - <width sOffset="384.11031443337896" a="3.6029122751260969" b="-0.0050571834662654722" c="0.00069110488674705101" d="7.1237259324458021e-05" /> - <width sOffset="387.21937842704716" a="3.5960104797321866" b="0.0013059928258817317" c="0.00099301509957702228" d="-8.958290200767741e-05" /> - <width sOffset="388.49147473940758" a="3.5990943439773782" b="0.0033975175611593604" c="0.00098427773436375187" d="-7.1199374108862481e-05" /> - <width sOffset="394.1198418072691" a="3.6367025492813507" b="0.0077107988288261514" c="-0.00023285359457540938" d="-6.9208119074213318e-05" /> - <width sOffset="397.06769931284424" a="3.6556365510150219" b="0.0045337329948654283" c="-0.00093676394038517887" d="0.00013060180053980615" /> - <width sOffset="400.42803921830802" a="3.6652492339840896" b="0.0026622637485780119" c="0.00029520649639940314" d="0.00018266762359204477" /> - <width sOffset="401.48839248213579" a="3.6686218668332486" b="0.0039044565964212888" c="0.00091970039244769822" d="-7.615345037361213e-05" /> - <width sOffset="404.12936918115923" a="3.6839453735847325" b="0.007168815565016402" c="0.00029673804464721984" d="-7.7173010210217235e-05" /> - <width sOffset="407.28320924826875" a="3.707085295479505" b="0.0067376922325927732" c="-0.00047989668489915855" d="-0.00016167854521921467" /> - <width sOffset="407.48180221913032" a="3.7084031607491226" b="0.0065279546139146855" c="-0.00021544256867345239" d="3.5423176094380163e-05" /> - <width sOffset="411.4419870031715" a="3.733076324374252" b="0.006488201612027236" c="0.00012425347772201982" d="-0.00012255911220039384" /> - <width sOffset="411.77773672911832" a="3.7352641044576127" b="0.0065301902680955162" c="0.00020406618563680701" d="-7.475823550666379e-05" /> - <width sOffset="414.13889655504948" a="3.7508365209519177" b="0.0062435075550736083" c="-0.00032540952676583329" d="-7.4718633697354206e-05" /> - <width sOffset="414.72521009562109" a="3.7543702502498797" b="0.0057848668992144837" c="-0.00059065860836979192" d="5.8364832532530462e-05" /> - <width sOffset="420.95447647672967" a="3.7815938388253656" b="0.0052204520758096637" c="0.00075015446610931526" d="3.1952214041788262e-05" /> - <width sOffset="421.38420306342977" a="3.7839782686877101" b="0.0058828760732518104" c="0.00055018836380979659" d="-4.1314509829246262e-05" /> - <width sOffset="424.14842392893962" a="3.803571169808194" b="0.0079775181629849756" c="0.00021345551636298534" d="-3.9738714297465297e-05" /> - <width sOffset="430.76631612712896" a="3.8541962402400718" b="0.005581519893736642" c="-0.00045082187111776843" d="-2.420330050138061e-05" /> - <width sOffset="431.06662825058658" a="3.8558311243609831" b="0.0053041968507423279" c="0.0017019338300634423" d="-0.00047380307529964869" /> - <width sOffset="434.15795130282976" a="3.8744953895538501" b="0.0022432693975919854" c="-0.002690503795696352" d="-0.00047438558567137741" /> - <width sOffset="435.10001811439366" a="3.8738242825045139" b="-0.0040890364829074162" c="-0.00031134189434508245" d="2.0675983017606725e-05" /> - <width sOffset="437.37567100498001" a="3.8631504008904347" b="-0.0051848309528451488" c="0.00010125984521574697" d="-1.1884506700123723e-07" /> - <width sOffset="444.1674786767199" a="3.8325697725595593" b="-0.0038258026537111396" c="9.8703805617731278e-05" d="2.0718092902685355e-07" /> - <width sOffset="447.41615727204709" a="3.821189784169106" b="-0.0031779290642740513" c="-0.00026430988406520668" d="-1.9734698398202393e-05" /> - <width sOffset="451.22889712826924" a="3.8041370881699565" b="-0.0060540677792993028" c="-0.0051595827131998969" d="0.0010977788064269961" /> - <width sOffset="454.49589209817674" a="3.7675679010066805" b="-0.0046161061845479412" c="0.0060025194634363887" d="-0.0052935248100248623" /> - <width sOffset="454.83799458370498" a="3.766479278787044" b="-0.0023677214331154087" c="0.0022805386276679601" d="-0.0055389816419441507" /> - <width sOffset="455.25118284458705" a="3.7654995806086098" b="-0.0033200581151330692" c="-0.0023662514153746685" d="0.00029315874473891113" /> - <width sOffset="457.1296268806679" a="3.752856707200372" b="-0.0091065222110050595" c="-0.0002943374996546236" d="0.0005527583402260332" /> - <width sOffset="458.53690703463047" a="3.740998916458711" b="-0.0066508429316026584" c="0.00071575826761818991" d="-3.5059927450851474e-05" /> - <width sOffset="464.18653342450028" a="3.7199476816647441" b="-0.0019204669060038041" c="0.00012816581596554672" d="-3.7076117516193983e-05" /> - <width sOffset="467.20132673585766" a="3.7143068300163748" b="-0.0021586321448539662" c="-0.00029886469363444548" d="-6.805553081823458e-05" /> - <width sOffset="467.64103300025812" a="3.7132940973223056" b="-0.0024609313962923873" c="-0.00076032370897584367" d="0.0002396216445777283" /> - <width sOffset="470.13531472195751" a="3.7061439870229673" b="-0.001781478463010841" c="0.0016152145781485213" d="0.00019640112756102153" /> - <width sOffset="470.89890649295018" a="3.7058128952900704" b="0.0010287988836570651" c="0.0017041889678042577" d="-0.00012559321009885302" /> - <width sOffset="474.19606079839042" a="3.7232298512481945" b="0.0081706901618456874" c="0.0004617648127296166" d="-0.00012223018278439615" /> - <width sOffset="478.13562881701756" a="3.7551120173882571" b="0.0061178886931911314" c="-0.0010975068032133847" d="1.1452441640129576e-05" /> - <width sOffset="478.98764339381165" a="3.7595349192520486" b="0.0042726460772475154" c="-0.00018694951007284404" d="-3.176746273877061e-05" /> - <width sOffset="482.39798120756933" a="3.7706717752599976" b="0.0018891188328211857" c="-0.00049286535995786093" d="0.00010926702403140433" /> - <width sOffset="484.20558817228056" a="3.7731215088253736" b="0.0011783764165402312" c="9.4619933398919784e-05" d="0.00010685548049682503" /> - <width sOffset="486.08000778359502" a="3.7763664387208129" b="0.0026593851386981712" c="0.00074985933444488484" d="-0.00012664729504751216" /> - <width sOffset="489.81416825726575" a="3.790158620601487" b="0.0029616829762301837" c="-0.0010437336407435665" d="0.00034869940278264898" /> - <width sOffset="491.26229209724391" a="3.7933176620721962" b="0.0021325053278780787" c="0.00019303565728644401" d="0.00029823529778996222" /> - <width sOffset="492.98891442714176" a="3.7991103270646209" b="0.0054664239623512315" c="0.0015090008526009295" d="-0.00025263041387223282" /> - <width sOffset="494.21511554617081" a="3.8076163802345686" b="0.0080275591145503832" c="0.00054824027536366847" d="-0.00023946509147377448" /> - <width sOffset="495.13314212767222" a="3.8152626636520695" b="0.0084287134061671737" c="-0.0002307169325298522" d="-0.00021322536249412336" /> - <width sOffset="496.16807670248744" a="3.8235023501344338" b="0.0072660091570945599" c="-0.00081424723665386603" d="0.00011218666149481921" /> - <width sOffset="502.57142926730734" a="3.8660979520656822" b="0.010638128383254727" c="0.0014265524023044961" d="-3.3317370202734468e-05" /> - <width sOffset="504.22464292006094" a="3.8874334414681639" b="0.015081739548038462" c="0.001220581165818283" d="-4.7100037010886963e-05" /> - <width sOffset="508.2896797215821" a="3.9657469494531261" b="0.02267023716072834" c="0.0050135833857531164" d="-0.00061628232698020616" /> - <width sOffset="514.23417029395114" a="4.1482183624869275" b="0.016943988594093726" c="-0.005971590260770555" d="-0.00061932028453965011" /> - <width sOffset="515.32917080431821" a="4.1587988191691885" b="0.0016384562384371866" c="-0.0076593370462595504" d="-0.00042404075829368716" /> - <width sOffset="516.4352832979655" a="4.1506661938639215" b="-0.016862142890294793" c="-0.0041902246287313961" d="0.00063345509466884145" /> - <width sOffset="518.49482785741816" a="4.1036979595540046" b="-0.026061226924904833" c="-0.00029935313640426975" d="0.00037705949071063408" /> - <roadMark sOffset="0" color="standard" width="0.30074322676080184" weight="bold" type="solid"> - <type name="solid"> - <line length="521.70150533050469" space="0" width="0.30074299999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4929733837263752" b="0.0010884076601373714" c="0.00010740662738035903" d="-1.819096791995305e-05" /> - <width sOffset="3.6607340635815149" a="2.4975047065129856" b="0.0011434518010736174" c="-0.0018005029174446385" d="0.00030709680215179115" /> - <width sOffset="3.7482742255526489" a="2.4975912127252191" b="0.0008352792733272163" c="-0.0016956493744521006" d="0.00030516708592300565" /> - <width sOffset="6.8766494994387699" a="2.4929525834351587" b="-0.00081421055707995606" c="0.0018232933881298439" d="-0.00091250391686036329" /> - <width sOffset="7.8810639080073202" a="2.4930495632259984" b="8.6739655953101472e-05" c="0.0017787800508014097" d="-0.00083551747679730588" /> - <width sOffset="9.4104291658296972" a="2.494353964518754" b="-0.00033517261171270817" c="-0.00077035309276896286" d="0.00018921502299427219" /> - <width sOffset="12.569292942251678" a="2.4915724394852008" b="0.00046214754113290193" c="-4.215422900659101e-05" d="2.0000622741694629e-05" /> - <width sOffset="13.757801599442814" a="2.4920957384341125" b="0.0004467020175723535" c="3.5425984228176885e-05" d="-1.7455166423186767e-05" /> - <width sOffset="17.592471419070705" a="2.4933453657301139" b="-5.1622648270015226e-05" c="-7.1153435648963235e-05" d="1.8507845103754972e-05" /> - <width sOffset="23.139028086587331" a="2.494028155280489" b="0.00086720641612217375" c="-5.6817622376712282e-05" d="-8.7782863164603592e-06" /> - <width sOffset="23.76732897333298" a="2.4945484151298802" b="0.00078541328937438773" c="-2.5470620106519673e-05" d="-5.9829501385040569e-06" /> - <width sOffset="28.678876478692985" a="2.4970826981730405" b="0.00010222748464835257" c="-0.00041850020682730597" d="3.7416811404851026e-05" /> - <width sOffset="33.776856347223145" a="2.4916847648252944" b="-0.0012474624805812358" c="0.00014517464760267966" d="4.2421018000479382e-05" /> - <width sOffset="35.607716668511955" a="2.4901478113656887" b="-0.00028928141809515459" c="0.00030717251770158926" d="-2.7131035133619628e-05" /> - <width sOffset="42.647259007698949" a="2.4938688419092703" b="1.9784059333942394e-06" c="0.00011452192186680404" d="-3.7112560429043646e-05" /> - <width sOffset="43.78638372111331" a="2.4939648424523617" b="0.00011841556431153866" c="4.6122985633026303e-06" d="-2.3109095498567904e-05" /> - <width sOffset="46.377635793821298" a="2.4939005772068814" b="-0.00032318529701026374" c="-0.0003279589518790755" d="0.00011573588370825367" /> - <width sOffset="49.625072046866904" a="2.4933560512580413" b="0.0012083602288072322" c="-0.00062353884274863268" d="0.0001038004709303215" /> - <width sOffset="53.079370255830696" a="2.4943682871337889" b="0.0006162785136896963" c="0.00060038851673625631" d="-0.00014184719247999067" /> - <width sOffset="53.795911095003476" a="2.4950659490503826" b="0.001258198155357021" c="0.00029514619231907818" d="-0.00014158826981043712" /> - <width sOffset="56.775923451579359" a="2.4976894522683266" b="-0.00075483594005406815" c="-0.0013771063091740938" d="0.00029420855145279907" /> - <width sOffset="59.89193451119931" a="2.4908676030124184" b="-0.00076711713010607294" c="0.00088115011259947687" d="-0.00013966917330407086" /> - <width sOffset="63.008501137803165" a="2.4928074817481525" b="0.00065539411854499165" c="-0.00011944683141253788" d="7.1792317104439942e-06" /> - <width sOffset="63.805438468893641" a="2.493257561728885" b="0.00047868962686279" c="-0.00011526993640093192" d="9.1242497128058982e-06" /> - <width sOffset="67.286545021017304" a="2.4939119794480322" b="7.8615538519136163e-06" c="-0.00013448030031306887" d="9.5230395877166516e-06" /> - <width sOffset="73.814965842783806" a="2.4908814353188489" b="-0.00053040263543676844" c="4.9428604019042833e-05" d="9.6056847737159655e-06" /> - <width sOffset="76.408965663498208" a="2.4900058312580948" b="-8.0061849782804215e-05" c="-5.1564971966824283e-06" d="-9.9558335579021474e-07" /> - <width sOffset="79.574492778864141" a="2.4896691420393435" b="-0.00014263682715999829" c="0.00031723063080311108" d="-2.9905131119106159e-05" /> - <width sOffset="83.824493216673972" a="2.4924972281203512" b="0.00093333918605700925" c="-5.169384705176454e-05" d="-3.5025844140816747e-05" /> - <width sOffset="86.371588569556479" a="2.4939603638567021" b="-1.1710083179333926e-05" c="0.00040308086543448487" d="-5.2741021066541471e-05" /> - <width sOffset="90.733370990757152" a="2.4972013222966534" b="0.00049437512265083569" c="-0.0004126769338276393" d="3.3351904092819326e-05" /> - <width sOffset="93.834020590564137" a="2.4957609300694514" b="-0.0011028196033141917" c="-0.00010525425293653933" d="3.2529999649133287e-05" /> - <width sOffset="98.943174075794929" a="2.4917173695371568" b="0.00036909572342319792" c="0.0005377871195271491" d="-0.00014348657324638237" /> - <width sOffset="101.71307831983151" a="2.4938164930974445" b="4.5687339153489999e-05" c="0.00055835379691473899" d="-0.00013805758491586989" /> - <width sOffset="103.65037945928648" a="2.4949967704428277" b="0.0006546396792623671" c="-0.00014976684760848933" d="1.9209593273827829e-05" /> - <width sOffset="103.8435479644543" a="2.4951177762611407" b="0.00059892956749327264" c="-0.00017018647255188381" d="8.3212546006178783e-06" /> - <width sOffset="113.85307533834447" a="2.4924067480345156" b="-0.00030690731545819291" c="7.4611967813527813e-05" d="8.3928244049541034e-06" /> - <width sOffset="117.79491791144812" a="2.4928703483467713" b="0.00067253615744344419" c="2.313994214684853e-05" d="-7.7350957989100357e-05" /> - <width sOffset="119.55827326820653" a="2.493704103879236" b="3.2593701346251072e-05" c="0.00038222131873844224" d="-5.0809476770070669e-05" /> - <width sOffset="123.72868075691571" a="2.4968023778334012" b="0.00056955022294988104" c="-0.00033700020094909044" d="3.3429032973286327e-05" /> - <width sOffset="123.86260271223463" a="2.4968726892772133" b="0.00048108542940415548" c="-0.00033347745953186698" d="2.8581977434463743e-05" /> - <width sOffset="130.78330201301958" a="2.4937040668415271" b="-2.7815081215173953e-05" c="-0.00024414813270151852" d="3.014553904864818e-05" /> - <width sOffset="133.8721300861248" a="2.4921771591889801" b="-0.00067323529334918121" c="5.0636966877204502e-05" d="3.4243974704465567e-05" /> - <width sOffset="136.9982764156295" a="2.491613585276085" b="0.00064733945332282614" c="-0.00013860790203363188" d="3.9644852533022989e-06" /> - <width sOffset="143.88165746001499" a="2.4907950787492257" b="-0.00069731950804330064" c="-5.4687364322608174e-05" d="3.8387981143668772e-06" /> - <width sOffset="144.22429216877686" a="2.4905498870806944" b="-0.00073344307841170244" c="0.00041153216514860593" d="-3.5211506896729864e-05" /> - <width sOffset="150.84772534916118" a="2.4935144602071695" b="8.3896133145463809e-05" c="6.6071913977778997e-05" d="-1.0593871984373594e-05" /> - <width sOffset="153.89118483390513" a="2.4940831490075377" b="0.00019168867339868726" c="-3.2854167758514566e-05" d="-1.1096996129566394e-05" /> - <width sOffset="157.40720983798525" a="2.4938686248594801" b="-0.00045090105174125546" c="0.00018292201378073444" d="-1.9515725369512108e-05" /> - <width sOffset="161.94062599055133" a="2.4937656078069894" b="4.3686875324747826e-06" c="0.00023546034108157187" d="-3.1500256040747408e-05" /> - <width sOffset="163.90071220779527" a="2.4944415812251179" b="0.00056434773596062294" c="5.2250323819561033e-05" d="-3.0569066642738167e-05" /> - <width sOffset="167.39891193984164" a="2.4957465631802616" b="-0.00019234594007955415" c="-0.00024511493764974533" d="2.2106510228988852e-05" /> - <width sOffset="173.91023958168546" a="2.4902046984831667" b="-0.0005726184260478424" c="0.00019804060823564948" d="2.1132568264828694e-05" /> - <width sOffset="174.54449011481074" a="2.4899265732898472" b="-0.00029590047160341082" c="0.00039952630820353304" d="-3.9993004179655436e-05" /> - <width sOffset="180.83245019971861" a="2.4939197041733054" b="-1.5272745909249499e-05" c="0.00024012011554509053" d="-3.9070088967922144e-05" /> - <width sOffset="183.91976695557565" a="2.4950115540900804" b="0.0003501884063082765" c="-0.0001131108371088507" d="-3.7075934521781472e-05" /> - <width sOffset="186.2640200452434" a="2.4947332357898113" b="-0.00079138735492863081" c="0.00011102114376906354" d="-4.272669664339937e-06" /> - <width sOffset="193.92929432946579" a="2.4932658979968827" b="0.00015748723550330955" c="-2.4684604809789405e-06" d="-1.7125437446301603e-06" /> - <width sOffset="198.57822085756993" a="2.4937726270917975" b="2.3498705857240114e-05" c="0.00063132794600412063" d="-4.3843952005510455e-05" /> - <width sOffset="199.58615734482441" a="2.4943928048994821" b="0.001162547707539323" c="-0.00082132572008908214" d="0.00013754948907317513" /> - <width sOffset="203.93882170335593" a="2.4952353157029683" b="0.001830546038797589" c="0.00093948553271613997" d="0.00013483656294380642" /> - <width sOffset="203.98022187088276" a="2.4953127204371381" b="0.0019090290747697924" c="-0.0005535850355228814" d="3.4428398155984754e-05" /> - <width sOffset="213.16041335263759" a="2.4928202729831441" b="0.00044945015571788097" c="0.00084131421212622665" d="-0.00064754481812845366" /> - <width sOffset="214.16442124425993" a="2.493464234071975" b="0.00018058497632634379" c="0.0010330470403328487" d="-0.00063972011300579361" /> - <width sOffset="215.28430738624166" a="2.4940635728092566" b="8.7469817562095455e-05" c="-0.0004630480710575537" d="5.3247724452073587e-05" /> - <width sOffset="222.3737910289251" a="2.4903839192963475" b="0.0015507425906560891" c="-0.00013756266337800534" d="-2.5150810590410754e-05" /> - <width sOffset="223.95787645113631" a="2.4923952642106149" b="0.00092558577531046127" c="-0.00027442369512101981" d="1.430976811893725e-05" /> - <width sOffset="225.88525047214563" a="2.4932622475053177" b="2.7224092285694883e-05" c="-0.00020025906749839318" d="3.3798433178619484e-05" /> - <width sOffset="229.27804683618746" a="2.4923694056289079" b="-0.00016448427640221655" c="-6.0101021923227488e-05" d="3.7631957285742676e-06" /> - <width sOffset="233.96740382502645" a="2.4906645125682121" b="-0.00047989576994334621" c="-7.2498150607922126e-06" d="4.2643068808409923e-06" /> - <width sOffset="240.21509944949906" a="2.4884232221766189" b="-7.1130011244242982e-05" c="5.4502734470133964e-05" d="-2.381971682991714e-06" /> - <width sOffset="243.97693119891659" a="2.4888001273365337" b="0.00023780567687072592" c="2.7673789940072858e-05" d="-1.6394373731270362e-06" /> - <width sOffset="253.98645857280678" a="2.4923089767469038" b="0.00029903996241204813" c="-2.0106359256440142e-05" d="-2.0137545653370428e-06" /> - <width sOffset="258.36774353482787" a="2.4930638411666464" b="6.8905522071617889e-06" c="-0.00011436856038049148" d="1.7563979713834559e-05" /> - <width sOffset="261.67198252879354" a="2.4924715660539736" b="-0.00017362121614252542" c="0.00011693015715098146" d="-7.7371966801914837e-06" /> - <width sOffset="263.99598594669698" a="2.4926024918826499" b="0.00024450534412737493" c="6.1894612358034221e-05" d="-8.1364890270684344e-06" /> - <width sOffset="274.00551332058711" a="2.4930913685313389" b="-0.00096202310866007681" c="-0.00018621328634420785" d="-8.5503306449129498e-06" /> - <width sOffset="274.24765613753021" a="2.4928473818813242" b="-0.001053707526372176" c="0.00044088261077816624" d="-4.4642081910786311e-05" /> - <width sOffset="279.24340821011873" a="2.4930206155798094" b="8.9034364630169796e-06" c="0.00036960367907992438" d="-5.8736208312282396e-05" /> - <width sOffset="284.01504069447725" a="2.4950971459387863" b="-0.00047587266822717673" c="-0.00047495591905235125" d="-5.389439140142504e-05" /> - <width sOffset="285.43818368654297" a="2.4933026236704112" b="-0.0021551957931170624" c="0.00026283330635944017" d="-2.581520412038383e-06" /> - <width sOffset="288.69682167203598" a="2.4889812472403592" b="-0.00052447594027089906" c="0.00025640761568773712" d="-1.6345123936059691e-05" /> - <width sOffset="294.02456806836744" a="2.4909932408395488" b="0.00081581033456928193" c="-5.3455792888772927e-07" d="-1.7775809263750486e-05" /> - <width sOffset="297.94337681645192" a="2.4931122633853917" b="-7.3319411148006341e-06" c="0.00030080163432108048" d="-3.3869967819483741e-06" /> - <width sOffset="300.87840377971634" a="2.4955963295540933" b="0.0016708592082443944" c="-0.00048053938140444946" d="2.9380585801978516e-05" /> - <width sOffset="304.03409544225764" a="2.4970069502881387" b="-0.0004842590466071009" c="-0.00020201101081843479" d="2.9079910063850008e-05" /> - <width sOffset="309.96580548963414" a="2.4930958903160598" b="0.00018874543470326528" c="-0.00025063740756930112" d="9.6039768765966989e-05" /> - <width sOffset="310.96752396686855" a="2.4931299962749782" b="-2.4280399696473623e-05" c="-0.00045434747555254615" d="0.00010796703939522525" /> - <width sOffset="313.20011708189452" a="2.4920125951223921" b="-0.00043855043123649379" c="0.00019438305954149626" d="-1.2909229920082181e-05" /> - <width sOffset="314.04362281614777" a="2.4917732316885091" b="-0.00013817880626764735" c="0.00016706173470248771" d="-1.2503212117785402e-05" /> - <width sOffset="322.3741377262412" a="2.4949874781392309" b="4.2167548772589075e-05" c="-0.00024693239193725256" d="3.6323301822700958e-05" /> - <width sOffset="324.05315019003791" a="2.4945340832925105" b="-0.00047984238672136269" c="-4.719323193287981e-05" d="2.2152211389768212e-05" /> - <width sOffset="327.39726453008143" a="2.4932301076404579" b="-5.229028066059023e-05" c="-0.00012102249342172081" d="8.3203254171651079e-06" /> - <width sOffset="334.0626775639281" a="2.4899687076657129" b="-0.00055666055454716909" c="6.5676688554521288e-05" d="1.0712855413339854e-05" /> - <width sOffset="341.64136598496884" a="2.4941854271461517" b="0.0022847531078408756" c="-0.00081461380733917322" d="6.9783913528816835e-05" /> - <width sOffset="344.0722049378183" a="2.4959281192781608" b="-0.00043858200851379717" c="-0.00030211064282755992" d="6.5751560870736696e-05" /> - <width sOffset="347.70570484277954" a="2.4935001138088815" b="-2.9800243582549929e-05" c="-0.00047564132362785028" d="9.7917960881664835e-05" /> - <width sOffset="352.41848485757794" a="2.4930448294511507" b="0.0020113744363902215" c="-0.00051761149673219169" d="2.9646036792334377e-05" /> - <width sOffset="354.08173231170844" a="2.495094733694228" b="0.00053558011342372995" c="-0.00037724670360210087" d="2.5027968183277436e-05" /> - <width sOffset="359.56677240252736" a="2.4908128364966489" b="-0.0013438972893459445" c="0.0025745780822733996" d="-0.00049744595257187349" /> - <width sOffset="362.77765294639175" a="2.4965738627483729" b="-0.00019620794268738291" c="-0.00047636875738792176" d="9.1705103945918256e-05" /> - <width sOffset="364.09125968559857" a="2.4957019874744919" b="-0.0009730016520378234" c="-0.00012101138066361201" d="7.1161413868854124e-05" /> - <width sOffset="366.82044197115079" a="2.4935917222282518" b="-4.3402185485500442e-05" c="0.00017391961154161458" d="3.6988088406243662e-05" /> - <width sOffset="368.55057810790254" a="2.4942287955386258" b="0.00089056424342776508" c="-0.00014000986967934589" d="2.1815963726400346e-06" /> - <width sOffset="374.10078705948877" a="2.495231628902844" b="-0.00046199277375207938" c="-0.00010417853192224493" d="3.0417051116440504e-06" /> - <width sOffset="378.34102793585242" a="2.491631469041697" b="-0.0011814105995208365" c="0.00090564023412302715" d="-0.00011932565921804307" /> - <width sOffset="382.63047486471038" a="2.4938095213463525" b="1.4353645459881659e-06" c="0.00071170832669917999" d="-0.00010791245752321343" /> - <width sOffset="384.11031443337896" a="2.4950205174293183" b="0.0013989030370853903" c="0.00023353959196803866" d="-0.00010704621059458007" /> - <width sOffset="387.21937842704716" a="2.4984101870245259" b="-0.0002531334757045773" c="-0.00040236758399670022" d="5.3773950737509711e-05" /> - <width sOffset="392.51441242506286" a="2.4937717237361792" b="8.8093362448694347e-06" c="-0.000603161867719287" d="0.00010280849713283332" /> - <width sOffset="394.1198418072691" a="2.4926566800346506" b="-0.0011329212916794625" c="-0.00013092368318403476" d="8.6987859642976987e-05" /> - <width sOffset="397.06769931284424" a="2.4904076033222529" b="0.00036292796080832686" c="0.00073022308767413922" d="-0.00011282205997103888" /> - <width sOffset="401.48839248213579" a="2.4965355323841445" b="0.00020462756144516009" c="-0.00080944930534015817" d="0.00014599901399425696" /> - <width sOffset="404.12936918115923" a="2.4941195631678301" b="-0.0010159226078414693" c="0.00036790430254924987" d="0.00014699878467168453" /> - <width sOffset="405.01530344191559" a="2.4936104989214076" b="-1.7915551044339357e-05" c="-0.00034538253169979165" d="0.00012835126660901605" /> - <width sOffset="407.48180221913032" a="2.4933910759935816" b="0.00062083280616947751" c="0.00024357341064515023" d="-6.8750454733276063e-05" /> - <width sOffset="411.4419870031715" a="2.4953997243748995" b="-0.00068462901116860247" c="-0.00049206918102705785" d="8.9231833559274434e-05" /> - <width sOffset="414.13889655504948" a="2.4917246907532462" b="-0.0013917258184042002" c="0.00022968115697878785" d="8.8657205346202527e-05" /> - <width sOffset="414.72521009562109" a="2.4910055282216486" b="-0.0010309641220269845" c="0.00051944735846311068" d="-4.4426260887488436e-05" /> - <width sOffset="421.38420306342977" a="2.4940558437737708" b="-2.2844257696968961e-05" c="-0.00012689686810436385" d="2.8840462988208741e-05" /> - <width sOffset="424.14842392893962" a="2.4936322334371508" b="-6.3283447635916965e-05" c="0.00010637686723408458" d="2.7266432428561532e-05" /> - <width sOffset="424.40299339890072" a="2.4936234670505457" b="-3.8217884714992351e-06" c="-0.00016141808327074241" d="1.6789580070431289e-05" /> - <width sOffset="430.76631612712896" a="2.4913890782259407" b="-1.8607714374178214e-05" c="3.4412271643002561e-05" d="1.2541662744792418e-06" /> - <width sOffset="434.15795130282976" a="2.4917707493395138" b="0.00025810076328464885" c="4.7624778940154264e-05" d="1.5643095171628898e-06" /> - <width sOffset="437.37567100498001" a="2.4931464544297168" b="0.00061317641088339675" c="-0.00020872235040036711" d="2.235913760183456e-05" /> - <width sOffset="441.15431876451981" a="2.4936895819011036" b="-6.4567729691046918e-06" c="0.00020555358473099428" d="-2.2926455371208088e-05" /> - <width sOffset="444.1674786767199" a="2.4949091786200652" b="0.00060781788069801178" c="-1.7559563544448139e-07" d="-2.2223410207614733e-05" /> - <width sOffset="451.22889712826924" a="2.4913674395316212" b="-0.0027190817761425703" c="0.0041985810234101027" d="-0.0011397369150328389" /> - <width sOffset="453.24961974081742" a="2.4936128168675773" b="0.00028752225445289464" c="0.0022276838015740318" d="-0.0017487802367674992" /> - <width sOffset="454.49589209817674" a="2.494046054348332" b="-0.0023084653109471985" c="-0.0047134742635959494" d="0.0046425233796842467" /> - <width sOffset="455.25118284458705" a="2.4916139306593754" b="-0.0014833733741178847" c="0.0035867540503873845" d="-0.0011896170069847179" /> - <width sOffset="457.0191164691808" a="2.4936285184725215" b="4.4150235687075504e-05" c="0.0012061838872219587" d="-0.00057678966992885054" /> - <width sOffset="458.53690703463047" a="2.494457446437969" b="-0.0002806113863398612" c="-9.6592111439153234e-05" d="1.1028597748040711e-05" /> - <width sOffset="464.18653342450028" a="2.4917777897972431" b="-0.0003159885119834744" c="9.2986422904279718e-05" d="1.1042392048244062e-05" /> - <width sOffset="467.64103300025812" a="2.4922510844809005" b="0.000721779991573121" c="0.00057910992449813773" d="-0.00029663478334705508" /> - <width sOffset="469.40768665599268" a="2.4936980624674092" b="-9.4961222937804679e-06" c="0.00067955200215780577" d="-0.00029390379988837459" /> - <width sOffset="470.89890649295018" a="2.4942204377698189" b="5.6532817474447272e-05" c="-0.00027433706269283035" d="2.8090537770765463e-05" /> - <width sOffset="474.19606079839042" a="2.4924313352051541" b="-0.00083639464031806665" c="6.0898881713852614e-06" d="2.7704599410255458e-05" /> - <width sOffset="478.13562881701756" a="2.4909247565665384" b="0.00050153087029206761" c="0.00044819160850602169" d="-0.00010597802501451499" /> - <width sOffset="481.41366989198326" a="2.493651853531746" b="2.3534328746639688e-05" c="0.00040817518859818643" d="-7.2690750731468863e-05" /> - <width sOffset="484.20558817228056" a="2.4953172765548728" b="0.00060288660292536281" c="-0.00021034021707132022" d="-7.4754448857494544e-05" /> - <width sOffset="486.08000778359502" a="2.4952160107362875" b="-0.00097358285660657795" c="-0.00068506720837267169" d="0.00015874832668683674" /> - <width sOffset="489.81416825726575" a="2.490293811003693" b="0.00055085366649745837" c="0.0014681369773506502" d="-0.00031659837114332464" /> - <width sOffset="492.98891442714176" a="2.4967093911985039" b="0.00029978063136098382" c="-0.0013183674423088453" d="0.00023426734051854928" /> - <width sOffset="494.21511554617081" a="2.4955266394768043" b="-0.0018766751724579381" c="-0.00046457722848589788" d="0.0002256624637564417" /> - <width sOffset="496.16807670248744" a="2.4917705348852128" b="-0.0011092090483012587" c="0.00077906025448726843" d="-9.9749560232390003e-05" /> - <width sOffset="500.45021796814052" a="2.4934737817582877" b="7.5639676404816447e-05" c="0.00060413889043624215" d="-0.00012765950832214064" /> - <width sOffset="502.57142926730734" a="2.4951341327257603" b="0.00091542597054331334" c="-0.00029392688315473794" d="1.7844523375676227e-05" /> - <width sOffset="504.22464292006094" a="2.495924820469603" b="8.9891522208358082e-05" c="-0.00022455877070735018" d="2.2535699847985126e-05" /> - <width sOffset="510.63025011933445" a="2.4932097183680786" b="-1.2937804525998964e-05" c="-0.00044952646599119442" d="8.1403459545601286e-05" /> - <width sOffset="514.23417029395114" a="2.4911349141912429" b="-8.1189643286358817e-05" c="0.00043041275924574052" d="8.3186825092109367e-05" /> - <width sOffset="515.32917080431821" a="2.4916713064586911" b="0.0011606442666020674" c="0.00035696030957395206" d="-0.00011209270115369841" /> - <width sOffset="518.49482785741816" a="2.4953666859542225" b="5.0699910071727583e-05" c="-0.00068456535112937399" d="0.00014430290280447166" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="648.07708696552413"> - <left> - <lane id="1" type="shoulder" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="2.4932482095113144" b="-0.0012935272995259818" c="0.00030818077388015421" d="-1.8843654810181987e-05" /> - <width sOffset="2.5421923373365871" a="2.4916419146699047" b="-9.1962727124590693e-05" c="0.0001660545214480976" d="-1.7728248788585406e-05" /> - <width sOffset="8.4664272146740132" a="2.4932389860984592" b="8.9276654368988795e-06" c="-0.073551531421246569" d="0.021101952843022437" /> - <width sOffset="9.9605024053350917" a="2.3994446342589164" b="-0.078458930484148107" c="0.00089224711729883675" d="-9.756856679615409e-06" /> - <width sOffset="12.551719711226724" a="2.2019616516361831" b="-0.07403145266525693" c="0.00081445211292315728" d="-1.0514545478189342e-05" /> - <width sOffset="20.917055053947479" a="1.6335029571976216" b="-0.062612509516729267" c="0.0011558634015740854" d="-0.00011620046009704681" /> - <width sOffset="22.561247085116975" a="1.533164197259562" b="-0.059753984348152517" c="0.00059671007974466928" d="-0.00011499799677926032" /> - <width sOffset="24.901256036688665" a="1.3951332345007486" b="-0.058850434038437635" c="7.3905375961186097e-05" d="-3.6196307730961234e-05" /> - <width sOffset="27.02707073443446" a="1.2700143730994424" b="-0.05902693868327482" c="9.9326769687098837e-05" d="3.3224640188186607e-05" /> - <width sOffset="32.570774459007112" a="0.9514996602625152" b="-0.054862418504045579" c="0.00065267128163273272" d="3.3180652491800015e-05" /> - <width sOffset="38.28825337557555" a="0.66536200652434596" b="-0.044145166614490139" c="0.0014601316851982538" d="-3.5838355025336845e-05" /> - <width sOffset="41.777966823296993" a="0.52756659328768896" b="-0.035263613468255212" c="0.0011086109820060335" d="-1.3346851296517976e-05" /> - <width sOffset="42.580301832897248" a="0.49998012689815052" b="-0.033510434427400079" c="0.001080726054943611" d="-1.2857943011132829e-05" /> - <width sOffset="52.589829206787499" a="0.2599404206376863" b="-0.015740056916681837" c="0.00069134327046804561" d="-1.2037890423493051e-05" /> - <width sOffset="55.736820154114639" a="0.21687818048460294" b="-0.011746408511517641" c="0.00067653534639049509" d="-1.7103437680873432e-05" /> - <width sOffset="61.220655394418145" a="0.16998731801321798" b="-0.0058694185330364496" c="0.0044322197604514486" d="-0.0040868646131301863" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16130402690251466" weight="standard" type="solid"> - <type name="solid"> - <line length="62.599356580677636" space="0" width="0.161304" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="4.0294828215462273" b="-0.0163494250022235" c="-0.0003237638096079791" d="5.783442427544109e-05" /> - <width sOffset="2.5421923373365871" a="3.9867772292296788" b="-0.016874257886394968" c="0.0001206151616684947" d="5.9634722605440313e-05" /> - <width sOffset="5.8989771090616614" a="3.9337487089531975" b="-0.014048606731307763" c="-0.00049351075580741531" d="2.6915514171010336e-05" /> - <width sOffset="12.403432912260882" a="3.8288976259725951" b="-0.017052424226949241" c="0.0019779427157280926" d="-0.00013606903879791145" /> - <width sOffset="12.551719711226724" a="3.8264120258249319" b="-0.016474794695216701" c="0.0019172749082296712" d="-0.00013612562778426716" /> - <width sOffset="19.825963571585135" a="3.7556255889066956" b="-0.010190453362310977" c="0.00021737108693687941" d="1.9641392957176744e-05" /> - <width sOffset="22.561247085116975" a="3.7297800883405952" b="-0.0085604527601046854" c="0.00038841308290405731" d="1.9911505461628465e-05" /> - <width sOffset="27.02707073443446" a="3.7010703722628691" b="-0.00389996393936897" c="0.00039891557619441641" d="-4.9509442457535518e-05" /> - <width sOffset="29.232377673442329" a="3.6938788314495201" b="-0.0028628508658318265" c="-0.0027696328910853094" d="0.00041759666426222889" /> - <width sOffset="32.320940483353525" a="3.6709200323483504" b="-0.008020581510765264" c="-0.0024801681410654636" d="0.00067666942380871487" /> - <width sOffset="32.570774459007112" a="3.6687719657987374" b="-0.0091331349871838115" c="-0.0019734189572885186" d="0.00067707879515435925" /> - <width sOffset="35.318333115670043" a="3.6428243012648336" b="-0.0046433405940582637" c="-0.00024279412442371792" d="-4.2265810951088348e-05" /> - <width sOffset="38.28825337557555" a="3.6257852086517657" b="-0.0072039063901583062" c="-0.00085770374954473728" d="2.6753196566065368e-05" /> - <width sOffset="42.580301832897248" a="3.5811806374873454" b="-0.013088002025162375" c="-0.000525080155869422" d="2.6487473213085574e-05" /> - <width sOffset="46.791336714900353" a="3.5187333676492445" b="-0.016101171360359642" c="0.00080965878398381666" d="-5.7606389838638784e-05" /> - <width sOffset="52.561524704763315" a="3.4417169564247114" b="-0.012511430827210547" c="0.00055851128686123901" d="-6.0917030977398801e-07" /> - <width sOffset="52.589829206787499" a="3.4413632740401559" b="-0.012479815523593934" c="0.00055648078110657096" d="-5.8132451299654594e-07" /> - <roadMark sOffset="0" color="standard" width="0.30074322676080184" weight="bold" type="solid"> - <type name="solid"> - <line length="62.599356580677636" space="0" width="0.30074299999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4932482094988182" b="0.0011488362303815683" c="-0.00026793326732459663" d="1.2967180022727316e-05" /> - <width sOffset="2.5421923373365871" a="2.4946502333233789" b="3.7971044357758277e-05" c="-0.00016736057321969889" d="1.4152297583015354e-05" /> - <width sOffset="5.8989771090616614" a="2.4934271745812322" b="-0.00060721136530506124" c="0.0011898267814137861" d="4.6871506070674711e-05" /> - <width sOffset="6.1506561121257164" a="2.4933504658419547" b="6.0432090690388379e-07" c="-0.00032520879896767344" d="5.1574869082838171e-05" /> - <width sOffset="12.403432912260882" a="2.4932477963257353" b="0.0019829899091838602" c="-0.0013039915188538757" d="0.00021455942184382031" /> - <width sOffset="12.551719711226724" a="2.4935138737236455" b="0.001610414277905024" c="-0.0012097659067659811" d="0.00021398428449690896" /> - <width sOffset="15.423739950660888" a="2.4932295194056713" b="-4.3381784335411178e-05" c="-0.00075641373379663364" d="0.00014645199962028902" /> - <width sOffset="19.825963571585135" a="2.4908738587268671" b="0.0018113449722721294" c="-9.2999592764997753e-05" d="-9.3150211211991176e-06" /> - <width sOffset="22.561247085116975" a="2.4949419688132184" b="0.0010935057649817869" c="-0.00017071701546344698" d="-9.9444469526343609e-06" /> - <width sOffset="29.232377673442329" a="2.4916868757649699" b="-0.0025119477467432983" c="0.0024712587880735977" d="-0.00047705055367241073" /> - <width sOffset="32.320940483353525" a="2.4934473564031632" b="-0.00089874265179312046" c="0.0016309128228463258" d="-0.00073612331325703358" /> - <width sOffset="32.824369881297798" a="2.4933143215919036" b="0.00018366443281661073" c="0.0021602398358987517" d="-0.00074029961693383142" /> - <width sOffset="35.318333115670043" a="2.4957251576726764" b="-0.0028548816343444529" c="0.00047171603648342696" d="-2.0955010828350181e-05" /> - <width sOffset="42.580301832897248" a="2.4918444926022882" b="0.0006810302908855677" c="4.1489157112942958e-06" d="-1.8017388856528524e-05" /> - <width sOffset="45.135556061320813" a="2.4933111841336895" b="0.00034930924198966904" c="0.00040497243810021298" d="-1.4694427243966663e-05" /> - <width sOffset="46.791336714900353" a="2.4949331345191181" b="0.0015695411512730382" c="-0.00066813972588227757" d="6.9399435807582504e-05" /> - <width sOffset="52.561524704763315" a="2.4950768604598013" b="0.00079093461018959858" c="-0.00021284795110118474" d="1.2402222977502747e-05" /> - <width sOffset="52.589829206787499" a="2.4950990772292716" b="0.00077891530750263342" c="-0.00022227753978624183" d="1.242352610659223e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659244" type="poles" s="123.47047557501909" t="-5.870201704076786" zOffset="-1.9492972187462612" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.9507027812537387" name="SgPoleSign01.flt" /> - <object id="276672177" type="poles" s="650.08297587647235" t="-6.7057915527009033" zOffset="-2.2933788153357511" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.6066211846642489" name="SgPoleSign01.flt" /> - <object id="277423206" type="poles" s="423.99095507705965" t="-8.4104411855735108" zOffset="-2.024113430493935" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.8758865695060649" name="SgPoleSign01.flt" /> - <object id="277423282" type="poles" s="522.15181477969907" t="-8.9563060307107101" zOffset="-2.1310363362524014" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.7689636637475985" name="SgPoleSign01.flt" /> - <object id="277423242" type="poles" s="521.39683089548532" t="5.8600603320598914" zOffset="-1.7818573375288849" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.118142662471115" name="SgPoleSign01.flt" /> - <object id="5177231" s="145.85481679582404" t="5.9528545857071959" orientation="none" validLength="9.1921850302033477" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="9.1921850302033477" s="145.85481679582404" distance="0" tStart="5.9528545857071959" tEnd="5.5569165454969278" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5177235" s="155.04700182602738" t="5.5569165454969278" orientation="none" validLength="1.4796185661880088" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="1.4796185661880088" s="155.04700182602738" distance="0" tStart="5.5569165454969278" tEnd="5.4791566710365514" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273612691" s="156.52662039221539" t="5.4791566710365514" orientation="none" validLength="47.74481422016126" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="47.74481422016126" s="156.52662039221539" distance="0" tStart="5.4791566710365514" tEnd="4.7661836977258663" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542048147" s="204.27143461237665" t="4.7661836977258663" orientation="none" validLength="39.058743132111715" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="39.058743132111715" s="204.27143461237665" distance="0" tStart="4.7661836977258663" tEnd="4.4710347272559172" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810483603" s="243.33017774448837" t="4.4710347272559172" orientation="none" validLength="27.539301672098702" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="27.539301672098702" s="243.33017774448837" distance="0" tStart="4.4710347272559172" tEnd="4.3580457461953266" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078919059" s="270.86947941658707" t="4.3580457461953266" orientation="none" validLength="29.325737010212038" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="29.325737010212038" s="270.86947941658707" distance="0" tStart="4.3580457461953266" tEnd="4.5171438004088893" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742002" s="300.19521642679911" t="4.5171438004088893" orientation="none" validLength="38.319750739259973" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="38.319750739259973" s="300.19521642679911" distance="0" tStart="4.5171438004088893" tEnd="4.4688354664481178" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742003" s="338.51496716605908" t="4.4688354664481178" orientation="none" validLength="29.051479153427579" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="29.051479153427579" s="338.51496716605908" distance="0" tStart="4.4688354664481178" tEnd="4.2580371804760819" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742004" s="367.56644631948666" t="4.2580371804760819" orientation="none" validLength="56.850427657768705" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="56.850427657768705" s="367.56644631948666" distance="0" tStart="4.2580371804760819" tEnd="4.4494470878710697" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742005" s="424.41687397725536" t="4.4494470878710697" orientation="none" validLength="13.279766762878182" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="13.279766762878182" s="424.41687397725536" distance="0" tStart="4.4494470878710697" tEnd="4.4156597428618571" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742006" s="437.69664074013355" t="4.4156597428618571" orientation="none" validLength="21.771347116869947" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="21.771347116869947" s="437.69664074013355" distance="0" tStart="4.4156597428618571" tEnd="4.1968289554518678" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742007" s="459.46798785700349" t="4.1968289554518678" orientation="none" validLength="12.897246541952427" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="12.897246541952427" s="459.46798785700349" distance="0" tStart="4.1968289554518678" tEnd="3.9278664957677685" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742008" s="472.36523439895592" t="3.9278664957677685" orientation="none" validLength="10.656866723649443" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="10.656866723649443" s="472.36523439895592" distance="0" tStart="3.9278664957677685" tEnd="3.8223472747343368" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742009" s="483.02210112260536" t="3.8223472747343368" orientation="none" validLength="28.056913335809497" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="28.056913335809497" s="483.02210112260536" distance="0" tStart="3.8223472747343368" tEnd="3.8107121659474523" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5177260" s="511.07901445841486" t="3.8107121659474523" orientation="none" validLength="19.212383773074805" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="19.212383773074805" s="511.07901445841486" distance="0" tStart="3.8107121659474523" tEnd="4.1626660833765774" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5177264" s="530.29139823148967" t="4.2926660833765773" orientation="none" validLength="23.471526208954288" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="23.471526208954288" s="530.29139823148967" distance="0" tStart="4.2926660833765773" tEnd="4.6873726051084361" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273612720" s="553.76292444044395" t="4.6873726051084361" orientation="none" validLength="22.364902194576871" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="22.364902194576871" s="553.76292444044395" distance="0" tStart="4.6873726051084361" tEnd="4.6792378915440196" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542048176" s="576.12782663502082" t="4.6792378915440196" orientation="none" validLength="25.225989082965384" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="25.225989082965384" s="576.12782663502082" distance="0" tStart="4.6792378915440196" tEnd="5.028386957587669" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810483632" s="601.35381571798621" t="5.028386957587669" orientation="none" validLength="15.699394976039798" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.699394976039798" s="601.35381571798621" distance="0" tStart="5.028386957587669" tEnd="5.4593676216611255" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078919088" s="617.05321069402601" t="5.4593676216611255" orientation="none" validLength="20.846659772709927" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="20.846659772709927" s="617.05321069402601" distance="0" tStart="5.4593676216611255" tEnd="6.1533054373219587" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="33781868" s="0" t="-3.2056659017018001" orientation="none" validLength="1.7755933939403945" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.7755933939403945" s="0" distance="0" tStart="-3.2056659017018001" tEnd="-3.3293344598867911" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="302217324" s="1.7755933939403945" t="-3.3293344598867911" orientation="none" validLength="1.9971901059384105" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.9971901059384105" s="1.7755933939403945" distance="0" tStart="-3.3293344598867911" tEnd="-3.2346542578721427" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="570652780" s="3.772783499878805" t="-3.2346542578721427" orientation="none" validLength="11.928515120425788" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.928515120425788" s="3.772783499878805" distance="0" tStart="-3.2346542578721427" tEnd="-3.2445931660475127" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="839088236" s="15.701298620304593" t="-3.2445931660475127" orientation="none" validLength="35.01054107218927" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="35.01054107218927" s="15.701298620304593" distance="0" tStart="-3.2445931660475127" tEnd="-4.0274521190017163" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1107523692" s="50.711839692493861" t="-4.0274521190017163" orientation="none" validLength="8.5115963818192952" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.5115963818192952" s="50.711839692493861" distance="0" tStart="-4.0274521190017163" tEnd="-4.4274095061148948" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742010" s="59.223436074313156" t="-4.4274095061148948" orientation="none" validLength="24.343989744630917" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="24.343989744630917" s="59.223436074313156" distance="0" tStart="-4.4274095061148948" tEnd="-4.9374532960088695" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742011" s="83.567425818944074" t="-4.9374532960088695" orientation="none" validLength="38.603292964011999" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="38.603292964011999" s="83.567425818944074" distance="0" tStart="-4.9374532960088695" tEnd="-5.1818018283265221" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742012" s="122.17071878295607" t="-5.1818018283265221" orientation="none" validLength="13.668972793233195" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.668972793233195" s="122.17071878295607" distance="0" tStart="-5.1818018283265221" tEnd="-5.3601429038383763" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742013" s="135.83969157618927" t="-5.3601429038383763" orientation="none" validLength="24.368460230722775" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="24.368460230722775" s="135.83969157618927" distance="0" tStart="-5.3601429038383763" tEnd="-5.9837545442099715" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742014" s="160.20815180691204" t="-5.9837545442099715" orientation="none" validLength="22.907941409657724" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="22.907941409657724" s="160.20815180691204" distance="0" tStart="-5.9837545442099715" tEnd="-6.3820782540775918" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742015" s="183.11609321656977" t="-6.3820782540775918" orientation="none" validLength="7.9725157352668816" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.9725157352668816" s="183.11609321656977" distance="0" tStart="-6.3820782540775918" tEnd="-6.4462652105763931" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742016" s="191.08860895183665" t="-6.4462652105763931" orientation="none" validLength="7.6061989590044732" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.6061989590044732" s="191.08860895183665" distance="0" tStart="-6.4462652105763931" tEnd="-6.6390975718567189" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742017" s="198.69480791084112" t="-6.6390975718567189" orientation="none" validLength="15.205105847950591" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.205105847950591" s="198.69480791084112" distance="0" tStart="-6.6390975718567189" tEnd="-6.8384407139548999" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742018" s="213.89991375879171" t="-6.8384407139548999" orientation="none" validLength="9.554208155671688" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.554208155671688" s="213.89991375879171" distance="0" tStart="-6.8384407139548999" tEnd="-6.8266501764944234" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742019" s="223.4541219144634" t="-6.8266501764944234" orientation="none" validLength="23.454510171353121" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="23.454510171353121" s="223.4541219144634" distance="0" tStart="-6.8266501764944234" tEnd="-7.0069669097527756" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742020" s="246.90863208581652" t="-7.0069669097527756" orientation="none" validLength="41.936122899854354" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="41.936122899854354" s="246.90863208581652" distance="0" tStart="-7.0069669097527756" tEnd="-7.0317326425228464" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742021" s="288.84475498567087" t="-7.0317326425228464" orientation="none" validLength="17.124726429671682" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.124726429671682" s="288.84475498567087" distance="0" tStart="-7.0317326425228464" tEnd="-6.8433192511774008" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742022" s="305.96948141534256" t="-6.8433192511774008" orientation="none" validLength="71.335304927423294" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="71.335304927423294" s="305.96948141534256" distance="0" tStart="-6.8433192511774008" tEnd="-7.1233246915080315" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742023" s="377.30478634276585" t="-7.1233246915080315" orientation="none" validLength="40.78791130486087" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="40.78791130486087" s="377.30478634276585" distance="0" tStart="-7.1233246915080315" tEnd="-6.9409558403637952" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742024" s="418.09269764762672" t="-6.9409558403637952" orientation="none" validLength="21.122401494475866" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="21.122401494475866" s="418.09269764762672" distance="0" tStart="-6.9409558403637952" tEnd="-7.0235665071166364" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742025" s="439.21509914210259" t="-7.0235665071166364" orientation="none" validLength="47.826326265562045" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="47.826326265562045" s="439.21509914210259" distance="0" tStart="-7.0235665071166364" tEnd="-7.6494358068686266" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742026" s="487.04142540766463" t="-7.6494358068686266" orientation="none" validLength="21.706337368567176" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="21.706337368567176" s="487.04142540766463" distance="0" tStart="-7.6494358068686266" tEnd="-7.5134352853951007" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742027" s="508.74776277623181" t="-7.5134352853951007" orientation="none" validLength="27.916359785664156" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="27.916359785664156" s="508.74776277623181" distance="0" tStart="-7.5134352853951007" tEnd="-7.1395838959935229" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742028" s="536.66412256189597" t="-7.1395838959935229" orientation="none" validLength="41.661286178865566" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="41.661286178865566" s="536.66412256189597" distance="0" tStart="-7.1395838959935229" tEnd="-7.0393088108429618" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742029" s="578.32540874076153" t="-7.0393088108429618" orientation="none" validLength="40.830222134328551" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="40.830222134328551" s="578.32540874076153" distance="0" tStart="-7.0393088108429618" tEnd="-6.1651141636761322" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742030" s="619.15563087509008" t="-6.1651141636761322" orientation="none" validLength="16.010647143671804" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.010647143671804" s="619.15563087509008" distance="0" tStart="-6.1651141636761322" tEnd="-6.1571574222140013" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742031" s="635.16627801876189" t="-6.1571574222140013" orientation="none" validLength="15.250060008236119" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.250060008236119" s="635.16627801876189" distance="0" tStart="-6.1571574222140013" tEnd="-5.8007256917524588" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742032" s="650.41633802699801" t="-5.8007256917524588" orientation="none" validLength="60.260105519203762" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="60.260105519203762" s="650.41633802699801" distance="0" tStart="-5.8007256917524588" tEnd="-5.8983466122242989" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412764" s="30.270676200094684" t="-3.5345228539937779" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848220" s="60.439997708603258" t="-4.5022600361018039" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283676" s="84.574000343936419" t="-4.945462845006225" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719132" s="108.90534893711066" t="-5.0722705617777404" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154588" s="133.19004265324079" t="-5.341081681712863" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742033" s="157.49260127507199" t="-5.8798896793568707" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742034" s="206.22269502604661" t="-6.616202430972189" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742035" s="234.66578488771731" t="-6.8441185443135417" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742036" s="254.87227571372082" t="-7.1054639451333159" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742037" s="279.17475713101078" t="-7.0616741774548348" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742038" s="303.6748854237577" t="-6.8132286512349722" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742039" s="327.48470848171985" t="-6.8383485407215954" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742040" s="351.88454928862797" t="-7.0655321965002393" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742041" s="399.99036377354258" t="-7.0283507873171311" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742042" s="447.98229617664458" t="-7.0041795232172746" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742043" s="472.20151544909453" t="-7.4835750163964416" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742044" s="496.65932903503182" t="-7.7089016005915214" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742045" s="520.97452268585641" t="-7.4929799711242655" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742046" s="545.04163242343031" t="-7.265071706035501" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742047" s="597.9150052550192" t="-6.7829899136836893" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742048" s="622.42515296406145" t="-6.2577496216126578" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742049" s="646.76233273797493" t="-5.8522802668743337" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742050" s="699.15603782065773" t="-5.7437780861919485" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412804" s="157.61745394539702" t="5.6098954515947597" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848260" s="181.62718529597132" t="5.1742931010757474" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283716" s="206.09049859571763" t="4.7658808619003263" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719172" s="230.87237682674495" t="4.6438296337381253" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154628" s="254.94214741902658" t="4.5398202129468785" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742051" s="279.44514845490306" t="4.5260760733108647" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742052" s="303.4380807134396" t="4.4855275714883822" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742053" s="327.85926896752471" t="4.4909651219984195" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742054" s="351.58384145888391" t="4.1863701877413639" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742055" s="375.61368472873141" t="4.1491825241768385" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742056" s="399.78792286078794" t="4.3809809629518774" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742057" s="424.18488002149235" t="4.5302998936743357" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742058" s="447.94261975735526" t="4.3899067780315439" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742059" s="472.24466125680294" t="4.017004999472201" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742060" s="495.84471841618296" t="3.797148611646247" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742061" s="519.36099473483023" t="3.9812988115096286" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742062" s="545.33388446239644" t="4.7582747309944899" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742063" s="570.68543826592247" t="4.7536391550019292" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742064" s="596.33318617573195" t="4.9480939447376713" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742065" s="622.06932500862149" t="5.80006811131235" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8223788" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="1.9507027812537387" s="123.47047557501909" t="-5.870201704076786" orientation="+" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8236721" type="205" subtype="-1" country="DEU" zOffset="1.6066211827540258" s="650.08297587647235" t="-6.7057915527009033" orientation="+" name="Sg205VorfahrtGew03.flt" height="1.02" /> - <signal dynamic="no" id="8987738" type="531" subtype="20" country="DEU" zOffset="1.8758865695060649" s="423.99011706744625" t="-8.4077675625309549" orientation="+" name="" /> - <signal dynamic="no" id="8987750" type="1004" subtype="32" country="DEU" zOffset="1.4497935361751786" s="423.99095507705965" t="-8.4104411855735108" orientation="+" name="Sg1004-33nach400m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8987786" type="1004" subtype="30" country="DEU" zOffset="1.7374215195517593" s="521.39683089548532" t="5.8600603320598914" orientation="+" name="Sg1004-30nach100m03.flt" height="0.40999999999999998" /> - <signal dynamic="no" id="8987798" type="531" subtype="20" country="DEU" zOffset="2.118142662471115" s="521.39841921601339" t="5.8325347869112774" orientation="+" name="" /> - <signal dynamic="no" id="8987814" type="531" subtype="20" country="DEU" zOffset="1.7689636637475985" s="522.15096092368412" t="-8.9496430698429688" orientation="+" name="" /> - <signal dynamic="no" id="8987826" type="1004" subtype="30" country="DEU" zOffset="1.3560781742311576" s="522.15181477969907" t="-8.9563060307107101" orientation="+" name="Sg1004-30nach100m03.flt" height="0.40999999999999998" /> - </signals> - </road> - <road name="" length="5.0000000000000329" id="33781891" junction="33554492"> - <link> - <predecessor elementType="road" elementId="33782205" contactPoint="end" /> - <successor elementType="road" elementId="33781969" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-172.49511851901204" y="-214.05192591065364" hdg="-0.069318770074491942" length="5.0000000000000329"> - <paramPoly3 aU="0" bU="5.0351863301974236" cU="-0.033540322032047369" dU="-0.001647939925829633" aV="-0" bV="7.2164496600635175e-16" cV="0.0036110708966418689" dV="0.00016703270734882468" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="166.43665138853021" b="0.00016337428721371612" c="5.3221612461129553e-07" d="1.6452011353432217e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025888064121177636" b="4.1686825686060032e-05" c="-0" d="4.3368086899419323e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.6158988481979715" b="-0.0039635464954749936" c="0.00047419266444484427" d="-7.3405625619661253e-05" /> - <laneOffset s="2.1142524751931546" a="3.608944836510108" b="-0.0029428038961191111" c="0.0014481230237806096" d="-0.00055594710630532066" /> - <laneOffset s="4.4180329361951181" a="3.6030534190673436" b="-0.0051223972168468459" c="-0.051944049258782356" d="0.06454544484284308" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15523179294825901" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000000329" space="0" width="0.15523200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.5499431035833484" b="-0.0004974443453940945" c="0.00045753595991230591" d="7.0734847277716348e-05" /> - <width sOffset="1.0867287203438991" a="3.5500336384249755" b="0.00074759976479635976" c="0.002131503133042043" d="-0.0004822904459426421" /> - <width sOffset="2.1142524751931546" a="3.5525290468284272" b="0.0036003258808134314" c="0.0020843328995271528" d="-0.00096483192662864033" /> - <width sOffset="4.4180329361951181" a="3.5600887136492574" b="-0.0021582429769894801" c="-0.054133781962619205" d="0.064136560022519745" /> - <roadMark sOffset="0" color="standard" width="0.15745140277557482" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15745100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="2" /> - </link> - <width sOffset="0" a="3.6256446928828745" b="-0.0026174104380335067" c="-0.00057875837147406881" d="0.00055198595698564802" /> - <width sOffset="0.42272609533046079" a="3.6244765196380881" b="-0.0028108076850402314" c="-0.00045257834142750587" d="-2.5629620550460824e-05" /> - <width sOffset="1.0867287203438991" a="3.622403091111575" b="-0.003445734358087523" c="-0.0019469911503311463" d="0.00052739567267019976" /> - <width sOffset="2.8717221685321874" a="3.6130484547710262" b="-0.0053553004279060009" c="0.083746174796069564" d="-0.025838745854349296" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.8717221685321874" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="2.8717221685321874" type="none" width="0" /> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="0.15926276254980376" b="-0.027074929917204844" c="-0.36571148481980886" d="10.34008745573265" /> - <width sOffset="0.043189731172901702" a="0.15824426236409472" b="-0.00080115564222930338" c="-0.0019428508682028107" d="-0.00020558673334131314" /> - <width sOffset="0.42272609533046079" a="0.15764909145664419" b="-0.0023647637333012398" c="-0.0016030972173046035" d="0.00037202884419200113" /> - <width sOffset="2.8717221685321874" a="0.14770746754481134" b="-0.0035229010759023271" c="-0.081738778167105341" d="0.026738170371202553" /> - <width sOffset="3.3702319275872128" a="0.12895067692518714" b="-0.065083791323583412" c="-0.074796052363463109" d="0.040608456415376332" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="4.9999999964183415" id="33781913" junction="33554492"> - <link> - <predecessor elementType="road" elementId="33781870" contactPoint="end" /> - <successor elementType="road" elementId="33781969" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-172.82084900596882" y="-218.85405055681645" hdg="-0.053277710204200801" length="4.9999999964183415"> - <paramPoly3 aU="0" bU="4.9988974140843796" cU="0.0010671971920036072" dU="-0.00013937144360410167" aV="-0" bV="6.106226635438361e-16" cV="-0.036160759439943416" dV="-3.905938443005198e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="166.31212783772887" b="0.0003652221301898885" c="-4.2763351025314478e-05" d="1.0907281218629911e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026590825200705354" b="-9.8865390290303598e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="0.92816362550681841" b="-0.0046835651088729833" c="-4.9822031729686382e-05" d="0.00019279931127002406" /> - <laneOffset s="2.933048469244568" a="0.91886267430700863" b="3.3835220369375885e-10" c="0.11646917489150989" d="-0.037565523611979595" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16130402690251466" weight="standard" type="solid"> - <type name="solid"> - <line length="2.933048469244568" space="0" width="0.161304" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="2.933048469244568" type="none" width="0" /> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="3" /> - </link> - <width sOffset="0" a="3.3716173959225051" b="-0.0015632467271622305" c="0.0004597209081454866" d="1.7241890135912658e-05" /> - <width sOffset="2.8148449751806766" a="3.3712441754297808" b="0.0014346801555916594" c="0.0012153660032547353" d="0.00011946403414842338" /> - <width sOffset="2.933048469244568" a="3.3714309381115286" b="0.0017270086500078673" c="0.11608025695090918" d="-0.037638858888918644" /> - <width sOffset="4.4781118972016429" a="3.5123810398614008" b="0.090872905433756257" c="-0.088944496398802267" d="0.002405140301879799" /> - <roadMark sOffset="0" color="standard" width="0.30074322676080184" weight="bold" type="solid"> - <type name="solid"> - <line length="4.9999999964183415" space="0" width="0.30074299999999998" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="2.4930845917637727" b="0.00097363186774375443" c="-0.0011854097732981218" d="0.00020853166686591592" /> - <width sOffset="2.8148449751806766" a="2.4910836788394741" b="-0.00074304807430023421" c="-3.4502181013510932e-05" d="0.00010630952267078701" /> - <width sOffset="4.4781118972016429" a="2.4902415107396174" b="2.4481375743392155e-05" c="0.031057441488437747" d="-0.039937689668117948" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33781911" s="0" t="-5.8983466122242989" orientation="none" validLength="4.9999999966490405" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.9999999966490405" s="0" distance="0" tStart="-5.8983466122242989" tEnd="-5.9270014540485239" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="1982.5907928842385" id="33781942" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554597" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="660.3527959705682" y="-244.36814670859701" hdg="3.1851810303100767" length="216.00853752493447"> - <paramPoly3 aU="0" bU="246.27643340670508" cU="-79.301005811192795" dU="48.63539702882526" aV="0" bV="3.1974423109204508e-14" cV="-10.278147267429661" dV="-0.9313640132403429" /> - </geometry> - <geometry s="216.00853752493447" x="444.45831374875274" y="-242.56443262024661" hdg="3.0855449094141978" length="362.00183137677078"> - <paramPoly3 aU="-0" bU="355.12790549436124" cU="16.365333892372981" dU="-9.5278944633025802" aV="-0" bV="5.6843418860808015e-14" cV="-7.7497783330248344" dV="3.0037945982441028" /> - </geometry> - <geometry s="578.01036890170531" x="83.32721229903413" y="-217.54918021570757" hdg="3.0674877953156585" length="251.99886260168964"> - <paramPoly3 aU="-0" bU="252.87612179280524" cU="-3.1823654675292392" dU="2.3045557258182314" aV="-0" bV="-6.3948846218409017e-14" cV="0.13571944588371565" dV="0.27878043531934305" /> - </geometry> - <geometry s="830.00923150339497" x="-168.01017654094602" y="-199.30533035190967" hdg="3.0718590013467022" length="490.50011548511691"> - <paramPoly3 aU="-0" bU="491.80679314369803" cU="-4.9354592330145666" dU="3.6245365720662566" aV="-0" bV="-3.5527136788005009e-14" cV="-5.702340539213516" dV="3.8544008547905699" /> - </geometry> - <geometry s="1320.5093469885119" x="-657.18518374267478" y="-163.28552786916151" hdg="3.0721806702380228" length="333.49969707699347"> - <paramPoly3 aU="-0" bU="339.76855047187274" cU="-10.02340990415086" dU="3.7489612235523233" aV="-0" bV="-3.5527136788005009e-14" cV="-5.1144224070449136" dV="3.3354689871125807" /> - </geometry> - <geometry s="1654.0090440655053" x="-989.75283529313526" y="-138.38095505510725" hdg="3.0715085889299254" length="153.49911576106615"> - <paramPoly3 aU="-0" bU="164.19177774401365" cU="-41.230121171481599" dU="30.53615660031252" aV="-0" bV="1.9539925233402755e-14" cV="1.9688468641721868" dV="-1.4522979568998582" /> - </geometry> - <geometry s="1807.5081598265715" x="-1142.9100015133338" y="-128.14728967961369" hdg="3.0690902243715676" length="175.08263305766692"> - <paramPoly3 aU="-0" bU="173.15880236755001" cU="3.5837424682095516" dU="-1.6599233301482055" aV="-0" bV="5.6843418860808015e-14" cV="-0.20909184748530696" dV="0.15924639479785729" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.07121194259207" b="0.013181538710603168" c="-6.4529040360749443e-05" d="2.3135993950256289e-06" /> - <elevation s="10.013084812546658" a="165.19905269875707" b="0.012585166590315682" c="0.00013759760699648651" d="-2.5451403249527962e-06" /> - <elevation s="20.026169625093317" a="165.33630968803323" b="0.014575178042226855" c="0.00020154729180551945" d="-6.8496935790609198e-06" /> - <elevation s="30.039254437639975" a="165.49558307292267" b="0.016551109086039267" c="0.00011339315416047526" d="-2.6829433400002078e-07" /> - <elevation s="35.000625635959253" a="165.58045769899348" b="0.017656467784903207" c="8.6799739468831539e-05" d="-3.1431503945330036e-06" /> - <elevation s="40.052339250186634" a="165.67146301948432" b="0.018292804829315088" c="0.00025008005997333084" d="-1.9043321883807864e-05" /> - <elevation s="50.065424062733292" a="165.86058574629871" b="0.017572993485871317" c="-8.5641790209651432e-05" d="-5.6125666571710716e-07" /> - <elevation s="60.078508875279951" a="166.02739555193247" b="0.015689098543843195" c="-0.0001191990247712674" d="8.4195647170347161e-06" /> - <elevation s="70.091593687826617" a="166.18099336797073" b="0.015834482499900937" c="6.9536280770101673e-05" d="-3.1322510621450097e-06" /> - <elevation s="80.104678500373268" a="166.34337265893853" b="0.016284891831137863" c="-7.5600889123864853e-06" d="3.1254677967085787e-07" /> - <elevation s="90.117763312919919" a="166.50599044864487" b="0.016227501779595904" c="1.6940969166706372e-05" d="-2.9443238518821994e-06" /> - <elevation s="100.13084812546658" a="166.66722043670566" b="0.015681154278322919" c="-9.2110104748926327e-05" d="3.879695874251371e-06" /> - <elevation s="110.14393293801325" a="166.81889697867726" b="0.015003498357061565" c="-7.9131451293873065e-05" d="5.3407090848372191e-06" /> - <elevation s="120.1570177505599" a="166.96655611431146" b="0.015025206890041862" c="8.5102615728770229e-05" d="-8.3190168607836597e-06" /> - <elevation s="130.17010256310655" a="167.11718561696469" b="0.014227245810403993" c="-9.8951949958088099e-05" d="6.2085779200991627e-07" /> - <elevation s="140.18318737565323" a="167.25034642674601" b="0.01243236236077765" c="-6.3856767316350236e-05" d="-3.3857298736039755e-06" /> - <elevation s="150.19627218819988" a="167.36503128897974" b="0.010135177107229333" c="-0.00013912425129158774" d="2.3045868858191525e-08" /> - <elevation s="160.20935700074654" a="167.45258995615322" b="0.0073559831174469983" c="-0.00018244875660413417" d="3.2503674152235569e-06" /> - <elevation s="170.22244181329319" a="167.5112165291865" b="0.0046798970907813014" c="-0.00013876449170952026" d="1.0155035442267086e-06" /> - <elevation s="180.23552662583984" a="167.54518344365869" b="0.0022064246871457581" c="0.00033133132776173114" d="-3.1369775404306299e-05" /> - <elevation s="187.00850507343009" a="167.56558021058646" b="0.002377525140902793" c="-0.00014038183807030434" d="-3.0806754949676358e-05" /> - <elevation s="190.24861143838652" a="167.57076196633818" b="0.00049756629326844887" c="-4.8245139002347193e-05" d="1.9413242172385093e-06" /> - <elevation s="200.26169625093317" a="167.57285594685217" b="0.00011532333013714815" c="-2.8105368538787668e-06" d="-6.5134693875860697e-07" /> - <elevation s="210.27478106347982" a="167.57307499235259" b="-0.00013687673897543802" c="-2.0296201206539497e-05" d="1.7637889435342005e-09" /> - <elevation s="220.2878658760265" a="167.56967126964264" b="-0.00054280138476275387" c="-9.5111803874252122e-05" d="7.3087296830267444e-06" /> - <elevation s="230.30095068857315" a="167.56203752351354" b="-0.0002491658420840361" c="6.8868076579337969e-05" d="-4.7173211945573377e-06" /> - <elevation s="240.3140355011198" a="167.5617115837567" b="-0.00028890435592319921" c="-3.4373489448577329e-06" d="1.7637889435343358e-09" /> - <elevation s="250.32712031366646" a="167.5584758956355" b="-0.00035721076663368416" c="-0.00018360317573086967" d="9.2976442828693438e-06" /> - <elevation s="260.34020512621311" a="167.54582490610187" b="-0.0012374815710973581" c="8.0330046915859166e-06" d="-5.3975943123911011e-07" /> - <elevation s="270.35328993875976" a="167.53369742122808" b="-0.0012389631222152957" c="-6.4818268610323798e-06" d="3.7359511404105751e-07" /> - <elevation s="280.36637475130647" a="167.52101676190051" b="-0.0012563972549881055" c="2.4633482396839704e-05" d="-2.3567470602909845e-06" /> - <elevation s="290.37945956385312" a="167.50854013812653" b="-0.0014719585422621633" c="-4.8021150715507979e-05" d="2.5460024691034869e-06" /> - <elevation s="300.39254437639977" a="167.4915426118954" b="-0.0016678373657279969" c="3.3497239280494928e-06" d="-3.48419494441894e-08" /> - <elevation s="310.40562918894642" a="167.47514328557676" b="-0.0016112351828996394" c="1.7223303020084505e-06" d="9.6370378463158863e-08" /> - <elevation s="320.41871400149307" a="167.45927928426008" b="-0.0015477566817826058" c="1.0523157084142869e-05" d="-6.8266427655398649e-07" /> - <elevation s="330.43179881403972" a="167.44415118917237" b="-0.0015423537386773131" c="-8.4386067888628951e-05" d="8.1167190562730777e-06" /> - <elevation s="340.44488362658637" a="167.42839538811077" b="-0.00079089121744011046" c="3.3264203577332657e-05" d="1.7637889435351803e-09" /> - <elevation s="350.45796843913303" a="167.42381302916505" b="-0.00012420611183695265" c="7.4164670626718373e-05" d="-1.0498448602932924e-07" /> - <elevation s="360.47105325167968" a="167.42989983407361" b="0.0013294503404509734" c="0.00024904463789771319" d="-1.7671585307849894e-05" /> - <elevation s="370.48413806422639" a="167.45044036863436" b="0.0010015020712068751" c="-9.7776237494024684e-05" d="1.7637889435350471e-09" /> - <elevation s="380.49722287677304" a="167.45066703637031" b="-0.00095605092383199892" c="-6.9485843373853035e-06" d="1.7637889435352998e-09" /> - <elevation s="390.51030768931969" a="167.44039911006462" b="-0.0010946739301068739" c="-0.00028836488732690129" d="1.4603778687514392e-05" /> - <elevation s="400.52339250186634" a="167.41518722508877" b="-0.0024769117079456041" c="4.0041837111137426e-06" d="1.2383802230560725e-08" /> - <elevation s="410.53647731441299" a="167.39079959749824" b="-0.0023929983763230057" c="5.8058381626104801e-06" d="-1.5163482775608747e-07" /> - <elevation s="420.54956212695964" a="167.36726817513528" b="-0.0023223392494726106" c="-3.639821209892708e-06" d="6.4358952790247971e-07" /> - <elevation s="430.56264693950629" a="167.34429557920464" b="-0.0022016484625850506" c="-4.5033275797159257e-06" d="1.3769444301342227e-06" /> - <elevation s="440.575731752053" a="167.32318113101206" b="-0.0018776678046986584" c="2.0649928052320529e-06" d="2.1014427289627295e-06" /> - <elevation s="450.58881656459965" a="167.30669662669149" b="-0.0012042301913878536" c="2.2243174946642036e-05" d="-2.4744499852344875e-07" /> - <elevation s="460.60190137714631" a="167.29662029230832" b="-0.00083321248984497302" c="9.5150528559860236e-05" d="-7.772570456253779e-06" /> - <elevation s="470.61498618969296" a="167.29001411347946" b="-0.0012655891517890498" c="-8.0575181098284487e-05" d="4.1417638928462755e-06" /> - <elevation s="480.62807100223961" a="167.27342108727365" b="-0.001633418448569998" c="-2.8148453599833985e-06" d="5.2118328778682714e-07" /> - <elevation s="490.64115581478626" a="167.25730654000296" b="-0.0015330245900449916" c="2.22217842423299e-05" d="-1.454497091696906e-06" /> - <elevation s="500.65424062733291" a="167.24272401823725" b="-0.0015254991533360798" c="-1.2739429025710345e-05" d="5.8608609004547617e-07" /> - <elevation s="510.66732543987956" a="167.22676017663861" b="-0.0016043348622852033" c="-4.3011629176922407e-06" d="3.3297583563153558e-07" /> - <elevation s="520.68041025242621" a="167.21059887759301" b="-0.0015903163431584143" c="-9.3826619166483651e-06" d="1.1769651133053862e-06" /> - <elevation s="530.69349506497292" a="167.19491577323629" b="-0.0014242009616388137" c="-6.0150015318350059e-07" d="1.7637889435372288e-09" /> - <elevation s="540.70657987751952" a="167.18059659141034" b="-0.0014357161834161216" c="6.093355782644276e-05" d="-4.1122216117841856e-06" /> - <elevation s="550.71966469006622" a="167.16820157076035" b="-0.0014523474731840311" c="-3.4873010471152199e-06" d="1.6369708453144322e-07" /> - <elevation s="560.73274950261293" a="167.15347378952811" b="-0.0014729470293070913" c="2.2323072463359057e-05" d="-1.1597461185222732e-06" /> - <elevation s="570.74583431515953" a="167.1397988943358" b="-0.0013747363284815073" c="-7.3663231129668729e-06" d="6.4909517326549276e-07" /> - <elevation s="580.75891912770624" a="167.12594662806748" b="-0.0013270170819560849" c="3.8735039754506715e-05" d="-3.3023939682234029e-06" /> - <elevation s="590.77200394025283" a="167.11322736660048" b="-0.0015446151644579694" c="-6.8803750468753778e-06" d="4.0371673126663815e-07" /> - <elevation s="600.78508875279954" a="167.0974764682781" b="-0.001560970542022095" c="7.9643391298133296e-06" d="-4.6108992782658156e-07" /> - <elevation s="610.79817356534613" a="167.08218195508545" b="-0.0015401645473538525" c="-4.8571802807931645e-06" d="3.6182418384750816e-07" /> - <elevation s="620.81125837789284" a="167.06663641324556" b="-0.0015286037584589227" c="9.5883948041862835e-06" d="-6.7679181567289307e-08" /> - <elevation s="630.82434319043944" a="167.05222377933623" b="-0.0013569418610748906" c="4.3156892221972768e-05" d="-3.48429389189419e-06" /> - <elevation s="640.83742800298614" a="167.03946560680765" b="-0.0015407000541221483" c="-4.3274490362741776e-06" d="1.7637889435446046e-09" /> - <elevation s="650.85051281553285" a="167.02360633909495" b="-0.0016268317602466467" c="-2.8190445816685922e-05" d="1.2572388114279508e-06" /> - <elevation s="660.86359762807945" a="167.00575248845379" b="-0.0018132190767354702" c="-2.1717545546342119e-05" d="1.8715610337832003e-06" /> - <elevation s="670.87668244062615" a="166.98729804774013" b="-0.0016851997147315256" c="1.5506328713099937e-06" d="1.7637889435471982e-09" /> - <elevation s="680.88976725317275" a="166.97058124013952" b="-0.0016536159555045531" c="5.0878916267834732e-06" d="1.7637889435475192e-09" /> - <elevation s="690.90285206571946" a="166.9545353355673" b="-0.0015511944524326214" c="4.7714576542535268e-05" d="-2.8855217159341018e-06" /> - <elevation s="700.91593687826605" a="166.94089018300701" b="-0.0014635776365382787" c="-1.9573475852215149e-05" d="9.524963754604691e-07" /> - <elevation s="710.92902169081276" a="166.92522902300183" b="-0.0015690621880404547" c="9.137465624670618e-06" d="-9.5882195525101012e-07" /> - <elevation s="720.94210650335935" a="166.9094714189203" b="-0.0016744735908920398" c="-3.2914391352700215e-06" d="2.1062551093782974e-07" /> - <elevation s="730.95519131590606" a="166.89258622039586" b="-0.0016770353881395475" c="0.0001186710557022127" d="-5.6608378528164184e-06" /> - <elevation s="740.96827612845277" a="166.88200901623702" b="-0.0010032072206482699" c="3.2647399602375286e-05" d="-2.7270238428454581e-06" /> - <elevation s="750.98136094099937" a="166.87249936386937" b="-0.0011696543676944053" c="-4.2314665494536189e-05" d="2.0358905738455022e-06" /> - <elevation s="760.99444575354607" a="166.85858886091017" b="-0.0014046884638633161" c="-5.6811721168267253e-07" d="-9.3890783302813058e-08" /> - <elevation s="771.00753056609267" a="166.84437237586496" b="-0.0014443066713259887" c="1.5692992912274612e-05" d="-1.8082400458008406e-06" /> - <elevation s="781.02061537863938" a="166.82966847196289" b="-0.0016739287047808919" c="-2.9963191347529643e-05" d="2.007584200267728e-06" /> - <elevation s="791.03370019118597" a="166.81191859152744" b="-0.0016701242341899615" c="3.1978982377671639e-05" d="-1.2679178940782409e-06" /> - <elevation s="801.04678500373268" a="166.79712886686596" b="-0.0014110791562079136" c="9.0654647996926008e-06" d="-2.4395072534414853e-07" /> - <elevation s="811.05986981627939" a="166.78366362243412" b="-0.0013029094862750104" c="3.02075422872726e-05" d="-2.5958188354055497e-06" /> - <elevation s="821.07295462882598" a="166.77104012193104" b="-0.0014787530525750422" c="-2.3914050928657404e-05" d="1.5618457675758387e-06" /> - <elevation s="831.08603944137269" a="166.75540355952506" b="-0.0014878791728552591" c="-2.3462596151056648e-06" d="9.7325839890132303e-07" /> - <elevation s="841.09912425391929" a="166.74124714267711" b="-0.0012421236520974519" c="4.8280759669346734e-05" d="-3.106041758826055e-06" /> - <elevation s="851.11220906646599" a="166.73053212201617" b="-0.0012094976108069943" c="-2.0949973578341625e-05" d="7.0547051099772935e-07" /> - <elevation s="861.12529387901259" a="166.71702907980526" b="-0.001416849962709423" c="-1.6456187035977129e-05" d="9.6567718080494551e-07" /> - <elevation s="871.1383786915593" a="166.70216158577298" b="-0.001455942563131704" c="8.7899958156183589e-06" d="-5.8643724677171374e-07" /> - <elevation s="881.151463504106" a="166.68787566851495" b="-0.0014563044964582899" c="2.9700917925827447e-06" d="-5.8811704174735137e-07" /> - <elevation s="891.1645483166526" a="166.67300092634446" b="-0.0015737220730955915" c="-4.1957098867244217e-05" d="2.0525457984800188e-06" /> - <elevation s="901.17763312919931" a="166.65509703016824" b="-0.0017965858275594581" c="-2.7905805496771366e-05" d="2.7053260205848387e-06" /> - <elevation s="911.1907179417459" a="166.63702573525904" b="-0.0015417091052003695" c="1.908215061608535e-05" d="-3.5761818044791871e-07" /> - <elevation s="921.20380275429261" a="166.62314265946023" b="-0.0012671331199826247" c="5.3469601263360422e-05" d="-4.1459601941389769e-06" /> - <elevation s="931.2168875668392" a="166.61165345390404" b="-0.0014433869497745056" c="-2.1409681383349966e-06" d="1.7637889428310159e-09" /> - <elevation s="941.22997237938591" a="166.59698781121659" b="-0.0014857318185550648" c="-6.3164158588621931e-06" d="4.8963380918565392e-07" /> - <elevation s="951.24305719193251" a="166.58196931521422" b="-0.0014649506337209711" c="3.0189085364444685e-05" d="-1.4059085608433e-06" /> - <elevation s="955.00948874739186" a="166.57680482291559" b="-0.0012973730708654054" c="1.2844378134929626e-05" d="-1.4065657670335972e-06" /> - <elevation s="961.25614200447922" a="166.56885893103544" b="-0.0013015597629040781" c="1.8414106422485503e-05" d="-1.7799201324049301e-06" /> - <elevation s="971.26922681702592" a="166.55588561918336" b="-0.0014681700934239463" c="-3.4962582743546203e-05" d="2.0030752716343753e-06" /> - <elevation s="981.28231162957252" a="166.53969024220541" b="-0.0015658405037669925" c="4.2853373663056973e-06" d="1.1065826741625464e-09" /> - <elevation s="991.29539644211923" a="166.52444211529749" b="-0.0014796887666323644" c="4.8325606688528139e-05" d="-2.698206026226926e-06" /> - <elevation s="1001.3084812546658" a="166.51176227020665" b="-0.00132349349482269" c="-5.7734201579858543e-07" d="-5.1029451399464624e-07" /> - <elevation s="1011.3215660672125" a="166.49793983193683" b="-0.001488544686750831" c="-7.289183163286746e-05" d="4.8417036764477932e-06" /> - <elevation s="1021.3346508797591" a="166.4805873709704" b="-0.0014919741144013325" c="7.1924595107920948e-05" d="-4.0982136167750388e-06" /> - <elevation s="1031.3477356923058" a="166.46874507986379" b="-0.001284283623997539" c="-9.1468436222075429e-06" d="-9.766437868509224e-08" /> - <elevation s="1041.3608205048524" a="166.45487031113382" b="-0.0014968359048848888" c="-3.7825250419067269e-05" d="2.5136260251948576e-06" /> - <elevation s="1051.3739053173992" a="166.43861344206277" b="-0.0014982682677179423" c="1.9625032750360068e-05" d="-2.4475572251607666e-07" /> - <elevation s="1061.3869901299458" a="166.42533307950373" b="-0.0011788730303965564" c="2.9181027755542423e-05" d="-1.4416490301346872e-06" /> - <elevation s="1071.4000749424924" a="166.41500735265399" b="-0.0010281160906931821" c="6.8516111483229152e-06" d="-6.5106117842958641e-07" /> - <elevation s="1081.413159755039" a="166.40474607414154" b="-0.0010867343923782128" c="1.9600163400939069e-05" d="-2.573098472464606e-06" /> - <elevation s="1091.4262445675859" a="166.39324644723914" b="-0.0014681691694799152" c="-4.2919723417995746e-06" d="2.9206133529829844e-07" /> - <elevation s="1101.4393293801324" a="166.37840843297028" b="-0.0014662730909505404" c="5.6876722635947401e-05" d="-2.9940238123880068e-06" /> - <elevation s="1111.452414192679" a="166.36642329050929" b="-0.0012278094517020766" c="1.6970554684676549e-05" d="-2.0004324880723951e-06" /> - <elevation s="1121.4654990052259" a="166.35382233448755" b="-0.0014896555359197327" c="-1.2910923582402893e-05" d="1.106582674158177e-09" /> - <elevation s="1131.4785838177725" a="166.33761292488805" b="-0.0017478790374613079" c="-7.1061070376952925e-05" d="4.1552746051471372e-06" /> - <elevation s="1141.4916686303191" a="166.31715815547818" b="-0.0019211133113668215" c="-7.929285207823243e-06" d="2.0078337396618357e-06" /> - <elevation s="1151.5047534428656" a="166.29914260570996" b="-0.0014759790410617804" c="7.8748927353436662e-05" d="-5.2234852876164788e-06" /> - <elevation s="1161.5178382554125" a="166.2870150002806" b="-0.0014700888328974871" c="-0.0001756117776356511" d="9.5984371435773555e-06" /> - <elevation s="1171.5309230679591" a="166.26432387593195" b="-0.002099848381762086" c="-1.4378667375224062e-05" d="3.0968459076796668e-06" /> - <elevation s="1181.5440078805057" a="166.2449653022648" b="-0.0014563113517514414" c="0.00013500815475065426" d="-7.251766969885316e-06" /> - <elevation s="1191.5570926930523" a="166.23663903226702" b="-0.00093384224037107975" c="1.9952361136849495e-05" d="-3.0107765747329037e-06" /> - <elevation s="1201.5701775055991" a="166.22626624102043" b="-0.0014398711175154413" c="-1.0265866082097802e-05" d="7.1414530259657693e-07" /> - <elevation s="1211.5832623181457" a="166.21153636680663" b="-0.0014306524679886983" c="2.564921819531639e-05" d="-1.6544368601933229e-06" /> - <elevation s="1221.5963471306923" a="166.19812182106205" b="-0.0014146276612673312" c="2.0356928407510383e-07" d="1.1065826741534792e-09" /> - <elevation s="1231.6094319432391" a="166.18397855548034" b="-0.0014102181041177491" c="-7.1228625745422671e-05" d="4.7796578169370806e-06" /> - <elevation s="1241.6225167557857" a="166.16751485162123" b="-0.0013990023897735423" c="4.4491334891371515e-05" d="-1.9494406107669045e-06" /> - <elevation s="1251.6356015683323" a="166.15601020331391" b="-0.0010943750388246829" c="1.9958563693649281e-05" d="-1.4465968087131296e-06" /> - <elevation s="1261.6486863808789" a="166.14560093332457" b="-0.0011297969493463062" c="-2.5470381680557048e-05" d="1.6459775608297085e-06" /> - <elevation s="1271.6617711934257" a="166.13338691982872" b="-0.0011447847811428195" c="4.2786513167955246e-05" d="-3.5226015822521041e-06" /> - <elevation s="1281.6748560059723" a="166.12267750097752" b="-0.0013474826496718639" c="-2.3563620498083553e-05" d="1.1065826741467261e-09" /> - <elevation s="1291.6879408185189" a="166.10682362125976" b="-0.0018190388666115694" c="-8.345984527946799e-05" d="4.322745960494796e-06" /> - <elevation s="1301.7010256310657" a="166.08458132773472" b="-0.0021902001373569095" c="-3.9641571712094558e-05" d="4.2716037761335492e-06" /> - <elevation s="1311.7141104436123" a="166.0629645236605" b="-0.0016992320616939323" c="3.752806858532186e-05" d="-1.6842607229380038e-06" /> - <elevation s="1321.7271952561589" a="166.04802172230077" b="-0.0014542899706324595" c="2.0685583732439988e-05" d="-1.6842607229380021e-06" /> - <elevation s="1331.7402800687055" a="166.03384288788891" b="-0.0015466383381428543" c="-0.00011658426594915558" d="7.3549157096078679e-06" /> - <elevation s="1341.7533648812523" a="166.01405113562549" b="-0.0016691218714173094" c="5.0583805001694197e-05" d="-2.8708972635511273e-06" /> - <elevation s="1351.7664496937989" a="165.99952752195563" b="-0.0015196465749870631" c="-1.5650866558722793e-05" d="8.752304370459837e-07" /> - <elevation s="1361.7795345063455" a="165.98362065740895" b="-0.0015698167692350241" c="-2.5930500060433028e-06" d="4.4859874225344673e-07" /> - <elevation s="1371.7926193188923" a="165.96809232691896" b="-0.0014868135855824033" c="-1.2193243372396949e-05" d="1.8581754607083194e-06" /> - <elevation s="1381.8057041314389" a="165.95384769820751" b="-0.0011720851203430595" c="2.4041074139895904e-06" d="1.106582674075357e-09" /> - <elevation s="1391.8187889439855" a="165.94235366172106" b="-0.0011236072133373469" c="7.8523420972100664e-05" d="-5.2460406258246913e-06" /> - <elevation s="1401.8318737565321" a="165.93370913160354" b="-0.0011290173552072631" c="-2.1049719249936835e-05" d="1.1065826740293037e-09" /> - <elevation s="1411.8449585690789" a="165.92029481184161" b="-0.0015502297593308952" c="-4.7110736323873796e-05" d="2.5953700902583178e-06" /> - <elevation s="1421.8580433816255" a="165.90265439078726" b="-0.0017130274000931372" c="4.4568054122977227e-06" d="4.2937870958439249e-08" /> - <elevation s="1431.8711281941721" a="165.88599165641926" b="-0.0016108595655388554" c="-4.1504793064117308e-05" d="4.6782426248114482e-06" /> - <elevation s="1441.8842130067187" a="165.87039726574994" b="-0.0010348935656659224" c="2.7463596042860997e-05" d="-1.7447492853161387e-06" /> - <elevation s="1451.8972978192655" a="165.86103673296535" b="-0.001009698397599474" c="-1.2753013356512719e-05" d="9.3506757907661717e-07" /> - <elevation s="1461.9103826318121" a="165.85058663927938" b="-0.00098383754126038503" c="3.5649220320766382e-05" d="-2.2853181238492523e-06" /> - <elevation s="1471.9234674443587" a="165.84201534718494" b="-0.00095731099664862047" c="-0.0001138372012550893" d="5.9919703833524515e-06" /> - <elevation s="1481.9365522569055" a="165.82703170291541" b="-0.001434735677370648" c="4.8828180076242536e-07" d="5.68545353264847e-07" /> - <elevation s="1491.9496370694521" a="165.81328530900709" b="-0.0012539470066360698" c="-2.2826083296996522e-06" d="1.416030792935018e-06" /> - <elevation s="1501.9627218819987" a="165.80192216932394" b="-0.00087373723317888839" c="0.00017656336172263993" d="-1.1602490929338297e-05" /> - <elevation s="1511.9758066945453" a="165.79922784120046" b="-0.00082771162514729132" c="6.334627014837715e-07" d="1.1065826602413268e-09" /> - <elevation s="1521.9888915070921" a="165.7910045175831" b="-0.00081469294950414696" c="-0.00017129680610049894" d="1.1506333886795263e-05" /> - <elevation s="1531.0085948952255" a="165.77816369828199" b="-0.0010964906354616968" c="0.0001331418023202328" d="1.1511093506047417e-05" /> - <elevation s="1532.0019763196387" a="165.77721713411097" b="-0.00079789177797359126" c="0.00010430369648127517" d="-5.6569185717905186e-06" /> - <elevation s="1542.0150611321853" a="165.77400630590321" b="-0.00041060792000113897" c="3.2808014667312471e-05" d="-4.1618794093292011e-06" /> - <elevation s="1552.0281459447322" a="165.76900600877462" b="-0.0010054224584196308" c="-0.00019308633419235562" d="1.1773020426222819e-05" /> - <elevation s="1562.0412307572788" a="165.75139872723108" b="-0.0013310470983948545" c="6.5137390491549008e-06" d="5.866201927078817e-09" /> - <elevation s="1572.0543155698253" a="165.73872980864607" b="-0.0011988373862225061" c="0.00025165766756299096" d="-1.5154341460992374e-05" /> - <elevation s="1582.0674003823719" a="165.73674350908428" b="-0.00071730597331535453" c="-5.2440122978345382e-05" d="1.9387034339880667e-06" /> - <elevation s="1592.0804851949188" a="165.72624964254464" b="-0.001184346690993271" c="-3.2910243512598766e-05" d="1.9387034339881353e-06" /> - <elevation s="1602.0935700074654" a="165.71303735987453" b="-0.0012602787297324822" c="4.7741220916039289e-07" d="2.0227248252968777e-06" /> - <elevation s="1612.106654820012" a="165.70249662361775" b="-0.00064231148680512302" c="0.00017914884994115797" d="-1.2941978925440043e-05" /> - <elevation s="1622.1197396325588" a="165.70103405403361" b="-0.00094740715694720994" c="-5.1781532323585776e-05" d="1.4433059342334138e-06" /> - <elevation s="1632.1328244451054" a="165.68780485165527" b="-0.0015502672618454808" c="-1.0792143118171566e-05" d="5.8662019270097532e-09" /> - <elevation s="1642.145909257652" a="165.67120574291687" b="-0.0017646280814679139" c="-0.00021348407342293096" d="1.139284796947027e-05" /> - <elevation s="1652.1589940701986" a="165.64356968889635" b="-0.0026130917086593778" c="2.5096823801446559e-05" d="-1.0294843110777242e-06" /> - <elevation s="1662.1720788827454" a="165.61888730363233" b="-0.0024201525168188534" c="-1.6061028483796896e-05" d="2.0631706199261236e-06" /> - <elevation s="1672.185163695292" a="165.59511508259499" b="-0.0021212213798415002" c="1.2643101204091837e-05" d="-7.1243474751438881e-07" /> - <elevation s="1682.1982485078386" a="165.57442749891871" b="-0.0020823186052356473" c="-6.4599887235178893e-06" d="4.9467556448910899e-07" /> - <elevation s="1692.2113333203854" a="165.55342599551207" b="-0.0020628961475366494" c="-9.3597916711090853e-07" d="5.8662019274832265e-09" /> - <elevation s="1702.224418132932" a="165.53268208766761" b="-0.0020798757560222597" c="4.8930721280602737e-05" d="-1.3111104848552597e-06" /> - <elevation s="1712.2375029454786" a="165.51544573690228" b="-0.0014943439887654679" c="8.1702248179235963e-05" d="-5.8833587663794225e-06" /> - <elevation s="1722.2505877580252" a="165.50276787998939" b="-0.0016277905185971028" c="-8.7655408803050141e-05" d="5.7081259453802636e-06" /> - <elevation s="1731.0090427578496" a="165.48562195114329" b="-0.001849622257633039" c="7.5973156685688823e-05" d="5.6692035028933285e-06" /> - <elevation s="1732.263672570572" a="165.48343214510993" b="-0.0016322142718345305" c="0.00016816213517213937" d="-9.6609722458205313e-06" /> - <elevation s="1742.2767573831186" a="165.47424994938973" b="-0.0011704521849892325" c="-1.7393739156282918e-05" d="-8.5671745052970653e-07" /> - <elevation s="1752.2898421956652" a="165.45992609877339" b="-0.0017764704301829739" c="-0.00011090877742181689" d="7.9956652606213717e-06" /> - <elevation s="1762.302927008212" a="165.43904532142815" b="-0.0015925674278211028" c="0.0001039368969316731" d="-3.4429508857594696e-06" /> - <elevation s="1772.3160118207586" a="165.43006323240056" b="-0.00054669955573308411" c="6.8909880241872624e-05" d="-3.453889814135517e-06" /> - <elevation s="1782.3290966333052" a="165.4280306510492" b="-0.00020557893349707704" c="9.2573735907487966e-05" d="-9.3371853512687069e-06" /> - <elevation s="1792.3421814458518" a="165.42587990146512" b="-0.001160172515891286" c="-0.00012149184255650943" d="5.8720297951352344e-06" /> - <elevation s="1802.3552662583986" a="165.40797710694198" b="-0.0018269667438127008" c="-2.3750369672225714e-05" d="1.9165723963314832e-06" /> - <elevation s="1812.3683510709452" a="165.38922638321225" b="-0.0017261182927732204" c="2.3014371386809408e-05" d="-9.0333071211424719e-07" /> - <elevation s="1822.3814358834918" a="165.37334319687605" b="-0.0015369374599665344" c="9.0881653028821732e-06" d="-4.8197313391631575e-07" /> - <elevation s="1832.3945206960384" a="165.35838104059388" b="-0.0014999068994508281" c="6.5612604035479175e-06" d="-7.7769846793861408e-07" /> - <elevation s="1842.4076055085852" a="165.3432394345439" b="-0.001602430487811483" c="-4.2694482177014206e-05" d="3.2976282414217147e-06" /> - <elevation s="1852.4206903211318" a="165.32622412349065" b="-0.0014655583328903917" c="6.2971311840808373e-06" d="1.6363847491565657e-06" /> - <elevation s="1862.4337751336784" a="165.31382354243209" b="-0.00084724994313005843" c="2.3307741381561149e-05" d="-1.6676472674332457e-06" /> - <elevation s="1872.4468599462252" a="165.30600263247899" b="-0.00088208944855365881" c="-7.8299642439034388e-05" d="4.1742949917414454e-06" /> - <elevation s="1882.4599447587718" a="165.29351043004777" b="-0.0011945635359784264" c="-4.3893492029719034e-06" d="9.0110656404142799e-07" /> - <elevation s="1892.4730295713184" a="165.28201372813766" b="-0.0010114255069783474" c="-1.9496153891800197e-06" d="-1.843612994550736e-07" /> - <elevation s="1902.486114383865" a="165.27150568072821" b="-0.0011059220599797051" c="-2.3380385614622058e-05" d="9.9315109489287958e-07" /> - <elevation s="1912.4991991964118" a="165.2590848829789" b="-0.0012754160778568136" c="-4.5548199502297379e-06" d="4.0093213026271626e-08" /> - <elevation s="1922.5122840089584" a="165.24589760966856" b="-0.0013545722135600269" c="6.4257361577163547e-05" d="-2.4371399858329062e-06" /> - <elevation s="1932.525368821505" a="165.23633000691416" b="-0.00080080000970170792" c="5.8706752353915228e-05" d="-4.3860568684051325e-06" /> - <elevation s="1942.5384536340518" a="165.22979428049661" b="-0.00094439138620285869" c="-6.6379374631762186e-05" d="3.6540405834768512e-06" /> - <elevation s="1952.5515384465984" a="165.2173510924797" b="-0.0011746332041284444" c="2.9786815129054596e-05" d="-2.3620835681238454e-06" /> - <elevation s="1962.564623259145" a="165.20620450436158" b="-0.0012885981206957726" c="-2.0553858113992788e-06" d="-1.6102205711770812e-06" /> - <elevation s="1972.5777080716916" a="165.1914790355942" b="-0.00181409079008174" c="-3.4632931046305207e-05" d="-3.3056240592826216e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.027893224450209121" b="0" c="1.9427221532522526e-06" d="-5.3997865565656778e-23" /> - <superelevation s="10.013084812546658" a="0.028088005401256423" b="3.8905283375456145e-05" c="1.0054477370093478e-05" d="-5.9282612452982024e-07" /> - <superelevation s="20.026169625093317" a="0.02889049170439795" b="6.1944389701522817e-05" c="-4.0656177545353421e-06" d="2.2451208979983518e-07" /> - <superelevation s="30.039254437639975" a="0.029328514256742003" b="4.805564309263592e-05" c="6.0907828514545635e-06" d="-5.652886716470833e-07" /> - <superelevation s="40.052339250186634" a="0.029852862164414021" b="0" c="-1.4941075068145559e-05" d="9.9477003326846881e-07" /> - <superelevation s="50.065424062733292" a="0.029353522135000382" b="0" c="5.2672971302435292e-05" d="-3.5069426514417553e-06" /> - <superelevation s="60.078508875279951" a="0.031113885624207208" b="0" c="-5.2948536213462123e-05" d="3.439269426670292e-06" /> - <superelevation s="70.091593687826617" a="0.029257954262457548" b="-2.587364132948976e-05" c="1.2919915197896915e-06" d="0" /> - <superelevation s="80.104678500373268" a="0.029128416779936751" b="0" c="3.3930342668469265e-05" d="-2.2590668978757196e-06" /> - <superelevation s="90.117763312919919" a="0.030262389953139689" b="0" c="-1.306363542996558e-05" d="3.5009338423142489e-07" /> - <superelevation s="100.13084812546658" a="0.029304074924188912" b="-0.00015631152957215291" c="-3.3768544412241483e-05" d="2.7679720084652177e-06" /> - <superelevation s="110.14393293801325" a="0.027132068747569963" b="0" c="1.7421811135678035e-06" d="0" /> - <superelevation s="120.1570177505599" a="0.027306743079475497" b="3.4889214497946237e-05" c="3.7243188433055525e-05" d="-2.5956283054597875e-06" /> - <superelevation s="130.17010256310655" a="0.028784332729544188" b="0" c="-6.4312162514231432e-05" d="3.9797886661375325e-06" /> - <superelevation s="140.18318737565323" a="0.026331706768587489" b="-9.086314413845787e-05" c="4.537220339160781e-06" d="0" /> - <superelevation s="150.19627218819988" a="0.025876796584290974" b="0" c="1.8673599924214611e-05" d="-9.7369268756474835e-07" /> - <superelevation s="160.20935700074654" a="0.02677152671807433" b="8.1087938021785712e-05" c="5.6209924635919095e-06" d="-6.4383030643904377e-07" /> - <superelevation s="170.22244181329319" a="0.027500677385664307" b="0" c="-2.1737631687199309e-05" d="1.447281704832292e-06" /> - <superelevation s="180.23552662583984" a="0.026774192203268651" b="0" c="1.3212017525805382e-05" d="-8.7965016263854497e-07" /> - <superelevation s="190.24861143838652" a="0.027215746053300141" b="0" c="-2.6169298642780595e-06" d="1.7423400901714885e-07" /> - <superelevation s="200.26169625093317" a="0.027128286628229182" b="0" c="1.0708573304195619e-05" d="-6.0415654216288135e-07" /> - <superelevation s="210.27478106347982" a="0.027595416956356408" b="3.273011596039231e-05" c="-9.023697496086317e-07" d="-4.8736063740122921e-08" /> - <superelevation s="220.2878658760265" a="0.027783745482300972" b="0" c="-1.71007383312822e-05" d="1.1385594384030145e-06" /> - <superelevation s="230.30095068857315" a="0.027212228162269377" b="0" c="7.9212663792491615e-06" d="-3.9787650554775592e-07" /> - <superelevation s="240.3140355011198" a="0.027606988730199344" b="3.8957099758480075e-05" c="3.7505911415217567e-06" d="-3.7923049922169901e-07" /> - <superelevation s="250.32712031366646" a="0.02799238965013438" b="0" c="-1.2849391129455037e-05" d="6.4244922832642621e-07" /> - <superelevation s="260.34020512621311" a="0.027349060127668835" b="-6.408460819064042e-05" c="5.4768847518371196e-06" d="-5.4533430621450509e-07" /> - <superelevation s="270.35328993875976" a="0.026709020416150971" b="-0.0001184322929317913" c="1.9552672381499033e-06" d="-7.3896705595416384e-07" /> - <superelevation s="280.36637475130647" a="0.024977314940328031" b="-0.00030154643062957321" c="-6.5260634273753581e-06" d="-6.3090936136412987e-07" /> - <superelevation s="290.37945956385312" a="0.020670200446521705" b="-0.00062200693612155639" c="-3.084505260177416e-05" d="1.1669022588344428e-06" /> - <superelevation s="300.39254437639977" a="0.012520898529573169" b="-0.00088872779276612636" c="-1.3292639496290148e-05" d="5.8085690621047538e-07" /> - <superelevation s="310.40562918894642" a="0.0028723869180524888" b="-0.00098021505164727803" c="-8.2045168920097272e-06" d="6.5356645328695151e-07" /> - <superelevation s="320.41871400149307" a="-0.007109054363784814" b="-0.00094793671926495567" c="2.2928182159207202e-06" d="2.5877115747766231e-07" /> - <superelevation s="330.43179881403972" a="-0.016111154615801964" b="-0.00082418571427041089" c="-5.2226328547578621e-06" d="1.2681053243948861e-06" /> - <superelevation s="340.44488362658637" a="-0.023614337280342745" b="-0.00054734722181760346" c="1.5184424837716178e-05" d="4.9817161541381297e-07" /> - <superelevation s="350.45796843913303" a="-0.027072422923744861" b="-9.3418504922297203e-05" c="4.6648214147373843e-06" d="0" /> - <superelevation s="360.47105325167968" a="-0.027540126630168995" b="0" c="8.3028053690675473e-05" d="-5.5279703338201847e-06" /> - <superelevation s="370.48413806422639" a="-0.024765277391880194" b="0" c="-1.5508617692592996e-06" d="0" /> - <superelevation s="380.49722287677304" a="-0.024920769689043495" b="-3.1057820856259048e-05" c="-1.8704244177124771e-05" d="1.3485758102573881e-06" /> - <superelevation s="390.51030768931969" a="-0.025753200235490294" b="0" c="5.7565797953387606e-05" d="-3.4760670645236942e-06" /> - <superelevation s="400.52339250186634" a="-0.023471275863129238" b="0.00010727150846843474" c="-5.3565664566237728e-06" d="0" /> - <superelevation s="410.53647731441299" a="-0.022934216506997111" b="0" c="-3.9729176257381241e-05" d="2.6451506204894043e-06" /> - <superelevation s="420.54956212695964" a="-0.024261990308444361" b="0" c="6.8187838642866094e-06" d="-4.5399155151750824e-07" /> - <superelevation s="430.56264693950629" a="-0.024034102307090469" b="0" c="-5.787359560665023e-06" d="2.2040851534068831e-07" /> - <superelevation s="440.575731752053" a="-0.024393078935157925" b="-4.9602936184703067e-05" c="-9.0740753857010333e-06" d="7.6905911457121456e-07" /> - <superelevation s="450.58881656459965" a="-0.025027459121028012" b="0" c="3.7002278093973558e-05" d="-2.4577024464417107e-06" /> - <superelevation s="460.60190137714631" a="-0.023784904267289509" b="1.772386777038706e-06" c="-8.8503533637130185e-08" d="0" /> - <superelevation s="470.61498618969296" a="-0.023776030737729947" b="0" c="-4.346646249362366e-05" d="2.893977450995519e-06" /> - <superelevation s="480.62807100223961" a="-0.025228706971607319" b="0" c="9.7490918255390677e-06" d="-4.9082175581983203e-07" /> - <superelevation s="490.64115581478626" a="-0.024743995790270017" b="4.7604849098587306e-05" c="4.5137003078913447e-06" d="-4.5878850584889761e-07" /> - <superelevation s="500.65424062733291" a="-0.02427536418858204" b="0" c="-3.6554689118759788e-07" d="0" /> - <superelevation s="510.66732543987956" a="-0.024312014602537901" b="-7.3205040488497451e-06" c="-5.8660812706143749e-07" d="-7.3013840995260017e-08" /> - <superelevation s="520.68041025242621" a="-0.02451743068464966" b="-4.1029530051391691e-05" c="-5.6002505458748047e-06" d="3.1549166482273361e-07" /> - <superelevation s="530.69349506497292" a="-0.025173022696065094" b="-5.8285746973446742e-05" c="1.654930449828541e-06" d="-9.3586683644778464e-08" /> - <superelevation s="540.70657987751952" a="-0.025684670940265174" b="-5.3293356083201871e-05" c="-5.9801284396074006e-06" d="5.7533479401843941e-07" /> - <superelevation s="550.71966469006622" a="-0.026240284484877793" b="0" c="8.7398275703169932e-06" d="-5.5685807208349783e-07" /> - <superelevation s="560.73274950261293" a="-0.025923059899977362" b="7.5303787600003464e-06" c="-1.1280807414960275e-06" d="7.5107106525423907e-08" /> - <superelevation s="570.74583431515953" a="-0.02588535873938012" b="7.5303787600003464e-06" c="2.1099079846065129e-06" d="-9.5860055560940347e-09" /> - <superelevation s="580.75891912770624" a="-0.025608036787613923" b="4.6900421497368815e-05" c="1.0437724370876487e-05" d="-8.5086539453733961e-07" /> - <superelevation s="590.77200394025283" a="-0.024946122942985444" b="0" c="-1.0278104404408195e-05" d="6.6736937481266546e-07" /> - <superelevation s="600.78508875279954" a="-0.025306632359439543" b="-5.0959628075947208e-06" c="4.1632270403993387e-07" d="-1.6164601579335114e-08" /> - <superelevation s="610.79817356534613" a="-0.025332145513336558" b="-1.6206931411435598e-06" c="8.0928763287452658e-08" d="0" /> - <superelevation s="620.81125837789284" a="-0.025340259582275249" b="0" c="1.9247195652977377e-06" d="-6.7693054826520582e-08" /> - <superelevation s="630.82434319043944" a="-0.025215242732270091" b="1.8183664221791178e-05" c="3.5232511337040253e-06" d="-2.950303749650843e-07" /> - <superelevation s="640.83742800298614" a="-0.024976110438163918" b="0" c="-3.1237331451592936e-08" d="0" /> - <superelevation s="650.85051281553285" a="-0.024979242351349823" b="-6.2556409828486574e-07" c="-1.7515405653949929e-05" d="1.1682475689819493e-06" /> - <superelevation s="660.86359762807945" a="-0.025568793995678164" b="0" c="1.3239072878715891e-05" d="-8.3704600944131107e-07" /> - <superelevation s="670.87668244062615" a="-0.025081755913108149" b="1.3356530970386561e-05" c="-2.0008615557193302e-06" d="1.3321645914167814e-07" /> - <superelevation s="680.88976725317275" a="-0.025014885874404206" b="1.3356530970386561e-05" c="3.6875000653747422e-06" d="-2.8991757610500862e-07" /> - <superelevation s="690.90285206571946" a="-0.0248024872751905" b="0" c="-8.5668041120147489e-06" d="4.2731514844687914e-07" /> - <superelevation s="700.91593687826605" a="-0.025232416307815527" b="-4.3030027956293096e-05" c="-4.3253351523133051e-06" d="4.3103766394342055e-07" /> - <superelevation s="710.92902169081276" a="-0.025664213914015733" b="0" c="3.4418179905447333e-06" d="-2.2915468808919786e-07" /> - <superelevation s="720.94210650335935" a="-0.025549186214282191" b="0" c="-5.6681517386741961e-06" d="3.7738298401785835e-07" /> - <superelevation s="730.95519131590606" a="-0.02573861937374371" b="0" c="7.5028742469607712e-07" d="0" /> - <superelevation s="740.96827612845277" a="-0.025663394155409486" b="1.5025383234538143e-05" c="2.7780953822573546e-06" d="-1.6169067111534472e-07" /> - <superelevation s="750.98136094099937" a="-0.025396732897342143" b="2.2025766682076502e-05" c="-1.1341376909972602e-06" d="6.7330725677923088e-08" /> - <superelevation s="760.99444575354607" a="-0.025222302415711495" b="1.9565445786328516e-05" c="2.2932567549972764e-06" d="-2.076301111504349e-07" /> - <superelevation s="771.00753056609267" a="-0.025004911961234562" b="3.038446499160064e-06" c="-2.089226935615529e-07" d="5.7124150467980724e-09" /> - <superelevation s="781.02061537863938" a="-0.024989699849987324" b="5.7273740031716341e-07" c="-2.8599448173994246e-08" d="8.437166494634035e-25" /> - <superelevation s="791.03370019118597" a="-0.024986832415904978" b="0" c="-3.7271091500364887e-06" d="2.4814924470071432e-07" /> - <superelevation s="801.04678500373268" a="-0.02511139472377899" b="0" c="1.3325907216914628e-05" d="-8.8723288685998908e-07" /> - <superelevation s="811.05986981627939" a="-0.024666034609375689" b="0" c="-9.7098519264497274e-06" d="6.19954558795563e-07" /> - <superelevation s="821.07295462882598" a="-0.025017171155056236" b="-7.977736292022115e-06" c="3.9836556073238098e-07" d="0" /> - <superelevation s="831.08603944137269" a="-0.025057112030108311" b="0" c="4.4589272064631064e-06" d="-2.9687336053693672e-07" /> - <superelevation s="841.09912425391929" a="-0.024908091907240748" b="0" c="-3.998035078403563e-06" d="6.7471750188558484e-08" /> - <superelevation s="851.11220906646599" a="-0.025241205416924508" b="-5.977079762242791e-05" c="-1.3909772178217421e-05" d="1.1248219729327502e-06" /> - <superelevation s="861.12529387901259" a="-0.026105072039054607" b="0" c="1.9589764901319585e-05" d="-1.3042777038282877e-06" /> - <superelevation s="871.1383786915593" a="-0.02545036990166381" b="0" c="-8.5924382776009467e-07" d="4.0225565129173162e-08" /> - <superelevation s="881.151463504106" a="-0.025496135617414865" b="-5.1080918051919318e-06" c="-4.1722123558391768e-07" d="3.6306633287499507e-08" /> - <superelevation s="891.1645483166526" a="-0.025552665414615133" b="-2.542922476060075e-06" c="3.8093991866624598e-07" d="-2.5362807819154858e-08" /> - <superelevation s="901.17763312919931" a="-0.025565396663827393" b="-2.542922476060075e-06" c="-8.6298251648376209e-06" d="4.95331338153625e-07" /> - <superelevation s="911.1907179417459" a="-0.025958823270379308" b="-2.637673013293456e-05" c="1.2350665232345469e-06" d="5.4626233014844961e-09" /> - <superelevation s="921.20380275429261" a="-0.026093621535624847" b="0" c="6.5295674947162199e-06" d="-4.347356561908901e-07" /> - <superelevation s="931.2168875668392" a="-0.02587539932537565" b="0" c="-4.7089600906963619e-06" d="3.1352043709819623e-07" /> - <superelevation s="941.22997237938591" a="-0.026032775702876702" b="0" c="7.2273193795825777e-06" d="-4.8119166170293515e-07" /> - <superelevation s="951.24305719193251" a="-0.02579123419029327" b="0" c="-7.6492492967316557e-06" d="5.0454684211164771e-07" /> - <superelevation s="961.25614200447922" a="-0.026051632204439502" b="-1.424738082567796e-06" c="7.1143813781636089e-08" d="0" /> - <superelevation s="971.26922681702592" a="-0.02605876521606771" b="0" c="4.0712059071618718e-06" d="-1.6050821231426378e-07" /> - <superelevation s="981.28231162957252" a="-0.025811717612052688" b="3.32521007460559e-05" c="-2.9953704541453736e-07" d="1.154867144540192e-07" /> - <superelevation s="991.29539644211923" a="-0.025392853006136501" b="6.1990262040651365e-05" c="1.22305839571663e-05" d="-1.0204012710126342e-06" /> - <superelevation s="1001.3084812546658" a="-0.024570290109322625" b="0" c="-1.2144695857714743e-06" d="0" /> - <superelevation s="1011.3215660672125" a="-0.024692055097969397" b="-2.4321173929176481e-05" c="-2.6493819161663528e-05" d="1.8448053566013964e-06" /> - <superelevation s="1021.3346508797591" a="-0.025739848344625779" b="0" c="3.5250949381465532e-06" d="-1.1387406584595918e-07" /> - <superelevation s="1031.3477356923058" a="-0.025500737400383951" b="3.6342469683834338e-05" c="3.9627970521828993e-06" d="-2.7146114543647406e-07" /> - <superelevation s="1041.3608205048524" a="-0.025012047882142504" b="3.4050511485144875e-05" c="-1.0199881536861569e-06" d="-4.5294906390457082e-08" /> - <superelevation s="1051.3739053173992" a="-0.024818836081561255" b="0" c="-9.4523253870241038e-07" d="2.548729832209136e-08" /> - <superelevation s="1061.3869901299458" a="-0.024888019382830948" b="-1.1263174776112935e-05" c="6.9002605896066775e-07" d="-1.1233757221050364e-07" /> - <superelevation s="1071.4000749424924" a="-0.025044394330144763" b="-3.1234120201972934e-05" c="-9.642193526436345e-06" d="5.4442553036828717e-07" /> - <superelevation s="1081.413159755039" a="-0.02577732311441315" b="-6.0574962212175903e-05" c="-2.2678869797379544e-06" d="3.5238405933273534e-07" /> - <superelevation s="1091.4262445675859" a="-0.026257478798439416" b="0" c="1.639694355420683e-05" d="-9.1511996602550865e-07" /> - <superelevation s="1101.4393293801324" a="-0.025532207537439049" b="5.3113062709748254e-05" c="-4.8384673018018829e-07" d="-1.4436683695500942e-07" /> - <superelevation s="1111.452414192679" a="-0.025193827595305786" b="0" c="-1.1307689718411082e-05" d="6.6555613339579408e-07" /> - <superelevation s="1121.4654990052259" a="-0.025659385526566183" b="-2.6260009861171615e-05" c="1.3112847016070409e-06" d="0" /> - <superelevation s="1131.4785838177725" a="-0.025790857379525294" b="0" c="1.8014773917282392e-05" d="-1.1667256901281815e-06" /> - <superelevation s="1141.4916686303191" a="-0.02515597410621118" b="9.8326286963988183e-06" c="-4.9098898493694136e-07" d="0" /> - <superelevation s="1151.5047534428656" a="-0.025106746633677519" b="0" c="-5.6165090326250238e-05" d="3.7394463596189052e-06" /> - <superelevation s="1161.5178382554125" a="-0.026983818914461621" b="0" c="4.7861556205958525e-06" d="-1.9568683681681164e-07" /> - <superelevation s="1171.5309230679591" a="-0.02670040601401933" b="3.6988581218457639e-05" c="1.987417136667183e-06" d="-1.1186555637269842e-07" /> - <superelevation s="1181.5440078805057" a="-0.026243079312789252" b="4.3141385152942904e-05" c="3.5500365112273956e-06" d="-3.7978885157552617e-07" /> - <superelevation s="1191.5570926930523" a="-0.025836449317085019" b="0" c="-2.6908622788220562e-05" d="1.4848514241821052e-06" /> - <superelevation s="1201.5701775055991" a="-0.027043670333678466" b="-9.2254714252646734e-05" c="-7.3162474180581079e-07" d="3.5542377887967393e-07" /> - <superelevation s="1211.5832623181457" a="-0.027683957873423058" b="0" c="4.0725103637759288e-07" d="-1.3499466391414456e-23" /> - <superelevation s="1221.5963471306923" a="-0.027643126123989489" b="8.1556783344940566e-06" c="5.7308275209803984e-06" d="-2.7457709465913733e-07" /> - <superelevation s="1231.6094319432391" a="-0.027262535498306727" b="4.0333365542319824e-05" c="5.461904310762683e-07" d="-3.1367993858568035e-08" /> - <superelevation s="1241.6225167557857" a="-0.026835403304088096" b="4.1836426834149369e-05" c="3.9322046147360583e-06" d="-4.0089493144415515e-07" /> - <superelevation s="1251.6356015683323" a="-0.026424712118018251" b="0" c="-6.2203513507996987e-06" d="3.2257185471921145e-07" /> - <superelevation s="1261.6486863808789" a="-0.026724536410761314" b="-2.7544841643093265e-05" c="1.5070090808882668e-06" d="-1.2658254439348643e-07" /> - <superelevation s="1271.6617711934257" a="-0.026976329789059172" b="-3.5439429030095139e-05" c="-6.6231750540263867e-06" d="5.5879089551940426e-07" /> - <superelevation s="1281.6748560059723" a="-0.027434252427934454" b="0" c="6.0700573014975138e-06" d="-1.3105595914832843e-07" /> - <superelevation s="1291.6879408185189" a="-0.026957228232668707" b="8.2140251534629059e-05" c="1.8539816600210994e-05" d="-1.5074583357252054e-06" /> - <superelevation s="1301.7010256310657" a="-0.025789297817654117" b="0" c="-3.2244695093650856e-05" d="2.1468372432870824e-06" /> - <superelevation s="1311.7141104436123" a="-0.026866935599611643" b="0" c="9.5114997690157574e-07" d="0" /> - <superelevation s="1321.7271952561589" a="-0.026771571526689866" b="1.904789077633373e-05" c="-4.3022019678773468e-07" d="1.8998140826885462e-07" /> - <superelevation s="1331.7402800687055" a="-0.026433249915353098" b="6.7575900468324162e-05" c="1.8142746050292829e-05" d="-1.0976618616913107e-06" /> - <superelevation s="1341.7533648812523" a="-0.025039557404822974" b="0.00010074472604738967" c="-1.4563421764174846e-06" d="-2.3797605344661442e-07" /> - <superelevation s="1351.7664496937989" a="-0.024415718942694488" b="0" c="-6.3315812413784743e-06" d="1.606175829112277e-07" /> - <superelevation s="1361.7795345063455" a="-0.024889286198398856" b="-7.848586350456747e-05" c="-1.4916879787993738e-05" d="1.1786431182505855e-06" /> - <superelevation s="1371.7926193188923" a="-0.025987490158408899" b="-2.2694948090504315e-05" c="3.35536909471389e-06" d="-2.2192007630089395e-07" /> - <superelevation s="1381.8057041314389" a="-0.02610111337843218" b="-2.2250121277514841e-05" c="-5.1581376895508986e-07" d="-5.7227741327877925e-08" /> - <superelevation s="1391.8187889439855" a="-0.026433074861291306" b="-4.979317595827714e-05" c="-9.9584094383012176e-06" d="8.2857015291207558e-07" /> - <superelevation s="1401.8318737565321" a="-0.02709827996634475" b="0" c="3.0332868087425697e-05" d="-1.9283035878330546e-06" /> - <superelevation s="1411.8449585690789" a="-0.025992932910309789" b="2.744520527766175e-05" c="-1.3704670334597115e-06" d="0" /> - <superelevation s="1421.8580433816255" a="-0.0258555273262383" b="0" c="-1.1383542956651393e-05" d="7.579111512426565e-07" /> - <superelevation s="1431.8711281941721" a="-0.026235972417965634" b="0" c="9.0184639552315e-06" d="-5.2565153361136186e-07" /> - <superelevation s="1441.8842130067187" a="-0.025859482030428264" b="2.2496875740863045e-05" c="-3.37012162016337e-06" d="2.2438117611471527e-07" /> - <superelevation s="1451.8972978192655" a="-0.025746850468022969" b="2.2496875740863045e-05" c="3.4316113639778009e-05" d="-2.3595450803705325e-06" /> - <superelevation s="1461.9103826318121" a="-0.024449809172280818" b="0" c="-1.3610270097802324e-05" d="7.8205918010788473e-07" /> - <superelevation s="1471.9234674443587" a="-0.025029267140829203" b="-3.7329436028734834e-05" c="4.9770135456057525e-06" d="-3.108912841903697e-07" /> - <superelevation s="1481.9365522569055" a="-0.025216158545309335" b="-3.1170540730976259e-05" c="-6.8598249357417233e-06" d="5.6035447559148723e-07" /> - <superelevation s="1491.9496370694521" a="-0.025653493676813612" b="0" c="6.3541255843251661e-06" d="-2.9970672925294608e-07" /> - <superelevation s="1501.9627218819987" a="-0.025317301930873424" b="3.7101327672228526e-05" c="4.7617278315192527e-06" d="-4.4038177320442505e-07" /> - <superelevation s="1511.9758066945453" a="-0.024910496195533399" b="0" c="-3.670549806970055e-05" d="2.4438354917162679e-06" /> - <superelevation s="1521.9888915070921" a="-0.02613721678974577" b="0" c="2.768225833603594e-05" d="-1.2594387356147587e-06" /> - <superelevation s="1532.0019763196387" a="-0.024626130936684552" b="0.00017554856227823022" c="1.3095605862892422e-05" d="-1.0621183658970589e-06" /> - <superelevation s="1542.0150611321853" a="-0.022621651504120696" b="0.00011833347413631281" c="-7.7590567864272651e-06" d="1.8476971423353675e-07" /> - <superelevation s="1552.0281459447322" a="-0.022029209947775588" b="1.8525356599706523e-05" c="-2.3885289383276703e-06" d="1.4615591059298105e-07" /> - <superelevation s="1562.0412307572788" a="-0.021936461964367823" b="1.4653864536844268e-05" c="3.0787138853740838e-06" d="-2.5369801754539791e-07" /> - <superelevation s="1572.0543155698253" a="-0.021735749170897607" b="0" c="-3.7514937040189759e-05" d="2.4977275729708453e-06" /> - <superelevation s="1582.0674003823719" a="-0.022989521719369518" b="0" c="4.0022150860619455e-06" d="-2.0737208226630315e-07" /> - <superelevation s="1592.0804851949188" a="-0.022796439336169025" b="1.7774501506296265e-05" c="1.3231672029276628e-06" d="-1.4718946652612621e-07" /> - <superelevation s="1602.0935700074654" a="-0.02263356653720295" b="0" c="-1.8759825251418587e-05" d="1.24902069659307e-06" /> - <superelevation s="1612.106654820012" a="-0.02326053157486678" b="0" c="5.0065142398553617e-05" d="-3.3333145802593465e-06" /> - <superelevation s="1622.1197396325588" a="-0.021587323350969176" b="0" c="-2.1351693822997813e-05" d="1.0646491449113788e-06" /> - <superelevation s="1632.1328244451054" a="-0.022659250211091816" b="-0.00010736150789650437" c="5.0777536433348622e-06" d="-5.1019273228624716e-07" /> - <superelevation s="1642.145909257652" a="-0.023737363119310354" b="-0.00015913218043623803" c="-3.1310780770656471e-05" d="2.6137128273340818e-06" /> - <superelevation s="1652.1589940701986" a="-0.025846058249318855" b="0" c="1.3697349796691202e-06" d="0" /> - <superelevation s="1662.1720788827454" a="-0.025708726062327495" b="2.7430545044275914e-05" c="7.5963882253075295e-06" d="-3.3790086761854708e-07" /> - <superelevation s="1672.185163695292" a="-0.025011662633712513" b="7.7921388167679018e-05" c="-1.4765615468301993e-06" d="2.3030761487737407e-07" /> - <superelevation s="1682.1982485078386" a="-0.024148259125458826" b="0.00011762473084480657" c="1.0899195012961131e-05" d="-7.7534319779039292e-07" /> - <superelevation s="1692.2113333203854" a="-0.022656089821708445" b="0.00010268178814515105" c="-3.6291174985246859e-06" d="-9.9753662714951565e-08" /> - <superelevation s="1702.224418132932" a="-0.022091936218656103" b="0" c="-3.4114961065763313e-06" d="1.292958232759291e-07" /> - <superelevation s="1712.2375029454786" a="-0.022304175157985141" b="-2.9428877615111724e-05" c="-2.6908007688336663e-06" d="1.8661629118091174e-07" /> - <superelevation s="1722.2505877580252" a="-0.022681283913652438" b="-2.71838166805162e-05" c="3.7612380978791475e-06" d="-2.7112817034331209e-07" /> - <superelevation s="1732.263672570572" a="-0.022848562881886598" b="-3.3412074573572311e-05" c="-1.335912254173372e-05" d="6.922137635147402e-07" /> - <superelevation s="1742.2767573831186" a="-0.023827596825327018" b="-9.2736194795480474e-05" c="-7.7516978694172997e-06" d="8.2441782199929279e-07" /> - <superelevation s="1752.2898421956652" a="-0.024705713649246574" b="0" c="8.5979643259930146e-06" d="-5.7244858349210345e-07" /> - <superelevation s="1762.302927008212" a="-0.0244183643293444" b="0" c="-1.3083001353492901e-05" d="8.7106032412706678e-07" /> - <superelevation s="1772.3160118207586" a="-0.024855606378586217" b="0" c="5.2463754869373087e-05" d="-3.4930131157739383e-06" /> - <superelevation s="1782.3290966333052" a="-0.02310223503280702" b="0" c="-4.9501111442308546e-06" d="3.2957616538100672e-07" /> - <superelevation s="1792.3421814458518" a="-0.023267670828630765" b="0" c="1.0304308574117528e-05" d="-5.9701506535014741e-07" /> - <superelevation s="1802.3552662583986" a="-0.02283390329031507" b="2.6782295307474846e-05" c="-1.3373648485386851e-06" d="0" /> - <superelevation s="1812.3683510709452" a="-0.022699816593120863" b="0" c="-4.0900279498487705e-06" d="0" /> - <superelevation s="1822.3814358834918" a="-0.023109890433349586" b="-8.1907593495042229e-05" c="-1.807626555333259e-05" d="1.3446970819991034e-06" /> - <superelevation s="1832.3945206960384" a="-0.024392415730298034" b="-3.9440431813464836e-05" c="5.9083338279596094e-06" d="-3.9337419909836659e-07" /> - <superelevation s="1842.4076055085852" a="-0.024589875924693881" b="-3.9440431813464836e-05" c="-3.3329077698494583e-05" d="1.8085761179649387e-06" /> - <superelevation s="1852.4206903211318" a="-0.026510747008988474" b="-0.00016290053814162187" c="-7.5994431789499476e-06" d="1.0475510589474401e-06" /> - <superelevation s="1862.4337751336784" a="-0.027852149733536963" b="0" c="2.5318860332447801e-05" d="-1.4040177371110673e-06" /> - <superelevation s="1872.4468599462252" a="-0.026723169859045617" b="8.473147090878221e-05" c="6.7363542120089022e-08" d="-2.8618558849197985e-07" /> - <superelevation s="1882.4599447587718" a="-0.02615530292453401" b="0" c="-4.9409120972111464e-06" d="2.1940168519138004e-07" /> - <superelevation s="1892.4730295713184" a="-0.026430423936784186" b="-3.2954675715809312e-05" c="-4.9325713495233191e-06" d="4.3797038555900984e-07" /> - <superelevation s="1902.486114383865" a="-0.026815258850358747" b="0" c="9.6322651457123557e-06" d="-5.0254639680479429e-07" /> - <superelevation s="1912.4991991964118" a="-0.026354031655762538" b="4.1738654990176774e-05" c="2.8729684875461372e-06" d="-3.3004641332761395e-07" /> - <superelevation s="1922.5122840089584" a="-0.025979393465602213" b="0" c="-6.5350406317195373e-06" d="4.3510005518185777e-07" /> - <superelevation s="1932.525368821505" a="-0.026197798591497019" b="0" c="1.8176998029226855e-05" d="-1.2102163232420442e-06" /> - <superelevation s="1942.5384536340518" a="-0.025590312002401621" b="0" c="-9.5452784243640484e-07" d="0" /> - <superelevation s="1952.5515384465984" a="-0.025686014746429963" b="-1.9115536484505667e-05" c="-1.1298047800613585e-05" d="8.1577095520035503e-07" /> - <superelevation s="1962.564623259145" a="-0.026191206195527283" b="0" c="5.3169902217486798e-06" d="-2.8590054826428652e-07" /> - <superelevation s="1972.5777080716916" a="-0.025945139130530877" b="2.0484179442467232e-05" c="-4.0850265369898316e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-5.2384787362378296" b="-0.00027254604914326718" c="-0.0005788465429880349" d="3.0144810471085306e-05" /> - <laneOffset s="9.6578516207850988" a="-5.2679470635011674" b="-0.0030181840841061818" c="1.7796603456967885e-06" d="-6.5707840857164491e-08" /> - <laneOffset s="16.043916579535537" a="-5.2871659179688013" b="-0.0030034930880921927" c="1.4262581380345751e-05" d="1.6580207809663008e-07" /> - <laneOffset s="20.026169625093317" a="-5.2988899358914949" b="-0.0028820106349702738" c="4.6599233878508144e-06" d="-1.2992411433633729e-06" /> - <laneOffset s="30.039254437639975" a="-5.3285848881067119" b="-0.003179483248721133" c="-4.5501708833221872e-05" d="4.6595922179004463e-07" /> - <laneOffset s="33.233426017371293" a="-5.339189759608379" b="-0.0034559016077903371" c="0.00020593634782756264" d="-2.2792927486836273e-05" /> - <laneOffset s="40.052339250186634" a="-5.3604065042594762" b="-0.0038268251820447489" c="-0.00025810494622282448" d="-2.4235270312776348e-05" /> - <laneOffset s="43.387776481577745" a="-5.3769413967996957" b="-0.0063574733128665449" c="-0.00041723961238644897" d="3.9706393368285945e-05" /> - <laneOffset s="47.411795392328656" a="-5.4066929748541162" b="-0.0077865689878425185" c="-0.00021919321502212609" d="2.1991053891927918e-05" /> - <laneOffset s="50.065424062733292" a="-5.4284882115968927" b="-0.0084853175980149978" c="-5.877048903541818e-05" d="2.8192367082720209e-05" /> - <laneOffset s="52.958920695157659" a="-5.4528495267908754" b="-0.0081173152323245849" c="-3.1505161401481993e-05" d="4.0996696574491344e-06" /> - <laneOffset s="60.078508875279951" a="-5.5107589239380532" b="-0.0079425040245081433" c="5.1549234275816734e-05" d="2.1819777106019197e-06" /> - <laneOffset s="70.091593687826617" a="-5.5829289137109219" b="-0.0062538628347727195" c="0.00013299659360643115" d="2.8137338556941656e-07" /> - <laneOffset s="71.841599823788883" a="-5.5934643991197479" b="-0.005785787988916183" c="0.00017234502076236209" d="-1.6269398419370805e-05" /> - <laneOffset s="76.985666164198705" a="-5.6208809616419897" b="-0.0053042136301009899" c="0.00022728480870460132" d="-2.132736634699432e-05" /> - <laneOffset s="80.104678500373268" a="-5.6358609141751206" b="-0.0045088384699661904" c="1.9620140464298005e-05" d="-2.0396823521480483e-05" /> - <laneOffset s="87.424714496102979" a="-5.6758146942800636" b="-0.0075003627171378413" c="-0.0013476866767197508" d="0.00016814338091705489" /> - <laneOffset s="90.117763312919919" a="-5.7025035805592896" b="-0.011100749109463149" c="2.4808090823564663e-06" d="0.00016361393307614958" /> - <laneOffset s="94.214388293455315" a="-5.7366889415495663" b="-0.0028429511095945789" c="0.0002257330718647203" d="-9.3306786109311734e-06" /> - <laneOffset s="100.13084812546658" a="-5.7475398837038103" b="-0.0011517169374654608" c="8.6251133749312947e-05" d="-9.3064983615769074e-06" /> - <laneOffset s="108.22672640182475" a="-5.75614917311347" b="-0.0015850938858472227" c="-0.00022100043512691405" d="2.2787895600809579e-05" /> - <laneOffset s="110.14393293801325" a="-5.7598398653514016" b="-0.0021812177453000474" c="-7.0032690079834296e-05" d="3.0088246848416325e-05" /> - <laneOffset s="115.89639975219012" a="-5.7689772681325229" b="-0" c="5.6115649106446694e-05" d="4.7580895183157674e-07" /> - <laneOffset s="120.1570177505599" a="-5.7679218080701942" b="0.00050408657719069492" c="5.2009193160699678e-05" d="4.7609781775360172e-07" /> - <laneOffset s="130.17010256310655" a="-5.7571818384289219" b="0.0016888348704010511" c="8.4484605886543641e-05" d="-5.2223051745086385e-06" /> - <laneOffset s="133.40373952549149" a="-5.7510139318295836" b="0.0020714002982085557" c="0.00069673548694216159" d="-4.9100486530725546e-05" /> - <laneOffset s="138.70295150047656" a="-5.7277783351888658" b="0.0053192306970845336" c="0.0017559978116427025" d="-0.00041842176179748586" /> - <laneOffset s="140.18318737565323" a="-5.7174141403273406" b="0.0077674030468438222" c="-3.6516360816846332e-05" d="-0.00040007170808919736" /> - <laneOffset s="142.54354141861245" a="-5.7045447736740131" b="0.00090829600169389118" c="-7.7240014099949167e-05" d="2.8979897321211618e-06" /> - <laneOffset s="150.19627218819988" a="-5.7008185237994251" b="0.00023525805449546071" c="-1.2911303145987525e-05" d="3.3691429102069107e-06" /> - <laneOffset s="159.73331690626659" a="-5.696826664789759" b="0.00090831012713351754" c="7.1844779514642829e-05" d="1.1649233716500334e-05" /> - <laneOffset s="161.87206823804246" a="-5.6944414120220816" b="0.0013754861385467806" c="2.7908819125711441e-05" d="5.3905501477777713e-06" /> - <laneOffset s="170.22244181329319" a="-5.6778708349390863" b="0.0029692130605101742" c="0.00016369012013732698" d="4.7005872434862121e-06" /> - <laneOffset s="178.32524331982219" a="-5.6405640741512642" b="0.0065477668625038314" c="0.0016053908673785389" d="-0.00029244801243483013" /> - <laneOffset s="180.23552662583984" a="-5.6242362673890414" b="0.0094796812696208693" c="-6.7445857498257692e-05" d="-0.00028655282566854333" /> - <laneOffset s="181.49454006068373" a="-5.6129799987326088" b="0.0079471933883175361" c="0.00034375063068291473" d="-8.6316207008225115e-05" /> - <laneOffset s="188.24742533094403" a="-5.5702183188053525" b="0.00078137548215711301" c="-0.00012292107222701084" d="9.6157258574198194e-06" /> - <laneOffset s="190.24861143838652" a="-5.5690698459465464" b="0.0004049252123329456" c="-6.9838129873511865e-05" d="7.8351382337199609e-06" /> - <laneOffset s="198.20405528430439" a="-5.5663235421210411" b="0.00078137480226030229" c="0.00031197267501716211" d="-2.9337778152716895e-05" /> - <laneOffset s="200.26169625093317" a="-5.5636504818517514" b="0.0016925918602637689" c="0.00012830514761211318" d="-2.8488731639500804e-05" /> - <laneOffset s="204.88881974255733" a="-5.5558939230669129" b="0.0010501049219936083" c="-4.4245093453341224e-05" d="-6.2020940942225785e-06" /> - <laneOffset s="210.39075993320031" a="-5.5524886329259733" b="-0" c="-0.00014057105671245462" d="2.6003759377100178e-07" /> - <laneOffset s="215.92745387840785" a="-5.5567537003725684" b="-0.0015326834955567833" c="-0.0008687998787612367" d="0.00011292872314299888" /> - <laneOffset s="220.28039677690472" a="-5.5705731347896181" b="-0.0026769977795780306" c="0.0002086871426997167" d="-1.1881745548407584e-05" /> - <laneOffset s="228.14320309023074" a="-5.5844958447978241" b="-0.0015989858542510671" c="6.6338359798013012e-05" d="-3.5550777224076583e-06" /> - <laneOffset s="230.30095068857315" a="-5.5876729046242337" b="-0.001362358970438339" c="4.8201142649407587e-05" d="-1.3680308428738991e-06" /> - <laneOffset s="240.3140355011198" a="-5.5978549919652636" b="-0.00080855869277907425" c="3.4988066643861766e-06" d="-1.3690717518658041e-06" /> - <laneOffset s="250.32712031366646" a="-5.6069748148430785" b="-0.0011502880686320562" c="-3.4094446526662097e-05" d="-2.9835424977916228e-06" /> - <laneOffset s="252.70325948477546" a="-5.6099405844214223" b="-0.0013628499456778953" c="7.3673185900152068e-05" d="-5.4002655649611992e-06" /> - <laneOffset s="260.34020512621311" a="-5.6184570861604861" b="-0.0011824517867925894" c="-4.2415562345143514e-05" d="-5.222287756716163e-06" /> - <laneOffset s="269.21876686723522" a="-5.6359541384474596" b="-0.0031706311141734152" c="-0.0011090435334655893" d="7.1243158668990797e-05" /> - <laneOffset s="270.35328993875976" a="-5.6408747538905839" b="-0.0054120017528541649" c="-0.00081501132482563463" d="9.544361492277462e-05" /> - <laneOffset s="277.42870435711296" a="-5.686160909451929" b="-0.0026109390198919926" c="0.001003707267354013" d="-0.00016751659371351603" /> - <laneOffset s="280.36637475130647" a="-5.6894159380786409" b="-0.0010507748198588624" c="-0.00031810545761349691" d="-0.00022991312661183142" /> - <laneOffset s="281.47825216242222" a="-5.6912935700328742" b="-0.0026108684183262982" c="-0.0037872765320507932" d="0.0005590772132343198" /> - <laneOffset s="285.62109311720673" a="-5.7273588117686112" b="-0.0052044904206425676" c="0.0013328867947701008" d="-0.0001482843527180479" /> - <laneOffset s="290.37945956385312" a="-5.7379204273629654" b="-0.0025921485550699343" c="-0.00056386351352483459" d="-0.00023564755239128719" /> - <laneOffset s="291.66293848005159" a="-5.7426744871377684" b="-0.0052041218723613628" c="-0.0017068433868521222" d="0.00014576174639380587" /> - <laneOffset s="297.91153402037116" a="-5.8062741690755315" b="-0.0094610911730949147" c="0.00018063400077437269" d="-2.1985582793099668e-05" /> - <laneOffset s="300.39254437639977" a="-5.8289711134363538" b="-0.0089707725059103918" c="0.00011553268859302409" d="1.2475974524621595e-07" /> - <laneOffset s="310.40562918894642" a="-5.907087446137008" b="-0.0066195693517756612" c="0.0001285364120659533" d="1.2439817060717399e-06" /> - <laneOffset s="320.41871400149307" a="-5.9592335834894739" b="-0.0036713055739192343" c="0.00014387959572711927" d="2.1721851211714228e-06" /> - <laneOffset s="330.75671192976841" a="-5.9794105441485446" b="-0" c="0.012846887174418772" d="-0.021404986183083334" /> - <laneOffset s="331.15683325553584" a="-5.9787249611272886" b="-0" c="-0.00042329543830117646" d="1.1275837490460663e-05" /> - <laneOffset s="340.44488362658637" a="-6.0062068788807768" b="-0.0049449509292862738" c="-0.00015390217007272975" d="1.025227086655656e-05" /> - <laneOffset s="350.45796843913303" a="-6.0608590426460278" b="-0.004943286424373328" c="0.00011675217565018452" d="1.659806603418048e-05" /> - <laneOffset s="352.39639572121121" a="-6.0698816532191282" b="-0.0043035535036314498" c="-7.8255507299153953e-05" d="2.6952943058428425e-06" /> - <laneOffset s="360.47105325167968" a="-6.1083146530085646" b="-0.005040126018068144" c="-1.9558996578783004e-06" d="1.615527766251397e-06" /> - <laneOffset s="370.48413806422639" a="-6.1573560867144597" b="-0.0045933677040371178" c="5.9120485001516782e-05" d="2.5490305878593706e-06" /> - <laneOffset s="381.2869146770721" a="-6.1968643306786495" b="-0.0024236214432633244" c="0.00024516468120260048" d="-1.9400593829405601e-05" /> - <laneOffset s="390.46071380379726" a="-6.2134437391001756" b="-0.0028236182564585714" c="-0.00011023151109356127" d="1.6985634087982652e-08" /> - <laneOffset s="400.52339250186634" a="-6.2530013628685346" b="-0.0050369070448703672" c="-7.5235909697580049e-05" d="-8.334417921541954e-06" /> - <laneOffset s="402.3025652663232" a="-6.2622479851877406" b="-0.0053837691005468521" c="-0.00090512652377763771" d="0.00018100813184137866" /> - <laneOffset s="406.74050043828976" a="-6.288146257795586" b="-0.0027225434493670831" c="0.00020462250511171185" d="-7.4687373779532523e-06" /> - <laneOffset s="410.53647731441299" a="-6.2959409982432692" b="-0.0014919198332101014" c="0.00011249017804684154" d="-6.1658773224586406e-06" /> - <laneOffset s="417.54054304680221" a="-6.3029906624463612" b="-0.00082357979270517565" c="8.1066397515795765e-05" d="-5.1238443773335179e-06" /> - <laneOffset s="420.54956212695964" a="-6.304874434005618" b="-0.00047489599004009588" c="2.2930680257165168e-05" d="-9.036293666385405e-06" /> - <laneOffset s="423.03203028867154" a="-6.3060502769086391" b="-0.0005281091186980255" c="-5.9364305444197365e-06" d="2.88264626593824e-07" /> - <laneOffset s="430.56264693950629" a="-6.3102408132546364" b="-0.00056847646134515375" c="4.8623765921070879e-07" d="5.3508110602500795e-07" /> - <laneOffset s="440.575731752053" a="-6.3153470808938916" b="-0.00039779429070101446" c="1.1633593707655679e-05" d="6.5661169439599071e-07" /> - <laneOffset s="450.05889048612789" a="-6.3175132409729535" b="-0" c="0.00020476415631601099" d="-8.8930544886883495e-06" /> - <laneOffset s="460.60190137714631" a="-6.3051745174872291" b="0.0013521369469224047" c="-7.0733261071806672e-05" d="-8.9154612281219643e-06" /> - <laneOffset s="461.79965653186139" a="-6.3036717832759104" b="0.0011443238630985167" c="-1.5292861472322408e-05" d="8.4607151365216131e-07" /> - <laneOffset s="470.61498618969296" a="-6.2941930075319368" b="0.0010719453783491445" c="-3.014150405732594e-06" d="1.761693836656663e-06" /> - <laneOffset s="478.02146914478197" a="-6.2857032480558201" b="0.0013172152483526471" c="1.7144099140348726e-05" d="2.3175650415834907e-06" /> - <laneOffset s="480.62807100223961" a="-6.2821122643338523" b="0.0014538301354033495" c="2.0959958637358413e-05" d="-2.2519680170237946e-06" /> - <laneOffset s="488.81573806662306" a="-6.2700397448524745" b="0.0013441548955676434" c="-5.7847791928706465e-06" d="-4.8271364192269396e-06" /> - <laneOffset s="490.64115581478626" a="-6.2676347377758095" b="0.0012747813911438961" c="-1.5992206202184734e-05" d="1.6975896034084123e-07" /> - <laneOffset s="500.65424062733291" a="-6.2563032258356017" b="0.0010055798082062568" c="-8.9062930679558361e-06" d="3.2414813724840725e-07" /> - <laneOffset s="510.66732543987956" a="-6.246801809277212" b="0.00092471996522259928" c="-2.7663716165207274e-07" d="3.7260362064884819e-07" /> - <laneOffset s="521.20447816224691" a="-6.236652679103849" b="0.0010430023437008479" c="-8.3638233206228662e-05" d="2.7239252521917799e-05" /> - <laneOffset s="524.17854857754469" a="-6.2335739507921728" b="0.0012683116691540181" c="0.00021627767689690302" d="-1.5943568129300664e-05" /> - <laneOffset s="530.69349506497292" a="-6.2205399407560469" b="0.0020562349930397872" c="-0.00011134095244379502" d="-1.3346979810252663e-05" /> - <laneOffset s="533.04760293144534" a="-6.2164904991098231" b="0.001310117936027626" c="-0.00021325995509816799" d="1.5253235029276278e-05" /> - <laneOffset s="540.70657987751952" a="-6.2121132519189342" b="0.0007276727761619206" c="0.00011660266671626833" d="2.1884514445434781e-05" /> - <laneOffset s="542.39840610185774" a="-6.210442431839688" b="0.0013101342345828992" c="0.0010919326544709972" d="-0.00013901717678434014" /> - <laneOffset s="547.75112438841541" a="-6.1934642595494198" b="0.0010505592783929686" c="-0.00010648444905319363" d="5.4343008430986975e-06" /> - <laneOffset s="550.71966469006622" a="-6.1911418392112774" b="0.00056201747294398372" c="-6.1226633862856693e-05" d="4.2834089214725978e-06" /> - <laneOffset s="560.73274950261293" a="-6.187352762025057" b="0.00062427025035944055" c="6.9975288174395567e-05" d="4.1185990410161759e-06" /> - <laneOffset s="563.22869423787449" a="-6.1852946496649901" b="0.0010505525596645237" c="0.00029987177754936599" d="-2.1544640082112058e-05" /> - <laneOffset s="570.74583431515953" a="-6.1696041289643482" b="0.0019066144158119325" c="-0.00018368380007123406" d="-2.1953126301790693e-05" /> - <laneOffset s="574.01720570136104" a="-6.1661012198302725" b="-0" c="-0.00025467262398767843" d="2.2691960087945533e-05" /> - <laneOffset s="581.49922790953906" a="-6.1708534667097723" b="-0" c="0.00133555302690682" d="-0.00013467258883582262" /> - <laneOffset s="586.64809683207875" a="-6.1538297484480005" b="0.0030423200667281298" c="1.97365004538067e-05" d="-1.4857236213493527e-05" /> - <laneOffset s="591.15901999468019" a="-6.1410682182340253" b="0.002313415546567066" c="-4.9099841462673762e-05" d="1.2401665565344781e-07" /> - <laneOffset s="600.78508875279954" a="-6.1232381530553157" b="0.0014026132430028286" c="-4.742846557218611e-05" d="7.8726228660293046e-09" /> - <laneOffset s="610.79817356534613" a="-6.1139410306562558" b="0.00045517071800683093" c="-4.7429222842080437e-05" d="1.6485636651450683e-08" /> - <laneOffset s="615.6086591872604" a="-6.1128471521359531" b="-0" c="-0.00038837333375493343" d="3.316462319319511e-05" /> - <laneOffset s="620.81125837789284" a="-6.1186890605769824" b="-0.0013480972013701438" c="0.00013002929489398145" d="3.2951590154102477e-05" /> - <laneOffset s="623.41601792323422" a="-6.1207359668936077" b="-0" c="0.00019989006090298934" d="-8.1662118293085693e-06" /> - <laneOffset s="630.82434319043944" a="-6.113085670374435" b="0.0016171356266189323" c="2.0679447227477822e-05" d="-8.1782872467449162e-06" /> - <laneOffset s="639.82944286001111" a="-6.1028183807053251" b="-0" c="-0.00012338565734442523" d="1.4154438415483517e-05" /> - <laneOffset s="640.83742800298614" a="-6.1029292485054443" b="-0.00020559764481593577" c="-7.8291331210746505e-05" d="1.5681939143872073e-05" /> - <laneOffset s="645.17357337891588" a="-6.1040142646498028" b="-0" c="0.00024564067087043238" d="-7.9481487317367832e-06" /> - <laneOffset s="650.85051281553285" a="-6.0975519937336173" b="0.0020205241628275384" c="0.00010752958151432716" d="-7.7717699080801119e-06" /> - <laneOffset s="660.86359762807945" a="-6.0743415147651509" b="0.0018362933085124143" c="-0.00012441022007301605" d="-8.5279745834691937e-06" /> - <laneOffset s="665.76920743149185" a="-6.0693340667558768" b="-0" c="-0.0028400317251465602" d="0.00035678881326286908" /> - <laneOffset s="671.07586059170762" a="-6.0959930353707339" b="-0" c="2.2646207693234298e-05" d="-2.0774259686486777e-08" /> - <laneOffset s="680.88976725317275" a="-6.0938315524378268" b="0.00043849305796580569" c="2.8803338751215221e-05" d="-3.4863642433712052e-06" /> - <laneOffset s="682.12564001050316" a="-6.0932522181597664" b="0.00049371255687532503" c="0.00053519323003868059" d="-3.6136789453576737e-05" /> - <laneOffset s="690.90285206571946" a="-6.0721231990406892" b="0.001536846186677081" c="-0.00041879473181969225" d="-3.4505108862517128e-05" /> - <laneOffset s="692.44411570959949" a="-6.0708756903426844" b="-0" c="-0.00021225847047328964" d="9.6985320296241468e-06" /> - <laneOffset s="700.91593687826605" a="-6.0802127822306513" b="-0.001508189644301402" c="2.1060927407978678e-05" d="1.2685116376526789e-05" /> - <laneOffset s="703.12156529954882" a="-6.0833007205832486" b="-0.0012301529460462775" c="-0.00010749298004990376" d="6.9305193903474828e-06" /> - <laneOffset s="710.92902169081276" a="-6.0961591356164071" b="-0.0016412684312825546" c="5.3272081656167228e-05" d="6.6344994804267178e-06" /> - <laneOffset s="717.71955421822554" a="-6.1027703778476701" b="-0" c="5.0926629850639817e-05" d="-2.1030721458677436e-06" /> - <laneOffset s="720.94210650335935" a="-6.1023118935625256" b="0.00026270723118672861" c="3.0973568469774701e-05" d="-1.7822248240211726e-06" /> - <laneOffset s="730.95519131590606" a="-6.0983651459645039" b="0.00034692159996966437" c="-2.3096986451749177e-05" d="-1.8909055432616219e-06" /> - <laneOffset s="735.70028970580915" a="-6.097441044812121" b="-0" c="-0.0001955025269106947" d="4.4634033465709675e-06" /> - <laneOffset s="740.96827612845277" a="-6.1022140391759523" b="-0.0016882084778516747" c="-0.00012270514580552144" d="4.502597031968078e-06" /> - <laneOffset s="750.82234652630427" a="-6.1264564248162605" b="-0.0027948557352915613" c="-0.00077530823962486959" d="0.00015521895775823957" /> - <laneOffset s="755.44943719323533" a="-6.1406109002855578" b="-0" c="0.00031124747927688853" d="-2.9392660137344066e-05" /> - <laneOffset s="760.99444575354607" a="-6.1360521807867885" b="0.00074052093467249407" c="-0.00016941955762392465" d="-3.2234010030144497e-05" /> - <laneOffset s="762.51770750610353" a="-6.1354312121978198" b="-0" c="-0.00019269191623346059" d="5.4896014225250149e-06" /> - <laneOffset s="771.00753056609267" a="-6.1459606791444115" b="-0.0020848169683797234" c="-5.1631496073112798e-05" d="5.5770498990044452e-06" /> - <laneOffset s="781.02061537863938" a="-6.1664138275306097" b="-0.0014413017533072905" c="0.00011606901241393853" d="5.5531863322966382e-06" /> - <laneOffset s="783.35886979195107" a="-6.1690783647582181" b="-0.0008074189579461463" c="0.00017667511084188919" d="-2.3540785534393821e-05" /> - <laneOffset s="789.21568484218722" a="-6.1724763025228624" b="-0.0011604200909095949" c="-0.00062529965568282645" d="3.8644871204294522e-05" /> - <laneOffset s="791.03370019118597" a="-6.1764204799406581" b="-0.0030508440903210927" c="-0.00041547413923657316" d="3.874477272397478e-05" /> - <laneOffset s="797.75345390454027" a="-6.2039258046148982" b="-0.0033860407757570726" c="6.0452977596232064e-05" d="-2.0652819045384931e-06" /> - <laneOffset s="801.04678500373268" a="-6.2144952541880061" b="-0.0030550577602507811" c="4.1459309778871314e-05" d="-2.5628942800556027e-06" /> - <laneOffset s="809.35758159339957" a="-6.2384928063814025" b="-0.0028969902285031863" c="-2.9359791670258624e-07" d="-6.311864358671898e-07" /> - <laneOffset s="811.05986981627939" a="-6.2434282830707399" b="-0.0029034769331812453" c="-5.3259058703543704e-07" d="1.7406890600657914e-06" /> - <laneOffset s="818.14297542388272" a="-6.2634020621105977" b="-0.0026490286027478229" c="4.0088849450888074e-05" d="1.1770506624656611e-07" /> - <laneOffset s="821.07295462882598" a="-6.2708165462898773" b="-0.0024110781966282962" c="3.6324349205304653e-05" d="-9.191478089599811e-07" /> - <laneOffset s="831.08603944137269" a="-6.2922396902718258" b="-0.0019601070453253116" c="9.2284185026500038e-06" d="-9.7841348788399506e-07" /> - <laneOffset s="841.09912425391929" a="-6.3119234091082195" b="-0.0020695898613584409" c="-2.1260746965047897e-05" d="-4.9804950682934727e-07" /> - <laneOffset s="843.86635599596627" a="-6.3178238033619163" b="-0.0021986982382313966" c="-0.00010576078077995546" d="6.0775109667174081e-06" /> - <laneOffset s="851.11220906646599" a="-6.3369959065976769" b="-0.0027741009013412085" c="1.9268385890559306e-05" d="6.1155084789316327e-06" /> - <laneOffset s="860.99816282087033" a="-6.3566287499333498" b="-0.00060008403597570199" c="0.00015752688118178177" d="-1.8111252899940105e-05" /> - <laneOffset s="866.66506766911164" a="-6.3582665734635855" b="-0.00055956837642556138" c="-3.1752645655306094e-06" d="-3.4589791658499586e-06" /> - <laneOffset s="871.1383786915593" a="-6.3611428599557929" b="-0.00079562409555117861" c="-4.3098298950690544e-05" d="-2.4435441347403565e-06" /> - <laneOffset s="881.27239416530426" a="-6.3761749560033048" b="-0.0024219850156171809" c="-0.00070987314301887601" d="0.00012035127204090036" /> - <laneOffset s="886.49023220497531" a="-6.3910422691062267" b="-0" c="1.4886471177767112e-05" d="-4.0506744686868048e-07" /> - <laneOffset s="891.1645483166526" a="-6.3907583807816604" b="0.00011261690735548511" c="8.6308217342681383e-06" d="-4.7411612120271068e-07" /> - <laneOffset s="901.17763312919931" a="-6.3892413755058355" b="0.00014285190429110998" c="-8.4552158673418032e-06" d="-2.0469210900679462e-07" /> - <laneOffset s="907.95648681401849" a="-6.3887253078433197" b="-0" c="-3.7997557871511318e-05" d="1.9735742354576823e-06" /> - <laneOffset s="911.1907179417459" a="-6.3890560041034599" b="-0.0001838535233535243" c="-2.5874534534905576e-05" d="7.0832019165160448e-07" /> - <laneOffset s="921.20380275429261" a="-6.3927800698755854" b="-0.00048896882538934183" c="-4.1825519617247926e-06" d="5.9138695659482155e-07" /> - <laneOffset s="931.2168875668392" a="-6.3975017952136035" b="-0.00039484863845603614" c="1.3653000105550135e-05" d="7.4296519118859163e-07" /> - <laneOffset s="939.74309115220944" a="-6.3994153282946691" b="-0" c="0.00010254155687770239" d="-3.7114668342766386e-06" /> - <laneOffset s="941.22997237938591" a="-6.3992008282120425" b="0.00028031812348285843" c="8.5175192862164942e-05" d="-4.7537465313673406e-06" /> - <laneOffset s="950.77559535968192" a="-6.3928986918357005" b="0.00060694995783314761" c="3.166774883654692e-06" d="-6.3361742371262309e-08" /> - <laneOffset s="961.25614200447922" a="-6.3862626222644767" b="0.0006524497070773301" c="-5.0274203589296742e-08" d="-1.334298980063654e-07" /> - <laneOffset s="969.26103978909748" a="-6.3811114921983743" b="0.00062599490881263338" c="-3.9327968938642474e-05" d="2.3836989290627499e-06" /> - <laneOffset s="971.26922681702592" a="-6.3799936750351796" b="0.00049687812608180859" c="-2.3779788881408505e-05" d="2.290478002242519e-06" /> - <laneOffset s="981.28231162957252" a="-6.3751031173436479" b="0.0007096028459590895" c="5.0214744844448195e-05" d="1.745729795777106e-06" /> - <laneOffset s="985.50664077696649" a="-6.371077843110232" b="0.0012273074845959193" c="0.00033348338229842152" d="-1.470344557858449e-05" /> - <laneOffset s="991.29539644211923" a="-6.3556505003270418" b="0.0036100913169395221" c="8.917163803221951e-05" d="-1.4946143452340097e-05" /> - <laneOffset s="997.95577261457277" a="-6.3320661887702725" b="0.0028088644672625783" c="-3.6763104622362233e-05" d="-7.5821053318831087e-07" /> - <laneOffset s="1001.3084812546658" a="-6.3230907003949497" b="0.0025367841606788498" c="-3.7932164533465257e-05" d="6.7569306892522435e-07" /> - <laneOffset s="1011.3215660672125" a="-6.300814466159804" b="0.0019803869462519368" c="-2.3173987297209936e-05" d="9.6919613813289623e-07" /> - <laneOffset s="1021.3346508797591" a="-6.2823351453049217" b="0.0018078209899902323" c="2.3453197068488654e-06" d="4.806789420661419e-07" /> - <laneOffset s="1027.1947956283761" a="-6.2715637770862021" b="0.0018848302300938445" c="-7.0614878741886248e-05" d="1.0166354035977462e-05" /> - <laneOffset s="1031.3477356923058" a="-6.2642259095948116" b="0.0018243261271022075" c="6.9672381911523666e-05" d="7.7927314191286572e-06" /> - <laneOffset s="1033.4990768547334" a="-6.2599011070814568" b="0.0022323048202968717" c="0.0001236995838796579" d="-3.9861729099190154e-06" /> - <laneOffset s="1041.3608205048524" a="-6.2366427218603429" b="0.0034381733312497153" c="3.4048970386571238e-05" d="-3.842187106705181e-06" /> - <laneOffset s="1049.3399319544751" a="-6.208993214960727" b="0.0032476818067879564" c="4.3781885336318749e-05" d="-8.7477747895924278e-06" /> - <laneOffset s="1051.3739053173992" a="-6.2022799983458095" b="0.0033172143007210771" c="-8.9421726147763528e-06" d="-8.3032449885908983e-06" /> - <laneOffset s="1054.1270633990664" a="-6.1933882407259571" b="0.0030791630836250398" c="-0.00012085097226790842" d="5.3920168097759149e-06" /> - <laneOffset s="1061.3869901299458" a="-6.1753401470268345" b="0.002177008262103665" c="-4.7017614158816249e-06" d="5.4019705568095463e-06" /> - <laneOffset s="1069.5890536668653" a="-6.1548197696411808" b="0.0031901139806460085" c="0.00027143578400520027" d="-7.9944657308481572e-06" /> - <laneOffset s="1071.4000749424924" a="-6.148199636192734" b="0.0040946052406377548" c="0.00021777293645361192" d="-1.0277701990520512e-05" /> - <laneOffset s="1081.413159755039" a="-6.0956837846973428" b="0.0053643782214114512" c="-9.6475282320074301e-05" d="-1.0370741323463481e-05" /> - <laneOffset s="1091.8043413420628" a="-6.0619946586483495" b="-0" c="-0.000106919778134143" d="5.2474514806474325e-06" /> - <laneOffset s="1101.4393293801324" a="-6.0672267861777129" b="-0.0005989316634839771" c="5.4481968658271001e-05" d="4.429327082451692e-06" /> - <laneOffset s="1105.2058712429384" a="-6.0684730780194558" b="-0" c="0.00054791329243740949" d="-1.9201819268630057e-05" /> - <laneOffset s="1111.452414192679" a="-6.0517740548920864" b="0.004597403255926882" c="0.0001872773362907087" d="-1.880404119113762e-05" /> - <laneOffset s="1119.9151869771267" a="-6.0108517150486289" b="0.0037270213643651314" c="0.00023557438357768126" d="-1.8434161701136588e-05" /> - <laneOffset s="1121.4654990052259" a="-6.0045761616305429" b="0.0043245312458895357" c="0.0001378173406187524" d="-2.3274762809778584e-05" /> - <laneOffset s="1131.0666046854833" a="-5.9709508445368886" b="0.00053444013851045816" c="-4.4388393133032831e-05" d="1.8208535055478228e-06" /> - <laneOffset s="1141.4916686303191" a="-5.9681404325886271" b="0.00020261823889889424" c="1.619480158787357e-05" d="1.8167756524896555e-06" /> - <laneOffset s="1145.2041153890941" a="-5.9670720652036344" b="0.00039798074454520395" c="-2.4655340662039678e-05" d="2.9028060420873902e-06" /> - <laneOffset s="1151.5047534428656" a="-5.9648172427770501" b="0.00043299911944519993" c="1.3874044200425537e-05" d="4.9855636767676873e-06" /> - <laneOffset s="1156.8663448450277" a="-5.9613284317075621" b="0.0010117279787683954" c="0.00069204703925865372" d="-8.2997085474066171e-05" /> - <laneOffset s="1161.3033980674234" a="-5.950464851424762" b="0.0022510263253332084" c="4.1874811084691461e-05" d="-8.0036604622773043e-06" /> - <laneOffset s="1171.5309230679591" a="-5.9316247177123662" b="0.00059597457861372528" c="-0.00018865989357656174" d="-1.4646177114392161e-05" /> - <laneOffset s="1172.8940439030064" a="-5.9311999770183421" b="-0" c="-7.040097220931459e-05" d="1.3756389729065033e-06" /> - <laneOffset s="1181.5440078805057" a="-5.9355771873496552" b="-0.00090914807787684476" c="-2.9181612243011823e-05" d="1.3070922400879592e-06" /> - <laneOffset s="1189.0716885984075" a="-5.9435170106861426" b="-0.0011262848210706439" c="-0.00026427762167214068" d="4.2969622266739114e-05" /> - <laneOffset s="1191.5570926930523" a="-5.9472890789374837" b="-0.0016436580149152282" c="4.8978311878238971e-05" d="4.603582165354854e-05" /> - <laneOffset s="1194.6704596605045" a="-5.9505423695118695" b="-0" c="1.0562799900475945e-07" d="9.5366622800043312e-07" /> - <laneOffset s="1201.5701775055991" a="-5.950224091466576" b="0.0001376586143739903" c="6.8561245735608616e-06" d="2.0771757585922517e-07" /> - <laneOffset s="1211.5832623181457" a="-5.9479497622054645" b="0.00033743898423657675" c="1.0176837339093535e-05" d="-1.3384019626724041e-08" /> - <laneOffset s="1221.5963471306923" a="-5.9435640449473732" b="0.00053721633463080622" c="1.4880154476537054e-05" d="-1.8840888953343264e-06" /> - <laneOffset s="1223.3317420962039" a="-5.9425967962446817" b="0.00057183988299165395" c="0.0012434154481448276" d="-0.00012802739632658596" /> - <laneOffset s="1230.0287923596527" a="-5.9214544417976649" b="-0" c="-4.1835442417425084e-05" d="-4.7484929553570738e-06" /> - <laneOffset s="1231.6094319432391" a="-5.9215777166582697" b="-0.00016784472314542638" c="-4.891673871270005e-05" d="7.6144002441973548e-07" /> - <laneOffset s="1241.6225167557857" a="-5.9273984107528532" b="-0.00091842943368380036" c="-1.4288021531823033e-05" d="-1.7952040597063958e-06" /> - <laneOffset s="1244.0255935368587" a="-5.9297128898211673" b="-0.0010182005740777904" c="-0.00013260123577872035" d="9.9418160840655304e-06" /> - <laneOffset s="1251.6356015683323" a="-5.940759154217222" b="-0.0013091355250348111" c="9.4244785216906864e-05" d="1.076797996350599e-05" /> - <laneOffset s="1254.3596304253338" a="-5.9434082941031665" b="-0.00055597849782664302" c="4.5167037140187305e-05" d="-1.5904054780592739e-06" /> - <laneOffset s="1261.6486863808789" a="-5.9456770289170757" b="-0.00015102471143121072" c="6.8789442350483486e-06" d="-1.7258759410061824e-06" /> - <laneOffset s="1271.9203670762492" a="-5.9483729251721202" b="-0.00055598624965441288" c="-0.00061388135052188857" d="7.4500840083712103e-05" /> - <laneOffset s="1276.1941078572195" a="-5.9561460415666492" b="-0.0017208834736595737" c="7.7603598175082664e-05" d="-1.8309500113802807e-06" /> - <laneOffset s="1281.6748560059723" a="-5.9635481036433697" b="-0.0010352294461099031" c="4.6346638818871546e-05" d="-2.4073621067291463e-06" /> - <laneOffset s="1291.6879408185189" a="-5.9716839677708808" b="-0.00083118365701276222" c="-1.8141088791048483e-05" d="-2.6197726731547387e-06" /> - <laneOffset s="1301.7010256310657" a="-5.9844556095688111" b="-0.0019824700799460542" c="-0.00010505682874886811" d="5.1969975657020293e-06" /> - <laneOffset s="1302.9293251376055" a="-5.987039547028437" b="-0.0022170301442852626" c="-8.8850381129044718e-06" d="-1.8774560439097734e-06" /> - <laneOffset s="1311.7141104436123" a="-6.0084741700380926" b="-0.0028078001130069016" c="-6.4246180922860021e-05" d="-2.4040406568709119e-06" /> - <laneOffset s="1318.5553900634077" a="-6.0314597939260963" b="-0.0040244020045085982" c="-0.00012706303839554115" d="4.4413250531966813e-06" /> - <laneOffset s="1321.7271952561589" a="-6.0453609912043147" b="-0.0046963965852304945" c="-8.0636941157266397e-05" d="4.8065030149528559e-06" /> - <laneOffset s="1329.2987860029723" a="-6.0834566516725799" b="-0.0050908405818005896" c="-0.00025787426844466001" d="4.2315044443499042e-05" /> - <laneOffset s="1331.7402800687055" a="-6.0968072383467282" b="-0.0055933311827128891" c="8.1192879282629838e-05" d="4.1303375546322319e-05" /> - <laneOffset s="1334.7234229054543" a="-6.1116738996869202" b="-0.0040062175591160003" c="0.00031461766867823821" d="-1.2273376730918821e-05" /> - <laneOffset s="1341.7533648812523" a="-6.1285529655218145" b="-0.0014023835821364455" c="7.5120706908381941e-05" d="-1.2716764279663862e-05" /> - <laneOffset s="1346.1720092555402" a="-6.1343800055812574" b="-0.0014833824724617964" c="0.00012172888837082226" d="-8.1781748469301425e-06" /> - <laneOffset s="1351.7664496937989" a="-6.1403008035300477" b="-0.00088924819569516508" c="-1.4822358592389304e-05" d="-7.3324929852695623e-06" /> - <laneOffset s="1355.5538187524412" a="-6.1442796787188687" b="-0.0013170591345409361" c="-0.00020457417295048551" d="1.5797516475265151e-05" /> - <laneOffset s="1361.7795345063455" a="-6.1565964814092364" b="-0.0020273871809711338" c="7.4423634044384665e-05" d="1.6822109692471363e-05" /> - <laneOffset s="1366.812339338047" a="-6.1627704155791427" b="-0" c="3.1257528524655874e-05" d="-1.2016279152646171e-06" /> - <laneOffset s="1371.7926193188923" a="-6.1621435624813374" b="0.00022192987538063026" c="3.3515694729947496e-06" d="-2.334530941123722e-06" /> - <laneOffset s="1377.9206838145524" a="-6.1611949413970599" b="-0" c="-0.00052336019668865934" d="5.9636748919561887e-05" /> - <laneOffset s="1381.8057041314389" a="-6.1655972316292713" b="-0.0013661691419954152" c="0.00016437737377547826" d="6.1307602344381107e-05" /> - <laneOffset s="1383.7801967341063" a="-6.1671819438433237" b="-0" c="0.00035611096523180473" d="-1.1312804102510855e-05" /> - <laneOffset s="1391.8187889439855" a="-6.1500468072014023" b="0.0035321965944875712" c="7.7880550508726868e-05" d="-1.1273759406980842e-05" /> - <laneOffset s="1401.8318737565321" a="-6.1181882455401295" b="0.0017008611950455439" c="-0.0002510330251438093" d="-1.556125713039141e-05" /> - <laneOffset s="1403.9634428199029" a="-6.1158540430325186" b="0.00041856097300040172" c="-7.9425138524072319e-05" d="7.4727949517259206e-06" /> - <laneOffset s="1411.0490912143937" a="-6.1142175090951296" b="0.0004185504551212597" c="0.00014151226204525737" d="-2.7383801570009396e-06" /> - <laneOffset s="1421.8580433816255" a="-6.0966182074337656" b="0.0025179458197350357" c="5.1890564813444299e-05" d="-2.5987184786809282e-06" /> - <laneOffset s="1432.6186303898912" a="-6.0667531393155523" b="0.0027319730423093322" c="5.0496732816660238e-06" d="1.1903425541882915e-06" /> - <laneOffset s="1441.8842130067187" a="-6.0400594282102977" b="0.003132125743936464" c="4.0863869770697093e-05" d="1.2718770996054391e-06" /> - <laneOffset s="1448.7408358835089" a="-6.0162524862171614" b="0.0038718873647729428" c="0.00064193972762002858" d="-0.00013951694481080453" /> - <laneOffset s="1451.8972978192655" a="-6.0020228300407013" b="0.0037542765772188118" c="-0.00065309256107382973" d="-0.00015347971823746729" /> - <laneOffset s="1453.0098483952281" a="-5.9988657389653355" b="0.0017311623545954381" c="-0.00032862788751482764" d="2.8487976777192319e-05" /> - <laneOffset s="1460.7002165660531" a="-5.9920311390608951" b="0.0017311109409921105" c="0.0012067665545013489" d="-8.4211612767297824e-05" /> - <laneOffset s="1461.9103826318121" a="-5.9883181428662144" b="0.0042819026057025651" c="0.00091249612658849657" d="-7.5746387778822104e-05" /> - <laneOffset s="1469.5250707976595" a="-5.9362470988719664" b="0.0050025329762637925" c="-0.00025869514835980624" d="1.205024312034498e-05" /> - <laneOffset s="1471.9234674443587" a="-5.9255708854131148" b="0.0039695758981514199" c="-0.00018339642664624918" d="9.2147184939064355e-06" /> - <laneOffset s="1480.2522822559922" a="-5.8999071561687959" b="0.0028322778875508768" c="-0.00016296791575280692" d="1.1802443600825662e-05" /> - <laneOffset s="1481.9365522569055" a="-5.8955427465926027" b="0.0023837562365194853" c="-0.0001119820466408781" d="9.359713889696418e-06" /> - <laneOffset s="1491.5717536576337" a="-5.8745985607842712" b="0.0028326033436575607" c="0.00054635392059296554" d="-8.3848459968948266e-05" /> - <laneOffset s="1497.4583520991282" a="-5.8560955149966736" b="0.00054837474751955951" c="-2.6263366749618253e-05" d="-6.3012439568164922e-07" /> - <laneOffset s="1501.9627218819987" a="-5.8542158864429057" b="0.00027342047853648889" c="-2.5618584459271878e-05" d="-7.2957341996410053e-07" /> - <laneOffset s="1506.4420086598659" a="-5.853570737798619" b="-0" c="-0.00014508010254007004" d="1.8270268191158981e-05" /> - <laneOffset s="1511.7358591577381" a="-5.8549260206521261" b="-0" c="0.00063421930836153574" d="-8.4711103122071303e-06" /> - <laneOffset s="1518.7017022097875" a="-5.8270150805410958" b="0.0076026140452070045" c="0.0039742711970521616" d="-0.0011161879721013207" /> - <laneOffset s="1521.8066438055062" a="-5.7985064299675368" b="-0" c="-0.00025287529881394544" d="1.3996985460928762e-05" /> - <laneOffset s="1532.0019763196387" a="-5.8099581723622649" b="-0.00079155373596912209" c="0.00022810999406985027" d="-2.8370833990804083e-06" /> - <laneOffset s="1533.797122722136" a="-5.8106604435900335" b="-0" c="0.00036196702070066317" d="-2.1135329538087756e-05" /> - <laneOffset s="1542.0150611321853" a="-5.7979451683487406" b="0.0016671528845343367" c="-0.00013517937251613651" d="-2.3680390713154264e-05" /> - <laneOffset s="1544.7779700796291" a="-5.7948703369365715" b="0.00037787171902522586" c="-9.777025922725363e-05" d="1.1644642584799846e-05" /> - <laneOffset s="1550.3753965974056" a="-5.7937763181749631" b="0.00037786934083669055" c="0.0026111115497767833" d="-0.0003473374304862903" /> - <laneOffset s="1552.0281459447322" a="-5.7875874294462033" b="0.0061625548030030588" c="0.00089651394197176138" d="-0.00034589955009109013" /> - <laneOffset s="1554.2990358611337" a="-5.7730204525051052" b="0.0048829730163594594" c="-1.0482544739371325e-05" d="-6.0328053162345818e-06" /> - <laneOffset s="1562.0412307572788" a="-5.7386435647772016" b="0.0036358095273804013" c="-0.00014906837022849877" d="-6.0995507551442787e-06" /> - <laneOffset s="1569.6810689720091" a="-5.7222871445501582" b="0.00029005328638387573" c="-7.1850176778757145e-05" d="7.8243346102936796e-06" /> - <laneOffset s="1572.0543155698253" a="-5.7218988716906063" b="8.1223896922373562e-05" c="-2.5441423302468032e-05" d="1.0254049467574407e-05" /> - <laneOffset s="1575.6149537980436" a="-5.7214693215846637" b="0.00029005545355722064" c="0.00053671936974286616" d="-5.4519660269460137e-05" /> - <laneOffset s="1581.6970790705413" a="-5.7121171713876544" b="0.00076842998651682423" c="-1.8017147783982477e-05" d="-4.390769856423169e-08" /> - <laneOffset s="1592.0804851949188" a="-5.7061299259100071" b="0.00038006951949890659" c="-1.8089188861030211e-05" d="-4.0128422093778527e-08" /> - <laneOffset s="1602.2423068342173" a="-5.7041777724708504" b="-0" c="-0.00016341392152969714" d="1.2461110037452799e-05" /> - <laneOffset s="1608.6511623865013" a="-5.7076095588443323" b="-0.00055913086315855442" c="-5.8002590165823537e-05" d="5.5367059849951345e-06" /> - <laneOffset s="1612.106654820012" a="-5.7100057622479481" b="-0.00076165396922707039" c="3.7750188957837557e-06" d="3.4918722736013401e-06" /> - <laneOffset s="1619.2899811600437" a="-5.7139878790584051" b="-0.0001668758985337067" c="4.0242810765670141e-05" d="-5.2463926576515422e-06" /> - <laneOffset s="1622.1197396325588" a="-5.7142567319382813" b="-6.5153016302560828e-05" c="5.6874128987822594e-06" d="-1.1944207862291135e-06" /> - <laneOffset s="1629.2664512781812" a="-5.7148678639748196" b="-0.00016687728756619043" c="-0.0002441091210831507" d="1.4174540376465451e-05" /> - <laneOffset s="1632.1328244451054" a="-5.717018004296019" b="-0.0012169148399548324" c="-0.00014433442417925946" d="1.0515798740084514e-05" /> - <laneOffset s="1640.5252300275747" a="-5.7311808112024085" b="-0.0014175798104625013" c="6.1840645271303882e-05" d="8.2825279235355278e-06" /> - <laneOffset s="1642.145909257652" a="-5.733280564936635" b="-0.0011518674192096058" c="5.7069408610612189e-05" d="-5.9551842157220551e-06" /> - <laneOffset s="1652.1589940701986" a="-5.7450710171735002" b="-0.0018002194336377028" c="-0.00013018566807977705" d="-6.6853856917817253e-06" /> - <laneOffset s="1655.2336267271157" a="-5.752031038330685" b="-0.0027903638396056456" c="-7.5932908379849887e-05" d="-1.6980921819600532e-06" /> - <laneOffset s="1662.1720788827454" a="-5.775614632149848" b="-0.0040893268074735428" c="-0.00010461633263802752" d="-2.4285090246173047e-06" /> - <laneOffset s="1666.5388917294647" a="-5.795669115884678" b="-0.0051419348105394298" c="-0.00021075561134207521" d="2.5410436645022713e-05" /> - <laneOffset s="1670.5061891593527" a="-5.8177991720124815" b="-0.0056143563938727053" c="-4.9864949291588312e-05" d="3.9723857387778973e-06" /> - <laneOffset s="1672.185163695292" a="-5.8273472993852451" b="-0.0057482064182776101" c="5.930658088705516e-07" d="1.0663160075873661e-05" /> - <laneOffset s="1675.7483379501134" a="-5.8473392421306682" b="-0.0053378348412337221" c="6.1978170486695503e-05" d="-9.1549318325926681e-08" /> - <laneOffset s="1680.2879218034107" a="-5.8703021204336618" b="-0.0047807845332850608" c="7.4551302876077257e-05" d="-1.2415386351230331e-05" /> - <laneOffset s="1682.1982485078386" a="-5.8792494703488467" b="-0.0046318740442482347" c="3.3752653704728205e-05" d="-4.3859863723489675e-06" /> - <laneOffset s="1692.2113333203854" a="-5.926647939755739" b="-0.0052751792289407514" c="-8.3041272521120098e-05" d="-5.4578514125569312e-06" /> - <laneOffset s="1696.1647182916111" a="-5.9491378592699702" b="-0.0061876738837727853" c="-0.00015099487600241229" d="2.4238816957664564e-06" /> - <laneOffset s="1702.224418132932" a="-5.9916384892157515" b="-0.0077506266035800566" c="-0.00010539212806225273" d="2.7438649017055532e-06" /> - <laneOffset s="1712.2375029454786" a="-6.0770583324345022" b="-0.0090359121799687622" c="-2.5375046166024227e-05" d="2.7907508044882546e-06" /> - <laneOffset s="1722.2505877580252" a="-6.1672781168864121" b="-0.0087046594968861" c="5.402920292335048e-05" d="3.3814571263538411e-06" /> - <laneOffset s="1725.0123654760887" a="-6.1908351171471718" b="-0.0083288508571412959" c="0.00016896973423433676" d="-1.8912821438267634e-05" /> - <laneOffset s="1732.263672570572" a="-6.2495566594538401" b="-0.0088617389761513326" c="-0.00025760530953729949" d="-1.3095155905626101e-05" /> - <laneOffset s="1733.8684897878604" a="-6.2644957010086486" b="-0.0097897351463989823" c="-0.0015651786060209012" d="0.00024047548055479488" /> - <laneOffset s="1739.673215638823" a="-6.3270264397384182" b="-0.0036522504636089101" c="0.0034280262043019242" d="-0.0028464813128014571" /> - <laneOffset s="1740.4552696486778" a="-6.3291475899058609" b="-0.0035132434644743003" c="-0.0023266312581382755" d="0.00024443669870714065" /> - <laneOffset s="1742.2767573831186" a="-6.3417890378980761" b="-0.0095561149442372796" c="-0.0010309834496768757" d="0.0002377290287585682" /> - <laneOffset s="1745.7939848727119" a="-6.3778103672792614" b="-0.0079857631724239483" c="0.00062016857534037207" d="-9.1425474232102453e-05" /> - <laneOffset s="1750.3330540630052" a="-6.4098309030604215" b="-0.0080067450615345596" c="-0.00056418845984060632" d="3.2799088082014551e-05" /> - <laneOffset s="1752.2898421956652" a="-6.4274129457518665" b="-0.0098379745544558556" c="-0.00037741602374610393" d="3.019645298339463e-05" /> - <laneOffset s="1761.6769707839753" a="-6.5280426894261003" b="-0.008941110324925337" c="0.00035981288633507997" d="-1.4146803069157436e-05" /> - <laneOffset s="1772.3160118207586" a="-6.5994765250221477" b="-0.0060887779173235956" c="-7.7575584607702703e-05" d="-1.6181404750697781e-05" /> - <laneOffset s="1777.8701226728588" a="-6.6384597608811804" b="-0.0084480037845781845" c="-0.00098687100889177323" d="0.00021577995478967715" /> - <laneOffset s="1782.0098400726552" a="-6.6750362076840899" b="-0.0055251062970335949" c="0.00042659899146534156" d="1.209544065102991e-07" /> - <laneOffset s="1788.4678636602873" a="-6.6928931299351477" b="-0" c="9.5742313882610691e-05" d="-2.1822156934359616e-06" /> - <laneOffset s="1792.3421814458518" a="-6.6915829117760941" b="0.00064360491158260984" c="7.0664512714665998e-05" d="-2.6104337374663593e-06" /> - <laneOffset s="1802.3552662583986" a="-6.6806741794647939" b="0.0012735635454590099" c="9.7652069395123524e-07" d="-5.1640647185245603e-06" /> - <laneOffset s="1804.0241578599889" a="-6.6785700237375254" b="0.0012336741134043655" c="2.0920320166299789e-05" d="-4.5849918904342161e-08" /> - <laneOffset s="1812.3683510709452" a="-6.6668460569492156" b="0.001573223521524035" c="1.8510986741217842e-05" d="1.2744047179622756e-07" /> - <laneOffset s="1822.3814358834918" a="-6.6491093489127726" b="0.001982259941009428" c="1.1472812306793933e-05" d="8.0980734377726e-07" /> - <laneOffset s="1829.8145567705831" a="-6.6334085041420909" b="0.0022870462343563712" c="9.4912544646472225e-05" d="-1.5010980457101038e-05" /> - <laneOffset s="1832.3945206960384" a="-6.6271340296063119" b="0.0024770392285180169" c="-4.4252816650744623e-05" d="-1.7248327481633236e-05" /> - <laneOffset s="1834.5334678308236" a="-6.6222070246456912" b="0.0020509921552954533" c="-0.00020138275076551145" d="1.0888443165152783e-05" /> - <laneOffset s="1842.4076055085852" a="-6.6132274967496336" b="0.00090487834653835684" c="3.7313288969458429e-05" d="1.3601230574280039e-05" /> - <laneOffset s="1846.5570697809369" a="-6.6078585247410757" b="0.0019170988226447122" c="0.00042594444690425344" d="-5.1644868161539256e-05" /> - <laneOffset s="1852.4206903211318" a="-6.5923843175188352" b="0.0015852833648454603" c="-0.00057111741527278643" d="-1.8599147151231856e-05" /> - <laneOffset s="1853.7254127060651" a="-6.5913294855446436" b="-0" c="-5.7898494196731227e-05" d="1.5818212568341194e-06" /> - <laneOffset s="1862.4337751336784" a="-6.594675610628868" b="-0.00064852716372295412" c="-1.8448386548108853e-05" d="5.6736513126855984e-07" /> - <laneOffset s="1872.4468599462252" a="-6.6024494426028086" b="-0.00084732241926070977" c="7.6464827317293535e-06" d="7.7472734161337366e-07" /> - <laneOffset s="1882.4599447587718" a="-6.609389330740985" b="-0.00046116582890521056" c="3.1883242866050932e-05" d="1.24215522495055e-06" /> - <laneOffset s="1887.4109888366061" a="-6.6107402812379368" b="-5.4108899967469279e-05" c="2.0573778239007438e-06" d="2.1439707070446047e-07" /> - <laneOffset s="1892.4730295713184" a="-6.610933654252003" b="-1.679854272985794e-05" c="-7.9311585339058552e-07" d="-9.2723245515369644e-08" /> - <laneOffset s="1901.5491243257954" a="-6.6112207770605327" b="-5.4109702020993935e-05" c="-5.9972926426977187e-05" d="3.3762346971312036e-06" /> - <laneOffset s="1906.8952487282172" a="-6.6127082619064312" b="-0.00040586619409994283" c="2.2716501193595006e-05" d="-4.6589292028679964e-06" /> - <laneOffset s="1912.4991991964118" a="-6.6150892362963241" b="-0.0005901925830058011" c="-4.4658002996752326e-05" d="-4.8744640274682387e-06" /> - <laneOffset s="1916.9344574014783" a="-6.6190106718392432" b="-0.0012739964131869002" c="-0.0036465684557028134" d="0.00049917584421477527" /> - <laneOffset s="1921.9734075886968" a="-6.6541537711172136" b="-0" c="0.00087252195267969383" d="-9.3051384828050964e-05" /> - <laneOffset s="1926.8143861681228" a="-6.6442627125825684" b="0.0019057220081165819" c="-4.0147092775420979e-05" d="1.9193269913217164e-06" /> - <laneOffset s="1932.2023400145938" a="-6.6348600355029186" b="0.001640255098522629" c="4.3111590141291474e-05" d="-3.9080475896589131e-06" /> - <laneOffset s="1942.5384536340518" a="-6.6176158405869803" b="0.0012789160242960614" c="-7.5629930614946517e-05" d="-3.6647457890516146e-06" /> - <laneOffset s="1948.4518755874851" a="-6.6134555504258499" b="-0" c="-0.0027939850127560572" d="0.00047069028883389485" /> - <laneOffset s="1952.1568432652448" a="-6.6278699477545029" b="-0.0013200544430859249" c="3.7812725335034084e-05" d="1.5650660963129998e-07" /> - <laneOffset s="1962.564623259145" a="-6.6373363942754056" b="-0.00048210211794230689" c="4.2133204503506826e-05" d="-2.0890255914441215e-07" /> - <laneOffset s="1968.5524432399734" a="-6.6387573402671993" b="-0" c="0.00056733366873401982" d="-5.0819398462059215e-05" /> - <laneOffset s="1972.5777080716916" a="-6.632879431589326" b="0.0020970934419722582" c="-3.7591889299308665e-05" d="-5.186082219617278e-05" /> - <laneOffset s="1974.5958158896358" a="-6.6292266315810249" b="0.0013117145539131602" c="-0.00023303250389614393" d="2.7714514787674391e-05" /> - <laneOffset s="1981.4610341781545" a="-6.6222370532988659" b="0.0020307333984092243" c="0.0080684722552406638" d="-0.0052915241831497642" /> - <laneSection s="0"> - <left> - <lane id="4" type="shoulder" level="false"> - <link> - <predecessor id="-4" /> - <successor id="5" /> - </link> - <width sOffset="0" a="-2.4547999192492398e-05" b="-7.9225952536990122e-05" c="0.00010048650133568851" d="-4.0677669974070221e-06" /> - <width sOffset="10.013084812546658" a="0.0051733644067946116" b="0.00070960802154703393" c="-2.4978333633760773e-05" d="-3.464634168569606e-06" /> - <width sOffset="15.631145577476779" a="0.0077572529117801992" b="0.00010088977175050948" c="-0.00089205926375019763" d="0.00011249597335067636" /> - <width sOffset="20.026169625093317" a="0.00051982032031627767" b="-0.0012213576215857743" c="0.00057287419637351144" d="0.00011267274555179608" /> - <width sOffset="20.868418218017698" a="-3.5160052121341323e-05" b="-1.6568363194784368e-05" c="-0.00014499872011397276" d="0.00011817985269048289" /> - <width sOffset="23.280788179340259" a="0.00074015669188742805" b="0.0013471037028112837" c="-0.00030952421157923513" d="1.6801410763021921e-05" /> - <width sOffset="30.039254437639975" a="0.00089310452428925657" b="-0.00053440680496361212" c="3.7256553296312369e-05" d="1.4247959320207078e-05" /> - <width sOffset="32.755852226850962" a="1.9323099493817608e-06" b="-1.653896769641559e-05" c="-6.0772466288435713e-06" d="-3.3027838308021525e-05" /> - <width sOffset="36.754679581533907" a="-0.0022733062688091721" b="-0.0016495495442926697" c="0.00136285163419257" d="-0.00020328068208265974" /> - <width sOffset="40.052339250186634" a="-0.00018231470320007048" b="0.00070712870295844277" c="-0.00064666286988884661" d="-0.00020569582758883531" /> - <width sOffset="40.494049769812563" a="-1.3864875457514358e-05" b="1.5454300793475012e-05" c="0.001019603414404216" d="-0.00022045517835775225" /> - <width sOffset="43.051067682831594" a="0.0030064525948958476" b="0.00090550955603566508" c="-0.00028928137203156198" d="1.6897144823548401e-05" /> - <width sOffset="50.065424062733292" a="0.00095648339647880221" b="-0.00065865654523113507" c="6.9858806328460335e-05" d="1.457006016494516e-05" /> - <width sOffset="52.523203494160533" a="-2.403773101544715e-05" b="-5.1222269168935478e-05" c="-0.00020779725474769962" d="0.00012358314980405062" /> - <width sOffset="53.775614044461584" a="-0.00017135326737705014" b="9.8152270274088488e-06" c="0.00059751260272063883" d="-0.00018899628564610251" /> - <width sOffset="57.055719416312172" a="-0.00038032470771298676" b="-0.002170661026889743" c="0.00036839562197401389" d="-1.3423673166874751e-05" /> - <width sOffset="60.078508875279951" a="-0.0039464127023229878" b="-0.00031146284034449384" c="0.00023690544228010206" d="-1.7117768564586429e-05" /> - <width sOffset="68.519530645395463" a="9.0975405964144329e-06" b="2.9018545975568587e-05" c="-0.0031271783624623652" d="0.00015094711331782313" /> - <width sOffset="69.018270773964133" a="-0.00073556333989799327" b="-0.0029776395992328879" c="-0.0023384586629468422" d="0.0014800707587845944" /> - <width sOffset="69.689808352662041" a="-0.0033414956254933514" b="-0.0041159951322674183" c="0.0075905748486941533" d="-0.00097648177138825098" /> - <width sOffset="70.091593687826617" a="-0.0038332199434929493" b="0.0015106635660346764" c="0.0063791357212686856" d="-0.00098904853359954754" /> - <width sOffset="73.427710120320299" a="0.035480965449358415" b="0.011050382737068716" c="-0.00091030661154070224" d="-0.0017107910604823588" /> - <width sOffset="74.245886994281932" a="0.042975763810691348" b="0.006125119735006691" c="0.0030819945337321663" d="-0.00050794367462958533" /> - <width sOffset="78.610003127765864" a="0.086185993369878311" b="0.00400334543626294" c="-0.0018972102154175923" d="-0.00068894662023461862" /> - <width sOffset="79.357585898496097" a="0.087830664461268526" b="1.1586637786258763e-05" c="0.0039119520645836871" d="-0.00043981779456434954" /> - <width sOffset="80.104678500373268" a="0.089839367816342275" b="0.0051203181132938461" c="0.002913026683463907" d="-0.00043621895895216083" /> - <width sOffset="82.887442031568455" a="0.11724569827706333" b="0.011198905333718503" c="0.00086069251712753701" d="-0.00038149269915935648" /> - <width sOffset="85.628488566338319" a="0.14655247636981361" b="0.0073184532048171363" c="0.0070349173378377048" d="-0.0018326455456574436" /> - <width sOffset="88.369537044198339" a="0.18172616192728963" b="0.0045766477193508216" c="0.0042386849042438668" d="-0.00090530301755373341" /> - <width sOffset="89.84972195457344" a="0.19485127812445224" b="0.011174308796440406" c="0.001702370110461146" d="-0.00078299183814804264" /> - <width sOffset="90.117763312919919" a="0.19795368514771283" b="0.011918155096435219" c="0.001082171249994135" d="-0.00077535844875667025" /> - <width sOffset="92.839934283982842" a="0.22277563131093991" b="0.00057314747450052652" c="0.01328247291674196" d="-0.0039578006364450122" /> - <width sOffset="95.082592916244863" a="0.24622346046617238" b="0.00043176701618153403" c="0.0058590525064129524" d="-0.00087331487025559982" /> - <width sOffset="99.567909518866244" a="0.28722852604114202" b="0.00028296193819919176" c="0.017065497130871837" d="-0.0050734896843446066" /> - <width sOffset="100.13084812546658" a="0.2918907840697571" b="0.014673251552466215" c="0.0085278840306259162" d="-0.005076840253798242" /> - <width sOffset="101.81056740207029" a="0.31653834147955706" b="0.00034989683842818673" c="0.01449409529161819" d="-0.0027667551005999672" /> - <width sOffset="103.05649013094653" a="0.3341226978086107" b="0.023582245916335762" c="-0.0096241045726831922" d="0.0022696297183873609" /> - <width sOffset="104.88612457423636" a="0.35895336090792007" b="0.011158239425392423" c="0.0028143336818414826" d="0.002282164497621387" /> - <width sOffset="105.88286174370987" a="0.37513108950339635" b="0.023570429886513495" c="-0.0063079380738008308" d="0.0011272493096218155" /> - <width sOffset="107.86038655420312" a="0.40579172561204757" b="0.011846900048066215" c="0.0004646501782674757" d="0.0011032565806252926" /> - <width sOffset="109.60474294712894" a="0.43372651481554048" b="0.023538829677835146" c="-0.0044341930639647869" d="0.00073386934217976852" /> - <width sOffset="110.14393293801325" a="0.44524432040879169" b="0.019397148999019544" c="-0.0032280381164767748" d="0.00073973069386239166" /> - <width sOffset="113.59184152472514" a="0.50406957705920163" b="0.023519107166933721" c="-0.0019868252075496231" d="0.00020478197016172886" /> - <width sOffset="119.002760162816" a="0.60560098743495328" b="0.020004852527748952" c="0.0014369794730911853" d="0.00021708285574996848" /> - <width sOffset="119.99963164849085" a="0.62718630859372837" b="0.023517000312662205" c="-0.0023157587818355223" d="0.00029033268656311124" /> - <width sOffset="120.1570177505599" a="0.63083132723456625" b="0.02280963877407953" c="-0.0021993243849441628" d="0.00028326651451098011" /> - <width sOffset="125.48242474492767" a="0.73271045420057046" b="0.023485324619141625" c="-0.0015917782828273961" d="0.00018855183023813363" /> - <width sOffset="129.78663090664841" a="0.81934177067642722" b="0.020262082314694771" c="-0.00013727535458491239" d="0.00031451116602735935" /> - <width sOffset="130.17010256310655" a="0.82710925372514321" b="0.020295546982801636" c="0.00020784081538377129" d="0.00033009610052289057" /> - <width sOffset="131.78056522960068" a="0.86171230005403299" b="0.023533388566534634" c="-0.0011266043824956977" d="0.00016101442149539399" /> - <width sOffset="135.49286952889125" a="0.94178693668578717" b="0.02182570936842201" c="0.00019956490473332369" d="-4.1312992722692435e-06" /> - <width sOffset="140.18318737565323" a="1.048120416909482" b="0.02342510066871864" c="0.00017248925888604605" d="-1.2053670429566153e-06" /> - <width sOffset="140.47832594634286" a="1.0550490616340706" b="0.023526602148455231" c="-0.00017422234579788715" d="2.0909977838064263e-06" /> - <width sOffset="145.48519952127626" a="1.1687386962121611" b="0.021939239938835522" c="0.00013129188105128468" d="4.9219620574730429e-05" /> - <width sOffset="147.97840941064075" a="1.2250167562714589" b="0.023511777964937201" c="-0.0022109577605397058" d="0.0003695193292300452" /> - <width sOffset="150.19627218819988" a="1.2703184029157395" b="0.019157478971902231" c="0.00025097408320912584" d="0.00036618024222933085" /> - <width sOffset="151.96754516788891" a="1.3070738748911124" b="0.02349313662599916" c="-0.011299935467432189" d="0.0060425695829842956" /> - <width sOffset="153.21414937168956" a="1.3305061393882402" b="0.023490901460744312" c="-0.00051460797331370615" d="1.563639968233425e-05" /> - <width sOffset="156.88559155352488" a="1.4105888063379366" b="0.020344506591393603" c="-0.00066918765089788216" d="5.1915344685527631e-05" /> - <width sOffset="160.20935700074654" a="1.4727226602122112" b="0.017616652352966396" c="-0.00017704302940997648" d="6.1510474613707804e-05" /> - <width sOffset="161.6795441893255" a="1.4984352311749021" b="0.017494935079872136" c="0.00032455827909929507" d="-5.9614932859767639e-05" /> - <width sOffset="167.16611540045955" a="1.5943464809202412" b="0.015672690251661136" c="0.0040251645755823321" d="-0.00051282589771543862" /> - <width sOffset="168.73294251448587" a="1.6268118700280265" b="0.024509282729414075" c="-0.019533148009336587" d="0.0044189799878717947" /> - <width sOffset="170.98913409052579" a="1.6334295875700517" b="0.0038513676070190961" c="-0.066372741836410357" d="0.23896573049002809" /> - <width sOffset="171.23844186198883" a="1.633967317125971" b="0.015315176543704845" c="-0.017716439652152562" d="0.0066750442571229026" /> - <width sOffset="173.24537094822139" a="1.6473034488931093" b="0.024860416482974147" c="-0.0040038153058752088" d="0.00080000365871213223" /> - <width sOffset="176.73755743457937" a="1.7193636154695948" b="0.026165290424080726" c="-0.0082817491569862241" d="0.0018864023693623778" /> - <width sOffset="179.7308604149523" a="1.7740734481123344" b="0.027291440417637525" c="0.13378153188184688" d="-0.2622794785263815" /> - <width sOffset="180.15215837659738" a="1.7897039501102707" b="0.00035770783379541679" c="0.014946558518563498" d="0.00039051231774295454" /> - <width sOffset="181.1501034434236" a="1.8053342259859679" b="0.031356123553094604" c="-0.0067109830691503636" d="0.0011947420146991294" /> - <width sOffset="184.89239335800903" a="1.8913085585345053" b="0.031323366683667697" c="-0.010470263688837259" d="0.0025929395351537467" /> - <width sOffset="187.13776967544692" a="1.9382067147412991" b="0.023522587378607816" c="0.0075671553744483299" d="-0.006284169214664184" /> - <width sOffset="188.72609762298814" a="1.9694778737403471" b="0" c="0.070202421536469217" d="-0.046753845563705536" /> - <width sOffset="189.72432213854111" a="1.992925974686039" b="0.00039164196773349834" c="0.015063551782839716" d="-0.0033252254309040223" /> - <width sOffset="190.24861143838652" a="1.9967927474430729" b="0.01344485338613062" c="0.0098282323804477732" d="-0.0033277004407699941" /> - <width sOffset="192.71899643583524" a="2.0398171558275253" b="0.0010789979627370077" c="0.078973925601440134" d="-0.070173027035141736" /> - <width sOffset="193.46766469891537" a="2.0554433564657026" b="0.0013327189467216055" c="0.021451546678999924" d="-0.0071510434244844972" /> - <width sOffset="195.46411410439612" a="2.086701654071982" b="0.0014784680942172568" c="0.26025707894449757" d="-0.56339028070966812" /> - <width sOffset="195.71367093244018" a="2.094522823804307" b="0.026114838863034874" c="-0.010475984911547541" d="0.0026237614242625171" /> - <width sOffset="197.7101207772269" a="2.1257829961736894" b="0.015658741135844412" c="-0.0003628601449709581" d="3.0554667411357502e-05" /> - <width sOffset="200.26169625093317" a="2.1638826194930827" b="0.014403792957852138" c="-0.00012984892944364689" d="3.0917490557157167e-05" /> - <width sOffset="202.75859312544415" a="2.1995191518697865" b="0.014333618913980791" c="2.8520405154103793e-05" d="2.259446628151783e-05" /> - <width sOffset="206.75240208648376" a="2.2586591443749917" b="0.015642608795610507" c="0.028063156453912726" d="-0.056158559785571896" /> - <width sOffset="207.25162817982675" a="2.2664751562240912" b="0.0016736924275398239" c="0.0052133599261528401" d="-0.00066505667571211378" /> - <width sOffset="209.57205771512196" a="2.2901203334606706" b="0.015125381145714357" c="0.00036928811257599259" d="-0.0006430596298380029" /> - <width sOffset="210.27478106347982" a="2.3007084999824148" b="0.014691728583183511" c="-0.00096533833822452406" d="-0.00064394001599530043" /> - <width sOffset="212.31897205898821" a="2.3212067267140393" b="0.0026725277663978298" c="0.34362977821878593" d="-0.91684229172631537" /> - <width sOffset="212.56869266733969" a="2.3290253114662276" b="0.0027714950103867155" c="0.0040464593873460238" d="-0.00060709546283558939" /> - <width sOffset="217.06364438216275" a="2.3681045075166764" b="0.0023504277092373915" c="0.0086909055398509544" d="-0.0029790441642946483" /> - <width sOffset="219.06140137481324" a="2.3837335227404166" b="0.001406671619118486" c="0.019981621716155612" d="-0.0093237675917209571" /> - <width sOffset="220.52449657735457" a="2.3993634557405059" b="0" c="0.0036182119317328064" d="-0.0004228333626664012" /> - <width sOffset="225.71604841438895" a="2.4377178153276624" b="0.0033793882405749208" c="-0.0026228438500685877" d="-0.00040701253131156229" /> - <width sOffset="225.96588348075215" a="2.4383920465064026" b="0.0019926173181254651" c="0.35201111059251333" d="-0.93848889887266929" /> - <width sOffset="226.21571881713842" a="2.4462266621522195" b="0.0021473033541098505" c="0.0029151134811197556" d="-0.00032932528384080589" /> - <width sOffset="230.30095068857315" a="2.4811965282737507" b="0.0094766853647089803" c="-0.0011208476525198642" d="-0.00033122848857721523" /> - <width sOffset="232.46160015587779" a="2.4930987194770813" b="-5.7597121175196123e-06" c="3.1387194907207686e-06" d="-2.2777748636200878e-07" /> - <width sOffset="240.20649408999213" a="2.4931365646955879" b="1.8697950112944728e-06" c="0.00015672812200820057" d="-1.3683915616813235e-05" /> - <width sOffset="240.3140355011198" a="2.4931385613418868" b="3.5104552009466994e-05" c="0.00014766619907375452" d="-1.3570617141219357e-05" /> - <width sOffset="248.08942272730371" a="2.4959597239561466" b="-0.00012987370253333443" c="2.8752512590594697e-05" d="-3.7933857865488467e-06" /> - <width sOffset="250.32712031366646" a="2.4957705739322256" b="-5.8178600177268653e-05" c="2.1584428463099177e-06" d="-4.6581974831804468e-06" /> - <width sOffset="257.59853151962136" a="2.4936707466315777" b="-0.0007656732580317672" c="-0.00027542586993686418" d="6.1186163630588659e-05" /> - <width sOffset="260.34020512621311" a="2.4907621639875419" b="-0.0008961612122732667" c="0.00021901937546369219" d="6.1240989685757571e-05" /> - <width sOffset="260.41775151113143" a="2.4906940155434407" b="-0.00086108808330010789" c="0.00030159234628574958" d="-1.9639133347706486e-05" /> - <width sOffset="268.91292915138058" a="2.4931038820929921" b="1.1119562000353779e-05" c="6.0379625639973001e-05" d="2.9849708531247411e-06" /> - <width sOffset="270.35328993875976" a="2.4932540839884831" b="0.000203634664861787" c="4.0129742802569475e-05" d="-2.4151998840284693e-05" /> - <width sOffset="272.76050706193485" a="2.4936399180915636" b="-2.302367554650811e-05" c="-9.4410355148275222e-06" d="5.4476052902226397e-07" /> - <width sOffset="280.36637475130647" a="2.4931583376026332" b="-7.2096289019461584e-05" c="-2.6596457242371191e-05" d="6.6907254332445456e-06" /> - <width sOffset="284.75427220718689" a="2.4928951604209377" b="8.0961195294874076e-05" c="-0.00014905285635299201" d="1.0254720412144758e-05" /> - <width sOffset="290.37945956385312" a="2.4904594449024424" b="-0.00062247715702276238" c="8.626274300214292e-06" d="1.2369073991635767e-06" /> - <width sOffset="295.26280238215168" a="2.4877694285268213" b="-0.00044973731787693828" c="0.0011452521780704553" d="-0.00016338325453920584" /> - <width sOffset="299.13508800824377" a="2.4937139303972353" b="0.0010701521066533923" c="-1.3465527614616616e-05" d="-7.4198021038575054e-05" /> - <width sOffset="300.39254437639977" a="2.4948907814742078" b="0.00068432252225782142" c="-0.00017548236910081553" d="6.84787053034085e-06" /> - <width sOffset="310.40562918894642" a="2.491023557545339" b="-0.00077017630501162882" c="3.1150424487602659e-05" d="6.0195402932181458e-06" /> - <width sOffset="315.56139784674457" a="2.4887057260580834" b="3.1065824956544308e-05" c="0.00031253095540709436" d="-3.6202353926528157e-05" /> - <width sOffset="320.41871400149307" a="2.4920814952792725" b="0.00050476623316122061" c="-0.00028426692421298027" d="-2.3566289842220064e-05" /> - <width sOffset="321.30885764393344" a="2.492288947664588" b="-5.7329210082526089e-05" c="5.4228003630886793e-05" d="-4.2022028358547998e-05" /> - <width sOffset="322.81962147975139" a="2.4921812077071595" b="-0.00018121195791813904" c="-0.00022565724761370443" d="2.4804003168005373e-05" /> - <width sOffset="330.38205568789829" a="2.488633073089753" b="0.000661405282963655" c="7.0501499206053822e-05" d="-2.1331906048154278e-05" /> - <width sOffset="330.43179881403972" a="2.4886661452779748" b="0.00066826086332518147" c="0.00015847510642675488" d="-2.6628197550903224e-05" /> - <width sOffset="336.12982394909511" a="2.4926929695761428" b="-0.00011940110550821533" c="0.00019812325452529548" d="-1.8466696124591292e-05" /> - <width sOffset="340.44488362658637" a="2.4943830381277694" b="0.00055889098541979463" c="1.8919278055089681e-06" d="-4.3056216152422074e-06" /> - <width sOffset="345.65243827491054" a="2.4967367526515751" b="0.00022830800100487542" c="-7.7072579758134495e-05" d="8.461119794244617e-06" /> - <width sOffset="350.24323577507016" a="2.4969791699988084" b="5.5623790871587708e-05" c="-0.00021468585096901411" d="1.454231317273135e-05" /> - <width sOffset="350.45796843913303" a="2.496981359042409" b="-3.4564695266095947e-05" c="-0.00017972448570243718" d="1.5521222558290762e-05" /> - <width sOffset="358.24045548480944" a="2.4931430935037477" b="-1.174512743123057e-05" c="-0.00051599019488111138" d="6.4274784702909383e-05" /> - <width sOffset="360.47105325167968" a="2.4912629042550423" b="-0.0013542679033495212" c="-9.9937271450370349e-05" d="6.6326554762374292e-05" /> - <width sOffset="361.03686311663284" a="2.4904766664313494" b="-0.0014036573819178281" c="0.0006388369297040601" d="-5.1068542711222316e-05" /> - <width sOffset="369.20784335058454" a="2.4937996364056341" b="-0.0011925707282315918" c="0.00031590167686817424" d="8.5669576030153097e-05" /> - <width sOffset="370.45746189133752" a="2.492969843322002" b="-1.7264641472523878e-06" c="-0.00045777008394417716" d="4.0332758143780346e-05" /> - <width sOffset="370.48413806422639" a="2.4929694722746696" b="-2.6063467331083768e-05" c="-0.00042494832050569465" d="5.6190011198241704e-05" /> - <width sOffset="375.68123439115999" a="2.4892437815830082" b="0.00010998643949368695" c="0.00062785367476230446" d="-0.00011292921104252931" /> - <width sOffset="378.89411555854804" a="2.4923329090056896" b="0.00064725388479163143" c="-9.8740248958900201e-05" d="6.3660325695738873e-06" /> - <width sOffset="380.49722287677304" a="2.4931429961237681" b="0.00037975266827793572" c="-7.296831982132243e-05" d="3.3974648363465707e-06" /> - <width sOffset="391.3906023636556" a="2.493012751278644" b="-5.0272964415357113e-07" c="0.00010314969190661517" d="-5.9322177874174915e-06" /> - <width sOffset="391.48573007784478" a="2.4930136317790961" b="1.8961012187665004e-05" c="-7.364560567754805e-06" d="4.3687923331706937e-07" /> - <width sOffset="400.52339250186634" a="2.4929059625659127" b="-7.10378738632536e-06" c="-2.5206144956416908e-06" d="3.5044545685382933e-07" /> - <width sOffset="406.48196239635314" a="2.4928482798258011" b="1.8492750299657634e-07" c="-0.0050422285648815401" d="0.00085859269416579454" /> - <width sOffset="406.51589535420135" a="2.4928425137957948" b="-0.00033904466287382347" c="0.0016043423894978349" d="-0.00037880255004785765" /> - <width sOffset="410.29463896187679" a="2.494030811224663" b="-0.0044409024570521288" c="0.0036000780182862376" d="0.0010470971832310673" /> - <width sOffset="410.7945265563601" a="2.492841272952619" b="-5.6663947424175879e-05" c="-0.00083073482894968501" d="0.00020073195041275728" /> - <width sOffset="413.45810784105481" a="2.4905898337392367" b="-0.00020974544769261882" c="0.00026082041397259805" d="-2.1190581165596728e-05" /> - <width sOffset="420.54956212695964" a="2.4946617702596443" b="0.00029250478148403619" c="-0.00018909192670773573" d="-2.2573765330249027e-05" /> - <width sOffset="421.81450541297306" a="2.4946835201418933" b="-0.00029423593878662949" c="4.6369508802767309e-05" d="-4.1282819029220959e-06" /> - <width sOffset="430.56264693950629" a="2.4928942956010331" b="-0.00043075388422076939" c="-6.12357674425616e-05" d="-4.3471717842073789e-06" /> - <width sOffset="431.08944888521688" a="2.4926497438999489" b="-0.00049889141221588372" c="2.2150242989527747e-05" d="5.7203568455542098e-06" /> - <width sOffset="438.53953143989554" a="2.4925277925221332" b="0.00078365429234554247" c="-0.00047237538615793698" d="9.0400266936988669e-05" /> - <width sOffset="440.53918506284606" a="2.4929288089952673" b="-2.1092527451111332e-05" c="-0.00058744059433588785" d="9.3212088794572323e-05" /> - <width sOffset="440.575731752053" a="2.4929272580620818" b="-6.3657045939701645e-05" c="-0.00059254650606246266" d="9.0904275852664315e-05" /> - <width sOffset="445.56173860067054" a="2.4891468992802572" b="0.00080717404893847038" c="0.00024941457987446279" d="-3.6344458088797401e-05" /> - <width sOffset="450.58881656459965" a="2.4948904421641469" b="0.00055938880623487874" c="-0.0003021030006688381" d="-3.5637646733318129e-05" /> - <width sOffset="451.33801565888018" a="2.4951249790351637" b="4.670806061667543e-05" c="-0.00010634287590483935" d="7.5333651603720944e-06" /> - <width sOffset="460.60190137714631" a="2.492420573199758" b="1.5942232482580974e-05" c="0.00010137739503992093" d="7.4741317385849083e-06" /> - <width sOffset="462.57692534850588" a="2.4929050851139518" b="0.00050385128165655001" c="-0.0011149404165547807" d="0.00021675918788998871" /> - <width sOffset="462.82689275162386" a="2.492964751442619" b="-1.2914489541463511e-05" c="-0.00025470053936272339" d="0.00014872175909642511" /> - <width sOffset="464.87503404005702" a="2.4931476364493896" b="0.00081537114847101289" c="-0.00070493034282640809" d="8.4373566819110786e-05" /> - <width sOffset="470.61498618969296" a="2.4905587165224059" b="0.0010624188213224847" c="0.00076858241842490656" d="7.8041568568382405e-05" /> - <width sOffset="471.04177910774786" a="2.4911582153762337" b="0.0017611162165875527" c="-0.00030478267346281576" d="-7.8386665270415787e-05" /> - <width sOffset="472.79158450760201" a="2.4928866732772796" b="-2.5521847513294924e-05" c="0.00012605046193307624" d="-1.2578564520367308e-05" /> - <width sOffset="477.36061661345894" a="2.4942017136528651" b="0.00033856297653552046" c="5.4398786750919339e-05" d="-5.4926352976721598e-06" /> - <width sOffset="480.62807100223961" a="2.4956971221136515" b="0.00051813170793640244" c="-8.1388902376075041e-07" d="-7.4966744502131059e-06" /> - <width sOffset="485.05725967845029" a="2.497324668405569" b="6.9719163464799627e-05" c="-2.4809879399937399e-06" d="-4.8001483043665191e-07" /> - <width sOffset="490.64115581478626" a="2.4975530429003596" b="-2.8884320435445393e-06" c="-9.9454276270759179e-06" d="-1.027026487882863e-07" /> - <width sOffset="500.65424062733291" a="2.4964238673087094" b="-0.00023294873078073602" c="-1.3822296603960946e-05" d="-1.4847106753472969e-07" /> - <width sOffset="504.30567301351783" a="2.4953817504379234" b="-0.00033982976945489307" c="-9.1035514940992961e-05" d="1.3232708414488491e-05" /> - <width sOffset="510.30536383054255" a="2.4929237592806253" b="-3.2144307386735432e-06" c="-1.8352308062409461e-05" d="1.2909431514375367e-05" /> - <width sOffset="510.66732543987956" a="2.4929208035321846" b="-1.1426058414224123e-05" c="-6.5640324890004631e-06" d="1.3623700114215767e-05" /> - <width sOffset="512.38847785053326" a="2.4929511554045023" b="8.7053683435345339e-05" c="-0.0001103773509378689" d="5.8646046906939542e-06" /> - <width sOffset="520.68041025242621" a="2.4894274137318941" b="-0.00053374658640783384" c="3.554237211144522e-05" d="5.9733598659699923e-06" /> - <width sOffset="527.38349122155864" a="2.4892456771385696" b="0.00074791258328477962" c="0.00088549430140555927" d="-0.00015625617300846431" /> - <width sOffset="530.69349506497292" a="2.4957562557390975" b="0.0014740049668641405" c="-0.00065926257737718218" d="-0.00015620514109888214" /> - <width sOffset="531.29267954483498" a="2.4963691639245793" b="0.00051572189214922181" c="-0.0004032200717198348" d="3.7483009642309398e-05" /> - <width sOffset="537.86620731169944" a="2.4929826921374332" b="7.3630263717274511e-05" c="3.7932472110771242e-05" d="-1.798648415247118e-06" /> - <width sOffset="540.70657987751952" a="2.4934566413383852" b="0.00024558201451141968" c="1.6199583030269122e-05" d="-2.8374455384249729e-06" /> - <width sOffset="545.89705051474198" a="2.4947709821524038" b="0.00018441819784178939" c="-4.7162362580109301e-05" d="1.905649977309563e-06" /> - <width sOffset="550.71966469006622" a="2.4947772186543151" b="-0.0001375109812753833" c="-2.0190622230246757e-05" d="1.6565331338634679e-06" /> - <width sOffset="560.73274950261293" a="2.4930390043198987" b="-4.3590490346995031e-05" c="3.1052495208379376e-05" d="1.7343284694703302e-06" /> - <width sOffset="561.39782259561298" a="2.493024258865117" b="1.5263784746344031e-08" c="3.3229186833799764e-05" d="-1.2724270106737965e-06" /> - <width sOffset="570.74583431515953" a="2.4948887258439996" b="0.00028769458331219305" c="-3.063371179749101e-06" d="-1.2429964971775873e-06" /> - <width sOffset="580.75891912770624" a="2.4962144145942995" b="-0.00014752845773009023" c="-2.933994176522565e-05" d="-7.3181697750448189e-06" /> - <width sOffset="582.40384439680076" a="2.4958597821610145" b="-0.00030345653431566801" c="-0.00034636498491061161" d="3.5592166281956372e-05" /> - <width sOffset="589.68264510512211" a="2.4890259213332468" b="0.00031141932289914699" c="0.00023353367476158554" d="-3.1332888310806787e-05" /> - <width sOffset="590.77200394025283" a="2.4896017983238865" b="0.00070867479988787822" c="0.0001344213806199343" d="-2.8317268638368783e-05" /> - <width sOffset="595.68283002838211" a="2.4929700825917029" b="-1.9800989568752835e-05" c="-7.3817574454597905e-05" d="-2.7439727394147983e-05" /> - <width sOffset="596.33179464683087" a="2.4929186441218381" b="-0.00015028011907746266" c="6.1079643612835488e-05" d="-2.2418748546879722e-06" /> - <width sOffset="600.78508875279954" a="2.4932627279818629" b="0.00026034968251394434" c="3.2326407270509244e-05" d="-2.1567788671244359e-06" /> - <width sOffset="610.79817356534613" a="2.4969454811309895" b="0.00025899576711345949" c="-3.2453236897463413e-05" d="-2.1460232075937695e-06" /> - <width sOffset="616.26560989994607" a="2.4970406636703633" b="-0.00028832856043717043" c="-0.022548620839392415" d="0.018721408542142236" /> - <width sOffset="617.06808186437752" a="2.4919633409731521" b="-0.00031001553345414275" c="5.2767935546692841e-05" d="-1.8382695122685444e-06" /> - <width sOffset="620.81125837789284" a="2.4914458374191684" b="7.7538354005660982e-06" c="3.1904626774746536e-05" d="-1.825260449935828e-06" /> - <width sOffset="630.82434319043944" a="2.4928898599053264" b="9.7669239065494495e-05" c="-2.6032737702435424e-05" d="-5.9416875797684988e-07" /> - <width sOffset="632.56884362735445" a="2.4929778645336267" b="1.4163256163532856e-06" c="-0.00029573260420720358" d="8.0427283538496034e-05" /> - <width sOffset="632.71245744626231" a="2.4929722067012046" b="-7.8549830708964964e-05" c="0.00024666715822039913" d="-4.07848498012475e-05" /> - <width sOffset="636.67252717074166" a="2.4939965781000009" b="-4.3694209018348574e-05" c="-0.00071325260153334131" d="0.00023836901311857865" /> - <width sOffset="638.67263300813488" a="2.4929631275494071" b="-3.612468705086044e-05" c="-0.00069304075420575982" d="0.00016096053140241434" /> - <width sOffset="640.83742800298614" a="2.4912700403240056" b="-0.00077376093882705306" c="0.00034955761744848634" d="0.00016010288381027883" /> - <width sOffset="641.68206314642782" a="2.49096234520756" b="0.00015939264470630219" c="4.9302222843062996e-05" d="-6.6533447664218752e-06" /> - <width sOffset="648.03348242963989" a="2.4922588750339623" b="-1.9527478350863129e-05" c="0.00021504222396739894" d="-4.3394879170345369e-05" /> - <width sOffset="650.85051281553285" a="2.4929402752050773" b="0.00015893243407861157" c="-0.00015818258913319534" d="-4.0989921329385807e-05" /> - <width sOffset="651.28369052430685" a="2.4929761075757915" b="-1.1843154684839036e-06" c="0.00070118813843791667" d="-0.00011385290785272809" /> - <width sOffset="652.61479134897604" a="2.493948396680902" b="0.0012603361130917947" c="-0.0012095760169730434" d="0.00016733520921494892" /> - <width sOffset="657.49591409878622" a="2.4907418337909046" b="0.0014126225335621277" c="8.3856243539499593e-05" d="-0.00011814166707258973" /> - <width sOffset="659.74606988417372" a="2.492999048610498" b="-4.5232846854574831e-06" c="0.0001356580262766243" d="-5.6020331378138291e-05" /> - <width sOffset="660.86359762807945" a="2.4930852282260707" b="8.8793890358367534e-05" c="-4.5190576297736189e-05" d="-4.9923955489555481e-05" /> - <width sOffset="661.47833899370039" a="2.4931111375854496" b="-2.3366971554634412e-05" c="3.4294636313650609e-06" d="-9.9270651473193468e-08" /> - <width sOffset="670.87668244062615" a="2.4931120383420522" b="1.4790192244967652e-05" c="-1.6619631377611581e-07" d="-1.2584636977576954e-07" /> - <width sOffset="680.88976725317275" a="2.4931171296193151" b="-2.6390859466650352e-05" c="-5.0811980350035985e-06" d="1.0739719143953397e-08" /> - <width sOffset="684.43388976987865" a="2.492960251345739" b="-6.2002937667687954e-05" c="0.00012609344273304722" d="1.6602222183683209e-07" /> - <width sOffset="684.68391143533631" a="2.4929526340689421" b="1.0803820224489225e-06" c="-0.00023170839939432516" d="2.3718553645163242e-05" /> - <width sOffset="688.94542160154492" a="2.4905849080741733" b="-0.00068155484996368734" c="0.0025052476584675248" d="-0.00050869907372549992" /> - <width sOffset="690.90285206571946" a="2.4950345300580059" b="0.0032788479000726771" c="-0.00048132596983062402" d="-0.00050747082528868482" /> - <width sOffset="692.40397113246479" a="2.4971553210367032" b="-0.0015967483019591283" c="-0.00041493312746746945" d="0.00016105360370829359" /> - <width sOffset="695.27331095370232" a="2.4929621818784806" b="0" c="3.3964709554626469e-05" d="-4.1622797186016393e-06" /> - <width sOffset="700.91593687826605" a="2.4932958099259395" b="-1.4271009140478033e-05" c="-3.2675649583885293e-05" d="-3.8767066595111278e-06" /> - <width sOffset="703.0165715660271" a="2.4930857102755715" b="-0.00020287005112910048" c="-0.00016517100693167722" d="0.00039139108507553765" /> - <width sOffset="703.51661867786356" a="2.4929919028751186" b="-7.4457987214816617e-05" c="-0.0011593983787230432" d="0.00027710601246346754" /> - <width sOffset="706.64161097020565" a="2.4898935701092473" b="0.000797620180229022" c="0.0058236073113864329" d="-0.0025066810942488624" /> - <width sOffset="708.19894891301419" a="2.4957919680577749" b="0.00069789742640727272" c="-8.2644958049096006e-05" d="7.5371727027322927e-07" /> - <width sOffset="710.92902169081276" a="2.4970966380470401" b="0.00026349696287273857" c="-7.5769912917759074e-05" d="-9.4404360089548361e-09" /> - <width sOffset="713.24214724039552" a="2.4973006120715757" b="-8.7185214618689207e-05" c="-0.0019525372040169098" d="0.00037802929452337677" /> - <width sOffset="716.57667807441339" a="2.4893156219804737" b="-0.00049874432015760992" c="8.7377856561868283e-05" d="-2.6466575431500742e-06" /> - <width sOffset="720.94210650335935" a="2.4885833658792711" b="0.00011282745461022601" c="5.3395661566304756e-05" d="-2.5623633768459728e-06" /> - <width sOffset="730.95519131590606" a="2.4924942305373712" b="0.00041141601853525098" c="-2.3358265944734265e-05" d="-2.5282439606843412e-06" /> - <width sOffset="738.72101168523727" a="2.4930964440485921" b="-0.00040879592892376689" c="0.00053017030334081726" d="-0.00011959316806636302" /> - <width sOffset="739.22106713589528" a="2.4930096412716809" b="3.1718399297339574e-05" c="0.00078421245671589119" d="-0.00013325154228864376" /> - <width sOffset="740.96827612845277" a="2.494748322557621" b="0.0015517378669241456" c="8.5487338205287482e-05" d="-0.00013526404918631218" /> - <width sOffset="743.30981652130299" a="2.4971139401907596" b="-0.00027279983937596771" c="-0.001133077690486578" d="0.00023278213504393362" /> - <width sOffset="746.70184453255752" a="2.4922366318555174" b="7.5409429725828946e-05" c="8.9662105543632858e-05" d="-1.5451415035821413e-05" /> - <width sOffset="750.95235448866856" a="2.4929905062874704" b="1.5428165551822958e-07" c="-8.1776855799286117e-05" d="-3.9579925879932111e-08" /> - <width sOffset="750.98136094099937" a="2.4929904419567244" b="-4.5899312506647366e-06" c="-7.7874660351780886e-05" d="2.3821953109396128e-07" /> - <width sOffset="756.85730152818041" a="2.4903230476819775" b="-0.00089508889922243365" c="0.00014702537333002001" d="-5.148925940655205e-06" /> - <width sOffset="760.99444575354607" a="2.4887718149154407" b="5.7054981790721814e-05" c="8.3351782456654884e-05" d="-4.9206502567001288e-06" /> - <width sOffset="771.00753056609267" a="2.4927601253747147" b="0.00024621116421015858" c="-6.5802995300026984e-05" d="-4.5372202975077045e-06" /> - <width sOffset="772.60926804044198" a="2.4929670242332804" b="4.9134451887613423e-07" c="0.00011047692152349045" d="-7.0317959501128376e-06" /> - <width sOffset="781.02061537863938" a="2.4966027968899294" b="0.00036649605588504964" c="-6.6932904893482914e-05" d="-7.0536506981509552e-06" /> - <width sOffset="783.59825707635036" a="2.4969819702630431" b="-0.00011916041229474814" c="2.5227587996241809e-05" d="-3.1557197846394962e-06" /> - <width sOffset="787.99138722105045" a="2.4966778055679493" b="-8.0216575048538226e-05" c="-0.00011590482069882927" d="6.6631589928277336e-06" /> - <width sOffset="791.03370019118597" a="2.4955486105687257" b="-0.00060043808710593034" c="-5.4917157031076892e-05" d="6.6547258997921503e-06" /> - <width sOffset="800.50107011179875" a="2.4905887617833127" b="0.00014913090399920723" c="5.5385682788981935e-05" d="-4.7602023769434193e-06" /> - <width sOffset="801.04678500373268" a="2.490685865246169" b="0.00020532765526412242" c="4.553094303856713e-05" d="-4.5180479990755409e-06" /> - <width sOffset="809.63747104706863" a="2.49294554437025" b="-1.2682562178758811e-05" c="2.1505668479416195e-05" d="-8.7641086614895652e-06" /> - <width sOffset="810.63761512343592" a="2.4929456039493472" b="4.0350689625417296e-06" c="-1.971193797450273e-05" d="-3.0997404088394386e-06" /> - <width sOffset="811.05986981627939" a="2.4929435597848029" b="-1.426988974691755e-05" c="-2.0168164900219633e-05" d="-8.2691889405800546e-07" /> - <width sOffset="821.07295462882598" a="2.4899484071254152" b="-0.00066688627874149451" c="-4.2932999990637701e-05" d="-7.2440540597748388e-07" /> - <width sOffset="821.73202722105839" a="2.4894900241759261" b="-0.0007244222003866237" c="0.00017745483261153691" d="-7.061773901047444e-06" /> - <width sOffset="831.08603944137269" a="2.4924609014427901" b="0.00074174351425548911" c="-2.0674733893442232e-05" d="-7.1094239368665101e-06" /> - <width sOffset="836.20794510625876" a="2.4947623858871513" b="-2.9568685124532518e-05" c="-0.00059200069688579145" d="0.00013391842170553184" /> - <width sOffset="839.20723608464948" a="2.4929614469881782" b="3.3355085162670422e-05" c="-0.00070283112483754981" d="0.00019989518820225501" /> - <width sOffset="840.37643810796396" a="2.4923591523312227" b="-0.00079035788213457144" c="0.0011461657982950314" d="-0.00017748073438622218" /> - <width sOffset="841.09912425391929" a="2.4923195971627354" b="0.00058819701161723251" c="0.00076118246998312382" d="-0.00017847598323244673" /> - <width sOffset="844.64214005359281" a="2.4960209024368165" b="-0.00073924610090910252" c="-0.00051667144824991723" d="0.00014125993363953084" /> - <width sOffset="847.64145603521558" a="2.4929671569371266" b="-2.6288797359970547e-05" c="-0.0009752585819898373" d="0.00019608562317513636" /> - <width sOffset="850.70486904677682" a="2.4893714966305946" b="-0.00048103228860463601" c="0.002409806524210798" d="-0.00063521927275323245" /> - <width sOffset="851.11220906646599" a="2.4895324688620892" b="0.0011659910127694391" c="0.0016610672912717884" d="-0.00063811096054675119" /> - <width sOffset="853.37081022187965" a="2.4932873873179506" b="-0.0010961784518921075" c="0.00098740465309381719" d="0.0001339140586218513" /> - <width sOffset="853.87070230954589" a="2.4930028894262461" b="-8.5947093642847256e-06" c="-0.00013186725865618331" d="1.2955510502040594e-05" /> - <width sOffset="859.8562320611112" a="2.4910052867956205" b="-0.00019473113724366575" c="0.00032084750082629756" d="-2.4974081486684528e-05" /> - <width sOffset="861.12529387901259" a="2.4912238483912805" b="0.00049895587245466313" c="0.00022569841879047916" d="-2.8400265755869926e-05" /> - <width sOffset="867.89335936389932" a="2.4961345861632518" b="-0.00034872901807064772" c="2.7342056736709362e-06" d="-8.5714310976688183e-08" /> - <width sOffset="871.1383786915593" a="2.4950288164521224" b="-0.00033369167132784526" c="4.1740196571331898e-06" d="8.9050765422459037e-07" /> - <width sOffset="880.89085127340195" a="2.4929974950657385" b="1.8128295724227617e-06" c="-8.4748251648734358e-06" d="9.7860335017170617e-08" /> - <width sOffset="881.151463504106" a="2.4929973936440648" b="-2.5845169678334785e-06" c="-8.773214450517664e-06" d="9.803064457568514e-08" /> - <width sOffset="891.1645483166526" a="2.4921903117540998" b="-0.00014879219123013722" c="-5.4340506710843142e-06" d="1.1386220516217769e-07" /> - <width sOffset="891.96577717197499" a="2.4920676652386549" b="-0.00015728074005903598" c="2.4642020081796224e-07" d="-8.7860747324638859e-07" /> - <width sOffset="898.0159792976267" a="2.4909305223259066" b="-0.00025078309272369876" c="-9.8799109589405178e-05" d="1.1755763566403873e-05" /> - <width sOffset="901.17763312919931" a="2.4895215615923645" b="-0.00052298648371095933" c="1.2133858318294139e-05" d="1.1976031906980927e-05" /> - <width sOffset="905.65198729498775" a="2.4884972163758512" b="0.00030487079001336397" c="9.2437217623009263e-05" d="-6.5073248639694627e-06" /> - <width sOffset="911.1907179417459" a="2.4919158701429005" b="0.00072995438899383985" c="-1.8646741016509923e-05" d="-6.2280081487758168e-06" /> - <width sOffset="914.41209783704755" a="2.4938656306690472" b="0.00041592840503558041" c="-1.9741843603014884e-05" d="9.6870830600380328e-08" /> - <width sOffset="921.20380275429261" a="2.4958102045514838" b="0.00016117200920299623" c="-1.7937692736273517e-05" d="1.2472004198183783e-07" /> - <width sOffset="931.2168875668392" a="2.4957507772417031" b="-0.00016053727525855302" c="-1.5137022834829499e-05" d="3.1989700893262123e-07" /> - <width sOffset="934.61699419853369" a="2.4950425128425833" b="-0.00025237753455975933" c="-0.00046311020186818106" d="9.4097717809851574e-05" /> - <width sOffset="937.38923901587088" a="2.492788513378537" b="-0.00065056801007657989" c="0.00015184030023310618" d="-5.8997230316773246e-06" /> - <width sOffset="941.22997237938591" a="2.4921954346654136" b="0.00025470364083486857" c="8.291935279926945e-05" d="-6.0511197525786997e-06" /> - <width sOffset="951.24305719193251" a="2.4969845488064371" b="9.5170965284215731e-05" c="-0.00010049995624871499" d="-5.0658666605369264e-06" /> - <width sOffset="952.86914386007436" a="2.4968517859443917" b="-0.00027185716605195726" c="-0.00011028911987197014" d="1.232802614418276e-05" /> - <width sOffset="959.13384352874857" a="2.4938512831676878" b="-0.00020221936495264667" c="-6.1227513510891539e-06" d="3.1635339048150211e-06" /> - <width sOffset="961.25614200447922" a="2.4934247762249502" b="-0.0001854608751748069" c="1.2855269407581404e-05" d="2.3293398342848053e-06" /> - <width sOffset="964.88323434559163" a="2.4930323636448097" b="-2.7339780532932914e-07" c="-6.6555393905468494e-05" d="3.3834808394197823e-06" /> - <width sOffset="971.26922681702592" a="2.4911975770138994" b="-0.00043637370691067528" c="-2.0954840608964953e-06" d="3.3974192599938927e-06" /> - <width sOffset="979.72146190310548" a="2.4894110056467476" b="0.0002563409740288995" c="0.00011348959133400644" d="-1.3709702559159612e-05" /> - <width sOffset="981.28231162957252" a="2.4900354717837674" b="0.00051042050378007184" c="5.6151756425054482e-05" d="-1.0068217274232156e-05" /> - <width sOffset="987.54561357239174" a="2.4929613751935111" b="2.8914500820575808e-05" c="-5.7644965509926633e-06" d="3.6676665479483325e-07" /> - <width sOffset="989.54544661271655" a="2.4929990786294596" b="1.0258904558626437e-05" c="0.00017058337945294872" d="1.0730717815891637e-06" /> - <width sOffset="991.29539644211923" a="2.4935451633432688" b="0.00061714189781916535" c="0.00017199437650598971" d="-8.8313833462207294e-06" /> - <width sOffset="993.68813494829703" a="2.4958855440673782" b="0.0012885327897156715" c="-0.00028221424172899097" d="1.4588622564250977e-05" /> - <width sOffset="1001.3084812546658" a="2.4957721468174316" b="-0.00047113788258882749" c="5.0923982771762896e-05" d="1.4709357832573527e-05" /> - <width sOffset="1003.8998765671621" a="2.49514918697996" b="8.9125018953986612e-05" c="-0.00030307127074647805" d="2.3168949986408754e-05" /> - <width sOffset="1011.3215660672125" a="2.4885884438266856" b="-0.00058093689597556956" c="0.00021019588650450375" d="2.6747015612072534e-05" /> - <width sOffset="1013.2207229623572" a="2.4884265010555895" b="0.00050686619836958088" c="0.00059844262845535788" d="-0.0001101144541541844" /> - <width sOffset="1017.2204870241097" a="2.4929817206952185" b="9.2545422825285502e-06" c="0.0019695788603097814" d="-0.00028445269020583767" /> - <width sOffset="1018.1656292450274" a="2.4945097196960857" b="0.0029700193300785313" c="-0.001431489919032039" d="0.00013935014914524799" /> - <width sOffset="1021.3346508797591" a="2.4939806461081755" b="-0.0019044712734362593" c="-0.00010387647384735632" d="0.00013948687541987781" /> - <width sOffset="1024.8340405183028" a="2.4920214875683682" b="0.0024928751559378831" c="-0.001449119002419413" d="-0.00018739004883637484" /> - <width sOffset="1025.5840082425966" a="2.4929969592216095" b="3.0967036481021996e-06" c="2.3728130186749849e-05" d="-1.8278234812387155e-06" /> - <width sOffset="1031.3477356923058" a="2.493453088335615" b="9.4457727611655545e-05" c="-1.0142932882740849e-05" d="-1.9801906844338314e-06" /> - <width sOffset="1037.7934647310722" a="2.4931102226749555" b="-0.00028311492544628612" c="0.00014147390397438903" d="2.7857742087022201e-06" /> - <width sOffset="1038.7934377969311" a="2.4929713672072111" b="8.182133987263366e-06" c="-7.7349857875507618e-06" d="1.605986849701929e-06" /> - <width sOffset="1041.3608205048524" a="2.4929685668438282" b="2.2216165698643424e-07" c="-4.5738953738853032e-07" d="2.8990940515872518e-08" /> - <width sOffset="1051.3739053173992" a="2.4929540375299641" b="-2.1754129588165416e-07" c="2.2486930835176029e-07" d="-2.6113801169564598e-08" /> - <width sOffset="1056.7929579805016" a="2.4929553065420516" b="-8.096802609240325e-08" c="0.0007590093721038081" d="-9.3068303554940066e-05" /> - <width sOffset="1058.8592432968721" a="2.495374700538707" b="0.0019445037324349454" c="-0.0018683577242257685" d="0.00028478210134742137" /> - <width sOffset="1061.3869901299458" a="2.4929515640090996" b="-0.002042117736899233" c="0.00029041027569262108" d="0.00028497904546826434" /> - <width sOffset="1063.1461613304486" a="2.4918093052153534" b="0.0016254047391790244" c="-0.0004198654350929737" d="-0.00012276453207786823" /> - <width sOffset="1064.3961533787174" a="2.4929452469179809" b="2.9640605547862769e-07" c="0.00028083834368591029" d="-3.2642919137200375e-05" /> - <width sOffset="1069.6003152710264" a="2.4959519337967064" b="0.00027111880460500837" c="-3.4073048335690075e-05" d="2.6286084365507288e-06" /> - <width sOffset="1071.4000749424924" a="2.4963448391930561" b="0.00017401545982573545" c="-2.2994741044730272e-05" d="4.5014367523784836e-07" /> - <width sOffset="1081.413159755039" a="2.4962336880740414" b="-0.00015108438830255082" c="-7.1481696623735871e-06" d="4.8070582683002185e-07" /> - <width sOffset="1091.4262445675859" a="2.4944867737215004" b="-0.00014964545477526682" c="8.0446243692814045e-06" d="4.2637890950065523e-07" /> - <width sOffset="1098.3313621178254" a="2.4939774083690001" b="2.2442767645403528e-05" c="-0.00012072996212085543" d="1.514442380143181e-05" /> - <width sOffset="1101.4393293801324" a="2.4933356285490555" b="-0.00028914588138100224" c="1.368426366694804e-05" d="2.2534096812912919e-05" /> - <width sOffset="1103.3315029685073" a="2.4929901676400705" b="4.6780157614691002e-06" c="-0.00030866616949078759" d="4.0129216708401009e-05" /> - <width sOffset="1106.749018543637" a="2.4910028558731119" b="-0.00069900781719057798" c="0.00024720871866871867" d="-1.208833500196681e-05" /> - <width sOffset="1111.452414192679" a="2.4919261102683326" b="0.00082418108130398785" c="7.6890099844773607e-05" d="-1.176877403578141e-05" /> - <width sOffset="1114.683568533633" a="2.4949949141046917" b="0.00095245798537571405" c="-0.0016818132033870111" d="0.00039213075238390976" /> - <width sOffset="1117.1836592967463" a="2.4929917601097724" b="-0.00010392784275524425" c="-0.0006708838325925156" d="0.00047297371069787329" /> - <width sOffset="1118.6399742633489" a="2.4928784032288975" b="0.00095135936456622761" c="-0.00042915434382672214" d="4.7315240369409561e-05" /> - <width sOffset="1121.4654990052259" a="2.4932076295037584" b="-0.00034057661948018187" c="-2.7570589057484758e-05" d="4.71007857022645e-05" /> - <width sOffset="1124.1340290980831" a="2.4929975030891649" b="0.0005184990410644645" c="-0.00090855066557053504" d="0.00040679814915413006" /> - <width sOffset="1125.1340799153218" a="2.4930142456403122" b="-7.8176145378224329e-05" c="-0.0011309763196048284" d="0.00031356795577967925" /> - <width sOffset="1127.5118468012499" a="2.490649481801734" b="-0.00013804387862123785" c="0.00010103826542269499" d="-5.9445166039001823e-06" /> - <width sOffset="1131.4785838177725" a="2.4913206987866792" b="0.00038292962454268206" c="3.0805094420800294e-05" d="-6.0965521578658932e-06" /> - <width sOffset="1138.3404713176158" a="2.4934290240816468" b="-5.5485811776423075e-05" c="-0.00011306919238485608" d="2.7094367016292651e-05" /> - <width sOffset="1141.3407022723766" a="2.4929764912878216" b="-2.2926437326007375e-06" c="-0.00020995736048245935" d="1.6794445046730102e-05" /> - <width sOffset="1141.4916686303191" a="2.4929714178546858" b="-6.4537361256214107e-05" c="-0.00019518664271750926" d="1.8243693264994261e-05" /> - <width sOffset="1150.8406298982554" a="2.4902155796603767" b="0.0010695426832609718" c="-7.1814993790218697e-05" d="1.5471317688167937e-06" /> - <width sOffset="1151.5047534428656" a="2.4908946665945528" b="0.00097620176099898778" c="-5.721061408388875e-05" d="7.4029691253699025e-07" /> - <width sOffset="1161.5178382554125" a="2.4956766213253525" b="5.3162951783417749e-05" c="-3.0905510025429404e-05" d="1.1166516317117961e-06" /> - <width sOffset="1171.5309230679591" a="2.4942313430433272" b="-0.00022988330063138937" c="6.5575403795654304e-07" d="1.2193414621477856e-06" /> - <width sOffset="1179.3435768215738" a="2.4930568316839592" b="3.6399359777083754e-06" c="-0.0004315914390784928" d="3.2998477231948497e-05" /> - <width sOffset="1180.2045263787891" a="2.4927611136559937" b="-0.00066613818708680355" c="0.00016261669891760329" d="-1.1129846236883879e-05" /> - <width sOffset="1181.5440078805057" a="2.492133854003538" b="-0.00029040193434784782" c="0.00011952663582667178" d="-7.8680795624986181e-06" /> - <width sOffset="1189.1832990969608" a="2.493383072132854" b="0.00015828128062887227" c="-0.00034065136210025758" d="9.029370130747612e-05" /> - <width sOffset="1191.4335920020428" a="2.4930431582374011" b="-3.1567529702111741e-06" c="-0.00042793818089721745" d="6.1005150654217315e-05" /> - <width sOffset="1191.5570926930523" a="2.4930363561975257" b="-0.00010606664637806884" c="-0.00041102277266392501" d="6.3077857301677761e-05" /> - <width sOffset="1196.2778782808555" a="2.4900118646693352" b="0.00023045726232794766" c="4.3639535410875527e-06" d="2.482518937691687e-07" /> - <width sOffset="1201.5701775055991" a="2.4913905390815954" b="0.0002975073963878954" c="4.9375894376935638e-06" d="-8.812602115824457e-07" /> - <width sOffset="1211.5832623181457" a="2.4939798337343388" b="0.00013131801640295804" c="-2.0312098216254277e-05" d="-8.2755949193319858e-07" /> - <width sOffset="1214.0353603448532" a="2.494167504623694" b="1.677569325525942e-05" c="-1.5470845486277442e-05" d="5.4822463507875606e-07" /> - <width sOffset="1221.5963471306923" a="2.4936468703969226" b="-0.00012315044834139459" c="-3.6182134722415603e-06" d="5.8586901164579148e-07" /> - <width sOffset="1230.6785331765316" a="2.4926688489767903" b="-4.389486858869928e-05" c="3.8658684196767542e-05" d="-2.8462234470524661e-06" /> - <width sOffset="1231.6094319432391" a="2.4926591918272516" b="2.068039726515179e-05" c="2.386531256712763e-05" d="-2.5736998214773705e-06" /> - <width sOffset="1237.6217179606238" a="2.4930868604858185" b="2.8551482422914257e-05" c="-3.3609471931505874e-05" d="2.2420202417783122e-06" /> - <width sOffset="1238.1218136610112" a="2.4930930137881688" b="-3.3822634675917672e-06" c="5.6989728232975705e-07" d="-1.490347099869685e-07" /> - <width sOffset="1241.6225167557857" a="2.4930817638199843" b="-4.8714074145233296e-06" c="5.7046882526989851e-06" d="5.3883124256146709e-07" /> - <width sOffset="1242.122581999319" a="2.4930808217230105" b="1.2382541375299534e-06" c="-3.4044277561388561e-05" d="1.1301518420518348e-06" /> - <width sOffset="1251.6356015683323" a="2.4909846310812105" b="-0.00033966161409748971" c="-3.1108180401017449e-06" d="1.4047325788046306e-06" /> - <width sOffset="1254.8684148980988" a="2.4899015179260235" b="-0.00031573207593747006" c="8.2654402098462557e-05" d="-2.5719000260327689e-06" /> - <width sOffset="1261.6486863808789" a="2.4907588941864347" b="0.00045039970311511993" c="3.0381698169579651e-05" d="-2.7123891552463102e-06" /> - <width sOffset="1271.6617711934257" a="2.495591859984212" b="0.00024298113818202764" c="-5.0518669405507513e-05" d="-2.6215733748483439e-06" /> - <width sOffset="1279.0996467913412" a="2.4935256099228074" b="-0.00094361401354017046" c="0.0006295699419664577" d="-0.00012882725289706983" /> - <width sOffset="1281.1000889816594" a="2.4931260563203486" b="2.8611829490781185e-05" c="0.00065001439941276325" d="-0.00015636304038244058" /> - <width sOffset="1281.6748560059723" a="2.4933275483876338" b="0.00062085857688202843" c="0.0003790024225483157" d="-0.00015799054462464659" /> - <width sOffset="1284.5812969234414" a="2.4944546591635159" b="-0.0011798725401053053" c="0.0002687682117690847" d="-2.1770941743640593e-05" /> - <width sOffset="1291.6879408185189" a="2.4918297445853232" b="-0.00065837682839584629" c="-0.00018348893187104131" d="-2.8284180969795304e-05" /> - <width sOffset="1293.7185807233554" a="2.489499368927456" b="-0.0017534660495829642" c="0.001403274406810557" d="-0.00018705793084302128" /> - <width sOffset="1297.9695673088095" a="2.4930341999144581" b="3.6227144608895825e-05" c="0.00078369286330959656" d="-0.000203152806420924" /> - <width sOffset="1301.3824229369416" a="2.4942103329652925" b="-0.0017132295084328693" c="0.00052664637557654358" d="-4.277499889795767e-05" /> - <width sOffset="1301.7010256310657" a="2.4937165687083276" b="-0.0013906735724815685" c="0.00048614634886462834" d="-4.6957050151034466e-05" /> - <width sOffset="1306.6337437653237" a="2.493049685424106" b="-2.2263476088367019e-05" c="-4.5735597218868728e-05" d="-1.1503298987395276e-06" /> - <width sOffset="1311.7141104436123" a="2.4916053003988532" b="-0.00057604116178809541" c="-5.0252056431745669e-05" d="6.7876518825564841e-07" /> - <width sOffset="1311.9079026518759" a="2.4914917858129897" b="-0.00059544160185289591" c="8.2987921197345466e-05" d="-3.2776261978601427e-06" /> - <width sOffset="1320.9322764108581" a="2.490467923340689" b="0.00010160347144828538" c="7.480658543927177e-05" d="-3.699916114318125e-06" /> - <width sOffset="1321.7271952561589" a="2.4905941013446817" b="0.00021351991423496954" c="6.3222246496321712e-05" d="-3.5975444140636353e-06" /> - <width sOffset="1331.7402800687055" a="2.4954591899953007" b="0.00039752978294179406" c="-3.8547508110348611e-05" d="-6.0941816963363234e-06" /> - <width sOffset="1335.1320118841957" a="2.4961262773466366" b="-7.4275395967104106e-05" c="-0.00014708420920584816" d="1.3387934745694436e-05" /> - <width sOffset="1341.7533648812523" a="2.4930724179283938" b="-0.00026119415734662116" c="0.00014778349994942931" d="7.9522507872059954e-06" /> - <width sOffset="1342.6287055763032" a="2.49296235253549" b="1.5807218356950203e-05" c="-0.00046697509266089979" d="0.00010444002624697119" /> - <width sOffset="1343.7788332117907" a="2.4925217143191167" b="-0.00064389691196075315" c="0.00075853318736852405" d="-0.00013137044392517772" /> - <width sOffset="1348.0047653414495" a="2.4934325441455343" b="-0.0012711155265178495" c="0.00073876769387464728" d="9.8976837465529713e-05" /> - <width sOffset="1348.7544740531637" a="2.4929365190808701" b="3.4993253968688617e-06" c="-4.8046038890339063e-05" d="3.1349345865251784e-06" /> - <width sOffset="1351.7664496937989" a="2.4925968463731358" b="-0.00020060731820145867" c="-2.0359282322965339e-05" d="2.607934668116811e-06" /> - <width sOffset="1361.7795345063455" a="2.4911650739862106" b="0.00017610344069633109" c="3.5222284805301178e-05" d="1.8033800592499824e-05" /> - <width sOffset="1363.0537797520437" a="2.4914839752264299" b="0.00035371159586949984" c="4.6207740021969742e-05" d="-3.413114075061436e-06" /> - <width sOffset="1368.4576852331884" a="2.494206157133477" b="0.00055410485233020786" c="-0.00011916454381658081" d="6.1160423325879766e-06" /> - <width sOffset="1371.7926193188923" a="2.4949555843996425" b="-3.6643015478158084e-05" c="-6.0909144525893541e-05" d="4.5854162029172446e-06" /> - <width sOffset="1380.9536317561087" a="2.4930335554923415" b="1.8595796383181346e-06" c="-9.0837823397783276e-05" d="5.8287212322558985e-06" /> - <width sOffset="1381.8057041314389" a="2.49297279505533" b="-0.00014024578747425529" c="-7.7860610475474835e-05" d="5.897674210085982e-06" /> - <width sOffset="1391.372316854955" a="2.4896689415813302" b="-1.070357224393771e-05" c="1.044537876810601e-05" d="-2.9451999433604274e-07" /> - <width sOffset="1391.8187889439855" a="2.4896662186770904" b="-1.5525585725627029e-06" c="1.6104882926305907e-05" d="-4.6235103323211619e-07" /> - <width sOffset="1401.8318737565321" a="2.4908012100718375" b="0.00018189802465473328" c="1.5101738866860347e-06" d="-2.1018906237681366e-07" /> - <width sOffset="1411.8449585690789" a="2.4925629680462187" b="0.00014891917933129901" c="-8.0328634018712931e-06" d="-1.8552943802923621e-07" /> - <width sOffset="1415.9200382307158" a="2.4930238745046829" b="7.420720459814698e-05" c="-0.00035817393400702194" d="3.6523019893944879e-05" /> - <width sOffset="1421.8580433816255" a="2.4884822907717652" b="-0.00031607547132053975" c="0.00029235111526231737" d="3.735337721422699e-05" /> - <width sOffset="1423.9022050477843" a="2.4893768612531897" b="0.001347404535080672" c="6.3663554778055923e-05" d="-4.3467590130937209e-05" /> - <width sOffset="1427.6515097890274" a="2.4930326667881006" b="-8.3163735468084685e-06" c="0.00017050840992957779" d="-1.2699880494090221e-05" /> - <width sOffset="1431.8711281941721" a="2.4950793521854404" b="0.00075227352108646122" c="1.2873072339101055e-05" d="-1.2249397554194077e-05" /> - <width sOffset="1437.3288667834508" a="2.4975771390600094" b="-0.00020182587778255334" c="-5.3402301318182388e-05" d="4.0903248194814798e-06" /> - <width sOffset="1441.8842130067187" a="2.4959362451055735" b="-0.00043372063091541005" c="5.4650331434743501e-06" d="4.1154216689173221e-06" /> - <width sOffset="1444.9032619546967" a="2.4947898796949648" b="-0.00028819026057493253" c="1.5263857151557976e-05" d="-2.6203813522448548e-07" /> - <width sOffset="1451.8972978192655" a="2.4934312721801835" b="-0.00011313232681756449" c="5.6476061540298308e-06" d="8.7448991800276674e-08" /> - <width sOffset="1460.901281333299" a="2.492934326717025" b="9.838498893330154e-06" c="-0.00016955221567510682" d="1.3369642222780952e-05" /> - <width sOffset="1461.9103826318121" a="2.4927853402260585" b="-0.00029150988744542196" c="-0.00014562969798977707" d="3.3874108292341451e-06" /> - <width sOffset="1462.9852847714139" a="2.4923079399644124" b="-0.00059284364347082048" c="-0.00039501057352654592" d="8.7810894463307175e-05" /> - <width sOffset="1465.9238600046588" a="2.489383043348913" b="-0.00063957988419401524" c="9.4270452551859719e-05" d="-3.0515092100969134e-07" /> - <width sOffset="1471.9234674443587" a="2.4888732076793199" b="0.00045863954558822938" c="8.609312701502227e-05" d="-2.3270763162310873e-07" /> - <width sOffset="1475.7224977041017" a="2.4918453841579904" b="0.0011027045848839817" c="-7.2546489636234816e-05" d="6.6282048549471871e-07" /> - <width sOffset="1481.9365522569055" a="2.4960553514653059" b="0.00027787228963906504" c="-6.6735571693335362e-05" d="3.643470262223531e-06" /> - <width sOffset="1483.8693809113997" a="2.4963694269166492" b="6.0729558600416568e-05" c="-2.6466856817530033e-05" d="5.8460476806431459e-07" /> - <width sOffset="1491.9496370694521" a="2.4954405185400894" b="-0.00025248092472422809" c="-1.2569579437458424e-05" d="6.1445342361734485e-07" /> - <width sOffset="1501.9627218819987" a="2.4922690247030621" b="-0.00031938271149164728" c="7.6687624195769704e-06" d="-8.0972054633269151e-08" /> - <width sOffset="1506.0184871585523" a="2.4910944266561081" b="-0.00026117309515223674" c="0.0002782471545788968" d="-3.0738686474182325e-05" /> - <width sOffset="1511.5187652879231" a="2.4929608048629497" b="9.8824500226290905e-06" c="0.00025754259749301745" d="-5.2108307776776704e-05" /> - <width sOffset="1511.9758066945453" a="2.4930141440361213" b="0.0002126434916575313" c="0.00017573089859392217" d="-4.8348676524429629e-05" /> - <width sOffset="1514.4249552917199" a="2.4938787505906781" b="0.00020339187528252992" c="-0.00010733129508641397" d="8.7339644415097874e-06" /> - <width sOffset="1521.4255070392123" a="2.4930390016137762" b="-1.5269518989678753e-05" c="-0.00012204192946019005" d="3.9412439516835946e-05" /> - <width sOffset="1521.9888915070921" a="2.4929987103526816" b="-0.00011525380565129855" c="-5.2069205643309909e-05" d="3.4341553884314487e-05" /> - <width sOffset="1523.6829792536773" a="2.4928209909932866" b="4.0004943363393212e-06" c="-4.3334416066055106e-05" d="1.0668541213041194e-06" /> - <width sOffset="1532.0019763196387" a="2.4904694934808482" b="-0.00049550006809872963" c="7.0825533580033239e-06" d="-8.0322109654630897e-06" /> - <width sOffset="1534.3200555375875" a="2.4892588924561823" b="-0.00059214727488236612" c="0.00038788517576037742" d="-3.2869613910263018e-05" /> - <width sOffset="1541.4588960690344" a="2.4928409310153654" b="-7.9453199423801853e-05" c="0.00015434070445796111" d="3.0231334673627965e-05" /> - <width sOffset="1541.708934169556" a="2.4928311865033894" b="3.3990168489964065e-06" c="-0.0004493679554206895" d="3.4872045109431592e-05" /> - <width sOffset="1545.1558092878827" a="2.4889320701664026" b="-0.0018514925598723609" c="0.0031831731439615858" d="-0.00058092875973992882" /> - <width sOffset="1548.3391308604737" a="2.4965551975285116" b="0.00075404700755430081" c="-0.00044418945318247554" d="3.7072343125016315e-05" /> - <width sOffset="1552.0281459447322" a="2.4951531383362546" b="-0.001009662277795205" c="-3.5423283584407655e-05" d="3.7686148385614395e-05" /> - <width sOffset="1555.3403977134708" a="2.4927897210534926" b="-3.9584116221884607e-06" c="2.7768089994316153e-05" d="2.3402479163702254e-05" /> - <width sOffset="1557.1042702317632" a="2.4929975613890294" b="0.00031243295741037675" c="-6.6195530141083619e-06" d="-2.7064261550880984e-08" /> - <width sOffset="1562.0412307572788" a="2.4943754316863318" b="0.00024509305478624503" c="-7.3493405411526333e-06" d="1.6332090240141251e-08" /> - <width sOffset="1572.0543155698253" a="2.4961091069084578" b="0.00010282637207738353" c="-5.091186923382552e-06" d="-1.4493729316007515e-07" /> - <width sOffset="1582.0674003823719" a="2.4964827572033634" b="-4.272565187501574e-05" c="-7.6804334596861142e-06" d="1.6524371602367234e-08" /> - <width sOffset="1592.0804851949188" a="2.4953014763478771" b="-0.0001915650220666316" c="-7.350824556401811e-06" d="-4.5553483482201632e-08" /> - <width sOffset="1599.1252748781512" a="2.4935711998354826" b="-0.00030191737798674994" c="1.162245585944472e-05" d="4.3157087894925069e-06" /> - <width sOffset="1602.0935700074654" a="2.4928902914681874" b="-0.00011884538979835225" c="5.5970716961902941e-05" d="-1.2646441901959705e-06" /> - <width sOffset="1603.1266184742312" a="2.4928258555442442" b="-7.2533067366826911e-06" c="-0.00012513198729606072" d="7.7815281157328931e-06" /> - <width sOffset="1609.4020955312517" a="2.4897755526174885" b="-0.00065843176758135721" c="0.00044416526179213414" d="-3.7221748621650641e-05" /> - <width sOffset="1612.106654820012" a="2.4905073408846716" b="0.00092731962177411659" c="0.00014299193895223576" d="-3.937331328478794e-05" /> - <width sOffset="1616.9320185161669" a="2.4938876731754007" b="-0.00044302475825798936" c="2.5997887975676918e-05" d="3.7319862088393749e-06" /> - <width sOffset="1621.4337371521306" a="2.4927606268395044" b="1.793696658462534e-05" c="0.00047600141214895823" d="-2.9128269131684718e-05" /> - <width sOffset="1622.5684645848978" a="2.4933513240500274" b="0.0009856834547840275" c="-0.0001865237258020366" d="8.4227783793300003e-06" /> - <width sOffset="1632.1328244451054" a="2.4930853750130542" b="-0.00027080564097418307" c="6.5550358950573469e-05" d="4.6846873488664407e-06" /> - <width sOffset="1633.8736038791862" a="2.4928373124552197" b="0" c="0.0003882726560807422" d="-7.5605764260785685e-05" /> - <width sOffset="1636.9124339769469" a="2.4943011597097327" b="0.00026524761613389258" c="-0.00026282488140957569" d="2.0383879099070002e-05" /> - <width sOffset="1642.145909257652" a="2.4914125929150837" b="-0.000810829115655936" c="3.8883441300911544e-05" d="2.5337574969280105e-05" /> - <width sOffset="1645.2496854663577" a="2.4900281350912907" b="0.00016280490213770363" c="0.00011510495056045119" d="-1.5746177305748325e-05" /> - <width sOffset="1649.0173482024302" a="2.4914333229623482" b="0.0003595938629554925" c="-9.3303802115124779e-05" d="5.6909269080782724e-06" /> - <width sOffset="1652.1589940701986" a="2.4918186001442768" b="-5.8153845582326188e-05" c="-4.3872995909903722e-05" d="3.0626408843364535e-06" /> - <width sOffset="1662.1720788827454" a="2.4899121911017632" b="-1.5563620336692374e-05" c="5.640633872337462e-05" d="-3.8319249259494894e-06" /> - <width sOffset="1663.3597361186144" a="2.4899668503324888" b="0.00010220404046896008" c="0.00034646818292214288" d="-4.1859515792690379e-05" /> - <width sOffset="1668.2615930555239" a="2.4938625159835199" b="0.00048145234054157687" c="-0.00015908258253644845" d="1.0310128466362456e-05" /> - <width sOffset="1672.185163695292" a="2.4939252887968637" b="-0.00029073623168107297" c="-3.709817430890769e-05" d="1.2200217648929693e-05" /> - <width sOffset="1676.2671353758565" a="2.492950171523491" b="1.6254490694522826e-05" c="-0.003002346814027973" d="0.00036313540533007224" /> - <width sOffset="1676.5041842584371" a="2.4927901533111152" b="-0.0013459353218214945" c="0.00073094412069042713" d="-9.6646060741469345e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="3" /> - </link> - <width sOffset="0" a="3.8465111972139874" b="0.0027939685202700497" c="-0.00031798093056624026" d="-3.8811225744249592e-05" /> - <width sOffset="4.3588032847111116" a="3.8494340854777143" b="-0.0021902068994306399" c="-0.00023764124678499313" d="1.8177497963166743e-05" /> - <width sOffset="10.013084812546658" a="3.8327384257742354" b="-0.003134135036464614" c="7.6258263866057761e-05" d="1.7403289949299422e-05" /> - <width sOffset="15.631145577476779" a="3.8206235368467256" b="-0.00062940832508964956" c="0.0011782638394554658" d="-9.8557317569960521e-05" /> - <width sOffset="20.026169625093317" a="3.8322498396139686" b="0.0040163181633744265" c="-0.00010960001297310426" d="-9.7146697852675286e-05" /> - <width sOffset="22.072164124463363" a="3.8391763739033609" b="0.0023478406372340445" c="-0.00053581289213648891" d="-0.0001054312596571004" /> - <width sOffset="23.280788179340259" a="3.8410451885961185" b="0.00059061480690700263" c="0.00010171290964879415" d="-4.0528177296106377e-06" /> - <width sOffset="30.039254437639975" a="3.8484316384397266" b="0.0014101013036226491" c="2.5759809287832232e-05" d="-4.2609235882580416e-06" /> - <width sOffset="36.754679581533907" a="3.8577723568422297" b="0.0011796136650570857" c="-0.0018252286816123479" d="0.00016599192018640246" /> - <width sOffset="40.052339250186634" a="3.8477663328539329" b="-0.0054430854204711035" c="-0.00018299919258254866" d="0.00016706943541659817" /> - <width sOffset="41.439403181111864" a="3.840310192373499" b="-0.0049864506886757119" c="0.00064048796415186731" d="0.00016895271144910581" /> - <width sOffset="43.051067682831594" a="3.8346446265253804" b="-0.0016054022778598754" c="0.0010751344928882065" d="-6.8399611732330569e-05" /> - <width sOffset="50.065424062733292" a="3.8526759523230436" b="0.0033813227096664705" c="-0.00035113436789155209" d="-7.204544048612104e-05" /> - <width sOffset="53.775614044461584" a="3.85670820640645" b="-0.0021994543479879145" c="-0.001494020517958903" d="0.00024053399496448815" /> - <width sOffset="57.055719416312172" a="3.8419081352145499" b="-0.0042367621992440031" c="-0.0007577561856473657" d="6.4961382487035754e-05" /> - <width sOffset="57.594768315716053" a="3.8394143043082853" b="-0.0049970692641184318" c="-0.00025550854442197278" d="5.2798812612651341e-05" /> - <width sOffset="60.078508875279951" a="3.8262356463005696" b="-0.0052891607098816146" c="0.000144197593654694" d="5.6265875504131314e-05" /> - <width sOffset="69.018270773964133" a="3.8306756973778322" b="0.010779218975332992" c="0.0010903386323265587" d="-0.0012728577699566274" /> - <width sOffset="69.689808352662041" a="3.8380205798369218" b="0.010521591500730371" c="-0.0084212409529038738" d="0.0011836947601973978" /> - <width sOffset="70.091593687826617" a="3.8409653231989256" b="0.0043277859674096825" c="-0.0069908297314013228" d="0.0011838943642582553" /> - <width sOffset="74.245886994281932" a="3.8231752215464185" b="0.0075393614303728975" c="-0.00042758662331358449" d="-1.8953021594628415e-05" /> - <width sOffset="78.610003127765864" a="3.8463589504450417" b="0.0027243762021440061" c="-0.00234669699206832" d="0.00016204992484880715" /> - <width sOffset="78.674208190907606" a="3.8465242383153275" b="0.002425040595437833" c="-0.0017485061208059554" d="0.00018072427579618946" /> - <width sOffset="80.104678500373268" a="3.8469443112345756" b="-0.0014679129847978917" c="-0.0009614232499825481" d="0.00017734742253708186" /> - <width sOffset="82.887442031568455" a="3.839236088578891" b="-0.0026987256230740549" c="-0.0010702238960470956" d="0.00012262116274432223" /> - <width sOffset="89.84972195457344" a="3.8099522766275236" b="0.0002304502615259014" c="7.2118785661550645e-06" d="3.0998334660758429e-07" /> - <width sOffset="90.117763312919919" a="3.8100145709440874" b="0.00023438323833355949" c="7.1649124268733831e-06" d="8.1437558272412416e-08" /> - <width sOffset="100.13084812546658" a="3.8131615953435927" b="0.0004023642349651856" c="-1.6036117197621433e-05" d="3.312714343731726e-06" /> - <width sOffset="104.88612457423636" a="3.8150685435995815" b="0.00047457968488899007" c="5.0562364603567561e-05" d="-9.2220648915705148e-06" /> - <width sOffset="107.86038655420312" a="3.8166847125189092" b="0.00053060948121616319" c="-0.00011682196624906103" d="1.4770664104487596e-05" /> - <width sOffset="110.14393293801325" a="3.8174630912109855" b="0.00022814133404245479" c="-3.1599460480763506e-05" d="9.1530499719582242e-06" /> - <width sOffset="118.76624855428869" a="3.822948247552258" b="0.0017246523000420131" c="0.0016470728774274895" d="-0.00022114580353902296" /> - <width sOffset="119.002760162816" a="3.8234453556354531" b="0.0024666448212272022" c="0.0013905332849287087" d="-0.00023344668914861898" /> - <width sOffset="120.1570177505599" a="3.8277861201149959" b="0.0047436415308436891" c="0.00059397088071640343" d="-0.00022709878518212403" /> - <width sOffset="123.98424188877459" a="3.8419102570590833" b="-0.00068922597114224574" c="6.9114884967735922e-06" d="3.9626537772601413e-06" /> - <width sOffset="129.78663090664841" a="3.8389179109930813" b="-0.0002087791477855111" c="0.0010560849850779514" d="-0.00012199668202937554" /> - <width sOffset="130.17010256310655" a="3.8389862685877993" b="0.00054735914597949669" c="0.00091649684964483435" d="-0.00012275149929613245" /> - <width sOffset="135.49286952889125" a="3.849354387679357" b="-0.00012937306579961135" c="-0.00057660172645083801" d="4.2394221471491524e-05" /> - <width sOffset="138.71232008195562" a="3.8443761398164771" b="-0.0025238238119356352" c="0.00048760511583557952" d="-5.1651738617602807e-05" /> - <width sOffset="140.18318737565323" a="3.8415544759806819" b="-0.0014246569317323374" c="0.00024723045580940474" d="-4.7938929032604685e-05" /> - <width sOffset="143.86261113720616" a="3.8372716408071144" b="-0.0015523402661825382" c="-7.622477192656868e-05" d="5.2646490484896165e-05" /> - <width sOffset="145.48519952127626" a="3.8347770500915033" b="-0.0013838811801992828" c="-9.4060162360772481e-05" d="5.5178676938923549e-06" /> - <width sOffset="150.19627218819988" a="3.8267468347560811" b="-0.001902735628663652" c="-1.3326211068904461e-05" d="4.8517066433278942e-06" /> - <width sOffset="156.88559155352488" a="3.8148747670450365" b="-0.0014297243342649472" c="0.0004108417242247004" d="-3.1427238359846559e-05" /> - <width sOffset="160.20935700074654" a="3.8135074609899009" b="0.00025978932203046465" c="0.00013904796347109595" d="-4.092247087490985e-05" /> - <width sOffset="160.31856064153411" a="3.8135374358438052" b="0.00028869435493364057" c="-0.00030208511446873175" d="-4.4405080583215569e-05" /> - <width sOffset="161.6795441893255" a="3.8132588574952075" b="-0.00078032281079640437" c="-0.00071369444009148698" d="7.6720326890842747e-05" /> - <width sOffset="168.73294251448587" a="3.799170224155259" b="0.00060234213439122608" c="0.022057506656472187" d="-0.0048550855586962753" /> - <width sOffset="170.22244181329319" a="3.8329601866028806" b="0.033997026200119011" c="0.00036305883846521358" d="-0.0048552956098811394" /> - <width sOffset="170.98913409052579" a="3.8570506968793294" b="0.025991658418149446" c="0.013415276586921149" d="-0.0058638876032902814" /> - <width sOffset="173.24537094822139" a="3.9166355788365603" b="-0.0030244610001557769" c="0.00020071563538850219" d="1.1152995120249896e-05" /> - <width sOffset="178.12516424543182" a="3.9079523243422605" b="-0.00026882121412293919" c="0.0003288921093735823" d="-1.5376508648039524e-05" /> - <width sOffset="180.15215837659738" a="3.9086306855363295" b="0.00087497091337111418" c="-0.0015300535343794539" d="0.00012455166703182743" /> - <width sOffset="180.23552662583984" a="3.9086930682211651" b="0.00062245214582519969" c="-0.0014967099436180035" d="0.00012550201698628458" /> - <width sOffset="188.72609762298814" a="3.8828982456305505" b="0.0023488524217537693" c="4.9969392640573506e-05" d="-2.2999799212735002e-05" /> - <width sOffset="190.24861143838652" a="3.8865090650746508" b="0.0023410666653943717" c="-5.0271759737886026e-05" d="-2.0630746594238744e-05" /> - <width sOffset="193.64909612995243" a="3.8930773014891198" b="0.0012834916693556986" c="-0.00045264292540199213" d="1.610897248533031e-05" /> - <width sOffset="200.26169625093317" a="3.8864298772673416" b="-0.0025896356501945291" c="-0.00012965957036613476" d="1.4995061643801645e-05" /> - <width sOffset="202.75859312544415" a="3.8793888887464769" b="-0.0029566689365590599" c="5.5887819310339301e-05" d="2.3318085919422015e-05" /> - <width sOffset="209.57205771512196" a="3.869213819023563" b="0.001052417893410572" c="0.00074693903211418811" d="1.3210400483695174e-06" /> - <width sOffset="210.3111477763" a="3.870400202496179" b="0.0021586931939968595" c="0.0002274176506876636" d="-2.0395424965821468e-05" /> - <width sOffset="220.2878658760265" a="3.8943195669033024" b="0.00060628677705223954" c="-0.00038227889040120172" d="-2.0490784612501108e-05" /> - <width sOffset="220.52449657735457" a="3.8944413561091524" b="0.00042192684473755295" c="-0.00035539900674173559" d="2.5654566411239148e-05" /> - <width sOffset="225.71604841438895" a="3.8906427067256422" b="-0.0011938760671167444" c="-0.00030026615287292644" d="9.8337349793032576e-06" /> - <width sOffset="229.53669335743629" a="3.8822466859770763" b="-0.0030576580257929333" c="0.00013689652006532681" d="8.0639094098558486e-07" /> - <width sOffset="230.30095068857315" a="3.8799901681714646" b="-0.0028469966747736121" c="0.00013494888841909412" d="-1.4146651909179765e-07" /> - <width sOffset="240.3140355011198" a="3.8648711540060057" b="-0.00018703843673858241" c="0.00013408102454665185" d="-2.3101105643195914e-07" /> - <width sOffset="248.08942272730371" a="3.8714143545861512" b="0.0018561268729882989" c="-6.894429973571209e-05" d="-1.0008242411304402e-05" /> - <width sOffset="249.15779500149029" a="3.8733064900603562" b="0.0016745397127560773" c="9.9875030582608523e-05" d="-1.6670655791633586e-06" /> - <width sOffset="250.32712031366646" a="3.8753984676503404" b="0.0019012742706301536" c="9.325033045686042e-05" d="-1.0380924859209736e-06" /> - <width sOffset="257.59853151962136" a="3.893754769071526" b="0.0030927347634107879" c="0.00024657444309894854" d="-6.6882453599633685e-05" /> - <width sOffset="260.34020512621311" a="3.9027091329386114" b="0.0029365671508749663" c="-0.00030132013908360113" d="-6.6957111109514536e-05" /> - <width sOffset="260.41775151113143" a="3.9029350099106184" b="0.0028886266478215759" c="-0.00038522290356209749" d="1.3923011923948632e-05" /> - <width sOffset="266.30364290459931" a="3.9094306288393215" b="-0.00019909902211668294" c="-0.0001446632454662843" d="1.7027567715813448e-05" /> - <width sOffset="270.35328993875976" a="3.9073827705018469" b="-0.00053303118992429569" c="4.2354435618497764e-05" d="2.3296900895363682e-05" /> - <width sOffset="272.76050706193485" a="3.9066700502041787" b="7.5876710350478421e-05" c="8.5749994690838968e-05" d="-1.3998584739413356e-06" /> - <width sOffset="280.36637475130647" a="3.9115918003321264" b="0.0011373407619386902" c="5.1110377242253742e-05" d="-9.3739921306818357e-06" /> - <width sOffset="282.17931163238711" a="3.9137658575131971" b="0.0012302309092781958" c="-6.9216041860941359e-05" d="-7.5251552725013782e-07" /> - <width sOffset="290.37945956385312" a="3.9187847429422638" b="-5.6735564888228457e-05" c="-0.00013955509448992381" d="4.8529520977540357e-06" /> - <width sOffset="295.26280238215168" a="3.9157448502949204" b="-0.0010725407158737584" c="-0.0011869643833437083" d="0.0001694731140360927" /> - <width sOffset="299.13508800824377" a="3.9036337931052474" b="-0.0026415283382181503" c="4.2498348524513671e-05" d="8.0287880537212737e-05" /> - <width sOffset="300.39254437639977" a="3.9005390199545786" b="-0.002153795948851745" c="0.00019643722388991474" d="-3.4474223909226428e-06" /> - <width sOffset="304.355851351669" a="3.8948738437648105" b="-0.00075916819640556125" c="0.00019527161603347706" d="-1.0005246054205734e-05" /> - <width sOffset="310.40562918894642" a="3.8952125803550555" b="0.0005049612232477154" c="4.0547004790731346e-06" d="-1.0113154190916907e-05" /> - <width sOffset="315.56139784674457" a="3.8965378137547853" b="-0.00025971067233010112" c="-0.00034064300913298068" d="3.210874002882494e-05" /> - <width sOffset="320.41871400149307" a="3.8909190489029601" b="-0.0012962576328397757" c="0.00019650293973689804" d="1.9472675947464457e-05" /> - <width sOffset="321.06879147561904" a="3.8901647728955133" b="-0.0010160858626294999" c="0.00025850085142542549" d="2.6678951213470486e-05" /> - <width sOffset="322.81962147975139" a="3.8893213753100904" b="0.00013444165853807337" c="0.00048806094520407702" d="-4.014708031308584e-05" /> - <width sOffset="330.38205568789829" a="3.9008869267168276" b="0.00062821514484226113" c="-0.00015619083563248997" d="5.9888166722006626e-06" /> - <width sOffset="330.43179881403972" a="3.9009177903638843" b="0.00061272075975803099" c="-0.00016781677212169074" d="6.0665433713882767e-06" /> - <width sOffset="340.44488362658637" a="3.8963177807530087" b="-0.00092327748229969033" c="6.3039761734448878e-05" d="2.9457637036024962e-06" /> - <width sOffset="345.65243827491054" a="3.8936353203213496" b="-2.7056286481370873e-05" c="0.00012075966613161662" d="-9.8209777058791791e-06" /> - <width sOffset="350.24323577507016" a="3.8951059622863973" b="0.00046076632070896593" c="0.00023964444043798744" d="-1.5902171110616285e-05" /> - <width sOffset="350.45796843913303" a="3.8952157964462102" b="0.0005614855460410401" c="0.00022365911610779281" d="-1.5958520394649883e-05" /> - <width sOffset="355.64066164470182" a="3.9019117911890953" b="0.0015938463484790168" c="-1.1260519436429427e-05" d="-2.1346863979090025e-05" /> - <width sOffset="360.47105325167968" a="3.9069420355053479" b="-9.1779243938765187e-06" c="-0.00031801501802275814" d="-2.1638782462910906e-05" /> - <width sOffset="361.03686311663284" a="3.9068311133382361" b="-0.00038983236479975952" c="-0.00098093487196126311" d="9.5756315002701518e-05" /> - <width sOffset="369.20784335058454" a="3.8903921690806307" b="0.0027592562887308264" c="0.00043742909315439628" d="-4.0981803738443604e-05" /> - <width sOffset="370.48413806422639" a="3.894541133018766" b="0.0036755639201983235" c="0.00025396225062065432" d="-5.6605831627448001e-05" /> - <width sOffset="375.68123439115999" a="3.9125569580205846" b="0.0017285581692112043" c="-0.00080532292133705854" d="0.00011251339971815571" /> - <width sOffset="375.71805691015294" a="3.9126195215684616" b="0.00166970780210635" c="-0.00068291609395861562" d="0.00011491845961179967" /> - <width sOffset="378.89411555854804" a="3.9147155576346364" b="0.00080941233609615072" c="5.0156726073692352e-05" d="-4.3767839999685858e-06" /> - <width sOffset="380.49722287677304" a="3.9161240009477294" b="0.00093648117687004278" c="3.7402576486465151e-05" d="-1.6043257630409176e-06" /> - <width sOffset="390.51030768931969" a="3.927640486865946" b="0.0012029534269378897" c="-9.4014366999790758e-06" d="-1.8133982725890087e-06" /> - <width sOffset="391.48573007784478" a="3.9288032466343759" b="0.0011794366162323116" c="9.4113372705065064e-05" d="-8.1824953564367172e-06" /> - <width sOffset="400.52339250186634" a="3.9411094761145247" b="0.00087554388830270722" c="-0.00013948467252124385" d="-8.4469786616010116e-06" /> - <width sOffset="406.26130630273599" a="3.9399451814014985" b="-0.00155947439495932" c="-0.00017243928207048983" d="-6.988941635613426e-06" /> - <width sOffset="406.51589535420135" a="3.9395368642146464" b="-0.0016486356784853303" c="-0.0067369443923574251" d="0.0012304063074701031" /> - <width sOffset="410.29463896187679" a="3.9034991050404333" b="0.00014355108281306257" c="0.00092129674275732813" d="-0.00019549342582598708" /> - <width sOffset="410.53647731441299" a="3.9035849388845927" b="0.00055486009413106905" c="0.00077870441464405831" d="-0.00019533297968261259" /> - <width sOffset="413.45810784105481" a="3.9069816237050938" b="0.00010299031700443644" c="-0.00042092561810133915" d="2.6589551895732032e-05" /> - <width sOffset="420.54956212695964" a="3.8960265336009789" b="-0.0018554953392025636" c="0.00014917099641643109" d="2.848067807429373e-05" /> - <width sOffset="421.81450541297306" a="3.8939757682284206" b="-0.0013413954187088608" c="-6.3874710244127243e-05" d="1.0035194646964643e-05" /> - <width sOffset="430.56264693950629" a="3.884071234573224" b="-0.00015498568712267463" c="0.00019936592747026079" d="1.0072964588752108e-05" /> - <width sOffset="431.08944888521688" a="3.8840463885512797" b="6.3453386039121531e-05" c="0.00012502899340870906" d="5.4359589892563201e-09" /> - <width sOffset="438.53953143989554" a="3.8914609448260293" b="0.0019273111792871772" c="0.0007475275098112633" d="-8.4674474132669022e-05" /> - <width sOffset="440.575731752053" a="3.8977698205187328" b="0.0039183331904045077" c="0.00024337751339550094" d="-8.2058958063780171e-05" /> - <width sOffset="444.37604382750328" a="3.9116718094093739" b="0.002212776233439075" c="0.00017838537794276593" d="-0.00033922172479665657" /> - <width sOffset="445.56173860067054" a="3.9139808130166305" b="0.0012050903830617677" c="-0.00051046796019496717" d="-0.00021197299085543589" /> - <width sOffset="446.77087055368463" a="3.9143169066374623" b="-0.00095906944889914551" c="-0.00036028373313727168" d="4.5461693434849937e-05" /> - <width sOffset="450.58881656459965" a="3.90793356323785" b="-0.001722111130812401" c="0.00016053365261631025" d="4.5187992604291133e-05" /> - <width sOffset="451.33801565888018" a="3.9067524692392022" b="-0.0014054758330010128" c="-1.3761140710523073e-05" d="2.0169807138818296e-06" /> - <width sOffset="460.60190137714631" a="3.8941548720369124" b="-0.0011411497980556781" c="3.7749171276354028e-05" d="1.8060638670669373e-06" /> - <width sOffset="462.57692534850588" a="3.8920622367093456" b="-0.00097090391506754676" c="0.0013090528091722225" d="-0.00020747899225671807" /> - <width sOffset="464.87503404005702" a="3.8942263247195488" b="0.0017585087416859843" c="0.0012426643122586574" d="-0.00014313079997946808" /> - <width sOffset="470.61498618969296" a="3.9181940959582207" b="0.0018769629601111993" c="-0.0012238418492484819" d="-0.00014299060513406472" /> - <width sOffset="471.04177910774786" a="3.9187611287072146" b="0.00075417073423812556" c="-0.00023363612388216197" d="1.3437628704819729e-05" /> - <width sOffset="477.36061661345894" a="3.9175883255438309" b="-0.00058884554813532311" c="-7.9669467373442301e-05" d="6.3516994820684506e-06" /> - <width sOffset="479.30773183297862" a="3.9161866162794161" b="-0.00082685402475216703" c="-5.1051585851947395e-05" d="7.4342204318291639e-06" /> - <width sOffset="480.62807100223961" a="3.9150230021749284" b="-0.00092278471209757064" c="-1.4716400051504487e-05" d="8.548646919277816e-06" /> - <width sOffset="485.05725967845029" a="3.9113899091014019" b="-0.00055003344881694391" c="9.288525077155765e-07" d="1.531987299509706e-06" /> - <width sOffset="490.64115581478626" a="3.908614268086481" b="-0.00039635860266070311" c="2.1491128458301282e-05" d="1.1465770482786043e-06" /> - <width sOffset="500.65424062733291" a="3.9079513202187934" b="0.00037890024943264483" c="5.4694256771722511e-05" d="1.0338961756216571e-06" /> - <width sOffset="504.30567301351783" a="3.9101144197260509" b="0.00081967969477924393" c="0.00014160668485447187" d="-1.2347283306407451e-05" /> - <width sOffset="510.66732543987956" a="3.9178809156965686" b="0.0011222780241498954" c="-9.205883940884711e-05" d="-1.3049993821391328e-05" /> - <width sOffset="512.38847785053326" a="3.9194732775041983" b="0.00068940687826990867" c="1.4716786946666952e-05" d="-5.2908983978686641e-06" /> - <width sOffset="520.68041025242621" a="3.9231852084255543" b="-0.00015787721651461901" c="-0.00011291302134021101" d="-5.5505520714330119e-06" /> - <width sOffset="527.38349122155864" a="3.9153819116935136" b="-0.0024197879344640041" c="-0.00095436260599080208" d="0.00015667898080304042" /> - <width sOffset="530.69349506497292" a="3.9025982225181939" b="-0.0035878920180704688" c="0.0005963869539076501" d="0.00015872656262327263" /> - <width sOffset="531.29267954483498" a="3.900696674694081" b="-0.0027022414011397141" c="0.00034487683818434543" d="-3.4961588117750923e-05" /> - <width sOffset="532.08826600446105" a="3.8987474948143745" b="-0.0022198703469890899" c="0.00016346026655879417" d="-3.0299161199426419e-05" /> - <width sOffset="537.86620731169944" a="3.8855337355290493" b="-0.0033655193480913027" c="-6.370578847015531e-05" d="8.9824968580942521e-06" /> - <width sOffset="540.70657987751952" a="3.8756662832647919" b="-0.0035100109865096409" c="2.4138717862687993e-05" d="1.0021286877325358e-05" /> - <width sOffset="545.89705051474198" a="3.8594993357679539" b="-0.0024494783425046164" c="0.00019936321606887119" d="5.2781913616167044e-06" /> - <width sOffset="548.94264008897028" a="3.8540375540960126" b="-0.0010882458513828761" c="7.2011889631093509e-05" d="-8.3828652584965729e-07" /> - <width sOffset="550.71966469006622" a="3.8523264107150039" b="-0.00084025351739358165" c="6.8957421403034941e-05" d="-7.3405079046301827e-07" /> - <width sOffset="560.73274950261293" a="3.8500897447890594" b="0.00031990759133871229" c="4.5841227246062493e-05" d="-7.8999608449988067e-07" /> - <width sOffset="570.74583431515953" a="3.8570960324546206" b="0.0010003123358283475" c="2.1171960383299794e-05" d="-7.425380502801832e-07" /> - <width sOffset="580.75891912770624" a="3.868489528340942" b="0.0012009608510092761" c="-1.674352041553407e-05" d="5.4545700859187826e-06" /> - <width sOffset="582.40384439680076" a="3.8704439921486578" b="0.0011901537572403596" c="0.00029108507606946893" d="-3.745576597108019e-05" /> - <width sOffset="589.68264510512211" a="3.8800844895297661" b="-0.00052567076778307377" c="-0.00032950789581171158" d="2.946928862130385e-05" /> - <width sOffset="590.77200394025283" a="3.8791589138109135" b="-0.0011386615922590426" c="-0.00023593572785781078" d="2.5704759956347295e-05" /> - <width sOffset="596.33179464683087" a="3.8699527454076694" b="-0.0013784675922773686" c="4.4840739819173963e-06" d="5.0690741947584753e-07" /> - <width sOffset="600.78508875279954" a="3.8639477197139982" b="-0.0013083710889441973" c="1.4128995752516806e-05" d="9.6637670079542931e-07" /> - <width sOffset="606.55452360946276" a="3.8570550475029246" b="-0.001048836905677983" c="3.3131791648004276e-05" d="1.0459721182862536e-06" /> - <width sOffset="610.79817356534613" a="3.8532807421653326" b="-0.00071112808286941619" c="4.6586615174483745e-05" d="1.035752360587362e-06" /> - <width sOffset="616.26560989994607" a="3.8509545823941034" b="-0.00010882457669169353" c="0.022544543212158846" d="-0.018722518812989232" /> - <width sOffset="617.06808186437752" a="3.8557100012547281" b="-9.5826880967134082e-05" c="-5.9518446463302731e-05" d="7.2799866527346827e-07" /> - <width sOffset="620.81125837789284" a="3.8545555506945872" b="-0.00051080220593789215" c="-5.1621012038076278e-05" d="7.0316694387219993e-07" /> - <width sOffset="622.98283506923758" a="3.8532100738372783" b="-0.00072505231030179729" c="3.6728850475572899e-05" d="-2.2999002354965929e-06" /> - <width sOffset="630.82434319043944" a="3.8486740603804899" b="-0.00057329057073931058" c="-2.2518220197511074e-05" d="-5.2174236947613488e-07" /> - <width sOffset="632.71245744626231" a="3.8475078334889981" b="-0.00066390451208252622" c="-0.00053322190231099595" d="0.00012069039105067005" /> - <width sOffset="636.67252717074166" a="3.844011823190439" b="0.0007909589172097962" c="0.0013759924016030476" d="-0.0001584634718691986" /> - <width sOffset="640.83742800298614" a="3.8597262448198451" b="0.0040063909118693659" c="-0.00060368892191507066" d="-0.00015844398332038351" /> - <width sOffset="641.68206314642782" a="3.8625840329815784" b="0.0026474912879963812" c="-0.00029923003034909286" d="8.3122452545766412e-06" /> - <width sOffset="642.97990417804147" a="3.8655342065014509" b="0.0019127884872903803" c="-0.0002181374925082966" d="1.1928341192971359e-05" /> - <width sOffset="648.03348242963989" a="3.871169185627938" b="0.00062194001626450599" c="-0.00032980962348336273" d="4.8669875596917553e-05" /> - <width sOffset="650.85051281553285" a="3.871391967320438" b="-7.7544662143137115e-05" c="8.7302443297312499e-05" d="4.6310118527122987e-05" /> - <width sOffset="652.61479134897604" a="3.871781219539348" b="0.00066295255576340835" c="0.0017885293441031232" d="-0.00023487799853972577" /> - <width sOffset="657.49591409878622" a="3.8903145064056979" b="0.0013348569764583774" c="-0.00049395685308476454" d="5.0598877747571057e-05" /> - <width sOffset="660.86359762807945" a="3.8911403408183265" b="-0.00027055374429300547" c="1.7132976023666474e-05" d="5.0515161939447447e-05" /> - <width sOffset="661.47833899370039" a="3.890992230342222" b="-0.00019221895432532229" c="-3.0396746729732686e-05" d="6.9047709840607366e-07" /> - <width sOffset="670.87668244062615" a="3.8870739767019651" b="-0.00058060992126039951" c="-1.280808071733846e-05" d="5.8145233186790198e-07" /> - <width sOffset="680.88976725317275" a="3.880559856004191" b="-0.00066221422837626684" c="2.0891406495198288e-06" d="1.0452948382211629e-06" /> - <width sOffset="684.43388976987865" a="3.8782856623550193" b="-0.00060801665549093471" c="-0.00011785735257830884" d="8.9001229485084488e-07" /> - <width sOffset="688.94542160154492" a="3.8732254442719505" b="-0.0016171053352720605" c="-0.0025395368815844606" d="0.00053330763966576969" /> - <width sOffset="690.90285206571946" a="3.8643295377849238" b="-0.0054288799522498642" c="0.00059295409069967686" d="0.00053156495300648525" /> - <width sOffset="692.40397113246479" a="3.8593143306849789" b="-5.5271429926170185e-05" c="0.00063506571187758496" d="-0.00013695947599097003" /> - <width sOffset="693.05011926205907" a="3.8595068140105688" b="0.00059387682748508579" c="0.00053728479793782558" d="-0.00014485787470661749" /> - <width sOffset="695.27331095370232" a="3.861890947226243" b="0.00083493555804185977" c="-0.0012403870240708598" d="0.00011375829007868653" /> - <width sOffset="700.91593687826605" a="3.8475466678238401" b="-0.0022972162253832862" c="0.00069771139202333865" d="0.00011107741545685282" /> - <width sOffset="703.0165715660271" a="3.846829444071231" b="0.0021044999130040531" c="0.0015057753317402867" d="-0.00028419037628617315" /> - <width sOffset="706.64161097020565" a="3.8607078148936957" b="0.001817928681550246" c="-0.0059699718360164316" d="0.0024995967304261811" /> - <width sOffset="708.19894891301419" a="3.858500974591089" b="0.0014102282260577824" c="-9.6817812326102954e-05" d="-7.838081092947336e-06" /> - <width sOffset="710.92902169081276" a="3.8614698987143572" b="0.00070633023074652933" c="-0.00015928595833551181" d="-6.8861201661771744e-06" /> - <width sOffset="712.91545209188735" a="3.8621904719316094" b="-8.0066526927709726e-06" c="-3.53163870052824e-05" d="2.2205444468973601e-06" /> - <width sOffset="713.24214724039552" a="3.8621841643150514" b="-3.0371043014744704e-05" c="0.0018435617166647192" d="-0.00037581819050166006" /> - <width sOffset="716.57667807441339" a="3.8686474315807855" b="-0.00027181975005746126" c="-0.00017423436030110877" d="4.85776156487332e-06" /> - <width sOffset="720.94210650335935" a="3.864544569763992" b="-0.0015153124278471778" c="-0.00011093477140432916" d="4.6876969564653332e-06" /> - <width sOffset="729.72620677678401" a="3.8458513901199769" b="-0.0023791227750770585" c="0.00021634245603672678" d="-4.2099468295499036e-06" /> - <width sOffset="730.95519131590606" a="3.8432464345427642" b="-0.0018664358567572039" c="0.00020076278024546939" d="-4.4736787847730499e-06" /> - <width sOffset="738.72101168523727" a="3.8387644174360909" b="0.00044234411545155793" c="-0.00051589281189343941" d="0.0001125912453221956" /> - <width sOffset="740.96827612845277" a="3.8384309336535365" b="-0.00017052696047972207" c="0.00023762588727245634" d="0.00011285939383033363" /> - <width sOffset="743.30981652130299" a="3.8407834100359377" b="0.0027986545835015945" c="0.001298806699452589" d="-0.00025518679039991248" /> - <width sOffset="746.70184453255752" a="3.8552609292979136" b="0.0028014061134831879" c="-0.00015192475222671869" d="-6.9532403204532807e-06" /> - <width sOffset="747.75898502800351" a="3.8580444116613037" b="0.002456882799516967" c="-6.969671446804685e-05" d="9.7366273017981176e-07" /> - <width sOffset="750.98136094099937" a="3.865270280342076" b="0.0020380354558154224" c="-6.3029453993193919e-05" d="8.8201830767336674e-07" /> - <width sOffset="756.85730152818041" a="3.8752483989161521" b="0.0013886802877282837" c="-0.00026818213472296136" d="6.2691637794272926e-06" /> - <width sOffset="760.99444575354607" a="3.8768473012709066" b="-0.00050842773881892259" c="-0.00019248257815822554" d="6.0544283243241873e-06" /> - <width sOffset="771.00753056609267" a="3.8585359342143573" b="-0.0025420316282331124" c="-1.1288940005226775e-05" d="6.0151937205099652e-06" /> - <width sOffset="781.02061537863938" a="3.8379893426530027" b="-0.00095882218895034063" c="0.00016929072082840884" d="6.0311243886675785e-06" /> - <width sOffset="783.59825707635036" a="3.8367459420424526" b="3.4136107547077946e-05" c="6.9223108581650938e-05" d="2.1331934751657731e-06" /> - <width sOffset="786.45159326597172" a="3.8374564808520795" b="0.00048127206874861079" c="8.6317765359788357e-05" d="-5.1620034288739216e-07" /> - <width sOffset="787.99138722105045" a="3.8384003125681461" b="0.00074342353589066821" c="0.00018347518441091517" d="-1.0335079120352265e-05" /> - <width sOffset="791.03370019118597" a="3.8420692032985411" b="0.001572827212621629" c="8.9559422605924906e-05" d="-1.0367357954700139e-05" /> - <width sOffset="800.50107011179875" a="3.8561896129363715" b="0.0004808986983417334" c="-0.00012619000035498406" d="1.0475703259398855e-06" /> - <width sOffset="801.26808721476436" a="3.8564847036767791" b="0.00028916782610237737" c="-0.00014844665675886189" d="5.5553286507068722e-06" /> - <width sOffset="809.63747104706863" a="3.8517634721701164" b="-0.0010282508581607426" c="-0.00010137674448696647" d="9.8013893112915002e-06" /> - <width sOffset="811.05986981627939" a="3.8501239887997487" b="-0.001257156121887409" c="-6.2884668167692049e-05" d="7.5844880713442397e-06" /> - <width sOffset="821.26541380601475" a="3.8388062424697371" b="-0.00017085614281389661" c="0.0001826972528249893" d="4.1016510629153281e-08" /> - <width sOffset="821.73202722105839" a="3.8387663011904367" b="-3.3137335836951054e-07" c="-3.9065470469407538e-05" d="6.378385003315411e-06" /> - <width sOffset="831.08603944137269" a="3.840565477763759" b="0.00094310992956645086" c="0.00013922835810028578" d="6.4789845606345344e-06" /> - <width sOffset="834.99688618925825" a="3.8467708377378953" b="0.0023293942811861727" c="0.00026889097214405621" d="1.1673818482629503e-05" /> - <width sOffset="836.20794510625876" a="3.8500069793065106" b="0.003032044597661019" c="0.00077338858483370747" d="-0.00012935402716001399" /> - <width sOffset="840.37643810796396" a="3.8667151776972788" b="0.0027366781008467101" c="-0.0019920888336921083" d="0.00024802189542912881" /> - <width sOffset="841.09912425391929" a="3.8677461319788078" b="0.00024597520150040561" c="-0.0014544240069088571" d="0.00024807190465178772" /> - <width sOffset="844.64214005359281" a="3.8613933802871445" b="-0.00071800846963370997" c="0.00056316825886851263" d="-7.1664012220185933e-05" /> - <width sOffset="850.70486904677682" a="3.8617704619803908" b="-0.0017917295131552598" c="-0.0023232615530516766" d="0.0007596408837186291" /> - <width sOffset="851.11220906646599" a="3.860706472403014" b="-0.0033063120538081039" c="-0.0013961322568035799" d="0.00075967559018654983" /> - <width sOffset="853.37081022187965" a="3.8548695678313383" b="0.0020130279031114365" c="0.00010122842024653064" d="-1.2349428970671733e-05" /> - <width sOffset="859.8562320611112" a="3.8688139467913274" b="0.0017677691687860906" c="-0.0003591233276104798" d="2.5580163018144447e-05" /> - <width sOffset="861.12529387901259" a="3.8705312625332997" b="0.00097986169390596551" c="-0.00025881317018450184" d="2.9800048134895618e-05" /> - <width sOffset="867.89335936389932" a="3.8745463455378228" b="0.0015716592507398542" c="-7.4275006497807388e-06" d="1.4854966900142844e-06" /> - <width sOffset="871.1383786915593" a="3.8796189577103344" b="0.0015703819952683903" c="1.7728729334123648e-06" d="2.7935703858834086e-07" /> - <width sOffset="881.151463504106" a="3.8958015324425737" b="0.0016899124244904966" c="1.0539449992653774e-05" d="2.7918944654689852e-07" /> - <width sOffset="881.19095971519812" a="3.8958682940386415" b="0.0016907462677403231" c="1.8526200264594755e-05" d="-6.5442735792150764e-07" /> - <width sOffset="891.1645483166526" a="3.9139246928965434" b="0.0018649991509336254" c="-1.1197717879244358e-06" d="-6.5719513061843331e-07" /> - <width sOffset="891.96577717197499" a="3.9154179271372467" b="0.0018619390698959928" c="-8.1062447160635973e-06" d="3.3527454676769326e-07" /> - <width sOffset="898.0159792976267" a="3.9264605585631607" b="0.0018006683516697325" c="8.1077462994216652e-05" d="-1.2299096492880819e-05" /> - <width sOffset="901.17763312919931" a="3.9325754018816022" b="0.0019445187615680509" c="-3.2995831882173476e-05" d="-1.2645056788696838e-05" /> - <width sOffset="905.65198729498775" a="3.939482603994982" b="0.0008897924474969782" c="-0.00012227955398642329" d="5.8382999822547865e-06" /> - <width sOffset="911.1907179417459" a="3.9416517016254113" b="7.2559415497538428e-05" c="-2.0007336667875947e-05" d="5.7036013169424851e-06" /> - <width sOffset="914.41209783704755" a="3.9418684879268993" b="0.00012122069916241935" c="-2.3980174956466843e-05" d="-6.212776623437957e-07" /> - <width sOffset="915.55479831292462" a="3.9419747674123986" b="6.3982657773245849e-05" c="-2.3094515541516869e-05" d="1.774896308335019e-06" /> - <width sOffset="921.20380275429261" a="3.9419191857212272" b="-2.7021898224037369e-05" c="6.7349611934033537e-06" d="1.8580399158442893e-06" /> - <width sOffset="931.2168875668392" a="3.9441892160438448" b="0.00066672523240496264" c="6.2986662640375117e-05" d="1.604749991604767e-06" /> - <width sOffset="934.25548392754683" a="3.9468417072078643" b="0.0010939576167816316" c="3.8020419998765643e-05" d="-2.6304654770755196e-07" /> - <width sOffset="934.61699419853369" a="3.9472421405709186" b="0.0011213440290475908" c="0.00048897136877646069" d="-9.4040867329270647e-05" /> - <width sOffset="937.38923901587088" a="3.9521050910268687" b="0.0016642322224716007" c="-0.00012550632297435714" d="5.956573512263669e-06" /> - <width sOffset="941.22997237938591" a="3.9569830632235794" b="0.000963759985679095" c="-5.6293107826599196e-05" d="6.2060151789758584e-06" /> - <width sOffset="947.94074892571882" a="3.9627910688249326" b="0.0010466738288598231" c="0.0002732310397049015" d="-4.0109838147323753e-05" /> - <width sOffset="951.24305719193251" a="3.967782704399033" b="0.0015390378506197275" c="-0.0001223696913473716" d="-4.1293679108096539e-05" /> - <width sOffset="951.67379824233512" a="3.968419626829653" b="0.0014106339302149367" c="-4.6263815015722961e-05" d="1.0177071810705878e-05" /> - <width sOffset="952.86914386007436" a="3.9700570999543361" b="0.0013436559952897018" c="-2.4691911537395042e-05" d="-7.2168209928650476e-06" /> - <width sOffset="959.13384352874857" a="3.9757312507852971" b="0.00018457710399131556" c="-3.2797784404315845e-05" d="1.9476712464660541e-06" /> - <width sOffset="961.25614200447922" a="3.9759938704105373" b="7.1681543418622038e-05" c="-1.7764430211992076e-05" d="2.8321178452510299e-06" /> - <width sOffset="969.15492735620262" a="3.976847430918049" b="0.00032114108055726165" c="-9.7244287972187985e-06" d="-4.490938583718768e-06" /> - <width sOffset="971.26922681702592" a="3.9774405026002722" b="0.00021979335231755775" c="-3.9053169759872358e-05" d="-4.4199777656671695e-06" /> - <width sOffset="979.72146190310548" a="3.9738393631022677" b="-0.0013876731113570985" c="-0.00018056695979397222" d="1.2687144053407756e-05" /> - <width sOffset="981.28231162957252" a="3.9712817517393519" b="-0.0018586216557396349" c="-0.00012976474289094785" d="8.1073609294327565e-06" /> - <width sOffset="982.68112679433705" a="3.9684501651666233" b="-0.0021740648091952727" c="-0.00010003235991194739" d="1.2406294392691278e-05" /> - <width sOffset="987.54561357239174" a="3.9569354488090998" b="-0.0022665579404807694" c="-4.6246196265799725e-05" d="1.9713104638274458e-06" /> - <width sOffset="991.29539644211923" a="3.947890024613061" b="-0.0025302292998061484" c="-4.2400851552093509e-05" d="4.9089839793814193e-06" /> - <width sOffset="993.68813494829703" a="3.9416603419700009" b="-0.0026488228909263703" c="0.00038365193867795301" d="-1.8511021931085592e-05" /> - <width sOffset="1001.3084812546658" a="3.9355626068713598" b="-2.6488862725199298e-05" c="-4.2536830625656615e-05" d="-1.8933542094195043e-05" /> - <width sOffset="1003.8998765671621" a="3.9348788320189305" b="-0.00062838328041022124" c="0.00027861882900847971" d="-2.7393134248029472e-05" /> - <width sOffset="1011.3215660672125" a="3.9343636548273269" b="-0.0010193011255264543" c="-0.00031827682091742403" d="-3.2082097408356225e-05" /> - <width sOffset="1013.2207229623572" a="3.9310601239115348" b="-0.0025753571931698706" c="-0.00073692003500665801" d="0.0001047793723578837" /> - <width sOffset="1018.1656292450274" a="3.9129752061451963" b="-0.0021771317258213606" c="0.0034119765322382601" d="-0.00031902346698972883" /> - <width sOffset="1018.6597484458047" a="3.9126940032067408" b="0.00096104214803422773" c="0.0029366226847933638" d="-0.00032177651849958427" /> - <width sOffset="1021.3346508797591" a="3.9301179891094504" b="0.0097643680537210405" c="0.00036027097042590613" d="-0.00032020647920672006" /> - <width sOffset="1024.8340405183028" a="3.9549774261906583" b="0.00052234086250882851" c="-0.00019171142791998751" d="6.6704450475404097e-06" /> - <width sOffset="1031.3477356923058" a="3.9520892941470804" b="-0.0011261133168018527" c="-6.5197317594904822e-05" d="6.682486831272251e-06" /> - <width sOffset="1036.3798395906504" a="3.945623148345371" b="-0.0012746294780596158" c="5.7399096626057061e-05" d="9.8268722387290728e-06" /> - <width sOffset="1037.7934647310722" a="3.9439637626661179" b="-0.0010534356872082937" c="-9.0834517075132716e-05" d="5.0609073447924998e-06" /> - <width sOffset="1041.3608205048524" a="3.9392795766697599" b="-0.0015082980312672255" c="-4.1348519896742645e-05" d="4.2775079819552026e-06" /> - <width sOffset="1051.3739053173992" a="3.9243255018178265" b="-0.0010497376893868044" c="8.6791807956188529e-05" d="4.2246788212003433e-06" /> - <width sOffset="1056.3280698824767" a="3.921768819270576" b="0.0001212924482188898" c="0.00011710767683746287" d="4.0652801783617379e-06" /> - <width sOffset="1058.8592432968721" a="3.9228920474225282" b="0.00079226890967900058" c="0.0021984275533308219" d="-0.00037378512472399943" /> - <width sOffset="1061.3869901299458" a="3.9329045426826217" b="0.0047415007738944373" c="-0.0006323897561546734" d="-0.0003742567603167746" /> - <width sOffset="1063.1461613304486" a="3.937251125360989" b="-0.00095808137157458702" c="-0.00039327839979583663" d="3.3486817229425737e-05" /> - <width sOffset="1069.6003152710264" a="3.9236881700979267" b="-0.001849849107285009" c="6.0383104877548135e-05" d="-1.7847103440222629e-06" /> - <width sOffset="1071.4000749424924" a="3.9205440710350006" b="-0.0016498417058399715" c="5.6618414211925263e-05" d="1.3955334056632435e-06" /> - <width sOffset="1073.1148478361604" a="3.9178884871475992" b="-0.001443355789708919" c="3.9889258232172005e-05" d="-4.193536334208011e-08" /> - <width sOffset="1081.413159755039" a="3.9086339604569718" b="-0.00078999203220612426" c="4.1934778240790715e-05" d="1.1398706610480654e-08" /> - <width sOffset="1089.1642607190179" a="3.9050353839194836" b="-0.00013785614406981294" c="4.2334206517699709e-05" d="-6.0678958924849214e-07" /> - <width sOffset="1091.4262445675859" a="3.9049331387781576" b="4.434839277983561e-05" c="3.5920755509190157e-05" d="-3.8278877768146332e-07" /> - <width sOffset="1098.3313621178254" a="3.9068260649948869" b="0.00048566762000739954" c="0.00016559832695227931" d="-1.5100833669617656e-05" /> - <width sOffset="1101.4393293801324" a="3.909481748095101" b="0.0010774182585212119" c="1.1781217137638173e-05" d="-1.6898112407303771e-05" /> - <width sOffset="1106.749018543637" a="3.9130050867070088" b="-0.00022668779993812891" c="-0.00040183817466376816" d="3.5319439303048283e-05" /> - <width sOffset="1111.2175187123999" a="3.9071197991050131" b="-0.0017021936510553675" c="0.00011848488953431485" d="3.343677730753136e-05" /> - <width sOffset="1111.452414192679" a="3.9067269323782261" b="-0.0016409958094862822" c="0.00014413517968349095" d="3.2406950814192606e-05" /> - <width sOffset="1114.683568533633" a="3.9040226739177024" b="0.00030547075458231022" c="0.0021028938863753188" d="-0.00037149257560535831" /> - <width sOffset="1118.6399742633489" a="3.9151415371622011" b="-0.00049980930719658017" c="-0.00048176558530836958" d="5.4165894722790493e-05" /> - <width sOffset="1121.4654990052259" a="3.9111049597704035" b="-0.00192497557211361" c="-1.3082239189355013e-05" d="5.48740203169259e-05" /> - <width sOffset="1124.1340290980831" a="3.9069177021630326" b="-0.00082251387265381182" c="0.0016842663530421886" d="-0.00030482334313157807" /> - <width sOffset="1127.5118468012499" a="3.911608485822414" b="0.00012199033727888818" c="-0.00039988678096059503" d="1.468912890982643e-05" /> - <width sOffset="1127.6147852470567" a="3.9116168220108394" b="4.0129842097624564e-05" c="-0.00061415320507708507" d="3.3537437144297419e-05" /> - <width sOffset="1131.4785838177725" a="3.9045377400167274" b="-0.0032037636100784839" c="-0.00022845857033420398" d="3.3963002687817593e-05" /> - <width sOffset="1138.3404713176158" a="3.8827700786052741" b="-0.0015415827307585384" c="0.00048906506214138894" d="7.7208351361602462e-07" /> - <width sOffset="1141.4916686303191" a="3.8827928447530988" b="0.0015636987593088049" c="0.00049068960051983882" d="-9.0176981511333457e-07" /> - <width sOffset="1143.1461255607167" a="3.8867189624084015" b="0.003179943331774372" c="1.5263427117299048e-05" d="-1.736010874424153e-05" /> - <width sOffset="1150.8406298982554" a="3.9041822225361438" b="0.0003313959535752337" c="2.8382272464582297e-06" d="-6.6354725157938945e-07" /> - <width sOffset="1151.5047534428656" a="3.904403367855056" b="0.00033428782803826833" c="-8.7720258547523588e-07" d="-4.9511724614763701e-07" /> - <width sOffset="1161.5178382554125" a="3.907165606914373" b="0.00016779668112972435" c="-1.1719373272533523e-05" d="-2.5894312925996673e-07" /> - <width sOffset="1164.3809167107784" a="3.907543878508096" b="9.4321870847578938e-05" c="-0.00028850867048993168" d="1.1966515470824215e-05" /> - <width sOffset="1171.5309230679591" a="3.8978430524548475" b="-0.0021960779603437336" c="-3.3652264209240019e-05" d="1.1980580230285091e-05" /> - <width sOffset="1176.8225597659341" a="3.8870550971206121" b="-0.0015458093342246694" c="-2.9261994583663913e-06" d="3.5224492684605268e-07" /> - <width sOffset="1180.2045263787891" a="3.8818073780839732" b="-0.0015535153384979693" c="-0.00050833042262736494" d="4.4480568393739194e-05" /> - <width sOffset="1181.5440078805057" a="3.8789213218306458" b="-0.0026758911998479131" c="-0.00034516998757312846" d="3.7544251684503118e-05" /> - <width sOffset="1189.1832990969608" a="3.8550736784937802" b="-0.0013764902290743816" c="0.00079512277344240972" d="-6.0617529185427594e-05" /> - <width sOffset="1191.5570926930523" a="3.8554757840403191" b="0.0013737040414243402" c="0.00036801915820084031" d="-6.2544065402005348e-05" /> - <width sOffset="1196.2778782808555" a="3.8635823076604097" b="0.00066684641103833598" c="-3.9807816683588046e-05" d="2.855400058894006e-07" /> - <width sOffset="1201.5701775055991" a="3.8660388292233705" b="0.00026948923902237517" c="-2.2690132949756748e-05" d="1.5785864938349363e-06" /> - <width sOffset="1211.5832623181457" a="3.8680470839853198" b="0.00028990887722676027" c="2.6626314481972468e-05" d="1.7468736472535597e-06" /> - <width sOffset="1213.7251968486914" a="3.8688073746832057" b="0.0004280158805685281" c="0.00016399172004223698" d="-4.7007136188649644e-06" /> - <width sOffset="1214.0353603448532" a="3.8689557655566214" b="0.00052838772541657876" c="0.00014868872701543707" d="-6.0764977268510866e-06" /> - <width sOffset="1221.5963471306923" a="3.878824644030638" b="0.0017347015588370313" c="9.3040479676989803e-06" d="-5.9984219061538657e-06" /> - <width sOffset="1230.6785331765316" a="3.8908532383978871" b="0.00041934439983546301" c="-0.00018044628673091946" d="-2.5663298614525228e-06" /> - <width sOffset="1230.7527376001626" a="3.8908833609680444" b="0.00039252218150487446" c="-6.5067714540812863e-05" d="4.4913331511336628e-06" /> - <width sOffset="1237.6217179606238" a="3.8919651389053653" b="0.00013436672507986003" c="3.8538249261102836e-05" d="-3.2438693766265872e-07" /> - <width sOffset="1241.6225167557857" a="3.8930987982190848" b="0.00042715749502411757" c="2.9105263225103559e-05" d="-1.021387756124472e-06" /> - <width sOffset="1251.1946279094152" a="3.8989585703115504" b="0.00070360020922514369" c="0.00010270171078390669" d="-6.0893485241617525e-06" /> - <width sOffset="1251.6356015683323" a="3.8992882884494318" b="0.00079062534421091854" c="9.5116807025205196e-05" d="-6.6876007658899625e-06" /> - <width sOffset="1254.8684148980988" a="3.9026123562169017" b="0.0011959371150163688" c="-4.1883993197169776e-05" d="-2.7109681610520413e-06" /> - <width sOffset="1261.6486863808789" a="3.907950622759004" b="0.00025408087894096044" c="-9.4292043654315756e-05" d="-2.5377299030634199e-06" /> - <width sOffset="1269.2396468550342" a="3.9033359480970393" b="-0.0016161458752709183" c="-0.00015823321168063003" d="7.9704787546893755e-06" /> - <width sOffset="1271.6617711934257" a="3.8986063964786037" b="-0.0022423860057812352" c="-9.8252227695361705e-05" d="7.3178950668728492e-06" /> - <width sOffset="1279.0996467913412" a="3.8795034528253396" b="-0.0024894400714189453" c="-0.00067354886952854156" d="0.00013352357458916214" /> - <width sOffset="1281.6748560059723" a="3.8709061665549722" b="-0.0033020327121669902" c="0.00035959114356992649" d="0.00013459409495445118" /> - <width sOffset="1282.7366259619557" a="3.8679666625323108" b="-0.0020832204116207182" c="0.0020007428384022875" d="-5.6338766619732635e-05" /> - <width sOffset="1284.5812969234414" a="3.87057831379569" b="0.0047230735022525863" c="0.00042162703840125033" d="-0.00019255836950089804" /> - <width sOffset="1286.3095568616725" a="3.879006355567352" b="0.0044549881182953258" c="0.00017190441199830839" d="-1.1659886720973662e-05" /> - <width sOffset="1291.6879408185189" a="3.906125621489613" b="0.0052922668626969984" c="-4.1896739047311887e-05" d="-3.7083431067778524e-06" /> - <width sOffset="1293.7185807233554" a="3.9166684974113277" b="0.005076238441450158" c="-0.0018235559658677726" d="0.00015506540676642891" /> - <width sOffset="1301.3824229369416" a="3.9182662467462506" b="0.0044484049838471543" c="-8.131264375643562e-05" d="-5.3124006786903965e-06" /> - <width sOffset="1301.7010256310657" a="3.9196750948947781" b="0.0043949743807634957" c="-8.7969941020285319e-05" d="-4.6048534711054379e-06" /> - <width sOffset="1305.0762066456707" a="3.9333297343639337" b="0.0036437720742262983" c="-0.00013744749057729064" d="4.8110194493566474e-06" /> - <width sOffset="1311.7141104436123" a="3.9528676798100286" b="0.0024549916863723853" c="-4.3767213783827171e-05" d="4.5770204982819536e-06" /> - <width sOffset="1311.9079026518759" a="3.9533418276854233" b="0.0024385438721496746" c="-0.00017395160064477159" d="8.5334114208109373e-06" /> - <width sOffset="1320.2508323809955" a="3.9665340146225141" b="0.0013179028144739684" c="2.0670945562838115e-05" d="-4.8865338959079773e-07" /> - <width sOffset="1320.9322764108581" a="3.9674415358817852" b="0.0013453942573576081" c="-6.0882260040596225e-05" d="-6.6363475239076822e-08" /> - <width sOffset="1321.7271952561589" a="3.9684725105417438" b="0.0012484755412165687" c="-5.9160285314582354e-05" d="5.7186807796743922e-07" /> - <width sOffset="1331.7402800687055" a="3.9756161971895914" b="0.00023573131675668109" c="-5.5766337151869826e-05" d="3.2728722538770798e-06" /> - <width sOffset="1335.1320118841957" a="3.9759019080999209" b="-2.9605760668146349e-05" c="2.406298895169058e-05" d="-1.620924418815452e-05" /> - <width sOffset="1340.3043713727952" a="3.9741495429768925" b="-0.0010816333501168784" c="-5.2237685235457333e-05" d="-2.3840880554564671e-05" /> - <width sOffset="1341.7533648812523" a="3.972400055303611" b="-0.0013831851481722218" c="-0.00017500192268954287" d="-1.4248262867360215e-05" /> - <width sOffset="1343.7788332117907" a="3.9687621120166447" b="-0.0022674682863863438" c="-0.0011267303370138607" d="0.00022156220730564765" /> - <width sOffset="1348.0047653414495" a="3.9557792666493317" b="7.9867457461573355e-05" c="3.6467968576578996e-05" d="-8.7850740853025151e-06" /> - <width sOffset="1351.7664496937989" a="3.9561281150291334" b="-1.8704057895119718e-05" c="-6.3769284170878322e-05" d="-9.3136703214974537e-06" /> - <width sOffset="1356.0062380810357" a="3.9541926810747809" b="-0.0010617027793623968" c="-6.7915330288987054e-05" d="2.1309404509972866e-06" /> - <width sOffset="1361.7795345063455" a="3.9462095293545945" b="-0.0016328146273276323" c="-1.3052911178657031e-06" d="-1.3606243265434237e-05" /> - <width sOffset="1363.0537797520437" a="3.9440986524512489" b="-0.0017024185595278891" c="4.6346352876668634e-06" d="7.8406714021268317e-06" /> - <width sOffset="1368.4576852331884" a="3.9362715891836793" b="-0.00096543386476917676" c="0.00024178522304955713" d="-1.688485005475607e-06" /> - <width sOffset="1371.7926193188923" a="3.9356783876137378" b="0.00059090479534209032" c="0.00023297567567192738" d="4.5923725547684728e-07" /> - <width sOffset="1373.8093709405371" a="3.9378214417680955" b="0.0015362164880732955" c="0.00019448327764668073" d="-7.4670488741463223e-06" /> - <width sOffset="1381.8057041314389" a="3.9587231884894285" b="0.0032141632309385547" c="1.6763650542464734e-05" d="-7.5228146853692301e-06" /> - <width sOffset="1391.372316854955" a="3.984419550225565" b="0.0014694401531211219" c="-0.00011818360734232161" d="-1.3306204810150186e-06" /> - <width sOffset="1391.8187889439855" a="3.9850519374128384" b="0.00136311306201428" c="-0.00012325777068380143" d="-6.5516270290955235e-07" /> - <width sOffset="1394.5951494816109" a="3.9878723169827257" b="0.00066354670917590885" c="-0.00035649382028947148" d="1.2826325711497682e-05" /> - <width sOffset="1401.8318737565321" a="3.9788656071097659" b="-0.0024809973664306501" c="-7.9205307544750258e-05" d="1.3051309856264251e-05" /> - <width sOffset="1409.168525378084" a="3.9615540927654216" b="-0.0015356835555552085" c="9.8208401240060673e-05" d="-1.4179662413159633e-06" /> - <width sOffset="1411.8449585690789" a="3.9581202486777878" b="-0.0010404590359951106" c="8.3701645266239248e-05" d="-4.3992595666601729e-07" /> - <width sOffset="1415.9200382307158" a="3.9552404970766517" b="-0.00038019388471221887" c="0.00092396794843829246" d="-6.9976107828756743e-05" /> - <width sOffset="1421.8580433816255" a="3.97091078356515" b="0.0031908062104005147" c="-0.00031952736452997256" d="-7.1326349394003449e-05" /> - <width sOffset="1423.9022050477843" a="3.9754888809942899" b="0.00099034283955820785" c="-0.00029917854629147645" d="9.4946179511206303e-06" /> - <width sOffset="1429.0789028652362" a="3.9739152921295116" b="-0.0013438549949875925" c="-0.00010947953476653542" d="1.2263475389545737e-05" /> - <width sOffset="1431.8711281941721" a="3.9695763580715857" b="-0.0016684006773447159" c="-7.752709953615939e-06" d="1.2487123694916224e-05" /> - <width sOffset="1437.3288667834508" a="3.962269755381377" b="-0.00063716669787304255" c="6.2415005099378064e-05" d="-3.8525986787565061e-06" /> - <width sOffset="1441.8842130067187" a="3.9602982438745222" b="-0.00030836067922782213" c="4.3388225052034299e-06" d="-3.9665651991769544e-06" /> - <width sOffset="1444.9032619546967" a="3.9592976844354739" b="-0.00039062408261284626" c="-4.1117865977529925e-06" d="4.1089460497047939e-07" /> - <width sOffset="1451.8972978192655" a="3.9565050881416761" b="-0.00038784142420471377" c="1.8840506990719456e-07" d="6.1883414704118962e-07" /> - <width sOffset="1461.9103826318121" a="3.9532617554370795" b="-0.00019793199061860986" c="1.8820405354785202e-05" d="-2.5981218908519349e-06" /> - <width sOffset="1462.9852847714139" a="3.9530675165308486" b="-0.00016647752663060972" c="0.00027074650599755092" d="-8.7021605524941311e-05" /> - <width sOffset="1465.1468344281675" a="3.9530938089964645" b="-0.00021578583045923569" c="-0.00037758249046390685" d="-8.2018422306547831e-05" /> - <width sOffset="1465.9238600046588" a="3.952659686949282" b="-0.00095112881519479001" c="-0.00028393799313408056" d="6.0976230762031771e-06" /> - <width sOffset="1471.9234674443587" a="3.9380496852737692" b="-0.0036997046848384167" c="-0.0001684124640205653" d="6.0836150537416383e-06" /> - <width sOffset="1475.7224977041017" a="3.921897324912317" b="-0.0047159050666122117" c="5.6910475661518402e-05" d="5.1880869366155308e-06" /> - <width sOffset="1479.7007253878137" a="3.9043637079298161" b="-0.0040167748162029263" c="-6.5593556129110232e-05" d="6.2372575756203546e-06" /> - <width sOffset="1481.9365522569055" a="3.8951247099159967" b="-0.0042165477982834161" c="-1.5270375629910637e-05" d="2.7994339528159085e-06" /> - <width sOffset="1483.8693809113997" a="3.8869380119411847" b="-0.0042442032379044481" c="-1.8180000850609356e-05" d="5.8582994469632723e-06" /> - <width sOffset="1491.9496370694521" a="3.8545474100831192" b="-0.0033905267698217324" c="0.0001247845416923067" d="6.0317390189153547e-06" /> - <width sOffset="1497.4722369173569" a="3.840644657001187" b="-0.001460368589038856" c="-2.8629763931507957e-05" d="-4.4123869047506961e-08" /> - <width sOffset="1501.9627218819987" a="3.8335055948804162" b="-0.0017201608393339945" c="-3.3964518936603123e-05" d="8.5477255974532953e-07" /> - <width sOffset="1506.0184871585523" a="3.8260273615150542" b="-0.0019534840160373265" c="-0.00029512785143721398" d="3.15124869792936e-05" /> - <width sOffset="1511.9758066945453" a="3.810578318593083" b="-0.0021147238731067212" c="0.00027732036239327008" d="2.7897643414846346e-05" /> - <width sOffset="1514.4249552917199" a="3.8074723429799331" b="-0.00025430860194629464" c="0.0004101196989202463" d="-2.9184997551086409e-05" /> - <width sOffset="1521.9888915070921" a="3.8163830043878608" b="0.00094063461413163528" c="-0.00025512902636057349" d="-2.4357219747499589e-05" /> - <width sOffset="1523.6829792536773" a="3.8171258958496503" b="-0.00013349808822988424" c="-0.00021312080158086784" d="8.917480015511412e-06" /> - <width sOffset="1532.0019763196387" a="3.8064001392601261" b="-0.0018279790682565686" c="-2.4864214393086825e-05" d="1.6994687989414259e-05" /> - <width sOffset="1534.3200555375875" a="3.8022408201981861" b="-0.0016692910833981092" c="-0.00034333964160363119" d="4.1832090934332101e-05" /> - <width sOffset="1535.4932789213071" a="3.7998773320467913" b="-0.002302179540818244" c="-0.00015645938923600165" d="4.2762560612465211e-05" /> - <width sOffset="1541.4588960690344" a="3.7896540706044606" b="0.00039664427687215707" c="0.00013844748054154415" d="-2.0338387864519169e-05" /> - <width sOffset="1542.0150611321853" a="3.7899139959413004" b="0.00053177039576762428" c="0.00010887655471498599" d="-2.0009099005327887e-05" /> - <width sOffset="1545.1558092878827" a="3.7920382362431755" b="0.00062355086803042028" c="-0.0033515964132230431" d="0.00059579170584399981" /> - <width sOffset="1548.3391308604737" a="3.779278905742967" b="-0.0026024369434367329" c="0.00041770679481670215" d="-2.2209397020917492e-05" /> - <width sOffset="1552.0281459447322" a="3.774247995795426" b="-0.00042731548777023083" c="0.00016908870826171064" d="-2.2597546398362882e-05" /> - <width sOffset="1557.1042702317632" a="3.7734801202165746" b="-0.00045750038559934977" c="-1.6810541457490328e-05" d="8.3199702717721809e-07" /> - <width sOffset="1562.0412307572788" a="3.7709118411741898" b="-0.00056265010839164965" c="-5.4440940886850216e-06" d="7.844511965146054e-07" /> - <width sOffset="1571.1119618723674" a="3.7659457173116753" b="-0.00046778432553087369" c="0.00020870953371171334" d="-1.3483072928596479e-05" /> - <width sOffset="1572.0543155698253" a="3.7656789562938258" b="-0.00011034806357823395" c="0.00017445564549657328" d="-1.3836440563939316e-05" /> - <width sOffset="1582.0674003823719" a="3.7681744547479736" b="-0.00077847182476315272" c="-0.00023808747510051519" d="-1.3691970827798191e-05" /> - <width sOffset="1584.1028314225391" a="3.7654880765439733" b="-0.0019178697631063064" c="3.0360496495448115e-05" d="9.5886503035358991e-07" /> - <width sOffset="1592.0804851949188" a="3.7526070438379264" b="-0.0012503836788225232" c="5.2058192111333564e-05" d="1.0241018889339942e-06" /> - <width sOffset="1599.1252748781512" a="3.7467400059805747" b="-0.00036443000195550412" c="5.3765914829607411e-05" d="-3.3371603841223343e-06" /> - <width sOffset="1602.0935700074654" a="3.7460447129112637" b="-0.00013345271334251504" c="2.6120641541233674e-05" d="-3.8248625038313879e-06" /> - <width sOffset="1609.4020955312517" a="3.7449714367200384" b="-0.00036455583733551686" c="-0.00048054051977298903" d="4.1178414233552188e-05" /> - <width sOffset="1612.106654820012" a="3.7412851201136843" b="-0.0020602405455095139" c="-0.00015167985335957582" d="4.4138523179722564e-05" /> - <width sOffset="1616.9320185161669" a="3.7327711341447762" b="-0.00044087949039608586" c="3.4295810111656945e-05" d="1.0332236861104597e-06" /> - <width sOffset="1621.0588594411774" a="3.7316083987975266" b="-0.00010502285742808147" c="9.5139328860480214e-05" d="-2.0619168691817265e-06" /> - <width sOffset="1622.1197396325588" a="3.7316015963839226" b="8.9878144570344054e-05" c="9.2469763059807993e-05" d="1.2148550064531288e-06" /> - <width sOffset="1622.5684645848978" a="3.7316606558797059" b="0.00017359897266326269" c="0.0006574723701075248" d="-3.6336192521767624e-05" /> - <width sOffset="1632.1328244451054" a="3.7616733892865195" b="0.0027784282452255958" c="-0.00036201685394620379" d="-4.4219265493349071e-05" /> - <width sOffset="1633.8736038791862" a="3.765179734302404" b="0.0011160506066607476" c="-0.0002972881504472774" d="7.4127966580952664e-05" /> - <width sOffset="1636.9124339769469" a="3.7679061005611865" b="0.0013628357823924379" c="0.00034033705883922355" d="-2.1861676778897599e-05" /> - <width sOffset="1642.145909257652" a="3.7812263739832841" b="0.0031288012730283409" c="3.1337794293750579e-05" d="-2.6963247126576939e-05" /> - <width sOffset="1645.2496854663577" a="3.7904331621724801" b="0.0025440868750452894" c="-6.0020882660763081e-05" d="1.4120505148451233e-05" /> - <width sOffset="1649.0173482024302" a="3.7999216176016475" b="0.0026931436676408981" c="0.00013001291679025053" d="-7.3165990653303952e-06" /> - <width sOffset="1652.1589940701986" a="3.8094388687796554" b="0.0032934095991361692" c="7.4417961786736207e-05" d="-4.0008321142127324e-06" /> - <width sOffset="1657.1497355888509" a="3.8272316592214928" b="0.0037372590338528729" c="5.9147783224291258e-05" d="-6.8591057816524532e-06" /> - <width sOffset="1662.1720788827454" a="3.8466244629505049" b="0.0038123391219223569" c="-5.6168051673165999e-05" d="2.7090760188644048e-07" /> - <width sOffset="1663.3597361186144" a="3.8510734422200175" b="0.0036800687055961864" c="-0.00035891769984784286" d="3.8298498468625498e-05" /> - <width sOffset="1668.2615930555239" a="3.8649993703540257" b="0.0029220743790424534" c="9.4266273193338213e-05" d="-1.3871145790426948e-05" /> - <width sOffset="1672.1321097205093" a="3.8769171994524476" b="0.0030283860288551376" c="-0.00020130285393811991" d="2.6078164541886264e-05" /> - <width sOffset="1672.185163695292" a="3.8770773046507467" b="0.003007246404427049" c="-0.00021298045733473091" d="2.5703857530166702e-05" /> - <width sOffset="1676.5041842584371" a="3.8881636154529029" b="0.0026059469972436093" c="-0.0033549823982271217" d="0.00048548532360018763" /> - <width sOffset="1676.9545564536916" a="3.8887011029980356" b="-0.00012061416496545775" c="-0.0029344817948219271" d="0.00046596781460065578" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="170.98913409052579" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="170.98913409052579" color="standard" width="0.27524430384841919" weight="bold" type="solid"> - <type name="solid"> - <line length="1509.2987877128849" space="0" width="0.27524399999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="2" /> - </link> - <width sOffset="0" a="3.6551692970762013" b="-0.0032954389182017667" c="0.00037656089889451065" d="-4.6030705289485639e-05" /> - <width sOffset="1.3036140141764099" a="3.6514112726582919" b="-0.0025483338415226661" c="0.00034162371141268293" d="5.1637260473944484e-05" /> - <width sOffset="4.3588032847111116" a="3.6482869836113281" b="0.00098509103480790244" c="0.00022705734533767108" d="-5.3514632335056688e-06" /> - <width sOffset="10.013084812546658" a="3.6601487960321517" b="0.0030395100606212637" c="0.00014002874613134762" d="-5.3869143982858312e-06" /> - <width sOffset="20.026169625093317" a="3.699215123534338" b="0.0042234431907262155" c="-1.3526154785451484e-05" d="-6.9463424316962096e-06" /> - <width sOffset="22.072164124463363" a="3.7077401498149296" b="0.0040808601976218334" c="-0.0002262346391564677" d="1.3382193728256192e-06" /> - <width sOffset="30.039254437639975" a="3.7265693419165942" b="0.00073082512275055109" c="-0.00019073054291211895" d="1.3198118498902983e-06" /> - <width sOffset="38.601777390847971" a="3.7196718430947024" b="-0.0022451510387428699" c="-0.0011743668035514596" d="0.0008734410524184541" /> - <width sOffset="39.874932233243676" a="3.7167123680422782" b="-0.0009881098688990413" c="0.0021981685132118449" d="-0.00028715237559744306" /> - <width sOffset="40.052339250186634" a="3.7166046505875152" b="-0.00023528168678749444" c="0.0020437280505558051" d="-0.0002858147453872296" /> - <width sOffset="41.439403181111864" a="3.7194475872802313" b="0.0037846045331207702" c="0.00072611888453947551" d="-0.00028769802141972805" /> - <width sOffset="43.806026403060564" a="3.7286577391937525" b="0.0023873958915526725" c="-0.00018660351190288434" d="4.0567016198613483e-06" /> - <width sOffset="50.065424062733292" a="3.7372851428202054" b="0.00052817014735788512" c="-0.00010554127467965853" d="3.2421554295723097e-06" /> - <width sOffset="57.594768315716053" a="3.7366625765173995" b="-0.00050973969019793217" c="-0.00042950291765595021" d="1.540472530223954e-05" /> - <width sOffset="60.078508875279951" a="3.7329829589334524" b="-0.0023581935904351883" c="-0.0003096288180463512" d="1.7869604018063449e-05" /> - <width sOffset="60.581625678088926" a="3.7317204125829266" b="-0.0026561827005301799" c="-0.00023134945956282315" d="1.4460520823962561e-05" /> - <width sOffset="70.091593687826617" a="3.6979742291978059" b="-0.0031330281671164417" c="0.00017417801167266797" d="1.4049698889008353e-05" /> - <width sOffset="78.674208190907606" a="3.6927971381906244" b="0.0029615333529400428" c="-3.1050134544359577e-05" d="-4.6246528942179869e-06" /> - <width sOffset="80.104678500373268" a="3.6969564507405899" b="0.0028443112389650435" c="-4.4478897061631104e-05" d="-7.2763431631204448e-06" /> - <width sOffset="81.475289624124997" a="3.7007526033303515" b="0.0026813772309408805" c="3.2438340145526129e-05" d="-3.924108419075261e-06" /> - <width sOffset="90.117763312919919" a="3.7238161147128728" b="0.0023627695777404568" c="-6.8276075982081204e-05" d="-3.394108240395312e-06" /> - <width sOffset="99.588419636782078" a="3.7371860434137849" b="0.00015624445255295739" c="-2.6777771803381179e-05" d="-1.3544119986123837e-06" /> - <width sOffset="100.13084812546658" a="3.7372626999065299" b="0.00012599887947049393" c="-3.3910973878197018e-05" d="-1.2351193305510808e-06" /> - <width sOffset="110.14393293801325" a="3.7338843857356068" b="-0.00092461414742944564" c="-7.7115327826460242e-05" d="-1.7043251024399131e-06" /> - <width sOffset="118.76624855428869" a="3.7190864767164031" b="-0.0026345602442508103" c="-0.0015631118954592112" d="0.00022859452842889915" /> - <width sOffset="119.78921124112837" a="3.7150004036248285" b="-0.0051149304769777717" c="-0.00098490533978428524" d="0.00023332855087834754" /> - <width sOffset="120.1570177505599" a="3.7129974691387995" b="-0.0057447444683375228" c="-0.00071860789998475904" d="0.00023404681944008362" /> - <width sOffset="123.98424188877459" a="3.6936057536476228" b="-0.00096058757414574651" c="-5.1773454489624524e-05" d="2.9853804807103715e-06" /> - <width sOffset="130.17010256310655" a="3.6863892311734832" b="-0.0012584087179241768" c="1.0755105092831833e-06" d="4.1587016818087862e-06" /> - <width sOffset="138.71232008195562" a="3.6783103164246929" b="-0.00032965932916760566" c="-0.00054709942940180415" d="9.8204661771218591e-05" /> - <width sOffset="139.87781024511833" a="3.6773384137940184" b="-0.0012047433258554848" c="0.00097638004948530745" d="-8.7637804589308673e-05" /> - <width sOffset="140.18318737565323" a="3.6770590694933212" b="-0.00063293309105240793" c="0.00087749273238533175" d="-9.4276546392521048e-05" /> - <width sOffset="143.86261113720616" a="3.6819137145369929" b="0.0019954094427099842" c="-0.00036886503849901876" d="-0.00019486196590985276" /> - <width sOffset="144.78629856636752" a="3.6832885655568823" b="0.0008152096528237573" c="0.00036878755238572275" d="-1.4070512859089506e-05" /> - <width sOffset="150.19627218819988" a="3.6962645356398447" b="0.0035700320291652114" c="0.00014173386287521259" d="-1.4392334717211556e-05" /> - <width sOffset="160.20935700074654" a="3.7317731659316635" b="0.0020794113410124164" c="-0.00028815275170340185" d="-1.4377467383108708e-05" /> - <width sOffset="160.31856064153411" a="3.7319967901500504" b="0.0020159623091576683" c="0.00013486346246164267" d="-1.0894857664811161e-05" /> - <width sOffset="170.22244181329319" a="3.7546072677976792" b="0.0014813785129483125" c="-0.00018989522403803019" d="-1.0458234300314634e-05" /> - <width sOffset="177.57725725126363" a="3.7510697021580381" b="-0.0030090716719058412" c="-0.00071865493581943127" d="3.7710878922920552e-06" /> - <width sOffset="178.12516424543182" a="3.7492058893197937" b="-0.0037931875381417746" c="-0.00067735986101536685" d="3.030059165947754e-05" /> - <width sOffset="180.23552662583984" a="3.738468967611114" b="-0.0062472942600790577" c="-0.00048973075475785741" d="2.8642564090228285e-05" /> - <width sOffset="190.24861143838652" a="3.6555681063575785" b="-0.0074394545316183594" c="0.00037147903277337958" d="2.8812149119025174e-05" /> - <width sOffset="193.64909612995243" a="3.6356987942584835" b="-0.0039135467653816283" c="0.00085731240056076202" d="-7.9275699605424471e-06" /> - <width sOffset="196.93998298777544" a="3.6318218539903846" b="0.0014715242254050229" c="0.00036524673360547764" d="-2.1607111604502754e-05" /> - <width sOffset="200.26169625093317" a="3.6399479639380297" b="0.003182789781101091" c="0.00015081373352914391" d="-2.1780874178428441e-05" /> - <width sOffset="210.27478106347982" a="3.6650718888208784" b="-0.00034836216978465542" c="-0.00050205326045058539" d="-2.1833392787846071e-05" /> - <width sOffset="210.3111477763" a="3.6650585549993706" b="-0.00038496484975254487" c="1.8015197261002366e-05" d="-1.1692743604440601e-07" /> - <width sOffset="215.42997962940208" a="3.6635443437856656" b="-0.00020972267081384612" c="0.00013321760665141417" d="-6.23817127366749e-08" /> - <width sOffset="220.2878658760265" a="3.6656621935022864" b="0.001080172838388319" c="0.00013073506831319927" d="1.6876613023706328e-07" /> - <width sOffset="228.38492541530024" a="3.6830693102237695" b="0.0032305062264278059" c="0.0033096634998854937" d="-0.00056066562522748774" /> - <width sOffset="229.53669335743629" a="3.690323960966289" b="0.0086231492896649241" c="0.0010479443762191189" d="-0.00055163828118589674" /> - <width sOffset="230.30095068857315" a="3.6972801107946078" b="0.0092583296340610442" c="-0.00021791407064558307" d="-0.00055288657163672975" /> - <width sOffset="231.73232708845657" a="3.7084643668779691" b="0.0052361698048516659" c="-0.00087348335390129692" d="3.2042719073208403e-05" /> - <width sOffset="240.3140355011198" a="3.7093225330180748" b="-0.0026763618066426515" c="-4.5316766734079748e-05" d="3.1950157102351829e-05" /> - <width sOffset="246.44646593699755" a="3.6985740771265387" b="0.00037245456593764867" c="0.00091192830049099114" d="-0.0002294909366295543" /> - <width sOffset="249.15779500149029" a="3.7017136181410111" b="0.00025635616418614917" c="-0.0011556449554950476" d="-0.00023783211350054129" /> - <width sOffset="249.40651982336701" a="3.7017022278683323" b="-0.00036265877124900094" c="-0.0002632256146350975" d="9.8784411579659448e-06" /> - <width sOffset="250.32712031366646" a="3.7011529862277408" b="-0.00082219393842693743" c="-0.00023579622988300099" d="1.0576920138804419e-05" /> - <width sOffset="260.34020512621311" a="3.6798974118357188" b="-0.0023629039396425569" c="7.7577193874360514e-05" d="1.0745967392368997e-05" /> - <width sOffset="266.30364290459931" a="3.6708441813539405" b="-0.00029118710026846545" c="0.00027511426784142094" d="7.641410267562636e-06" /> - <width sOffset="266.32987756217847" a="3.67083673164744" b="-0.00027673626528201432" c="0.00027094994354861558" d="-1.0473411605056685e-05" /> - <width sOffset="270.35328993875976" a="3.673427266478952" b="0.0013949244886644159" c="0.00013348472618072223" d="-1.1153903139364421e-05" /> - <width sOffset="280.36637475130647" a="3.6895804471413021" b="0.00071317878274764933" c="-0.00024906326043016327" d="2.635363616134001e-06" /> - <width sOffset="282.17931163238711" a="3.6900704922609533" b="-0.00016390789226353696" c="-0.0001653869658139853" d="-5.9861129873090772e-06" /> - <width sOffset="282.65645013391514" a="3.6899539830611676" b="-0.00032582128643792786" c="-0.00026386779716389835" d="4.5713496999663132e-05" /> - <width sOffset="287.21413967785935" a="3.6873157024073624" b="0.00011767922249713821" c="0.00025598441445481341" d="-1.9634926198767675e-06" /> - <width sOffset="290.37945956385312" a="3.6901906961675088" b="0.001679206167472443" c="0.00019394941392679598" d="-6.1006621633496712e-06" /> - <width sOffset="300.39254437639977" a="3.7203258190553479" b="0.0037282786856783954" c="-2.1654815370704107e-05" d="-4.635329185350441e-06" /> - <width sOffset="304.355851351669" a="3.7344734107341466" b="0.0033381968224134766" c="-0.00011659248461918573" d="1.9224944779435913e-06" /> - <width sOffset="310.40562918894642" a="3.7508271770153145" b="0.0021385683722305515" c="-8.8502525186902526e-05" d="9.3024355218915476e-07" /> - <width sOffset="320.97206174401339" a="3.7646403956949674" b="0.00057984011945255969" c="7.5835724667225242e-05" d="5.5500811029877606e-06" /> - <width sOffset="321.06879147561904" a="3.7646971980649315" b="0.00059466704837705855" c="5.3424630553210159e-05" d="-1.6561936002890153e-06" /> - <width sOffset="330.43179881403972" a="3.7735891575894298" b="0.0011595223246955695" c="4.2957135724156254e-05" d="-2.9924914279642946e-06" /> - <width sOffset="336.53218669388735" a="3.7815819635540837" b="0.0013495384028777008" c="2.05985399690357e-05" d="-6.4539512874171946e-06" /> - <width sOffset="340.44488362658637" a="3.7867910521449204" b="0.0012143156505655464" c="-1.3277298143847864e-05" d="-2.4046390331400987e-06" /> - <width sOffset="350.45796843913303" a="3.7952048003715273" b="0.00022514142566081551" c="-7.3031343230973888e-05" d="-2.0146668343776311e-06" /> - <width sOffset="355.64066164470182" a="3.7941295356407001" b="-0.00069420038733512173" c="-0.00011756025368945336" d="3.3736767500532074e-06" /> - <width sOffset="360.47105325167968" a="3.7884135133743886" b="-0.0015937737215687064" c="-7.5422455602019338e-05" d="4.0579709007665206e-06" /> - <width sOffset="370.48413806422639" a="3.7689668467706534" b="-0.001883617389128634" c="3.8695407344900549e-05" d="3.4723026793933421e-06" /> - <width sOffset="375.71805691015294" a="3.7606660146092521" b="-0.0011932003409539007" c="-1.6761089134133719e-05" d="1.0672336809553997e-06" /> - <width sOffset="380.49722287677304" a="3.7546971790100669" b="-0.0012802801744379632" c="1.6965721233319308e-06" d="1.0003219803584587e-06" /> - <width sOffset="390.51030768931969" a="3.7430519803572722" b="-0.00094542188386901064" c="2.195723576015213e-05" d="7.4978531695787282e-06" /> - <width sOffset="391.57561155530215" a="3.7420788022122364" b="-0.00087311230936704684" c="-2.1634515033176809e-05" d="4.7315612640675668e-06" /> - <width sOffset="400.52339250186634" a="3.7359238810021331" b="-0.00012380821164601559" c="9.6196072517492403e-05" d="4.4096271762555697e-06" /> - <width sOffset="406.26130630273599" a="3.7392136427488287" b="0.0014156644611899882" c="5.9652757628152364e-05" d="2.9515901261734298e-06" /> - <width sOffset="410.53647731441299" a="3.7465867594521658" b="0.0020875553517061525" c="9.8267319291230323e-05" d="2.7911439977449105e-06" /> - <width sOffset="411.14346544400166" a="3.7478907100486172" b="0.002209934606359014" c="0.0001303791086651068" d="-6.8695014596825302e-06" /> - <width sOffset="420.54956212695964" a="3.7744960081888865" b="0.0028393212983735508" c="-6.0822273955764007e-05" d="-6.4115308053549519e-06" /> - <width sOffset="424.01405581049687" a="3.7833361735463029" b="0.0021870171710564649" c="-0.00013654118526494928" d="4.9771927625630213e-06" /> - <width sOffset="430.56264693950629" a="3.7932003618029433" b="0.0010390388686968874" c="-3.8674678183144804e-05" d="4.8272521798224171e-06" /> - <width sOffset="440.575731752053" a="3.8045729767527101" b="0.0017165011580005164" c="0.0001167656523322748" d="1.1327479677716197e-06" /> - <width sOffset="442.04500155564631" a="3.8073506412031168" b="0.0020669576239265232" c="0.00071452207776480652" d="-0.00017653920219027656" /> - <width sOffset="444.37604382750328" a="3.8138152449213889" b="0.0025203060134106336" c="-0.0013905957633045863" d="8.0623564542970955e-05" /> - <width sOffset="445.87648453171175" a="3.8147384798252668" b="-0.0011081780713734968" c="-2.2445809107536619e-05" d="0.00026772557427492418" /> - <width sOffset="446.77087055368463" a="3.8139209282291802" b="-0.00050584627785410822" c="-0.00022318995135405664" d="1.0290889984777825e-05" /> - <width sOffset="450.58881656459965" a="3.8093089787792995" b="-0.0017600786361130793" c="-0.00010572693205235497" d="1.0986408711813459e-05" /> - <width sOffset="460.60190137714631" a="3.7921143741666672" b="-0.00057283054885125923" c="0.00022066156171182932" d="1.0828712438902181e-05" /> - <width sOffset="462.23306423880638" a="3.7918141036183055" b="0.00023347495487503517" c="8.9240229110152731e-05" d="-3.6324290609790131e-06" /> - <width sOffset="470.61498618969296" a="3.797901704250318" b="0.00096387770884234759" c="3.8768129397932772e-06" d="-4.1750948958821931e-06" /> - <width sOffset="477.55904483515269" a="3.8033838695058582" b="0.00041375073438469515" c="-8.8092293240319216e-05" d="7.1757917833685029e-06" /> - <width sOffset="479.30773183297862" a="3.8038763833252589" b="0.00017148773369418842" c="-4.1963061195401453e-05" d="6.0932708336945468e-06" /> - <width sOffset="480.62807100223961" a="3.8040436764139391" b="9.254390225137436e-05" c="-9.5138045860225884e-06" d="1.0129903184721978e-05" /> - <width sOffset="482.55093794485219" a="3.8042584694985084" b="0.00016831977878632785" c="5.1743970980529937e-05" d="-2.5709808145523177e-06" /> - <width sOffset="490.64115581478626" a="3.8076455597932206" b="0.00050073515828194916" c="-1.3861331011839258e-05" d="-2.6058278732180719e-06" /> - <width sOffset="499.85808436021949" a="3.8090429066784632" b="-0.00041889172127749412" c="-0.0003085128565372355" d="1.9451394968639301e-05" /> - <width sOffset="500.65424062733291" a="3.8085236642208828" b="-0.00087315194587178169" c="-0.0002624893080542648" d="1.9417429339152403e-05" /> - <width sOffset="510.66732543987956" a="3.7929568026626299" b="-0.00028932417310236912" c="0.00032175198706957403" d="1.9226897012633993e-05" /> - <width sOffset="513.09154536401854" a="3.7944202238560689" b="0.0016096513038264886" c="0.000184275073404556" d="-5.6782440184986393e-06" /> - <width sOffset="520.68041025242621" a="3.8147665392056407" b="0.0034254835282540117" c="5.7563321466295679e-05" d="-5.7300858415861868e-06" /> - <width sOffset="530.69349506497292" a="3.8490849939896328" b="0.0028547290465153197" c="-0.00010948965906108508" d="-7.7776676611143566e-06" /> - <width sOffset="531.33243248144151" a="3.8508622602905578" b="0.0027052894777451035" c="-0.00045854433986205903" d="1.2075003722036241e-05" /> - <width sOffset="532.08826600446105" a="3.8526502635147635" b="0.0020328178907018124" c="-0.00033319258876645882" d="7.4125768029232154e-06" /> - <width sOffset="540.70657987751952" a="3.8501667343348531" b="-0.0020585838757934665" c="-0.00013799552535709322" d="7.3938418213851368e-06" /> - <width sOffset="548.94264008897028" a="3.8279822541263249" b="-0.0028270302954120623" c="0.00022026979413096722" d="1.3510319708723084e-05" /> - <width sOffset="550.71966469006622" a="3.823729936714213" b="-0.0019161912805435949" c="0.00029276615793915928" d="1.4494919727075099e-05" /> - <width sOffset="552.82333065425019" a="3.8211294624559953" b="-0.00049198896731384475" c="7.8250791554288103e-05" d="-1.8898027389385973e-06" /> - <width sOffset="560.73274950261293" a="3.8211983165209595" b="0.00039117562527111354" c="3.2103834917899737e-05" d="-1.976332283816405e-06" /> - <width sOffset="570.74583431515953" a="3.8263498812543451" b="0.00043964017244295882" c="-2.8193526825986386e-05" d="-1.9292876240824602e-06" /> - <width sOffset="580.75891912770624" a="3.8259884290900592" b="-0.00070527011829648082" c="-9.1236717462691354e-05" d="-1.2999779447372681e-06" /> - <width sOffset="584.45157057239294" a="3.8220745819480713" b="-0.0014322591404737021" c="-0.0022334423305816072" d="0.00044040672212289882" /> - <width sOffset="588.11809724321938" a="3.8085060007690319" b="-4.8496147016480347e-05" c="-3.282671709752109e-06" d="6.8192883109709662e-07" /> - <width sOffset="590.77200394025283" a="3.8083669225864707" b="-5.1511029992528604e-05" c="2.1909799332136766e-07" d="1.1417907290668108e-08" /> - <width sOffset="600.78508875279954" a="3.8078845682346576" b="-4.3688994291290095e-05" c="1.7038869165038053e-06" d="6.9654717409576286e-08" /> - <width sOffset="606.55452360946276" a="3.8077026003952605" b="-1.7072405277602251e-05" c="6.330383513474381e-07" d="-9.9407000728456009e-09" /> - <width sOffset="610.79817356534613" a="3.8076407915069863" b="-1.2236672162538244e-05" c="6.1842489526596249e-07" d="-1.559726665376487e-09" /> - <width sOffset="620.81125837789284" a="3.8075787032483852" b="-3.2113363410431721e-07" c="7.8881927315661629e-08" d="1.6446254725170673e-07" /> - <width sOffset="622.85265431264384" a="3.8075797755119138" b="2.0570178757189515e-06" c="0.00010555703688577801" d="-4.6460060095284827e-06" /> - <width sOffset="622.98283506923758" a="3.8075818219243516" b="2.9303799718142688e-05" c="1.9973655476522161e-05" d="-1.6429386667586347e-06" /> - <width sOffset="630.82434319043944" a="3.8082475998043805" b="3.9481765629743914e-05" c="-2.0074830572692001e-05" d="-1.6216366156855548e-06" /> - <width sOffset="638.86784264127391" a="3.8064224768546806" b="-0.00059821138185630501" c="-0.0026416212589168309" d="0.00036829346256349121" /> - <width sOffset="640.83742800298614" a="3.7978106589549698" b="-0.0067178830361194364" c="-0.00046654297710780419" d="0.00036799828247725255" /> - <width sOffset="642.97990417804147" a="3.7848952705212753" b="-0.0036494357202538552" c="0.0018500110619293498" d="0.00036438218653678001" /> - <width sOffset="643.51263256801008" a="3.7835312350292085" b="-0.0013680944033491415" c="8.2621023617480185e-05" d="-1.1477612812016471e-06" /> - <width sOffset="650.85051281553285" a="3.7774875231975331" b="-0.00034096989940944145" c="5.9053635393138513e-05" d="-1.2585879915694504e-06" /> - <width sOffset="660.86359762807945" a="3.7787306554658864" b="0.00046308307274724181" c="2.153430942539219e-05" d="-1.0535410073823176e-06" /> - <width sOffset="670.87668244062615" a="3.7844689335889843" b="0.00057744283951158509" c="-1.2065230181552245e-05" d="-1.0349607778814237e-06" /> - <width sOffset="673.87642900105925" a="3.7860646101755879" b="0.00047711835423412761" c="-2.0408480993413913e-05" d="2.7073442939178595e-07" /> - <width sOffset="680.88976725317275" a="3.788500366148738" b="0.00023080496622672291" c="-1.5530542156052795e-05" d="2.9215282997733914e-07" /> - <width sOffset="690.90285206571946" a="3.7895476158521806" b="7.6630595943951308e-06" c="-5.2147684034715088e-06" d="-3.6834709080924053e-07" /> - <width sOffset="693.05011926205907" a="3.7895363796318673" b="-1.9827018797653658e-05" c="-0.00017529500105053001" d="7.5300516076345332e-06" /> - <width sOffset="693.3239853917371" a="3.7895179567645676" b="-0.00011414742414576346" c="-0.00013548546773361128" d="5.9301737960145815e-06" /> - <width sOffset="700.91593687826605" a="3.7834372228379429" b="-0.0011459403988704213" c="2.6895782881366023e-06" d="6.009306187886901e-06" /> - <width sOffset="710.92902169081276" a="3.778265412836654" b="0.00071543433381564096" c="0.0001838953051482164" d="6.2240834121368803e-06" /> - <width sOffset="712.91545209188735" a="3.780460992915502" b="0.0015197037226934041" c="5.5980464005547787e-05" d="-2.8825812117681961e-06" /> - <width sOffset="720.94210650335935" a="3.7947751101756895" b="0.0018612256546364056" c="-1.3149317273029549e-05" d="-2.9613829059232908e-06" /> - <width sOffset="729.72620677678401" a="3.8081025156901349" b="0.00094471118652545479" c="-0.00029493419752715333" d="5.9362608541358293e-06" /> - <width sOffset="730.01683304568951" a="3.8083523080845394" b="0.00077478413011211025" c="-0.00021795515115176687" d="5.2802759505763613e-06" /> - <width sOffset="730.95519131590606" a="3.8088917829033777" b="0.00037969219910348082" c="-0.00020255857309853817" d="5.6230216084631591e-06" /> - <width sOffset="740.96827612845277" a="3.7980298956441971" b="-0.0019854562030325686" c="-3.4823415764181243e-05" d="5.695402059988759e-06" /> - <width sOffset="747.75898502800351" a="3.7847248891378533" b="-0.0016704989083449321" c="-2.3075656908606828e-05" d="-2.2315009903476826e-06" /> - <width sOffset="749.8013369062586" a="3.7811978790549539" b="-0.0017926802495947562" c="-0.00034061405808030764" d="1.6668129938434853e-05" /> - <width sOffset="750.98136094099937" a="3.778635570883202" b="-0.002526916851048255" c="-0.00028663875767076118" d="1.4484073769722907e-05" /> - <width sOffset="760.99444575354607" a="3.7391354056227684" b="-0.0039105923794052477" c="0.00014686875950979894" d="1.4575241825595971e-05" /> - <width sOffset="766.19285502601178" a="3.7248229632239056" b="-0.0012020041887673646" c="0.00030693389119465405" d="-1.0291021499797345e-05" /> - <width sOffset="771.00753056609267" a="3.7250021929170423" b="0.0010378983953061641" c="0.00015740215668857673" d="-1.0387829532911346e-05" /> - <width sOffset="781.02061537863938" a="3.7407475319958121" b="0.0010655511209280444" c="-0.00015473723139303717" d="-1.0373771745951453e-05" /> - <width sOffset="782.95132706535423" a="3.7421533379576495" b="0.00035203586229527891" c="-0.00015026610315386373" d="4.2670145837572661e-06" /> - <width sOffset="786.45159326597172" a="3.7417275074041711" b="-0.00054307022125994926" c="-0.00010429354473118227" d="6.9164084017689355e-06" /> - <width sOffset="791.03370019118597" a="3.7377147752292137" b="-0.0010631939803682428" c="-8.8844208437756386e-06" d="6.8929755382238436e-06" /> - <width sOffset="801.04678500373268" a="3.7330982240528501" b="0.00083219290031640199" c="0.00019624473972562246" d="8.1053483738364257e-06" /> - <width sOffset="801.26808721476436" a="3.7332920890501962" b="0.00092024256017825615" c="0.00022629310375557604" d="3.5975900632388113e-06" /> - <width sOffset="802.24054666310508" a="3.7344042963539676" b="0.0013705707724847548" c="0.00028077453363056781" d="-1.1178946020514614e-05" /> - <width sOffset="811.05986981627939" a="3.7606621425313138" b="0.0037145427421357543" c="-1.523185945063884e-05" d="-1.1380471003069286e-05" /> - <width sOffset="818.92145351334375" a="3.7833933764511958" b="0.0013649567665105404" c="-0.00018103144820433412" d="-1.2105171323532104e-06" /> - <width sOffset="821.07295462882598" a="3.7854800398687072" b="0.00056916774557044889" c="-0.00018673386343794388" d="-5.8347752639110053e-07" /> - <width sOffset="821.26541380601475" a="3.7855826605430289" b="0.00049722561718545293" c="-0.00020044119129276769" d="6.959994041283857e-06" /> - <width sOffset="831.08603944137269" a="3.7777263777431012" b="-0.0014259268273347186" c="4.0642906621196006e-06" d="7.0486721396057978e-06" /> - <width sOffset="834.99688618925825" a="3.7726335771883877" b="-0.001070714742928591" c="3.3115453255417489e-05" d="1.8538382179128493e-06" /> - <width sOffset="839.99973150212418" a="3.7683379114016793" b="-0.00060017560886401226" c="-9.0650563218447325e-06" d="1.6149974095741734e-06" /> - <width sOffset="841.09912425391929" a="3.7676692720799858" b="-0.00061425175355611346" c="-3.8187353709363887e-06" d="1.0631290531443732e-06" /> - <width sOffset="851.11220906646599" a="3.7622031514051972" b="-0.0003709524831796737" c="3.3059821332943046e-05" d="7.3042063833402653e-07" /> - <width sOffset="857.31697332016267" a="3.7613487333483153" b="0.00012366592247388722" c="6.2172616443772777e-05" d="-2.2676325303540023e-06" /> - <width sOffset="861.12529387901259" a="3.7625961525883342" b="0.00049854792736925909" c="3.8241681578220297e-05" d="-1.5536170918694051e-06" /> - <width sOffset="871.1383786915593" a="3.7698626139663434" b="0.00079707667654265661" c="-1.0202742329830758e-05" d="-1.6882371960786589e-06" /> - <width sOffset="881.19095971519812" a="3.7751292517446653" b="8.0137572723755664e-05" c="-6.9069835576000832e-05" d="-7.546231039719504e-07" /> - <width sOffset="881.92100173291976" a="3.7751506503753909" b="-2.1916746368980155e-05" c="-9.7399365742744993e-06" d="-9.2143898911900184e-07" /> - <width sOffset="891.1645483166526" a="3.7733881005560983" b="-0.0004381718200771002" c="-3.5080196227438544e-05" d="-9.1227605598563697e-07" /> - <width sOffset="899.25930798161312" a="3.7670586898846188" b="-0.0011854343675308341" c="2.2748435129234266e-05" d="5.6707845432229214e-07" /> - <width sOffset="901.17763312919931" a="3.7648723581398222" b="-0.0010918960797448602" c="2.7359004834227823e-05" d="5.5976464409386035e-07" /> - <width sOffset="911.1907179417459" a="3.7572441398486029" b="-0.000375630862490676" c="4.6029789494174438e-05" d="5.4966254793289455e-07" /> - <width sOffset="915.55479831292462" a="3.7565271880835893" b="5.7529834479547661e-05" c="5.0210641846298768e-05" d="-1.8465114228366038e-06" /> - <width sOffset="921.20380275429261" a="3.7581215940731827" b="0.00044803664261209436" c="1.8676265520883877e-05" d="-1.7710140757829123e-06" /> - <width sOffset="931.2168875668392" a="3.7627023650406564" b="0.00028935516827136932" c="-3.4498122266265526e-05" d="-1.9112071323674777e-06" /> - <width sOffset="934.25548392754683" a="3.7632094551000614" b="2.6764515384801283e-05" c="-1.2325478267565086e-05" d="-4.3410612407716933e-08" /> - <width sOffset="941.22997237938591" a="3.76278184200069" b="-0.0001514982272592202" c="-1.3684252644983535e-05" d="8.6293254297105236e-08" /> - <width sOffset="947.94074892571882" a="3.761174986730623" b="-0.00032350362432756582" c="-0.00021652957260762259" d="4.640214658064877e-05" /> - <width sOffset="949.71737516687392" a="3.7601769989679896" b="-0.00065349654781717914" c="-7.9161753806135794e-06" d="4.6915938569076626e-05" /> - <width sOffset="951.24305719193251" a="3.7593281588917242" b="-0.00035003219612419231" c="0.00020604916284479367" d="4.631845682264037e-05" /> - <width sOffset="951.67379824233512" a="3.7592193172891477" b="-0.00014674304941733829" c="0.00013643642061544889" d="-5.1522940914064857e-06" /> - <width sOffset="961.25614200447922" a="3.7658076312134936" b="0.0010487471091340304" c="-1.0868563865213634e-05" d="-5.1017585767008119e-06" /> - <width sOffset="969.15492735620262" a="3.7708991551228404" b="-7.7858347545045788e-05" c="-7.2690780168698413e-05" d="2.221297852296628e-06" /> - <width sOffset="970.19609113244212" a="3.7707418004816358" b="-0.00022200055462305319" c="-0.00034321628429666816" d="1.6772383791807875e-05" /> - <width sOffset="971.26922681702592" a="3.7701290370214586" b="-0.00090068959123499226" c="-0.00028991812671532173" d="1.6831299346877536e-05" /> - <width sOffset="981.28231162957252" a="3.7489400791141385" b="-0.001644026661172497" c="0.00020961736190569052" d="1.8844807770455496e-05" /> - <width sOffset="982.68112679433705" a="3.7471021235741215" b="-0.00094697477798923136" c="0.00029298828582649566" d="1.4545874309110439e-05" /> - <width sOffset="983.37105262536841" a="3.7465930198595263" b="-0.00052192299876006659" c="0.00015509033977456811" d="-2.7327814604761371e-06" /> - <width sOffset="991.29539644211923" a="3.7508361933563377" b="0.0014212384718478414" c="8.6261973224268285e-05" d="-2.7057771291091791e-06" /> - <width sOffset="1001.3084812546658" a="3.7709995488313339" b="0.0023348765761207146" c="3.0127338930080591e-06" d="-2.8822610812424222e-06" /> - <width sOffset="1011.3215660672125" a="3.791787338295296" b="0.0015282674605310814" c="-7.8524167298951706e-05" d="-3.291251966427978e-06" /> - <width sOffset="1018.5526883622668" a="3.7974880145478611" b="-0.00012365835549185168" c="-0.00029254575389211232" d="5.8828307670974022e-06" /> - <width sOffset="1018.6597484458047" a="3.79747142977395" b="-0.00018609601662228793" c="-0.00028820931904514056" d="8.6358821442817496e-06" /> - <width sOffset="1021.3346508797591" a="3.7950767576110662" b="-0.001542587755103681" c="-0.00021262763778135156" d="1.0376856432812422e-05" /> - <width sOffset="1031.3477356923058" a="3.7687298950719619" b="-0.0026794958832404153" c="9.5419433082212415e-05" d="1.075070656035887e-05" /> - <width sOffset="1035.9147994692478" a="3.7595068456892218" b="-0.0011352055906382057" c="0.00015399393709922526" d="-7.9121978270553918e-07" /> - <width sOffset="1036.3798395906504" a="3.7590121530553047" b="-0.00099249220529390577" c="0.00013117458014796755" d="-3.9356051953080917e-06" /> - <width sOffset="1041.3608205048524" a="3.7568366739646928" b="2.1334842907514643e-05" c="6.9208246398164193e-05" d="-4.2310381711063317e-06" /> - <width sOffset="1051.3739053173992" a="3.7597415809687607" b="0.00013467555970216255" c="-5.8185156049811093e-05" d="-4.3482080693332012e-06" /> - <width sOffset="1052.8949381729037" a="3.7597965119572914" b="-7.2506780656544575e-05" c="-6.6946960213916048e-05" d="1.3682462721932959e-06" /> - <width sOffset="1056.3280698824767" a="3.7588138884702742" b="-0.00048380217836552783" c="-2.0381457760591789e-05" d="1.5276449150964916e-06" /> - <width sOffset="1061.3869901299458" a="3.7560425419974037" b="-0.00057272896181982755" c="3.6163102320462754e-06" d="1.5390661276820585e-06" /> - <width sOffset="1071.4000749424924" a="3.7522154518991675" b="-3.7379187363389271e-05" c="5.3009111953303649e-05" d="3.8829460503503029e-07" /> - <width sOffset="1072.2539236634843" a="3.7522224241411228" b="5.3993604964990439e-05" c="-8.1703817875825967e-06" d="-9.8433126703183686e-07" /> - <width sOffset="1073.1148478361604" a="3.7522622246216057" b="3.773671585360688e-05" c="1.3195539016289076e-05" d="4.5313750218633511e-07" /> - <width sOffset="1081.413159755039" a="3.7537429866900958" b="0.00035034995103734893" c="2.9057263937538969e-05" d="4.7275986603170036e-07" /> - <width sOffset="1089.1642607190179" a="3.7584244884744615" b="0.00088601114700953966" c="3.9916121603096931e-05" d="1.0909481567665381e-06" /> - <width sOffset="1089.5741574126796" a="3.7587944431657085" b="0.00091928400748899144" c="0.00012060251893196903" d="-5.1432634725453097e-06" /> - <width sOffset="1091.4262445675859" a="3.7608780557044081" b="0.00131308907875297" c="9.2155764125287175e-05" d="-4.2508561435663958e-06" /> - <width sOffset="1101.4393293801324" a="3.7789982725412972" b="0.0018800197172414298" c="-3.8913512966402081e-05" d="-4.2936025349024144e-06" /> - <width sOffset="1109.4831128363771" a="3.7893683280850157" b="0.000420576134081742" c="-0.00037965442947570348" d="1.6658068400627073e-05" /> - <width sOffset="1111.2175187123999" a="3.7890426265345454" b="-0.00074604302043612116" c="-0.00033982717703994375" d="1.8540730340211135e-05" /> - <width sOffset="1111.452414192679" a="3.7888488744335156" b="-0.00090262175265464579" c="-0.00032674977146632727" d="1.8232781288860801e-05" /> - <width sOffset="1121.4654990052259" a="3.7653547507277514" b="-0.0019620099977889285" c="0.00022425266007688956" d="1.7824351004912877e-05" /> - <width sOffset="1123.8378372071816" a="3.7622002725431987" b="-0.00059705796320289658" c="0.00017245372120317103" d="-3.405700841674119e-07" /> - <width sOffset="1127.6147852470567" a="3.7623869762787083" b="0.00069106448477880339" c="0.00038739742708453212" d="-1.9188877976303442e-05" /> - <width sOffset="1131.4785838177725" a="3.7697336821410206" b="0.0028253069458128739" c="0.00016351718461579071" d="-1.9019227115943702e-05" /> - <width sOffset="1141.4916686303191" a="3.7953242747480243" b="0.000379220136489564" c="-0.00041178897478838088" d="-1.7905997664060559e-05" /> - <width sOffset="1142.5111451347561" a="3.7952639224213982" b="-0.00051622908019826501" c="-0.00036512519034014067" d="-1.8873617495276863e-05" /> - <width sOffset="1143.1461255607167" a="3.7947840764290288" b="-0.0010027533137086473" c="6.9872032073708474e-05" d="-2.4152785637269493e-06" /> - <width sOffset="1151.5047534428656" a="3.7898736630251459" b="-0.00034092702193633988" c="1.4708885534720375e-05" d="-2.7951887036246924e-06" /> - <width sOffset="1161.5178382554125" a="3.7851284967485483" b="-0.00088711690323461424" c="-6.5052694531874165e-05" d="-1.9517877055375448e-06" /> - <width sOffset="1163.0166572452154" a="3.7836461591816057" b="-0.0010952751604862204" c="-7.5917962146660424e-05" d="3.6027001696650483e-06" /> - <width sOffset="1164.3809167107784" a="3.7820197687203567" b="-0.0012823026787119876" c="0.00021339226501115762" d="-8.6227584303747232e-06" /> - <width sOffset="1171.5309230679591" a="3.7806086121555307" b="0.00044675616889727093" c="2.5115400562439113e-05" d="-8.5217732317443652e-06" /> - <width sOffset="1176.8225597659341" a="3.7824132507779611" b="-3.3059077087812909e-06" c="4.9297585945545555e-05" d="3.1065620716672347e-06" /> - <width sOffset="1180.0745708355939" a="3.7830306908378439" b="0.00041588773253283884" c="1.4184176033388109e-06" d="3.2431191716933525e-06" /> - <width sOffset="1181.5440078805057" a="3.7836551644015044" b="0.0004410643520707453" c="8.1652213755259451e-06" d="8.6241868611730317e-07" /> - <width sOffset="1191.5570926930523" a="3.789756048003746" b="0.00086398558437967145" c="3.7939796671192344e-05" d="8.2188626049623282e-08" /> - <width sOffset="1195.4128642475853" a="3.7936561403774212" b="0.0011602256505273869" c="7.0597447977292877e-05" d="-3.505399278847844e-06" /> - <width sOffset="1201.5701775055991" a="3.802658241836403" b="0.0016309114359167438" c="1.3377272682501752e-05" d="-3.1082374976049032e-06" /> - <width sOffset="1211.5832623181457" a="3.8172094720255751" b="0.00096389387969009774" c="-7.8124167704834123e-05" d="-2.9472132284875827e-06" /> - <width sOffset="1213.7251968486914" a="3.8188866829219892" b="0.00058865576161750495" c="-0.00022320271964581129" d="3.5003740186458245e-06" /> - <width sOffset="1216.4368217667102" a="3.8189114987352033" b="-0.00054461454892117318" c="-0.00012808678383229615" d="6.3263526177987288e-06" /> - <width sOffset="1221.5963471306923" a="3.813560711771868" b="-0.0013611127258620105" c="-3.1691590099327982e-05" d="6.3782848982320562e-06" /> - <width sOffset="1230.7527376001626" a="3.8033372248510529" b="-0.00033721748245295775" c="2.7564739801624846e-05" d="-6.7937770099872618e-07" /> - <width sOffset="1231.6094319432391" a="3.8030681358401162" b="-0.00029148420638227" c="2.4447038325118366e-05" d="-6.7478239950057686e-07" /> - <width sOffset="1241.6225167557857" a="3.8019231507892082" b="-4.8685005681174822e-06" c="1.4667541155901471e-06" d="-6.5211562632784305e-07" /> - <width sOffset="1250.6146090434238" a="3.8015238308780486" b="-0.00013667587924739901" c="0.00023402255541725016" d="-1.1131168308775583e-05" /> - <width sOffset="1251.1946279094152" a="3.8015211145623109" b="0.00012356480929837544" c="0.00011172673361628519" d="-6.0632075508679524e-06" /> - <width sOffset="1251.6356015683323" a="3.8015968095949946" b="0.00021856478892439573" c="0.00010293244944873373" d="-6.9279923989496935e-06" /> - <width sOffset="1261.6486863808789" a="3.8071502935240691" b="0.000196067114441472" c="-0.00010313533867086722" d="-7.0042335901297255e-06" /> - <width sOffset="1266.8607310113891" a="3.8043787796940904" b="-0.0014498434772937335" c="2.34653898737432e-05" d="5.678401672532953e-06" /> - <width sOffset="1269.2396468550342" a="3.8011389678723142" b="-0.0012417927780843517" c="7.0140454851040922e-05" d="-4.8298069850802836e-06" /> - <width sOffset="1271.6617711934257" a="3.7984740526052194" b="-0.00098701986005070882" c="3.9157062590084623e-05" d="-4.3140475839700145e-06" /> - <width sOffset="1281.6748560059723" a="3.7881858949511593" b="-0.0015004572838834722" c="-9.0846402404793993e-05" d="-3.3647106509663545e-06" /> - <width sOffset="1282.7366259619557" a="3.7864863107688058" b="-0.0017047529198119952" c="-0.0013139918444496472" d="0.0001875681509234445" /> - <width sOffset="1283.65013322031" a="3.7839754728296962" b="-0.0036358607545659422" c="0.0013546333494673371" d="-9.592811295870056e-05" /> - <width sOffset="1286.3095568616725" a="3.7820825704762457" b="0.0015338626039692205" c="-0.00015935724588884173" d="-0.00027682659573861559" /> - <width sOffset="1288.178102886319" a="3.7825862671300179" b="-0.0019612605769137939" c="-0.00031799257030316517" d="1.4379852693190874e-05" /> - <width sOffset="1291.6879408185189" a="3.7724069716346138" b="-0.0036620307576633922" c="-0.000175308120240263" d="1.3717950689138867e-05" /> - <width sOffset="1301.7010256310657" a="3.7319338977795384" b="-0.0030466188486651937" c="0.00024054122889705473" d="1.2063969544938566e-05" /> - <width sOffset="1305.0762066456707" a="3.7248550706747339" b="-0.0010105857891470108" c="0.00036554637819930609" d="2.648134532560804e-06" /> - <width sOffset="1305.1028132258643" a="3.7248284412667467" b="-0.00099112828719196116" c="0.00063764764317973406" d="-2.3769997231326693e-05" /> - <width sOffset="1311.7141104436123" a="3.7392779670439671" b="0.0043233215725938211" c="0.0001712379494764427" d="-2.3212495357411876e-05" /> - <width sOffset="1320.2508323809955" a="3.774223100682252" b="0.0021720680194412434" c="-0.00040427949625264749" d="-1.4190430545003828e-05" /> - <width sOffset="1321.3622016804568" a="3.7761182487391571" b="0.0012208788000055621" c="-0.0001397371691547678" d="2.5714785223417224e-06" /> - <width sOffset="1321.7271952561589" a="3.7765453708658399" b="0.0011199001814499892" c="-0.0001388016851872466" d="1.9332469760611606e-06" /> - <width sOffset="1331.7402800687055" a="3.7757833559629153" b="-0.0010782730540957637" c="-8.6588150434419145e-05" d="2.2496256096602212e-06" /> - <width sOffset="1340.2592618301055" a="3.7617044289281578" b="-0.0020637722254563231" c="6.4304777170445023e-05" d="9.3983701790920818e-06" /> - <width sOffset="1340.3043713727952" a="3.7616114648214625" b="-0.002057913333895542" c="-0.00010964279432340313" d="1.7030007118489024e-05" /> - <width sOffset="1341.7533648812523" a="3.7584511677681354" b="-0.0022683890295431123" c="-6.0437578979652244e-05" d="6.713923227843477e-06" /> - <width sOffset="1351.7664496937989" a="3.7364183243501534" b="-0.0014592707954344209" c="0.00014101088945687166" d="6.407183326900408e-06" /> - <width sOffset="1356.0062380810357" a="3.7332544238919345" b="8.1964712931851321e-05" c="0.00010818826615321878" d="-5.0374274456401491e-06" /> - <width sOffset="1357.9101337668485" a="3.7337678743330951" b="0.00043914377443959667" c="0.00010256945400166044" d="-5.3948862956617976e-06" /> - <width sOffset="1361.7795345063455" a="3.7366902486987157" b="0.00099058746219005079" c="4.7087791098402815e-05" d="-4.9042051651247048e-06" /> - <width sOffset="1371.7926193188923" a="3.7464067132946113" b="0.00045846124916262522" c="-9.8088646592692664e-05" d="-5.1349901279950429e-06" /> - <width sOffset="1372.6889497535844" a="3.7467351430323248" b="0.00027024509041503268" c="6.0060952622181257e-05" d="-1.1726402224388242e-05" /> - <width sOffset="1373.8093709405371" a="3.747096835147663" b="0.00036067022484484484" c="6.1916324590352123e-05" d="-3.800116094622681e-06" /> - <width sOffset="1381.8057041314389" a="3.7519969021974875" b="0.00062192375056804579" c="-2.7849443074427724e-05" d="-3.8525055423599644e-06" /> - <width sOffset="1390.0545483377493" a="3.753069749674351" b="-0.00062394076587971535" c="-6.9184543910494898e-06" d="1.2630674932782623e-06" /> - <width sOffset="1391.8187889439855" a="3.7519543698941575" b="-0.00063655833930082936" c="9.0863372957092063e-06" d="2.3166984366247529e-06" /> - <width sOffset="1394.5951494816109" a="3.7503066724684229" b="-0.00053253187208462895" c="0.00025616145363024397" d="-1.1164789977786276e-05" /> - <width sOffset="1401.8318737565321" a="3.7556367796710566" b="0.0014209016243325451" c="1.212942516602304e-05" d="-1.0681434867836158e-05" /> - <width sOffset="1409.168525378084" a="3.7624961615353136" b="-0.00012595102639082725" c="-0.00011312344208898323" d="3.7878412297440625e-06" /> - <width sOffset="1411.8449585690789" a="3.761421346276232" b="-0.00065008542839015853" c="-8.8887043546026734e-05" d="2.7449244076052807e-06" /> - <width sOffset="1421.8580433816255" a="3.7487557183262488" b="-0.0016045186984599454" c="-5.015575780434736e-06" d="2.5395401242417736e-06" /> - <width sOffset="1428.395822184395" a="3.7387610040002484" b="-0.0013444608735363531" c="-2.839129924117106e-05" d="6.265136682665298e-06" /> - <width sOffset="1429.0789028652362" a="3.7378313782485337" b="-0.0013744780459651108" c="-5.7799225198253681e-05" d="3.4962792446250701e-06" /> - <width sOffset="1431.8711281941721" a="3.7336190056520628" b="-0.0016154785099854012" c="-2.6973016055889874e-05" d="4.1249080771778046e-06" /> - <width sOffset="1441.8842130067187" a="3.7188798387260116" b="-0.00091493174402491407" c="9.4413073294634988e-05" d="4.4650743288825227e-06" /> - <width sOffset="1444.0206336638214" a="3.7173996286564597" b="-0.00045037993833742717" c="0.00028192110386716376" d="-1.3875500728673743e-05" /> - <width sOffset="1451.8972978192655" a="3.7245623231738705" b="0.0014082310544575849" c="-5.0582043585582264e-05" d="-1.358463047538845e-05" /> - <width sOffset="1460.4075109984606" a="3.7245105597438939" b="-0.0024042456555194019" c="-0.0006841991712580001" d="0.00012505470007211122" /> - <width sOffset="1461.9103826318121" a="3.7197764273208862" b="-0.0036134183871912784" c="-0.00012385624451510027" d="0.00012167263964781754" /> - <width sOffset="1463.6550041594139" a="3.7137414933774942" b="-0.0029345763280251985" c="0.00016206817516077824" d="-1.90955980049109e-06" /> - <width sOffset="1465.1468344281675" a="3.7097179556035096" b="-0.0024637694151095728" c="0.00023754638963109851" d="-6.9127430174174758e-06" /> - <width sOffset="1471.9234674443587" a="3.7017794220133871" b="-0.0001965966140567146" c="0.00010002665456365776" d="-6.7368420805116966e-06" /> - <width sOffset="1479.7007253878137" a="3.7031315262557083" b="0.00013682091534301857" c="0.00012726638383144711" d="-7.7860127195796515e-06" /> - <width sOffset="1481.9365522569055" a="3.7039866067210587" b="0.00058914711045889414" c="7.7875345188566623e-05" d="-7.4576345120148343e-06" /> - <width sOffset="1491.9496370694521" a="3.7102067668843222" b="-9.4457106281372206e-05" c="-0.00014634934352407682" d="-7.1409067346217872e-06" /> - <width sOffset="1495.3466818833067" a="3.7079170981087533" b="-0.0013359840005280953" c="-0.0001968087010075194" d="-4.7111434526751752e-06" /> - <width sOffset="1497.4722369173569" a="3.704142969822716" b="-0.0022364940659595294" c="2.6496863535650984e-05" d="1.3647194352581216e-06" /> - <width sOffset="1501.9627218819987" a="3.69475789452932" b="-0.0019159700595151371" c="4.1543738953507432e-05" d="1.1562907823931849e-06" /> - <width sOffset="1511.9758066945453" a="3.6808992123525419" b="-0.00073621247685151875" c="8.1214059270297165e-05" d="-1.9655056685967032e-07" /> - <width sOffset="1514.4995796852777" a="3.6795553069128832" b="-0.000330036523638336" c="1.1688831533280441e-05" d="-3.5198448022557647e-07" /> - <width sOffset="1521.9888915070921" a="3.677591325092008" b="-0.0002141821236569727" c="3.9287353150029888e-06" d="2.8096844967560157e-07" /> - <width sOffset="1532.0019763196387" a="3.6761226764812625" b="-5.0993339438382022e-05" c="-8.3115160464176787e-06" d="3.2512882623498031e-06" /> - <width sOffset="1535.2830345971179" a="3.6759807291290612" b="-5.3077237649272989e-07" c="0.000259934386836452" d="-5.1653941275666126e-06" /> - <width sOffset="1535.4932789213071" a="3.6759920593287498" b="0.00010808371388606984" c="0.00021703131189902415" d="-6.0958638132144063e-06" /> - <width sOffset="1542.0150611321853" a="3.6842371270527976" b="0.0021611077227860049" c="8.8744031241088034e-05" d="-6.7677953216918871e-06" /> - <width sOffset="1552.0281459447322" a="3.7079797275698598" b="0.0019026553529490166" c="-0.00011535384178423073" d="-6.8068165930961833e-06" /> - <width sOffset="1552.4082987179781" a="3.7086859828335967" b="0.0018120001028361591" c="-8.3752820891715951e-06" d="4.3475177338878105e-07" /> - <width sOffset="1562.0412307572788" a="3.7257522985249913" b="0.0017716693156018782" c="3.2191622385902016e-06" d="4.8633642910299541e-07" /> - <width sOffset="1568.7084587975287" a="3.7378516559256285" b="0.0018794508714187054" c="0.00010313888478095915" d="-5.0782782314010206e-06" /> - <width sOffset="1571.1119618723674" a="3.7428942274003445" b="0.0022872311199619668" c="-0.00012628507742714978" d="9.1892458979515416e-06" /> - <width sOffset="1572.0543155698253" a="3.7449451530215176" b="0.0020737016923091049" c="-9.9063360108090804e-05" d="8.9771570373368702e-06" /> - <width sOffset="1582.0674003823719" a="3.7647894689534636" b="0.0027900416263755678" c="0.00017265738852070177" d="9.3655587742707595e-06" /> - <width sOffset="1584.1028314225391" a="3.7712626997150798" b="0.0036093099967588272" c="-0.0001222089232340972" d="-5.2852770839077144e-06" /> - <width sOffset="1586.5970847038338" a="3.7794229204443353" b="0.0029010261072498172" c="-0.00012357269844327998" d="2.9754910295868563e-06" /> - <width sOffset="1592.0804851949188" a="3.7921054424936624" b="0.001814227261395558" c="-7.5993956210687469e-05" d="2.9005091003298689e-06" /> - <width sOffset="1602.0935700074654" a="3.8055640677559204" b="0.0011647907808179803" c="1.3454259984671912e-05" d="2.4788257775455956e-06" /> - <width sOffset="1605.97912397338" a="3.8104384648198248" b="0.0013816177241154002" c="1.147920444222117e-05" d="-9.7213608243987056e-07" /> - <width sOffset="1612.106654820012" a="3.8191117179740917" b="0.0014127947688815875" c="-8.733782068168202e-06" d="-4.1483433499754193e-07" /> - <width sOffset="1621.0588594411774" a="3.8307617815829964" b="0.0011566846410215718" c="-6.7926496991127614e-05" d="2.6803062197451935e-06" /> - <width sOffset="1622.1197396325588" a="3.8319156366369826" b="0.0010216106775990136" c="-6.4160921104024091e-05" d="-8.5812030893817175e-07" /> - <width sOffset="1632.1328244451054" a="3.8348507240076346" b="-0.00052139704577909584" c="-8.2838667561479167e-05" d="-1.2245429426597997e-06" /> - <width sOffset="1636.6215592561102" a="3.8307304656030809" b="-0.001339097660199141" c="-0.001561466609447581" d="0.00022483690571866236" /> - <width sOffset="1641.1295850133929" a="3.8135592730842305" b="-0.0017097544460295876" c="5.0860643468624674e-05" d="-1.471883717660147e-05" /> - <width sOffset="1642.145909257652" a="3.8118586914192427" b="-0.0016519825577179694" c="3.5551978651482985e-05" d="-3.6110125797101372e-07" /> - <width sOffset="1652.1589940701986" a="3.7985192371353662" b="-0.0010486266621381113" c="3.0257236707627198e-05" d="8.3907272750234795e-08" /> - <width sOffset="1657.1497355888509" a="3.7940498749186453" b="-0.00074034480576920872" c="-1.3117663024164898e-05" d="2.9421809395497841e-06" /> - <width sOffset="1658.1354396465763" a="3.7933101865467695" b="-0.00075762909386944619" c="0.00012068778373296022" d="-1.4208893889235669e-06" /> - <width sOffset="1662.1720788827454" a="3.7921249942660822" b="0.0001472591321537188" c="0.00010004476486418886" d="-1.505126121377008e-06" /> - <width sOffset="1672.1321097205093" a="3.8020292113951122" b="0.0016922214864866125" c="0.00018957508098310852" d="-4.1454444225701274e-05" /> - <width sOffset="1672.185163695292" a="3.8021195178822698" b="0.0017119868611226051" c="0.00017821829400495345" d="-4.0848311443301561e-05" /> - <width sOffset="1675.6916921339894" a="3.8085527846286236" b="0.0014550610354627591" c="-0.00019316798914861239" d="-3.3597189104738159e-05" /> - <width sOffset="1676.9545564536916" a="3.8100145935133867" b="0.00080642607169241314" c="-8.5007393781621929e-05" d="-1.4079680106344037e-05" /> - <roadMark sOffset="0" color="standard" width="0.14480015053551021" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14480000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.8212742921510543" b="0.00085324239961197474" c="0.00016047064979573801" d="6.9910533313926834e-05" /> - <width sOffset="1.3036140141764099" a="3.8228141742275259" b="0.0016280458484507669" c="0.00028879807268374877" d="-2.775743244947266e-05" /> - <width sOffset="9.6578516207850988" a="3.8403869049013846" b="0.0006415740238231468" c="-0.00011410236875136407" d="2.4530858647898589e-06" /> - <width sOffset="10.013084812546658" a="3.8406005246056205" b="0.00056143679582929679" c="-0.00011277971527590398" d="2.4957788460515153e-06" /> - <width sOffset="16.043916579535537" a="3.8404319936660749" b="-0.00052655277668090753" c="-8.1366612886243336e-05" d="2.2642689271054841e-06" /> - <width sOffset="20.026169625093317" a="3.8371877808413712" b="-0.0010668750257611897" c="-4.4283898884817101e-05" d="3.7013482623402912e-06" /> - <width sOffset="30.039254437639975" a="3.8257809810398697" b="-0.00084039962974690212" c="7.6543385500511574e-05" d="1.9706361029588571e-06" /> - <width sOffset="33.233426017371293" a="3.8239417736872641" b="-0.00029109660001900694" c="-0.00015154596054744697" d="2.5229522811587417e-05" /> - <width sOffset="38.601777390847971" a="3.8219149312025165" b="0.00026308319326880667" c="0.0012723158881804339" d="-0.00084689171775700813" /> - <width sOffset="39.874932233243676" a="3.8225644844262807" b="-0.00061544597207720958" c="-0.0019988151866094923" d="0.00031370171021573176" /> - <width sOffset="40.052339250186634" a="3.8223941423600221" b="-0.0012950340146979872" c="-0.0018340842232421064" d="0.00031514405315477442" /> - <width sOffset="43.387776481577745" a="3.8093643080931381" b="-0.0030119130462139083" c="0.0012359743986048589" d="0.00025120238948287278" /> - <width sOffset="43.806026403060564" a="3.8083391678053156" b="-0.0018461898954694241" c="0.00042127447887274177" d="-4.0552333565852132e-05" /> - <width sOffset="47.411795392328656" a="3.8052583430816318" b="-0.00038988500273230524" c="0.00026389887444064006" d="-2.2836994089494894e-05" /> - <width sOffset="50.065424062733292" a="3.8056553055637949" b="0.00052825736079014154" c="9.5564756959662698e-05" d="-2.8755679093183733e-05" /> - <width sOffset="52.958920695157659" a="3.8072873008486896" b="0.00035903448586068788" c="6.3409605109879076e-05" d="-4.6629816679120069e-06" /> - <width sOffset="60.078508875279951" a="3.811374834750386" b="0.00055285589556469152" c="-3.1676439159057196e-05" d="-2.7452897221448172e-06" /> - <width sOffset="60.581625678088926" a="3.8116446180755568" b="0.00051889728109608211" c="-8.7127907681100225e-05" d="6.6379347547245046e-07" /> - <width sOffset="70.091593687826617" a="3.809270424231852" b="-0.00095817051526855736" c="-8.0700152776822019e-05" d="2.7756156781218034e-06" /> - <width sOffset="71.841599823788883" a="3.8073613497215941" b="-0.0012151208924659988" c="-0.0001039993310756762" d="1.9326387483062564e-05" /> - <width sOffset="76.985666164198705" a="3.8009894116012251" b="-0.00075086892659630752" c="-0.00011176305538137347" d="2.4384355410691643e-05" /> - <width sOffset="80.104678500373268" a="3.7983000667214517" b="-0.00073639918821154227" c="0.00011973923020044783" d="2.5883520500035545e-05" /> - <width sOffset="81.475289624124997" a="3.7975823336837164" b="-0.00026229495436642242" c="0.0001193316057120967" d="2.2531285755989738e-05" /> - <width sOffset="87.424714496102979" a="3.8049903737889972" b="0.0035501428320490721" c="0.0014408665513917617" d="-0.00016600891868256404" /> - <width sOffset="90.117763312919919" a="3.8217586022020091" b="0.007698845765306021" c="0.00010721233462746081" d="-0.00016178092524283638" /> - <width sOffset="94.214388293455315" a="3.8439745691988358" b="0.00043207757218660832" c="-9.3512491116491301e-05" d="1.1163686444247122e-05" /> - <width sOffset="99.588419636782078" a="3.8453285464804763" b="0.00039422837875573375" c="-5.1462090732258e-05" d="9.1239902054632933e-06" /> - <width sOffset="100.13084812546658" a="3.8455287017325697" b="0.00034645298893274897" c="-6.2746571589861324e-05" d="9.0998099528957824e-06" /> - <width sOffset="108.22672640182475" a="3.8490495624143737" b="0.0011197689986113173" c="0.00023948502469298098" d="-2.2994584009494566e-05" /> - <width sOffset="110.14393293801325" a="3.8519146176485322" b="0.0017844912480239582" c="9.0326824969770992e-05" d="-3.0069467025077539e-05" /> - <width sOffset="115.89639975219012" a="3.8594449899068888" b="-0.00016137949999371973" c="-3.5497423284960253e-05" d="-4.5702912848516101e-07" /> - <width sOffset="119.78921124112837" a="3.8582518817708968" b="-0.00045852648696034678" c="8.2489655281953159e-05" d="-5.1910515614259188e-06" /> - <width sOffset="120.1570177505599" a="3.8580941337855803" b="-0.00039995278432757752" c="8.694992412133635e-05" d="-5.1913404407332365e-06" /> - <width sOffset="130.17010256310655" a="3.8575953889713182" b="-0.00022015931666160768" c="-8.5374057139039444e-05" d="8.8558616890811953e-08" /> - <width sOffset="133.40373952549149" a="3.8559937620569986" b="-0.00076951871515621231" c="-0.00074742695606735759" d="4.3966739973108876e-05" /> - <width sOffset="138.70295150047656" a="3.8374696560002288" b="-0.0049870909788836057" c="-0.001888303714471773" d="0.00041328801523983987" /> - <width sOffset="139.87781024511833" a="3.8296743242775202" b="-0.0077126954919804194" c="-0.0016117483752643401" d="0.00059913048155706161" /> - <width sOffset="140.18318737565323" a="3.8271858015951272" b="-0.008529461595920669" c="-0.0011284406692457759" d="0.00058078042788591022" /> - <width sOffset="142.54354141861245" a="3.8084037662455215" b="-0.0041494447593592261" c="0.00019189265614781716" d="0.00017781073006461302" /> - <width sOffset="144.78629856636752" a="3.8020686605808836" b="-0.0006055651282914897" c="0.00011062427766564718" d="-2.980722986253269e-06" /> - <width sOffset="150.19627218819988" a="3.8015583380294178" b="0.00032966597681177061" c="6.3787720048751111e-05" d="-3.2801376555336423e-06" /> - <width sOffset="159.73331690626659" a="3.8076588676361114" b="0.00065132170844878256" c="-1.8421821325792451e-05" d="-1.1560228466569776e-05" /> - <width sOffset="160.20935700074654" a="3.807963501150204" b="0.00062592352252845629" c="-3.7379607974483423e-05" d="-1.1575095750833174e-05" /> - <width sOffset="161.87206823804246" a="3.8088476834631892" b="0.00040561870426116995" c="2.3562669456261713e-05" d="-5.3164121821738831e-06" /> - <width sOffset="170.22244181329319" a="3.8107822068270361" b="-0.00031298726090803197" c="-0.00010979862099207041" d="-4.8530214577796305e-06" /> - <width sOffset="177.57725725126363" a="3.8006101157407972" b="-0.0027156324306893244" c="8.1126710120434835e-05" d="-1.9082343649701033e-05" /> - <width sOffset="178.32524331982219" a="3.7986162638571614" b="-0.0026262978824842277" c="-0.0012891302425466903" d="0.00027806625602912118" /> - <width sOffset="180.23552662583984" a="3.7908334116779088" b="-0.0045073624588218295" c="0.00030330074728651733" d="0.00027287874683566308" /> - <width sOffset="181.49454006068373" a="3.7861839271924405" b="-0.002446010583081964" c="-0.00015954328777378584" d="7.2642128175344714e-05" /> - <width sOffset="188.24742533094403" a="3.7847604119746165" b="0.0053369955730912947" c="3.010995853141706e-05" d="-2.3289804690336246e-05" /> - <width sOffset="190.24861143838652" a="3.7953746659773575" b="0.0051776975894006301" c="-0.00010550695105692503" d="-2.1572844846996415e-05" /> - <width sOffset="196.93998298777544" a="3.8188332699755501" b="0.00086798817151795998" c="-0.00012476325223785971" d="-7.8933032040855186e-06" /> - <width sOffset="198.20405528430439" a="3.8197151700602907" b="0.00051473100509386634" c="-0.00034951116812191114" d="2.9279613183352152e-05" /> - <width sOffset="200.26169625093317" a="3.8195495897612082" b="-0.0005517063269941671" c="-0.00016657751067586905" d="2.8533007602075215e-05" /> - <width sOffset="204.88881974255733" a="3.8162570138625389" b="-0.00026055740796888417" c="6.5873414291660302e-06" d="6.2463700567999462e-06" /> - <width sOffset="210.27478106347982" a="3.816020678308615" b="0.00035399588865695338" c="0.00010610123687824828" d="6.2988884674916405e-06" /> - <width sOffset="210.39075993320031" a="3.8160631713563662" b="0.00037886107262746901" c="0.00010224816175937541" d="-1.6324335881073417e-07" /> - <width sOffset="215.42997962940208" a="3.8205479089018199" b="0.0013969268980494639" c="-1.7217700725373757e-05" d="-2.1778908747337867e-07" /> - <width sOffset="215.92745387840785" a="3.8212385562007931" b="0.0013796344768323744" c="0.00071500533365098911" d="-0.00011288647463134784" /> - <width sOffset="220.28039677690472" a="3.8314811453910673" b="0.0011874326034994763" c="-0.00036192997349461455" d="1.1923484149497222e-05" /> - <width sOffset="220.2878658760265" a="3.8314899942567058" b="0.0011820280174591558" c="-0.00036083105381159238" d="1.1788205754981407e-05" /> - <width sOffset="228.14320309023074" a="3.8242236913994656" b="-0.0023046507057940145" c="-0.00022095286856915432" d="3.4615379251900103e-06" /> - <width sOffset="228.38492541530024" a="3.8236537445563696" b="-0.0024108624183543483" c="-0.0033932715789442638" d="0.00056429592928660961" /> - <width sOffset="230.30095068857315" a="3.8105465223890485" b="-0.009199200803588015" c="-0.00015345381142644338" d="0.00056335717285750035" /> - <width sOffset="231.73232708845657" a="3.7987167358437279" b="-0.0061758177090255302" c="0.00054707758626926933" d="-2.1572117852434903e-05" /> - <width sOffset="240.3140355011198" a="3.7723738815689307" b="-0.0015521794669984194" c="-6.648876467226341e-06" d="-2.1502269112024377e-05" /> - <width sOffset="246.44646593699755" a="3.7576463427936933" b="-0.0040596153600707327" c="-0.00077168110478465597" d="0.00023993882461988898" /> - <width sOffset="249.40651982336701" a="3.7450912491789783" b="-0.0023210770204088482" c="0.00028913085509427113" d="-7.7717300005319681e-06" /> - <width sOffset="250.32712031366646" a="3.7431934408465866" b="-0.0018084887527194187" c="0.00026413423824095151" d="-6.1572592535295284e-06" /> - <width sOffset="252.70325948477546" a="3.7403049272807731" b="-0.00065754168023948278" c="9.1207154524185368e-05" d="-3.7405361863604945e-06" /> - <width sOffset="260.34020512621311" a="3.7389367175929689" b="8.106929373611336e-05" c="6.8651143207698606e-09" d="-4.0129066182074208e-06" /> - <width sOffset="266.32987756217847" a="3.7385602227752104" b="-0.00035075169768868531" c="-6.7335389781761627e-05" d="1.4101916587442845e-05" /> - <width sOffset="269.21876686723522" a="3.7373249739162917" b="-0.00038673036285468126" c="0.00098240999653626633" d="-6.2363529837999252e-05" /> - <width sOffset="270.35328993875976" a="3.7380596521296376" b="0.0016015909828935278" c="0.00072435129916834486" d="-8.6210987659728595e-05" /> - <width sOffset="277.42870435711296" a="3.7551172464584024" b="-0.0010957890456636333" c="-0.00089839330084252877" d="0.00017674922097655601" /> - <width sOffset="280.36637475130647" a="3.7486260434958023" b="-0.0017981676491744356" c="0.00052740815524962288" d="0.00023348073136299986" /> - <width sOffset="281.47825216242222" a="3.7475996595734919" b="0.00024059541538609631" c="0.004008479447090714" d="-0.00055550960848317025" /> - <width sOffset="282.65645013391514" a="3.7525389563083404" b="0.0073727673663522651" c="0.0021348907819204368" d="-0.0006072092184700559" /> - <width sOffset="285.62109311720673" a="3.7773385771014496" b="0.0040206630871126147" c="-0.0014372442640603346" d="0.00010015234748218395" /> - <width sOffset="287.21413967785935" a="3.7805011447753039" b="0.00020396810818373379" c="-0.00085341063570780549" d="0.00014782933710178175" /> - <width sOffset="290.37945956385312" a="3.7772845135819519" b="-0.00075524995536873762" c="0.00036025194620168755" d="0.00023926378800567477" /> - <width sOffset="291.66293848005159" a="3.7774144907185425" b="0.0013519323258675557" c="0.001517155906030198" d="-0.00014214551077941867" /> - <width sOffset="297.91153402037116" a="3.8104193357252965" b="0.003661928108482774" c="-0.00030253230039780184" d="2.560181840747028e-05" /> - <width sOffset="300.39254437639977" a="3.8180333880183408" b="0.0026335258182841846" c="-0.00019796699251811424" d="3.7217531136933072e-06" /> - <width sOffset="310.40562918894642" a="3.8282909467977846" b="-0.00021154500180476689" c="-9.2337163540269604e-05" d="2.9944789631065236e-06" /> - <width sOffset="320.41871400149307" a="3.8199210813095732" b="-0.001160008542800866" c="1.9639851262341439e-05" d="2.0662755472414941e-06" /> - <width sOffset="320.97206174401339" a="3.8192855568926953" b="-0.0011363751662647704" c="-0.00011178022446109282" d="-2.5535625658865945e-06" /> - <width sOffset="330.43179881403972" a="3.7963712698794319" b="-0.0039367273228934421" c="-0.00020778203526214812" d="-1.2949857669288268e-06" /> - <width sOffset="330.75671192976841" a="3.795070195875792" b="-0.0040721596690682935" c="-0.012844683751650364" d="0.021405863382494266" /> - <width sOffset="331.15683325553584" a="3.7927556638824154" b="-0.0040699750850091265" c="0.00042655181964338919" d="-1.039863807953032e-05" /> - <width sOffset="336.53218669388735" a="3.7815879856874783" b="-0.00038562949569431043" c="0.00022645527522047445" d="-6.9371782200619846e-06" /> - <width sOffset="340.44488362658637" a="3.7831304441229872" b="0.0010678643358409887" c="0.00015904813531293627" d="-9.7658150043656908e-06" /> - <width sOffset="350.45796843913303" a="3.7999653230043964" b="0.0013155727232585283" c="-0.00010373178002611622" d="-1.6445233079573829e-05" /> - <width sOffset="352.39639572121121" a="3.8020059116889109" b="0.00072804079235008843" c="9.216466962965482e-05" d="-2.54246135123578e-06" /> - <width sOffset="360.47105325167968" a="3.8125552112595362" b="0.0017191309206230215" c="2.3731385560157881e-05" d="-1.8550704675398054e-06" /> - <width sOffset="370.48413806422639" a="3.8302860060305357" b="0.0016364011852347342" c="-3.980185523756771e-05" d="-2.4361780405597266e-06" /> - <width sOffset="380.49722287677304" a="3.8402350679119976" b="0.00010655520139545623" c="-0.00011474951627116317" d="-2.3547105628073457e-06" /> - <width sOffset="381.2869146770721" a="3.8402464947688255" b="-7.908358811330651e-05" c="-0.00022376237528242863" d="1.9594913851785395e-05" /> - <width sOffset="390.46071380379726" a="3.8358178034081796" b="0.00076265523332283858" c="0.00013698177535794139" d="1.7733949671387733e-07" /> - <width sOffset="390.51030768931969" a="3.8358559633801472" b="0.0007762434588055615" c="0.00014540768590963487" d="-6.1111242907267912e-06" /> - <width sOffset="391.57561155530215" a="3.8368405294458712" b="0.0010652441611614196" c="0.00019343129961007068" d="-3.3448323852146663e-06" /> - <width sOffset="400.52339250186634" a="3.859462563942067" b="0.0037234161784089814" c="7.4819240304848452e-05" d="5.322084016851993e-06" /> - <width sOffset="402.3025652663232" a="3.8663539749957176" b="0.0040401893515950721" c="0.000888631467062857" d="-0.00018402046574606722" /> - <width sOffset="406.74050043828976" a="3.8857013561700509" b="0.0010545695396870507" c="-0.00026122318958241318" d="4.4564034732590833e-06" /> - <width sOffset="410.53647731441299" a="3.8861841536877484" b="-0.00073598199330895107" c="-0.00020339511205197955" d="3.1535434171309083e-06" /> - <width sOffset="411.14346544400166" a="3.885663188803627" b="-0.00097941320715121149" c="-0.00022468183734331254" d="1.2814188872009798e-05" /> - <width sOffset="417.54054304680221" a="3.8735578043382768" b="-0.0022808576580395012" c="-7.6896605111832729e-05" d="1.1772155926895778e-05" /> - <width sOffset="420.54956212695964" a="3.866319146740647" b="-0.0024238621468758697" c="3.96427706221496e-05" d="1.5324699381037924e-05" /> - <width sOffset="423.03203028867154" a="3.8607807366876572" b="-0.0019437161230825696" c="0.00011534218234566811" d="6.0001410887098741e-06" /> - <width sOffset="424.01405581049687" a="3.8589888732374824" b="-0.0016998190470223318" c="0.00014209984477466442" d="-5.3885824798543166e-06" /> - <width sOffset="430.56264693950629" a="3.8524379934948945" b="-0.00053196413435567373" c="3.6368302850515046e-05" d="-5.5232283079047449e-06" /> - <width sOffset="440.575731752053" a="3.8452128076488834" b="-0.0014649538862233648" c="-0.00013281943452931756" d="-2.2579753950728652e-06" /> - <width sOffset="442.04500155564631" a="3.8427665088594409" b="-0.0018698722937848114" c="-0.00073553564800500431" d="0.00017541397476296354" /> - <width sOffset="445.87648453171175" a="3.8346708093377888" b="0.00021911229550266554" c="0.00027551400587921896" d="-1.16880349692593e-05" /> - <width sOffset="450.05889048612789" a="3.8395515538470288" b="0.0019103755917137344" c="-4.558861910617862e-05" d="-2.13836878492496e-06" /> - <width sOffset="450.58881656459965" a="3.8405507912008363" b="0.0018602568946767988" c="-4.8687495917520919e-05" d="-2.5601866870029631e-06" /> - <width sOffset="460.60190137714631" a="3.8517259522858938" b="0.00011516554793163645" c="-0.00012895854010200504" d="-2.4601238326319387e-06" /> - <width sOffset="461.79965653186139" a="3.8516746589667292" b="-0.00020434397381836509" c="-0.00022527443663928942" d="-1.2221656565480097e-05" /> - <width sOffset="462.23306423880638" a="3.8515427836658556" b="-0.00040650255790650527" c="-5.6753803776209379e-05" d="2.2394849254758984e-06" /> - <width sOffset="470.61498618969296" a="3.8454669809067785" b="-0.00088589857065101774" c="5.4937846156522023e-06" d="1.7263335715684815e-06" /> - <width sOffset="477.55904483515269" a="3.8401582085691288" b="-0.00055986908758274884" c="4.6449864070410053e-05" d="-9.6245531144974236e-06" /> - <width sOffset="478.02146914478197" a="3.839908292451784" b="-0.00052308422974605426" c="5.2083598656302078e-05" d="-1.0180424312634117e-05" /> - <width sOffset="480.62807100223961" a="3.8387183979215478" b="-0.00045907062740937078" c="-1.7952567843878994e-05" d="-7.5565562540652094e-06" /> - <width sOffset="482.55093794485219" a="3.8377155636476004" b="-0.00061193065088345489" c="-6.4365732175976299e-05" d="5.144327745210642e-06" /> - <width sOffset="488.81573806662306" a="3.8326206149635169" b="-0.00081269813090427672" c="3.748467818836449e-06" d="7.719496147494569e-06" /> - <width sOffset="490.64115581478626" a="3.8311965461705788" b="-0.00072184553530851392" c="3.2032813980812773e-05" d="2.7559803569286758e-06" /> - <width sOffset="499.85808436021949" a="3.8294225089697695" b="0.0005710190230294955" c="0.00033083617364966636" d="-1.9301242486205534e-05" /> - <width sOffset="500.65424062733291" a="3.8300770942722799" b="0.0010611104743850463" c="0.00028274927761404086" d="-1.9455631661164149e-05" /> - <width sOffset="510.66732543987956" a="3.8495189504212033" b="0.00087152158017972652" c="-0.00030128404420838947" d="-1.9325112893171755e-05" /> - <width sOffset="513.09154536401854" a="3.8495857913950808" b="-0.00092994790467501131" c="-0.00016452142122680497" d="5.5800281379623462e-06" /> - <width sOffset="520.68041025242621" a="3.8354923581411482" b="-0.0024629335483537513" c="-3.9139683607324074e-05" d="5.5997107158456675e-06" /> - <width sOffset="521.20447816224691" a="3.83419167008842" b="-0.0024993434185279651" c="6.4804342289550461e-05" d="-2.1266938182205947e-05" /> - <width sOffset="524.17854857754469" a="3.8267722006322864" b="-0.0026782023193813883" c="-0.00018182531764777821" d="2.1915882469011496e-05" /> - <width sOffset="530.69349506497292" a="3.8076666297909529" b="-0.0022567389046347299" c="0.00026252123668127027" d="1.9319294148954498e-05" /> - <width sOffset="531.33243248144151" a="3.8063369260572339" b="-0.0018976088379950037" c="0.00063369904851014527" d="-5.3337723391355187e-07" /> - <width sOffset="533.04760293144534" a="3.8049437341788575" b="0.00027148764348991971" c="0.00063861286205870349" d="-2.9133592073443333e-05" /> - <width sOffset="540.70657987751952" a="3.8313950405980322" b="0.0049268067914020348" c="-1.2183819415546567e-05" d="-3.5768292849445181e-05" /> - <width sOffset="542.39840610185774" a="3.839522261064233" b="0.0045784448053024169" c="-0.001057980628360707" d="0.0001251333983803305" /> - <width sOffset="547.75112438841541" a="3.8529075026308428" b="0.0040081139168420101" c="-8.2511388485322846e-05" d="-1.9318079247129313e-05" /> - <width sOffset="550.71966469006622" a="3.8635732902612485" b="0.0030075309920247644" c="-0.00025104906614227237" d="-1.8673372099796853e-05" /> - <width sOffset="552.82333065425019" a="3.8686152943221752" b="0.0017033722301983019" c="-6.2903903875847274e-05" d="-2.2886496337806873e-06" /> - <width sOffset="560.73274950261293" a="3.8770203449495888" b="0.00027877932881442723" c="-0.0001188520901523337" d="-2.0591602465937185e-06" /> - <width sOffset="563.22869423787449" a="3.8769437270511551" b="-0.00035300126818113141" c="-0.00033332784327771417" d="2.3604078876534417e-05" /> - <width sOffset="570.74583431515953" a="3.8654810780613906" b="-0.001362930425415155" c="0.00019722994458908872" d="2.3984294493903201e-05" /> - <width sOffset="574.01720570136104" a="3.8639728410438328" b="0.00069752482790381217" c="0.00028815288501822349" d="-2.0660791895830376e-05" /> - <width sOffset="580.75891912770624" a="3.8754413150308613" b="0.0017656708175541353" c="-0.00012572036621409026" d="-2.1260678885841552e-05" /> - <width sOffset="581.49922790953906" a="3.87667092857787" b="0.0015445708376571712" c="-0.0012538191709991122" d="0.00013610387003829742" /> - <width sOffset="584.45157057239294" a="3.8738047732761891" b="-0.0022998592295580956" c="0.002079461132093975" d="-0.00030560283002941703" /> - <width sOffset="586.64809683207875" a="3.8755472365741164" b="0.0024119715009794517" c="-0.00069875078715842063" d="-0.00042541818265193069" /> - <width sOffset="588.11809724321938" a="3.876231552475947" b="-0.0024002163831912402" c="3.9283821779572122e-05" d="1.4306610640093169e-05" /> - <width sOffset="590.77200394025283" a="3.8704057066631448" b="-0.0018894113367302757" c="0.00015476638206623409" d="1.4898186851181131e-05" /> - <width sOffset="591.15901999468019" a="3.8696985188872404" b="-0.0017629227726063479" c="3.9840683573564884e-05" d="-8.3065997209830879e-08" /> - <width sOffset="600.78508875279954" a="3.8563460967984029" b="-0.0010189954385836501" c="3.8692791732088027e-05" d="-4.9572146560624943e-09" /> - <width sOffset="610.79817356534613" a="3.8500172439052989" b="-0.00024561808688435384" c="3.8723402771815874e-05" d="-1.5558678747530558e-08" /> - <width sOffset="615.6086591872604" a="3.8497300590948593" b="0.00012585853813681483" c="0.00037968089103766474" d="-3.3163696235291541e-05" /> - <width sOffset="620.81125837789284" a="3.8559916109174912" b="0.0013835844186314012" c="-0.00013841387402991901" d="-3.3051953021331372e-05" /> - <width sOffset="622.85265431264384" a="3.8579580663546342" b="0.00040525742916992053" c="-0.00044530119700701953" d="-2.8241484617539514e-05" /> - <width sOffset="623.41601792323422" a="3.8580399950273048" b="-0.00012336527609090926" c="-0.00030539973028888479" d="1.2876317355456144e-05" /> - <width sOffset="630.82434319043944" a="3.8456001482889959" b="-0.0025282826346069882" c="-2.0605794825460853e-05" d="1.2866550673813186e-05" /> - <width sOffset="638.86784264127391" a="3.830626476380071" b="-0.00036245224696754221" c="0.0028722860136700641" d="-0.00035704854850663584" /> - <width sOffset="639.82944286001111" a="3.8326163972105958" b="0.0041710678920101954" c="0.0017653983558670366" d="-0.00037938127416790109" /> - <width sOffset="640.83742800298614" a="3.8382259342353504" b="0.0065736656445956904" c="0.00061667969911129725" d="-0.00038063308335684509" /> - <width sOffset="643.51263256801008" a="3.8529377557046471" b="0.0017009017473003825" c="-8.8394142460850972e-05" d="-1.5103135536951306e-05" /> - <width sOffset="645.17357337891588" a="3.8554497940128281" b="0.001282270705443344" c="-0.00028358488338683561" d="8.5269523388509957e-06" /> - <width sOffset="650.85051281553285" a="3.8551499384081267" b="-0.001113107025019525" c="-0.00013662308926507512" d="8.4161994525491036e-06" /> - <width sOffset="660.86359762807945" a="3.838755497310621" b="-0.001317672563179037" c="0.0001145003688946828" d="9.051072958837038e-06" /> - <width sOffset="665.76920743149185" a="3.8361154732839191" b="0.00045915811819919981" c="0.0028378202235232269" d="-0.00035626571488749472" /> - <width sOffset="670.87668244062615" a="3.8650217354072303" b="0.0015663858719208619" c="-0.0026197316026091767" d="-0.00035631713828653086" /> - <width sOffset="671.07586059170762" a="3.8652269798842984" b="0.00048039190603974983" c="-1.5257851665417107e-05" d="4.9244914467654884e-07" /> - <width sOffset="673.87642900105925" a="3.8664634969798297" b="0.00040651769819541447" c="-1.2091048400948068e-05" d="-8.1324606257480356e-07" /> - <width sOffset="680.88976725317275" a="3.8684392807616081" b="0.0001169172826268712" c="-3.5478467122105124e-05" d="2.6422452383597326e-06" /> - <width sOffset="682.12564001050316" a="3.8685345741247037" b="4.1330689920777964e-05" c="-0.00054499802945631856" d="3.5292670448567303e-05" /> - <width sOffset="690.90285206571946" a="3.8507756004902745" b="-0.0013690119425200631" c="0.00038586875273767892" d="3.4027567855641149e-05" /> - <width sOffset="692.44411570959949" a="3.8497068047550274" b="6.2935828315205007e-05" c="0.00017712444161534219" d="-1.01760730369995e-05" /> - <width sOffset="693.3239853917371" a="3.849892372999264" b="0.00035099462913691285" c="0.00011664073212572877" d="-8.5761952071770123e-06" /> - <width sOffset="700.91593687826605" a="3.8555272181451259" b="0.00063911898467335613" c="-6.7367166663722435e-05" d="-1.1612046094978205e-05" /> - <width sOffset="703.12156529954882" a="3.8564845530825376" b="0.00017247437804698666" c="6.8287123727211316e-05" d="-5.8574491087983936e-06" /> - <width sOffset="710.92902169081276" a="3.8592060313576328" b="0.00016762526066109169" c="-6.7878565972638116e-05" d="-5.6234112183193171e-06" /> - <width sOffset="717.71955421822554" a="3.8554535197192781" b="-0.0015321469047219836" c="-4.4935630971464126e-05" d="3.1141604079960792e-06" /> - <width sOffset="720.94210650335935" a="3.8501536642860552" b="-0.0017247415423689379" c="-1.5400304843852176e-05" d="2.8351347383945973e-06" /> - <width sOffset="730.01683304568951" a="3.8353526049312836" b="-0.0013038229864714844" c="-1.0019433797203332e-05" d="3.4911196656656823e-06" /> - <width sOffset="730.95519131590606" a="3.8341232140764849" b="-0.0013134046608844208" c="3.4217920395209037e-07" d="3.599800385576598e-06" /> - <width sOffset="735.70028970580915" a="3.8282832884830293" b="-0.0010669984421532023" c="0.00019707434215725833" d="-2.7545085042556299e-06" /> - <width sOffset="740.96827612845277" a="3.8277288027549345" b="0.00078004475177270011" c="0.00015192004674659902" d="-2.8276639044652214e-06" /> - <width sOffset="749.8013369062586" a="3.8445234637443857" b="0.0028020146182563478" c="0.00038085513582026902" d="-2.1727294834028377e-05" /> - <width sOffset="750.82234652630427" a="3.8477582484008725" b="0.0035117785839794639" c="0.0011000136229360464" d="-0.00017244365569826144" /> - <width sOffset="750.98136094099937" a="3.8483437929472109" b="0.0038485336131243385" c="0.001021621247431762" d="-0.00017044567991570959" /> - <width sOffset="755.44943719323533" a="3.8707310349798552" b="0.002769714862512665" c="-0.00019499078333109132" d="1.4165937979886642e-05" /> - <width sOffset="760.99444575354607" a="3.8825089164775326" b="0.0019139491191382785" c="3.3523736148802815e-05" d="1.6919095945420383e-05" /> - <width sOffset="762.51770750610353" a="3.8855619479183914" b="0.0021338534425715235" c="-1.318977384847083e-05" d="-2.0804515507270077e-05" /> - <width sOffset="766.19285502601178" a="3.8921933052162152" b="0.0011939030844566427" c="-0.0001753296794776093" d="4.0617478181436746e-06" /> - <width sOffset="771.00753056609267" a="3.894330555816814" b="-0.00021194060018566796" c="-0.00011727563907959585" d="4.0561267765118067e-06" /> - <width sOffset="781.02061537863938" a="3.8845221717467915" b="-0.0013404979054426097" c="4.4689420148352895e-06" d="4.0658497120394387e-06" /> - <width sOffset="782.95132706535423" a="3.8819799773882875" b="-0.0012777732633180478" c="-3.6538522594729381e-05" d="-1.0574936609435423e-05" /> - <width sOffset="783.35886979195107" a="3.8814524456570263" b="-0.0013128244893065937" c="-7.1119549181509643e-05" d="1.8519035249012744e-05" /> - <width sOffset="789.21568484218722" a="3.8750444260870878" b="-0.00024015704329887724" c="0.00064262082939306345" d="-4.3666621489642835e-05" /> - <width sOffset="791.03370019118597" a="3.8764694073383477" b="0.0016634539124991705" c="0.00040519570528685698" d="-4.3751790126448002e-05" /> - <width sOffset="797.75345390454027" a="3.8926684033880798" b="0.0011822365446908607" c="-0.00017166918289530854" d="-2.9417354979202209e-06" /> - <width sOffset="801.04678500373268" a="3.8945948931878518" b="-4.4208824907666922e-05" c="-0.00020021412799675687" d="-3.6564959729967425e-06" /> - <width sOffset="802.24054666310508" a="3.8942505794658597" b="-0.0005378569783788781" c="-0.00025729498062566257" d="1.1120040111489215e-05" /> - <width sOffset="809.35758159339957" a="3.8813987801250698" b="-0.0025104486805792537" c="-4.2016010357444427e-05" d="9.1883322672686857e-06" /> - <width sOffset="811.05986981627939" a="3.8770488443374944" b="-0.0025736179601890674" c="2.019311780884868e-06" d="6.9620614647873635e-06" /> - <width sOffset="818.14297542388272" a="3.8613949992122363" b="-0.0014971440497345387" c="0.00014632537487538797" d="8.5850454590220277e-06" /> - <width sOffset="818.92145351334375" a="3.8603222329164324" b="-0.0012537135159047409" c="6.3769197081438875e-05" d="-1.5849084121856845e-06" /> - <width sOffset="821.07295462882598" a="3.8579042673330948" b="-0.0010013239374986687" c="5.6227649232508488e-05" d="-1.1750951535890027e-06" /> - <width sOffset="831.08603944137269" a="3.852335700975321" b="-0.00022875119998558985" c="2.0674769099425699e-05" d="-1.1455623671256002e-06" /> - <width sOffset="839.99973150212418" a="3.8511280554378637" b="-0.00013323236405967005" c="6.0045105662664313e-05" d="-9.0672155915154637e-07" /> - <width sOffset="841.09912425391929" a="3.8510529502766779" b="-4.4938224360939992e-06" c="5.829429486043958e-05" d="-8.8522640607365892e-07" /> - <width sOffset="843.86635599596627" a="3.851468149369409" b="0.00029779777026960877" c="0.00013131079363275127" d="-7.4607868796185722e-06" /> - <width sOffset="851.11220906646599" a="3.8576818116099383" b="0.0010255878507849522" c="-2.7563266329243856e-05" d="-7.2007824406345374e-06" /> - <width sOffset="857.31697332016267" a="3.8612640741869693" b="-0.00014813020625309816" c="-0.0001771172702986108" d="-4.2027292719161741e-06" /> - <width sOffset="860.99816282087033" a="3.8581089845244638" b="-0.0016229901996214192" c="-0.00018041599218759108" d="2.0024031974083856e-05" /> - <width sOffset="861.12529387901259" a="3.8578997772685688" b="-0.0016678922480049376" c="-0.00017454155171369373" d="1.9408455457617365e-05" /> - <width sOffset="866.66506766911164" a="3.8466031533509351" b="-0.0018148499537809623" c="8.1171198572046585e-07" d="4.7561817235275272e-06" /> - <width sOffset="871.1383786915593" a="3.8389267490646852" b="-0.0015220669861615451" c="5.9325666970373725e-05" d="3.8302990309470553e-06" /> - <width sOffset="881.27239416530426" a="3.8335811098509187" b="0.00086044271581492285" c="0.00076826069776880996" d="-0.00011896451714561157" /> - <width sOffset="881.92100173291976" a="3.8344299393473165" b="0.001706899938493022" c="0.00047579422075449572" d="-0.00011879770125916149" /> - <width sOffset="886.49023220497531" a="3.8408299269150978" b="-0.0013858010161408945" c="6.5127128807544341e-06" d="1.9586382286018351e-06" /> - <width sOffset="891.1645483166526" a="3.8346945888061765" b="-0.0011965318406771364" c="3.4407176463930678e-05" d="2.0212917453665921e-06" /> - <width sOffset="899.25930798161312" a="3.8283355997571404" b="-0.0002421599546184014" c="3.5101915183607956e-06" d="5.419372349900026e-07" /> - <width sOffset="901.17763312919931" a="3.8278878013725133" b="-0.00022270963676414952" c="8.500704402450521e-06" d="2.5642980530781649e-07" /> - <width sOffset="907.95648681401849" a="3.8268485968446893" b="-7.2108527302982563e-05" c="3.9095213226266516e-05" d="-1.9218365391651562e-06" /> - <width sOffset="911.1907179417459" a="3.8269593095430041" b="0.00012046870614879605" c="2.6428088635147489e-05" d="-6.9040712705137806e-07" /> - <width sOffset="921.20380275429261" a="3.8301221816058386" b="0.0004420575684189954" c="5.4401099032387844e-06" d="-6.2034483653616691e-07" /> - <width sOffset="931.2168875668392" a="3.8344711939555358" b="0.00036441133677389819" c="-1.314372978555015e-05" d="-7.221034933142902e-07" /> - <width sOffset="939.74309115220944" a="3.8361751649387261" b="-1.7203321623257416e-05" c="-0.00010149867330795053" d="3.7323285323210509e-06" /> - <width sOffset="941.22997237938591" a="3.8359374597605904" b="-0.00029428179298948264" c="-8.3725928044930104e-05" d="4.7045242994503672e-06" /> - <width sOffset="949.71737516687392" a="3.8302848297536123" b="-0.00069882772006206245" c="7.4766066470160141e-05" d="4.1907323118432429e-06" /> - <width sOffset="950.77559535968192" a="3.8296340075610593" b="-0.00052651107451541198" c="3.3946220712234726e-05" d="-4.9965247437487405e-07" /> - <width sOffset="951.24305719193251" a="3.8293952506372695" b="-0.00049510150247539296" c="3.4016589590652011e-05" d="9.782926718662633e-08" /> - <width sOffset="961.25614200447922" a="3.8279465378924309" b="0.00021554612579574779" c="3.764482808867245e-05" d="1.3474381414824182e-07" /> - <width sOffset="969.26103978909748" a="3.8321532981382651" b="0.00084413462716442593" c="7.6954076118137911e-05" d="-2.3823850138765245e-06" /> - <width sOffset="970.19609113244212" a="3.8330079422380492" b="0.00098179774381699147" c="0.00034773482790089399" d="-1.6933470952699563e-05" /> - <width sOffset="971.26922681702592" a="3.8344410757423599" b="0.0016696282675198143" c="0.0002925011193980363" d="-1.6881318923084285e-05" /> - <width sOffset="981.28231162957252" a="3.8635382413187078" b="0.0024496476187008203" c="-0.0002162284323755242" d="-1.7286360878145425e-05" /> - <width sOffset="983.37105262536841" a="3.8675540230481356" b="0.0013201044108822055" c="-0.00015654395496612276" d="-7.7051104068471337e-09" /> - <width sOffset="985.50664077696649" a="3.8696591915713139" b="0.0006513721570809137" c="-0.00041773834546841252" d="1.6441470263870065e-05" /> - <width sOffset="991.29539644211923" a="3.862620849349756" b="-0.0025321524495347117" c="-0.0001406458408177975" d="1.6672011218878337e-05" /> - <width sOffset="997.95577261457277" a="3.8444425111179941" b="-0.0021869190626793945" c="1.977368748388781e-05" d="2.4840782997377973e-06" /> - <width sOffset="1001.3084812546658" a="3.8374262944542257" b="-0.0019705602337711744" c="3.9609923335919726e-05" d="1.1668741535022858e-06" /> - <width sOffset="1011.3215660672125" a="3.8228377332374621" b="-0.00082634624503469343" c="7.6900719676360144e-05" d="1.1425670400592975e-06" /> - <width sOffset="1018.5526883622668" a="3.8213154091677084" b="0.00046504228034099232" c="0.00024431009583925772" d="-8.0315155630430766e-06" /> - <width sOffset="1021.3346508797591" a="3.8243270098303856" b="0.0016378900414576261" c="0.00017680865393876117" d="-8.653361517391364e-06" /> - <width sOffset="1027.1947956283761" a="3.8382556754964923" b="0.002818635691120756" c="0.00010608954375980221" d="-1.8339036611299443e-05" /> - <width sOffset="1031.3477356923058" a="3.8504774769014589" b="0.0027509275180226138" c="-0.00013361807603159227" d="-1.6221028880311031e-05" /> - <width sOffset="1033.4990768547334" a="3.8556157275897358" b="0.0019507855385287385" c="-0.00024204170777218019" d="-4.4421245512454066e-06" /> - <width sOffset="1035.9147994692478" a="3.8588531750050956" b="0.00070360535566241786" c="-0.00018551154647288199" d="7.0998017965531561e-06" /> - <width sOffset="1041.3608205048524" a="3.8583297014101783" b="-0.00068527205778914219" c="-7.1922673619916364e-05" d="7.1306637705947212e-06" /> - <width sOffset="1049.3399319544751" a="3.8519051707657317" b="-0.00047108289998195121" c="-2.9382231674959962e-06" d="1.2036251453411005e-05" /> - <width sOffset="1051.3739053173992" a="3.8510361259057513" b="-0.00033365179824917674" c="7.0034656110294107e-05" d="1.1683906865251609e-05" /> - <width sOffset="1052.8949381729037" a="3.850731773941674" b="-3.950818143469469e-05" c="0.00011226997693181753" d="5.967452524378374e-06" /> - <width sOffset="1054.1270633990664" a="3.8508646979192647" b="0.00026433131217101866" c="0.00017765628482557236" d="-7.7278092746435235e-06" /> - <width sOffset="1061.3869901299458" a="3.8591903591306282" b="0.0016219563579995496" c="1.0196228544464119e-05" d="-7.7335191777705232e-06" /> - <width sOffset="1069.5890536668653" a="3.8689124528035248" b="0.00022842584598914547" c="-0.00032331184666206756" d="5.6629171098299353e-06" /> - <width sOffset="1071.4000749424924" a="3.8682993758076383" b="-0.00088690374627475388" c="-0.00028231645158667063" d="7.9461533708423796e-06" /> - <width sOffset="1072.2539236634843" a="3.8673412157324472" b="-0.0013516352170457662" c="-0.00019978788461410554" d="9.3187792402404961e-06" /> - <width sOffset="1081.413159755039" a="3.8453611349814771" b="-0.0026661419607286398" c="5.9152412243154813e-05" d="9.4042733351885811e-06" /> - <width sOffset="1089.5741574126796" a="3.8326539968370281" b="0.00017837036535761847" c="0.00021005230102340099" d="1.5638484969763358e-05" /> - <width sOffset="1091.4262445675859" a="3.8338042338692842" b="0.0011173713546671639" c="0.00029684685129225047" d="1.5070853335958842e-05" /> - <width sOffset="1091.8043413420628" a="3.8342699593648324" b="0.0013483084883121686" c="1.0933013876236503e-06" d="-5.4733942938355983e-07" /> - <width sOffset="1101.4393293801324" a="3.8468728250612583" b="0.0012169429051931916" c="-2.236555015899599e-05" d="2.8448299420118676e-07" /> - <width sOffset="1105.2058712429384" a="3.8511543964694628" b="0.0010605690853955827" c="-0.00046253258497700632" d="2.3915629345280429e-05" /> - <width sOffset="1109.4831128363771" a="3.8491001957025297" b="-0.0015835634811315179" c="8.1476678124518917e-05" d="2.9639584099416382e-06" /> - <width sOffset="1111.452414192679" a="3.8463202970609873" b="-0.0012281752090127934" c="9.9776445588142083e-05" d="2.8741293628664373e-06" /> - <width sOffset="1119.9151869771267" a="3.8448143557812298" b="0.0010781182688654224" c="-0.00035295427453644181" d="2.504249873250585e-06" /> - <width sOffset="1121.4654990052259" a="3.8456467925606481" b="1.7964031725666019e-06" c="-0.0003316824915718482" d="7.7484278984184e-06" /> - <width sOffset="1123.8378372071816" a="3.8438878020483904" b="-0.0014411054978300257" c="-9.7881711730412948e-05" d="2.5913348987490027e-05" /> - <width sOffset="1131.0666046854833" a="3.8381440726060285" b="0.0012060785485541112" c="-2.4101626998848659e-05" d="8.1773267716863206e-07" /> - <width sOffset="1131.4785838177725" a="3.8386369182868374" b="0.0011866361872652192" c="-2.2280426033263833e-05" d="7.3035254811408798e-07" /> - <width sOffset="1141.4916686303191" a="3.8490181532085552" b="0.00096012412734521133" c="-1.4841803784116647e-06" d="-1.5419392285260464e-07" /> - <width sOffset="1142.5111451347561" a="3.8499952712610459" b="0.0009566171771022479" c="-0.00010338378778981604" d="8.1342590608921573e-07" /> - <width sOffset="1145.2041153890941" a="3.8518375503860853" b="0.00041749535719121968" c="-3.5728001585353059e-05" d="-2.7260448365839617e-07" /> - <width sOffset="1151.5047534428656" a="3.8529815212429255" b="-6.5188646550823229e-05" c="-2.7550242285835172e-05" d="-2.1438819820083314e-06" /> - <width sOffset="1156.8663448450277" a="3.8515095969058306" b="-0.00054550328533862743" c="-0.0006600154289171426" d="8.5838767168829223e-05" /> - <width sOffset="1161.3033980674234" a="3.8435935337513909" b="-0.0013327133874718765" c="2.7982878033255495e-05" d="1.0845342082942666e-05" /> - <width sOffset="1161.5178382554125" a="3.8433091401686585" b="-0.0013192159242515801" c="3.2637544399207279e-05" d="1.0299080134815026e-05" /> - <width sOffset="1163.0166572452154" a="3.8414398705320218" b="-0.0011519710174639148" c="8.1036053233466017e-05" d="4.7445922595727258e-06" /> - <width sOffset="1171.5309230679591" a="3.8404346753812924" b="0.0012597992095986082" c="0.00018871328572974002" d="1.1367758176937263e-05" /> - <width sOffset="1172.8940439030064" a="3.8425313741900085" b="0.0018376444730709418" c="5.7047720883506539e-05" d="-4.6540579103611478e-06" /> - <width sOffset="1180.0745708355939" a="3.8569449471250024" b="0.0019370206483280397" c="3.4978847448232122e-05" d="-4.7906150100246719e-06" /> - <width sOffset="1181.5440078805057" a="3.8598516049096245" b="0.0020087867389743559" c="1.399972253583437e-05" d="-2.4951291569141759e-06" /> - <width sOffset="1189.0716885984075" a="3.8747020873334908" b="0.0017953908275692649" c="0.0002222662441920284" d="-4.4157659183564115e-05" /> - <width sOffset="1191.5570926930523" a="3.8798594004667231" b="0.0020819171778183429" c="-0.00010260587172955264" d="-4.6589799502020873e-05" /> - <width sOffset="1194.6704596605045" a="3.8839406198530986" b="8.8225404740040016e-05" c="-5.8907396852243684e-05" d="-1.5076440772594664e-06" /> - <width sOffset="1195.4128642475853" a="3.883973034219649" b="-1.7337185340365697e-06" c="-9.3972192093737443e-05" d="2.0799438284273844e-06" /> - <width sOffset="1201.5701775055991" a="3.8808851782028095" b="-0.00092239851495880471" c="-4.7532462099464127e-05" d="2.4780220005151633e-06" /> - <width sOffset="1211.5832623181457" a="3.8693711922964544" b="-0.0011289383235008619" c="2.8808323792632469e-05" d="2.6170720291426822e-06" /> - <width sOffset="1216.4368217667102" a="3.864869686060775" b="-0.00066434109313143219" c="2.7383623668203471e-07" d="-2.0890657004593569e-07" /> - <width sOffset="1221.5963471306923" a="3.8614205976967964" b="-0.00067819908174383565" c="-7.2110474267795168e-06" d="1.6446335765976676e-06" /> - <width sOffset="1223.3317420962039" a="3.8602305330270039" b="-0.0006883681983913684" c="-0.0012369929897588776" d="0.00012778794100784971" /> - <width sOffset="1230.0287923596527" a="3.8385239087299339" b="-6.2724321702894675e-05" c="4.3446967886792066e-05" d="4.5090376365631288e-06" /> - <width sOffset="1231.6094319432391" a="3.8385511196807363" b="0.0001084201023921111" c="5.0764430891220847e-05" d="-1.005490645218532e-06" /> - <width sOffset="1241.6225167557857" a="3.8437170331942117" b="0.00082260009692188723" c="1.035453469735527e-05" d="1.5376215075718663e-06" /> - <width sOffset="1244.0255935368587" a="3.8457749374615116" b="0.00089900384937683796" c="0.00012681077699350842" d="-1.0199398636199535e-05" /> - <width sOffset="1250.6146090434238" a="3.8542863236437257" b="0.0012416956906707293" c="-0.00032494866330611471" d="2.7965404836154861e-07" /> - <width sOffset="1251.6356015683323" a="3.8552156484509168" b="0.00057902993397281673" c="-0.00032319306976620507" d="3.1827502035867568e-07" /> - <width sOffset="1254.3596304253338" a="3.8544011757872996" b="-0.0011746594427623929" c="-0.00018351748621312056" d="1.2676660461925065e-05" /> - <width sOffset="1261.6486863808789" a="3.8409979618062269" b="-0.0018294521778212081" c="9.5944909711614159e-05" d="1.2875249148706955e-05" /> - <width sOffset="1266.8607310113891" a="3.835892130231664" b="0.00021997036135864792" c="6.1144166520350822e-05" d="1.9261388604041495e-07" /> - <width sOffset="1271.6617711934257" a="3.8383789044147227" b="0.00082040080469080704" c="6.2162224897499379e-05" d="1.1017771513989656e-07" /> - <width sOffset="1271.9203670762492" a="3.8385952154921332" b="0.00085257269890790443" c="0.00062982505438825636" d="-7.6116538408320261e-05" /> - <width sOffset="1276.1941078572195" a="3.8478009547681626" b="0.0020652169253618374" c="-8.2375121767606682e-05" d="2.1525168677488326e-07" /> - <width sOffset="1281.6748560059723" a="3.8566808930004473" b="0.001181659911229628" c="-7.7462752831641507e-05" d="3.9931072929609052e-07" /> - <width sOffset="1283.65013322031" a="3.8587158383998341" b="0.00088031308603768606" c="-0.0022296870966802369" d="0.00028389557461137448" /> - <width sOffset="1288.178102886319" a="3.8433430608271415" b="-0.0018498830179392968" c="0.00023357017324601495" d="-7.310873820428603e-06" /> - <width sOffset="1291.6879408185189" a="3.8394115090474226" b="-0.00048048324730877771" c="0.00015433242156661343" d="-6.5451315568010644e-06" /> - <width sOffset="1301.7010256310657" a="3.8435031886019764" b="0.00064152266760350422" c="-3.6251404799340426e-05" d="-1.3415467864311788e-05" /> - <width sOffset="1302.9293251376055" a="3.8442116163667168" b="0.00049174696128623046" c="-0.00016270742447205307" d="-6.3410142547765956e-06" /> - <width sOffset="1305.1028132258643" a="3.8444466770189916" b="-0.00030540415074349842" c="-0.00047594367478806158" d="2.0077079601107733e-05" /> - <width sOffset="1311.7141104436123" a="3.8274261889542101" b="-0.0039659520076496179" c="-7.477193535039316e-05" d="2.0280161664936225e-05" /> - <width sOffset="1318.5553900634077" a="3.8032880120949404" b="-0.0021414997233595804" c="0.00035493154912290693" d="1.3434795954846599e-05" /> - <width sOffset="1321.3622016804568" a="3.8003705227499567" b="0.0001684779513276306" c="0.0001562036195508405" d="-3.3271131199443296e-06" /> - <width sOffset="1321.7271952561589" a="3.8004526638351011" b="0.00028117486947043264" c="0.00014839545116115477" d="-3.6922910824148512e-06" /> - <width sOffset="1329.2987860029723" a="3.8094862468983894" b="0.0018933282030731504" c="0.00035094184872360562" d="-4.1200832510935093e-05" /> - <width sOffset="1331.7402800687055" a="3.8156011076552487" b="0.0028701917891523765" c="2.3586994855280703e-05" d="-4.0384496703791038e-05" /> - <width sOffset="1334.7234229054543" a="3.8233010999660233" b="0.0019327565251486449" c="-0.00020161435402954626" d="1.3192255573455196e-05" /> - <width sOffset="1340.2592618301055" a="3.8300600015158381" b="0.0009133976507219385" c="-7.5923116932938685e-05" d="6.0435104308852059e-06" /> - <width sOffset="1341.7533648812523" a="3.8312753824574917" b="0.00072699731083302052" c="-5.3157347509112557e-05" d="1.264604814241498e-05" /> - <width sOffset="1346.1720092555402" a="3.8345408517962793" b="0.00099795067576690343" c="-0.0001007029373576352" d="8.10745870968244e-06" /> - <width sOffset="1351.7664496937989" a="3.8383916137862211" b="0.00063243348931755171" c="3.4817673547979227e-05" d="7.4307395817823757e-06" /> - <width sOffset="1355.5538187524412" a="3.8416899903948925" b="0.0012159314985168814" c="0.00022568577626529913" d="-1.5699269878794832e-05" /> - <width sOffset="1357.9101337668485" a="3.845602775122634" b="0.0020180076431441985" c="9.1555103281361192e-05" d="-1.5341811028689514e-05" /> - <width sOffset="1361.7795345063455" a="3.8538932347896169" b="0.0020374295651875624" c="-7.5234946044669434e-05" d="-1.6800657290540035e-05" /> - <width sOffset="1366.812339338047" a="3.8600998951746606" b="3.5061459826818898e-06" c="-3.1744943268680578e-05" d="1.2230803171965225e-06" /> - <width sOffset="1371.7926193188923" a="3.8594810641727171" b="-0.00022168238926326017" c="-3.5184673143079279e-06" d="2.3559833431756511e-06" /> - <width sOffset="1372.6889497535844" a="3.8592812333237183" b="-0.00022231135858487262" c="-0.00016914079160697487" d="8.9473954396990751e-06" /> - <width sOffset="1377.9206838145524" a="3.8547698490393363" b="-0.0012574120497704216" c="0.00045508368646818124" d="-5.3023884420995902e-05" /> - <width sOffset="1381.8057041314389" a="3.8536443102058255" b="-0.00012232267943387376" c="-0.00015646090194177385" d="-5.4655535563785273e-05" /> - <width sOffset="1383.7801967341063" a="3.8523720759219935" b="-0.001379428128788739" c="-0.00030879112344587775" d="1.7964870883106077e-05" /> - <width sOffset="1390.0545483377493" a="3.8359981491968345" b="-0.0031326607707323952" c="-8.6904516894118565e-05" d="1.284929784741807e-05" /> - <width sOffset="1391.8187889439855" a="3.830271446715515" b="-0.0033193196757770132" c="-1.9511218073575762e-05" d="1.1081164430480599e-05" /> - <width sOffset="1401.8318737565321" a="3.8062033059815361" b="-0.00037699992010905041" c="0.00030440219167475501" d="1.5151617326740451e-05" /> - <width sOffset="1403.9634428199029" a="3.8069295252968036" b="0.0011272367287101157" c="0.00013017477845727338" d="-7.8824347553782791e-06" /> - <width sOffset="1411.0490912143937" a="3.8186482004452684" b="0.0017847358203170293" c="-9.9470312963852528e-05" d="2.3287403538148088e-06" /> - <width sOffset="1411.8449585690789" a="3.8200067823756489" b="0.0016308305768979177" c="-9.1641031657892412e-05" d="2.4473288565474627e-06" /> - <width sOffset="1421.8580433816255" a="3.8296052745709552" b="0.00053173301666056046" c="-1.8186497369946977e-05" d="2.4392650020860988e-06" /> - <width sOffset="1428.395822184395" a="3.8329859216134743" b="0.00060671565385089126" c="0.00010284020594568719" d="-1.2863315568141693e-06" /> - <width sOffset="1431.8711281941721" a="3.8362825303292611" b="0.0012749100453257997" c="8.8534733718753238e-05" d="-1.624862047789754e-06" /> - <width sOffset="1432.6186303898912" a="3.8372843193513262" b="0.0014045461395491275" c="4.7840652499215835e-05" d="-5.4139230825471278e-06" /> - <width sOffset="1441.8842130067187" a="3.8500988687266475" b="0.00089671669941859908" c="-0.00010343011000829644" d="-5.856250178443501e-06" /> - <width sOffset="1444.0206336638214" a="3.8514854416950981" b="0.00037458732321824515" c="-0.0002998545510489549" d="1.2484324879124075e-05" /> - <width sOffset="1448.7408358835089" a="3.8478856635941483" b="-0.0016216970639776284" c="-0.00069798245002805279" d="0.00015327314678949128" /> - <width sOffset="1451.8972978192655" a="3.8406328933318519" b="-0.0014467101978936636" c="0.00073025590968014867" d="0.00016703871142713874" /> - <width sOffset="1453.0098483952281" a="3.840157268768464" b="0.00079844897614100374" c="0.00045104643316905583" d="-1.4928983587518877e-05" /> - <width sOffset="1460.4075109984606" a="3.8647037750701294" b="0.0050208433057796591" c="0.00040652050618167183" d="-0.00015356831417739567" /> - <width sOffset="1460.7002165660531" a="3.866204381947286" b="0.0052193533270527134" c="-0.00060647574794606802" d="-4.0868724590555812e-05" /> - <width sOffset="1461.9103826318121" a="3.8715600500868681" b="0.003571923612045131" c="-0.00076305012523377813" d="-4.6324671780744801e-05" /> - <width sOffset="1463.6550041594139" a="3.8752232167919356" b="0.00048646045724883447" c="-0.00065461348450415822" d="7.7257527667691167e-05" /> - <width sOffset="1469.5250707976595" a="3.8711491030729439" b="0.00078755694422936052" c="0.00014674292971524598" d="-1.0539103231471345e-05" /> - <width sOffset="1471.9234674443587" a="3.8737366865495306" b="0.001309579990068057" c="8.0805947085218474e-05" d="-7.7831060218202716e-06" /> - <width sOffset="1480.2522822559922" a="3.8857525865716998" b="0.0010358930367057092" c="9.6148341677091434e-05" d="-1.0370831128469491e-05" /> - <width sOffset="1481.9365522569055" a="3.8877205098545118" b="0.0012715137258963141" c="5.1449329689711968e-05" d="-7.9029371651560559e-06" /> - <width sOffset="1491.5717536576337" a="3.8976789969651344" b="6.1905586168628512e-05" c="-0.00056477762612886482" d="8.5305236688804444e-05" /> - <width sOffset="1491.9496370694521" a="3.8976263452320348" b="-0.00032839089917869419" c="-0.0004679277330605312" d="8.5102451480090495e-05" /> - <width sOffset="1495.3466818833067" a="3.8944470936165541" b="-0.00056130907906724002" c="0.00037704820819482672" d="8.2672688198207335e-05" /> - <width sOffset="1497.4583520991282" a="3.8957215761280208" b="0.0021370438889405951" c="-7.3487857962168036e-06" d="-5.4564737509934577e-07" /> - <width sOffset="1501.9627218819987" a="3.905148642872283" b="0.00203762810454686" c="-2.2350977643007681e-05" d="-3.9113983858708324e-07" /> - <width sOffset="1506.4420086598659" a="3.9137921605618953" b="0.0018138517263445756" c="8.2050552195323974e-05" d="-1.939098144970767e-05" /> - <width sOffset="1511.7358591577381" a="3.9228170410639951" b="0.0010522902201048105" c="-0.00071504752401930658" d="7.3503970175773288e-06" /> - <width sOffset="1511.9758066945453" a="3.9230284683227952" b="0.0007104120292931134" c="-0.00071358621719154513" d="8.5584507213844739e-06" /> - <width sOffset="1514.4995796852777" a="3.9204138265359756" b="-0.0027279098525938685" c="-0.00058075037617108191" d="8.7138846347661918e-06" /> - <width sOffset="1518.7017022097875" a="3.8993425950874281" b="-0.0071470733486733024" c="-0.0039879771068969073" d="0.0011164307464238661" /> - <width sOffset="1521.8066438055062" a="3.8721235048547187" b="0.00037745011315111628" c="0.00024143078924326178" d="-1.3754211120377115e-05" /> - <width sOffset="1521.9888915070921" a="3.8722002299495841" b="0.00046408001963658258" c="0.00023339119127360205" d="-1.4144056231660022e-05" /> - <width sOffset="1532.0019763196387" a="3.8860476886227975" b="0.00088368313120968549" c="-0.00023330157405907084" d="1.0392883828396825e-06" /> - <width sOffset="1533.797122722136" a="3.886888215319245" b="5.6109646699408869e-05" c="-0.0003768405164574581" d="1.9337534521843218e-05" /> - <width sOffset="1535.2830345971179" a="3.8862029927791637" b="-0.00093570594440275121" c="-0.00052688180401249491" d="2.7754216919166066e-05" /> - <width sOffset="1542.0150611321853" a="3.8644931356300916" b="-0.0042561920900604008" c="1.4380469863701964e-05" d="3.0641920742715775e-05" /> - <width sOffset="1544.7779700796291" a="3.8534897126644538" b="-0.0034749976803207022" c="3.4673577394542793e-05" d="-4.6831125552382196e-06" /> - <width sOffset="1550.3753965974056" a="3.8343037365475121" b="-0.0035270144553435539" c="-0.0025573082732345603" d="0.00035429896051592463" /> - <width sOffset="1552.0281459447322" a="3.8230884969089587" b="-0.0090768053200763928" c="-0.00080819367279467817" d="0.00035286108012615256" /> - <width sOffset="1552.4082987179781" a="3.819540512727031" b="-0.0095382970978928859" c="-0.0005205117685660169" d="0.00034561951175108104" /> - <width sOffset="1554.2990358611337" a="3.8019814309592199" b="-0.0077999469254757025" c="-9.587738224042263e-06" d="5.7527669760806399e-06" /> - <width sOffset="1562.0412307572788" a="3.7436877581844414" b="-0.0069139173443724371" c="0.00012308707443191085" d="5.780732296248881e-06" /> - <width sOffset="1568.7084587975287" a="3.7047757948751214" b="-0.0045017240386348994" c="0.00014851928090107514" d="1.1345346956127705e-05" /> - <width sOffset="1569.6810689720091" a="3.7005483055450363" b="-0.0041806242188691034" c="-3.5393855759044293e-05" d="-2.5785384087118409e-06" /> - <width sOffset="1572.0543155698253" a="3.6903928376492647" b="-0.0043921902155024083" c="-4.5697063045289969e-05" d="-4.7961644063637039e-06" /> - <width sOffset="1575.6149537980436" a="3.6739579734628487" b="-0.0049000310321903563" c="-0.00054955719350809323" d="5.9977545330668438e-05" /> - <width sOffset="1581.6970790705413" a="3.63732045200226" b="-0.0049288697594412449" c="0.00010476594601386149" d="5.5017927546151545e-06" /> - <width sOffset="1582.0674003823719" a="3.6355098332751763" b="-0.0048490121218282894" c="0.00010960212345763394" d="5.3223232101730607e-06" /> - <width sOffset="1586.5970847038338" a="3.6162888178708146" b="-0.0035284751589880802" c="0.00014374277153637071" d="-2.9384449033015624e-06" /> - <width sOffset="1592.0804851949188" a="3.6007783166164988" b="-0.0022171334624103275" c="9.496657513364138e-05" d="-2.8819198821886408e-06" /> - <width sOffset="1602.0935700074654" a="3.5852062498804576" b="-0.0011821567278728587" c="6.6161673054409693e-06" d="-2.5210173553462332e-06" /> - <width sOffset="1602.2423068342173" a="3.5850305577118489" b="-0.0011803559071609621" c="0.00014959266184560451" d="-1.5022255890584632e-05" /> - <width sOffset="1605.97912397338" a="3.5819248019334275" b="-0.00069165849729563007" c="1.2056281537627143e-05" d="-1.1571294030570057e-05" /> - <width sOffset="1608.6511623865013" a="3.5799419884379127" b="-0.00087507860578644656" c="5.3472486509603199e-05" d="-4.6468899781209328e-06" /> - <width sOffset="1612.106654820012" a="3.5773649143576343" b="-0.00067198862575408699" c="1.6905629190427716e-06" d="-2.9399218347870086e-06" /> - <width sOffset="1619.2899811600437" a="3.5715353199975772" b="-0.0011028023592962275" c="-2.2882708574310028e-05" d="5.7983430964527625e-06" /> - <width sOffset="1622.1197396325588" a="3.5683628085185499" b="-0.0010930161649269189" c="1.7230449524237416e-05" d="2.0080258966732938e-06" /> - <width sOffset="1629.2664512781812" a="3.5621643639579812" b="-0.00053905135255195012" c="0.00028447078685937913" d="-1.3360935266014219e-05" /> - <width sOffset="1632.1328244451054" a="3.5626418253745076" b="0.0007624233623056265" c="0.00018704099693494117" d="-9.339637230616696e-06" /> - <width sOffset="1636.6215592561102" a="3.5689880833625067" b="0.0018770324578947864" c="0.0015234095289406102" d="-0.00023540108589196102" /> - <width sOffset="1640.5252300275747" a="3.5855268746721491" b="0.003009229871078014" c="-0.0011747920120563789" d="-0.00023316781507667759" /> - <width sOffset="1641.1295850133929" a="3.586864961994543" b="0.0013337569514064792" c="-0.00016915597319793342" d="6.3879278207967022e-06" /> - <width sOffset="1642.145909257652" a="3.5880524736799955" b="0.0010097168769810285" c="-0.00013036465369982978" d="6.1787290485758555e-06" /> - <width sOffset="1652.1589940701986" a="3.5912952658267878" b="0.00025748494775060271" c="6.0477674622682381e-05" d="6.6598332742899067e-06" /> - <width sOffset="1655.2336267271157" a="3.5928522272821248" b="0.00081825173839355451" c="5.9892220309754057e-06" d="1.6725397644417183e-06" /> - <width sOffset="1658.1354396465763" a="3.5953179412232483" b="0.00089526189680595074" c="-0.00010455567316272277" d="6.0356100935978091e-06" /> - <width sOffset="1662.1720788827454" a="3.5976251039714922" b="0.00034619578665788086" c="-3.6050629622190209e-05" d="6.8388501934456739e-06" /> - <width sOffset="1666.5388917294647" a="3.5990189026003918" b="0.00042257430142920126" c="0.00012786605250523391" d="-2.1000095476192526e-05" /> - <width sOffset="1670.5061891593527" a="3.6013966111993398" b="0.00044554983562457903" c="1.9466796006506952e-05" d="4.3795543002438542e-07" /> - <width sOffset="1672.185163695292" a="3.6022016268824859" b="0.00051462207580281298" c="-4.0178497367796649e-06" d="-6.8589514013143772e-06" /> - <width sOffset="1675.6916921339894" a="3.6036610351707679" b="0.00023343698296035813" c="-0.00013449218900675366" d="-1.4110065968244885e-05" /> - <width sOffset="1675.7483379501134" a="3.603673824282895" b="0.00021806431639195302" c="-8.4291030507828641e-05" d="-3.3553643455188494e-06" /> - <roadMark sOffset="0" color="standard" width="0.14573232133187675" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.145732" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16415335160999631" weight="standard" type="solid"> - <type name="solid"> - <line length="1680.2879218034107" space="0" width="0.16415299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="2.4931880312437293" b="-0.00025019166650750634" c="0.0001865900212072464" d="-2.6880356882332585e-05" /> - <width sOffset="3.8648479382918879" a="2.4934563953417053" b="-1.2447219899200911e-05" c="-0.0002329854961754575" d="2.9794738619152745e-05" /> - <width sOffset="9.6578516207850988" a="2.4913578528104487" b="0.00028781632203215245" c="-7.9585212382680329e-06" d="-4.1577964780030142e-07" /> - <width sOffset="10.013084812546658" a="2.4914590717922405" b="0.00028200465775034007" c="-2.2162073861336385e-07" d="-4.6039188250515309e-07" /> - <width sOffset="16.043916579535537" a="2.4930507483230144" b="0.00022909689768725117" c="5.1905059453137084e-06" d="-2.2888196358124502e-07" /> - <width sOffset="20.026169625093317" a="2.4940309286106093" b="0.00025954765037799208" c="-8.2765610466017551e-07" d="-1.5380270091311584e-06" /> - <width sOffset="30.039254437639975" a="2.4950027465490896" b="-0.00021964351159787935" c="-4.8314475928461976e-05" d="-2.8395435080661259e-07" /> - <width sOffset="33.233426017371293" a="2.4937989739661939" b="-0.00053698429389391735" c="0.0001959375228695878" d="-2.3542841059411697e-05" /> - <width sOffset="36.491439084113395" a="2.4933151059794652" b="-9.9472673761548044e-06" c="0.00025901169297232749" d="-2.832458685473196e-05" /> - <width sOffset="40.052339250186634" a="2.4952850367905413" b="0.0007572141605905287" c="-3.8608491340507784e-05" d="-2.8368608540144054e-05" /> - <width sOffset="43.387776481577745" a="2.4963284722138601" b="-0.00044715259293048523" c="-0.00023910262814463468" d="3.5573055140920164e-05" /> - <width sOffset="47.411795392328656" a="2.4929753325961697" b="-0.00064338514866987828" c="-9.0954124354215155e-05" d="1.7857715664442051e-05" /> - <width sOffset="50.065424062733292" a="2.4909612439892976" b="-0.00074885364639922132" c="4.5784267215635247e-05" d="2.2982648238847825e-05" /> - <width sOffset="52.958920695157659" a="2.4897345204138901" b="9.3354046545745042e-05" c="2.7826683057765888e-05" d="-1.1100491864260862e-06" /> - <width sOffset="60.078508875279951" a="2.4914090603858385" b="0.00032078279016607009" c="-3.9800228326498935e-06" d="-9.7194644631246123e-07" /> - <width sOffset="69.005395664579339" a="2.4932640660095489" b="1.7363145248518348e-05" c="-0.00017970271925240772" d="4.3080566548151438e-05" /> - <width sOffset="70.091593687826617" a="2.4931261166725696" b="-0.00022053959524257014" c="-7.4332949005917421e-05" d="1.0550390894963786e-05" /> - <width sOffset="71.841599823788883" a="2.4925690688709494" b="-0.00038377343288484213" c="1.892800910517723e-05" d="-6.0003809099739272e-06" /> - <width sOffset="76.985666164198705" a="2.4902790072400789" b="-0.0006653753353458346" c="0.00023234131900560278" d="-1.1058348837635598e-05" /> - <width sOffset="80.104678500373268" a="2.4901284271132891" b="0.00046124079842950211" c="0.00012682730438944928" d="-1.0617451245479231e-05" /> - <width sOffset="87.424714496102979" a="2.496136032751787" b="0.00061125932081205949" c="-0.0010257234415665746" d="0.00017792275319297466" /> - <width sOffset="90.117763312919919" a="2.493818187333515" b="-0.0010422266102476253" c="0.00040345302505790385" d="0.00017339330534681699" /> - <width sOffset="90.936140353742047" a="2.4933304990111234" b="-3.3487417501339503e-05" c="-0.00086547027978285565" d="0.00022250700543811254" /> - <width sOffset="94.214388293455315" a="2.491758740032056" b="0.0014658482472156018" c="-0.00046471339676315451" d="4.9562393750940548e-05" /> - <width sOffset="96.973595686070553" a="2.493306482333324" b="3.3355997865774272e-05" c="9.3552204276344634e-05" d="-2.8902401015723736e-06" /> - <width sOffset="100.13084812546658" a="2.4942533843549253" b="0.00053766000150110124" c="4.3691584907303438e-05" d="-8.9286297309312005e-06" /> - <width sOffset="108.22672640182475" a="2.4967321025484628" b="-0.00051053059194086669" c="-0.00025438244865350605" d="2.3165764231152001e-05" /> - <width sOffset="110.14393293801325" a="2.4949815313066948" b="-0.0012304881069187439" c="-0.00011519447313643804" d="2.9380269186315721e-05" /> - <width sOffset="115.89639975219012" a="2.4896839598355074" b="0.00036086352199084996" c="-1.2639879696609067e-06" d="-2.32168710229933e-07" /> - <width sOffset="120.1570177505599" a="2.4911805599569705" b="0.0003374491999354165" c="-3.0049439056375508e-06" d="-8.3560829564136563e-07" /> - <width sOffset="130.17010256310655" a="2.4934192934053723" b="2.5932739001584531e-05" c="-3.5990452623204134e-05" d="1.6331357778169541e-06" /> - <width sOffset="133.40373952549149" a="2.4931820395701676" b="-0.00015559717473203217" c="-2.6604535326974106e-05" d="-4.6065054884084311e-07" /> - <width sOffset="138.70295150047656" a="2.4915418482881684" b="-0.00047637079819590721" c="0.0018059161932617053" d="-0.00036978192581554496" /> - <width sOffset="140.18318737565323" a="2.4935943176106683" b="0.0024393074881132711" c="0.00019081225163029663" d="-0.00035259474701336026" /> - <width sOffset="142.54354141861245" a="2.4957783319528781" b="-0.0025531264592251459" c="0.00048627590941569844" d="5.037495080818404e-05" /> - <width sOffset="144.54907318916219" a="2.4930201869256425" b="5.2050981684209716e-06" c="2.5224071828348202e-06" d="1.4637522993199609e-07" /> - <width sOffset="150.19627218819988" a="2.4931563841789721" b="4.76982631772767e-05" c="5.6786739866429334e-06" d="-1.0882423151517183e-07" /> - <width sOffset="159.73331690626659" a="2.4940333907719658" b="0.00012631940228243236" c="-9.0738278182258869e-06" d="8.1712665513578667e-06" /> - <width sOffset="160.20935700074654" a="2.4940923491094358" b="0.00012323556498467381" c="1.3216672961103947e-05" d="8.2329674544971106e-06" /> - <width sOffset="161.87206823804246" a="2.494371638055938" b="0.0002354693856274554" c="-6.4396587294092994e-05" d="1.9742838858390617e-06" /> - <width sOffset="170.22244181329319" a="2.4929971511192219" b="-0.00042700875967369503" c="-1.4152343953661691e-05" d="1.9274664203404093e-06" /> - <width sOffset="178.32524331982219" a="2.489633404098532" b="-0.00027671033583848061" c="0.0013601382605374938" d="-0.00029522113325815405" /> - <width sOffset="180.23552662583984" a="2.4920102231745416" b="0.0016878412797168328" c="-0.00032542217800843353" d="-0.00029450356793393582" /> - <width sOffset="181.33141764888344" a="2.4930814807427888" b="-8.6489360694649853e-05" c="-0.00072739028999459731" d="-0.00027630632427450881" /> - <width sOffset="181.49454006068373" a="2.4930468180079988" b="-0.00034585331718178618" c="0.00063091250811661732" d="-7.6069705610174896e-05" /> - <width sOffset="188.24742533094403" a="2.4960568279395012" b="-0.0022315625439986763" c="0.00037182115029465079" d="1.9862227255296166e-05" /> - <width sOffset="190.24861143838652" a="2.4932392858727335" b="-0.00050476638743247567" c="0.00048641956139278277" d="1.8081639632243037e-05" /> - <width sOffset="190.75185793096941" a="2.4931107576511256" b="-1.4506038663695143e-06" c="-0.0001582940369385256" d="1.1726010270093723e-05" /> - <width sOffset="198.20405528430439" a="2.4891619713015993" b="-0.00040710683661644492" c="0.00029867438932158427" d="-2.5446906116399808e-05" /> - <width sOffset="200.26169625093317" a="2.4893671562014275" b="0.00049880455650652342" c="0.00014147166863162018" d="-2.4846993379311991e-05" /> - <width sOffset="204.88881974255733" a="2.4922425921255016" b="0.00021207567365995371" c="1.9473745528470347e-05" d="-2.5603558340404807e-06" /> - <width sOffset="210.27478106347982" a="2.4935497015370967" b="0.0001990284979074292" c="-1.732775580125324e-05" d="-2.4637831599225587e-06" /> - <width sOffset="210.39075993320031" a="2.4935725477163704" b="0.00019490976906438791" c="-1.2140307145980771e-05" d="3.9983486663848253e-06" /> - <width sOffset="215.92745387840785" a="2.4949581712726117" b="0.00042818333224630008" c="-0.00067827547635180196" d="0.00011666703421567519" /> - <width sOffset="219.42984840675351" a="2.4931499633993557" b="-2.9611174745181566e-05" c="0.00017664046528268742" d="0.00011531618878886986" /> - <width sOffset="220.28039677690472" a="2.4933235208284552" b="0.00052114179156029401" c="7.3656625694562609e-05" d="-9.4942799061062049e-06" /> - <width sOffset="228.14320309023074" a="2.4973596395889652" b="-8.1477841821586986e-05" c="-1.2375617431785579e-05" d="-1.1676120800276618e-06" /> - <width sOffset="230.30095068857315" a="2.4971144815800477" b="-0.00015119352602534827" c="-1.5649962779381981e-05" d="6.4789127343664588e-07" /> - <width sOffset="240.3140355011198" a="2.4946819113503125" b="-0.0002697259683080137" c="5.7802223588978187e-06" d="6.1039339205077123e-07" /> - <width sOffset="249.65657716333982" a="2.49316424365347" b="-1.890977462708698e-06" c="-0.00012014226133752572" d="4.5806063676113559e-06" /> - <width sOffset="250.32712031366646" a="2.4931103373629755" b="-0.00015683341003549698" c="-0.00010739513715558555" d="2.966135627217743e-06" /> - <width sOffset="252.70325948477546" a="2.4921711153922788" b="-0.00061696425669691634" c="4.2784285016278295e-05" d="5.4941256004363577e-07" /> - <width sOffset="260.34020512621311" a="2.4901994114956878" b="0.00013264832648833351" c="5.5030503199185892e-05" d="7.7157400197566546e-07" /> - <width sOffset="269.21876686723522" a="2.496255144134107" b="0.0012922986607538842" c="-0.0008519468528437248" d="7.723702042697945e-05" /> - <width sOffset="270.35328993875976" a="2.4967374983713544" b="-0.0003425628819555002" c="-0.00056212690056732777" d="0.0001046736901957781" /> - <width sOffset="274.22140033535186" a="2.4930597959641805" b="7.1698700829245579e-06" c="-0.0010829916280457961" d="0.00020656671411082238" /> - <width sOffset="277.42870435711296" a="2.4887575079328554" b="-0.00056506607926497471" c="0.00069738433542957615" d="-5.6393494525286606e-05" /> - <width sOffset="280.36637475130647" a="2.4916862143304535" b="0.0020722926540374274" c="0.00027492786485307973" d="-0.00010937834699368119" /> - <width sOffset="281.47825216242222" a="2.4941798856409889" b="0.002278000860200156" c="-0.0027921835134508168" d="0.00067961199285273058" /> - <width sOffset="283.72934813789357" a="2.4929112041733257" b="3.871962480876158e-05" c="-0.0018028077503280911" d="0.00067633824783690135" /> - <width sOffset="285.62109311720673" a="2.4911115458792343" b="0.00047904777314599582" c="0.00020723010286025274" d="-3.1023318115248327e-05" /> - <width sOffset="290.37945956385312" a="2.4947407185782193" b="0.000343906634261139" c="-0.00015258429779270276" d="-0.00010404336754943894" /> - <width sOffset="291.66293848005159" a="2.4947107819197152" b="-0.00056194840054398561" c="-0.00078883058153668287" d="0.0002773659312358243" /> - <width sOffset="293.91395362334919" a="2.4926124179623281" b="0.00010300951176127685" c="-0.0008764197032916772" d="0.00015022733500831841" /> - <width sOffset="297.91153402037116" a="2.4886155635334903" b="0.00029808400761134786" c="8.0276637516253359e-05" d="-1.7519994178424236e-05" /> - <width sOffset="300.39254437639977" a="2.4895816897754939" b="0.00037288997811877646" c="-2.1144827397557179e-05" d="5.7830042343399383e-07" /> - <width sOffset="310.40562918894642" a="2.4917760223509626" b="0.00012338451918659718" c="-7.7309022619821233e-06" d="1.0473356211758365e-07" /> - <width sOffset="320.41871400149307" a="2.4923415125341828" b="6.6506705265808458e-08" c="6.2267346743339735e-06" d="-5.4067469389815029e-07" /> - <width sOffset="329.92606315890419" a="2.4924403398169224" b="-2.8148262650558016e-05" c="0.00050646679420448268" d="-4.2677277755172122e-06" /> - <width sOffset="330.75671192976841" a="2.4927639631711713" b="0.00080440987062438136" c="0.013131471288550245" d="-0.021411426095979305" /> - <width sOffset="331.15683325553584" a="2.4938165562911054" b="0.0010290531830415004" c="-0.0001464415636270699" d="4.835924594493183e-06" /> - <width sOffset="340.44488362658637" a="2.4946160858293833" b="-0.0004397051723262586" c="2.8708988825925692e-05" d="3.2134368737024443e-07" /> - <width sOffset="346.16290173200059" a="2.4931005818095144" b="-7.986843620422495e-05" c="3.4504363183037511e-05" d="4.6110785366874611e-06" /> - <width sOffset="350.45796843913303" a="2.4937594168179231" b="0.00047171861674593588" c="9.3817530653170236e-05" d="1.6007674795993149e-05" /> - <width sOffset="352.39639572121121" a="2.4951429226151065" b="0.0010158820685405899" c="-0.00010462344374577124" d="2.1049030676556549e-06" /> - <width sOffset="360.47105325167968" a="2.4976325290358901" b="-0.00026199525217458514" c="-5.81058572097714e-05" d="2.4914317002194652e-06" /> - <width sOffset="370.48413806422639" a="2.491684571078725" b="-0.00067624622010499166" c="1.1559511264663264e-05" d="2.1103372339419144e-06" /> - <width sOffset="380.49722287677304" a="2.4881908705972835" b="0.00019000556942106459" c="8.3993700972522656e-05" d="1.4893753813516146e-06" /> - <width sOffset="381.2869146770721" a="2.4883940294740734" b="0.000325450225456552" c="0.00019095651569185445" d="-2.0460249033238513e-05" /> - <width sOffset="388.28917185021328" a="2.4930111637890127" b="-9.8930892630832209e-06" c="0.00012960379994424515" d="-3.1497649339319747e-05" /> - <width sOffset="390.46071380379726" a="2.4932783000594414" b="0.00010739666675879363" c="0.00010294365701745526" d="-1.2080048282227811e-05" /> - <width sOffset="390.51030768931969" a="2.4932838779993576" b="0.00011751828409143445" c="9.9094088461331722e-05" d="-7.3130939759404998e-06" /> - <width sOffset="400.52339250186634" a="2.4970541182144697" b="-9.7680068424411265e-05" c="-0.00010402904224368755" d="-1.6422529804573002e-05" /> - <width sOffset="402.3025652663232" a="2.4964585392453662" b="-0.00062380571877255001" c="-0.00097709010145816816" d="0.00017292001995834435" /> - <width sOffset="406.74050043828976" a="2.4895603814181149" b="0.00092078793964825781" c="2.4975378829323675e-05" d="-1.5556849260945298e-05" /> - <width sOffset="410.53647731441299" a="2.4925646253510827" b="0.00043790338189685475" c="-0.00014040481192169826" d="-2.6710275065583012e-05" /> - <width sOffset="411.7418425802091" a="2.4928416867478056" b="-1.6997295539138884e-05" c="6.8487551798019559e-05" d="-6.5752895014486152e-06" /> - <width sOffset="417.54054304680221" a="2.4937639577224351" b="0.00011399941112636292" c="5.2237998559909715e-05" d="-5.5332565562643679e-06" /> - <width sOffset="420.54956212695964" a="2.4944292077802723" b="0.00027807211465042417" c="-8.0013134469773445e-07" d="-8.5736980017338715e-06" /> - <width sOffset="423.03203028867154" a="2.4949834166369502" b="0.00011558946047015369" c="-2.6222105118543197e-05" d="7.5086029124369618e-07" /> - <width sOffset="430.56264693950629" a="2.4946874804720602" b="-0.0001516034994792165" c="-8.5070431150680937e-06" d="7.4861908679968138e-07" /> - <width sOffset="440.575731752053" a="2.4930680913403727" b="-9.6793144926670348e-05" c="2.7712903156715002e-05" d="-3.0026434865224239e-06" /> - <width sOffset="443.28639900649569" a="2.4929495396024235" b="-1.2739950149480417e-05" c="-2.7894769168090874e-05" d="6.2214808469234618e-07" /> - <width sOffset="450.05889048612789" a="2.491777077791685" b="-0.00030496659493026233" c="0.00015919601250045706" d="-8.9275181293120102e-06" /> - <width sOffset="450.58881656459965" a="2.4916588451805914" b="-0.00014376347878390072" c="0.00014252727632908192" d="-7.8917820792187415e-06" /> - <width sOffset="460.60190137714631" a="2.4965865787850259" b="0.00033677750655778239" c="-9.6804043649095951e-05" d="-8.4426800666361446e-06" /> - <width sOffset="461.79965653186139" a="2.4968365717836773" b="6.8546374552165383e-05" c="-3.9664815829906471e-05" d="1.318852675133684e-06" /> - <width sOffset="470.61498618969296" a="2.4952619426680842" b="-0.00032330620971146779" c="-5.5857619847022624e-06" d="1.6078983949704564e-06" /> - <width sOffset="478.02146914478197" a="2.4932142411979159" b="-0.00014143933788613827" c="1.1155237609601863e-05" d="2.1637695999045362e-06" /> - <width sOffset="480.62807100223961" a="2.4929596788534401" b="-3.918043692019554e-05" c="1.9949553220722631e-05" d="-1.5712915991596049e-06" /> - <width sOffset="488.81573806662306" a="2.4931138017500052" b="-2.8508066583069576e-05" c="9.9242710554730515e-06" d="-4.1464600013559809e-06" /> - <width sOffset="490.64115581478626" a="2.4930696106634063" b="-3.3726065063481928e-05" c="-7.8497905591747157e-06" d="1.79624461582605e-06" /> - <width sOffset="495.31615141792867" a="2.4929239105614247" b="1.0652386896110953e-05" c="-2.6693332711846423e-06" d="3.5341202130796812e-07" /> - <width sOffset="500.65424062733291" a="2.4929584682445114" b="1.2365743513163005e-05" c="8.4484602856315032e-07" d="-5.2777446528182879e-08" /> - <width sOffset="510.66732543987956" a="2.4931140084309966" b="1.3410077342544419e-05" c="-3.0413459336174056e-07" d="-7.6103511203176606e-08" /> - <width sOffset="520.68041025242621" a="2.4931413889281551" b="-1.5571414074486102e-05" c="1.0455929575693046e-05" d="-2.5759098780771997e-06" /> - <width sOffset="521.20447816224691" a="2.4931357293808167" b="-6.7345788657398407e-06" c="-8.873406534565343e-05" d="2.4290739033708711e-05" /> - <width sOffset="523.70453904113003" a="2.4929438481302144" b="5.0578293925998899e-06" c="8.9462235331915635e-05" d="2.7545033660504791e-05" /> - <width sOffset="524.17854857754469" a="2.4929692800402021" b="0.00010843660580960469" c="0.00018551360614727592" d="-1.5637787016507929e-05" /> - <width sOffset="530.69349506497292" a="2.4972255554158851" b="0.00053444358512419097" c="-0.00012620459679328009" d="-1.2643861171560485e-05" /> - <width sOffset="533.04760293144534" a="2.4976193371605939" b="-0.00026996503714561563" c="-0.00022315794809246218" d="1.5956353667966577e-05" /> - <width sOffset="540.70657987751952" a="2.489630043383162" b="-0.00088029253145372355" c="0.0001300050258381994" d="2.2563567336050762e-05" /> - <width sOffset="542.39840610185774" a="2.4886221151333228" b="-0.00024665123745143229" c="0.0011087815320571387" d="-0.00013833812389372395" /> - <width sOffset="547.75112438841541" a="2.4978541427469656" b="-0.00026748376205996439" c="-7.8731234991833679e-05" d="6.1133537338419351e-06" /> - <width sOffset="550.71966469006622" a="2.496526230607949" b="-0.00057330058476067738" c="-2.6669098336104049e-05" d="5.4691907395332153e-06" /> - <width sOffset="558.5006045804048" a="2.493027220674489" b="5.0421775630064771e-06" c="-0.00015559246113004604" d="1.3826520792541754e-05" /> - <width sOffset="560.73274950261293" a="2.4924170136228021" b="-0.00048289695181232884" c="-6.75653041158185e-05" d="1.1635917779871937e-05" /> - <width sOffset="563.22869423787449" a="2.4909717431309462" b="-0.00060270925047007143" c="0.00021861962164782824" d="-1.4027321343261572e-05" /> - <width sOffset="570.74583431515953" a="2.4928362771308663" b="0.00030613722732316306" c="-0.00010118494775685756" d="-1.1465104791475572e-05" /> - <width sOffset="571.97799938006244" a="2.4930384187322483" b="4.5640880374294302e-06" c="0.00027310728141178198" d="-5.9143048584816264e-05" /> - <width sOffset="574.01720570136104" a="2.4936818861106307" b="0.00038059358526828585" c="5.5754309554259106e-05" d="-1.4497962195202153e-05" /> - <width sOffset="580.75891912770624" a="2.4943394096908902" b="-0.00084447484781948747" c="-0.00025778160094093179" d="-9.8484715755186871e-06" /> - <width sOffset="581.49922790953906" a="2.4935689626753845" b="-0.0012423433878447239" c="0.00080122607199665445" d="-0.00016721302049911354" /> - <width sOffset="583.24916602616327" a="2.4929524577210547" b="2.5687722148483305e-05" c="0.0006581759794278189" d="-0.00013360815029757954" /> - <width sOffset="586.64809683207875" a="2.4953971161508282" b="-0.00013073996190735579" c="6.0219401195261787e-05" d="-1.379279767519706e-05" /> - <width sOffset="590.77200394025283" a="2.4949147449060147" b="-0.00033776771449281874" c="-0.00011378803889408976" d="-1.445363330092185e-05" /> - <width sOffset="591.15901999468019" a="2.4947661421975003" b="-0.00043233796763941139" c="1.6538077034333919e-06" d="5.2761958670976992e-07" /> - <width sOffset="600.78508875279954" a="2.4912282881917589" b="-0.00025382904257969206" c="1.7485804976999913e-05" d="5.5603880534837121e-07" /> - <width sOffset="610.79817356534613" a="2.4909980602832844" b="0.00026359312093887665" c="3.4178930753939453e-05" d="5.7136664192920939e-07" /> - <width sOffset="615.6086591872604" a="2.4931206016347636" b="0.00063209322629665678" c="-0.00029875743886588474" d="3.3719504198519951e-05" /> - <width sOffset="620.10841996904378" a="2.4929878748219734" b="-8.3386918349962879e-06" c="-0.0001632283596056527" d="3.8918811243410246e-05" /> - <width sOffset="620.81125837789284" a="2.492914894424282" b="-0.00018010945625631346" c="-8.0391550203478152e-05" d="3.8705778205516462e-05" /> - <width sOffset="623.41601792323422" a="2.4925843498581086" b="0.00018891890241261186" c="3.4434044563337168e-05" d="-2.4120237778951979e-06" /> - <width sOffset="630.82434319043944" a="2.4948930634575461" b="0.00030197675446380114" c="-1.9145340261381893e-05" d="-2.3655417140171676e-06" /> - <width sOffset="639.82944286001111" a="2.4943324507451736" b="-0.00061831288910376911" c="-6.1773862079293849e-06" d="1.9967183949256052e-05" /> - <width sOffset="640.83742800298614" a="2.4937233734405764" b="-0.00056990429990637587" c="5.4969321313863044e-05" d="2.1385845887327674e-05" /> - <width sOffset="643.07922325354514" a="2.4929629640088082" b="-1.0113039928673177e-06" c="-0.00020068262251845564" d="2.2164259365945177e-05" /> - <width sOffset="645.17357337891588" a="2.4922842022345568" b="-0.00054995321993450013" c="5.8511033994777855e-05" d="-1.4658285097598101e-06" /> - <width sOffset="650.85051281553285" a="2.4907796440026786" b="-2.7346613766064589e-05" c="3.4653553122671168e-05" d="-1.5413178200018031e-06" /> - <width sOffset="660.86359762807945" a="2.4924328738933594" b="0.00020302511021702161" c="-1.232919856469188e-05" d="-1.207080741885851e-06" /> - <width sOffset="665.67199327606158" a="2.4929898444573633" b="7.322389658306498e-07" c="0.0020646652361304826" d="-0.00026937053868412368" /> - <width sOffset="665.76920743149185" a="2.4930091804709953" b="0.00039452448013552725" c="-0.00060401140989226488" d="9.5946249971973424e-05" /> - <width sOffset="671.07586059170762" a="2.4924315316237013" b="0.0020896689876881841" c="-0.001893936515510221" d="-0.00026086333751655026" /> - <width sOffset="671.57581569672311" a="2.4929702740630697" b="2.9015834621608878e-07" c="5.9478962261298301e-05" d="-6.0331605289855644e-06" /> - <width sOffset="680.88976725317275" a="2.4932580705480376" b="-0.00046186597730838293" c="-0.00010545188634163694" d="-9.2305018475340149e-06" /> - <width sOffset="682.12564001050316" a="2.4925087737627427" b="-0.00076481169689491808" c="0.00037964093540772517" d="-4.1880927057731795e-05" /> - <width sOffset="686.87517370338401" a="2.4929531060344994" b="7.1644405694069532e-06" c="0.00026847555589773985" d="-3.9905774981953873e-05" /> - <width sOffset="690.90285206571946" a="2.4947298698029527" b="0.00022775326561135152" c="-0.00021585892586326776" d="-3.8864920941144409e-05" /> - <width sOffset="692.44411570959949" a="2.4944258314734826" b="-0.00071460787887230319" c="-2.9481524069758358e-05" d="5.3387199510025448e-06" /> - <width sOffset="700.91593687826605" a="2.4895020023680665" b="-6.4624394655393757e-05" c="9.8609766007383396e-05" d="8.3209218062567754e-06" /> - <width sOffset="703.12156529954882" a="2.489928464375283" b="0.00049180739004449445" c="-5.8821516191105286e-05" d="2.566324820080049e-06" /> - <width sOffset="710.92902169081276" a="2.491404033240519" b="4.2616121619117649e-05" c="1.6007171965009098e-06" d="2.529619966566594e-06" /> - <width sOffset="717.71955421822554" a="2.4925593064710698" b="0.00041428800438048162" c="-8.4367688188639173e-05" d="-6.2079516595873392e-06" /> - <width sOffset="719.71931211522565" a="2.4930007475445493" b="2.3807175226529342e-06" c="6.9695583148320772e-06" d="9.4063229370559971e-07" /> - <width sOffset="720.94210650335935" a="2.4930157995470967" b="2.3644765026635892e-05" c="9.9645813056606625e-06" d="4.2331271260293477e-08" /> - <width sOffset="730.95519131590606" a="2.4942941217726844" b="0.00023592979742263889" c="1.145463906355667e-05" d="4.9936131290173824e-08" /> - <width sOffset="735.70028970580915" a="2.4956768792532023" b="0.00034800965579160638" c="-0.00013332244728060555" d="6.404245021132754e-06" /> - <width sOffset="740.96827612845277" a="2.4947465390395154" b="-0.00052348633478398751" c="-3.1940925047590986e-05" d="6.5080225403208817e-06" /> - <width sOffset="750.82234652630427" a="2.4927137637843844" b="0.00074285716470579152" c="-0.00062525920645829184" d="0.00015722438326815606" /> - <width sOffset="751.82220354645722" a="2.4929885912683414" b="-3.5944169341355168e-05" c="-0.00075242976839989817" d="0.00016426773360929563" /> - <width sOffset="755.44943719323533" a="2.4907979558118134" b="0.00098930362970968974" c="-3.2998270536046322e-05" d="-2.0343884286381497e-05" /> - <width sOffset="758.94894046492936" a="2.4929840402980465" b="1.0922968769992193e-05" c="0.00018150026961311023" d="-3.1227487248281054e-05" /> - <width sOffset="760.99444575354607" a="2.4934985340810085" b="0.00036146646350449847" c="-9.0190079694486445e-06" d="-3.5852648248833703e-05" /> - <width sOffset="762.51770750610353" a="2.4939014951685339" b="8.4420308575465996e-05" c="-4.8827766163577011e-05" d="1.8709632038326486e-06" /> - <width sOffset="771.00753056609267" a="2.4922437282312062" b="-0.000340097100648025" c="-1.4403732868988617e-06" d="1.8711096369505852e-06" /> - <width sOffset="781.02061537863938" a="2.4905723567898388" b="0.0001938605788729484" c="5.4795545948334344e-05" d="1.8453519471454745e-06" /> - <width sOffset="783.35886979195107" a="2.4913488346009993" b="0.00048038045144044371" c="8.9392064031853293e-05" d="-2.7248619919584511e-05" /> - <width sOffset="787.10827463162138" a="2.4929703974206365" b="1.5282338407617392e-06" c="0.00034374921449215425" d="-4.075178803429044e-05" /> - <width sOffset="789.21568484218722" a="2.494118857805085" b="0.00090741163438238614" c="-0.00030224567360370778" d="2.143386870456884e-05" /> - <width sOffset="791.03370019118597" a="2.4948983630661594" b="2.0965457044793898e-05" c="-0.0001847969580296454" d="2.1353322554596968e-05" /> - <width sOffset="796.7144084473382" a="2.4929684509404844" b="-1.1346007406273263e-05" c="0.00018464145093142261" d="3.9111894539939632e-05" /> - <width sOffset="797.75345390454027" a="2.4931998782204134" b="0.00049903313249300904" c="1.4196856411263748e-06" d="-1.6981600894476991e-06" /> - <width sOffset="801.04678500373268" a="2.4947980999647372" b="0.0004531292377927868" c="-1.5106572402764382e-05" d="-1.7357212939632368e-06" /> - <width sOffset="809.35758159339957" a="2.4965242230233384" b="-0.00015762143537932432" c="-3.6236080802650022e-05" d="1.9598654987243104e-07" /> - <width sOffset="811.05986981627939" a="2.4961518683071038" b="-0.00027928616179742106" c="-3.2858059144676057e-05" d="2.2229911804426026e-06" /> - <width sOffset="818.14297542388272" a="2.4933151203425838" b="-0.00041017539731507497" c="1.8011971452895544e-05" d="6.0000718670482733e-07" /> - <width sOffset="821.07295462882598" a="2.4922830358505088" b="-0.00028917320797946459" c="2.1033347227120849e-05" d="-3.0219710165353834e-07" /> - <width sOffset="831.08603944137269" a="2.4911929777532329" b="4.1147634112891594e-05" c="1.1752491366848535e-05" d="-2.7875106995787212e-07" /> - <width sOffset="841.09912425391929" a="2.4925034725112347" b="0.00019266071125036881" c="3.5581518813887783e-06" d="-3.512135211291478e-08" /> - <width sOffset="843.86635599596627" a="2.4930631119182305" b="0.00021154634011046145" c="-7.7098793481418076e-05" d="6.5404391214327331e-06" /> - <width sOffset="849.86797206335575" a="2.4929695565982826" b="-7.1403865461341746e-06" c="-9.0694663723260308e-05" d="-7.860351788828085e-06" /> - <width sOffset="851.11220906646599" a="2.4928051246364245" b="-0.00026933813803741357" c="-9.0545770083638765e-05" d="8.2377219282963004e-06" /> - <width sOffset="860.99816282087033" a="2.4892523133267854" b="0.00035566840648400841" c="0.00011065303714594843" d="-1.5989038603897513e-05" /> - <width sOffset="861.12529387901259" a="2.4892992853827129" b="0.00038302802266830754" c="0.00010595084324780296" d="-1.5300676939456952e-05" /> - <width sOffset="866.66506766911164" a="2.492071431506635" b="0.00014822370929300395" c="-1.1339291404967693e-06" d="-6.4840320534748562e-07" /> - <width sOffset="871.1383786915593" a="2.4926537510842781" b="9.9154234450755637e-05" c="-7.4186052675925658e-06" d="3.2397206453975912e-08" /> - <width sOffset="878.16789840572289" a="2.4929954270956882" b="-3.4158850382493867e-07" c="0.00013087999203477557" d="-2.1758998173346767e-05" /> - <width sOffset="881.151463504106" a="2.4935815668648091" b="0.00019956270762706797" c="-6.2028657050055839e-05" d="-2.151028408293165e-05" /> - <width sOffset="881.27239416530426" a="2.4936047549526625" b="0.0001836166609245171" c="-0.00066231851745594524" d="0.00010128453234162002" /> - <width sOffset="886.49023220497531" a="2.4909191428502977" b="0.0015445426860382111" c="-0.0002360203823457389" d="-1.9471807146139385e-05" /> - <width sOffset="888.99077957519376" a="2.493001124715744" b="-1.0738825477564143e-06" c="2.409972069345696e-05" d="-9.2793607616887533e-07" /> - <width sOffset="891.1645483166526" a="2.493103136613346" b="9.0546309477340168e-05" c="1.8761069328497233e-05" d="-6.3423220932704858e-07" /> - <width sOffset="901.17763312919931" a="2.4952540792248188" b="0.00027549074906060074" c="-3.5287919701288789e-07" d="-5.3849612807588869e-07" /> - <width sOffset="907.95648681401849" a="2.4969376292087357" b="0.00019647020901259599" c="-3.6683647015887252e-05" d="1.6397702165253238e-06" /> - <width sOffset="911.1907179417459" a="2.4972448139714283" b="1.0640646979440311e-05" c="-2.4171089224574204e-05" d="4.9183387396553111e-07" /> - <width sOffset="921.20380275429261" a="2.4954216881953384" b="-0.00032547713779875452" c="-9.5576235172624932e-06" d="5.3746596318305867e-07" /> - <width sOffset="931.2168875668392" a="2.4917439713450875" b="-0.00035521770406824409" c="6.2363729518215575e-06" d="5.1625635944889466e-07" /> - <width sOffset="939.74309115220944" a="2.4894886603003332" b="-0.00013628298774011541" c="8.9326032764812637e-05" d="-3.938175666751133e-06" /> - <width sOffset="941.22997237938591" a="2.4894705614356836" b="0.00010323167192187357" c="7.0370394869968163e-05" d="-4.7972603205872893e-06" /> - <width sOffset="950.77559535968192" a="2.4926954524138836" b="0.00013532667822015155" c="-1.2884121797094075e-05" d="-1.0687552578658905e-07" /> - <width sOffset="951.24305719193251" a="2.4927558861079309" b="0.00012321094436009913" c="-1.0831976971288417e-05" d="-8.5693246758835982e-07" /> - <width sOffset="955.27622873017401" a="2.4930203994635187" b="-5.9813037439282934e-06" c="3.5147560695577628e-05" d="-1.5366438616563025e-06" /> - <width sOffset="961.25614200447922" a="2.4939128934810579" b="0.00024952920989791016" c="9.6772308027749775e-06" d="-1.2452346694829808e-06" /> - <width sOffset="969.26103978909748" a="2.4958917188010235" b="0.00016508180379462437" c="-5.6300114589906655e-05" d="1.271894157737193e-06" /> - <width sOffset="971.26922681702592" a="2.4960064866053644" b="-4.5652573739887172e-05" c="-4.910187788326519e-05" d="1.2952545690174209e-06" /> - <width sOffset="981.28231162957252" a="2.4919266632138664" b="-0.00063938118335015576" c="-9.5471337637343981e-06" d="8.2656150099834485e-07" /> - <width sOffset="985.50664077696649" a="2.4891176471172791" b="-0.00067579179151500569" c="0.00026207289543315093" d="-1.5622613873348639e-05" /> - <width sOffset="991.29539644211923" a="2.490957170020379" b="0.00078783318026527747" c="-1.6978074466039033e-05" d="-1.3373186117472593e-05" /> - <width sOffset="995.25757172602277" a="2.4929803346086796" b="2.3462720409584553e-05" c="-1.7922865363701496e-05" d="-1.5142442807734512e-05" /> - <width sOffset="997.95577261457277" a="2.4926157048239217" b="-0.00040398029766991472" c="3.2211147226108956e-05" d="-9.545098885193932e-07" /> - <width sOffset="1001.3084812546658" a="2.4915873787175205" b="-0.00022017906414601579" c="2.1814883364399741e-05" d="-4.5893739486980583e-07" /> - <width sOffset="1011.3215660672125" a="2.4911091667327847" b="7.8647729686476871e-05" c="1.0222779816208936e-05" d="-5.752361909100306e-07" /> - <width sOffset="1021.3346508797591" a="2.4923441309113414" b="0.00011034808812577135" c="-5.3110489190905213e-06" d="-4.9437059121082981e-07" /> - <width sOffset="1027.1947956283761" a="2.4927089087810632" b="-2.8309238636404273e-06" c="-9.5413041574323604e-05" d="9.1913045027359437e-06" /> - <width sOffset="1031.3477356923058" a="2.4917099026258764" b="-0.00031975537280343538" c="2.7889970648827187e-05" d="6.925762911177453e-06" /> - <width sOffset="1033.4990768547334" a="2.4912200417299859" b="-0.00010359081191900358" c="7.6321737504074429e-05" d="-4.8531414178821644e-06" /> - <width sOffset="1041.3608205048524" a="2.4927646616773762" b="0.00019657853113507363" c="-4.8077567191413635e-05" d="-1.016241073794535e-06" /> - <width sOffset="1043.2493917397071" a="2.4929575905459487" b="4.1088251491686739e-06" c="4.9426833931809876e-05" d="-4.1557361070023587e-06" /> - <width sOffset="1049.3399319544751" a="2.4938771966048678" b="0.00014371396014718589" c="7.5199432639293039e-05" d="-9.0613237893604106e-06" /> - <width sOffset="1051.3739053173992" a="2.4944043627868728" b="0.00033715986131513517" c="1.9699176408608223e-05" d="-8.7539330429836606e-06" /> - <width sOffset="1054.1270633990664" a="2.4952992521835977" b="0.00024656848395768292" c="-9.5932069622175635e-05" d="4.9413287553736328e-06" /> - <width sOffset="1061.3869901299458" a="2.4939238518769047" b="-0.00036503014139911607" c="1.2429749649827356e-05" d="4.7323275083013555e-06" /> - <width sOffset="1065.6271662846063" a="2.492960302150065" b="-4.3726044386465865e-06" c="-0.00014511524851685984" d="1.0411421250451977e-05" /> - <width sOffset="1069.5890536668653" a="2.491312634543899" b="-0.00066396291499287718" c="0.00012184701516005338" d="-2.9850150367209438e-06" /> - <width sOffset="1071.4000749424924" a="2.4904920868378877" b="-0.00025199858093478533" c="0.00010238723280914122" d="-5.3351428489369899e-06" /> - <width sOffset="1081.413159755039" a="2.4928782257728059" b="0.00019369135509236454" c="-2.9148898889455423e-05" d="-1.8874583887408484e-05" /> - <width sOffset="1082.8387932880275" a="2.4930404263990722" b="-4.5038068596800832e-06" c="0.00021958830999693128" d="-1.8548483216555256e-05" /> - <width sOffset="1091.4262445675859" a="2.4974488360305935" b="-0.00033663179604639124" c="-0.00025953067499033652" d="-1.7953153625636127e-05" /> - <width sOffset="1091.8043413420628" a="2.4972834844657852" b="-0.00054058681439029231" c="3.2953509598226445e-05" d="-2.3349608280468607e-06" /> - <width sOffset="1101.4393293801324" a="2.4930456163997103" b="-0.00055585768988700602" c="-3.1822012357638365e-05" d="-3.326820444446439e-06" /> - <width sOffset="1105.2058712429384" a="2.4903227317119265" b="-0.00093716675744609035" c="0.00037396774835894454" d="-2.6957966795528217e-05" /> - <width sOffset="1111.452414192679" a="2.492490019026353" b="0.00057920156027670231" c="-0.00012755676716612733" d="-2.9659974695102019e-05" /> - <width sOffset="1112.9554330658616" a="2.4929717027562992" b="-5.2503940676023805e-06" c="0.00010361707117855901" d="-1.5628132998517696e-05" /> - <width sOffset="1119.9151869771267" a="2.4926856616655737" b="-0.00083394646137722149" c="0.00030301322326938836" d="-1.5258253509212742e-05" /> - <width sOffset="1121.4654990052259" a="2.4920642126842756" b="-4.43451591351611e-06" c="0.00022485764870059847" d="-1.9844970680066834e-05" /> - <width sOffset="1131.0666046854833" a="2.4951856638685488" b="-0.0011746718562204638" c="0.0001414413050493506" d="5.2506456522271041e-06" /> - <width sOffset="1131.4785838177725" a="2.494726097102995" b="-0.0010554565980447871" c="0.0001393753954984844" d="7.3403359879560334e-06" /> - <width sOffset="1134.5663303337558" a="2.4930120376557126" b="1.5207407392980941e-05" c="-1.5925526276661472e-05" d="1.2327153982226733e-06" /> - <width sOffset="1141.4916686303191" a="2.4927629966986347" b="-2.8007666788199421e-05" c="6.3169450315314556e-06" d="6.0541974841271004e-07" /> - <width sOffset="1145.2041153890941" a="2.4927770583639166" b="4.3927136273890638e-05" c="-4.8024480117853324e-05" d="1.6914501380070189e-06" /> - <width sOffset="1151.5047534428656" a="2.4915704201734776" b="-0.0003598008324884952" c="-2.0341892617048358e-05" d="2.9298637345908839e-06" /> - <width sOffset="1156.8663448450277" a="2.4895081272255872" b="-0.00032525925495701237" c="0.00062476563303469584" d="-8.5052785416217373e-05" /> - <width sOffset="1161.3033980674234" a="2.4929352511841998" b="0.0001955623152066501" c="-5.2770345292000001e-05" d="-1.0059360493663624e-05" /> - <width sOffset="1161.5178382554125" a="2.4929746617861248" b="0.0001715424228573249" c="-4.9971121802337544e-05" d="-7.6285834250705032e-06" /> - <width sOffset="1162.8032283277187" a="2.4930963957874344" b="5.2651860145422683e-06" c="0.00014068790911390139" d="-9.7215578237855005e-06" /> - <width sOffset="1171.5309230679591" a="2.4973959151211895" b="0.00023947681030676279" c="-0.00010432863528655931" d="-1.6348605929293272e-05" /> - <width sOffset="1172.8940439030064" a="2.4974870901233563" b="-0.00013608021869236428" c="6.9684375173601826e-06" d="-3.2678984199637341e-07" /> - <width sOffset="1181.5440078805057" a="2.4966198921844454" b="-8.8879839586718983e-05" c="-1.717815956287099e-06" d="-4.2061171508310694e-07" /> - <width sOffset="1189.0716885984075" a="2.4956740738544783" b="-0.00018624530099583983" c="-0.00027583063663471074" d="4.1241918311647604e-05" /> - <width sOffset="1191.5570926930523" a="2.4941404927011099" b="-0.00079306360854483832" c="3.7318472308497858e-05" d="3.9581137708260335e-05" /> - <width sOffset="1193.8210158091479" a="2.4929956033352942" b="-1.5490004114516076e-05" c="0.00031570198046507864" d="4.5854466574678786e-05" /> - <width sOffset="1194.6704596605045" a="2.4932383468788624" b="0.00062011174737985344" c="-4.6297538716831046e-05" d="7.7231114811972207e-07" /> - <width sOffset="1201.5701775055991" a="2.4955665774566382" b="9.1532019182076897e-05" c="-2.6721800093699258e-05" d="7.7699891797644447e-07" /> - <width sOffset="1211.5832623181457" a="2.4945839707246229" b="-0.00020989319458305844" c="-2.1568306390137271e-06" d="8.7010354697315889e-07" /> - <width sOffset="1221.4161652307216" a="2.4931387868300359" b="7.1434479039802178e-08" c="-0.00049633038559758458" d="3.3981409779116637e-05" /> - <width sOffset="1221.5963471306923" a="2.493122884859635" b="-0.00017547839716466472" c="-0.00047285651749365938" d="3.2110704952543412e-05" /> - <width sOffset="1223.3317420962039" a="2.4915621283182352" b="-0.0015265506553396513" c="0.0009326619584662649" d="-9.4032602478709754e-05" /> - <width sOffset="1230.0287923596527" a="2.494924889990485" b="-0.0016866053258919088" c="0.00033040559719015147" d="2.9246300892164413e-05" /> - <width sOffset="1231.6094319432391" a="2.4931999639771512" b="-0.00042289223454249796" c="0.00048452485125752222" d="3.4756233898004295e-05" /> - <width sOffset="1232.0284084581865" a="2.4931103924352547" b="1.420298159482533e-06" c="1.1335019278338378e-05" d="-4.4337054887947045e-07" /> - <width sOffset="1241.6225167557857" a="2.4937758283686096" b="9.6486430800558432e-05" c="4.5279781730926713e-06" d="-3.0277937455193292e-06" /> - <width sOffset="1244.0255935368587" a="2.4939918233337321" b="6.5794078953534127e-05" c="-0.00012267125903743934" d="8.7092263982441977e-06" /> - <width sOffset="1251.6356015683323" a="2.491226616320418" b="-0.00028815248994082908" c="7.5244757351376667e-05" d="9.2234432786586606e-06" /> - <width sOffset="1254.3596304253338" a="2.4911864571150435" b="0.00032710835830085762" c="1.3544921773936359e-05" d="-3.1349421629023278e-06" /> - <width sOffset="1261.6486863808789" a="2.4930763454539617" b="2.4886145581151929e-05" c="-5.8517813900759779e-05" d="-3.2704129863841688e-06" /> - <width sOffset="1261.8579617259873" a="2.4930789606796946" b="-3.622054140246648e-08" c="-6.4359914799518497e-05" d="6.2991646915034651e-06" /> - <width sOffset="1271.6617711934257" a="2.4928283129229696" b="0.00055434569255772995" c="0.00013493580885041799" d="3.44787183424728e-06" /> - <width sOffset="1271.9203670762492" a="2.4929807474645704" b="0.00062482507828467439" c="-0.00042996672978313935" d="7.9674587842753705e-05" /> - <width sOffset="1274.4197755875502" a="2.4931004519940325" b="-3.1308223310972435e-05" c="-0.00012292892006424944" d="7.554191439469588e-05" /> - <width sOffset="1276.1941078572195" a="2.4930798701600221" b="0.00024593390702977837" c="1.5473562455099903e-05" d="-7.8987570046142988e-07" /> - <width sOffset="1281.6748560059723" a="2.4947625357247327" b="0.0003443670233020306" c="2.2718113878507937e-06" d="-7.5914258827580216e-07" /> - <width sOffset="1291.6879408185189" a="2.4976763615272226" b="0.00016152354279804501" c="-2.3804162510488943e-05" d="-6.7030512867814954e-07" /> - <width sOffset="1301.7010256310657" a="2.4962341208555729" b="-0.00051680078533610885" c="-5.3055797288167445e-05" d="6.1758348469949772e-06" /> - <width sOffset="1302.9293251376055" a="2.4955307331884358" b="-0.00061918479390698947" c="4.6722909396643375e-05" d="-8.986187626205601e-07" /> - <width sOffset="1311.7141104436123" a="2.4930878365464908" b="-6.3291803896739149e-06" c="1.7158392767485542e-05" d="-1.4252033357210868e-06" /> - <width sOffset="1311.926779186417" a="2.4930872528589045" b="7.7554994139120495e-07" c="9.2613794048741421e-05" d="-6.3685773380630312e-06" /> - <width sOffset="1318.5553900634077" a="2.4953068480551757" b="0.00038910028989145879" c="-4.7507383412378823e-05" d="4.7678837194113713e-07" /> - <width sOffset="1321.7271952561589" a="2.4960782716185426" b="0.00010212193017781687" c="-4.1795027942760751e-05" d="9.4934832419240684e-07" /> - <width sOffset="1329.2987860029723" a="2.4948675156581492" b="-0.00036751223188403234" c="-0.00030664674552748034" d="3.8457889752775778e-05" /> - <width sOffset="1331.7402800687055" a="2.492702044545223" b="-0.0011771345218776538" c="-6.586454693753021e-06" d="3.7817143016824783e-05" /> - <width sOffset="1334.7234229054543" a="2.4901358175115451" b="-0.00020681090745863903" c="0.00019563854590906235" d="-1.5759609260420831e-05" /> - <width sOffset="1341.7533648812523" a="2.4928752136811845" b="0.00020732069545419162" c="-0.00011738245305820272" d="-1.6202996798224117e-05" /> - <width sOffset="1342.4771672180516" a="2.492957633354747" b="1.193155244017495e-05" c="6.074686131684317e-05" d="-1.3286609900147975e-05" /> - <width sOffset="1346.1720092555402" a="2.4931608300909707" b="-8.3329056180731767e-05" c="0.00012865184522547552" d="-8.7480204674051737e-06" /> - <width sOffset="1351.7664496937989" a="2.4951894444082949" b="0.00053476067921995102" c="-1.8529721578260835e-05" d="-8.3967725559059181e-06" /> - <width sOffset="1355.5538187524412" a="2.496492818609708" b="3.3068833307727755e-05" c="-0.00022037399448326559" d="1.4733236904645318e-05" /> - <width sOffset="1361.7795345063455" a="2.4917123182219658" b="-0.00099774255783770683" c="4.9000657055411827e-05" d="1.5477143033843844e-05" /> - <width sOffset="1366.812339338047" a="2.4899049910415432" b="0.00067154637655149189" c="-1.4472312558362465e-05" d="-2.5465945738892817e-06" /> - <width sOffset="1371.7926193188923" a="2.4925759477778202" b="0.00033790304234796348" c="-5.1051318180352836e-05" d="-4.3046064047719022e-06" /> - <width sOffset="1374.3152808295799" a="2.4930343761751192" b="-1.8485837026480784e-06" c="0.00013583624079410204" d="-1.2571670658605357e-05" /> - <width sOffset="1377.9206838145524" a="2.4942042484261879" b="0.00048738536592802173" c="-0.00048393487359988464" d="4.9399609202037258e-05" /> - <width sOffset="1381.8057041314389" a="2.491690235325648" b="-0.0010359866211941237" c="8.785360678695464e-05" d="5.0955665751013192e-05" /> - <width sOffset="1383.7801967341063" a="2.4903794417676144" b="-9.3083536253349712e-05" c="0.00021826773156252615" d="-2.1664740695871826e-05" /> - <width sOffset="1390.2822846227282" a="2.4930465267773236" b="-2.4618641006899158e-06" c="5.6029384585750156e-05" d="-1.1225962644421584e-05" /> - <width sOffset="1391.8187889439855" a="2.4931342992236232" b="9.0208627810970353e-05" c="2.4187397175333628e-05" d="-2.5013198316079703e-06" /> - <width sOffset="1401.8318737565321" a="2.4939514879993459" b="-0.0001777714458853219" c="-5.3540517857740203e-05" d="-2.8785647769157036e-06" /> - <width sOffset="1403.9634428199029" a="2.4933014110915934" b="-0.00044525909454952938" c="0.00019916947274644661" d="2.0155487306336497e-05" /> - <width sOffset="1404.9637230981268" a="2.4930754807742188" b="1.3691858200028323e-05" c="-0.0001287116419142053" d="8.9711867885390269e-06" /> - <width sOffset="1411.0490912143937" a="2.4904140601199609" b="-0.00055616855466145186" c="9.7155888149432526e-05" d="-1.239988327015087e-06" /> - <width sOffset="1411.8449585690789" a="2.4900323376481461" b="-0.00040387839911844357" c="8.0779994575178583e-05" d="-2.3898379753018048e-06" /> - <width sOffset="1421.8580433816255" a="2.4916881906632788" b="0.00049500661954440155" c="9.7920489510998574e-06" d="-2.4805814796814586e-06" /> - <width sOffset="1431.8711281941721" a="2.4951361714321534" b="-5.5019341826933413e-05" c="-6.4685414974951992e-05" d="-2.14413783258761e-06" /> - <width sOffset="1432.6186303898912" a="2.495058005210514" b="-0.00015531849363455271" c="-3.244334082037053e-05" d="1.6449231993686822e-06" /> - <width sOffset="1441.8842130067187" a="2.49214206509824" b="-0.00033287639358081916" c="1.2755510178406376e-05" d="1.6095060860580415e-06" /> - <width sOffset="1448.7408358835089" a="2.4909781635484451" b="6.9047519904604643e-05" c="0.00062077635192477759" d="-0.00013917931582434009" /> - <width sOffset="1451.7412251347762" a="2.4930144656126343" b="3.5372153844642415e-05" c="3.0808157450320475e-05" d="-0.00018052857438384661" /> - <width sOffset="1451.8972978192655" a="2.4930200503657804" b="3.179646267372372e-05" c="-2.7611091761411055e-05" d="-0.00019449134756487649" /> - <width sOffset="1453.0098483952281" a="2.4927534191735958" b="-0.00075184696577126377" c="0.00015997104630946046" d="-1.2523652550215376e-05" /> - <width sOffset="1460.7002165660531" a="2.4907363770357591" b="-0.0005133871383233258" c="0.00074918190188667712" d="-0.00012522324209463361" /> - <width sOffset="1461.9103826318121" a="2.4909903397024653" b="0.00074971286073052378" c="0.00030522064993894883" d="-0.00011918406301242782" /> - <width sOffset="1464.450483994756" a="2.4929106943753867" b="-6.672180033917563e-06" c="0.00058056730796850003" d="-8.0001105668631175e-05" /> - <width sOffset="1469.5250707976595" a="2.4973729005899941" b="-0.00029482269210284826" c="-7.8186264237020637e-05" d="7.7955252307459578e-06" /> - <width sOffset="1471.9234674443587" a="2.4963235969825162" b="-0.00053533928925147446" c="-2.6648143081848852e-05" d="5.3869316836358091e-06" /> - <width sOffset="1480.2522822559922" a="2.4931286650130762" b="0.00014182652880556168" c="-0.00010186241463280363" d="7.9746567909309276e-06" /> - <width sOffset="1481.9365522569055" a="2.4931166813484245" b="-0.00013343439732670581" c="-6.6248766567401034e-05" d="5.4248124004809294e-06" /> - <width sOffset="1491.5717536576337" a="2.4905331878429084" b="0.00010079683791275459" c="0.00047834649564098088" d="-8.7783361485674886e-05" /> - <width sOffset="1491.9496370694521" a="2.4906348463943146" b="0.00042470994433938111" c="0.00037818710212726448" d="-8.691871939675626e-05" /> - <width sOffset="1495.3217198008228" a="2.4930345567934129" b="1.0223199804725459e-05" c="6.1838882601768133e-05" d="-9.9857057431504013e-05" /> - <width sOffset="1497.4583520991282" a="2.492364686153075" b="-0.0010931244827308245" c="0.00032989479421776134" d="-1.6638721858174691e-05" /> - <width sOffset="1501.9627218819987" a="2.4926135744572937" b="0.00086604539119026916" c="0.00010767765298722896" d="-1.6967514589014082e-05" /> - <width sOffset="1506.4420086598659" a="2.4971283734482759" b="0.00080937441666577119" c="-0.00022998705062840825" d="2.0323270220978645e-06" /> - <width sOffset="1511.7358591577381" a="2.4952692420816085" b="-0.0014547927095819185" c="0.00029142866145167521" d="-2.4709051560269482e-05" /> - <width sOffset="1511.9758066945453" a="2.4949366057532512" b="-0.0013192053882497348" c="0.00028127929031401209" d="-2.5682059528061729e-05" /> - <width sOffset="1518.7017022097875" a="2.4909740658174622" b="-0.0010208847924277837" c="0.0032801519067330504" d="-0.0011333989213170299" /> - <width sOffset="1520.4514758684236" a="2.4931586621294661" b="4.7752867335859248e-05" c="0.0010181974930665999" d="-0.001318994156861087" /> - <width sOffset="1521.8066438055062" a="2.4918106425579012" b="-0.004459509652661996" c="0.0018257706150139816" d="-0.00018880919885512596" /> - <width sOffset="1521.9888915070921" a="2.491057405826135" b="-0.003812838109735144" c="0.0017302329215670644" d="-0.00017772780358832333" /> - <width sOffset="1527.0560576948733" a="2.4930395281320452" b="3.1807815943583548e-05" c="-0.00021326881413581239" d="1.9390053835484413e-05" /> - <width sOffset="1532.0019763196387" a="2.4903257978710869" b="-0.0006548476337397219" c="9.0533059363493269e-05" d="5.9833550995441365e-08" /> - <width sOffset="1533.797122722136" a="2.4894423439966511" b="-0.00032922899215757369" c="0.00023999125611813609" d="-1.8238412588013851e-05" /> - <width sOffset="1541.7959289806395" a="2.4928298743525055" b="9.3278894180376468e-06" c="0.0003828912482172753" d="-6.6827087333915425e-05" /> - <width sOffset="1542.0150611321853" a="2.4928496012224679" b="0.00016750856582262792" c="0.00036287947398592216" d="-6.937214836148591e-05" /> - <width sOffset="1544.7779700796291" a="2.4946193762253506" b="0.00058402305680637409" c="2.156208918173007e-05" d="-3.40471150635287e-05" /> - <width sOffset="1550.3753965974056" a="2.4925929894555665" b="-0.0023748017652186395" c="0.0019631751304722443" d="-0.00039302918813470815" /> - <width sOffset="1552.0281459447322" a="2.4922562315644026" b="0.00089369857911896031" c="2.2026454766215756e-05" d="-0.00039159130773498978" /> - <width sOffset="1552.8748870600039" a="2.4927910246684792" b="8.8721722623303148e-05" c="0.00022317268561473179" d="-0.00034642991274896044" /> - <width sOffset="1554.2990358611337" a="2.4923693680360577" b="-0.0013835032993663324" c="0.00019257236532186877" d="-6.5631679739840184e-06" /> - <width sOffset="1562.0412307572788" a="2.490155276930234" b="0.00041814225836528211" c="3.9403126104782787e-05" d="-6.5056203366580752e-06" /> - <width sOffset="1569.2956586787609" a="2.4927786224850541" b="-3.7271932071097458e-05" c="-0.00030916538221883864" d="-4.8481195754556442e-06" /> - <width sOffset="1569.6810689720091" a="2.4927180561833495" b="-0.00027774340827038283" c="-9.7753991455771754e-05" d="9.0757658094595683e-06" /> - <width sOffset="1572.0543155698253" a="2.4916296371037179" b="-0.00058837977220692556" c="-3.7607695001460239e-05" d="1.0549050101151777e-05" /> - <width sOffset="1575.6149537980436" a="2.4895340420389154" b="-0.0004549674177228251" c="0.00052770426964365109" d="-5.4224659635875803e-05" /> - <width sOffset="1581.6970790705413" a="2.4940877536155854" b="-5.351661141529576e-05" c="-2.1649555423462159e-05" d="2.5109290697869947e-07" /> - <width sOffset="1582.0674003823719" a="2.4940649790516041" b="-6.9447891916739075e-05" c="-1.5565422384453217e-05" d="7.8199430975915083e-07" /> - <width sOffset="1592.0804851949188" a="2.492594041106484" b="-0.00014595105134690423" c="7.2281968031238252e-06" d="7.739530328978202e-07" /> - <width sOffset="1602.0935700074654" a="2.4926343284797854" b="0.00023159597313720371" c="3.8876225316536816e-05" d="-3.0507660393989083e-06" /> - <width sOffset="1602.2423068342173" a="2.4926696253364033" b="0.00024295815292988505" c="-0.00010658645736384279" d="9.4504724941971909e-06" /> - <width sOffset="1603.7417718548868" a="2.4928261453234235" b="-1.2941980873422019e-05" c="-0.0001003139746311724" d="1.222310280158986e-05" /> - <width sOffset="1608.6511623865013" a="2.4917911484758744" b="-0.00011409503284449566" c="-5.4463050537032631e-05" d="5.2986987490357763e-06" /> - <width sOffset="1612.106654820012" a="2.4909652064420245" b="-0.00030068215886448741" c="3.3198657881106303e-07" d="4.2414533553922104e-06" /> - <width sOffset="1619.2899811600437" a="2.490394579908922" b="0.00036066661254472593" c="5.2953235035429466e-05" d="-4.4968115759427824e-06" /> - <width sOffset="1622.1197396325588" a="2.4917373091071848" b="0.00055233124208149958" c="2.1378232162218985e-05" d="-1.445983221131788e-06" /> - <width sOffset="1629.2664512781812" a="2.4962487494839367" b="0.00063633647045503337" c="-0.00023381183436904009" d="1.392297794151955e-05" /> - <width sOffset="1632.1328244451054" a="2.4964795986186665" b="-0.00036086993196492731" c="-0.0001242226807642591" d="1.0242603470767298e-05" /> - <width sOffset="1640.5252300275747" a="2.4907561024301597" b="-0.00028168854108223521" c="7.5074092175960569e-05" d="8.0093326548037892e-06" /> - <width sOffset="1642.145909257652" a="2.490530860112008" b="2.4765470214543677e-05" c="9.1057365028131588e-05" d="-7.0155129207589613e-06" /> - <width sOffset="1651.0197604376885" a="2.4930187043163885" b="-1.6490153409165877e-05" c="0.00010486297358710873" d="-2.5261541484744109e-05" /> - <width sOffset="1652.1589940701986" a="2.4930986642754904" b="0.00012407937660397959" c="3.7506234752367125e-05" d="-9.4188219734982742e-06" /> - <width sOffset="1655.2336267271157" a="2.4935609589690273" b="8.7596451511543112e-05" c="6.6546057080247019e-05" d="-4.4315284636821862e-06" /> - <width sOffset="1662.1720788827454" a="2.4958921395490101" b="0.00037102021504975633" c="-2.4301634887743246e-05" d="-4.9279322778137792e-06" /> - <width sOffset="1666.5388917294647" a="2.496638552383093" b="-0.0001231341944219564" c="-0.00016318445430611739" d="2.2911013391828053e-05" /> - <width sOffset="1670.5061891593527" a="2.4950122431618311" b="-0.00033611655336248433" c="-3.2041658602884876e-05" d="1.4729624861823168e-06" /> - <width sOffset="1672.185163695292" a="2.4943645594825377" b="-0.00043125416405883233" c="-4.7455162424356578e-06" d="8.3803698276963663e-06" /> - <width sOffset="1675.7483379501134" a="2.4931467936431337" b="-0.00014587554166507755" c="3.2237650111001033e-05" d="-2.3743395665032219e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="1680.2879218034107"> - <left> - <lane id="5" type="shoulder" level="false"> - <link> - <predecessor id="4" /> - </link> - <width sOffset="0" a="2.4929268054545783" b="0.0010833544815621668" c="-0.00044855284692540834" d="3.3118022915299978e-05" /> - <width sOffset="1.9103267044279164" a="2.4935903215103661" b="-0.00026783289833918382" c="-0.00031275871517974052" d="2.5428687287539246e-05" /> - <width sOffset="2.8163672508749187" a="2.4931098207326405" b="-0.00077195310200166094" c="0.00042418880792787145" d="-6.4716338316969785e-05" /> - <width sOffset="5.8178015221467376" a="2.4928643562972548" b="2.5384241130534634e-05" c="-8.7256953896970601e-05" d="8.8101545981203335e-06" /> - <width sOffset="11.923411516974738" a="2.4917717966185275" b="-5.4842276788927974e-05" c="6.4673333964717435e-05" d="7.9516262888402981e-06" /> - <width sOffset="15.318793476473957" a="2.4926424393121076" b="0.00065935286743593405" c="-0.00068689072406221069" d="3.1476397510942709e-05" /> - <width sOffset="15.818384338123224" a="2.4928043291155539" b="-3.4071106326978573e-06" c="-1.1606720762111613e-05" d="5.7544026740873245e-07" /> - <width sOffset="21.936496329521333" a="2.492480810364289" b="-8.0811123512047889e-05" c="-1.7130666190101965e-06" d="4.2270364726102971e-07" /> - <width sOffset="31.949581142067927" a="2.4919242515912243" b="1.2025884970963407e-05" c="1.1968700456319958e-05" d="4.0398437603548045e-07" /> - <width sOffset="41.962665954614522" a="2.4936502443261448" b="0.00037322579440265263" c="2.3848237333664609e-05" d="7.0913340961128597e-07" /> - <width sOffset="45.877926289392008" a="2.4955196571983365" b="0.00059258138843185787" c="-0.0016402767747353011" d="0.00029646584119554653" /> - <width sOffset="49.031427652120556" a="2.4903737481466104" b="-0.00090797201789373505" c="0.0004077060836416912" d="-3.2245206751752919e-05" /> - <width sOffset="51.975750767161344" a="2.4904117637336842" b="0.00065426004798122689" c="0.00012780285185915808" d="-3.4788995105915746e-05" /> - <width sOffset="56.024548042518973" a="2.4928467924462892" b="-2.1707152448265099e-05" c="1.1445085208407505e-05" d="-1.0876962266267216e-06" /> - <width sOffset="61.988835579707938" a="2.4928936855057637" b="-1.2605532636045247e-06" c="1.3777225702524027e-05" d="-2.7626512500307437e-06" /> - <width sOffset="66.014720045980539" a="2.4929316440271272" b="-2.4658562427053166e-05" c="2.3445782448193832e-05" d="-1.1417745823740323e-05" /> - <width sOffset="70.524853523312458" a="2.492249861614666" b="-0.00050992686159818945" c="0.00021864329820041729" d="-2.3248704832875229e-05" /> - <width sOffset="72.001920392254533" a="2.4918987651744251" b="-1.6192266565538682e-05" c="0.00011744573113425886" d="-2.7202592337000638e-05" /> - <width sOffset="74.771588315678173" a="2.4921768971070133" b="8.3608949073936401e-06" c="0.0001570791535369456" d="-0.00016887704730084602" /> - <width sOffset="75.581918810744128" a="2.4921969578568968" b="-6.9739047460090631e-05" c="7.7667165667542036e-05" d="-7.3667831995695908e-06" /> - <width sOffset="81.578388666733417" a="2.49298308038132" b="6.7041936026459789e-05" c="-2.8578629530221487e-05" d="2.7197662700010211e-06" /> - <width sOffset="82.015005204801355" a="2.4930071303177552" b="4.3641571247541103e-05" c="-2.0974780882422736e-05" d="1.8573943266331967e-06" /> - <width sOffset="87.8221307537749" a="2.492916973243128" b="-1.2055705875865103e-05" c="-0.00025317725868697488" d="2.5752809241569842e-05" /> - <width sOffset="92.028090017347949" a="2.4903036452756577" b="-0.00077505338214310226" c="9.0568549627138254e-05" d="2.0547010172279196e-05" /> - <width sOffset="94.521920804570527" a="2.4892527326535738" b="6.0029296257351622e-05" c="0.00099836930686826673" d="-0.00019472396356482496" /> - <width sOffset="97.854046045184987" a="2.4933335507190915" b="0.00022731768396461313" c="-0.00016972640367727811" d="2.1191540556125016e-05" /> - <width sOffset="102.04117482989454" a="2.4928653563137999" b="-7.9421652434552223e-05" c="0.00011558886329099443" d="2.5748646892190115e-05" /> - <width sOffset="102.34897437726636" a="2.49285261217784" b="-9.46929045039617e-07" c="0.00070822372293507629" d="-0.0022125516718672655" /> - <width sOffset="103.55126060579369" a="2.4900300223171747" b="-0.007892650058874965" c="0.01726965245350397" d="-0.0074656234739780922" /> - <width sOffset="104.79959581082289" a="2.4925662394111736" b="0.00032202359873012218" c="0.0075999271319707774" d="-0.0043004583908112246" /> - <width sOffset="106.39349988238905" a="2.4949732481871116" b="-0.0082271999125276152" c="0.0075215570688043545" d="0.00095296759403391362" /> - <width sOffset="106.89290398980302" a="2.4928591562130933" b="-1.5838121826109754e-06" c="3.4454567182798048e-06" d="-2.3466641566760441e-07" /> - <width sOffset="112.05425964244114" a="2.4929105013673407" b="1.5228390005303169e-05" c="-2.765931077922313e-07" d="-8.0246213986966385e-08" /> - <width sOffset="122.06734445498796" a="2.4929546911581646" b="-1.4447616302405383e-05" c="-3.2594899729304101e-06" d="-3.1397864364761911e-07" /> - <width sOffset="125.48870693776394" a="2.4928545312522346" b="-4.7777449145911286e-05" c="2.0541822029242153e-05" d="2.4705379480789963e-06" /> - <width sOffset="126.48849408127762" a="2.492829766011539" b="7.0590895034585875e-07" c="-3.7062489776500198e-05" d="1.8830747746698495e-06" /> - <width sOffset="132.08042926753456" a="2.492004050378398" b="-0.00023714640150998182" c="-5.027874169251991e-06" d="1.788956770329272e-06" /> - <width sOffset="142.09351408008115" a="2.4909213677057878" b="0.0002002569773356871" c="6.1320269626474619e-05" d="1.3449994366779793e-06" /> - <width sOffset="142.72158449903645" a="2.4910716655788345" b="0.00027887556788253569" c="-4.4930836282626087e-05" d="5.3434156601968837e-05" /> - <width sOffset="143.4698425777317" a="2.4912775659727266" b="0.00030138761964405977" c="-1.9920974304166309e-05" d="4.2213819876143457e-07" /> - <width sOffset="152.10659889262774" a="2.4926665620287221" b="5.1748791122283901e-05" c="-7.8048401497238033e-06" d="3.5900121990163502e-07" /> - <width sOffset="162.11968370517457" a="2.4927626115182786" b="3.4301365733621159e-06" c="1.3913201624348784e-07" d="1.6589371768229269e-06" /> - <width sOffset="167.52760765935409" a="2.4930476049675026" b="0.00015048501310524259" c="-4.2928164289381205e-05" d="3.0370162368208511e-06" /> - <width sOffset="172.13276851772116" a="2.4931268204249974" b="-5.1674565673231455e-05" c="-1.9059843890823921e-05" d="2.8392145906728995e-07" /> - <width sOffset="179.35704546560373" a="2.4918658211123415" b="-0.00028260801340739179" c="5.5482945873570903e-05" d="-6.2466356467809508e-07" /> - <width sOffset="182.14585333026776" a="2.4914956486256603" b="1.2279670582047921e-05" c="4.5319916562610569e-05" d="-3.0712042316762543e-06" /> - <width sOffset="192.10682152305094" a="2.493079266347813" b="9.5733815529889903e-07" c="6.3833634074239983e-05" d="-5.1413483196382891e-06" /> - <width sOffset="192.15893814281458" a="2.4930794888944749" b="7.5690307208195733e-06" c="7.4114795860509279e-05" d="-4.8863311231308205e-06" /> - <width sOffset="202.17202295536117" a="2.4956806288305504" b="2.2066454006364189e-05" c="-7.4475202059379842e-05" d="-3.1727543750398899e-06" /> - <width sOffset="203.19960365538236" a="2.4956212212996114" b="-0.00014104265087493096" c="-5.1010957725142683e-05" d="2.0638711664693965e-06" /> - <width sOffset="212.18510776790777" a="2.4917325975652531" b="-0.0005578545500060639" c="-5.7262798187341954e-06" d="7.5371085141721361e-06" /> - <width sOffset="213.89789770986067" a="2.4907981829044488" b="-0.00051113667768419785" c="0.0003205760883864545" d="-2.8864731364085464e-05" /> - <width sOffset="220.39803396207412" a="2.4930931570716055" b="-2.3182547188498135e-06" c="-2.1985897813510305e-05" d="-3.0818791423743322e-05" /> - <width sOffset="222.19819258045436" a="2.4928379542701204" b="-0.00038108591155908231" c="-0.00018598108476463121" d="-2.8222916918547174e-05" /> - <width sOffset="223.18287465905587" a="2.4922554330339679" b="-0.00082944511259668604" c="6.0661087270747751e-05" d="-1.0698362907303322e-06" /> - <width sOffset="232.21127739300118" a="2.4889241606020658" b="4.286673037381299e-06" c="3.0650266561366933e-05" d="-1.0154589630178383e-06" /> - <width sOffset="242.22436220554778" a="2.4910206860783255" b="0.00031265867435682109" c="-2.5583992117844911e-07" d="-1.0831174634944656e-06" /> - <width sOffset="252.25211062229482" a="2.493038063488676" b="-1.9213351024827173e-05" c="4.5939448425624658e-05" d="-8.197991586311287e-06" /> - <width sOffset="252.50212969197105" a="2.4930360033151562" b="2.2207673470703819e-06" c="8.3078790641498282e-05" d="-5.3027936979088077e-06" /> - <width sOffset="262.25053183064119" a="2.4960402133841253" b="0.00011019684778967203" c="-7.3243711159709277e-05" d="-5.1671889003838773e-06" /> - <width sOffset="263.60427385214803" a="2.4960423445498385" b="-0.0001165177732326705" c="-5.8269880078359907e-05" d="2.2583417258808377e-06" /> - <width sOffset="272.26361664318779" a="2.4921304288429269" b="-0.00061765554323464211" c="-8.3696659347143126e-07" d="2.5019294129310884e-06" /> - <width sOffset="279.05358194667474" a="2.4886811910252309" b="-0.00028297741651169103" c="0.00013820260517946996" d="-4.9736876541864733e-06" /> - <width sOffset="282.27670145573438" a="2.4890383028214416" b="0.0004529021562169731" c="8.7081378266648461e-05" d="-6.0498475339166908e-06" /> - <width sOffset="292.28978626828098" a="2.496230565171718" b="0.00037710157371661428" c="-9.2493209194426833e-05" d="-6.867527993834242e-06" /> - <width sOffset="295.31896182580135" a="2.496333277316845" b="-0.00037230210760548873" c="-0.0012014103013326493" d="0.00088212416686552647" /> - <width sOffset="296.02288414918894" a="2.4957835820807048" b="-0.00075240602994827558" c="2.9092022437915219e-05" d="3.2710132461302716e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="4" type="driving" level="false"> - <link /> - <width sOffset="0" a="0" b="0" c="0.0021139076944207565" d="-9.7179354838400618e-05" /> - <width sOffset="1.9103267044279164" a="0.0070369043279372434" b="0.0070125847517304987" c="0.0015848208688841185" d="-8.9783702083562664e-05" /> - <width sOffset="2.8163672508749187" a="0.014624805834275278" b="0.0096632958094938961" c="0.0006729485874595756" d="3.6132352086928653e-07" /> - <width sOffset="11.923411516974738" a="0.15871496598974488" b="0.02201034358632268" c="0.00067437400116897512" d="2.0519043391638644e-06" /> - <width sOffset="15.318793476473957" a="0.24130341008701084" b="0.026660825089273997" c="0.0015278354814997927" d="-2.1472866895684195e-05" /> - <width sOffset="21.936496329521333" a="0.47842366952708026" b="0.044061199917069124" c="0.0011014290572112348" d="-2.1570661985470742e-05" /> - <width sOffset="31.949581142067927" a="1.0083880881442884" b="0.05963046048754226" c="0.0004539115100343471" d="-2.1586371387517785e-05" /> - <width sOffset="41.962665954614522" a="1.6293117436779543" b="0.062227699661068309" c="-0.00019281521996947565" d="-2.1861057577916701e-05" /> - <width sOffset="45.877926289392008" a="1.868681614367409" b="0.059712514360405949" c="0.0012228639229983668" d="-0.00031761776536385624" /> - <width sOffset="49.031427652120556" a="2.059185404420055" b="0.057949403348003484" c="-0.001025226800445922" d="1.1093282583370088e-05" /> - <width sOffset="51.975750767161344" a="2.2212025914326539" b="0.052200709699518406" c="-0.00092229383046464001" d="1.1802316185677263e-05" /> - <width sOffset="61.988835579707938" a="2.6632705292984822" b="0.037280663789959811" c="-0.00056270850224999515" d="1.1615531939275607e-05" /> - <width sOffset="70.524853523312458" a="2.9477224303409741" b="0.030213132545858359" c="-0.00061494152385616172" d="2.3446490950007731e-05" /> - <width sOffset="72.001920392254533" a="2.9910831708208256" b="0.028549974537810149" c="-0.00050676714981230566" d="2.7916300239304367e-05" /> - <width sOffset="74.771588315678173" a="3.066862795903841" b="0.026385263975201002" c="-0.00054047037056016971" d="0.00016959075520012819" /> - <width sOffset="75.571190945723629" a="3.08770166601865" b="0.025846231772699714" c="-0.007658877959112298" d="0.0038532124156637785" /> - <width sOffset="75.581918810744128" a="3.0879780642237638" b="0.025683235320439431" c="-0.0078659943929025623" d="0.0036917011232663133" /> - <width sOffset="76.613357902045664" a="3.1101513422643912" b="0.021239079659165636" c="-6.6422008214852472e-05" d="-6.1845665036797806e-06" /> - <width sOffset="81.578388666733417" a="3.2132096582516905" b="0.020122127941408406" c="-0.00018481998212042578" d="-1.627111591201317e-05" /> - <width sOffset="82.015005204801355" a="3.2219587248099391" b="0.019951431536091656" c="-0.00020593721389394114" d="-1.5904930271066203e-05" /> - <width sOffset="91.299620300739207" a="3.3767176039460205" b="0.012014126482032289" c="-0.00019980592495317406" d="-2.3229496433013808e-05" /> - <width sOffset="92.028090017347949" a="3.3853545206655937" b="0.011686039890821304" c="-0.00027453822860402564" d="-1.6037087698176116e-05" /> - <width sOffset="94.521920804570527" a="3.4125413917569594" b="0.010017522934975903" c="-0.0011485980353033796" d="0.00019923388603892438" /> - <width sOffset="97.854046045184987" a="3.4405390940846878" b="0.0089992944722936397" c="6.4580554769500014e-05" d="-1.6681618082001418e-05" /> - <width sOffset="102.04117482989454" a="3.478127948452447" b="0.0086627199121521396" c="-0.00016408383354716633" d="-2.1238724479607483e-05" /> - <width sOffset="102.56629414076565" a="3.4826285883926067" b="0.0084728229796110482" c="9.9864566739769634e-05" d="1.212384964250148e-05" /> - <width sOffset="103.55126060579369" a="3.4910825046293006" b="0.0087048356614212261" c="-0.024406100622834402" d="0.0052651956517562491" /> - <width sOffset="106.39349988238905" a="3.4395550225035283" b="-0.0024292490360650746" c="3.5526653459573478e-06" d="1.1769666873580514e-05" /> - <width sOffset="111.6255062620553" a="3.4286280823791904" b="-0.0014255291748289398" c="8.6540895158507671e-05" d="-4.9017029512326978e-07" /> - <width sOffset="112.05425964244114" a="3.4280327520587681" b="-0.0013515900953749423" c="8.5234243984703349e-05" d="-1.2448457811703282e-07" /> - <width sOffset="122.06734445498796" a="3.4229199364007057" b="0.00031788216371315438" c="7.7196913278370461e-05" d="4.6615948450182829e-07" /> - <width sOffset="125.48870693776394" a="3.4249298415183773" b="0.00086248960840003882" c="5.495759872958703e-05" d="-2.3183571039343316e-06" /> - <width sOffset="132.08042926753456" a="3.4323390716291025" b="0.0012848166345556015" c="9.800828594828297e-06" d="-2.3910288265720016e-06" /> - <width sOffset="139.44395605528257" a="3.4413766230751621" b="0.0010402182618885784" c="-2.5062257752599092e-05" d="-2.1187663496724711e-06" /> - <width sOffset="142.09351408008115" a="3.443917390994053" b="0.00086278822770900808" c="-5.5789701225817088e-05" d="-3.8675935020498551e-06" /> - <width sOffset="142.72158449903645" a="3.444436317036156" b="0.0007881315283902483" c="4.570830455296764e-05" d="-5.595675066035029e-05" /> - <width sOffset="143.4698425777317" a="3.445028191797471" b="0.00076254584374228665" c="1.5035788424214466e-05" d="-2.9447322571481714e-06" /> - <width sOffset="150.67336790724471" a="3.4502006981517006" b="0.00052075387310001296" c="-0.00059602331739601918" d="4.449712105310024e-05" /> - <width sOffset="152.10659889262774" a="3.4498537395808722" b="-0.00091351287511019818" c="-0.00041164778001752817" d="3.7619770426106483e-05" /> - <width sOffset="160.26311173408362" a="3.4354303430724915" b="-0.00012035022504193336" c="-1.1422688259144305e-06" d="1.1989933574391472e-06" /> - <width sOffset="162.11968370517457" a="3.4352106397472255" b="-0.00011219334874029214" c="1.3105110272585375e-05" d="-2.5567455204794532e-06" /> - <width sOffset="167.52760765935409" a="3.4345828037231927" b="-0.00019477145786195294" c="4.160656883426125e-05" d="-3.9348245804531726e-06" /> - <width sOffset="172.13276851772116" a="3.4341839307842967" b="-6.1905027339858185e-05" c="1.1138021168631829e-05" d="7.359009524858495e-07" /> - <width sOffset="176.70578626468387" a="3.4342041383250814" b="8.6132276432104442e-05" c="-4.9882938533065723e-06" d="-9.6607496694748193e-07" /> - <width sOffset="179.35704546560373" a="3.434379429789991" b="3.9309625447886061e-05" c="-8.1061647296721e-05" d="-5.7489943346092606e-08" /> - <width sOffset="182.14585333026776" a="3.4338573569840358" b="-0.00041416246891842046" c="-7.7583628119182838e-05" d="2.6711220099507325e-06" /> - <width sOffset="192.15893814281458" a="3.424613254691816" b="-0.0011644303229444569" c="4.8336278853638024e-06" d="9.3345227602101588e-07" /> - <width sOffset="195.54057011839404" a="3.4207669515178285" b="-0.0010997159237398106" c="-0.00010698115828133639" d="1.0604501369143913e-05" /> - <width sOffset="202.17202295536117" a="3.4118621629792765" b="-0.0011195609740523955" c="0.00010445174739712263" d="8.8184083878524584e-06" /> - <width sOffset="203.19960365538236" a="3.4108315850091859" b="-0.00087696111784683916" c="9.8391598370542812e-05" d="3.5817828463425011e-06" /> - <width sOffset="208.147234881445" a="3.4093350397899869" b="0.0003596855463000357" c="6.7808684561187168e-05" d="-7.3860184055816836e-06" /> - <width sOffset="212.18510776790777" a="3.4114067256632188" b="0.00054601706193970769" c="-9.8616004077167686e-06" d="-1.344583153305083e-05" /> - <width sOffset="213.89789770986067" a="3.4122454461090621" b="0.00039389929572545071" c="-0.00036652517268242579" d="2.2956008345200787e-05" /> - <width sOffset="220.20931019844397" a="3.4059027019884898" b="-0.0014893998854762494" c="2.9582445263412908e-05" d="2.9918750302416467e-05" /> - <width sOffset="222.19819258045436" a="3.4032928593351484" b="-0.0010166832822838573" c="0.0002070537906340101" d="2.8881236384832688e-05" /> - <width sOffset="223.18287465905587" a="3.4025200828945872" b="-0.00052490933232054332" c="-3.7643675249217413e-05" d="1.7281557619666871e-06" /> - <width sOffset="232.21127739300118" a="3.3959843674096195" b="-0.00078203726603569333" c="6.3104495733518803e-06" d="1.6447638580041351e-06" /> - <width sOffset="242.22436220554778" a="3.3904376881348224" b="-0.00016094184465051007" c="5.4381196266050355e-05" d="1.7564150423463206e-06" /> - <width sOffset="246.4694542933421" a="3.3908688339403295" b="0.00039572057593145797" c="0.00026504338915906285" d="-1.9946995241852667e-05" /> - <width sOffset="252.23744701809437" a="3.3981414512276649" b="0.0014623632159687949" c="-7.6911839655316531e-05" d="-2.0822625622827488e-05" /> - <width sOffset="252.25211062229482" a="3.3981628781397211" b="0.0014600941744963146" c="-0.00015660682895870829" d="-1.3708135343128464e-05" /> - <width sOffset="256.66665769399174" a="3.4003772092948985" b="-0.00072404397445237942" c="-0.00024713546116143179" d="1.249524793960509e-05" /> - <width sOffset="262.25053183064119" a="3.3908041047904245" b="-0.0023151982078307063" c="-3.725936378092808e-05" d="1.2471519378717688e-05" /> - <width sOffset="263.60427385214803" a="3.3876325820112241" b="-0.0023475107681920826" c="-2.2568657539695108e-05" d="5.0459887524490032e-06" /> - <width sOffset="270.115054351352" a="3.3727844244426697" b="-0.0019996875524718877" c="-3.1003938026269047e-05" d="-2.7184734755798105e-07" /> - <width sOffset="272.26361664318779" a="3.3683421507706317" b="-0.002136680139734531" c="-3.1327374395290025e-05" d="-1.5076886440169556e-06" /> - <width sOffset="279.05358194667474" a="3.3519178911871643" b="-0.0027706334629930972" c="-0.00015011436519549181" d="5.9679284231928977e-06" /> - <width sOffset="282.27670145573438" a="3.3416281718172227" b="-0.0035523130791077946" c="-8.7353895066507811e-05" d="6.7610610643209431e-06" /> - <width sOffset="284.32761935430426" a="3.3340335614410668" b="-0.0038253079850426941" c="-0.00038866946524873018" d="5.1053520181853396e-05" /> - <width sOffset="291.88196883539422" a="3.3049650240171218" b="-0.00095700102996605684" c="0.002469321696813223" d="-0.00067657404276732342" /> - <width sOffset="292.28978626828098" a="3.3049395382634685" b="0.00071949048613813326" c="0.0016360428979541747" d="-0.000675801992300226" /> - <width sOffset="294.18721351606405" a="3.3075783285586695" b="-0.00037109291350045107" c="-0.0049533099053660845" d="0.00042669133523024454" /> - <width sOffset="295.31896182580135" a="3.3014324105333142" b="-0.0099433049261636406" c="-0.0024580800647645189" d="-0.00046230035962861309" /> - <width sOffset="296.02288414918894" a="3.293053851714645" b="-0.014091118476628915" c="-0.0028020123391242603" d="0.00041655279399077725" /> - <roadMark sOffset="0" color="standard" width="0.27524430384841919" weight="bold" type="solid"> - <type name="solid"> - <line length="103.55126060579369" space="0" width="0.27524399999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="103.55126060579369" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="198.75161047503411" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="3" type="driving" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="3.8729516367967589" b="-0.0041514551732184084" c="-0.0082239700714142622" d="0.34791070747548791" /> - <width sOffset="0.011780922442085284" a="3.8729021562798138" b="-0.0042003673598700426" c="0.00017801241585362521" d="2.8719037167427987e-06" /> - <width sOffset="1.9103267044279164" a="3.8655888612340243" b="-0.0034933827925386464" c="0.00017445237402960104" d="-2.3892872904691749e-06" /> - <width sOffset="11.923411516974738" a="3.8457015652722686" b="-0.00071843317566780938" c="9.5091392193377683e-05" d="-2.6291790119902878e-06" /> - <width sOffset="11.949671679382618" a="3.8456827646274419" b="-0.00071344438403529199" c="0.00024380402707080404" d="-6.8624082622561735e-06" /> - <width sOffset="21.936496329521333" a="3.8560386020333857" b="0.0021029105760472198" c="3.7269410324677968e-05" d="-6.9892102079681834e-06" /> - <width sOffset="29.652592133565349" a="3.8712729558737879" b="0.0014296856459633878" c="-8.9059543367611392e-05" d="5.2541297146511509e-06" /> - <width sOffset="31.949581142067927" a="3.8741507120801235" b="0.0011037129250710803" c="-5.2246402280587952e-05" d="4.9160245064707959e-06" /> - <width sOffset="41.962665954614522" a="3.8848993086924226" b="0.0015360870032410205" c="9.6543134593481583e-05" d="5.0351552402523836e-06" /> - <width sOffset="45.176303063400155" a="3.8909998909404679" b="0.0023125973484800447" c="0.00021712931717770328" d="-3.3319076536633833e-05" /> - <width sOffset="49.845787510452055" a="3.9031404913921364" b="0.0021608853566959822" c="-0.00017585374042978043" d="4.8971660480450562e-06" /> - <width sOffset="51.975750767161344" a="3.9069926162845094" b="0.0014784129036960652" c="-0.00014220447900555061" d="4.4787128831471265e-06" /> - <width sOffset="61.988835579707938" a="3.9120347202835095" b="-2.2265761828852218e-05" c="-3.8751889581164617e-06" d="4.7859188358305404e-06" /> - <width sOffset="65.952192940058922" a="3.912183558847349" b="0.00017255125406460004" c="-2.676899676555412e-05" d="-6.437644189043942e-07" /> - <width sOffset="72.001920392254533" a="3.9121051837528005" b="-0.00022202280763399147" c="-3.8079537165916056e-05" d="-1.7558415015813786e-07" /> - <width sOffset="75.557595712130933" a="3.9108264165627267" b="-0.00049947938871287238" c="6.1976840142591609e-05" d="-1.4437301905235677e-05" /> - <width sOffset="75.571190945723629" a="3.9108196374426925" b="-0.00049780221478619088" c="0.007586611174692723" d="-0.003698058642561365" /> - <width sOffset="76.613357902045664" a="3.9143548840327136" b="0.0032657115234656082" c="-0.00035165021363226044" d="-1.7295279014950124e-07" /> - <width sOffset="80.242339475822291" a="3.9215667651919301" b="0.00070661412301553043" c="-5.4402301666064225e-05" d="1.8862389227836539e-06" /> - <width sOffset="82.015005204801355" a="3.9226589120608812" b="0.00053152156501162697" c="-4.4343496312063935e-05" d="1.7202169139249226e-06" /> - <width sOffset="91.299620300739207" a="3.925148107915212" b="0.00015296611086979689" c="-0.0004455735965542062" d="9.0447830728069799e-06" /> - <width sOffset="92.028090017347949" a="3.925026583881265" b="-0.00048180829804603687" c="-0.00042446413909263383" d="8.8692421896135612e-06" /> - <width sOffset="98.85352283083057" a="3.9047839028305451" b="-0.005036549489979828" c="-5.9162362967314218e-05" d="8.9642233158990819e-05" /> - <width sOffset="102.18208077008399" a="3.8906698125014043" b="-0.0024508811643482232" c="0.0011884081073907456" d="-1.290232501945417e-05" /> - <width sOffset="102.56629414076565" a="3.8899028521027708" b="-0.0015433905153096957" c="0.00087612937665776586" d="-4.6264899159120149e-05" /> - <width sOffset="111.6255062620553" a="3.9134271106249159" b="0.0029399061897291212" c="-0.00027949254236162848" d="-3.4005062055122743e-05" /> - <width sOffset="112.05425964244114" a="3.9146335461842314" b="0.0026814860483633267" c="-0.00032290554534944097" d="-3.4088619198059955e-05" /> - <width sOffset="115.65874361271403" a="3.9185072435080572" b="-0.00097499885733296095" c="-1.2289083622185675e-05" d="2.4315373597672883e-07" /> - <width sOffset="122.06734445498796" a="3.9118181489414026" b="-0.0011025514286445764" c="-8.8436273581819916e-06" d="2.2752702089803075e-07" /> - <width sOffset="132.08042926753456" a="3.9001199507167077" b="-0.0012112185581795161" c="-1.2769762071629958e-06" d="1.0012476149079834e-07" /> - <width sOffset="139.44395605528257" a="3.8911718467971057" b="-0.0012137379028958626" c="-1.702129021416963e-05" d="-1.7213771529025236e-07" /> - <width sOffset="142.09351408008115" a="3.8878332838387011" b="-0.0013075609967898871" c="-5.8108965948150548e-06" d="1.6687757858659266e-06" /> - <width sOffset="148.99424498138774" a="3.8790818239559082" b="-0.0011493581200019366" c="-9.2605654235655748e-05" d="7.020524177410633e-06" /> - <width sOffset="150.67336790724471" a="3.8769240496551975" b="-0.0014009685434706171" c="0.00049018106066869274" d="-4.0421329132419247e-05" /> - <width sOffset="152.10659889262774" a="3.8758040407318015" b="-0.00024497772221829164" c="0.00033151879560644622" d="-3.3295873964499538e-05" /> - <width sOffset="160.26311173408362" a="3.8777936452341049" b="-0.0014822968988764502" c="2.6817035457808508e-05" d="3.1249031044110962e-06" /> - <width sOffset="162.11968370517457" a="3.875154086237699" b="-0.0013504080804149841" c="5.4964290804312459e-05" d="4.7733137113312347e-06" /> - <width sOffset="169.60665199665777" a="3.8701278932244185" b="0.00027532364561131859" c="8.18932773157588e-05" d="-2.9517136033364618e-06" /> - <width sOffset="172.13276851772116" a="3.8712983944256845" b="0.00063256056992442786" c="7.4955244084700493e-05" d="-5.8683061232093066e-06" /> - <width sOffset="176.70578626468387" a="3.8751974011714201" b="0.00094994119028877686" c="2.0669819315170933e-05" d="-4.1663302037051471e-06" /> - <width sOffset="182.14585333026776" a="3.8803060954951771" b="0.00080493234811631958" c="-4.4417480875400675e-05" d="-3.1905892109506306e-06" /> - <width sOffset="188.43984329519549" a="3.8828172475693457" b="-0.00013337297685726631" c="-5.0970962801211358e-08" d="3.5330486305133097e-07" /> - <width sOffset="192.15893814281458" a="3.8823386902591781" b="-0.0001190917234467438" c="-6.8730299177041428e-06" d="2.1986394942076585e-06" /> - <width sOffset="195.54057011839404" a="3.8819423921326499" b="-9.0148643048848197e-05" c="0.00013671650129094487" d="-7.4724095989261163e-06" /> - <width sOffset="202.17202295536117" a="3.8851776953210901" b="0.00073728562647556604" c="-1.2867477353552476e-05" d="-7.8316199205258287e-06" /> - <width sOffset="208.147234881445" a="3.8874529733396406" b="-0.00025532686176416838" c="-6.9507307826245732e-05" d="3.1361813313505851e-06" /> - <width sOffset="212.18510776790777" a="3.8854951907807624" b="-0.00066324938028025659" c="-2.6576174144601606e-05" d="3.5135591138356242e-06" /> - <width sOffset="220.20931019844397" a="3.8802772802019443" b="-0.0004110632982936318" c="9.6551249926621707e-05" d="-3.4491828434581106e-06" /> - <width sOffset="222.19819258045436" a="3.8798145110484192" b="-6.7936451139117215e-05" c="7.7063528677666495e-05" d="-2.4466711361378403e-06" /> - <width sOffset="232.21127739300118" a="3.8844045029212491" b="0.00073942739453493019" c="1.0025480567521678e-06" d="-2.4654832062001024e-06" /> - <width sOffset="242.22436220554778" a="3.8894337954848068" b="1.7922740618179058e-05" c="-7.2620830719821104e-05" d="-2.8015912547101713e-06" /> - <width sOffset="246.4694542933421" a="3.887986871519105" b="-0.00075010229166275883" c="-0.00029659363142119864" d="1.8901819029487959e-05" /> - <width sOffset="252.23744701809437" a="3.8774199457977305" b="-0.002285026290111489" c="2.7714746098214487e-05" d="1.971737452962003e-05" /> - <width sOffset="256.66665769399174" a="3.8695560673091043" b="-0.00087907651958722764" c="0.00019869496939044481" d="-6.4860087531124505e-06" /> - <width sOffset="259.67029216922742" a="3.8685324735441693" b="0.00013899078899645971" c="2.8828834187954663e-05" d="-1.4988570705838959e-06" /> - <width sOffset="262.25053183064119" a="3.869057287181461" b="0.00025782485415479033" c="1.4318792424107215e-05" d="-1.7751151966435661e-06" /> - <width sOffset="270.115054351352" a="3.871107121312515" b="0.0001536693555489561" c="7.9432748093748211e-05" d="3.5427209033154979e-06" /> - <width sOffset="272.26361664318779" a="3.8718391147761082" b="0.00054406476938399133" c="0.00010630751798212636" d="4.376342788715369e-06" /> - <width sOffset="278.23424091068864" a="3.8798086827550442" b="0.0022815375155062025" c="0.0013630846239088175" d="-0.00047878763798117055" /> - <width sOffset="279.58780969828354" a="3.8842069099986318" b="0.0033399650143182101" c="0.00021545395326854632" d="-7.3569810608237907e-06" /> - <width sOffset="282.27670145573438" a="3.8946024488844255" b="0.0043390537479313296" c="0.00015563604556104451" d="-6.851383157751103e-06" /> - <width sOffset="284.32761935430426" a="3.9040970333649128" b="0.0048909910672989831" c="0.00045639588614912761" d="-5.1143842275281112e-05" /> - <width sOffset="291.88196883539422" a="3.9450421988587454" b="0.0030304786605774114" c="-0.002403642249923104" d="0.00067648372069340293" /> - <width sOffset="292.28978626828098" a="3.9459242022917169" b="0.0014075125255731008" c="-0.0015757405475041201" d="0.00067648755541863375" /> - <width sOffset="294.18721351606405" a="3.9475430310094031" b="0.0027343391259580002" c="0.0050175146742380654" d="-0.00042600577211235135" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="75.571190945723629" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="284.32761935430426" color="standard" width="0.14999999999999999" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="2" /> - </link> - <width sOffset="0" a="3.8112366768362893" b="-0.00022962701597545581" c="0.0082702723536082195" d="-0.34789979460445097" /> - <width sOffset="0.011780922442085284" a="3.8112345506078942" b="-0.00017961931833649671" c="-0.00013132444259799568" d="8.0409673201214855e-06" /> - <width sOffset="1.9103267044279164" a="3.8104752057489133" b="-0.00059131982821942607" c="-0.00010522597194742536" d="2.8015944500032623e-06" /> - <width sOffset="11.923411516974738" a="3.7968167240522939" b="-0.0018559137171078989" c="-3.0901473644838886e-05" d="5.0816260044469874e-06" /> - <width sOffset="11.949671679382618" a="3.7967679662391522" b="-0.0018575261597744861" c="-0.00017942090355332197" d="9.314855254667274e-06" /> - <width sOffset="13.951862796031037" a="3.7924043508886554" b="-0.0024639727218136211" c="-0.0001617716554071732" d="8.6738047492584018e-06" /> - <width sOffset="21.936496329521333" a="3.7668322275582211" b="-0.0033883685496778988" c="4.5155406444964562e-05" d="8.5027242792069806e-06" /> - <width sOffset="28.786173089097019" a="3.7484741541757152" b="-0.0015729743910836858" c="0.00027112348190336266" d="2.5481911604412658e-06" /> - <width sOffset="29.652592133565349" a="3.7473164840704301" b="-0.001097422651428117" c="0.00024228759296854701" d="-9.6951487619114683e-06" /> - <width sOffset="31.949581142067927" a="3.7459565658427558" b="-0.00013781820033482994" c="0.00017908110029230467" d="-9.1121239395943123e-06" /> - <width sOffset="41.962665954614522" a="3.7533836461634316" b="0.00070769460254625771" c="-9.2895684972449567e-05" d="-9.1733859004875854e-06" /> - <width sOffset="45.176303063400155" a="3.7543940900724611" b="-0.00017358486166796708" c="-0.00025337818240004658" d="2.9180845876409883e-05" /> - <width sOffset="49.111552512628577" a="3.7515654676247499" b="-0.00081209735148789555" c="0.00018442123667390309" d="3.1793918565474212e-05" /> - <width sOffset="49.845787510452055" a="3.7510812038931451" b="-0.00048985989593919657" c="0.00018068818843360837" d="-6.4223240193951132e-06" /> - <width sOffset="51.975750767161344" a="3.7507954967343671" b="0.00019244919886481429" c="0.00014457330141298715" d="-5.9740172114360006e-06" /> - <width sOffset="61.988835579707938" a="3.7612201974915127" b="0.0012908002905924996" c="-2.4197075122925274e-05" d="-7.2772353746465777e-06" /> - <width sOffset="65.574375213929443" a="3.7652018815039603" b="0.00083661067048081909" c="-0.00033073013317852517" d="1.1345773241045328e-05" /> - <width sOffset="65.952192940058922" a="3.7654713692649926" b="0.00059155795593290438" c="-0.00023807150269674465" d="1.6775456496515737e-05" /> - <width sOffset="72.001920392254533" a="3.7640512476254213" b="-0.00044707247972037342" c="6.8410384765064987e-05" d="1.7265372486267492e-05" /> - <width sOffset="75.557595712130933" a="3.764102647593532" b="0.00069426710503110462" c="0.00015065120718898547" d="3.1527798731818775e-05" /> - <width sOffset="80.242339475822291" a="3.7739029650627223" b="0.0041815968738297491" c="0.00029461934325232693" d="2.9468606930110986e-05" /> - <width sOffset="80.468183409819858" a="3.7748627200099643" b="0.00431918203840538" c="0.00080321069301944679" d="-0.00012701297717339648" /> - <width sOffset="82.015005204801355" a="3.7829954562082042" b="0.0058923339299251686" c="0.00021407588549778083" d="-0.00012829951104068014" /> - <width sOffset="85.759689547903463" a="3.8013252367754959" b="0.0020983255795115037" c="-0.00050403193103073737" d="2.7757468362760551e-05" /> - <width sOffset="92.028090017347949" a="3.8015102891906936" b="-0.00094861274694183276" c="1.4658381702610404e-05" d="2.8348917312069115e-05" /> - <width sOffset="98.85352283083057" a="3.8047326772225412" b="0.0032135201753785841" c="0.00041144674693817086" d="-5.2424073657335105e-05" /> - <width sOffset="102.18208077008399" a="3.8180543069639183" b="0.0042101030513923476" c="-0.00046447532245671671" d="5.0120484567961536e-05" /> - <width sOffset="102.27214838585064" a="3.8184297696228438" b="0.0041276544401079749" c="-0.0003995062840973646" d="7.2191712432676737e-06" /> - <width sOffset="112.05425964244114" a="3.8273357935912777" b="-0.0016159743920554129" c="-0.00018960172545595612" d="8.0823210351430985e-06" /> - <width sOffset="113.81428130932045" a="3.8239483835140482" b="-0.0022082714396350241" c="0.00037327189523807453" d="3.7166430137688071e-05" /> - <width sOffset="115.65874361271403" a="3.8213784134476265" b="-0.00045197438177961205" c="-0.00010030397287170028" d="2.8346572035872958e-06" /> - <width sOffset="122.06734445498796" a="3.8151084776266666" b="-0.0013883311167064588" c="-4.7774238901680286e-05" d="2.7083267588075217e-06" /> - <width sOffset="132.08042926753456" a="3.7991360380584975" b="-0.0015304404330450569" c="3.3723687361971522e-05" d="2.6899331765601686e-06" /> - <width sOffset="133.0274981322998" a="3.7977191386798737" b="-0.00145932500300653" c="-4.3236408132804717e-05" d="1.8697219113694671e-06" /> - <width sOffset="142.09351408008115" a="3.7823284018428334" b="-0.0017822567654626449" c="1.3649823964674115e-05" d="1.5514544573642766e-06" /> - <width sOffset="148.99424498138774" a="3.7711893620447077" b="-0.0013722280528221734" c="0.00016711040865220305" d="-3.8002939340819852e-06" /> - <width sOffset="150.23648957182559" a="3.7697353140591408" b="-0.00097463756778457889" c="4.7936890800084829e-05" d="-3.7250891213223739e-06" /> - <width sOffset="152.10659889262774" a="3.7680559219863694" b="-0.00083442647689008654" c="3.8266394147811702e-05" d="-1.9370144897022172e-07" /> - <width sOffset="162.11968370517457" a="3.7633429362333093" b="-0.00012635978375732525" c="4.1589629415552892e-05" d="-1.2151882241116104e-06" /> - <width sOffset="167.24129291644044" a="3.7636234497800709" b="0.00020402550167789751" c="-0.00012145925127009489" d="-6.665922288486066e-06" /> - <width sOffset="169.60665199665777" a="3.7633382712868273" b="-0.00048244996140835552" c="-8.8477192014929862e-05" d="1.0591050262497563e-06" /> - <width sOffset="172.13276851772116" a="3.7615720226689158" b="-0.00090918206589803889" c="-6.0799366690110878e-05" d="3.5452590566471678e-06" /> - <width sOffset="182.14585333026776" a="3.7499316414775059" b="-0.0010603976153508471" c="4.4441938805846698e-05" d="4.4446997947836476e-06" /> - <width sOffset="187.71846830724598" a="3.7461717205447078" b="-0.00015100436302795377" c="0.00041226170222350821" d="-7.7826972596838007e-06" /> - <width sOffset="188.43984329519549" a="3.7462744017406528" b="0.00043163627418344223" c="0.00029080785345818202" d="-1.1326591333712226e-05" /> - <width sOffset="192.15893814281458" a="3.7513194008731707" b="0.002124723351830581" c="0.00015364137841706094" d="-1.2694765656943867e-05" /> - <width sOffset="202.17202295536117" a="3.7752541440388963" b="0.0013831689221231161" c="-0.00022787943530624185" d="-1.2729069636779202e-05" /> - <width sOffset="203.04424122378623" a="3.7762787601983141" b="0.00095659622835234537" c="-2.7576653886534064e-06" d="-7.5037002070259192e-09" /> - <width sOffset="212.18510776790777" a="3.7847867296154929" b="0.00090430040082623724" c="-8.6306589903952289e-07" d="-1.7492572692832316e-08" /> - <width sOffset="222.19819258045436" a="3.7937374722975137" b="0.00088175498271971518" c="-1.6214091241034175e-06" d="1.5266661099660156e-07" /> - <width sOffset="232.21127739300118" a="3.8025572608963527" b="0.00089520428712185594" c="4.5391630981140567e-07" d="1.3423241556708441e-07" /> - <width sOffset="242.22436220554778" a="3.8117012878718861" b="0.00094466967011426072" c="4.0207542417557864e-06" d="1.6536361236782984e-08" /> - <width sOffset="252.23744701809437" a="3.8215800750862368" b="0.0010301638759563972" c="2.6511612046050111e-06" d="2.6934341766544069e-07" /> - <width sOffset="259.67029216922742" a="3.8294941970563059" b="0.0011142166158872677" c="0.00012007846166367673" d="-4.7178082663159425e-06" /> - <width sOffset="260.43118944616208" a="3.8304094442831853" b="0.0012887570320223305" c="9.4695707484976189e-05" d="-3.401349081373982e-06" /> - <width sOffset="262.25053183064119" a="3.8330470949572795" b="0.0015995493956673572" c="7.1765914542655813e-05" d="-5.0223745127902913e-06" /> - <width sOffset="272.26361664318779" a="3.8512167879606829" b="0.0015260878303417209" c="-7.7013305023862047e-05" d="-5.1519001694786793e-06" /> - <width sOffset="278.23424091068864" a="3.8564865419049728" b="5.548252928684832e-05" c="-0.0013476820961055027" d="0.00047801208060038307" /> - <width sOffset="279.58780969828354" a="3.8552779284326633" b="-0.00096551101654485615" c="-0.00020320073625592467" d="6.5814236800213576e-06" /> - <width sOffset="282.27670145573438" a="3.8513405541324621" b="-0.0019155267644302336" c="-0.00014894381410277333" d="6.8869325308214798e-06" /> - <width sOffset="292.28978626828098" a="3.8241408394169132" b="-0.0028268107003599566" c="5.45747533655846e-05" d="7.7573513805886717e-06" /> - <width sOffset="294.13191123628258" a="3.8191671882163671" b="-0.0025467717124572999" c="0.0004228335442489667" d="-0.00011261382733074977" /> - <width sOffset="296.27115110073214" a="3.814551587149678" b="-0.002283766884055247" c="-0.00048230957359835891" d="7.4232279752409799e-05" /> - <roadMark sOffset="0" color="standard" width="0.14480015053551021" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14480000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="3.6026127935481904" b="-0.00075466833486544788" c="-9.5363886689984513e-05" d="8.9969329413859016e-06" /> - <width sOffset="1.9103267044279164" a="3.6008858360973548" b="-0.001020521872747631" c="-6.2385123486476124e-05" d="4.0724440829865873e-06" /> - <width sOffset="11.923411516974738" a="3.5885008662097126" b="-0.0010449243910702491" c="5.4823536745150638e-05" d="2.8642877956245662e-06" /> - <width sOffset="13.951862796031037" a="3.5866307719079469" b="-0.00078715432353013669" c="0.00011055485465825413" d="3.5053383010070126e-06" /> - <width sOffset="15.876796488200398" a="3.5855502007848798" b="-0.00032256707121218389" c="0.00013402012628557121" d="-4.3763948072477381e-06" /> - <width sOffset="21.936496329521333" a="3.5875429549836628" b="0.00081957324951206778" c="5.3436198796940005e-05" d="-4.5793854994228073e-06" /> - <width sOffset="28.786173089097019" a="3.5941921965106594" b="0.00090704681579283596" c="-9.1911069281109354e-05" d="1.3751476191621884e-06" /> - <width sOffset="31.949581142067927" a="3.5961853204447003" b="0.00036682630994313084" c="-7.8639955133594791e-05" d="1.0457376592336247e-06" /> - <width sOffset="41.962665954614522" a="3.5930236426559565" b="-0.00089348793909811708" c="-4.3789782396826509e-05" d="4.4522256029869397e-07" /> - <width sOffset="44.724443672678035" a="3.5902314033950735" b="-0.001125175536441668" c="-0.00012702499762953014" d="2.2739501124911892e-05" /> - <width sOffset="49.111552512628577" a="3.584770386795177" b="-0.0009267378120879511" c="7.8959305489147556e-05" d="2.0126428436013046e-05" /> - <width sOffset="51.975750767161344" a="3.5832366862439682" b="2.0901813265661665e-05" c="0.00026371949769451314" d="1.4091433545853394e-05" /> - <width sOffset="53.580567984449772" a="3.5840076645417067" b="0.00097621984714111633" c="0.0015760893247088244" d="-0.00023947920291456827" /> - <width sOffset="59.385293835412313" a="3.5959408593883189" b="-0.0049338891203693025" c="-0.0033997661298951678" d="0.0028474775904416714" /> - <width sOffset="60.167347845267159" a="3.5913649452963448" b="-0.0050268663149440913" c="0.0023572287613158657" d="-0.00024344042106710299" /> - <width sOffset="61.988835579707938" a="3.5885582258765396" b="0.0011373875206709249" c="0.0010590523076349564" d="-0.00023571851387137923" /> - <width sOffset="65.506063069301263" a="3.5954036924472317" b="-0.00016089956272427423" c="-0.00057088540287845242" d="9.343598909737661e-05" /> - <width sOffset="65.574375213929443" a="3.5953900667739789" b="-0.00023758830421911382" c="-0.00032348235382160574" d="7.4812980502852956e-05" /> - <width sOffset="70.045132259594538" a="3.5945474978046783" b="0.001356000845924547" c="0.00061932700054557609" d="-4.9411581811278156e-05" /> - <width sOffset="72.001920392254533" a="3.5992020992590312" b="0.0032121905209970001" c="0.00033341800709073028" d="-4.7121585992885833e-05" /> - <width sOffset="80.468183409819858" a="3.6217006211189715" b="-0.0012748883103534826" c="-0.0013520386467428974" d="0.00010935999819809015" /> - <width sOffset="81.389048980564667" a="3.6194654984214174" b="-0.0034867703206693818" c="-0.00093677602415200836" d="0.00015370325425412908" /> - <width sOffset="82.015005204801355" a="3.6169535818440726" b="-0.0044788593086204226" c="-0.00064862928977817104" d="0.00015478962449594699" /> - <width sOffset="85.759689547903463" a="3.599214230032342" b="-0.0028249959877552685" c="0.00036706986605922979" d="-1.2673549074944419e-06" /> - <width sOffset="92.028090017347949" a="3.5956170893277162" b="0.0016274919159803471" c="0.00033105178217207576" d="3.5133870792292566e-07" /> - <width sOffset="97.582200869448116" a="3.6149288902760754" b="0.0053374029526221988" c="0.00097658138166321603" d="-0.00023161002083244635" /> - <width sOffset="101.7219182692445" a="3.6373289537430806" b="0.0015154612874184034" c="-0.00063348461820418524" d="-1.5951020446262149e-05" /> - <width sOffset="102.27214838585064" a="3.6379683595170662" b="0.00080384899017720696" c="-0.00071124115455953828" d="2.6950292850299492e-05" /> - <width sOffset="108.17994185687667" a="3.6234505649776834" b="-0.0047780234292362769" c="9.9609194683803652e-05" d="2.9253462950222383e-05" /> - <width sOffset="112.05425964244114" a="3.6081353814277586" b="-0.0026888749537977586" c="0.000440960137298381" d="2.8902088343644397e-05" /> - <width sOffset="113.81428130932045" a="3.6049264285329112" b="-0.00086808822258486649" c="7.3366602134377598e-05" d="-1.8202075884291534e-07" /> - <width sOffset="122.06734445498796" a="3.6026569433613669" b="0.00030571620996433274" c="6.1628058228532144e-05" d="2.460227208570357e-06" /> - <width sOffset="123.73623605657826" a="3.6033502326108398" b="0.00053197397595927329" c="2.8147023618884548e-05" d="-2.6579875910489778e-06" /> - <width sOffset="132.08042926753456" a="3.6082046698080865" b="0.00044651075651281073" c="-3.7127670738684618e-05" d="-2.8312779807102774e-06" /> - <width sOffset="133.0274981322998" a="3.6085918399043062" b="0.0003685673799414175" c="3.9430834964074085e-05" d="-2.0110667163664041e-06" /> - <width sOffset="142.09351408008115" a="3.6136756361392401" b="0.0005876438581120455" c="-9.1259085976892772e-06" d="-2.4672524855764627e-06" /> - <width sOffset="149.52663496717241" a="3.6165261711257695" b="4.3019275441619209e-05" c="-0.00012952561124449254" d="1.335353531467268e-05" /> - <width sOffset="150.23648957182559" a="3.6164962178767879" b="-0.00012068314634894979" c="3.9224284556821685e-06" d="1.3278330502391148e-05" /> - <width sOffset="152.10659889262774" a="3.6163710900715991" b="3.3302862888005217e-05" c="9.1973171899996484e-05" d="1.2339088413837037e-05" /> - <width sOffset="154.24554602741296" a="3.6169838580321256" b="0.00059611186731138967" c="0.00021760129750067621" d="-1.579768223294929e-05" /> - <width sOffset="162.11968370517457" a="3.627456822181629" b="0.0010844912433762516" c="-0.00014460034618959586" d="-1.7614630256631455e-05" /> - <width sOffset="166.26914797752625" a="3.6282086537481653" b="-0.0010254056486945808" c="-0.00058319187989873259" d="4.7631468478407866e-05" /> - <width sOffset="167.24129291644044" a="3.6267044171253051" b="-0.0020242551045650471" c="-0.00029990008377742431" d="5.3082202543564404e-05" /> - <width sOffset="172.13276851772116" a="3.6158397848349102" b="-0.0011479436883414336" c="0.00055384171729721957" d="1.8815252665077278e-05" /> - <width sOffset="173.43749090265442" a="3.6153266312738777" b="0.00039336332634983765" c="4.1468669325414514e-05" d="-1.3657157429881076e-06" /> - <width sOffset="182.14585333026776" a="3.620995058411276" b="0.00080490220933793688" c="8.7226881533331288e-06" d="-1.0823802911283223e-06" /> - <width sOffset="187.71846830724598" a="3.625564034918912" b="0.00080128173958411329" c="-0.00030288633919466133" d="1.1145016763359075e-05" /> - <width sOffset="192.15893814281458" a="3.6241256734461369" b="-0.0012293688555317281" c="-0.00015517794754872315" d="1.1943171311649612e-05" /> - <width sOffset="202.17202295536117" a="3.6082475829497418" b="-0.000744654777797267" c="0.00020262148587827638" d="1.1475743426139111e-05" /> - <width sOffset="203.04424122378623" a="3.6077598434869262" b="-0.0003650034328997026" c="-2.5779806091209161e-05" d="-1.2458225104055999e-06" /> - <width sOffset="207.12306703319541" a="3.6057576241867033" b="-0.00063748568430202338" c="7.2514757333935602e-06" d="-2.1806435618699561e-07" /> - <width sOffset="212.18510776790777" a="3.6026881740062575" b="-0.00058083436412862505" c="8.3524343017803864e-06" d="9.4330994977810894e-08" /> - <width sOffset="221.26120252238479" a="3.5981750285606555" b="-0.00040590770632558532" c="6.7576021133666694e-05" d="-3.3746269470588005e-06" /> - <width sOffset="222.19819258045436" a="3.5978512493960655" b="-0.00028815985131223703" c="5.8273869836463765e-05" d="-3.5097839247608219e-06" /> - <width sOffset="226.60732692480656" a="3.5974127417426325" b="2.1019288779058768e-05" c="-1.6691572207962077e-05" d="4.5253799752390935e-06" /> - <width sOffset="232.21127739300118" a="3.5978027585276435" b="0.00026029044056255458" c="5.0429958797964961e-05" d="4.7556261409704908e-06" /> - <width sOffset="236.64653559806766" a="3.6003641676059281" b="0.0009882813354732318" c="0.0036507591813704702" d="-0.00049929468210126789" /> - <width sOffset="241.68548578528612" a="3.6341587650305249" b="-0.00025253360703616221" c="-0.00087012768157571508" d="9.2932546939716943e-05" /> - <width sOffset="242.22436220554778" a="3.6337845485408016" b="-0.0011093567549434857" c="-0.0007195199329982151" d="9.3025821678801901e-05" /> - <width sOffset="246.52646436471218" a="3.6231021045673062" b="-0.0021350643866273728" c="4.2389595148497796e-05" d="-1.9448901405745459e-06" /> - <width sOffset="251.91441821118315" a="3.6125248428883081" b="-0.001847658776706063" c="-4.1282286987966644e-05" d="3.8824844471001207e-06" /> - <width sOffset="252.23744701809437" a="3.6119238190381093" b="-0.0018731141286037188" c="-3.6092354586020925e-05" d="3.6901362758213018e-06" /> - <width sOffset="260.43118944616208" a="3.5961828255787478" b="-0.0017213384113840483" c="6.9229175711506743e-05" d="2.3736770921180863e-06" /> - <width sOffset="262.25053183064119" a="3.5932945650528776" b="-0.00144586460283298" c="8.3235579870691244e-05" d="3.5059437244558837e-06" /> - <width sOffset="268.16395378407447" a="3.588380158396967" b="-9.3656990169232847e-05" c="0.0027987734711666925" d="-0.00047084909089849318" /> - <width sOffset="271.86892146183413" a="3.6025052135019973" b="0.0012553400945622148" c="-3.4789336473828829e-05" d="-3.1530868024869354e-07" /> - <width sOffset="272.26361664318779" a="3.6029952511688523" b="0.0012277303672150049" c="-3.657145009863901e-05" d="-2.5109623324773608e-07" /> - <width sOffset="282.27670145573438" a="3.6113698143923072" b="0.00041981817232819341" c="-4.4153592119015944e-05" d="-3.3719853714869824e-09" /> - <width sOffset="288.26452143656275" a="3.612299803743285" b="-0.00010931204727398297" c="-0.00057316724162679872" d="5.0607123917549722e-05" /> - <width sOffset="292.28978626828098" a="3.6058735205339039" b="-0.0022636871394272366" c="3.229854442109998e-05" d="5.0774294077448752e-05" /> - <width sOffset="294.13191123628258" a="3.6021305243926278" b="-0.0016277950443082953" c="-1.2492429935461325e-05" d="0.00017114547297683531" /> - <width sOffset="294.30789408622513" a="3.6018446062655585" b="-0.001616290844024164" c="-4.0678003305018903e-05" d="9.1570135804989764e-05" /> - <width sOffset="296.27115110073214" a="3.599207547089232" b="-0.00071717581511453253" c="0.00068106828271490298" d="-9.5275971278208738e-05" /> - <width sOffset="301.17311237474382" a="3.6008349337440944" b="-0.00090825818331624836" c="-0.0084507552597373418" d="0.0052239627266587544" /> - <roadMark sOffset="0" color="standard" width="0.14573232133187675" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.145732" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16415335160999631" weight="standard" type="solid"> - <type name="solid"> - <line length="302.3028710808278" space="0" width="0.16415299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="2.4929268054465687" b="-5.2571648139988249e-05" c="2.7556744011204078e-06" d="2.7755162069551445e-06" /> - <width sOffset="1.9103267044279164" a="2.4928557822030077" b="-1.1656696808053611e-05" c="-6.3154047052865048e-07" d="4.4875115719902014e-07" /> - <width sOffset="7.9953048146619494" a="2.4928625747653355" b="3.0505154875154483e-05" c="7.0210569778177975e-05" d="-2.4554876652995626e-06" /> - <width sOffset="11.923411516974738" a="2.493916923915922" b="0.00046842968627515847" c="3.2511585224835187e-05" d="-6.7993529077458523e-06" /> - <width sOffset="15.876796488200398" a="2.4958568170832764" b="0.00040668489611238659" c="-5.1352433806279126e-05" d="1.0823802005823565e-06" /> - <width sOffset="21.936496329521333" a="2.4966763885850698" b="-9.6440893816515313e-05" c="-3.2120688934427651e-05" d="1.10981428800127e-06" /> - <width sOffset="31.949581142067927" a="2.4936044139835971" b="-0.00040587909973462642" c="2.2015891935839245e-06" d="1.0911464615449559e-06" /> - <width sOffset="41.962665954614522" a="2.490856482880841" b="-3.3588555368455411e-05" c="3.3829546429516866e-05" d="1.7334500195911274e-06" /> - <width sOffset="44.724443672678035" a="2.4910582663062009" b="0.00019293605380844674" c="0.00013511578982048877" d="-2.0560828545041667e-05" /> - <width sOffset="49.72494761007124" a="2.4928307387325193" b="1.8571341594275648e-06" c="0.00056604710570603656" d="-7.2979345827051722e-05" /> - <width sOffset="51.975750767161344" a="2.4948704075479293" b="0.0014408131159868928" c="7.1785710398506125e-05" d="-6.575752712871866e-05" /> - <width sOffset="53.580567984449772" a="2.4970957459678669" b="0.0011631556421722485" c="-0.0014893280262110278" d="0.00018781310933168704" /> - <width sOffset="59.385293835412313" a="2.4903991113982507" b="0.0028578731023432202" c="0.0025868049012754335" d="-0.0028991436840245456" /> - <width sOffset="60.167347845267159" a="2.4928295424084341" b="0.0015844928575083914" c="-0.003291407016886609" d="0.00019177432736484007" /> - <width sOffset="60.417435972322664" a="2.4930229469081997" b="-2.5807733334918051e-05" c="-0.00032888584341335381" d="5.4626313496932571e-05" /> - <width sOffset="61.988835579707938" a="2.4923822397668332" b="-0.00065476417253192143" c="-5.4599242902231325e-05" d="6.3039131958273251e-05" /> - <width sOffset="65.506063069301263" a="2.4921467543062104" b="0.0013007102640972146" c="-0.00024671953942274687" d="-0.00026611537103383092" /> - <width sOffset="66.506524565049631" a="2.4929346335561355" b="7.9603154093969494e-06" c="0.00064501063084926877" d="-9.9640434287350928e-05" /> - <width sOffset="70.045132259594538" a="2.4966244383323373" b="0.00082982332327723174" c="-0.00035215196681851943" d="2.4584128026792225e-05" /> - <width sOffset="72.001920392254533" a="2.497084028469521" b="-0.00026595091719627297" c="-0.00020865032653747819" d="2.3299171880407156e-05" /> - <width sOffset="78.549914080039571" a="2.4929377636440728" b="-1.4916080222689837e-06" c="-0.00024884979735628331" d="4.5297250294776181e-05" /> - <width sOffset="81.389048980564667" a="2.4919642731287466" b="-0.00031914702984722765" c="2.3820164141078251e-05" d="9.5399424804533997e-07" /> - <width sOffset="82.015005204801355" a="2.4917740682835481" b="-0.00028820488432731127" c="2.4164403964434191e-05" d="-8.2054758263636488e-08" /> - <width sOffset="92.028090017347949" a="2.4912286393197522" b="0.00017103467846113496" c="1.7952909157398895e-05" d="3.6611567771034024e-07" /> - <width sOffset="97.582200869448116" a="2.4927951269451674" b="0.00040434154474380986" c="-0.0006156222267758144" d="0.00023232747522262585" /> - <width sOffset="98.082633186098064" a="2.4928724170344649" b="-3.7265915714072145e-05" c="-0.0010436855732984243" d="0.00021326479277635038" /> - <width sOffset="101.7219182692445" a="2.4891932020663861" b="0.00083988545917078675" c="1.8374464342012795e-05" d="-2.3942077029283304e-06" /> - <width sOffset="102.04117482989454" a="2.4894631359142627" b="0.00085088570866527491" c="-6.8719684485275172e-06" d="-6.7801145758051393e-06" /> - <width sOffset="108.17994185687667" a="2.4928590731942117" b="0" c="4.1736044283825049e-05" d="-2.0472020339512156e-06" /> - <width sOffset="112.05425964244114" a="2.4933664906712272" b="0.00023120981201798802" c="1.7833309553692395e-05" d="-1.8876109952109683e-06" /> - <width sOffset="122.06734445498796" a="2.4955745846416422" b="2.0576483844933968e-05" c="-3.3727073702346131e-05" d="-4.5684123373187516e-06" /> - <width sOffset="123.73623605657826" a="2.4954937530710284" b="-0.00013016899110839236" c="-1.0801036460618132e-05" d="5.4980246229940269e-07" /> - <width sOffset="132.08042926753456" a="2.4939749879003488" b="-0.0001955799477753894" c="3.431500682263134e-06" d="4.8523071586428718e-07" /> - <width sOffset="141.4898271554348" a="2.4928427472155157" b="-2.1209583882576301e-06" c="4.0707128690654828e-05" d="-6.6338328180081872e-07" /> - <width sOffset="142.09351408008115" a="2.4928561560927163" b="4.6302478229699566e-05" c="2.8639310051437393e-05" d="1.8983588243601508e-08" /> - <width sOffset="149.52663496717241" a="2.4947904830849144" b="0.00047520798869701061" c="9.4444176664546699e-05" d="-1.580180421249546e-05" /> - <width sOffset="152.10659889262774" a="2.4963737820991128" b="0.0006469925617488576" c="-4.1845423659886283e-05" d="-1.7645034969507993e-05" /> - <width sOffset="154.24554602741296" a="2.497393545902332" b="0.00022579913805776167" c="-0.00020152096680821962" d="1.0491735677274166e-05" /> - <width sOffset="162.11968370517457" a="2.4917990054081596" b="-0.00099628136055465331" c="4.3402288331794952e-05" d="1.2279257261782055e-05" /> - <width sOffset="166.26914797752625" a="2.4892895745471986" b="-1.8141364736669417e-06" c="0.00041557700317902837" d="-5.2966841474044741e-05" /> - <width sOffset="171.51934102205405" a="2.4930699205171543" b="-1.8112949874072009e-05" c="-0.00011822476112833424" d="-5.895547843716864e-05" /> - <width sOffset="172.13276851772116" a="2.4930007137374446" b="-0.00022971124142630956" c="-0.00031530362854144736" d="-2.5909757427631007e-05" /> - <width sOffset="173.43749090265442" a="2.4921067164762034" b="-0.0011847972250506789" c="0.00016930034190925023" d="-5.7287890195669659e-06" /> - <width sOffset="182.14585333026776" a="2.4908447484487342" b="0.00046052219970081805" c="1.5135984630840833e-05" d="-4.914970866188627e-06" /> - <width sOffset="188.68772055739396" a="2.4931291591721765" b="2.7533728327064399e-05" c="-6.8389475207152991e-05" d="6.2321621771025932e-06" /> - <width sOffset="192.15893814281458" a="2.4926613518290379" b="-0.0002219752311619635" c="-2.5282163430153877e-05" d="1.5728660233966891e-06" /> - <width sOffset="202.17202295536117" a="2.4894829063969706" b="-0.00025518467017866163" c="2.0812384372809307e-05" d="1.636936986591307e-06" /> - <width sOffset="207.12306703319541" a="2.4889283118897749" b="7.1279305466665681e-05" c="-3.1497349604000133e-06" d="6.091788323539306e-07" /> - <width sOffset="212.18510776790777" a="2.4892874382349888" b="8.6220395903201903e-05" c="4.7556578864705886e-06" d="2.4743535794922264e-07" /> - <width sOffset="221.26120252238479" a="2.4906467268979053" b="0.00023369383010960959" c="-4.516221753695103e-05" d="3.7163933016136468e-06" /> - <width sOffset="222.19819258045436" a="2.4908291027272753" b="0.00015884915905211026" c="-3.5266233036550835e-05" d="4.1246119233436383e-06" /> - <width sOffset="226.60732692480656" a="2.4911974417057179" b="8.8415169946410947e-05" c="4.7831786740971419e-05" d="-3.9105519766341454e-06" /> - <width sOffset="232.21127739300118" a="2.4925068279290805" b="0.00025608511432483039" c="-1.9720934610545745e-05" d="-2.6262309179339061e-06" /> - <width sOffset="235.85702164498707" a="2.4930510690437115" b="7.5708864539635479e-06" c="0.0017983336066155202" d="-0.00019702032219119992" /> - <width sOffset="236.64653559806766" a="2.4940810462358378" b="0.0024787624547357836" c="-0.0022053692065983239" d="0.00030702998604952773" /> - <width sOffset="241.68548578528612" a="2.4898575044317468" b="0.0036406839199614911" c="-0.00059091902213987508" d="-0.00028519724299349566" /> - <width sOffset="243.18541154226273" a="2.4930264260497585" b="-5.6876233003395199e-05" c="0.00045397474398275138" d="-9.2501599366256077e-05" /> - <width sOffset="246.52646436471218" a="2.4944541109501088" b="-0.000121053517581164" c="-3.4473208187648212e-05" d="2.469112453134001e-06" /> - <width sOffset="251.91441821118315" a="2.4931873215212912" b="-0.00027749827778235868" c="5.767213081561502e-05" d="-3.3582621696310319e-06" /> - <width sOffset="252.23744701809437" a="2.4931035863348256" b="-0.00024129003844790687" c="5.0834546739652861e-05" d="-2.8033070579292019e-06" /> - <width sOffset="260.91381801421767" a="2.4930058733643801" b="7.7348005087219361e-06" c="-0.00037401873067443258" d="5.3122577522073381e-05" /> - <width sOffset="262.25053183064119" a="2.4924747948536883" b="-0.00070741833482304128" c="-0.00016947439757886574" d="4.7519997149355122e-05" /> - <width sOffset="268.16395378407447" a="2.4921916239935635" b="0.0022733519192105677" c="-0.001979798532002682" d="0.00052187503177263497" /> - <width sOffset="269.16386831067484" a="2.4930070627193208" b="-0.00012054923641444896" c="-0.0015817061909420584" d="0.00047252267465964874" /> - <width sOffset="271.86892146183413" a="2.4904601132847439" b="0.0016950404247362051" c="-0.00014698852171692663" d="1.9888924338994559e-06" /> - <width sOffset="272.26361664318779" a="2.4911063613622986" b="0.0015799386168453518" c="-0.00013739438555150521" d="2.5372208545227177e-06" /> - <width sOffset="282.27670145573438" a="2.4956981966671217" b="-0.00040838515062089969" c="-5.9916851802292838e-05" d="2.5270323801848093e-06" /> - <width sOffset="288.26452143656275" a="2.4916471233823998" b="-0.00085411522860519523" c="0.00051443047011556602" d="-4.8083463522671926e-05" /> - <width sOffset="292.28978626828098" a="2.4934082531361392" b="0.00095006851028807361" c="-6.0988221124512905e-05" d="-4.9072661066551394e-05" /> - <width sOffset="294.30789408622513" a="2.4946738621786402" b="0.0001043235082748646" c="-0.00023954840640117719" d="3.0502675917283844e-05" /> - <width sOffset="299.3073390247805" a="2.4930196060372367" b="-3.7018313591801171e-06" c="-0.0017013656448067278" d="0.0004865123153753609" /> - <width sOffset="301.17311237474382" a="2.4902499372760811" b="-0.0012716182477517817" c="0.0087525056703649969" d="-0.0048327263825609611" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276663849" type="poles" s="249.84342350018582" t="-8.3244451556817634" zOffset="-1.810820316866335" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.0891796831336649" name="SgPoleSign01.flt" /> - <object id="5172898" s="1755.6927093190156" t="-7.4315263448672084" orientation="none" validLength="9.1357137580498602" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="9.1357137580498602" s="1755.6927093190156" distance="0" tStart="-7.4315263448672084" tEnd="-7.5683409269851767" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="273608354" s="1764.8284230770655" t="-7.5683409269851767" orientation="none" validLength="8.0053189924344679" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="8.0053189924344679" s="1764.8284230770655" distance="0" tStart="-7.5683409269851767" tEnd="-7.7927796288882645" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="542043810" s="1772.8337420695" t="-7.7927796288882645" orientation="none" validLength="8.1520004278427223" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="8.1520004278427223" s="1772.8337420695" distance="0" tStart="-7.7927796288882645" tEnd="-7.9015405142129298" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="5172904" s="0" t="-6.7417376166212444" orientation="none" validLength="20.16507870068757" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="20.16507870068757" s="0" distance="0" tStart="-6.7417376166212444" tEnd="-6.755214047575258" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273608360" s="20.16507870068757" t="-6.755214047575258" orientation="none" validLength="66.290470304133208" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="66.290470304133208" s="20.16507870068757" distance="0" tStart="-6.755214047575258" tEnd="-7.1666477244601472" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542043816" s="86.455549004820782" t="-7.1666477244601472" orientation="none" validLength="65.536332037122335" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="65.536332037122335" s="86.455549004820782" distance="0" tStart="-7.1666477244601472" tEnd="-7.2069588344041859" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810479272" s="151.99188104194312" t="-7.2069588344041859" orientation="none" validLength="51.699123208892672" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="51.699123208892672" s="151.99188104194312" distance="0" tStart="-7.2069588344041859" tEnd="-7.0108787781366466" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078914728" s="203.69100425083579" t="-7.0108787781366466" orientation="none" validLength="34.736133111664969" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="34.736133111664969" s="203.69100425083579" distance="0" tStart="-7.0108787781366466" tEnd="-7.0028512665783209" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742066" s="238.42713736250076" t="-7.0028512665783209" orientation="none" validLength="28.020679131225421" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="28.020679131225421" s="238.42713736250076" distance="0" tStart="-7.0028512665783209" tEnd="-7.106605571680717" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742067" s="266.44781649372618" t="-7.106605571680717" orientation="none" validLength="74.97319784442908" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="74.97319784442908" s="266.44781649372618" distance="0" tStart="-7.106605571680717" tEnd="-7.1810830534240591" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742068" s="341.42101433815526" t="-7.1810830534240591" orientation="none" validLength="35.520199222290785" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="35.520199222290785" s="341.42101433815526" distance="0" tStart="-7.1810830534240591" tEnd="-7.3659351712545984" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742069" s="376.94121356044604" t="-7.3659351712545984" orientation="none" validLength="49.958640231585719" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="49.958640231585719" s="376.94121356044604" distance="0" tStart="-7.3659351712545984" tEnd="-7.450284333819031" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742070" s="426.89985379203176" t="-7.450284333819031" orientation="none" validLength="302.59870889227204" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="302.59870889227204" s="426.89985379203176" distance="0" tStart="-7.450284333819031" tEnd="-7.2270235317410014" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742071" s="729.49856268430381" t="-7.2270235317410014" orientation="none" validLength="180.44793901405785" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="180.44793901405785" s="729.49856268430381" distance="0" tStart="-7.2270235317410014" tEnd="-7.6072727892768812" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742072" s="909.94650169836166" t="-7.6072727892768812" orientation="none" validLength="159.1941607144912" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="159.1941607144912" s="909.94650169836166" distance="0" tStart="-7.6072727892768812" tEnd="-7.3668501234578034" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742073" s="1069.1406624128529" t="-7.3668501234578034" orientation="none" validLength="62.106737384351391" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="62.106737384351391" s="1069.1406624128529" distance="0" tStart="-7.3668501234578034" tEnd="-7.0671685335327341" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742074" s="1131.2473997972043" t="-7.0671685335327341" orientation="none" validLength="28.841535403690159" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="28.841535403690159" s="1131.2473997972043" distance="0" tStart="-7.0671685335327341" tEnd="-7.0598644555273307" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742075" s="1160.0889352008944" t="-7.0598644555273307" orientation="none" validLength="11.998177979398406" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="11.998177979398406" s="1160.0889352008944" distance="0" tStart="-7.0598644555273307" tEnd="-7.143834050006979" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742076" s="1172.0871131802928" t="-7.143834050006979" orientation="none" validLength="106.01607024368764" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="106.01607024368764" s="1172.0871131802928" distance="0" tStart="-7.143834050006979" tEnd="-7.1352398094312131" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742077" s="1278.1031834239805" t="-7.1352398094312131" orientation="none" validLength="57.815039557787713" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="57.815039557787713" s="1278.1031834239805" distance="0" tStart="-7.1352398094312131" tEnd="-7.3312776369710564" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742078" s="1335.9182229817682" t="-7.3312776369710564" orientation="none" validLength="34.459428493553105" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="34.459428493553105" s="1335.9182229817682" distance="0" tStart="-7.3312776369710564" tEnd="-7.3515667849971713" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742079" s="1370.3776514753213" t="-7.3515667849971713" orientation="none" validLength="60.394975033856554" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="60.394975033856554" s="1370.3776514753213" distance="0" tStart="-7.3515667849971713" tEnd="-7.2343426476277317" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742080" s="1430.7726265091778" t="-7.2343426476277317" orientation="none" validLength="150.10264872040852" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="150.10264872040852" s="1430.7726265091778" distance="0" tStart="-7.2343426476277317" tEnd="-6.7343241872322483" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742081" s="1580.8752752295864" t="-6.7343241872322483" orientation="none" validLength="91.940445855221924" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="91.940445855221924" s="1580.8752752295864" distance="0" tStart="-6.7343241872322483" tEnd="-6.8513866297979478" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742082" s="1672.8157210848083" t="-6.8513866297979478" orientation="none" validLength="82.204422058422324" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="82.204422058422324" s="1672.8157210848083" distance="0" tStart="-6.8513866297979478" tEnd="-7.4244250407309851" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742083" s="1755.0201431432306" t="-7.4244250407309851" orientation="none" validLength="2.9204758166335978" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="2.9204758166335978" s="1755.0201431432306" distance="0" tStart="-7.4244250407309851" tEnd="-7.5714565065129236" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742084" s="1757.9406189598642" t="-7.5714565065129236" orientation="none" validLength="0.92800742835470373" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="0.92800742835470373" s="1757.9406189598642" distance="0" tStart="-7.5714565065129236" tEnd="-7.9993197416089084" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5173308" s="1780.9857424973427" t="-8.0315405142129297" orientation="none" validLength="14.714871503646236" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.714871503646236" s="1780.9857424973427" distance="0" tStart="-8.0315405142129297" tEnd="-8.0663239317106612" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273608764" s="1795.7006140009889" t="-8.0663239317106612" orientation="none" validLength="13.487077905210299" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.487077905210299" s="1795.7006140009889" distance="0" tStart="-8.0663239317106612" tEnd="-7.9912622764926269" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542044220" s="1809.1876919061992" t="-7.9912622764926269" orientation="none" validLength="14.315059380605362" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.315059380605362" s="1809.1876919061992" distance="0" tStart="-7.9912622764926269" tEnd="-8.0493101263799787" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810479676" s="1823.5027512868046" t="-8.0493101263799787" orientation="none" validLength="52.078773784362966" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="52.078773784362966" s="1823.5027512868046" distance="0" tStart="-8.0493101263799787" tEnd="-7.9713056351645637" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078915132" s="1875.5815250711676" t="-7.9713056351645637" orientation="none" validLength="51.137945553277405" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="51.137945553277405" s="1875.5815250711676" distance="0" tStart="-7.9713056351645637" tEnd="-8.0347157342157285" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742085" s="1926.719470624445" t="-8.0347157342157285" orientation="none" validLength="6.6594992458451543" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.6594992458451543" s="1926.719470624445" distance="0" tStart="-8.0347157342157285" tEnd="-8.2001932176465377" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742086" s="1933.3789698702901" t="-8.2001932176465377" orientation="none" validLength="1.997234609723364" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.997234609723364" s="1933.3789698702901" distance="0" tStart="-8.2001932176465377" tEnd="-8.088345878223949" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742087" s="1935.3762044800135" t="-8.088345878223949" orientation="none" validLength="25.329121987651433" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="25.329121987651433" s="1935.3762044800135" distance="0" tStart="-8.088345878223949" tEnd="-8.2142446437930445" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742088" s="1960.7053264676649" t="-8.2142446437930445" orientation="none" validLength="16.08576795797353" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.08576795797353" s="1960.7053264676649" distance="0" tStart="-8.2142446437930445" tEnd="-8.2017150214340333" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742089" s="1976.7910944256384" t="-8.2017150214340333" orientation="none" validLength="5.7996984586000053" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.7996984586000053" s="1976.7910944256384" distance="0" tStart="-8.2017150214340333" tEnd="-8.0630545926793751" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5173685" s="1864.1354483218788" t="8.8950158023836803" orientation="none" validLength="116.28772722271037" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="116.28772722271037" s="1864.1354483218788" distance="0" tStart="8.8950158023836803" tEnd="8.766176326203917" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5173709" s="245.50223665432307" t="9.5170140163723218" orientation="none" validLength="3.9628346543761381" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.9628346543761381" s="245.50223665432307" distance="0" tStart="9.5170140163723218" tEnd="9.4248188001438411" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273609165" s="249.46507130869921" t="9.4248188001438411" orientation="none" validLength="52.137041008921159" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="52.137041008921159" s="249.46507130869921" distance="0" tStart="9.4248188001438411" tEnd="9.347805539554578" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542044621" s="301.60211231762037" t="9.347805539554578" orientation="none" validLength="32.956159991321272" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="32.956159991321272" s="301.60211231762037" distance="0" tStart="9.347805539554578" tEnd="9.1759545988782563" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810480077" s="334.55827230894164" t="9.1759545988782563" orientation="none" validLength="17.398062259729784" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.398062259729784" s="334.55827230894164" distance="0" tStart="9.1759545988782563" tEnd="8.8822727396487693" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078915533" s="351.95633456867142" t="8.8822727396487693" orientation="none" validLength="17.620605035553183" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.620605035553183" s="351.95633456867142" distance="0" tStart="8.8822727396487693" tEnd="8.8907605783954935" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742090" s="369.57693960422461" t="8.8907605783954935" orientation="none" validLength="7.9956149539256671" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.9956149539256671" s="369.57693960422461" distance="0" tStart="8.8907605783954935" tEnd="8.8008913330071756" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742091" s="377.57255455815027" t="8.8008913330071756" orientation="none" validLength="17.324493235333193" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.324493235333193" s="377.57255455815027" distance="0" tStart="8.8008913330071756" tEnd="8.8729554857500439" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742092" s="394.89704779348347" t="8.8729554857500439" orientation="none" validLength="8.9765910185611233" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.9765910185611233" s="394.89704779348347" distance="0" tStart="8.8729554857500439" tEnd="8.8119835435324401" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742093" s="403.87363881204459" t="8.8119835435324401" orientation="none" validLength="7.3920792595174021" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.3920792595174021" s="403.87363881204459" distance="0" tStart="8.8119835435324401" tEnd="8.6452904120354663" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742094" s="411.26571807156199" t="8.6452904120354663" orientation="none" validLength="9.4600510724441733" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.4600510724441733" s="411.26571807156199" distance="0" tStart="8.6452904120354663" tEnd="8.75299917991412" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742095" s="420.72576914400616" t="8.75299917991412" orientation="none" validLength="8.7095306360457698" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.7095306360457698" s="420.72576914400616" distance="0" tStart="8.75299917991412" tEnd="8.7197772975830645" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742096" s="429.43529978005193" t="8.7197772975830645" orientation="none" validLength="25.830477793147963" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="25.830477793147963" s="429.43529978005193" distance="0" tStart="8.7197772975830645" tEnd="8.8364922817970353" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742097" s="455.2657775731999" t="8.8364922817970353" orientation="none" validLength="16.983257584732144" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.983257584732144" s="455.2657775731999" distance="0" tStart="8.8364922817970353" tEnd="8.7031791966304208" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742098" s="472.24903515793204" t="8.7031791966304208" orientation="none" validLength="107.19797064760013" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="107.19797064760013" s="472.24903515793204" distance="0" tStart="8.7031791966304208" tEnd="8.8352288741935201" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742099" s="579.44700580553217" t="8.8352288741935201" orientation="none" validLength="16.610352086599505" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.610352086599505" s="579.44700580553217" distance="0" tStart="8.8352288741935201" tEnd="8.7931835737570587" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742100" s="596.05735789213168" t="8.7931835737570587" orientation="none" validLength="35.532221504262793" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="35.532221504262793" s="596.05735789213168" distance="0" tStart="8.7931835737570587" tEnd="8.9113455146986613" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742101" s="631.58957939639447" t="8.9113455146986613" orientation="none" validLength="18.403021246520666" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.403021246520666" s="631.58957939639447" distance="0" tStart="8.9113455146986613" tEnd="8.8642556761470814" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742102" s="649.99260064291514" t="8.8642556761470814" orientation="none" validLength="15.901816768559684" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.901816768559684" s="649.99260064291514" distance="0" tStart="8.8642556761470814" tEnd="8.9268369054278942" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742103" s="665.89441741147482" t="8.9268369054278942" orientation="none" validLength="10.440201809619907" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.440201809619907" s="665.89441741147482" distance="0" tStart="8.9268369054278942" tEnd="8.8704180336735519" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742104" s="676.33461922109473" t="8.8704180336735519" orientation="none" validLength="8.0005753933869528" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.0005753933869528" s="676.33461922109473" distance="0" tStart="8.8704180336735519" tEnd="8.9667249253116701" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742105" s="684.33519461448168" t="8.9667249253116701" orientation="none" validLength="9.1654677354827072" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.1654677354827072" s="684.33519461448168" distance="0" tStart="8.9667249253116701" tEnd="8.8862749120997222" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742106" s="693.50066234996439" t="8.8862749120997222" orientation="none" validLength="45.927206412385658" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="45.927206412385658" s="693.50066234996439" distance="0" tStart="8.8862749120997222" tEnd="8.8763999745635402" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742107" s="739.42786876235004" t="8.8763999745635402" orientation="none" validLength="136.33497490684363" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="136.33497490684363" s="739.42786876235004" distance="0" tStart="8.8763999745635402" tEnd="8.5616344553865726" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742108" s="875.76284366919367" t="8.5616344553865726" orientation="none" validLength="67.894241933931312" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="67.894241933931312" s="875.76284366919367" distance="0" tStart="8.5616344553865726" tEnd="8.5403429907703625" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742109" s="943.65708560312498" t="8.5403429907703625" orientation="none" validLength="71.637446839363292" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="71.637446839363292" s="943.65708560312498" distance="0" tStart="8.5403429907703625" tEnd="8.6883688107354562" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742110" s="1015.2945324424883" t="8.6883688107354562" orientation="none" validLength="15.553922264804555" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.553922264804555" s="1015.2945324424883" distance="0" tStart="8.6883688107354562" tEnd="8.8155823493085883" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742111" s="1030.8484547072928" t="8.8155823493085883" orientation="none" validLength="169.38508929086493" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="169.38508929086493" s="1030.8484547072928" distance="0" tStart="8.8155823493085883" tEnd="9.0360994481970813" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742112" s="1200.2335439981578" t="9.0360994481970813" orientation="none" validLength="30.957271994180473" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="30.957271994180473" s="1200.2335439981578" distance="0" tStart="9.0360994481970813" tEnd="8.8966872604117775" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742113" s="1231.1908159923382" t="8.8966872604117775" orientation="none" validLength="16.003839859062282" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.003839859062282" s="1231.1908159923382" distance="0" tStart="8.8966872604117775" tEnd="9.0689496836755179" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742114" s="1247.1946558514005" t="9.0689496836755179" orientation="none" validLength="57.652954964587025" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="57.652954964587025" s="1247.1946558514005" distance="0" tStart="9.0689496836755179" tEnd="9.0054647581161529" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742115" s="1304.8476108159875" t="9.0054647581161529" orientation="none" validLength="35.486974327847747" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="35.486974327847747" s="1304.8476108159875" distance="0" tStart="9.0054647581161529" tEnd="8.8533502202000118" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742116" s="1340.3345851438353" t="8.8533502202000118" orientation="none" validLength="7.9941615789132356" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.9941615789132356" s="1340.3345851438353" distance="0" tStart="8.8533502202000118" tEnd="8.9418882432428966" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742117" s="1348.3287467227485" t="8.9418882432428966" orientation="none" validLength="9.1005373727223287" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.1005373727223287" s="1348.3287467227485" distance="0" tStart="8.9418882432428966" tEnd="8.8563892081894746" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742118" s="1357.4292840954708" t="8.8563892081894746" orientation="none" validLength="23.504327055750991" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="23.504327055750991" s="1357.4292840954708" distance="0" tStart="8.8563892081894746" tEnd="8.8341990559311725" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742119" s="1380.9336111512218" t="8.8341990559311725" orientation="none" validLength="7.9957556091146671" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.9957556091146671" s="1380.9336111512218" distance="0" tStart="8.8341990559311725" tEnd="8.9018677952804239" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742120" s="1388.9293667603365" t="8.9018677952804239" orientation="none" validLength="33.163855891836647" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="33.163855891836647" s="1388.9293667603365" distance="0" tStart="8.9018677952804239" tEnd="8.9127075329001215" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742121" s="1422.0932226521732" t="8.9127075329001215" orientation="none" validLength="10.03625027895464" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.03625027895464" s="1422.0932226521732" distance="0" tStart="8.9127075329001215" tEnd="9.0407535824720853" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742122" s="1432.1294729311278" t="9.0407535824720853" orientation="none" validLength="9.950678756350726" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.950678756350726" s="1432.1294729311278" distance="0" tStart="9.0407535824720853" tEnd="8.9740016335165791" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742123" s="1442.0801516874785" t="8.9740016335165791" orientation="none" validLength="8.4974641768510537" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.4974641768510537" s="1442.0801516874785" distance="0" tStart="8.9740016335165791" tEnd="9.0776135111421592" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742124" s="1450.5776158643296" t="9.0776135111421592" orientation="none" validLength="31.316329429057078" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="31.316329429057078" s="1450.5776158643296" distance="0" tStart="9.0776135111421592" tEnd="9.0728135890574038" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742125" s="1481.8939452933867" t="9.0728135890574038" orientation="none" validLength="12.541445582536426" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.541445582536426" s="1481.8939452933867" distance="0" tStart="9.0728135890574038" tEnd="9.1801990267999862" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742126" s="1494.4353908759231" t="9.1801990267999862" orientation="none" validLength="6.8277759630345827" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.8277759630345827" s="1494.4353908759231" distance="0" tStart="9.1801990267999862" tEnd="9.1274376598356017" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742127" s="1501.2631668389577" t="9.1274376598356017" orientation="none" validLength="16.444219372138832" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.444219372138832" s="1501.2631668389577" distance="0" tStart="9.1274376598356017" tEnd="8.8186621745965734" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742128" s="1517.7073862110965" t="8.8186621745965734" orientation="none" validLength="57.854884411426156" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="57.854884411426156" s="1517.7073862110965" distance="0" tStart="8.8186621745965734" tEnd="9.0315432840044565" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742129" s="1575.5622706225226" t="9.0315432840044565" orientation="none" validLength="21.615896620709009" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="21.615896620709009" s="1575.5622706225226" distance="0" tStart="9.0315432840044565" tEnd="8.9967711415186216" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742130" s="1597.1781672432317" t="8.9967711415186216" orientation="none" validLength="30.914946254731149" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="30.914946254731149" s="1597.1781672432317" distance="0" tStart="8.9967711415186216" tEnd="9.0849701958805511" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742131" s="1628.0931134979628" t="9.0849701958805511" orientation="none" validLength="16.010883822914366" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.010883822914366" s="1628.0931134979628" distance="0" tStart="9.0849701958805511" tEnd="8.9552542857304172" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742132" s="1644.1039973208772" t="8.9552542857304172" orientation="none" validLength="8.1271046910555924" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.1271046910555924" s="1644.1039973208772" distance="0" tStart="8.9552542857304172" tEnd="8.9808214174067107" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742133" s="1652.2311020119328" t="8.9808214174067107" orientation="none" validLength="27.50011657988307" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="27.50011657988307" s="1652.2311020119328" distance="0" tStart="8.9808214174067107" tEnd="8.803369479789545" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742134" s="1679.7312185918158" t="8.803369479789545" orientation="none" validLength="14.985364421435179" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.985364421435179" s="1679.7312185918158" distance="0" tStart="8.803369479789545" tEnd="8.6000703335769728" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742135" s="1694.716583013251" t="8.6000703335769728" orientation="none" validLength="14.571757400879278" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.571757400879278" s="1694.716583013251" distance="0" tStart="8.6000703335769728" tEnd="8.602280053483474" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742136" s="1709.2883404141303" t="8.602280053483474" orientation="none" validLength="16.789170590137701" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.789170590137701" s="1709.2883404141303" distance="0" tStart="8.602280053483474" tEnd="8.773318859093056" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742137" s="1726.077511004268" t="8.773318859093056" orientation="none" validLength="35.72704938452307" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="35.72704938452307" s="1726.077511004268" distance="0" tStart="8.773318859093056" tEnd="9.8262214593311974" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742138" s="1761.8045603887911" t="9.8262214593311974" orientation="none" validLength="22.150039321073564" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="22.150039321073564" s="1761.8045603887911" distance="0" tStart="9.8262214593311974" tEnd="10.066349730702232" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742139" s="1783.9545997098646" t="10.066349730702232" orientation="none" validLength="56.256839312952025" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="56.256839312952025" s="1783.9545997098646" distance="0" tStart="10.066349730702232" tEnd="10.056922146744176" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742140" s="1840.2114390228166" t="10.056922146744176" orientation="none" validLength="3.9984509054027058" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.9984509054027058" s="1840.2114390228166" distance="0" tStart="10.056922146744176" tEnd="9.9386337274461738" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5174939" s="828.4645962210418" t="10.432768018684014" orientation="none" validLength="91.562157770243971" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="91.562157770243971" s="828.4645962210418" distance="0" tStart="10.432768018684014" tEnd="10.261321695290201" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273610395" s="920.02675399128577" t="10.261321695290201" orientation="none" validLength="20.28949904984438" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="20.28949904984438" s="920.02675399128577" distance="0" tStart="10.261321695290201" tEnd="10.447475675605014" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542045851" s="940.31625304113015" t="10.447475675605014" orientation="none" validLength="12.906285219515098" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.906285219515098" s="940.31625304113015" distance="0" tStart="10.447475675605014" tEnd="10.71499153522997" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810481307" s="953.22253826064525" t="10.71499153522997" orientation="none" validLength="7.9949125001088532" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.9949125001088532" s="953.22253826064525" distance="0" tStart="10.71499153522997" tEnd="10.974373708805985" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078916763" s="961.2174507607541" t="10.974373708805985" orientation="none" validLength="16.479871584828288" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.479871584828288" s="961.2174507607541" distance="0" tStart="10.974373708805985" tEnd="11.737558599902171" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742141" s="977.69732234558239" t="11.737558599902171" orientation="none" validLength="11.093297001872202" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.093297001872202" s="977.69732234558239" distance="0" tStart="11.737558599902171" tEnd="12.381622138991624" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742142" s="988.79061934745459" t="12.381622138991624" orientation="none" validLength="42.708946553319947" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="42.708946553319947" s="988.79061934745459" distance="0" tStart="12.381622138991624" tEnd="15.285205342584495" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742143" s="1031.4995659007745" t="15.285205342584495" orientation="none" validLength="10.410056866172226" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.410056866172226" s="1031.4995659007745" distance="0" tStart="15.285205342584495" tEnd="15.848359045477833" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742144" s="1041.9096227669468" t="15.848359045477833" orientation="none" validLength="14.0440636201281" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.0440636201281" s="1041.9096227669468" distance="0" tStart="15.848359045477833" tEnd="16.444173462296767" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742145" s="1055.9536863870749" t="16.444173462296767" orientation="none" validLength="21.13127643398002" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="21.13127643398002" s="1055.9536863870749" distance="0" tStart="16.444173462296767" tEnd="16.908813767846397" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742146" s="1077.0849628210549" t="16.908813767846397" orientation="none" validLength="72.963342395394193" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="72.963342395394193" s="1077.0849628210549" distance="0" tStart="16.908813767846397" tEnd="17.072181186132827" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742147" s="1150.0483052164491" t="17.072181186132827" orientation="none" validLength="148.26278520201549" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="148.26278520201549" s="1150.0483052164491" distance="0" tStart="17.072181186132827" tEnd="17.056880764780693" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412689" s="1920.4578454796435" t="8.9037693850125219" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848145" s="1870.8323750124703" t="8.8656611853824163" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283601" s="1823.3553782072304" t="9.7669791686039069" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719057" s="1779.1405458561937" t="10.110809379513261" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154513" s="1735.3715753132692" t="8.9289762962064341" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412690" s="1687.6425255225458" t="8.7158563373615383" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848146" s="1636.0869700971639" t="8.7577043487467812" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412691" s="1595.2593999518331" t="9.0695520755503711" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848147" s="1547.7905944602794" t="8.7693997882947503" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283603" s="1495.4733315362271" t="9.2380171500704424" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719059" s="1447.9915186857165" t="8.7318891183690486" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154515" s="1396.3341818373842" t="8.5489020107069962" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742148" s="1348.9491763159763" t="8.4441712331055712" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742149" s="1200.8161846105638" t="8.6512196718691516" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742150" s="1150.5474558185203" t="8.8502526951582148" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742151" s="1100.2506270234694" t="8.924953008781646" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742152" s="1051.7338454060375" t="8.8646290388986735" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742153" s="999.62904665896724" t="8.5902488567696391" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742154" s="952.23861266403867" t="8.4371629819759111" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742155" s="902.06623981416362" t="8.6326990152767635" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742156" s="851.57922758240181" t="8.9341686607581963" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742157" s="804.99295833738188" t="8.8454711445564538" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742158" s="751.23715937178781" t="9.1784750749714625" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742159" s="701.29576690195427" t="9.2339942844773581" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742160" s="651.34779360854304" t="9.2264853185218598" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742161" s="601.82252367453157" t="8.9363440062252764" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742162" s="552.18757086352525" t="8.6565493646405987" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742163" s="501.7083843965363" t="9.0352303700353023" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742164" s="451.69292684574191" t="8.8793602351912639" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742165" s="400.17021042694023" t="8.7821109770541419" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742166" s="351.197704634758" t="9.1918916779907729" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742167" s="301.66977676505081" t="9.6144400343913237" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742168" s="253.69577047130565" t="9.0469143744208207" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8228393" type="B1" subtype="-1" country="FRA" zOffset="2.0891796831336649" s="249.84342350018582" t="-8.3244451556817634" orientation="+" name="" /> - </signals> - </road> - <road name="" length="829.83353634125024" id="33781969" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554597" /> - <successor elementType="junction" elementId="33554492" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="660.79479631654954" y="-254.13038568642784" hdg="3.1844491016353915" length="161.0036568123362"> - <paramPoly3 aU="0" bU="160.76109696756919" cU="0.48730084414051639" dU="-0.30007875753282426" aV="0" bV="-2.6645352591003757e-15" cV="-6.0697572673970734" dV="2.1956172330191595" /> - </geometry> - <geometry s="161.0036568123362" x="499.82827846810233" y="-257.15536487918484" hdg="3.1499389366437924" length="251.50146187283076"> - <paramPoly3 aU="0" bU="251.8906248587534" cU="-1.4934659270750785" dU="0.62652438445536274" aV="0" bV="8.9706020389712648e-14" cV="-23.527089358868043" dV="9.2281159512933471" /> - </geometry> - <geometry s="412.50511868516696" x="248.69399641757002" y="-244.9519798949774" hdg="3.0728546444887881" length="167.50008125637234"> - <paramPoly3 aU="-0" bU="167.51862151727394" cU="0.078422961246289252" dU="-0.098047168877246987" aV="-0" bV="-1.7763568394002505e-15" cV="-2.039310373413779" dV="1.6034142183067561" /> - </geometry> - <geometry s="580.00519994153933" x="81.620491539031889" y="-233.01263013065096" hdg="3.0772256054948781" length="107.99776249904149"> - <paramPoly3 aU="-0" bU="108.53520111621573" cU="-1.9271944299875887" dU="1.3838654644897996" aV="-0" bV="1.3322676295501878e-14" cV="3.6347144284267543" dV="-2.7226496036318388" /> - </geometry> - <geometry s="688.00296244058086" x="-26.206412755923616" y="-226.97648707169844" hdg="3.0689697968510199" length="141.83057390066941"> - <paramPoly3 aU="-0" bU="141.7402334671834" cU="0.15525003111723301" dU="-0.065222244101196078" aV="-0" bV="1.9539925233402755e-14" cV="-0.98564779499154032" dV="0.88691492199649202" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.34877670074601" b="0.015030110940169303" c="5.4316860048866393e-05" d="-1.3655502848758241e-07" /> - <elevation s="10.119921174893296" a="165.50630145375422" b="0.016087520674150556" c="0.00011101476395889351" d="-5.9130237025662387e-06" /> - <elevation s="20.239842349786592" a="165.67434691420709" b="0.016517733972286473" c="1.0201929835764733e-05" d="-1.3655502848748336e-07" /> - <elevation s="30.359763524679888" a="165.84240836131107" b="0.016682264473482741" c="-8.7622104603418167e-06" d="-1.3655502848730035e-07" /> - <elevation s="40.479684699573184" a="166.0101926733237" b="0.016462963764786637" c="-0.00023912558643701933" d="1.1010499353278426e-05" /> - <elevation s="50.599605874466477" a="166.16371843320957" b="0.015005947949487624" c="-9.3728821780494085e-05" d="7.3805075066105378e-06" /> - <elevation s="60.719527049359776" a="166.3136276402702" b="0.015376466792080403" c="8.9693171580282463e-05" d="-3.6369391201847687e-06" /> - <elevation s="70.839448224253076" a="166.47465264311776" b="0.016074435038497113" c="5.6894275129001403e-05" d="-4.305965379826538e-06" /> - <elevation s="80.959369399146368" a="166.63868861745101" b="0.015903008224718015" c="-6.3359808600664278e-05" d="2.9978663376213206e-06" /> - <elevation s="91.079290574039661" a="166.79624396861317" b="0.015541675385557683" c="-0.00014379706656716644" d="1.3671030177643726e-05" /> - <elevation s="99.003399838599066" a="166.91717091821161" b="0.015838021838150248" c="0.00011167383488162648" d="1.3770486641960848e-05" /> - <elevation s="101.19921174893295" a="166.95263247297632" b="0.016527638231376963" c="-3.8904672898279041e-05" d="-3.7098564095987647e-08" /> - <elevation s="111.31913292382626" a="167.11586808311736" b="0.015728815681260225" c="0.00012768823173894364" d="-8.165028920437958e-06" /> - <elevation s="121.43905409871955" a="167.27965705429091" b="0.01580459482777459" c="-5.0312907997731415e-05" d="1.1849274623416134e-06" /> - <elevation s="131.55897527361284" a="167.4356736922245" b="0.015150324735689507" c="7.2472332144051188e-05" d="-9.8373655759042646e-06" /> - <elevation s="141.67889644850615" a="167.58622033988007" b="0.013594736717906506" c="-8.3163077076525422e-05" d="-4.3698154854563875e-06" /> - <elevation s="151.79881762339943" a="167.71075212157248" b="0.01056895397038702" c="-0.00014868965061456312" d="-3.7098564096183126e-08" /> - <elevation s="161.91873879829274" a="167.80244292921685" b="0.0075481007789177943" c="-0.00016595306193105795" d="4.1651182436511104e-06" /> - <elevation s="172.03865997318604" a="167.86615016377442" b="0.0054689212902633566" c="-0.00011354271756346514" d="3.0771112368634843e-06" /> - <elevation s="182.15858114807932" a="167.9130561353459" b="0.0041162413621838277" c="5.5332298707785156e-06" d="-6.0608167377767797e-06" /> - <elevation s="192.27850232297263" a="167.94899735895387" b="0.0023661173418600594" c="-0.00024087286016702202" d="1.0097397815199898e-05" /> - <elevation s="202.39842349786591" a="167.95873885390466" b="0.00059319711356448231" c="6.5638741173568019e-05" d="-8.151462651925912e-06" /> - <elevation s="212.51834467275921" a="167.96301595609768" b="-0.00058272756803067209" c="-5.9348294178447554e-05" d="-4.0265286683197513e-06" /> - <elevation s="222.63826584765252" a="167.94686764118561" b="-0.0030210319669375305" c="-0.00021998415548585187" d="8.498728210215138e-06" /> - <elevation s="232.7581870225458" a="167.90257400422308" b="-0.0048623408191538833" c="0.00014084537148455781" d="-1.306788271429085e-05" /> - <elevation s="235.00234131325382" a="167.89222379650781" b="-0.0044276218590300542" c="0.00016555065067527807" d="-1.308754838230987e-05" /> - <elevation s="242.8781081974391" a="167.86122813230838" b="-0.0042553169265243176" c="-5.3638829069951028e-06" d="-6.9297455829699919e-07" /> - <elevation s="252.99802937233241" a="167.81689712472357" b="-0.0045767894750105452" c="-0.00014082353514205051" d="6.3321419933627275e-06" /> - <elevation s="263.11795054722569" a="167.76272093499549" b="-0.0054815583636930792" c="-6.54452584671409e-05" d="5.1022511992486329e-06" /> - <elevation s="273.237871722119" a="167.70583358563667" b="-0.0052385525125562106" c="-4.6852555373394379e-05" d="8.2537360032964765e-06" /> - <elevation s="283.3577928970123" a="167.65657579602569" b="-0.0036509760897669272" c="0.00019437568098123957" d="-1.0786439388978794e-05" /> - <elevation s="293.47771407190561" a="167.62835559605978" b="-0.0030308514780426157" c="-4.5575383117090261e-05" d="3.6662151268788015e-06" /> - <elevation s="303.59763524679886" a="167.59681581542623" b="-0.0028268879272852383" c="0.00027918971187080997" d="-1.5655285041793664e-05" /> - <elevation s="313.71755642169217" a="167.58057524754153" b="-0.0019860371165102537" c="-7.0805750264727729e-05" d="3.160702671451387e-06" /> - <elevation s="323.83747759658547" a="167.55650107531267" b="-0.0024480450641887973" c="-1.9363148028893929e-05" d="1.1245761993500312e-06" /> - <elevation s="333.95739877147878" a="167.53090953940259" b="-0.0024944391200507066" c="3.112311934673196e-05" d="-2.8531765166696295e-06" /> - <elevation s="344.07731994637209" a="167.50589635879712" b="-0.0027411175181928714" c="-0.00031560269189199834" d="1.7054754785989277e-05" /> - <elevation s="354.19724112126534" a="167.46351041881627" b="-0.0038889904397734557" c="0.00014535664047636091" d="-1.1553714818648706e-05" /> - <elevation s="364.31716229615864" a="167.42706614342171" b="-0.004496739965933097" c="-0.0005282768116790838" d="4.0339876397408713e-05" /> - <elevation s="374.43708347105195" a="167.36926581105945" b="-0.0027950197158255058" c="2.7768706966095919e-06" d="-4.2729781728659036e-07" /> - <elevation s="379.00522261791821" a="167.35651498631509" b="-0.002796399870663551" c="-1.0263649451518697e-05" d="-3.3101115071023743e-07" /> - <elevation s="384.55700464594526" a="167.34061699249" b="-0.0029409705185693222" c="-0.00023262760321447225" d="7.6799603522359659e-06" /> - <elevation s="394.67692582083856" a="167.29499014133833" b="-0.0052897376974924137" c="-0.00025632267306514373" d="1.7780393881242898e-05" /> - <elevation s="404.79684699573181" a="167.23363545828119" b="-0.0050148481789384549" c="7.8683266166903763e-05" d="3.9522437495824611e-08" /> - <elevation s="414.91676817062512" a="167.19098472539849" b="-0.003410168465149951" c="0.00075482272329524687" d="-4.1655269065228451e-05" /> - <elevation s="425.03668934551843" a="167.19060568440727" b="-0.00093077433588776605" c="-0.00026248274565781248" d="1.7293545563701415e-05" /> - <elevation s="435.15661052041173" a="167.17222792243703" b="-0.00093014222029490917" c="0.00023115065275578899" d="-1.4112247730303546e-05" /> - <elevation s="445.27653169530504" a="167.17186167536576" b="-0.00058751405668815235" c="-0.00010166032444764108" d="4.7412657683722144e-06" /> - <elevation s="455.39645287019835" a="167.16041865341157" b="-0.0011884040228560115" c="2.7275328777862444e-05" d="-3.1792000229049516e-06" /> - <elevation s="465.5163740450916" a="167.14789048815547" b="-0.0016131280404106962" c="-4.7557112670586096e-05" d="1.1152124503309938e-06" /> - <elevation s="475.6362952199849" a="167.12785111904375" b="-0.0022330403992313532" c="-2.1666010374985971e-05" d="-2.4895946980651969e-07" /> - <elevation s="485.75621639487821" a="167.10277602537445" b="-0.0027480469461633383" c="1.5758279269027666e-05" d="-4.116955205496389e-06" /> - <elevation s="495.87613756977152" a="167.07231300494374" b="-0.0036939886449044246" c="-2.0459348793829385e-05" d="3.9522437495856295e-08" /> - <elevation s="505.99605874466482" a="167.03287579317646" b="-0.0040959398280667443" c="-0.0001810041003232893" d="9.9403705726242558e-06" /> - <elevation s="516.11597991955807" a="166.98319036201516" b="-0.0047053705963737077" c="3.2510112118864267e-05" d="-1.1386206523202034e-06" /> - <elevation s="526.23590109445138" a="166.93772175696867" b="-0.004397199055405151" c="5.4208448613165001e-05" d="-4.3423175269681199e-06" /> - <elevation s="536.35582226934469" a="166.89427366921328" b="-0.0046341553504681329" c="-8.5929732743415094e-05" d="5.2421640609053173e-06" /> - <elevation s="546.47574344423799" a="166.84400910611095" b="-0.0047627654236215549" c="3.936251812652904e-05" d="-1.8173806379969837e-06" /> - <elevation s="556.5956646191313" a="166.79795797075028" b="-0.0045244434066629815" c="1.1051328634012295e-05" d="-7.5814624178445735e-07" /> - <elevation s="566.71558579402461" a="166.75251700769968" b="-0.0045336979060774567" c="-0.00021899684820797391" d="2.1294962738349324e-05" /> - <elevation s="576.83550696891791" a="166.70627856272986" b="-0.0024235290161373924" c="0.00011932871159690128" d="-6.9883890221544328e-06" /> - <elevation s="586.95542814381122" a="166.68673059530366" b="-0.0021554362635046332" c="-8.901261591509629e-05" d="6.8154878886754625e-06" /> - <elevation s="597.07534931870441" a="166.66286535504122" b="-0.0018630578888637036" c="0.00020893633210704155" d="-9.0771861550939486e-06" /> - <elevation s="607.19527049359772" a="166.65600142976012" b="-0.00042307974155313273" c="6.4009607466787366e-05" d="-3.7543932959252682e-06" /> - <elevation s="617.31519166849102" a="166.65438421063095" b="-0.00028102921841799129" c="1.9612594556306753e-05" d="-3.0426509339276157e-06" /> - <elevation s="627.43511284338433" a="166.6503953655438" b="-0.00081889264308777508" c="1.7592116365828303e-05" d="3.9522437668315009e-08" /> - <elevation s="635.00550471783572" a="166.6452213935988" b="-0.00054573902202993522" c="-1.7167237401461398e-05" d="5.9924302832393635e-08" /> - <elevation s="637.55503401827764" a="166.64371942029507" b="-0.00063210722973500752" c="-0.00023025633188583235" d="1.1932849441039974e-05" /> - <elevation s="647.67495519317094" a="166.6261086668726" b="-0.0016262293532643092" c="4.1419757112218579e-05" d="-2.8601249540588769e-06" /> - <elevation s="657.79487636806425" a="166.61092900679509" b="-0.0016666402531817326" c="-2.5766372048361774e-05" d="1.0385959782035426e-06" /> - <elevation s="667.91479754295756" a="166.59250034312905" b="-0.0018690509804876632" c="-7.0429373358228285e-06" d="3.4688438111317536e-07" /> - <elevation s="678.03471871785086" a="166.57322392184093" b="-0.0019050227148334515" c="-1.113579913305883e-05" d="1.2180535019771925e-06" /> - <elevation s="688.15463989274417" a="166.55406719594271" b="-0.0017561767079054059" c="5.99212268038069e-05" d="-3.1677385257218792e-06" /> - <elevation s="698.27456106763748" a="166.53914845264842" b="-0.0015166314838339571" c="-9.7467274892324744e-06" d="6.686103826686637e-07" /> - <elevation s="708.39448224253067" a="166.52349502604184" b="-0.0015084809182489981" c="-2.7751991313726489e-05" d="3.2362594964308195e-06" /> - <elevation s="718.51440341742398" a="166.50874124891004" b="-0.0010758736131382795" c="7.5224027238709467e-05" d="-3.583207563848455e-06" /> - <elevation s="728.63432459231728" a="166.50184372595828" b="-0.00065425016899379454" c="2.936240005546931e-05" d="-2.5147498813050714e-06" /> - <elevation s="738.75424576721059" a="166.49562354086694" b="-0.00083258758539042307" c="-3.400072522586575e-05" d="1.351575999501032e-06" /> - <elevation s="748.8741669421039" a="166.48511649672224" b="-0.0011055008375800632" c="-3.9096508285864136e-06" d="-1.5044887949951482e-07" /> - <elevation s="758.9940881169972" a="166.47337259043144" b="-0.0012308552290824881" c="-6.5602956848378872e-06" d="8.0874315279489921e-08" /> - <elevation s="769.11400929189051" a="166.46032839316487" b="-0.0013387868831713436" c="8.1733163923138472e-07" d="-4.4742299985996549e-07" /> - <elevation s="779.23393046678382" a="166.44639996721074" b="-0.0014597097524017013" c="-6.618882953854175e-05" d="3.087622933290055e-06" /> - <elevation s="789.35385164167712" a="166.42804927768336" b="-0.0018507248552713262" c="-1.8679295431216412e-05" d="1.6004399105874357e-06" /> - <elevation s="799.47377281657043" a="166.40906580014183" b="-0.0017370742305601007" c="-3.36634571003311e-06" d="1.8075793166304756e-06" /> - <elevation s="809.59369399146362" a="166.39301538134157" b="-0.001249850735042453" c="4.3340106773207004e-05" d="-8.8029081291767336e-07" /> - <elevation s="819.71361516635693" a="166.38389323053846" b="-0.00064311295953653415" c="2.6129588718722992e-05" d="5.9924302829381163e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028184898499840075" b="7.914660801911565e-05" c="-3.9104359930921524e-06" d="0" /> - <superelevation s="10.119921174893296" a="0.028585377217046889" b="0" c="-2.8215112763443877e-05" d="1.8587175582252085e-06" /> - <superelevation s="20.239842349786592" a="0.02762218094044154" b="0" c="3.4052201129306452e-05" d="-2.2432454786167882e-06" /> - <superelevation s="30.359763524679888" a="0.028784641413768429" b="0" c="-8.1977949898147449e-06" d="5.4004340206080152e-07" /> - <superelevation s="40.479684699573184" a="0.028504788354992285" b="0" c="4.1798167980373245e-05" d="-2.2956084506220568e-06" /> - <superelevation s="50.599605874466477" a="0.030406265535624553" b="0.00014068923145370277" c="-9.1549216560795604e-08" d="-4.5188454153571202e-07" /> - <superelevation s="60.719527049359776" a="0.031352316219927866" b="0" c="-1.6897739349885749e-05" d="1.1131667304423761e-06" /> - <superelevation s="70.839448224253076" a="0.03077546792726589" b="0" c="3.4264005486782047e-06" d="-2.2571984435207496e-07" /> - <superelevation s="80.959369399146368" a="0.030892437023874335" b="0" c="-4.9083375098464412e-05" d="3.1134595857120855e-06" /> - <superelevation s="91.079290574039661" a="0.029092490044222992" b="-3.6865389574039708e-05" c="5.4642801465934331e-06" d="-3.5996855786781143e-07" /> - <superelevation s="101.19921174893295" a="0.028905952625937485" b="-3.6865389574039708e-05" c="-3.6135310337024293e-05" d="2.5004632873177555e-06" /> - <superelevation s="111.31913292382626" a="0.02742366324282278" b="0" c="1.0731235618655188e-05" d="-5.9852681149343547e-07" /> - <superelevation s="121.43905409871955" a="0.027902360299954441" b="3.330808898502192e-05" c="-8.5721928708841838e-07" d="-5.1940463954223715e-08" /> - <superelevation s="131.55897527361284" a="0.028097813712852287" b="0" c="-2.961813767619795e-06" d="1.5532462083693469e-07" /> - <superelevation s="141.67889644850615" a="0.027955465972376345" b="-1.222495360252579e-05" c="1.3899408482299338e-06" d="-1.1936938600537645e-07" /> - <superelevation s="151.79881762339943" a="0.027850382579203709" b="-2.0767630766401472e-05" c="-1.2545132001826674e-05" d="7.0071954285329291e-07" /> - <superelevation s="161.91873879829274" a="0.027081666038502334" b="-5.9391163905047494e-05" c="7.5060588742636116e-06" d="-5.7991931912325657e-07" /> - <superelevation s="172.03865997318604" a="0.026648314784795211" b="-8.5643207336877708e-05" c="-5.689238696340784e-05" d="4.0266323967975737e-06" /> - <superelevation s="182.15858114807932" a="0.024128343477013175" b="0" c="1.3215571631048035e-05" d="-8.7059779766103206e-07" /> - <superelevation s="192.27850232297263" a="0.024579491395327682" b="0" c="-9.3254752995280981e-06" d="4.6658968621253668e-07" /> - <superelevation s="202.39842349786591" a="0.024108021303728615" b="-4.5391874831417933e-05" c="-4.1307188882384372e-06" d="4.198595232371829e-07" /> - <superelevation s="212.51834467275921" a="0.023660767004778538" b="0" c="1.0634378983305194e-05" d="-7.0055743185617452e-07" /> - <superelevation s="222.63826584765252" a="0.024023799197015631" b="0" c="-5.9533698570823658e-05" d="3.9218815734469078e-06" /> - <superelevation s="232.7581870225458" a="0.021991461517676041" b="0" c="2.7979214965128113e-05" d="-1.3864078886688458e-06" /> - <superelevation s="242.8781081974391" a="0.023420005072216692" b="0.00014033713942856508" c="6.9478866496340909e-07" d="-7.6705221866647324e-08" /> - <superelevation s="252.99802937233241" a="0.024831863095530222" b="0.00013083276178056525" c="1.0355100415397411e-05" d="-1.1079941389502707e-06" /> - <superelevation s="263.11795054722569" a="0.026068039544842516" b="0" c="-3.5151798951729383e-05" d="1.721634917760926e-06" /> - <superelevation s="273.237871722119" a="0.024252364028968076" b="-0.00018251448789086759" c="1.7728989292044826e-05" d="-1.7821451978449338e-06" /> - <superelevation s="283.3577928970123" a="0.022373975083379318" b="-0.00037122600327142604" c="-8.9306334146830392e-05" d="5.0859385586864865e-06" /> - <superelevation s="293.47771407190561" a="0.014742200132952212" b="-0.00061617643199833052" c="6.0273063603416876e-05" d="-4.6088109102513611e-06" /> - <superelevation s="303.59763524679886" a="0.0099026612400791164" b="-0.00081226288010344131" c="-7.4250737095419547e-05" d="4.0753474006982692e-06" /> - <superelevation s="313.71755642169217" a="-0.001697872506925056" b="-0.0010629828223662015" c="1.3459955820607638e-06" d="6.8060374327351945e-07" /> - <superelevation s="323.83747759658547" a="-0.011611943505144027" b="-0.00082663246950055876" c="9.4224594804208817e-06" d="5.6313171512728927e-07" /> - <superelevation s="333.95739877147878" a="-0.018428783370831155" b="-0.00046290768017696752" c="4.7577900110303792e-05" d="-2.6440663945017096e-06" /> - <superelevation s="344.07731994637209" a="-0.020981121974431291" b="-0.00031229724752849147" c="-4.2280480026546055e-05" d="3.5912229474603484e-06" /> - <superelevation s="354.19724112126534" a="-0.024749630427080085" b="-6.4685855909465408e-05" c="7.3094436287098747e-06" d="-4.064732488129325e-07" /> - <superelevation s="364.31716229615864" a="-0.025076938308547233" b="-4.1628065400137327e-05" c="-6.8660097776980705e-06" d="5.878009154642767e-07" /> - <superelevation s="374.43708347105195" a="-0.025592175908105471" b="0" c="3.13266436030684e-05" d="-1.5213856662684585e-06" /> - <superelevation s="384.55700464594526" a="-0.023960705050905522" b="0.00016661820905533107" c="-1.9679823864380438e-06" d="2.4723709876467391e-07" /> - <superelevation s="394.67692582083856" a="-0.022219849624221782" b="0.00020274728985329653" c="2.9142645775268993e-05" d="-2.5797224907699785e-06" /> - <superelevation s="404.79684699573181" a="-0.019857131867428324" b="0" c="-6.8116156078443243e-05" d="3.2999290357790098e-06" /> - <superelevation s="414.91676817062512" a="-0.023413020614991516" b="-0.00036479529803390502" c="2.0414068080378168e-06" d="-3.327614295242754e-07" /> - <superelevation s="425.03668934551843" a="-0.027240531189577984" b="-0.0004257146398343745" c="-5.614788787369546e-05" d="5.0844522322689894e-06" /> - <superelevation s="435.15661052041173" a="-0.032029417811235444" b="0" c="9.7563531585017759e-05" d="-6.2107998085115021e-06" /> - <superelevation s="445.27653169530504" a="-0.028474594900743919" b="6.6474217032618413e-05" c="-6.5859739319561432e-06" d="3.2625245124416635e-07" /> - <superelevation s="455.39645287019835" a="-0.028138237982477495" b="3.3412428534989881e-05" c="3.3536218320780574e-06" d="-3.2967624223181656e-07" /> - <superelevation s="465.5163740450916" a="-0.027798332614672214" b="0" c="-1.1691550601446654e-05" d="5.7924351784622857e-07" /> - <superelevation s="475.6362952199849" a="-0.028395363611392076" b="-5.8669281395061769e-05" c="-5.7006643321880728e-06" d="5.6649761544661107e-07" /> - <superelevation s="485.75621639487821" a="-0.028985789620883533" b="0" c="3.6712938563074716e-05" d="-2.4185259897186113e-06" /> - <superelevation s="495.87613756977152" a="-0.027732497953270208" b="0" c="-5.655503550934893e-06" d="8.0628974240060306e-08" /> - <superelevation s="505.99605874466482" a="-0.028228129297607225" b="-8.9694182131116557e-05" c="-2.09338879811772e-05" d="1.6709914895028385e-06" /> - <superelevation s="516.11597991955807" a="-0.029547894059297045" b="0" c="1.84589845641588e-05" d="-1.0293441533482661e-06" /> - <superelevation s="526.23590109445138" a="-0.028724279749566033" b="5.7352872629758996e-05" c="-8.0421028704371089e-06" d="5.6001661961681116e-07" /> - <superelevation s="536.35582226934469" a="-0.028387080958963331" b="6.6640596260623895e-05" c="2.1301311334832716e-05" d="-1.6201612729102935e-06" /> - <superelevation s="546.47574344423799" a="-0.027210306893106086" b="0" c="-6.6626341470549706e-06" d="4.3891212404463655e-07" /> - <superelevation s="556.5956646191313" a="-0.027437753242749659" b="0" c="7.2065764689369763e-06" d="-4.7474523067866714e-07" /> - <superelevation s="566.71558579402461" a="-0.027191738006867094" b="0" c="-1.9820762197638456e-05" d="1.3057257301444934e-06" /> - <superelevation s="576.83550696891791" a="-0.02786837128876489" b="0" c="2.3061106289046929e-05" d="-1.5191887954133922e-06" /> - <superelevation s="586.95542814381122" a="-0.027081120431458761" b="0" c="-2.4075972889956177e-06" d="1.5860448234641481e-07" /> - <superelevation s="597.07534931870441" a="-0.027163310028352036" b="0" c="7.6229631014239943e-05" d="-5.0217539377256193e-06" /> - <superelevation s="607.19527049359772" a="-0.02456101326010925" b="0" c="-4.9677306541756848e-05" d="3.2725753282876178e-06" /> - <superelevation s="617.31519166849102" a="-0.026256877355850066" b="0" c="1.2886345237823018e-05" d="-8.4890946053302052e-07" /> - <superelevation s="627.43511284338433" a="-0.0258169684369602" b="0" c="-5.6803591224559515e-06" d="3.7420312037926778e-07" /> - <superelevation s="637.55503401827764" a="-0.02601088227322243" b="0" c="1.4647802712451288e-05" d="-9.6494840617212526e-07" /> - <superelevation s="647.67495519317094" a="-0.025510841420953983" b="0" c="-2.6145932055958328e-06" d="1.6197664945118874e-07" /> - <superelevation s="657.79487636806425" a="-0.025610735104148418" b="-3.1535054468378219e-06" c="1.5580681866673223e-07" d="0" /> - <superelevation s="667.91479754295756" a="-0.025626691717421716" b="0" c="5.0630143475407747e-06" d="-3.3353450486694159e-07" /> - <superelevation s="678.03471871785086" a="-0.025453852551091356" b="0" c="-8.4452972794493309e-06" d="5.5634802771662261e-07" /> - <superelevation s="688.15463989274417" a="-0.025742154744408483" b="0" c="2.4493924017773447e-06" d="-1.613578050294252e-07" /> - <superelevation s="698.27456106763748" a="-0.025658538362609219" b="0" c="-3.6311903931829675e-05" d="2.0815267469825918e-06" /> - <superelevation s="708.39448224253067" a="-0.027220028168837489" b="-9.542223506271942e-05" c="4.7145740274861076e-06" d="-1.0461136860739839e-22" /> - <superelevation s="718.51440341742398" a="-0.02770286091742092" b="0" c="2.9559856958820491e-05" d="-1.6453945341087248e-06" /> - <superelevation s="728.63432459231728" a="-0.026380855605481698" b="9.2758438062852562e-05" c="-6.4284481435425661e-06" d="2.6539526172050311e-07" /> - <superelevation s="738.75424576721059" a="-0.025825444754416338" b="4.4187280313713602e-05" c="1.1956963988015349e-06" d="-2.2258931130107381e-07" /> - <superelevation s="748.8741669421039" a="-0.025486512018066305" b="0" c="-1.4467220276393013e-05" d="8.0525142584588005e-07" /> - <superelevation s="758.9940881169972" a="-0.026133570385681242" b="-4.5410086880446062e-05" c="1.0056272178112652e-06" d="8.1553443213038125e-08" /> - <superelevation s="769.11400929189051" a="-0.026405605017616646" b="0" c="1.1096487824956323e-05" d="-7.309996216496032e-07" /> - <superelevation s="779.23393046678382" a="-0.02602679753788039" b="0" c="-1.6432267258384926e-06" d="1.4148153570821659e-08" /> - <superelevation s="789.35385164167712" a="-0.026180421714538608" b="-2.8911793615217916e-05" c="-6.9275298390286633e-06" d="5.5046471358143641e-07" /> - <superelevation s="799.47377281657043" a="-0.026611967682701968" b="0" c="1.1184186227843937e-05" d="-6.2844710693390674e-07" /> - <superelevation s="809.59369399146362" a="-0.026117892362072192" b="3.3283073796936267e-05" c="-1.317585523628145e-06" d="-2.1531651707942605e-08" /> - <superelevation s="819.71361516635693" a="-0.025938323516135672" b="0" c="-1.5444820021441493e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-3.6903153136327158" b="0.0011219134238446414" c="-0.00022746296468332408" d="4.7113501780946405e-05" /> - <laneOffset s="2.457955920830897" a="-3.6882322993888352" b="0.00085764089188970153" c="-4.4375247138487783e-05" d="2.6724477107476735e-06" /> - <laneOffset s="10.119921174893296" a="-3.6830640951542146" b="0.000648301521813149" c="1.9027781246883561e-05" d="2.3430118374882005e-06" /> - <laneOffset s="19.740416978935276" a="-3.67297976458357" b="0.0016649798287787026" c="0.0003996421057345308" d="-5.740811984501346e-05" /> - <laneOffset s="25.940594749121413" a="-3.6609766094660148" b="-0" c="-1.0869785842076657e-05" d="1.1421288053636884e-06" /> - <laneOffset s="30.359763524679888" a="-3.6610903178807312" b="-2.9156755603927246e-05" c="-1.9877714061313592e-06" d="-1.1697866757414118e-07" /> - <laneOffset s="37.831721412823981" a="-3.6614679524028566" b="-7.8454655395477694e-05" c="-0.0048938534051130231" d="0.00056823027187891193" /> - <laneOffset s="40.479684699573184" a="-3.6854397870710289" b="-0.014043146047905793" c="-0.00038947836584273351" d="0.00057235147019426213" /> - <laneOffset s="42.653471949611045" a="-3.7119278793729915" b="-0.0076227474690038653" c="0.0012486186745326868" d="-0.00014306349645126131" /> - <laneOffset s="47.301577334049462" a="-3.7347496421305215" b="-0.0052879356931385471" c="0.00038548245055685824" d="-5.9324042352016964e-05" /> - <laneOffset s="50.599605874466477" a="-3.7501246248117877" b="-0.0046810728929157584" c="-0.00023295260100473128" d="-6.2097584064510012e-05" /> - <laneOffset s="55.055479990715078" a="-3.7811019345133841" b="-0.010455895793580887" c="-0.0014406186398055235" d="9.2577332639188131e-05" /> - <laneOffset s="60.719527049359776" a="-3.8697194309135932" b="-0.017865319937274225" c="0.00013318515464270402" d="9.1242407220615198e-05" /> - <laneOffset s="64.356619854353966" a="-3.9285454720224449" b="-0.013275521159132019" c="0.00070018937161377506" d="-0.00013247221418784364" /> - <laneOffset s="67.528686867124506" a="-3.9678391672275639" b="-0.012832235829636015" c="-0.0017891341558150576" d="0.00087801191361456252" /> - <laneOffset s="69.414790256920725" a="-3.9925156247239446" b="-0.010210937961724738" c="0.00024527131243863641" d="0.00054460759826317827" /> - <laneOffset s="71.769116810952909" a="-4.0080890453277718" b="-0" c="0.0038320620514356563" d="-0.00035214734075993668" /> - <laneOffset s="78.487002181449611" a="-3.9419114938315096" b="0.0038094957832036356" c="-0.0014354531626213569" d="0.00025526029005620003" /> - <laneOffset s="80.959369399146368" a="-3.9374097274884492" b="0.0013924729855654696" c="0.00047354851801777994" d="0.0002438605202313196" /> - <laneOffset s="81.964354221812258" a="-3.9352845063427897" b="0.0030831844804310158" c="0.00072370837221409428" d="-4.7122468385608565e-05" /> - <laneOffset s="90.067606828618338" a="-3.8878530280397392" b="0.0055294020760615244" c="-0.00035014652511867843" d="8.6109148267493804e-06" /> - <laneOffset s="91.079290574039661" a="-3.8826084819286009" b="0.0048473668974292955" c="-0.00029665349219146745" d="2.6191419298716411e-05" /> - <laneOffset s="101.19921174893295" a="-3.8367895911123959" b="0.0068901571023730172" c="0.00051625788285020299" d="1.9972729593817983e-05" /> - <laneOffset s="103.02544165767443" a="-3.8223631527117865" b="0.008975602365838593" c="0.00048275621142961176" d="-3.6990262100228263e-05" /> - <laneOffset s="107.76885264707556" a="-3.7728740334467612" b="0.011058587702146934" c="0.00025717993791943375" d="-1.9678040369997137e-05" /> - <laneOffset s="111.31913292382626" a="-3.7312519075966417" b="0.012140614432733291" c="5.443110519661331e-05" d="-1.7177813875881638e-05" /> - <laneOffset s="113.99770718703763" a="-3.6986719655374309" b="0.012062469867772143" c="0.00012552880510469154" d="-1.3777994923831833e-05" /> - <laneOffset s="121.35438506901221" a="-3.6086242420205772" b="0.011672395255294503" c="-0.00028961703258053673" d="2.0844388812558222e-05" /> - <laneOffset s="131.4990663054981" a="-3.4982550422294465" b="0.012231823449044466" c="0.00066825070603447449" d="-0.0001096308632870412" /> - <laneOffset s="136.37848494279717" a="-3.43539677486035" b="0.01092265971415253" c="-0.00041593942458414599" d="3.3702353751455254e-06" /> - <laneOffset s="140.80430598058902" a="-3.3949102400339628" b="0.0074389602208084988" c="-0.00021450305496139348" d="-1.6487521614024376e-08" /> - <laneOffset s="151.79881762339943" a="-3.3390733935210388" b="0.002716268550890545" c="-0.00021162728370803128" d="-3.317305548633698e-07" /> - <laneOffset s="158.12237248476177" a="-3.3304432158660693" b="-0" c="-0.0010337097834520184" d="5.1954987802200243e-05" /> - <laneOffset s="161.91873879829274" a="-3.3424987482342674" b="-0.0056022942396513889" c="-0.00043484679805665252" d="5.2892214928980654e-05" /> - <laneOffset s="170.0701750589788" a="-3.3884112946384302" b="-0.0021481316022754198" c="0.00012636427559642213" d="-6.1113791925867875e-06" /> - <laneOffset s="172.03865997318604" a="-3.3921968222612513" b="-0.0017216828139752717" c="0.00010603610362848051" d="-3.350928511168312e-06" /> - <laneOffset s="182.15858114807932" a="-3.402233596042215" b="-0.00060506275353760272" c="7.8920917222024363e-06" d="-2.1015731621306842e-06" /> - <laneOffset s="184.39301381705948" a="-3.4035696100523296" b="-0.00060127156424493659" c="0.00010394081408610132" d="-9.4355991243538816e-06" /> - <laneOffset s="191.97126540562888" a="-3.4062634315315652" b="-0.00065154874680219978" c="1.5129184898947196e-06" d="-2.5336476688783531e-06" /> - <laneOffset s="202.39842349786591" a="-3.4157651348721934" b="-0.0014464151519311408" c="-7.4338662162644396e-05" d="-2.7307080142169324e-06" /> - <laneOffset s="208.22982605135289" a="-3.4272691639538619" b="-0.0025919877537783054" c="-0.00039745124132781266" d="1.0317944811757408e-05" /> - <laneOffset s="212.51834467275921" a="-3.4448808381117204" b="-0.0054316577508938405" c="-0.00026494647780314921" d="1.0883305050358023e-05" /> - <laneOffset s="216.65853509005876" a="-3.4711380663578826" b="-0.007065857523323324" c="-0.00057823970277682808" d="3.0828589792412226e-05" /> - <laneOffset s="222.63826584765252" a="-3.5274744960881095" b="-0.010674262698343573" c="-1.74161395554854e-05" d="2.9538289212406181e-05" /> - <laneOffset s="228.26757787096005" a="-3.582845873843747" b="-0.0080622142914793336" c="0.00015201943735288425" d="-2.2642475016100498e-06" /> - <laneOffset s="232.7581870225458" a="-3.6161896089415242" b="-0.0068338740665129082" c="0.00012641238057620053" d="2.405927906484459e-09" /> - <laneOffset s="237.3516736906987" a="-3.6449133687972162" b="-0.0056723746006785893" c="0.00021394549079020137" d="-5.9151483817166157e-06" /> - <laneOffset s="242.8781081974391" a="-3.6707255551071287" b="-0.0038496352437909207" c="0.00010325328323571668" d="-6.5041983720919962e-06" /> - <laneOffset s="250.99122217709396" a="-3.6986350968341926" b="-0.0034585940357081684" c="-3.623920069070886e-05" d="8.4429689218036468e-06" /> - <laneOffset s="252.99802937233241" a="-3.7056535376850612" b="-0.0035020377370958899" c="-7.133567571050866e-06" d="2.5923076309737966e-06" /> - <laneOffset s="263.11795054722569" a="-3.739137759916793" b="-0.0028499635356121242" c="7.3270069597889865e-05" d="2.0216480195809474e-06" /> - <laneOffset s="273.03738546498022" a="-3.7582251870237173" b="-0.00079960684455570013" c="7.7926109871125828e-05" d="-8.003070353990784e-07" /> - <laneOffset s="278.6538861022679" a="-3.7603997868171049" b="-0" c="0.00075937653962596444" d="-0.00010292436017655531" /> - <laneOffset s="283.57255672163274" a="-3.754275840108364" b="-0" c="-1.5765945984730595e-05" d="1.8121637517558572e-06" /> - <laneOffset s="289.37260136237683" a="-3.754452631637391" b="-0" c="0.00062213165446182636" d="-3.6605184561236654e-05" /> - <laneOffset s="293.47771407190561" a="-3.7465008156386359" b="0.0032572348642554683" c="0.00022199013319114126" d="-3.2954663249573464e-05" /> - <laneOffset s="298.0268947907756" a="-3.7301915030247894" b="0.0032309865938599312" c="6.3057104390981539e-05" d="-9.9623651187080204e-07" /> - <laneOffset s="303.89566102764468" a="-3.7092591326617761" b="0.0038681830238040558" c="-8.3620370981116858e-06" d="5.736314172295688e-06" /> - <laneOffset s="313.71755642169217" a="-3.6666376847915378" b="0.005364061218837461" c="0.00014610943363064548" d="1.5136351501114716e-05" /> - <laneOffset s="315.17285994767627" a="-3.6584752479413387" b="0.0058855005825439993" c="0.00043842129752814533" d="-3.5211274459857353e-05" /> - <laneOffset s="324.19109110126675" a="-3.595567626973168" b="0.0052020301100419043" c="-0.00031163933322663498" d="8.7615929206819444e-06" /> - <laneOffset s="333.95739877147878" a="-3.5663258179209829" b="0.0016219612087447037" c="-9.0909423526708136e-05" d="1.3826398075675412e-05" /> - <laneOffset s="336.80090946283781" a="-3.5621309192018509" b="0.0014403395987280531" c="-6.005136178888963e-05" d="-6.9429560938780955e-06" /> - <laneOffset s="342.71914941474" a="-3.5571491799046271" b="-0" c="-8.7834522305816517e-05" d="2.279616264740473e-05" /> - <laneOffset s="344.07731994637209" a="-3.5572540902096121" b="-0.00011243725516691228" c="-4.8514055023040889e-05" d="1.5073442655240825e-06" /> - <laneOffset s="354.19724112126534" a="-3.5617981808745758" b="-0.00063124001945472226" c="-1.7239693428047156e-05" d="2.4534116288082341e-06" /> - <laneOffset s="356.58415026628757" a="-3.5633697497652137" b="-0.00067160545746803831" c="6.5763774612342951e-05" d="-1.0569078075770602e-05" /> - <laneOffset s="364.52656334479042" a="-3.5698507603445502" b="-0.0016271127179641803" c="-0.00235551574307835" d="0.00041201337920519429" /> - <laneOffset s="367.86696045255178" a="-3.5862124303541099" b="-0.0035717802960321542" c="0.00073422926509775959" d="-8.7792910473199034e-05" /> - <laneOffset s="371.74227936744023" a="-3.5941370318525916" b="-0.0018364824333361454" c="0.00010724454966253293" d="-2.6028834854520181e-06" /> - <laneOffset s="374.43708347105195" a="-3.598358122986018" b="-0.0013151825070653726" c="8.787952868503476e-05" d="-3.5251278558304356e-06" /> - <laneOffset s="384.55700464594526" a="-3.6063211533225128" b="-0.00061956939142700999" c="-7.9363393330337636e-06" d="-4.0152192562158042e-06" /> - <laneOffset s="390.55269190838925" a="-3.6111866137782203" b="-0.0011477575153150438" c="9.1110775413178721e-05" d="-9.2027929175346258e-06" /> - <laneOffset s="394.67692582083856" a="-3.6150160824262083" b="-0.00086583256064338878" c="-4.442918920017838e-06" d="-8.0262075695253334e-06" /> - <laneOffset s="402.97758268341551" a="-3.6270995533659707" b="-0.0025986297316183881" c="-0.0023484347188994577" d="0.00026718991751528362" /> - <laneOffset s="404.79684699573181" a="-3.6379909952134817" b="-0.0084905031234228188" c="-0.00089344843811791296" d="0.00027373261001778406" /> - <laneOffset s="407.6639700832871" a="-3.6632272395824392" b="-0.0068631860410806027" c="0.00022107234298430987" d="-1.7332673625920652e-06" /> - <laneOffset s="414.91676817062512" a="-3.7020367313392506" b="-0.0039299255140652738" c="0.00015867089577029184" d="-2.3374155505677608e-06" /> - <laneOffset s="425.03668934551843" a="-3.727979856027531" b="-0.0014365954442254227" c="-6.4394480046870196e-05" d="8.7691286973385022e-05" /> - <laneOffset s="426.07675877598251" a="-3.7294450128735561" b="-0.0012859662234519088" c="9.354183383348741e-05" d="-2.9765302987721195e-06" /> - <laneOffset s="435.15661052041173" a="-3.7356376209838689" b="-0.00032346283897556047" c="1.074180950740411e-05" d="-5.5173405464456207e-06" /> - <laneOffset s="443.45893737886382" a="-3.7407400945599067" b="-0.0012860070080735473" c="-0.00054231330415648775" d="9.2658661444917142e-05" /> - <laneOffset s="445.27653169530504" a="-3.7443127595551058" b="-0.0023390830565683408" c="6.625583230370112e-06" d="0.00010479461895060451" /> - <laneOffset s="447.89974593853231" a="-3.7485114354813298" b="-0.00014096756058626708" c="1.8779832913697395e-05" d="-1.0824512934958053e-06" /> - <laneOffset s="455.39645287019835" a="-3.7489688476935821" b="-4.1897038046071314e-05" c="-1.4868626633954726e-06" d="-1.4176669169701202e-06" /> - <laneOffset s="459.88587057614768" a="-3.7493151841813281" b="-0.00014096601611829045" c="-9.8576433638763054e-05" d="3.8664855002097038e-06" /> - <laneOffset s="465.5163740450916" a="-3.7525438468669123" b="-0.00088330334552329476" c="-3.360842760962911e-05" d="4.1664216440338684e-06" /> - <laneOffset s="475.6362952199849" a="-3.7606066214130176" b="-0.00028344784500602998" c="7.6222868732218096e-05" d="1.099006327526366e-05" /> - <laneOffset s="477.05830136509667" a="-3.7608239543394877" b="-0" c="0.00022400753785261176" d="-1.3179631899832571e-05" /> - <laneOffset s="483.80854352404407" a="-3.7546706694368854" b="0.001222590055828181" c="0.00027876569045291218" d="-2.739069471307167e-05" /> - <laneOffset s="485.75621639487821" a="-3.7514343582396945" b="0.0019967647838204918" c="0.00012216888241919595" d="-2.9268564155087478e-05" /> - <laneOffset s="492.11512502632377" a="-3.7413228661611662" b="-0" c="-0.00017959308113135175" d="1.1322699214705161e-05" /> - <laneOffset s="495.87613756977152" a="-3.7432608776079612" b="-0.00087041760542970546" c="-4.4797825479657623e-05" d="1.3037372546396707e-05" /> - <laneOffset s="501.87601979650935" a="-3.7472800324904179" b="-0" c="3.9281106524223496e-05" d="2.6358919210596337e-07" /> - <laneOffset s="505.99605874466482" a="-3.7465948121606441" b="0.00033710243654460682" c="3.2602553351398974e-05" d="-3.9205494470032706e-07" /> - <laneOffset s="516.11597991955807" a="-3.7402507726225807" b="0.00087651863726181673" c="1.9992590452065219e-05" d="-9.7168148280987076e-07" /> - <laneOffset s="523.74287830494598" a="-3.7328337833335996" b="0.0010119146406628761" c="0.00018481397846913431" d="-2.2662988035991755e-05" /> - <laneOffset s="526.23590109445138" a="-3.7295135607627543" b="0.0015108430920409486" c="2.7792820779480478e-05" d="-2.0006318546875236e-05" /> - <laneOffset s="531.7375393907239" a="-3.7236917413646005" b="-0" c="-0.0011086715468698418" d="0.00010257395635934074" /> - <laneOffset s="537.32208340142711" a="-3.7404031405613822" b="-0.0027858876028365571" c="0.00012741353798959715" d="-1.1619946414227498e-05" /> - <laneOffset s="544.86729546359823" a="-3.7591609271087791" b="-0.0028477417691416362" c="-4.0185243395500907e-05" d="-3.016886657190538e-06" /> - <laneOffset s="546.47574344423799" a="-3.7638578889872387" b="-0.0030004285231437903" c="-4.7992066001963739e-05" d="2.9380795924697577e-07" /> - <laneOffset s="554.14308408335182" a="-3.7895521260194021" b="-0.0036845543131042049" c="7.1696582273574001e-05" d="-8.9506529732077332e-06" /> - <laneOffset s="556.5956646191313" a="-3.7982895722093626" b="-0.0034943896239594957" c="4.8632982670108076e-06" d="-9.4755332170047619e-06" /> - <laneOffset s="566.62059819142337" a="-3.8423784257821212" b="-0.0062537343108053211" c="-0.00017596883696154782" d="2.604408410366115e-06" /> - <laneOffset s="571.55065054613738" a="-3.877174580790907" b="-0.007798901777578509" c="-0.00012323324617376897" d="-9.2785153639577604e-07" /> - <laneOffset s="576.83550696891791" a="-3.9219694805056773" b="-0.0091791856684542723" c="-0.00013959287775092632" d="-1.621320544251813e-06" /> - <laneOffset s="586.95542814381122" a="-4.0308385660612078" b="-0.012502655459495637" c="-0.00018674254503646219" d="-1.414685931616008e-06" /> - <laneOffset s="593.95561222360527" a="-4.1279955972910161" b="-0.015325089610590259" c="-0.00014526027832834017" d="-7.9822492900274475e-06" /> - <laneOffset s="597.07534931870441" a="-4.1774620014264441" b="-0.016464505306927116" c="-0.0001976541183514127" d="-1.6789378372026945e-05" /> - <laneOffset s="598.83888561202775" a="-4.207204555078162" b="-0.017318293664688227" c="-0.00014332908312129331" d="-9.5616289231505077e-06" /> - <laneOffset s="605.77005489185979" a="-4.3373101092379649" b="-0.020683223671735761" c="-0.00061299832947852857" d="3.9475958674563607e-05" /> - <laneOffset s="607.19527049359772" a="-4.3679190276423965" b="-0.022189977856726412" c="-0.00043223510038300372" d="5.1020329297342584e-05" /> - <laneOffset s="613.07851572110133" a="-4.5030393913754505" b="-0.021978033207488666" c="0.00036838419825631309" d="-3.35451996706553e-05" /> - <laneOffset s="617.31519166849102" a="-4.5920918867370686" b="-0.0206629352070829" c="-6.7102489879042668e-05" d="-3.6146405459212906e-05" /> - <laneOffset s="621.16564900424282" a="-4.6747119887009818" b="-0.022787407930428889" c="-0.00036999780744447082" d="3.7417606628982715e-05" /> - <laneOffset s="625.91624817080969" a="-4.7873043787812195" b="-0.02376948724048775" c="-4.777243505245576e-05" d="1.9689467650704571e-06" /> - <laneOffset s="627.43511284338433" a="-4.8235103227694003" b="-0.023900980183746728" c="-3.5437949261001123e-05" d="3.9381289010337993e-06" /> - <laneOffset s="636.02483137897116" a="-5.0289318454662046" b="-0.023638080183742756" c="-3.3155254346406252e-05" d="1.1773896398987336e-05" /> - <laneOffset s="637.55503401827764" a="-5.0651383459726542" b="-0.023656842253326493" c="2.3295323864129765e-05" d="1.0108641085452947e-05" /> - <laneOffset s="641.27188263044252" a="-5.1522263634193193" b="-0.023064720342879718" c="0.00010946513157815225" d="-2.4371099810368354e-06" /> - <laneOffset s="647.67495519317094" a="-5.2960632378057912" b="-0.02196265367106013" c="6.5274471595486999e-05" d="-1.9695638402988136e-06" /> - <laneOffset s="652.23310055761124" a="-5.3950025423587098" b="-0.021490355657914306" c="-0.00025216633650647499" d="9.9057861661485771e-05" /> - <laneOffset s="655.38246009807654" a="-5.4620902500910224" b="-0.020131174618560947" c="0.00050677349451695231" d="-2.5259295632004259e-05" /> - <laneOffset s="657.79487636806425" a="-5.5080603591347144" b="-0.018127085900316319" c="0.00032221867052357724" d="-2.5545176266458376e-05" /> - <laneOffset s="660.72482549690676" a="-5.5590482033547275" b="-0.016896802780276145" c="0.00033623549655295608" d="-1.217085647782917e-05" /> - <laneOffset s="667.91479754295756" a="-5.6676776075531752" b="-0.013949297901541497" c="7.5681116883685276e-05" d="-1.3316015977714764e-05" /> - <laneOffset s="669.10661160350469" a="-5.6842176202806911" b="-0.013825645299505961" c="-0.00012195461588112265" d="3.224012556758153e-05" /> - <laneOffset s="677.00075514716082" a="-5.7850988418797611" b="-0.0097237274902050568" c="0.00039532151288802656" d="-1.9259104132600294e-06" /> - <laneOffset s="678.03471871785086" a="-5.7947323201728622" b="-0.0089124082648916452" c="0.00038988073955934194" d="-4.6486241304809682e-07" /> - <laneOffset s="686.98793291106517" a="-5.8436077900832393" b="-0.0020428268977202243" c="0.00077046377254253947" d="-0.00036346264834153779" /> - <laneOffset s="688.06148697599804" a="-5.8453626105510885" b="-0.0016452499617412963" c="-0.00010626926021956665" d="4.1894875136522232e-06" /> - <laneOffset s="698.27456106763748" a="-5.8687872499694143" b="-0.0025049444740891853" c="1.5335975410594517e-05" d="4.6819502494000338e-06" /> - <laneOffset s="708.39448224253067" a="-5.8877140725793495" b="-0.00075607178157832309" c="0.00013255825170138094" d="9.3915433289647039e-06" /> - <laneOffset s="710.6875372455587" a="-5.8886375471307577" b="-0" c="2.0740142981058177e-05" d="1.955536449758613e-07" /> - <laneOffset s="718.51440341742398" a="-5.8872732468135673" b="0.00036059939852599592" c="2.8923237554992076e-05" d="-3.7470832903710912e-07" /> - <laneOffset s="728.991369391783" a="-5.8807513707595742" b="0.00084326332933709635" c="0.00015482948238458648" d="-9.8045922631893467e-07" /> - <laneOffset s="734.40476335530866" a="-5.8718047405230136" b="0.0024333727147559676" c="0.00024630378030399792" d="-1.0845458027396915e-05" /> - <laneOffset s="738.75424576721059" a="-5.8574536566653839" b="0.0039604376001321964" c="0.0001131572374032901" d="-1.0686871211879234e-05" /> - <laneOffset s="743.83484311661073" a="-5.8358129059873818" b="0.0042826867116918521" c="0.00025831710026876165" d="-2.4496334322041453e-05" /> - <laneOffset s="748.8741669421039" a="-5.8108060118810361" b="0.0050199363453960364" c="-0.00011522564744054387" d="-2.3236421698115286e-05" /> - <laneOffset s="752.34451421053325" a="-5.7957439416033996" b="0.0033806600228982356" c="-0.00036127440641638457" d="3.7297983882505875e-05" /> - <laneOffset s="757.78577751247269" a="-5.7820365005621879" b="0.0027619646614268131" c="9.7790308747555812e-05" d="5.3902625895395477e-06" /> - <laneOffset s="758.9940881169972" a="-5.7785469048648013" b="0.0030218963804850758" c="9.5256868045806971e-05" d="-6.1868445625948766e-06" /> - <laneOffset s="770.02950828373093" a="-5.7419130737656392" b="0.0028639844653880887" c="2.7263564302667308e-07" d="-2.7208261790450664e-06" /> - <laneOffset s="779.23393046678382" a="-5.7176503848782199" b="0.0021774668635764255" c="-7.3600828343885658e-05" d="-2.436671708088757e-06" /> - <laneOffset s="782.58773940257174" a="-5.7112673621155654" b="0.0016015573305933897" c="-2.857424963545176e-05" d="-4.0820796430163598e-06" /> - <laneOffset s="789.35385164167712" a="-5.7030036249092158" b="0.00065424798639708852" c="-0.00012035148596211532" d="-2.2195960678990672e-06" /> - <laneOffset s="791.89349684897525" a="-5.7021546673161421" b="-0" c="-5.8083022247578372e-05" d="2.2337015386294866e-07" /> - <laneOffset s="799.47377281657043" a="-5.7053948589940191" b="-0.00084206573704003981" c="-5.3253353318012305e-05" d="-1.5670503023766167e-07" /> - <laneOffset s="809.21013998079536" a="-5.7187864052182471" b="-0.0019236195659484761" c="-5.8778571165790898e-05" d="-2.6983186097360307e-06" /> - <laneOffset s="819.71361516635693" a="-5.7486024669739981" b="-0.0040514378321924631" c="-0.00014371240099162046" d="-2.5454504370046948e-06" /> - <laneOffset s="824.19367565736911" a="-5.76986648124835" b="-0.0054923870959748371" c="-0.0018688943642119781" d="0.00045642747928312482" /> - <laneOffset s="827.98218401750569" a="-5.7926797371344412" b="-0" c="0.011388955258804638" d="-0.0058231082325740117" /> - <laneOffset s="829.28606444286538" a="-5.786225600382787" b="-0" c="-0.072639786587206615" d="0.088547085376197904" /> - <laneSection s="0"> - <left> - <lane id="3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - <successor id="4" /> - </link> - <width sOffset="0" a="2.4931628724514141" b="-0.00010578043338082968" c="9.0710317744997133e-06" d="-1.4575601420548061e-07" /> - <width sOffset="10.119921174893296" a="2.4928703096890499" b="3.3033973084780309e-05" c="3.4986890742479003e-06" d="3.9202505856906805e-08" /> - <width sOffset="20.239842349786592" a="2.493603551303107" b="0.00011589140409382559" c="2.4724823731798377e-06" d="1.5539518334639245e-07" /> - <width sOffset="26.785382731543816" a="2.4945116331279471" b="0.00016823217033394176" c="-7.6055547990292659e-05" d="5.0500290810039394e-06" /> - <width sOffset="30.359763524679888" a="2.494371877884682" b="-0.00018191029440515214" c="-2.6122339547743283e-05" d="4.0136846312479181e-06" /> - <width sOffset="37.020988659436355" a="2.4931873642789153" b="4.3608196984975742e-06" c="-0.00016413913264227449" d="9.9744111383943727e-06" /> - <width sOffset="40.479684699573184" a="2.4916516102874668" b="-0.00077309489384288794" c="-6.606023569528458e-05" d="1.3892461234959692e-05" /> - <width sOffset="42.123446263280066" a="2.4902640365154625" b="-0.0008776591529732064" c="0.0003083431038673933" d="-1.9183145417509342e-05" /> - <width sOffset="50.599605874466477" a="2.4932958547462394" b="0.00021481611143988298" c="-0.0001935350888467352" d="-1.9362733579382639e-05" /> - <width sOffset="51.112613093937576" a="2.493352508903198" b="9.5887185578864137e-07" c="0.000298449875174291" d="-3.5568846162564572e-05" /> - <width sOffset="57.990291318280072" a="2.4959048650612545" b="-0.00094123824232951068" c="0.00014303891224057348" d="-5.8680731865543726e-06" /> - <width sOffset="60.719527049359776" a="2.494282167905026" b="-0.00029159345933122923" c="9.4730334496076111e-05" d="-6.4943300088563548e-06" /> - <width sOffset="70.839448224253076" a="2.4943020789362191" b="-0.00036957407373130091" c="-0.00010315362295263938" d="-6.5039037415461783e-06" /> - <width sOffset="72.124415756590466" a="2.4936430679230055" b="-0.00066688878369696174" c="0.00049295056386313178" d="-9.9365003380814422e-05" /> - <width sOffset="73.123542010307716" a="2.4933697465721809" b="2.0576597687864927e-05" c="0.00057833387157213683" d="-8.9002957082264013e-05" /> - <width sOffset="78.159221456212777" a="2.4967735516303295" b="-0.00092564439776445396" c="3.6766576503128337e-05" d="-1.716774895817623e-07" /> - <width sOffset="80.959369399146368" a="2.4944661215333643" b="-0.00072377897189656974" c="3.1368901863746012e-05" d="-6.3227625586413435e-08" /> - <width sOffset="91.079290574039661" a="2.4902885828939429" b="-0.00010830329887919453" c="2.520297339188855e-05" d="-3.1702447563768573e-07" /> - <width sOffset="98.784500273063486" a="2.4908053641557619" b="0.00022361961785551934" c="-7.2398420818176021e-06" d="-1.0360345711211719e-06" /> - <width sOffset="101.19921174893295" a="2.4912885395794286" b="0.00017053252926419273" c="-1.3772328989209411e-05" d="-1.0135307109026514e-07" /> - <width sOffset="109.74319107291149" a="2.4916769771023404" b="-8.700465467099093e-05" c="0.00011806047511837107" d="-1.3176844828251079e-05" /> - <width sOffset="111.31913292382626" a="2.4917815028216381" b="0.00018693048512308718" c="6.1690778586401745e-05" d="-9.260820617666521e-06" /> - <width sOffset="116.99050130195478" a="2.4931365781740782" b="-6.9340047623587999e-06" c="-9.7034140129012038e-05" d="1.1497052208575521e-05" /> - <width sOffset="121.43905409871955" a="2.492197607975263" b="-0.00018769004419769272" c="6.1292367957376762e-05" d="1.2459814756652865e-05" /> - <width sOffset="126.38564324376526" a="2.494277026120673" b="0.0013333143388797892" c="-0.0015648496533318386" d="0.00034186884147083783" /> - <width sOffset="128.88497375067746" a="2.4931717568876759" b="-8.223056084737633e-05" c="-0.0011534236421230969" d="0.00040574799011100287" /> - <width sOffset="131.32469686459007" a="2.4919978795638054" b="0.0015350398495552137" c="-0.00061660365235770374" d="6.7440068317401938e-05" /> - <width sOffset="131.55897527361284" a="2.492324530310607" b="0.0012572306264464134" c="-0.00056943894854810813" d="6.839461491114278e-05" /> - <width sOffset="133.07440124142806" a="2.4931600715940525" b="2.5534414703958039e-06" c="0.00011920699033900328" d="-1.5871957077274174e-05" /> - <width sOffset="138.43065254723237" a="2.4941547203298984" b="-8.6513474989079729e-05" c="-8.0042296708682299e-05" d="7.8899072217522528e-06" /> - <width sOffset="141.67889644850615" a="2.4932995770244681" b="-0.00035676595255585992" c="-2.4901232863680444e-06" d="8.109501957930272e-06" /> - <width sOffset="146.51606037725495" a="2.4924334165329078" b="0.00018838592664444402" c="-1.5446701281234778e-05" d="3.698123634959705e-07" /> - <width sOffset="151.79881762339943" a="2.4930520554101991" b="5.6145222761863492e-05" c="-1.3292254662162015e-05" d="1.230348163263369e-06" /> - <width sOffset="156.016470074854" a="2.4931447141727183" b="9.6794870637961284e-06" c="-0.00085074390495576153" d="5.0581211183677258e-05" /> - <width sOffset="157.83275974169268" a="2.4906588400450853" b="-0.0025801269303112996" c="0.0014229592347284521" d="-0.00013957281170647956" /> - <width sOffset="161.91873879829274" a="2.4943519735714266" b="0.0020576379091140845" c="-0.00028686239678425512" d="-0.00014020613783618166" /> - <width sOffset="164.91872963615214" a="2.4941575916071606" b="-0.0034490738140672997" c="0.00047579102372892728" d="4.9939284624656801e-05" /> - <width sOffset="169.24112182285262" a="2.4921714565050279" b="0.0034630950756266328" c="-0.0025308764812031845" d="0.00052113551011514461" /> - <width sOffset="171.48492650703085" a="2.4930870239498057" b="-2.3270452584184254e-05" c="-0.00056285731903830342" d="0.00017905679152473359" /> - <width sOffset="172.03865997318604" a="2.4929319559543872" b="-0.0004819087370739987" c="-0.00023277911393749178" d="0.00017350077331171744" /> - <width sOffset="174.42458341193017" a="2.4928135519742973" b="0.0013703324376855954" c="-0.0024538160341916158" d="-0.00030604573422478038" /> - <width sOffset="174.67391768564704" a="2.492997931148194" b="8.961319222504759e-05" c="9.5823780331090984e-05" d="-1.1070586428611106e-05" /> - <width sOffset="181.84358438626828" a="2.4944860958424067" b="-0.00024355895344085508" c="-9.0759614908585492e-05" d="1.1343495494573212e-05" /> - <width sOffset="182.15858114807932" a="2.4944007246630697" b="-0.00029736031745218312" c="-9.4965518132860113e-05" d="9.6952728685560056e-06" /> - <width sOffset="188.85306343049373" a="2.4910628487999262" b="-0.00026533752214168572" c="0.00053521377881483412" d="-6.807637434133281e-05" /> - <width sOffset="192.27850232297263" a="2.4936977699539034" b="0.0010049973725451162" c="-0.0001656688122711056" d="-6.9040158363107678e-05" /> - <width sOffset="194.28854410192582" a="2.4944878277275278" b="-0.00049782731366877938" c="2.384195572958838e-05" d="2.6377723307625738e-06" /> - <width sOffset="199.27670168239808" a="2.4929251996769715" b="-6.3075542860241448e-05" c="-3.5567820588948232e-05" d="-1.7471561647567458e-06" /> - <width sOffset="202.39842349786591" a="2.4923285303825176" b="-0.00033622010724728845" c="-5.4105907694769592e-05" d="-4.9843711894674094e-06" /> - <width sOffset="204.77679566691015" a="2.4911557575480656" b="-0.00067817266962003932" c="0.00011165574034492297" d="-4.2180133621869699e-06" /> - <width sOffset="212.51834467275921" a="2.4906403523612104" b="0.00029222747315777679" c="1.3664937401420765e-05" d="-4.2459557709332278e-06" /> - <width sOffset="221.83301054617255" a="2.4911165174962986" b="-0.0005583794605978085" c="0.00090964354475939853" d="-0.00017452048989878745" /> - <width sOffset="222.63826584765252" a="2.4911655981615088" b="0.00056711495534141933" c="0.00046705620301031866" d="-0.00016818941415791015" /> - <width sOffset="225.06018859915343" a="2.4928893743178864" b="-0.00013018784788897814" c="-1.433253858536409e-05" d="1.5915872334552581e-06" /> - <width sOffset="232.7581870225458" a="2.4917638995942859" b="-6.7903105001760125e-05" c="1.6907157757385039e-05" d="3.5055979974045186e-06" /> - <width sOffset="234.3038462939499" a="2.4917122818286259" b="9.4875843019565087e-06" c="0.00042320438944040987" d="-6.2430146100419357e-05" /> - <width sOffset="238.37169803648104" a="2.4945514901525208" b="0.00035337987799694513" c="-0.00026006497341559754" d="2.5805765306078795e-05" /> - <width sOffset="242.8781081974391" a="2.4932242487986698" b="-0.00041836926004013876" c="0.00012230862343144276" d="6.5395631924816453e-06" /> - <width sOffset="244.36193105744582" a="2.4928941181336568" b="-1.2205534295422517e-05" c="-0.00013123508671602992" d="1.0892665726909732e-05" /> - <width sOffset="252.99802937233241" a="2.4900168660825881" b="0.00015827297189546265" c="0.00013575655772230785" d="2.1064198487815949e-05" /> - <width sOffset="254.58511700573359" a="2.4906942160748127" b="0.0007483605690945601" c="-1.3567903771865737e-05" d="3.3320787358949906e-07" /> - <width sOffset="260.25765198931344" a="2.494563554336279" b="0.00062659729363511102" c="-0.00011759048038537684" d="5.0064103855708324e-06" /> - <width sOffset="263.11795054722569" a="2.4955109206769333" b="7.6786484310747017e-05" c="-7.7945191981921517e-05" d="4.2991863510275493e-06" /> - <width sOffset="273.237871722119" a="2.4927611257488129" b="-0.00017993671838642099" c="5.6154967780079103e-05" d="2.1486686356828851e-07" /> - <width sOffset="275.50616326038886" a="2.4926444099941976" b="7.8131522584435741e-05" c="1.1219866640215472e-06" d="-1.494135840128648e-06" /> - <width sOffset="279.2521584455593" a="2.4928742944066702" b="2.3638142308358111e-05" c="-1.549653107935286e-05" d="3.0849410018150488e-06" /> - <width sOffset="283.3577928970123" a="2.4929236258159038" b="5.2393423064696961e-05" c="-6.9999002838884664e-06" d="1.8907782145885271e-07" /> - <width sOffset="293.47771407190561" a="2.4929329257597419" b="-3.119148520337213e-05" c="-1.2268914848354937e-05" d="-1.1827011033379793e-06" /> - <width sOffset="297.81304327274904" a="2.4924707353121356" b="-0.00020425793781746714" c="0.00010246137769698837" d="-1.5011379507023444e-05" /> - <width sOffset="300.06105325403314" a="2.4923588193084627" b="2.8828241596143972e-05" c="8.5366598869283681e-05" d="-1.1642910865420193e-05" /> - <width sOffset="303.59763524679886" a="2.4930134814214422" b="0.00019577213837568015" c="-7.851284534744757e-05" d="-1.7167848584293559e-05" /> - <width sOffset="304.12709358343989" a="2.4930925773407089" b="9.8195787700357771e-05" c="-4.952876864473173e-05" d="2.4899849517946863e-06" /> - <width sOffset="313.71755642169217" a="2.4916752341253448" b="-0.00016474797322200106" c="2.1627334571785554e-05" d="2.4673857363826876e-06" /> - <width sOffset="319.75659274299016" a="2.4920124886025694" b="0.00036642491983850415" c="-0.00011646807514510652" d="1.1637612129383423e-05" /> - <width sOffset="323.83747759658547" a="2.4923591210024383" b="-2.7355359179881758e-06" c="-1.4346168665711568e-05" d="1.0321111388545762e-05" /> - <width sOffset="324.0041062717371" a="2.4923583146109314" b="-6.6568015311253923e-06" c="-0.0001834734722207575" d="1.7540939830035429e-05" /> - <width sOffset="329.40814951027596" a="2.4897325152569296" b="-0.00045287379953805286" c="0.00013344458807547575" d="-6.4250324355664375e-06" /> - <width sOffset="333.95739877147878" a="2.4898290892250641" b="0.00036236055716219306" c="4.3429733948127799e-05" d="-8.2511579555155287e-06" /> - <width sOffset="340.89688303807782" a="2.4916777269186117" b="-0.00022691875770648349" c="0.00016974474025368435" d="-1.0548131166425755e-05" /> - <width sOffset="344.07731994637209" a="2.4923336839051968" b="0.00053271741377308875" c="5.8280083493775984e-05" d="-1.1226238064020759e-05" /> - <width sOffset="348.58617771846662" a="2.4948914095158647" b="0.00037358915841278296" c="-0.00037810299119518643" d="4.511831515274915e-05" /> - <width sOffset="353.58499354917768" a="2.4929465982483356" b="-2.4274283076235539e-05" c="0.00013443149671943703" d="-2.6972220531254742e-05" /> - <width sOffset="354.19724112126534" a="2.4929759375291565" b="0.00011000505678588962" c="6.9717139969374724e-05" d="-2.8401052342693569e-05" /> - <width sOffset="359.85359148290746" a="2.4906889498143889" b="-0.0018273211204009087" c="0.0022230657611559037" d="-0.00045750397077182919" /> - <width sOffset="362.60316178159553" a="2.4929610898141528" b="2.1252203027654834e-05" c="0.0019104280131498463" d="-0.00051734872137125434" /> - <width sOffset="364.31716229615864" a="2.4960049162827591" b="0.0020106036477363929" c="-0.00074829104047118835" d="-0.00050863443991356662" /> - <width sOffset="365.45464046913662" a="2.4965751783366654" b="-0.0016660258754629255" c="-0.12100371651532958" d="0.21088344374440776" /> - <width sOffset="365.83944095954382" a="2.4900326061104865" b="-0.0011131735124305425" c="0.0011117181664740674" d="-0.00016203999799213278" /> - <width sOffset="369.83922075519422" a="2.4929968422285107" b="3.0186477128842266e-06" c="0.00036491901765639919" d="-4.6620098668868294e-05" /> - <width sOffset="373.96021997488447" a="2.4959438410341948" b="0.00063548432398951985" c="-0.00051298075259857104" d="7.328163391322247e-05" /> - <width sOffset="374.43708347105195" a="2.4961381756335146" b="0.00019623319920947994" c="-0.00041133259760950218" d="7.4259666139124122e-05" /> - <width sOffset="377.98153427882102" a="2.4949728275324037" b="7.9138742441629741e-05" c="-0.00013433538379391561" d="9.2613022831160881e-06" /> - <width sOffset="384.55700464594526" a="2.4923179786053757" b="-0.00048621041159060312" c="5.0524988337960449e-05" d="8.727876461916532e-06" /> - <width sOffset="389.01593408540884" a="2.4919282906355051" b="0.00048494857861487847" c="-0.00021154534054157356" d="2.2504292672614998e-05" /> - <width sOffset="394.67692582083856" a="2.4919768808399816" b="0.00025340928071258752" c="0.00012273139222384151" d="3.3492259875479321e-05" /> - <width sOffset="395.57177110694317" a="2.4923259186008351" b="0.00055351708526883172" c="-0.00018217979431914017" d="1.0258080435341174e-06" /> - <width sOffset="397.07206472130099" a="2.4927497558601512" b="1.3797636391607668e-05" c="3.4110362788899586e-05" d="-1.1738269306536087e-06" /> - <width sOffset="404.79684699573181" a="2.4943507004172023" b="0.00033065316649991583" c="7.2559195706772858e-06" d="-2.0743374140506036e-06" /> - <width sOffset="414.91676817062512" a="2.4962901204492232" b="-0.0001598043019790552" c="-0.00010279117935243533" d="3.4752148325427402e-05" /> - <width sOffset="416.14471036652014" a="2.4960032422346825" b="-0.000255045304657072" c="-2.7103562069707263e-05" d="2.2376867330271087e-06" /> - <width sOffset="423.77925294137697" a="2.4934720687619913" b="-0.00027761286166500031" c="-1.2062212410707532e-05" d="3.8936030474278511e-05" /> - <width sOffset="425.03668934551843" a="2.4931813283835109" b="-0.00012325710887355523" c="0.00023594205206472856" d="-0.00010659758326223561" /> - <width sOffset="426.27833943070476" a="2.4931879828905155" b="-3.0365033076993047e-05" c="-0.00018828988568051627" d="2.3412317259239454e-05" /> - <width sOffset="434.71692753770247" a="2.4935923590735203" b="0.00179339051516203" c="-0.0013395079798704812" d="0.00024008100867085124" /> - <width sOffset="435.15661052041173" a="2.4941423340622877" b="0.00075471097952433536" c="-0.0010412165678070409" d="0.00025541516596851242" /> - <width sOffset="437.46604809251897" a="2.4934780095411169" b="3.2233473268224525e-05" c="-0.00065988898019930483" d="0.00022880891322773814" /> - <width sOffset="439.96816535046185" a="2.4930115969650819" b="0.0010274311743563272" c="-8.1017200871676294e-05" d="6.1434262162819999e-07" /> - <width sOffset="445.27653169530504" a="2.4962745096219243" b="0.00021922743687640398" c="-7.7470219980629038e-05" d="9.0830957335513905e-07" /> - <width sOffset="452.32791374485078" a="2.4942868538986591" b="-0.00073782792489140037" c="9.9000817618553205e-05" d="8.609183772288472e-06" /> - <width sOffset="455.07736977542083" a="2.4931855638709837" b="1.8124579586054068e-06" c="0.00031905518465527398" d="-3.0828014310097639e-05" /> - <width sOffset="455.39645287019835" a="2.4932176249732643" b="0.00019600651707795281" c="0.00029594040547206875" d="-3.1238430632949704e-05" /> - <width sOffset="458.23904966552777" a="2.4954485748379258" b="0.0011212320416157835" c="-0.00047431051856548361" d="3.1228037247096703e-05" /> - <width sOffset="465.5163740450916" a="2.4905243021422909" b="-0.00082073191555918825" c="0.00020834160584340947" d="3.1445958956291146e-05" /> - <width sOffset="468.30954803214183" a="2.4905425644132309" b="0.0010791440136504282" c="0.00015568897339572667" d="-7.4477067655482357e-05" /> - <width sOffset="471.30929674770141" a="2.4931703157532072" b="2.6556374909632915e-06" c="0.00035237752095781212" d="-5.7139405356099696e-05" /> - <width sOffset="475.17185610534608" a="2.4951450534582569" b="0.00016736292208707542" c="1.5611541423929355e-06" d="-1.8439040490015569e-06" /> - <width sOffset="475.6362952199849" a="2.4952229353677495" b="0.0001676198334627085" c="1.0425548970006222e-05" d="-7.3036228842472288e-07" /> - <width sOffset="482.37142253069175" a="2.4966016602644712" b="0.00020866268197711245" c="-0.00020524840099255136" d="1.4017603186781693e-05" /> - <width sOffset="485.75621639487821" a="2.4955000332151296" b="-0.00069899250539251761" c="-6.1889568729271295e-05" d="1.3147049942675773e-05" /> - <width sOffset="491.01056769453169" a="2.4920257743917769" b="-0.0002604721255145331" c="-0.00032017960553995393" d="6.2988212051079455e-05" /> - <width sOffset="495.61402971922729" a="2.4901863725476252" b="0.00079617117215451008" c="3.9439206579821391e-05" d="-1.4776224222451558e-05" /> - <width sOffset="495.87613756977152" a="2.4903974986817508" b="0.00081380042040332234" c="2.4242346267380332e-05" d="-1.5557108460096421e-05" /> - <width sOffset="500.61469543687826" a="2.4931428103593904" b="-4.4067622476260055e-06" c="-0.00023020031376384334" d="3.1935025142991088e-05" /> - <width sOffset="505.99605874466482" a="2.4914294401296249" b="0.00029243618022778189" c="0.00029094611687322794" d="3.4390797441604328e-05" /> - <width sOffset="508.68986994339502" a="2.4950007630052524" b="0.0026086267150907394" c="-0.0028655865378907669" d="0.0006159675237663888" /> - <width sOffset="511.19031048942429" a="2.4932368319751768" b="-0.00016836895994255634" c="-0.0018505552407974515" d="0.0007426559564761827" /> - <width sOffset="513.10603360194625" a="2.4913441421261941" b="0.00091795918712975167" c="0.00013133421704481516" d="-4.0840365133743901e-05" /> - <width sOffset="516.11597991955807" a="2.4941833147333115" b="0.00059856329116572075" c="-0.00023698314261198105" d="-4.0504660842640528e-05" /> - <width sOffset="518.58602733977261" a="2.4936055195543299" b="-0.0013135290305612726" c="0.0011702641664337191" d="0.00017134769057905002" /> - <width sOffset="519.08619216681177" a="2.4932627371488838" b="-1.4283571688094988e-05" c="-2.0181535100550535e-06" d="2.8402507522166091e-07" /> - <width sOffset="526.23590109445138" a="2.493161254951592" b="4.1467714941581741e-07" c="1.2779351602528018e-07" d="4.7356022067902917e-09" /> - <width sOffset="536.35582226934469" a="2.4931834471672016" b="4.4561566771212681e-06" c="-7.8245791484962315e-06" d="1.3891453143609807e-06" /> - <width sOffset="539.80051298004958" a="2.4931627320123768" b="0" c="0.00056472700145839255" d="-0.00013391272512520785" /> - <width sOffset="543.90917572197691" a="2.4934079263648909" b="-0.0021412405591486952" c="0.0039870647754409088" d="0.0007754846822740322" /> - <width sOffset="544.15928670255187" a="2.4931339245222142" b="-1.2906957543127473e-06" c="-0.0003147639027269389" d="4.7673919961396412e-05" /> - <width sOffset="546.47574344423799" a="2.4920345092543243" b="-0.00069211388928711905" c="5.8001104176093061e-06" d="4.4197728489853887e-05" /> - <width sOffset="547.36432582234465" a="2.4914550980687955" b="-0.00057711339005862622" c="7.0641302645330539e-05" d="-2.6087414272838837e-06" /> - <width sOffset="556.5956646191313" a="2.4900952266202663" b="6.0182030039083404e-05" c="-1.0918152839830316e-06" d="-2.7718996882814049e-06" /> - <width sOffset="560.28494235712151" a="2.4901632064710442" b="-6.1057058860836122e-05" c="0.00031211438566701764" d="-3.7023164181396961e-05" /> - <width sOffset="565.78796390982768" a="2.4931091584576106" b="1.0542534524905778e-05" c="0.00044782820263781554" d="-6.1189505734898377e-05" /> - <width sOffset="566.71558579402461" a="2.4934554446097863" b="0.00068341554586650883" c="0.00027427090000199639" d="-6.0061134942206958e-05" /> - <width sOffset="569.66432190069418" a="2.4963155234359293" b="0.0007342178115834026" c="-0.00035699326209938679" d="2.6914556002975194e-05" /> - <width sOffset="576.83550696891791" a="2.4931477112325293" b="-0.00023359627389447565" c="0.00021445050804413441" d="3.2062403930712194e-05" /> - <width sOffset="577.45657979361124" a="2.4930930323453455" b="6.9884924702078022e-05" c="2.2262528262850887e-05" d="-5.5972186276690645e-05" /> - <width sOffset="578.20751656325456" a="2.4931343636215182" b="8.6312664241226106e-06" c="-4.9636437485913799e-05" d="-1.3203091888108053e-05" /> - <width sOffset="582.23335854920811" a="2.4915031527240998" b="-0.0010329891624972654" c="0.00034019072949998633" d="-3.0042148534198621e-05" /> - <width sOffset="586.95542814381122" a="2.4910476480761803" b="0.0001701852480955994" c="-8.5649974978776322e-05" d="-2.973757256683052e-05" /> - <width sOffset="589.70238782806678" a="2.4902524439473948" b="-0.00097354901903604421" c="0.0012362344434115663" d="-0.00020720798541128328" /> - <width sOffset="593.20753609453993" a="2.4931051626698797" b="5.550907332318479e-05" c="0.001392165408985422" d="-0.00028679614417923991" /> - <width sOffset="594.91633351675512" a="2.4958341057542488" b="0.0023010419571262331" c="-0.0017836832258617359" d="0.00025998022003763117" /> - <width sOffset="597.07534931870441" a="2.4951041431293124" b="-0.001765382785633646" c="-0.00011312317523190507" d="0.00026511220921229128" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="2" /> - </link> - <width sOffset="0" a="3.7089786428962261" b="0.0062787185656241959" c="-0.00027818012140349711" d="1.6230129818068966e-05" /> - <width sOffset="2.7519023404113181" a="3.7244886514214146" b="0.0051164001991101478" c="-1.81101849394935e-05" d="-1.4997629706507442e-05" /> - <width sOffset="10.119921174893296" a="3.7552042801266357" b="0.0024069672954696725" c="-0.00035117163824835516" d="-1.4762929835694369e-05" /> - <width sOffset="14.377115840753714" a="3.7579476260077382" b="-0.0013857217736928009" c="-0.00027489947952169362" d="3.5314763503017497e-05" /> - <width sOffset="18.998283687442715" a="3.749158512066975" b="-0.0016639743519266117" c="0.00061038587223415672" d="-3.7375448011685185e-05" /> - <width sOffset="20.239842349786592" a="3.7479619505464141" b="-0.00032115377926315446" c="0.00047470956841243618" d="-3.8001098462829427e-05" /> - <width sOffset="26.785382731543816" a="3.7555413855405599" b="0.0010089390587165602" c="-0.0001899241384994728" d="-4.2895732360506693e-05" /> - <width sOffset="30.359763524679888" a="3.7547622902464912" b="-0.0019929164438658997" c="-0.00064204194818189876" d="-4.1198783782161705e-05" /> - <width sOffset="30.460500601070677" a="3.7545549721388465" b="-0.0021235255520776022" c="-0.00012898859076908095" d="-3.1899733373942186e-07" /> - <width sOffset="40.479684699573184" a="3.7200097447886669" b="-0.0048043131600208223" c="-0.00012731690370692923" d="-5.3920818592457623e-06" /> - <width sOffset="42.123446263280066" a="3.7117446471001334" b="-0.0052665778658262385" c="-0.00045980245258533004" d="2.7683524793216695e-05" /> - <width sOffset="43.290019071586357" a="3.7050190088389559" b="-0.0062263410705914249" c="-0.00045070955151622585" d="2.5699240002731457e-05" /> - <width sOffset="50.599605874466477" a="3.6454624710228996" b="-0.0086960065035353497" c="0.00012626806705341414" d="2.5845441001568411e-05" /> - <width sOffset="57.990291318280072" a="3.5985237600781845" b="-0.002594384401561357" c="0.00012083236763309153" d="-3.8553319744420583e-06" /> - <width sOffset="60.719527049359776" a="3.5922647445398832" b="-0.0020209763250638156" c="9.1824106043278386e-05" d="-2.6713118222117829e-06" /> - <width sOffset="65.416524520914152" a="3.5845212151433867" b="-0.0013351828604923335" c="6.4877522235327149e-05" d="-6.705785280146874e-06" /> - <width sOffset="70.839448224253076" a="3.5781191206277478" b="-0.0012231443965154162" c="-4.4919855602596329e-05" d="-7.3790559692183423e-06" /> - <width sOffset="72.124415756590466" a="3.5764575948782467" b="-0.001375137106465038" c="-0.00069454149986692597" d="8.54820436718259e-05" /> - <width sOffset="78.159221456212777" a="3.5616518035874849" b="-0.00041850228162343292" c="5.0057283488249374e-05" d="-3.3492359208747071e-06" /> - <width sOffset="80.959369399146368" a="3.5607988917779969" b="-0.00021694903625341653" c="1.7474907276971253e-05" d="-2.7830411728937656e-06" /> - <width sOffset="87.455658477374811" a="3.5593640157722608" b="-0.00034225274304497811" c="-0.0072907783853579577" d="0.0010719614316970075" /> - <width sOffset="91.079290574039661" a="3.5133955717268535" b="-0.010953607180820835" c="0.0043571208770546571" d="0.0010715584978562515" /> - <width sOffset="92.536107442156421" a="3.5099984278983811" b="0.0085640024643636771" c="-0.00011596136871580639" d="-9.4613152605229448e-06" /> - <width sOffset="98.784500273063486" a="3.5566741579208112" b="0.0060066803615689817" c="-0.00026820081676984519" d="-8.7423051650605799e-06" /> - <width sOffset="101.19921174893295" a="3.5694916344514933" b="0.0045585004560618351" c="-0.00034040837167056466" d="-9.3834870513015486e-06" /> - <width sOffset="104.55480344384314" a="3.5806005587631708" b="0.0019569833769734661" c="-0.00050341734337906046" d="1.9778566646164221e-05" /> - <width sOffset="109.74319107291149" a="3.579964906247147" b="-0.0016695858215666874" c="-0.00032999141159480258" d="3.2854058402731132e-05" /> - <width sOffset="111.31913292382626" a="3.5766427625197417" b="-0.002464892072950801" c="-0.00018413040868417083" d="2.8029479630711194e-05" /> - <width sOffset="121.43905409871955" a="3.5618909567154455" b="0.002420070343685899" c="0.00067014187605105426" d="2.7882749125023226e-05" /> - <width sOffset="121.74398818584089" a="3.5626920222571026" b="0.0028365465614591909" c="0.00020017625328923983" d="7.4824679491041965e-06" /> - <width sOffset="126.38564324376526" a="3.5809193614792663" b="0.0051784732542054955" c="0.0021154121334576331" d="-0.00032192655876508937" /> - <width sOffset="131.32469686459007" a="3.6193128480448808" b="0.0025152696538442657" c="-0.00022170721374029166" d="1.6381362947084575e-05" /> - <width sOffset="131.55897527361284" a="3.6198901633557341" b="0.0024140845680232447" c="-0.00021020737419920929" d="1.6376147853108907e-05" /> - <width sOffset="138.43065254723237" a="3.6318667285290314" b="0.0018449726733095486" c="7.1594149481469418e-05" d="-7.3857164459196776e-06" /> - <width sOffset="141.67889644850615" a="3.6383619189352143" b="0.0020763011498599977" c="-2.4702014489414532e-06" d="-7.6644758257904409e-06" /> - <width sOffset="144.27693991753924" a="3.6436051591964356" b="0.0019082640448455314" c="0.0001144156742192845" d="-1.6073412831466027e-05" /> - <width sOffset="146.51606037725495" a="3.648271190419718" b="0.0021788850971424744" c="0.00013708230068206623" d="-8.3337232370161722e-06" /> - <width sOffset="151.79881762339943" a="3.6623787092911582" b="0.0029295093848539303" c="6.5838672384266282e-07" d="-8.0233008483409896e-06" /> - <width sOffset="157.83275974169268" a="3.6783165591162659" b="0.0020611066960953615" c="-0.0021426707580823232" d="0.00018213072204196758" /> - <width sOffset="159.27258753427179" a="3.6773858626810894" b="-0.0029763192949123535" c="-0.0011881892673065071" d="0.00018762140822504907" /> - <width sOffset="161.91873879829274" a="3.6646666051089145" b="-0.0053233354764135122" c="0.00029091949166836666" d="0.00018766751318170035" /> - <width sOffset="164.91872963615214" a="3.6563818833164645" b="0.0014891680488098588" c="-4.4582855278605758e-05" d="-2.4779092791315217e-06" /> - <width sOffset="169.24112182285262" a="3.6617856018752177" b="0.00096487398928984036" c="0.0035775246835440832" d="-0.00047367413476978289" /> - <width sOffset="172.03865997318604" a="3.6821126761344911" b="0.0098601640228365515" c="-0.00042870238298659284" d="-0.00046879184341393486" /> - <width sOffset="173.70169187069925" a="3.6951686279478295" b="0.0045446947737494484" c="-0.002714461322589734" d="-0.00046299632349748891" /> - <width sOffset="174.42458341193017" a="3.696860544501074" b="-0.0001056744792835638" c="-0.00025563409494250717" d="1.6550184022546783e-05" /> - <width sOffset="181.84358438626828" a="3.6887643677135507" b="-0.0011659290700643679" c="6.118954985510066e-05" d="-5.8638978916736639e-06" /> - <width sOffset="182.15858114807932" a="3.6884029919646268" b="-0.001129125549859448" c="5.6073884686612254e-05" d="-5.8201490174997272e-06" /> - <width sOffset="188.85306343049373" a="3.6816109291536208" b="-0.0011608633142200489" c="-0.00049627956837245205" d="7.1951498192445769e-05" /> - <width sOffset="192.27850232297263" a="3.6747032360938792" b="-0.0020280568644193658" c="0.00024370475955487529" d="7.3289137631485943e-05" /> - <width sOffset="194.28854410192582" a="3.6722065785531472" b="-0.00016002010528961728" c="7.9815869096190584e-05" d="1.6112069376057408e-06" /> - <width sOffset="195.39813795654356" a="3.6721294915264222" b="2.3057437212250263e-05" c="0.00029696930195921437" d="-6.9354417954642001e-06" /> - <width sOffset="202.39842349786591" a="3.6844644354891387" b="0.0031612041381070023" c="0.00014340551514401841" d="-5.3366588999447833e-06" /> - <width sOffset="204.77679566691015" a="3.6927223534095792" b="0.0037527846087867397" c="-9.5997885057242782e-05" d="-6.1030167272222962e-06" /> - <width sOffset="210.32262953259135" a="3.7095411496278072" b="0.0021248898141948704" c="-1.0896765863562414e-05" d="-4.9416059429161424e-06" /> - <width sOffset="212.51834467275921" a="3.7141019558873545" b="0.0020055645341207863" c="-4.374470846620605e-05" d="-5.120527005600725e-06" /> - <width sOffset="221.83301054617255" a="3.7248494493513777" b="-0.00014218701094577228" c="-0.0012014602882429372" d="0.00016515400712089354" /> - <width sOffset="222.63826584765252" a="3.7240421185388217" b="-0.0017558760830875611" c="-0.00080234305671045704" d="0.00016513048193939723" /> - <width sOffset="225.06018859915343" a="3.7174291032760185" b="-0.0027364794245727572" c="-0.0002605538440286334" d="6.2707081344885288e-06" /> - <width sOffset="228.8814602179153" a="3.7035175315327562" b="-0.0044530766057634015" c="0.00019689371903754016" d="-5.774652679743074e-06" /> - <width sOffset="232.7581870225458" a="3.6888768371876166" b="-0.0031868322402961568" c="0.00012863938136051305" d="-9.1412036333151723e-06" /> - <width sOffset="234.3038462939499" a="3.684224652411781" b="-0.0028546836580597389" c="-0.00030379002862586634" d="5.6794540464508351e-05" /> - <width sOffset="238.37169803648104" a="3.6714082612216754" b="-0.0025068202833364297" c="0.00031070490961163707" d="-3.1441370942011414e-05" /> - <width sOffset="242.8781081974391" a="3.6635438568384964" b="-0.0016220016150989098" c="-0.00010079924520514622" d="-3.0263052408929096e-05" /> - <width sOffset="245.95352554194687" a="3.6567218580837824" b="-0.0031007023754393796" c="-0.00041093053550891087" d="0.00011304474459250037" /> - <width sOffset="248.51165737139968" a="3.6479931344403491" b="-0.0029838238727206922" c="0.00024405863118150305" d="-1.6126280565897878e-05" /> - <width sOffset="252.99802937233241" a="3.6380626921479431" b="-0.0017676950218082038" c="5.514119455922134e-05" d="-2.610017283971145e-05" /> - <width sOffset="254.58511700573359" a="3.6352917586157685" b="-0.0017898942442504243" c="0.00018048805820528393" d="-5.3691822254829981e-06" /> - <width sOffset="260.25765198931344" a="3.6299661723036465" b="-0.00026054764556529076" c="0.00019881041275635487" d="-1.0042384737415974e-05" /> - <width sOffset="263.11795054722569" a="3.6306124557627086" b="0.00063028710528022528" c="0.00011338792071656979" d="-8.4228445296348742e-06" /> - <width sOffset="273.237871722119" a="3.6398737703831316" b="0.00033741935233673167" c="-0.00016429466343484238" d="-3.7578984573544552e-06" /> - <width sOffset="275.50616326038886" a="3.6397499584554209" b="-0.0004659218516836496" c="-0.00013337156807075818" d="-2.0488957536230911e-06" /> - <width sOffset="283.3577928970123" a="3.6268778671684898" b="-0.0029392216816417674" c="-0.00020454727727906808" d="-9.3582484444731717e-07" /> - <width sOffset="285.6478013263573" a="3.6190631120338232" b="-0.0038907744455660524" c="-5.3513253940614468e-05" d="1.5226570706490925e-06" /> - <width sOffset="293.47771407190561" a="3.5860488470898106" b="-0.0044487316151632737" c="-4.7641730294949731e-05" d="2.7414803057567938e-06" /> - <width sOffset="297.81304327274904" a="3.5660900845590375" b="-0.0047072377651444933" c="-0.00014209855985840541" d="1.6570158709422695e-05" /> - <width sOffset="303.59763524679886" a="3.537313142153268" b="-0.0046878148318750734" c="0.00014499641366183226" d="1.6566113765089475e-05" /> - <width sOffset="304.12709358343989" a="3.5348742445527228" b="-0.0045203439681930817" c="0.00011505655641420221" d="-3.0917197641753643e-06" /> - <width sOffset="313.71755642169217" a="3.4993773964843418" b="-0.0031665538281291242" c="2.9643707605919115e-05" d="-4.3632369560140665e-06" /> - <width sOffset="319.75659274299016" a="3.4803745935332882" b="-0.0032858962019800425" c="0.00013339177419763551" d="-1.3533463349036217e-05" /> - <width sOffset="323.83747759658547" a="3.4682669309582428" b="-0.0028733267760874472" c="1.1002344931613458e-05" d="-1.3454286258016108e-05" /> - <width sOffset="325.26409124086035" a="3.4641511317625171" b="-0.0029240821446809163" c="-0.00012556226864149573" d="-8.1009650903303736e-06" /> - <width sOffset="329.40814951027596" a="3.44930073671628" b="-0.0043821158014326188" c="-0.00025881695119791989" d="1.5865007175265852e-05" /> - <width sOffset="333.95739877147878" a="3.4255026962891852" b="-0.0057519506455237131" c="-1.3078802024266738e-05" d="1.8342378399385293e-05" /> - <width sOffset="340.89688303807782" a="3.3910869686988501" b="-0.0032835598889270736" c="7.0689788173679724e-05" d="2.0639351610255218e-05" /> - <width sOffset="343.51052413570164" a="3.3833563089904137" b="-0.002491074768282316" c="0.00019814590635542224" d="1.1067666011741682e-05" /> - <width sOffset="344.07731994637209" a="3.3820100493869414" b="-0.0022557915171881071" c="0.00025249508797469143" d="1.1173426752744712e-05" /> - <width sOffset="348.58617771846662" a="3.3779963833946733" b="0.00070259790273555006" c="0.00068816380658972816" d="-4.5171126464018116e-05" /> - <width sOffset="354.19724112126534" a="3.3956249948027111" b="0.004158751760957943" c="-5.6659948970875216e-05" d="-4.3754611611442191e-05" /> - <width sOffset="357.2437376593424" a="3.4065315885751031" b="0.0025952449043402052" c="-0.0046602360226648317" d="0.00087551012434193424" /> - <width sOffset="359.85359148290746" a="3.397125948355662" b="-0.0038396412407206704" c="-0.00044066321516840002" d="0.0013046130427709817" /> - <width sOffset="360.39018610157837" a="3.3951403032684557" b="-0.0031856297472709284" c="-0.0024001047565639392" d="0.00038261808600897527" /> - <width sOffset="364.31716229615864" a="3.3687888159016164" b="-0.0043347146883342368" c="0.0021196211732338118" d="0.00037668494957509744" /> - <width sOffset="365.45464046913662" a="3.3671550382992765" b="0.0019494598683454105" c="0.12192477765250535" d="-0.21101539323474619" /> - <width sOffset="365.83944095954382" a="3.3739355406810292" b="0.0020468432156876925" c="-0.00034297971507204952" d="3.0090507653697147e-05" /> - <width sOffset="373.96021997488447" a="3.384053714707008" b="0.0024294590722223038" c="0.00069163097380691612" d="-8.9811224916480688e-05" /> - <width sOffset="374.43708347105195" a="3.3853597721371793" b="0.0030278173079818058" c="0.00056289888746785229" d="-8.964811659623319e-05" /> - <width sOffset="375.63946776359012" a="3.3896583336145301" b="0.0039926384957193395" c="0.00087973492352824722" d="-0.00024692592206427037" /> - <width sOffset="377.98153427882102" a="3.4006627192756556" b="0.0040500637314703474" c="-0.00034258389082062374" d="-0.0001819275582082887" /> - <width sOffset="378.77292442013265" a="3.4035631683277439" b="0.0031660059122123455" c="0.0002149087850838034" d="-1.5507507030141975e-05" /> - <width sOffset="384.55700464594526" a="3.4260646451358729" b="0.0040956671055649534" c="-7.0517980524516401e-05" d="-1.5003215398834967e-05" /> - <width sOffset="389.01593408540884" a="3.4415948185879066" b="0.0025719135920676023" c="0.00010760846776957259" d="-2.8779631609525139e-05" /> - <width sOffset="394.67692582083856" a="3.4543818007757054" b="0.0010233672225314974" c="-0.00038180625475830207" d="-2.8729007611603709e-05" /> - <width sOffset="395.57177110694317" a="3.4549712398375574" b="0.00027103807440213867" c="-6.4107946711100465e-05" d="3.737444220263835e-06" /> - <width sOffset="399.95619360287316" a="3.4552422288964575" b="-7.557810135909481e-05" c="0.0005398465436351849" d="-1.9701708270223022e-05" /> - <width sOffset="404.79684699573181" a="3.4652913427867373" b="0.0037658950371569936" c="0.00025607041254876176" d="-2.0656690217019783e-05" /> - <width sOffset="412.98713879546108" a="3.5019635175225559" b="0.0038034709789053697" c="0.00031076644504559323" d="-5.643560430758816e-05" /> - <width sOffset="414.91676817062512" a="3.510054451152536" b="0.0043723903428797622" c="6.5709534180299146e-05" d="-9.2919820359625563e-05" /> - <width sOffset="416.14471036652014" a="3.5153505283192512" b="0.0041134401287891732" c="-0.00022425769988573566" d="-6.0405358767228791e-05" /> - <width sOffset="417.70795186502301" a="3.521002048342758" b="0.0029694601714501112" c="-0.00019355782815972598" d="3.3409981554477959e-06" /> - <width sOffset="423.77925294137697" a="3.5326435486238248" b="0.00098861903021320785" c="-9.649541683094639e-05" d="-3.335734558579092e-05" /> - <width sOffset="425.03668934551843" a="3.5336677800379648" b="0.00058771679860027191" c="-0.00011675808753525568" d="1.2379222886207042e-05" /> - <width sOffset="433.05405432187627" a="3.5372542523168962" b="0.001102672703722456" c="0.00012599484617819098" d="3.5344774086730884e-06" /> - <width sOffset="434.71692753770247" a="3.5394525033777144" b="0.0015510196661333731" c="0.0018875458097564644" d="-0.00021313421400398513" /> - <width sOffset="435.15661052041173" a="3.5404812464006228" b="0.0030872531711380012" c="0.0016076767159639233" d="-0.00021241386319529663" /> - <width sOffset="439.96816535046185" a="3.5688938230082772" b="0.0038052843066762533" c="-0.00031979771997019287" d="1.5780707410796016e-05" /> - <width sOffset="445.27653169530504" a="3.5824426929642108" b="0.0017441193797498701" c="-9.1523221933266887e-05" d="1.3275658475466911e-05" /> - <width sOffset="452.32791374485078" a="3.5948449903163096" b="0.0024336653976700694" c="3.2055473540009224e-05" d="5.5747842766183583e-06" /> - <width sOffset="453.02277807678939" a="3.5965534055203152" b="0.0024862889350611549" c="-0.00011127377392684091" d="1.3775244558857407e-05" /> - <width sOffset="455.39645287019835" a="3.6020123246178786" b="0.0021908763350908028" c="-1.9912148590578422e-05" d="1.4115923728753293e-05" /> - <width sOffset="458.23904966552777" a="3.6084034368201792" b="0.0024198570054408263" c="0.00060432162568528191" d="-4.8350544151289291e-05" /> - <width sOffset="465.5163740450916" a="3.639383612713142" b="0.0035336913102873148" c="-0.00044952417710844578" d="-4.9162692666965792e-05" /> - <width sOffset="468.30954803214183" a="3.6446753745370404" b="-0.00012818273849391241" c="-0.00054532930386919564" d="5.6760333944827871e-05" /> - <width sOffset="472.62472634471413" a="3.6385285965741594" b="-0.0016638067824401195" c="2.9889772021490699e-05" d="5.2883807989265638e-05" /> - <width sOffset="475.17185610534608" a="3.6353585143141478" b="-0.00048223070993744276" c="0.00012269886782685302" d="-2.4116933036545799e-06" /> - <width sOffset="475.6362952199849" a="3.6351607725024651" b="-0.00036981903629877862" c="0.00011987603535151164" d="-2.3210977871850346e-06" /> - <width sOffset="482.37142253069175" a="3.6373986655455477" b="0.00092907318797855187" c="0.00027389406903527593" d="-1.7069063262350025e-05" /> - <width sOffset="485.75621639487821" a="3.643019423112265" b="0.0021965510738744818" c="9.5910320615311096e-05" d="-1.5490962180460838e-05" /> - <width sOffset="488.88475683068953" a="3.6503558144206139" b="0.0023418040020355036" c="-9.0443695407572226e-05" d="-1.7953640056788175e-05" /> - <width sOffset="491.01056769453169" a="3.6547528501630238" b="0.0017138702544914875" c="0.00026058586902707738" d="-6.779480216519219e-05" /> - <width sOffset="495.61402971922729" a="3.6615511014322779" b="-0.0001970298410742101" c="-0.0001654138083129379" d="9.9696341289886504e-06" /> - <width sOffset="495.87613756977152" a="3.6614882738712886" b="-0.00028168759926333218" c="-0.00015780091881666762" d="9.9385576794283788e-06" /> - <width sOffset="505.99605874466482" a="3.6527771986002957" b="-0.00042204662229235765" c="0.00016036974185463756" d="6.338654196651156e-06" /> - <width sOffset="508.68986994339502" a="3.6529279345268861" b="0.00057995658194407275" c="0.0036460547554428187" d="-0.000575238072128162" /> - <width sOffset="513.10603360194625" a="3.6770532146769295" b="-0.00087263842494999491" c="-0.0016887015684213733" d="0.00020825824948181627" /> - <width sOffset="516.11597991955807" a="3.6648064467516428" b="-0.0053781207667799704" c="0.00019468238254316327" d="0.00021132855939669408" /> - <width sOffset="518.58602733977261" a="3.6558947573868323" b="-0.00054833959289980435" c="5.3264463313838518e-05" d="-5.2379202222361218e-07" /> - <width sOffset="526.23590109445138" a="3.6545826068254224" b="0.00017463542633323534" c="3.6008663331371573e-05" d="-6.5754719531838089e-07" /> - <width sOffset="527.81692844382667" a="3.6549461205413927" b="0.00028356588084769058" c="3.4134849417090588e-05" d="-7.9377332263586004e-07" /> - <width sOffset="536.35582226934469" a="3.6593621253856505" b="0.00069288510378189754" c="2.0839147008571279e-06" d="1.1826723089505582e-06" /> - <width sOffset="539.80051298004958" a="3.6618219687217057" b="0.00074934238009750822" c="-0.0052845123819758501" d="0.0008625588820470215" /> - <width sOffset="543.22090715272293" a="3.6370767386793772" b="-0.0051274100660638859" c="0.0036158829791113865" d="0.00086338710374091524" /> - <width sOffset="543.90917572197691" a="3.6355420971460184" b="0.0010769818431707928" c="0.0003256651517283611" d="-4.6010303601558791e-05" /> - <width sOffset="546.47574344423799" a="3.6396736070104252" b="0.0018394183162735024" c="-2.8832319890059657e-05" d="-4.6065627548333638e-05" /> - <width sOffset="547.36432582234465" a="3.6412529964228377" b="0.0016790612265018055" c="-9.8652858681770887e-05" d="7.4084236817846701e-07" /> - <width sOffset="556.5956646191313" a="3.6489288184932702" b="4.7063764277948186e-05" c="-7.8986537177001793e-05" d="1.0865897734685036e-06" /> - <width sOffset="560.28494235712151" a="3.6480819441052939" b="-0.00049137481092124003" c="-0.00041084546717895656" d="3.5337854266570484e-05" /> - <width sOffset="562.02562284681278" a="3.6461681478715922" b="-0.001600458425935156" c="4.5903458674706964e-05" d="1.6187597754282913e-05" /> - <width sOffset="566.71558579402461" a="3.6413416389385937" b="-0.0001017122065615399" c="0.0002769828154673294" d="1.5039917954726866e-05" /> - <width sOffset="569.66432190069418" a="3.6438357087766486" b="0.0019241045246280513" c="0.00050997991327712984" d="-7.1935772990453908e-05" /> - <width sOffset="577.45657979361124" a="3.6557587280288404" b="-0.0032317711555879466" c="-0.00091971912821647806" d="1.6098817215448318e-05" /> - <width sOffset="577.67887458295468" a="3.6549950510849092" b="-0.003638282127439735" c="-0.0013482034046731928" d="0.00017797604893288581" /> - <width sOffset="582.23335854920811" a="3.6272726448510277" b="-0.0048435790591635913" c="0.00053427592706431926" d="0.00019481510557878954" /> - <width sOffset="582.7413221758834" a="3.6249756746005071" b="-0.0041499908854093753" c="0.00036358872911993368" d="3.5247514236567333e-05" /> - <width sOffset="586.95542814381122" a="3.6165818505912539" b="0.00079226092267172324" c="0.00080502119982689521" d="3.4444787911764069e-05" /> - <width sOffset="589.70238782806678" a="3.6255466489883039" b="0.0059947216353726327" c="-0.00047807162623037349" d="0.00021191520075621858" /> - <width sOffset="594.91633351675512" a="3.6738436653386302" b="0.018292332839648932" c="0.0045422905150434446" d="-0.00033486116346034979" /> - <width sOffset="597.07534931870441" a="3.7311402852147442" b="0.033223372355255659" c="0.0023533052081103254" d="-0.00032691458804337607" /> - <roadMark sOffset="0" color="standard" width="0.30015685778938728" weight="bold" type="solid"> - <type name="solid"> - <line length="598.83888561202775" space="0" width="0.30015700000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.9453453415765947" b="-0.0080028244762301894" c="0.00048352658689918265" d="-6.3582486956893444e-05" /> - <width sOffset="2.457955920830897" a="3.9276518096840145" b="-0.0067782602108081421" c="0.00017899875048426429" d="-1.9141432889753556e-05" /> - <width sOffset="2.7519023404113181" a="3.9256743445014517" b="-0.0066779898448544629" c="3.6040343726968181e-05" d="1.2086326637880869e-05" /> - <width sOffset="10.119921174893296" a="3.8832617806957659" b="-0.0041784813022030234" c="0.00030096499035992452" d="1.2474353528964474e-05" /> - <width sOffset="14.377115840753714" a="3.8718902465595235" b="-0.00093770363553289564" c="0.00019546408709706338" d="-3.7603339809747776e-05" /> - <width sOffset="18.998283687442715" a="3.8680202133506181" b="-0.0015402385811683808" c="-0.00072154895038732474" d="3.5086871704208635e-05" /> - <width sOffset="19.740416978935276" a="3.8664940907696321" b="-0.0025532360480175036" c="-0.00095642306146212172" d="9.4838003387459884e-05" /> - <width sOffset="20.239842349786592" a="3.864992197341742" b="-0.0034375948258971584" c="-0.00081458994895024001" d="9.4604130752239037e-05" /> - <width sOffset="25.940594749121413" a="3.8364492670876005" b="-0.0035016468938039429" c="0.00014604447327110358" d="3.6053882101860558e-05" /> - <width sOffset="30.359763524679888" a="3.8269385372959488" b="-9.8562054321479629e-05" c="0.00063028880876907797" d="3.7312989521562404e-05" /> - <width sOffset="30.460500601070677" a="3.8269350427316269" b="2.9560801447913766e-05" c="0.00011606112071579219" d="-3.5667968268281983e-06" /> - <width sOffset="37.831721412823981" a="3.8320305569676747" b="0.0011591804917073381" c="0.0049264296343852773" d="-0.00057191404737331206" /> - <width sOffset="40.479684699573184" a="3.8590241332950512" b="0.015218904510843899" c="0.00039328547901137359" d="-0.00057616421943723867" /> - <width sOffset="42.653471949611045" a="3.8880469000903339" b="0.0087610079046323164" c="-0.0012696758784401701" d="0.00013925074720825693" /> - <width sOffset="43.290019071586357" a="3.8931451477494972" b="0.007313860818027788" c="-0.00091596525061866279" d="0.00014123503199878489" /> - <width sOffset="47.301577334049462" a="3.9168624898317104" b="0.0067834813773420127" c="-0.00034803397246603704" d="5.7495577899529965e-05" /> - <width sOffset="50.599605874466477" a="3.937511559838681" b="0.0063639662951406701" c="0.00025296493889423016" d="6.0302506779559438e-05" /> - <width sOffset="55.055479990715078" a="3.9762261604619411" b="0.012210211335042572" c="0.0014366350624629913" d="-9.4372409924138562e-05" /> - <width sOffset="60.719527049359776" a="4.0743261989975501" b="0.019401743205831722" c="-0.00016773437297768986" d="-9.299410906817986e-05" /> - <width sOffset="64.356619854353966" a="4.1381990419504682" b="0.014491110131076092" c="-0.00075385189650762404" d="0.00013072051234025829" /> - <width sOffset="65.416524520914152" a="4.152867009781402" b="0.01333364129308004" c="-0.00034889290418952296" d="0.00013475498579816481" /> - <width sOffset="67.528686867124506" a="4.1807431083250028" b="0.013663323248524817" c="0.0017336716219385013" d="-0.00087572914200418706" /> - <width sOffset="69.414790256920725" a="4.2068050974573437" b="0.010857171333594319" c="-0.00028781721649790489" d="-0.00054232482665278069" /> - <width sOffset="70.839448224253076" a="4.2201205213712001" b="0.0067348998721584417" c="-0.0026058909961638749" d="-0.00054235284292655946" /> - <width sOffset="71.769116810952909" a="4.223693738061379" b="0.00048342973855267167" c="-0.0038587545477348764" d="0.00035440209609446444" /> - <width sOffset="78.487002181449611" a="4.160242772550701" b="-0.0033794290899256123" c="0.0014542022299497237" d="-0.00025300553472166793" /> - <width sOffset="80.959369399146368" a="4.1569529697392884" b="-0.00082834988336933767" c="-0.00043863623512449562" d="-0.00024154475374456164" /> - <width sOffset="81.964354221812258" a="4.155432295533398" b="-0.0024418720151685681" c="-0.00068181415880472164" d="4.9438234872366669e-05" /> - <width sOffset="87.455658477374811" a="4.1296498555304915" b="-0.005457625743479513" c="0.0073866419825293949" d="-0.0010253062379975226" /> - <width sOffset="90.067606828618338" a="4.1475181454104781" b="0.012144668099839769" c="-0.00071917972806444014" d="-0.0010810396212098921" /> - <width sOffset="91.079290574039661" a="4.1579492495532522" b="0.0073701580861708282" c="-0.0040289406062503407" d="-0.0010985514324258466" /> - <width sOffset="92.536107442156421" a="4.1567390089070875" b="-0.011363117011582567" c="0.00032617035231723612" d="-1.7531619309070564e-05" /> - <width sOffset="101.19921174893295" a="4.0713796547909515" b="-0.009659032724125825" c="-0.00014801975213513319" d="-1.1163904517759774e-05" /> - <width sOffset="103.02544165767443" a="4.0531783814850924" b="-0.010311367660000001" c="-6.6257261270236199e-05" d="4.5799087176280151e-05" /> - <width sOffset="104.55480344384314" a="4.0374174253410136" b="-0.010192665329236603" c="0.00021242037808879584" d="1.6637033478822545e-05" /> - <width sOffset="107.76885264707556" a="4.0074043981036125" b="-0.008311618963776031" c="7.2033336948108026e-05" d="-6.7518825141135282e-07" /> - <width sOffset="111.31913292382626" a="3.9787735503889912" b="-0.0078256731036828106" c="5.7667730654428672e-05" d="-3.2255601522350012e-06" /> - <width sOffset="113.99770718703763" a="3.9581636667262425" b="-0.0075861663660678497" c="-0.00017738582691681685" d="-6.6253791042847688e-06" /> - <width sOffset="121.35438506901221" a="3.8901165520226231" b="-0.011271817797656094" c="-0.00021254314052159625" d="-4.1247762840989277e-05" /> - <width sOffset="121.74398818584089" a="3.8856903153141551" b="-0.011456215804277662" c="0.00023471891329896008" d="-2.084748166081986e-05" /> - <width sOffset="131.4990663054981" a="3.776917359373495" b="-0.012828449083814624" c="-0.00069887622170366321" d="0.00010962777061916946" /> - <width sOffset="131.55897527361284" a="3.776146335472566" b="-0.012911006600396097" c="-0.00067915960248229629" d="0.00010963298552928466" /> - <width sOffset="136.37848494279717" a="3.7104192907015427" b="-0.011817881580445585" c="0.00038535759695811474" d="-3.3681131329101337e-06" /> - <width sOffset="140.80430598058902" a="3.6653718145559417" b="-0.0086047567685101668" c="0.00018394940532844394" d="1.8609763705868997e-08" /> - <width sOffset="141.67889644850615" a="3.6579868932182835" b="-0.0082829532712528318" c="0.00018388465506978617" d="3.7381629386162705e-08" /> - <width sOffset="144.27693991753924" a="3.6377092662418584" b="-0.0073267156580182867" c="7.5522126078924983e-06" d="8.4463186350380765e-06" /> - <width sOffset="151.79881762339943" a="3.586620465400217" b="-0.0057794582476176828" c="0.00019450427360716147" d="8.7762475731917111e-06" /> - <width sOffset="158.12237248476177" a="3.5600706348709785" b="-0.0022667248106670894" c="0.0011767848732804865" d="-4.3510470783859245e-05" /> - <width sOffset="159.27258753427179" a="3.5589540828663928" b="0.00026769417037979422" c="0.00085887481401979941" d="-4.900115696696374e-05" /> - <width sOffset="161.91873879829274" a="3.5647684579002186" b="0.0037837840889586097" c="0.00046212754256872584" d="-5.0069021057328418e-05" /> - <width sOffset="170.0701750589788" a="3.5991993541405405" b="0.0013371450357337344" c="-3.0044276395336251e-05" d="8.9345730642371511e-06" /> - <width sOffset="172.03865997318604" a="3.6017832350794623" b="0.0013227242382498686" c="5.1898255319335779e-06" d="6.8478492400024299e-06" /> - <width sOffset="173.70169187069925" a="3.6040288170886638" b="0.0013968027072876177" c="-1.3734026392988246e-05" d="1.0523293223419713e-06" /> - <width sOffset="182.15858114807932" a="3.6154956577251922" b="0.0013902929736464239" c="8.949224639292145e-06" d="-2.4077490047537341e-07" /> - <width sOffset="184.39301381705948" a="3.6186441684201052" b="0.0014266795105932657" c="-0.00010280095482423486" d="7.0932510617477223e-06" /> - <width sOffset="191.97126540562888" a="3.6266391684509349" b="0.0010906705487722756" c="-5.3625768006583536e-05" d="1.9129960543585808e-07" /> - <width sOffset="192.27850232297263" a="3.6269692062773373" b="0.001057773090372235" c="-5.3508116370448315e-05" d="2.2329780939798313e-07" /> - <width sOffset="195.39813795654356" a="3.6297551046209886" b="0.00073044092491875373" c="-0.00026320836987471903" d="8.7699465424834213e-06" /> - <width sOffset="202.39842349786591" a="3.6249785971189028" b="-0.0016653392475196437" c="-8.2655386920379173e-05" d="8.9623272418465965e-06" /> - <width sOffset="208.22982605135289" a="3.6142338305791193" b="-0.0017150342265377168" c="0.00034947443307385765" d="-4.0863255841307529e-06" /> - <width sOffset="210.32262953259135" a="3.6121377825971974" b="-0.00030596379640905613" c="0.00013717873411050828" d="-5.2477363684081771e-06" /> - <width sOffset="212.51834467275921" a="3.6120717825272188" b="0.00022054644202059402" c="0.00010278911426726988" d="-5.8441108310579477e-06" /> - <width sOffset="216.65853509005876" a="3.6143320698510908" b="0.00077115464472587297" c="0.0004786720100939209" d="-2.5789395573112216e-05" /> - <width sOffset="222.63826584765252" a="3.6305450832503872" b="0.0037293459542041534" c="8.1037087242170038e-06" d="-2.4475569811575323e-05" /> - <width sOffset="228.26757787096005" a="3.6474293836949614" b="0.0014937522717148868" c="-7.5832986602989832e-05" d="7.3269669024374882e-06" /> - <width sOffset="228.8814602179153" a="3.6483194891066977" b="0.0014089307443220754" c="-0.0004479006256832153" d="1.9372327716665996e-05" /> - <width sOffset="232.7581870225458" a="3.6481787224574713" b="-0.0011904052158268601" c="-0.00022767285189823584" d="1.7082236072125617e-05" /> - <width sOffset="237.3516736906987" a="3.6395623511225756" b="-0.0022007179544081788" c="-7.9771736340297891e-05" d="2.2999790381748638e-05" /> - <width sOffset="242.8781081974391" a="3.6288459113775073" b="-0.00097508170665599808" c="0.00031401166818969682" d="2.3623412831240317e-05" /> - <width sOffset="245.95352554194687" a="3.6295042659518821" b="0.0016266564664264387" c="0.00056288397033803434" d="-0.00011968438417019979" /> - <width sOffset="248.51165737139968" a="3.6353454239854401" b="0.0021568616299614228" c="-0.00014306041637184239" d="9.4866409882120479e-06" /> - <width sOffset="250.99122217709396" a="3.6399585556630227" b="0.0016223849659480166" c="-9.1307617306753822e-05" d="-5.4605263056851663e-06" /> - <width sOffset="252.99802937233241" a="3.6428025168100246" b="0.0011899382739855593" c="-0.0001026604565509547" d="3.7559720227971364e-07" /> - <width sOffset="263.11795054722569" a="3.644720125582543" b="-0.00077249529352228221" c="-9.2864343794655827e-05" d="9.3165317462287296e-07" /> - <width sOffset="273.03738546498022" a="3.6288293206134012" b="-0.0023398083515809454" c="-9.6351471028471408e-06" d="3.7536082281933185e-06" /> - <width sOffset="273.237871722119" a="3.6283598641607697" b="-0.0023432191548274175" c="-7.0441015062758195e-06" d="3.7510995016662712e-06" /> - <width sOffset="278.6538861022679" a="3.6160582631908125" b="-0.0020894256768209571" c="-0.00064103127965697707" d="0.00010587515264282724" /> - <width sOffset="283.3577928970123" a="3.6030655778405607" b="-0.001092112811078" c="0.00085560981543008892" d="0.0001051945318785714" /> - <width sOffset="283.57255672163274" a="3.6028715372571658" b="-0.00071004891831613799" c="0.00017977516174248179" d="4.5800796056218738e-07" /> - <width sOffset="285.6478013263573" a="3.6021763323724669" b="4.2023377065646123e-05" c="2.5163433704789018e-05" d="-2.0004739545276587e-06" /> - <width sOffset="289.37260136237683" a="3.602578600680324" b="0.00014621635562806284" c="-0.00060355637114590382" d="3.641687435846278e-05" /> - <width sOffset="293.47771407190561" a="3.5955270219129054" b="-0.0029680314279479621" c="-0.00020462367580281805" d="3.2821608123266719e-05" /> - <width sOffset="298.0268947907756" a="3.5808802210746982" b="-0.0027920375969045447" c="-4.7506522448082011e-05" d="8.6318138556381697e-07" /> - <width sOffset="303.59763524679886" a="3.564001452021897" b="-0.003240968899709467" c="-3.2620996335374429e-05" d="8.6722634522024847e-07" /> - <width sOffset="303.89566102764468" a="3.5630326853145307" b="-0.0032601816160354388" c="2.2033474957423052e-05" d="-5.8653243606112053e-06" /> - <width sOffset="313.71755642169217" a="3.5275796031730571" b="-0.0045248376410510866" c="-0.0001362952545018967" d="-1.523503771724567e-05" /> - <width sOffset="315.17285994767627" a="3.520658972716046" b="-0.0050183388108605417" c="-0.00042903797359430208" d="3.5112588243726426e-05" /> - <width sOffset="323.83747759658547" a="3.4678074892347954" b="-0.00454494302227261" c="0.00048073075293402612" d="3.6349912168211333e-05" /> - <width sOffset="324.19109110126675" a="3.4662620550583294" b="-0.0041913213967235997" c="0.00031672260632899468" d="-7.6229552039825133e-06" /> - <width sOffset="325.26409124086035" a="3.4621200014113525" b="-0.0035379641901435201" c="0.00037116671885905998" d="-1.2976276371671084e-05" /> - <width sOffset="333.95739877147878" a="3.4508885816982766" b="-2.6622923156310527e-05" c="6.8119808031557168e-05" d="-1.8062960874002053e-05" /> - <width sOffset="336.80090946283781" a="3.4509483734795952" b="-7.737120355489225e-05" c="1.1216114587702929e-06" d="2.7063932955514658e-06" /> - <width sOffset="342.71914941474" a="3.4510907646409339" b="0.0002202835837255257" c="-4.631421365975027e-05" d="-2.7032725445690042e-05" /> - <width sOffset="343.51052413570164" a="3.4512226882267218" b="9.6190112752984886e-05" c="-7.6117805720695895e-05" d="-1.7461039847884572e-05" /> - <width sOffset="344.07731994637209" a="3.4512495755290242" b="-6.9248636033954913e-06" c="-5.2245576685607774e-05" d="3.8277785359054932e-06" /> - <width sOffset="354.19724112126534" a="3.4497960264952994" b="0.00011167350639502169" c="7.8076047358196685e-05" d="2.8940281336786894e-06" /> - <width sOffset="356.58415026628757" a="3.4505467623783073" b="0.00053385911493406305" c="3.3364137932486682e-05" d="1.5916517838221693e-05" /> - <width sOffset="357.2437376593424" a="3.450917971731339" b="0.00059864595172236365" c="0.0042685403967511549" d="-0.00090334821811512676" /> - <width sOffset="360.39018610157837" a="3.4669211747340496" b="0.00063031499445850565" c="-0.00019888882831186721" d="1.8646738646899427e-05" /> - <width sOffset="364.31716229615864" a="3.4674585315750122" b="-6.9086378471778761e-05" c="2.0688716753551709e-05" d="1.86406129326154e-05" /> - <width sOffset="364.52656334479042" a="3.4674451431481192" b="-5.7969795037990249e-05" c="0.0022018463743040703" d="-0.00040394184431408344" /> - <width sOffset="367.86696045255178" a="3.476764137018463" b="0.0011302570343258819" c="-0.00080701223845565341" d="9.5864445364309832e-05" /> - <width sOffset="371.74227936744023" a="3.4746037581462224" b="-0.00080549802069656922" c="-8.6188207513316815e-05" d="1.0674418376562579e-05" /> - <width sOffset="374.43708347105195" a="3.4720160966000573" b="-0.0010374668002229486" c="-1.3205682823415072e-06" d="1.143355442661147e-05" /> - <width sOffset="375.63946776359012" a="3.4707866288163669" b="-0.00099105303246842442" c="-0.00060028848734420778" d="0.00016871135989464966" /> - <width sOffset="378.77292442013265" a="3.4669778183658582" b="0.00021649413559221532" c="-3.7589901567024523e-06" d="2.2913087165355504e-06" /> - <width sOffset="384.55700464594526" a="3.4685476692540602" b="0.00040298074843423564" c="2.5308618321551114e-05" d="2.8113021576365171e-06" /> - <width sOffset="390.55269190838925" a="3.4724795495025464" b="0.0010096501806258239" c="-9.5393427663632236e-05" d="7.9988758189556064e-06" /> - <width sOffset="394.67692582083856" a="3.4755821310466866" b="0.00063096652597088702" c="-1.408448805252167e-05" d="6.7716664739961469e-06" /> - <width sOffset="399.95619360287316" a="3.4795169890065916" b="0.0010484475686646784" c="-0.0004616310529085675" d="3.0210818964506484e-05" /> - <width sOffset="402.97758268341551" a="3.4793038868934261" b="-0.00091372163107402652" c="0.0019563282778442218" d="-0.00024500530612032935" /> - <width sOffset="404.79684699573181" a="3.4826412490093821" b="0.0037717359826999397" c="0.0006222486482306206" d="-0.00025146559280874543" /> - <width sOffset="407.6639700832871" a="3.4926436465613815" b="0.0011384235598818635" c="-0.00030074529547852483" d="2.4000284571630688e-05" /> - <width sOffset="412.98713879546108" a="3.4938018652275771" b="-2.3187133640435557e-05" c="-0.00047972159771303413" d="5.9779198662275315e-05" /> - <width sOffset="414.91676817062512" a="3.4924004024349036" b="-0.0012067988339027778" c="-0.00011402533887750849" d="5.9818735517579123e-05" /> - <width sOffset="417.70795186502301" a="3.489444443181851" b="-0.00044523954739040259" c="7.2885536314296377e-05" d="-3.9276214050949854e-06" /> - <width sOffset="425.03668934551843" a="3.4885500830847569" b="-9.7838921972522464e-06" c="0.00013620838482686343" d="-9.3920833687080317e-05" /> - <width sOffset="426.07675877598251" a="3.4885815804925313" b="-3.1246551076388263e-05" c="-4.1165412361183892e-05" d="-3.2530164149230326e-06" /> - <width sOffset="433.05405432187627" a="3.4852545598929083" b="-0.0010807894570095766" c="-5.426387289505644e-05" d="5.5917290625935227e-06" /> - <width sOffset="435.15661052041173" a="3.4827942270450039" b="-0.001234816357545123" c="-1.8537803241513971e-05" d="7.4121885025503935e-06" /> - <width sOffset="443.45893737886382" a="3.4755063511180304" b="-9.8941365748470098e-06" c="0.00058171225165836642" d="-9.0763813488813365e-05" /> - <width sOffset="445.27653169530504" a="3.4768651318372927" b="0.0012051842562558902" c="4.4023558668467765e-05" d="-0.00010285466273678321" /> - <width sOffset="447.89974593853231" a="3.4784728959892197" b="-0.00068715615050359284" c="4.7136071299152757e-05" d="3.0224075073160317e-06" /> - <width sOffset="453.02277807678939" a="3.476596062549425" b="3.3776476272278909e-05" c="0.00024853814740662182" d="-5.1780527749333749e-06" /> - <width sOffset="455.39645287019835" a="3.4780073317129556" b="0.0011261493419424456" c="0.00020792425412800351" d="-4.7731000112663938e-06" /> - <width sOffset="459.88587057614768" a="3.4868218856531219" b="0.0027044633480614922" c="0.00022163500912027732" d="-1.0057252428446132e-05" /> - <width sOffset="465.5163740450916" a="3.5072805412499068" b="0.0042437744967866644" c="5.2024359830822028e-05" d="-1.033846286590682e-05" /> - <width sOffset="472.62472634471413" a="3.5363621836365695" b="0.0034162230421710929" c="-8.8701387627225595e-06" d="-6.46193691035875e-06" /> - <width sOffset="475.6362952199849" a="3.5463934279415987" b="0.0031869764512229481" c="-5.1128985100021483e-05" d="-1.3376174058029873e-05" /> - <width sOffset="477.05830136509667" a="3.5507834776476455" b="0.0029604210452638651" c="-0.00020909284680844896" d="1.079352111706645e-05" /> - <width sOffset="483.80854352404407" a="3.5645594311649069" b="0.0016130116223124751" c="-0.00031217147621400961" d="2.5004583930311829e-05" /> - <width sOffset="485.75621639487821" a="3.5667015924864862" b="0.00068155517910762665" c="-0.00016916589568345634" d="2.6778894297485444e-05" /> - <width sOffset="488.88475683068953" a="3.5679981170998825" b="0.0004093870828941761" c="0.00012313237653378768" d="2.9241572173829648e-05" /> - <width sOffset="492.11512502632377" a="3.5715912361019622" b="0.0021203447728790816" c="0.00014992909859882646" d="-1.1349691195982366e-05" /> - <width sOffset="495.87613756977152" a="3.5810828514324942" b="0.0027664837353580428" c="1.5055760025910809e-05" d="-1.3033288079882554e-05" /> - <width sOffset="501.87601979650935" a="3.5954083896585365" b="0.0015396094551897437" c="-6.894965302383941e-05" d="-2.5950472559167687e-07" /> - <width sOffset="505.99605874466482" a="3.6005630906050738" b="0.00095824388245573143" c="-6.2438424465974983e-05" d="4.0231962805911421e-07" /> - <width sOffset="516.11597991955807" a="3.6042829168868176" b="-0.0001818919409561627" c="-4.9582064310687378e-05" d="9.6554621565525341e-07" /> - <width sOffset="523.74287830494598" a="3.6004398456571609" b="-0.00076971042287278871" c="-0.00021454383150522176" d="2.2656852768836494e-05" /> - <width sOffset="526.23590109445138" a="3.5975385727862701" b="-0.0014169876715955094" c="-5.714395818016989e-05" d="1.9866896418688284e-05" /> - <width sOffset="527.81692844382667" a="3.5952339509664735" b="-0.0014486992803905666" c="3.5841375191557413e-05" d="2.0003122546009783e-05" /> - <width sOffset="531.7375393907239" a="3.5913105666135978" b="-0.0002452437009731095" c="0.0010773765416642101" d="-0.00010257715236020922" /> - <width sOffset="536.35582226934469" a="3.6030528527375352" b="0.0031425538808775993" c="-0.00034354500568784056" d="-0.00010259596129521289" /> - <width sOffset="537.32208340142711" a="3.6056760680157218" b="0.0021912760958795849" c="-0.00015854723875034638" d="1.1597941478430722e-05" /> - <width sOffset="543.22090715272293" a="3.6154657397552934" b="0.0015314818082729803" c="-2.8258406374946876e-06" d="1.0769719785500098e-05" /> - <width sOffset="544.86729546359823" a="3.6180275557268597" b="0.0016097539749735919" c="-4.5058516493196629e-05" d="2.1666600283399175e-06" /> - <width sOffset="546.47574344423799" a="3.6205092061051163" b="0.0014816215456162842" c="-4.1122538526655415e-05" d="-1.0887106412454348e-06" /> - <width sOffset="554.14308408335182" a="3.6289610521024649" b="0.00065901079306413023" c="-0.00017909555571567627" d="8.1557502912083711e-06" /> - <width sOffset="556.5956646191313" a="3.6296203611565137" b="-7.2307539400157973e-05" c="-0.00011806854488870743" d="8.6704973896527668e-06" /> - <width sOffset="562.02562284681278" a="3.6271346892275074" b="-0.00058758762744518314" c="-0.00024904041441724419" d="2.7820753901948927e-05" /> - <width sOffset="566.62059819142337" a="3.6218756461998618" b="-0.0011140513864306752" c="3.0323982362531694e-05" d="1.5740812309620042e-05" /> - <width sOffset="566.71558579402461" a="3.621770112222503" b="-0.0011078645103910047" c="3.4763001482933885e-05" d="1.5760121282869325e-05" /> - <width sOffset="571.55065054613738" a="3.6190076203256303" b="0.00033361152461256361" c="0.0002491506408552016" d="1.9292381229637232e-05" /> - <width sOffset="576.83550696891791" a="3.63057705599567" b="0.0045835539426629223" c="0.00055667198053442981" d="1.9985850237387913e-05" /> - <width sOffset="577.67887458295468" a="3.634850609169153" b="0.0055651581257966567" c="0.0010464585630251706" d="-0.00014189138147772886" /> - <width sOffset="582.7413221758834" a="3.6714336482703391" b="0.0052511045227675596" c="-0.00064093032420565208" d="1.7676209864692995e-05" /> - <width sOffset="586.95542814381122" a="3.6835031112878842" b="0.0007909268610792608" c="-0.00041913161977272641" d="1.7540710778664995e-05" /> - <width sOffset="593.95561222360527" a="3.6745181538312153" b="-0.0024984500234182319" c="-0.0001219584592668268" d="2.4108274137078821e-05" /> - <width sOffset="597.07534931870441" a="3.6662686694763744" b="-0.0025554865768038018" c="8.4256413154202244e-05" d="3.1821746939731332e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="92.536107442156421" color="standard" width="0.17551168402094131" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.175512" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15327851038223128" weight="standard" type="solid"> - <type name="solid"> - <line length="598.83888561202775" space="0" width="0.153279" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="9.7204523541449817e-07" b="0.00011608382369719325" c="-6.6689377232553176e-05" d="3.9184034052443167e-05" /> - <width sOffset="2.457955920830897" a="0.00046527124098361128" b="0.00049844131087312549" c="5.792749385535169e-05" d="-5.2570200177549273e-06" /> - <width sOffset="10.119921174893296" a="0.0053203724883008618" b="0.0004602668988271552" c="-6.693055921336268e-05" d="-3.8186392168859669e-06" /> - <width sOffset="12.974771749398599" a="0.0060000198779150971" b="-1.5254289029493833e-05" c="-0.00011315484111112446" d="8.3834625993024863e-06" /> - <width sOffset="19.740416978935276" a="0.0033135475291969918" b="-0.00039515258230506784" c="0.00036999527793727738" d="-5.1367669075215348e-05" /> - <width sOffset="20.239842349786592" a="0.0032020857897765431" b="-6.4019775116796497e-05" c="0.00029199205778863979" d="-5.2017420021059959e-05" /> - <width sOffset="25.940594749121413" a="0.0026893742068692106" b="-0.0018063474600913266" c="5.9686515708787602e-05" d="6.5328286293259187e-06" /> - <width sOffset="30.359763524679888" a="-0.0035637616270753902" b="-0.0008960780239091903" c="0.00014229315269306873" d="5.614890080207777e-06" /> - <width sOffset="37.831721412823981" a="2.7340555296628821e-05" b="0.0021707794105829095" c="-0.0046210876353025834" d="0.00057396214062996711" /> - <width sOffset="38.082022625450648" a="0.00029017552605337116" b="-3.4670882399270072e-05" c="-0.00010820529084926232" d="3.6062742440382402e-05" /> - <width sOffset="40.084428892121814" a="7.6431572582524865e-05" b="-3.4217932755275376e-05" c="-0.0021411672166281323" d="0.00061164222436685823" /> - <width sOffset="40.479684699573184" a="-0.00023383300558199593" b="-0.0014401701162558254" c="-0.0014254854486423615" d="0.00061576342267306112" /> - <width sOffset="42.653471949611045" a="-0.0037753104560800388" b="0.001091520627839058" c="0.00049571663812604007" d="-9.9651543972461637e-05" /> - <width sOffset="47.301577334049462" a="0.0020009077127491892" b="-0.00075907306614360001" c="0.00023793040434727961" d="-1.5912089873230548e-05" /> - <width sOffset="50.599605874466477" a="0.0015146217146408958" b="0.00029110242733823826" c="6.0068315957618801e-05" d="-1.8803437242647988e-05" /> - <width sOffset="55.055479990715078" a="0.0023408322547848748" b="-0.00029360011902805974" c="-0.00056885791821751101" d="0.00013587147946104305" /> - <width sOffset="58.058334169293062" a="8.7368298444800985e-06" b="-3.4481180099462522e-05" c="-0.00045509532605012785" d="6.5880884208921155e-05" /> - <width sOffset="60.719527049359776" a="-0.0020643661020702808" b="-0.0010569791644319919" c="7.3769094395259897e-05" d="6.5853212809660567e-05" /> - <width sOffset="64.356619854353966" a="-0.0017644462623445101" b="0.0020930375483500085" c="0.00036374474241627033" d="-0.00015786140859879987" /> - <width sOffset="67.528686867124506" a="0.0034962914681497814" b="-0.00036452586012271186" c="-0.0023671874632278924" d="0.00085262271920360003" /> - <width sOffset="69.414790256920725" a="0.00010851398430133941" b="-0.00019472209141802553" c="-0.00047644193190213844" d="0.00051921840385183934" /> - <width sOffset="70.165509362742696" a="-8.6504426040523441e-05" b="-3.2208173224067618e-05" c="0.0026445649397028809" d="0.00017840291874833471" /> - <width sOffset="71.769116810952909" a="0.007398187584614746" b="0.0098257996381501504" c="0.0032430680362053187" d="-0.00071835202027448284" /> - <width sOffset="74.271288376525476" a="0.041034902476999591" b="0.012562715118489654" c="-0.00092468674214978702" d="2.3233037459637442e-05" /> - <width sOffset="78.024547252734877" a="0.076388383229296419" b="0.0066033857370102981" c="-0.00097279256159924507" d="-0.00049471414623198989" /> - <width sOffset="78.487002181449611" a="0.07918517708049988" b="0.0053862348363035474" c="0.00017039964491406801" d="0.0001126934845941125" /> - <width sOffset="80.959369399146368" a="0.095246602870420194" b="0.0082953662948422099" c="0.0010111577385096301" d="0.00010296074343827039" /> - <width sOffset="81.964354221812258" a="0.10470909199801737" b="0.010639732007735705" c="0.00083651118112368329" d="-0.00018802224517863299" /> - <width sOffset="86.467737173494072" a="0.15241651220410457" b="0.0067344606470729606" c="0.0042197524097527146" d="-0.00081246047517753326" /> - <width sOffset="90.067606828618338" a="0.19344168518223537" b="0.0055294020760615244" c="0.0033251308501593842" d="-0.00055344001797547179" /> - <width sOffset="91.079290574039661" a="0.20186590980498975" b="0.010558019523347036" c="0.0016421473998046291" d="-0.00055384961886419234" /> - <width sOffset="94.320231920976866" a="0.23447837549805728" b="0.0037498142569618058" c="0.0026152834369548043" d="-0.00026887992933870958" /> - <width sOffset="100.32393775957364" a="0.29307195352806747" b="0.0060776843683432395" c="0.0066350370366103101" d="-0.0015051282877357071" /> - <width sOffset="101.19921174893295" a="0.30246545880961051" b="0.014233378123681207" c="0.0027005841926564952" d="-0.0015113469774401481" /> - <width sOffset="103.02544165767443" a="0.32826049742234709" b="0.008975602365838593" c="0.001953968405006569" d="-0.00015245002269298068" /> - <width sOffset="107.76885264707556" a="0.39852919815972632" b="0.017222200111664462" c="8.5372839808447863e-05" d="-0.00013513780096276374" /> - <width sOffset="111.31913292382626" a="0.45470157135340905" b="0.012718365930148343" c="-0.0013471195253406433" d="-0.00013263757422963794" /> - <width sOffset="111.52024646253456" a="0.45720384152981142" b="0.012160423741739323" c="0.012535839325802912" d="-0.0041795549899942544" /> - <width sOffset="113.52098975014204" a="0.49824062975715755" b="0.012130470368597901" c="0.0026245704896111013" d="-0.00030442543652656293" /> - <width sOffset="113.99770718703763" a="0.50458691409774703" b="0.014425276671274275" c="0.0023983295984799252" d="-0.0003010256175779597" /> - <width sOffset="119.74931781509898" a="0.60961879409281217" b="0.012139084910903871" c="0.012959417825656376" d="-0.0042822433179876612" /> - <width sOffset="121.35438506901221" a="0.6447821769446036" b="0.020644288269536806" c="-0.00090008650426663477" d="0.00010046487961412205" /> - <width sOffset="128.60575474476778" a="0.78545953885504805" b="0.023438610361396717" c="-0.0012522953533694559" d="0.00013867049653580715" /> - <width sOffset="131.4990663054981" a="0.8461501495820154" b="0.01967458604066916" c="0.00027484419589406681" d="8.1952553089858246e-06" /> - <width sOffset="131.55897527361284" a="0.84732982193096085" b="0.019707605545447836" c="0.00027634955237623341" d="8.4882955225386276e-06" /> - <width sOffset="136.37848494279717" a="0.94968000527807384" b="0.022962834294620378" c="0.00091969232139456456" d="0.00012148939420745139" /> - <width sOffset="136.62850185193142" a="0.95548048933631557" b="0.023445493900672562" c="-0.00027895383866509676" d="2.5040704540214476e-05" /> - <width sOffset="140.80430598058902" a="1.0503434034217785" b="0.022425710564072721" c="0.00019142958729111612" d="2.1653981642004639e-05" /> - <width sOffset="141.67889644850615" a="1.0701176283501139" b="0.022810245491699261" c="0.00024338641153288628" d="2.3620286264291728e-05" /> - <width sOffset="142.80427591082525" a="1.0961297191908157" b="0.023447793414515212" c="-0.00031973134089714826" d="1.0893109894441499e-05" /> - <width sOffset="151.79881762339943" a="1.2890916779738069" b="0.020339935610306024" c="-2.7410139943915272e-05" d="1.1053652347938464e-05" /> - <width sOffset="157.80404923703711" a="1.4126430555665657" b="0.021206604317421485" c="-7.3084523592920276e-05" d="1.7487389709427584e-05" /> - <width sOffset="158.12237248476177" a="1.4193867691601523" b="0.021165391286934891" c="-0.00087217394619625542" d="6.9774108070347403e-05" /> - <width sOffset="161.91873879829274" a="1.4909859024505803" b="0.017560044185711429" c="-7.0367236977893037e-05" d="7.0711335089600227e-05" /> - <width sOffset="162.12965661243294" a="1.4946871616882191" b="0.017539797840240956" c="1.7491247771969241e-05" d="-4.4251041056399878e-06" /> - <width sOffset="169.64331451006339" a="1.6255856133817472" b="0.017053185857134456" c="-0.0073671383810506117" d="0.0012210446427593864" /> - <width sOffset="170.0701750589788" a="1.6316175505929125" b="0.011431163760720902" c="-0.0065357225040622562" d="0.0011620410486447481" /> - <width sOffset="172.03865997318604" a="1.6376578931051364" b="-0.00079128542132432761" c="0.00029950023591849201" d="0.0011701397500927782" /> - <width sOffset="174.58070564588525" a="1.6568033011369443" b="0.023415716999090775" c="0.0096547603448964119" d="-0.0075888627400521012" /> - <width sOffset="176.08421623321317" a="1.6880414287933285" b="0.00098290942823382179" c="0.066917412577302174" d="-0.044472109214581036" /> - <width sOffset="177.0865559852277" a="1.7114725559150687" b="0.0010894946184967537" c="0.028681119179964853" d="-0.010913373352095334" /> - <width sOffset="178.84065198850431" a="1.7427307008941693" b="0.00097183796673514389" c="0.24002940096739561" d="-0.47804351903783215" /> - <width sOffset="179.09123640741473" a="1.7505243508990653" b="0.031214377743240172" c="-0.017545423024220783" d="0.0058335391295385669" /> - <width sOffset="181.09591677055124" a="1.7895853661029122" b="0.031198937641524219" c="-0.013844625640055239" d="0.0040982397548666579" /> - <width sOffset="182.15858114807932" a="1.8120232133521532" b="0.015658436990797789" c="-0.00079430368445154492" d="0.0040824471348977686" /> - <width sOffset="183.35118279075672" a="1.8364925466851871" b="0.031183238723415812" c="-0.0083582276436754491" d="0.001773857587848573" /> - <width sOffset="184.39301381705948" a="1.8619139987989168" b="0.019543615292290862" c="-0.0027039118363335513" d="0.0017665235618858858" /> - <width sOffset="185.89633792973868" a="1.8911853328418538" b="0.023390845279913548" c="-0.00043745343855115934" d="-9.0110592072351236e-06" /> - <width sOffset="191.97126540562888" a="2.0151186922417086" b="0.017078196958122013" c="-0.00048958989546615047" d="-2.1091077352611742e-06" /> - <width sOffset="192.27850232297263" a="2.0203194690568256" b="0.016776759512958081" c="-0.00049205018686494285" d="1.6529374741490957e-07" /> - <width sOffset="193.47439406041229" a="2.0396792308008718" b="0.015600591195255031" c="-3.1133417188454653e-06" d="3.9913889093081251e-07" /> - <width sOffset="198.98586600187377" a="2.125633702705489" b="0.01560264611977176" c="0.0097154162205164343" d="-0.0064676924321103915" /> - <width sOffset="200.48899379437012" a="2.1490721219970998" b="0.00097049025579238344" c="0.079028374575171298" d="-0.070006895420327106" /> - <width sOffset="201.24055935293796" a="2.1647212536035045" b="0.0011301489122241507" c="0.016797613582008541" d="-0.0049449004147109361" /> - <width sOffset="202.39842349786591" a="2.1808736040074392" b="0.020140724888767274" c="-0.00041140190304857829" d="-0.0049441164923973305" /> - <width sOffset="203.49525126917257" a="2.1959457304547878" b="0.0013944722281667924" c="0.077273721403432846" d="-0.068415953372715693" /> - <width sOffset="204.24681616266344" a="2.2115977845424841" b="0.00161269411390424" c="0.0068089819454436153" d="-0.00099162715483500758" /> - <width sOffset="208.22982605135289" a="2.2633824839566152" b="0.0086585653199504637" c="-0.0053153413514641281" d="-0.00097857850200567869" /> - <width sOffset="208.73079656613729" a="2.2662631349305942" b="0.0025961209173719973" c="0.051886910083825614" d="-0.051778388059238893" /> - <width sOffset="209.23176790289421" a="2.274075800713427" b="0.015599009970119586" c="-0.00077481500520277624" d="2.2403176033301673e-05" /> - <width sOffset="212.51834467275921" a="2.3177692311577096" b="0.011232001531910556" c="-0.00055405639555630628" d="2.1931634833092362e-05" /> - <width sOffset="216.65853509005876" a="2.3563311161533971" b="0.0077720056562807088" c="-0.00073012305324117151" d="4.1876919575287394e-05" /> - <width sOffset="217.1594505731847" a="2.3600462977518353" b="0.0070720685801748994" c="0.00617678961742799" d="-0.0026344762754951364" /> - <width sOffset="218.66219661731702" a="2.3756822502611561" b="0.0077884769557273574" c="-5.8993424112344388e-05" d="8.1735670386970548e-06" /> - <width sOffset="222.63826584765252" a="2.4062309148907848" b="0.0077070039453289666" c="3.8874411569477332e-05" d="8.2669930717915258e-06" /> - <width sOffset="228.26757787096005" a="2.4523226755477334" b="0.0089305983763521436" c="-0.0001509183008694956" d="-2.353554364220059e-05" /> - <width sOffset="231.27288591162352" a="2.4771599605175068" b="0.0073857760452709651" c="0.018117911328327432" d="-0.011214919975996857" /> - <width sOffset="232.52509821627757" a="2.4927974038837628" b="4.5358429987150603e-06" c="-5.9179761907235515e-05" d="7.0087776621559864e-07" /> - <width sOffset="232.7581870225458" a="2.4927952547541334" b="-2.2938200221528718e-05" c="-5.379316672706128e-05" d="2.9675312121466651e-06" /> - <width sOffset="237.3516736906987" a="2.4918424685568543" b="-0.00032928879662066837" c="7.4600733874698774e-05" d="-2.9500230974767101e-06" /> - <width sOffset="242.8781081974391" a="2.4918031712234288" b="0.00022496914344944654" c="2.4798299417540636e-05" d="-3.5870566355812724e-06" /> - <width sOffset="250.99122217709396" a="2.4933450775639745" b="-8.0976378012115498e-05" c="-4.3692874298874171e-05" d="1.1360110658225819e-05" /> - <width sOffset="252.99802937233241" a="2.4930984223735648" b="-0.00011909185405697487" c="4.335365759725147e-05" d="-5.4920815042163679e-06" /> - <width sOffset="254.99709226844163" a="2.4929897275066728" b="-1.1601710137689077e-05" c="-4.8465508814969424e-05" d="1.8840841504698405e-06" /> - <width sOffset="263.11795054722569" a="2.4907083265231638" b="-0.00042600810530902871" c="-2.400207583083268e-06" d="2.4240728724403327e-06" /> - <width sOffset="273.03738546498022" a="2.4886123529051107" b="0.00024192581480908548" c="1.4231314020072321e-05" d="-3.9788195709571501e-07" /> - <width sOffset="273.237871722119" a="2.4886614245238583" b="0.00024758420229459895" c="-2.3778014115265721e-06" d="-4.1982890688785371e-07" /> - <width sOffset="278.6538861022679" a="2.4898658977322197" b="0.00018488299832501921" c="0.0006857360050756034" d="-0.00010254388204803972" /> - <width sOffset="283.3577928970123" a="2.49523568733458" b="-0.00017072567780758842" c="-0.00079525913542430522" d="-0.00010136480348563641" /> - <width sOffset="283.57255672163274" a="2.49516133741482" b="-0.00052633736341968333" c="-0.00011695702038593952" d="3.3717204323692325e-06" /> - <width sOffset="289.37260136237683" a="2.488831940787918" b="-0.0015427699779785753" c="0.00054807707516270527" d="-3.5045627880604091e-05" /> - <width sOffset="293.47771407190561" a="2.4893104368623371" b="0.0011853048122040092" c="0.00013035486779434306" d="-3.2386158737454846e-05" /> - <width sOffset="298.0268947907756" a="2.4943512914139783" b="0.00036062145653133724" c="-2.0819471710502952e-05" d="-4.2773199974052923e-07" /> - <width sOffset="303.59763524679886" a="2.4956401808886768" b="8.884009693667632e-05" c="-4.57294970343793e-05" d="-7.2861131129267567e-07" /> - <width sOffset="303.89566102764468" a="2.495662576576323" b="6.1388814428610383e-05" c="-0.00010026003576599985" d="6.0039393945390753e-06" /> - <width sOffset="313.71755642169217" a="2.4922823028929999" b="-0.00017050493240635626" c="6.2097195774002273e-05" d="1.5403976724624453e-05" /> - <width sOffset="314.65456869830632" a="2.4921897312062802" b="-1.3559557541356626e-05" c="-0.00021994615552758012" d="4.4864115754052762e-05" /> - <width sOffset="315.17285994767627" a="2.4921298664598952" b="-0.00020539691349273029" c="7.6039787059297315e-05" d="-5.4835102006273666e-06" /> - <width sOffset="324.19109110126675" a="2.4924399298526345" b="-0.00017180502554911548" c="0.00013025470560002139" d="3.848935718214854e-05" /> - <width sOffset="324.69136538249342" a="2.4923913987212618" b="-1.2580169800105283e-05" c="-8.7527521805302937e-05" d="5.2058030492424409e-06" /> - <width sOffset="333.95739877147878" a="2.4889013832499445" b="-0.00029374506392054094" c="5.0065934818618337e-05" d="1.1117040148298288e-05" /> - <width sOffset="336.80090946283781" a="2.4887265226260316" b="0.00026064323163405879" c="5.7811731856750027e-05" d="-9.6523140212534346e-06" /> - <width sOffset="342.71914941474" a="2.4902931351243609" b="-6.9302597252503674e-05" c="-1.8075319651704661e-05" d="2.0086804721057684e-05" /> - <width sOffset="344.07731994637209" a="2.4902159919922204" b="-7.2433316283684413e-06" c="3.4394317709225237e-05" d="-1.6212604505044114e-06" /> - <width sOffset="354.19724112126534" a="2.4919848188369031" b="0.00019077874743308261" c="-1.1459722044470573e-05" d="4.980130799765077e-08" /> - <width sOffset="356.58415026628757" a="2.4923755777443426" b="0.00013692332098293105" c="5.433214762834328e-05" d="-1.297268839657012e-05" /> - <width sOffset="360.33480724925812" a="2.4929689774837449" b="-2.9912535347884723e-06" c="0.00029489917160945646" d="-2.7099710543133052e-05" /> - <width sOffset="364.31716229615864" a="2.4959223856905082" b="0.0010564598920564405" c="-2.275365058158912e-05" d="-2.6780456039756757e-05" /> - <width sOffset="364.52656334479042" a="2.4961423658817536" b="0.0010434077429639613" c="-0.0022090247831946593" d="0.00039580200118218104" /> - <width sOffset="367.86696045255178" a="2.4897316312446915" b="-0.00046525584216386634" c="0.00071826290419864315" d="-0.00010400428849620119" /> - <width sOffset="371.74227936744023" a="2.492662517560424" b="0.00041590041175906443" c="-9.7194590902525659e-05" d="-1.881426150877361e-05" /> - <width sOffset="373.24215641197088" a="2.4930041825426676" b="-2.6349059251678381e-06" c="3.5451195665684308e-05" d="-3.6875577011241545e-06" /> - <width sOffset="374.43708347105195" a="2.4930453614083499" b="6.6292434758501682e-05" c="2.1492258203664264e-05" d="-1.4530877770601551e-06" /> - <width sOffset="384.55700464594526" a="2.4944113240715322" b="5.4847968866055538e-05" c="-2.661716989766477e-05" d="-1.8275998920770212e-06" /> - <width sOffset="390.55269190838925" a="2.4933894233059926" b="-0.00046142562397906775" c="0.00011177878951860568" d="-7.0151735533842695e-06" /> - <width sOffset="393.55185241846857" a="2.4928217292347417" b="1.9755743038462671e-05" c="-0.00031980667410494174" d="6.6470854748393787e-05" /> - <width sOffset="394.67692582083856" a="2.4925338093534557" b="-0.00044744176108894916" c="-0.00015602148457119903" d="2.5664748410719798e-05" /> - <width sOffset="402.97758268341551" a="2.4927479813057434" b="0.0022673697519415819" c="-0.0016610420896584612" d="0.00030088087349553107" /> - <width sOffset="404.79684699573181" a="2.4931870196236705" b="-0.00078888272289010485" c="-2.2177547287834803e-05" d="0.00030742356599728114" /> - <width sOffset="405.72643055393286" a="2.4926814692910297" b="-3.3156776937350724e-05" c="-0.00050019339230620988" d="0.00027858179545892" /> - <width sOffset="407.6639700832871" a="2.4927657742880696" b="0.0011659921302104252" c="-0.00012085814661948026" d="3.1159180785180824e-06" /> - <width sOffset="414.91676817062512" a="2.4960537525787161" b="-9.5406674302831156e-05" c="-4.3479499553078152e-05" d="2.556851189725083e-06" /> - <width sOffset="425.03668934551843" a="2.493285331951931" b="-0.0001898619869577223" c="6.718369002004197e-05" d="2.1254510732077639e-05" /> - <width sOffset="426.07675877598251" a="2.4931844511077599" b="1.8865262639273465e-05" c="1.7823423826241554e-05" d="-6.9413306539706915e-05" /> - <width sOffset="426.57694475851179" a="2.4931896600699419" b="-1.5403399944998331e-05" c="8.7554832307226133e-05" d="-4.9152472335480342e-06" /> - <width sOffset="435.15661052041173" a="2.4963982249721943" b="0.00040153514772842033" c="-2.9704921913981024e-05" d="-3.7814278378324547e-06" /> - <width sOffset="443.45893737886382" a="2.4955203911577102" b="-0.00087365072960383493" c="-0.00053952369146444145" d="9.439457415350205e-05" /> - <width sOffset="445.27653169530504" a="2.4927168621163904" b="-0.0018993814703801924" c="-2.5048524731140363e-06" d="0.00010535080016166109" /> - <width sOffset="447.89974593853231" a="2.4896188284435405" b="0.00026231351845781392" c="1.4026344634217531e-05" d="-5.2627008244424691e-07" /> - <width sOffset="455.39645287019835" a="2.492151877339388" b="0.00038388620196567634" c="2.7885217682381999e-06" d="-8.615913425404701e-07" /> - <width sOffset="459.88587057614768" a="2.4938535452313921" b="0.00035682809199901171" c="-8.6811682618060878e-05" d="4.4225610746366298e-06" /> - <width sOffset="465.5163740450916" a="2.493899947116351" b="-0.00020013922121315663" c="-9.5484147160025508e-06" d="3.9727598683560224e-06" /> - <width sOffset="470.38708275485294" a="2.4931576618531768" b="-1.0407393211494002e-05" c="-0.00011449966367633473" d="6.8752313510189436e-06" /> - <width sOffset="475.6362952199849" a="2.4909425008134849" b="-0.00064414836798869625" c="-1.2367693806529181e-05" d="1.4437488173145167e-05" /> - <width sOffset="477.05830136509667" a="2.4900430232854047" b="-0.00059174004270985583" c="0.00015012375348267127" d="-9.7322070019516323e-06" /> - <width sOffset="483.80854352404407" a="2.489895707006367" b="0.00010463684262457685" c="0.00027469476473850074" d="-2.3943269814845987e-05" /> - <width sOffset="485.75621639487821" a="2.4909646391052078" b="0.00090218659854997382" c="0.00013484984668742805" d="-2.5189036481797217e-05" /> - <width sOffset="492.11512502632377" a="2.4956775293064801" b="-0.00043842809524738879" c="-8.9088085661624561e-05" d="1.5402226888024647e-05" /> - <width sOffset="495.87613756977152" a="2.4935878291735381" b="-0.00045494746184340752" c="8.8103323595042411e-05" d="1.5590857724063227e-05" /> - <width sOffset="497.61455796805052" a="2.4931451062932819" b="-7.2745823077763642e-06" c="-6.0030655332372941e-05" d="1.4084962487743613e-05" /> - <width sOffset="501.87601979650935" a="2.4931139583819042" b="0.00024843988650690037" c="-3.0552232811871352e-05" d="1.3111791334536406e-06" /> - <width sOffset="505.99605874466482" a="2.4937106240590841" b="6.3457807888686016e-05" c="-1.3741675250117549e-05" d="4.8073616341900127e-07" /> - <width sOffset="516.11597991955807" a="2.4934437281022017" b="-6.6970916510879631e-05" c="-6.2811395598305869e-07" d="1.5735343786813965e-06" /> - <width sOffset="520.37187687875519" a="2.493268626825937" b="1.3185381473881539e-05" c="-0.00023879584517925984" d="1.9606449954006961e-05" /> - <width sOffset="523.74287830494598" a="2.4913505441859489" b="-0.00092837434660499474" c="0.00014653840290823682" d="-2.0848565992629156e-06" /> - <width sOffset="526.23590109445138" a="2.4899145418898385" b="-0.00023660035909860546" c="0.00013248552610580953" d="-2.7760732045128134e-07" /> - <width sOffset="531.7375393907239" a="2.4925766991659728" b="0.0011959666540863885" c="-0.00067835814188471676" d="0.00012230266758557365" /> - <width sOffset="533.98665368999491" a="2.4932265392504394" b="5.6634390516738589e-07" c="-0.00049092691040728519" d="0.00010771929755226625" /> - <width sOffset="536.35582226934469" a="2.491904784400687" b="-0.00051173863112265834" c="0.00025781076429844731" d="0.00010504898531336955" /> - <width sOffset="537.32208340142711" a="2.4917457899828483" b="0.00028072669903973302" c="7.9923782656833359e-05" d="-9.1449174597618462e-06" /> - <width sOffset="544.86729546359823" a="2.4944858064207165" b="-7.5056150551497478e-05" c="-3.1651143764096045e-05" d="-5.4185770248719041e-07" /> - <width sOffset="546.47574344423799" a="2.4942809428865114" b="-0.00018108011525971206" c="-3.2352790949635809e-05" d="2.2992729265307902e-06" /> - <width sOffset="554.14308408335182" a="2.4920269742322501" b="-0.00027169010667882267" c="0.00013346560645743102" d="-6.9451880059069169e-06" /> - <width sOffset="556.5956646191313" a="2.4920609883000195" b="0.00025765112084413398" c="8.1285289635334236e-05" d="-7.3130026033106336e-06" /> - <width sOffset="566.62059819142337" a="2.4954451969299565" b="-0.00031744439800485483" c="-3.4509168106085832e-05" d="4.7669384183290438e-06" /> - <width sOffset="566.71558579402461" a="2.4954147363691237" b="-0.00032387125315131663" c="-2.9347772552151499e-05" d="4.2563958961058079e-06" /> - <width sOffset="571.55065054613738" a="2.493643825032775" b="-0.00030915184521694301" c="4.6608058092179543e-05" d="7.2413594935562418e-07" /> - <width sOffset="574.54563224979302" a="2.4931554449695756" b="-1.048496813739648e-05" c="1.425462669373158e-05" d="-2.352591781010595e-06" /> - <width sOffset="576.83550696891791" a="2.4931779326028463" b="1.7790020323813979e-05" c="1.3318677135157092e-06" d="-1.5600929323056894e-07" /> - <width sOffset="586.95542814381122" a="2.4933326769989943" b="-3.1852349075649211e-06" c="-4.9845206458669735e-06" d="-2.4748743030163637e-07" /> - <width sOffset="593.95561222360527" a="2.4929812305250785" b="-0.00010935292474088462" c="6.1009559162900957e-05" d="-6.8150507886992714e-06" /> - <width sOffset="597.07534931870441" a="2.4930269396948601" b="7.2326893220602678e-05" c="-1.6629258454170764e-05" d="-1.7693109293465037e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="598.83888561202775"> - <left> - <lane id="4" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="2.4930930686561963" b="-3.916259838392111e-05" c="8.8480858773637427e-05" d="-6.6279302980916567e-06" /> - <width sOffset="7.6809764915433334" a="2.4950089050026643" b="0.00014698423180550119" c="-0.0016557244546995804" d="0.00053320980611432783" /> - <width sOffset="8.3563848815699657" a="2.4945171616474653" b="-0.001359882806082284" c="-0.0005702794261956013" d="0.00052172201886897514" /> - <width sOffset="9.6786755591643896" a="2.4929280965304499" b="-0.00013141442631141309" c="-0.0013304102074180237" d="0.00042711363173489727" /> - <width sOffset="12.456291021994275" a="2.4914516893231062" b="0.0023635838540964765" c="-0.00089058005628775546" d="7.3466960329558501e-05" /> - <width sOffset="18.476306056463272" a="2.4894335626817554" b="-0.00037157081910577094" c="0.00043843942974658093" d="7.2412008825883665e-05" /> - <width sOffset="21.013557714834405" a="2.4924960843699209" b="0.0032517801534433927" c="-0.00058394035422776596" d="2.6526086116982513e-05" /> - <width sOffset="28.596227231356579" a="2.4951433500510802" b="-0.0010283719614737757" c="2.0161476237079597e-05" d="2.6495394885020614e-05" /> - <width sOffset="32.325761889539876" a="2.4929629028647646" b="0.00022762131068606445" c="-0.00017984541869549829" d="-5.7550855108364952e-05" /> - <width sOffset="32.825287729491947" a="2.4930245560615258" b="4.8651278029207545e-06" c="0.0002413320694065425" d="-2.5360357440296441e-05" /> - <width sOffset="38.716148406249886" a="2.4962436612216932" b="0.00020798872913514732" c="-0.00020775486709907059" d="-2.4930493385188804e-05" /> - <width sOffset="39.620031007234616" a="2.4962435115502588" b="-0.00022868821038173406" c="-0.00022145952688504777" d="3.2259204466811345e-05" /> - <width sOffset="43.437058054570457" a="2.4939380332106724" b="-0.00050930186186849864" c="0.00014674560841174264" d="-2.63790516796803e-05" /> - <width sOffset="48.109253990293155" a="2.4920714120235843" b="-0.00086557117978504393" c="0.0012053709878832538" d="-0.00052319390198085701" /> - <width sOffset="48.836069581143192" a="2.4918781723732364" b="5.7445024244806022e-05" c="6.270234699804378e-05" d="-0.0005235307164318737" /> - <width sOffset="50.424905472869341" a="2.4900279222770161" b="-0.0037081095189387243" c="0.0028225922913174047" d="-0.00043440201586813083" /> - <width sOffset="53.919028565140934" a="2.4930007441204234" b="0.00010615294988790269" c="-0.0007519400312919496" d="-0.00042089061995659392" /> - <width sOffset="54.713689000016757" a="2.4923990508862106" b="-0.0018862796351416505" c="0.00026176065330691501" d="-8.0153977582532739e-06" /> - <width sOffset="58.955990756036499" a="2.4884958530036796" b="-9.8106603421356867e-05" c="0.0001598391019600742" d="-7.945389103912718e-06" /> - <width sOffset="62.392355444597342" a="2.4897237860448751" b="0.00071895246873900087" c="0.0010104241620306983" d="-0.00017628942701619304" /> - <width sOffset="66.484142646199302" a="2.4975056621955787" b="0.00013313890717557564" c="-0.00086786863886543315" d="0.00013915984658795331" /> - <width sOffset="69.075911930929806" a="2.4944437397777843" b="-0.0015611696919470303" c="0.00021338209413837892" d="0.00013917730285690306" /> - <width sOffset="70.342363629345641" a="2.4930915428231755" b="-0.00035101407263535972" c="0.00035159688720121449" d="4.6909023955311877e-06" /> - <width sOffset="70.840830896597026" a="2.493004515928245" b="3.0016466104742373e-06" c="-2.6366476553207186e-05" d="9.7033496825284659e-07" /> - <width sOffset="79.195833105823112" a="2.4917549830684722" b="-0.0002343765044725641" c="-3.2923184755494618e-06" d="1.9219183007194919e-06" /> - <width sOffset="80.849334546343243" a="2.4913671283383731" b="-0.00022950025086890952" c="0.00060851643067153264" d="-9.0772402350364185e-05" /> - <width sOffset="85.939346289942932" a="2.4939941047683858" b="-0.0010900426818036902" c="0.00027345050547749271" d="1.4122274743162877e-05" /> - <width sOffset="87.687520964767259" a="2.49299966584549" b="-4.4863107621995538e-06" c="4.9885542870995499e-06" d="-1.3196225912448945e-06" /> - <width sOffset="89.315754280716419" a="2.4929998900700987" b="1.2632223372385093e-06" c="7.1118247957791675e-08" d="-1.1930061116187865e-08" /> - <width sOffset="97.926818619089431" a="2.4930084236950956" b="-1.6582749687537972e-07" c="-0.00024775565026915677" d="2.7717606733956061e-05" /> - <width sOffset="99.435675455609726" a="2.4925393346291225" b="-0.00055851165982457392" c="-0.00012514305771418307" d="2.8697303492326261e-05" /> - <width sOffset="102.90984489403525" a="2.4902918680036112" b="-0.00038893130426289647" c="0.00025832393895905745" d="-1.3015867596231016e-05" /> - <width sOffset="107.58554799767182" a="2.4927903731822489" b="0.0011730942993216809" c="-0.0010010053481872307" d="0.00025098176567252143" /> - <width sOffset="109.33502870406699" a="2.4931228275509838" b="-2.4858111691455995e-05" c="-0.00070519756286519398" d="0.00024423479210795423" /> - <width sOffset="109.55559663050292" a="2.4930856574436016" b="-0.00030029981813969138" c="-0.00058672768395769191" d="0.00023867462782658664" /> - <width sOffset="111.90927773264298" a="2.4922405530369183" b="0.00090440011533434372" c="-0.00025687445586379759" d="1.6143701069114824e-05" /> - <width sOffset="119.06625742749429" a="2.4914738493621922" b="-0.00029173509025786346" c="0.0011104724519577815" d="-0.00017761959379356722" /> - <width sOffset="119.67551780539623" a="2.4916681423142544" b="0.00086360241639231753" c="0.00077944602956180856" d="-0.00017671779169955965" /> - <width sOffset="123.32191243070247" a="2.4966130043165897" b="-0.00050108395745233447" c="-0.00022788503210905727" d="3.7291735121045165e-05" /> - <width sOffset="128.32130210579783" a="2.4930719153977279" b="1.6541262789001622e-05" c="-0.00020576122611428669" d="4.21891034610305e-05" /> - <width sOffset="129.79543898028953" a="2.4927843132525407" b="-0.00031505832802897335" c="-5.4339104800768754e-05" d="2.0816765029148912e-05" /> - <width sOffset="134.16648075213504" a="2.4921074505111136" b="0.00040308040144882568" c="3.3095228861999841e-06" d="-1.7980818865904416e-06" /> - <width sOffset="138.77719560776791" a="2.4938600514649503" b="0.00031892432987412232" c="-2.2256077013531621e-06" d="-8.0014452638127947e-06" /> - <width sOffset="139.91536015518284" a="2.4942083594105284" b="0.00028276245275672251" c="-1.8882981754725695e-05" d="3.0510410290198649e-07" /> - <width sOffset="150.03528133007615" a="2.4954522468168978" b="-5.6864204458612587e-06" c="-9.0349043845580926e-06" d="1.8278125771061967e-07" /> - <width sOffset="160.15520250496945" a="2.4946588470267193" b="-0.00013239403715055919" c="-1.7424843108801145e-06" d="2.2882262592657291e-07" /> - <width sOffset="170.27512367986276" a="2.4933777310470511" b="-9.7358544278378523e-05" c="3.4015475820013743e-06" d="5.8842264822455346e-07" /> - <width sOffset="176.2833047496157" a="2.4930431930698589" b="7.238748822762384e-06" c="-6.3262955066214474e-05" d="1.4145366487378471e-06" /> - <width sOffset="179.73550997749589" a="2.4923724299311747" b="-0.00037898050050070718" c="-0.00041139342973098373" d="9.2587385579996845e-05" /> - <width sOffset="180.39504485475607" a="2.4919700908522087" b="-0.00080081441071593517" c="-0.00023209097989296843" d="9.1754046574546401e-05" /> - <width sOffset="183.66290488928155" a="2.490076620477196" b="0.00062180331190125567" c="0.00019387824323907954" d="-2.1134653557448758e-05" /> - <width sOffset="190.51496602964937" a="2.4966407663997945" b="0.00030187147367491981" c="-0.00023716341953757057" d="-2.1242191773912804e-05" /> - <width sOffset="190.88941834271236" a="2.49671943382008" b="0.00011532329952645585" c="-9.7294197673264971e-05" d="4.6667623660905148e-06" /> - <width sOffset="199.14002523177544" a="2.4936688987232447" b="-0.0005371143156205245" c="0.00061641931512130838" d="-9.8660516387426601e-05" /> - <width sOffset="200.63488720454268" a="2.4939138759150259" b="0.00064440525574025592" c="0.00017405965185145973" d="-0.00010146347603481338" /> - <width sOffset="202.38619640513616" a="2.4950312821656793" b="0.00032047880897039037" c="-0.00010752346444187589" d="5.6294931055155652e-06" /> - <width sOffset="210.75480837943587" a="2.4934823416245475" b="-0.0002964033690626474" c="2.801275453556939e-05" d="7.233739490927057e-06" /> - <width sOffset="213.39329990884494" a="2.4930281694206107" b="2.4954794656869162e-06" c="-0.00021620866673300771" d="2.4460400551283141e-05" /> - <width sOffset="218.67244967381146" a="2.4906145145826963" b="-0.00023520869142947508" c="0.0015153243183023519" d="-0.00028827416647512138" /> - <width sOffset="220.87472955432918" a="2.4943668015211227" b="0.0022447069887837228" c="-0.00038926566768246435" d="-0.00028798324864897382" /> - <width sOffset="222.66685005067211" a="2.495481825553175" b="-0.0019252588082637623" c="7.6360460111362185e-05" d="1.9428745943760324e-05" /> - <width sOffset="229.95793215513004" a="2.493034364918417" b="0.0022867312671403062" c="-0.0043258682503961986" d="0.0020468324054151114" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="3" type="driving" level="false"> - <link /> - <width sOffset="0" a="0" b="0" c="0.0062382978511284926" d="-5.7197541183496333e-05" /> - <width sOffset="7.6809764915433334" a="0.34212384993408129" b="0.085708919658266755" c="0.0065117773265635087" d="-0.00059703527759274815" /> - <width sOffset="8.3563848815699657" a="0.40279894330601973" b="0.093688077361004068" c="0.0053070110498621434" d="-0.00059607182476838043" /> - <width sOffset="12.456291021994275" a="0.83503899333488896" b="0.10714604590083471" c="0.0010947375789033748" d="-0.00024242515336303345" /> - <width sOffset="18.225626967850189" a="1.4430853244579342" b="0.095570327391689733" c="-0.00038532360413088098" d="-0.00011763052637827671" /> - <width sOffset="18.476306056463272" a="1.4670167402940586" b="0.095354966543110348" c="-0.00046832568369529451" d="-0.00011564434782801294" /> - <width sOffset="21.013557714834405" a="1.7040524458921626" b="0.090745014195895729" c="0.00022498012879383449" d="-6.975842511911197e-05" /> - <width sOffset="28.596227231356579" a="2.3746642882210582" b="0.082124239359061255" c="-0.0013620105351890397" d="-7.0181375094689993e-05" /> - <width sOffset="32.325761889539876" a="2.6583639889434298" b="0.069036359854602242" c="-0.0016507887720450373" d="1.3864874893782782e-05" /> - <width sOffset="38.716148406249886" a="3.0357379249919076" b="0.049636604577925229" c="-0.0013833779188948052" d="1.3415555046383598e-05" /> - <width sOffset="39.620031007234616" a="3.0794832703441037" b="0.047168663791574458" c="-0.0014008977163613226" d="-4.3774142807209652e-05" /> - <width sOffset="41.786661501738536" a="3.1746589013041056" b="0.040481743107239399" c="0.0037065790091224335" d="-0.00093523737394193981" /> - <width sOffset="43.437058054570457" a="3.2473616100300573" b="0.045074170230079473" c="-0.00092276097234870579" d="-0.00087659911779544662" /> - <width sOffset="47.484934829269264" a="3.3565555244735332" b="-0.0054863105478794669" c="0.008394753064565769" d="-0.00067948442481822839" /> - <width sOffset="48.109253990293155" a="3.3562370274281768" b="0.0042011629004744498" c="0.0056937379528669832" d="-0.00018266957452203801" /> - <width sOffset="48.836069581143192" a="3.3622281416115865" b="0.012188266345973312" c="0.0052972452676641017" d="-0.00018162489603001984" /> - <width sOffset="50.424905472869341" a="3.3942371884987903" b="0.027645691777871743" c="-0.00082377431565021537" d="-0.00027075359659372558" /> - <width sOffset="54.462471195143621" a="3.4746083288821223" b="0.0077521817068926663" c="0.00055301137139095971" d="0.00049891113431722585" /> - <width sOffset="54.713689000016757" a="3.4765986256772132" b="0.0081244937345048129" c="-0.0010880786025006944" d="8.6035912123320205e-05" /> - <width sOffset="58.394284012464027" a="3.4960514043413329" b="0.003611469008917019" c="-0.0008724896304387695" d="7.7748205731198789e-05" /> - <width sOffset="58.955990756036499" a="3.497818486788602" b="0.0027048944414776073" c="-0.00074020603778889081" d="7.7839530021142452e-05" /> - <width sOffset="62.392355444597342" a="3.5015313159580588" b="0.00037518681380570643" c="-0.00087024582450379723" d="0.00024618356793343078" /> - <width sOffset="66.484142646199302" a="3.5053616758049091" b="0.0056188148481672185" c="0.0018660228302068702" d="-6.926570563168982e-05" /> - <width sOffset="66.74088398543779" a="3.50692608661927" b="0.006563288070403045" c="0.0023459098547182521" d="-0.00046735799728945821" /> - <width sOffset="69.075911930929806" a="3.5290921594276869" b="0.0098742123574431725" c="-0.00092973605067827767" d="-0.00046638074004069991" /> - <width sOffset="69.703892904345139" a="3.5348108266215603" b="0.0081547333871923727" c="-0.00074142538267698915" d="-0.00013017487325409535" /> - <width sOffset="70.342363629345641" a="3.5396812663832846" b="0.0070487812274122076" c="-0.0006001947181107194" d="4.3115272207120356e-06" /> - <width sOffset="79.195833105823112" a="3.5580338890692955" b="-0.0025649667689163075" c="-0.00048418300109006392" d="3.3152867453291061e-06" /> - <width sOffset="80.849334546343243" a="3.5524839117445137" b="-0.0041389687000767082" c="-0.0010700125719737257" d="9.6009607396063169e-05" /> - <width sOffset="81.662956371309747" a="3.5484597399912872" b="-0.0056894704069118413" c="-0.00048902170196529933" d="0.00013218382784069066" /> - <width sOffset="85.939346289942932" a="3.5255237301496196" b="-0.0026200258471060153" c="0.00015575520770734944" d="2.7289150746843491e-05" /> - <width sOffset="89.315754280716419" a="3.5195034838614019" b="-0.00063493991764864387" c="0.00043437868114020773" d="2.7806581072414406e-05" /> - <width sOffset="90.248453688057907" a="3.519311715779482" b="0.00024791874503910481" c="0.0011835253130041269" d="-0.00028120921880010237" /> - <width sOffset="93.649189780355869" a="3.522782472004403" b="-0.0014589256410681094" c="-9.703576900671926e-06" d="3.5316956821510063e-07" /> - <width sOffset="99.435675455609726" a="3.5140839378408981" b="-0.0015357488873257354" c="4.0376304389591384e-06" d="-9.6575142071820992e-07" /> - <width sOffset="102.18851814190907" a="3.5098667135280754" b="-0.0015354747711653909" c="-8.3584501530804318e-05" d="-4.3853090344068517e-06" /> - <width sOffset="102.90984489403525" a="3.5087139985825733" b="-0.0016629034356697829" c="-0.00017744333609571563" d="3.7327862055763819e-05" /> - <width sOffset="107.58554799767182" a="3.5008751513513801" b="-0.000874040647264321" c="0.0014229129548994916" d="-0.00022666977121266451" /> - <width sOffset="109.55559663050292" a="3.5029426010120619" b="0.0020931963498389558" c="0.00012303155124972638" d="-0.00022132674905676517" /> - <width sOffset="111.90927773264298" a="3.5056650196865107" b="-0.0010059771299557507" c="-8.4327553575991098e-05" d="1.2041777007089056e-06" /> - <width sOffset="119.06625742749429" a="3.4945872540141827" b="-0.0020279958421579691" c="-0.0010791992130779761" d="0.00019496747255510132" /> - <width sOffset="119.67551780539623" a="3.4929951728209656" b="-0.003125907753599123" c="-0.00072177626324362973" d="0.00019481759914731611" /> - <width sOffset="123.32191243070247" a="3.481445377215473" b="-0.00061867228714374022" c="0.00048355192021697741" d="-1.9191927673278001e-05" /> - <width sOffset="129.28792267478468" a="3.4908901668451859" b="0.0031017682674976624" c="8.9784493687255118e-05" d="-2.1324876835265804e-05" /> - <width sOffset="129.79543898028953" a="3.4924847032213115" b="0.0031764243318252077" c="4.1503040730514297e-05" d="-2.1362825319272789e-05" /> - <width sOffset="134.16648075213504" a="3.5053778671550297" b="0.0023147725640541811" c="-2.3306143970673142e-05" d="1.2520215964696912e-06" /> - <width sOffset="138.77719560776791" a="3.5156778856374027" b="0.0021797056181242077" c="-2.5324198253515184e-05" d="7.4553849708118905e-06" /> - <width sOffset="139.19159263845631" a="3.5165773309201933" b="0.0021625578986949161" c="-0.00061211723922574915" d="4.275181661445026e-05" /> - <width sOffset="139.91536015518284" a="3.5178380777781193" b="0.0013436820105649588" c="-0.00053502625236142947" d="3.4362165808403527e-05" /> - <width sOffset="149.68022435197565" a="3.5119376022510003" b="0.00072432736706712895" c="2.1458117476942708e-05" d="1.9737315828212904e-05" /> - <width sOffset="150.03528133007615" a="3.5121983683150626" b="0.00074702965702756383" c="4.3664403035055661e-05" d="1.9492206497867507e-05" /> - <width sOffset="154.1645037217105" a="3.5173998717906709" b="0.0021046840069221715" c="2.7668861736311245e-05" d="-8.5163224181957488e-07" /> - <width sOffset="160.15520250496945" a="3.5308182944789408" b="0.0023445043002292406" c="1.4081227252818746e-05" d="-9.0304042316669023e-07" /> - <width sOffset="170.27512367986276" a="3.5550506714842092" b="0.0023520574127443451" c="-1.3824216503437103e-05" d="-7.6556608774793373e-07" /> - <width sOffset="179.73550997749589" a="3.575416590503945" b="0.0018849405673415811" c="0.0003272284178222373" d="-9.1938415017004378e-05" /> - <width sOffset="180.39504485475607" a="3.5767757383297361" b="0.0021966018357807513" c="0.00014557042101288306" d="-9.1891849825769399e-05" /> - <width sOffset="183.66290488928155" a="3.5823016925101983" b="0.000204095194881485" c="-0.00028174976733098822" d="2.0996850306229958e-05" /> - <width sOffset="186.94621434902922" a="3.5806776760655246" b="-0.00096700239654413662" c="-0.00035816671272058143" d="3.5136079506677762e-05" /> - <width sOffset="190.51496602964937" a="3.574262067831282" b="-0.0021809403927687296" c="1.6759938867843719e-05" d="3.501713941992334e-05" /> - <width sOffset="190.88941834271236" a="3.5734495981714605" b="-0.0021536590612811568" c="-0.00010763509993233435" d="9.1081853484764045e-06" /> - <width sOffset="199.14002523177544" a="3.5534691291829308" b="-0.0020697176303136763" c="-0.00048039357719639042" d="0.00011243546410180804" /> - <width sOffset="200.63488720454268" a="3.5496772771799656" b="-0.0027522127922785852" c="2.3384022041748491e-05" d="0.00011559398773696922" /> - <width sOffset="201.06581657527499" a="3.5485048605203366" b="-0.0026676616154016233" c="-1.5639007914057143e-05" d="0.00010230648628262551" /> - <width sOffset="202.38619640513616" a="3.5451907736659569" b="-0.0021738762035019852" c="0.00013811261391917957" d="-4.7864828586983737e-06" /> - <width sOffset="209.43002362444599" a="3.5350580974522128" b="-0.00094064467303962482" c="0.00080814124287769426" d="-5.0421287896924979e-05" /> - <width sOffset="210.75480837943587" a="3.5351130447675665" b="0.00093510537694187104" c="0.000608047332262427" d="-4.8641262475190817e-05" /> - <width sOffset="218.67244967381146" a="3.5564917199381556" b="0.0014158840287646374" c="-0.0018914675044615229" d="0.00026409330455122953" /> - <width sOffset="220.87472955432918" a="3.5532570231661316" b="-0.0030726109948772317" c="-0.00014676602458018467" d="0.00026375404823513393" /> - <width sOffset="222.05700076790549" a="3.549855082669501" b="-0.0023136467791499736" c="0.0012938277310543176" d="0.00030737713854381515" /> - <width sOffset="222.66685005067211" a="3.5489950193343658" b="-0.00039261138776815408" c="-0.0001577392618255746" d="-3.4856052932135566e-08" /> - <width sOffset="226.00351999094505" a="3.5459275408928193" b="-0.001446423290050207" c="-0.0017919379302343517" d="0.0002939385802688597" /> - <width sOffset="229.95793215513004" a="3.5303627513233815" b="-0.0018292616701540685" c="0.019048583795775825" d="-0.011681953947662074" /> - <roadMark sOffset="0" color="standard" width="0.30015685778938728" weight="bold" type="solid"> - <type name="solid"> - <line length="230.99465072922249" space="0" width="0.30015700000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="2" /> - </link> - <width sOffset="0" a="3.7952567993580146" b="0.03847347843882145" c="-0.0055174826165863286" d="0.00032860582009831547" /> - <width sOffset="2.0473913785389186" a="3.8537190072804601" b="0.020012946682438665" c="-0.0037044014499217361" d="0.00012383166393065695" /> - <width sOffset="8.3563848815699657" a="3.8636293202220111" b="-0.011942379285205838" c="-0.0013663674505952352" d="0.0001225380264418615" /> - <width sOffset="17.218603550703506" a="3.735770349933385" b="-0.0072884608730521237" c="0.0023483073394089888" d="0.00011953943262449501" /> - <width sOffset="18.225626967850189" a="3.730934184510962" b="-0.002195186470425603" c="-6.3909081844591123e-06" d="-5.2551943985553346e-06" /> - <width sOffset="18.476306056463272" a="3.730383412779144" b="-0.0021993813138374285" c="-7.3352767218112336e-06" d="-3.4238832013508494e-06" /> - <width sOffset="28.596227231356579" a="3.7038260758780628" b="-0.0033997946019551292" c="-0.00011183473973046662" d="-3.5531017082202707e-06" /> - <width sOffset="35.735722736948219" a="3.6725597381500847" b="-0.0055400121679962562" c="-0.00039757799398112487" d="4.8367165964459697e-05" /> - <width sOffset="38.716148406249886" a="3.6537970008603322" b="-0.0066209879965240977" c="3.3111568241289094e-05" d="4.897724327559602e-05" /> - <width sOffset="41.786661501738536" a="3.6351971879709581" b="-0.0050323691949562578" c="-0.004907736534697389" d="0.00094044047441020813" /> - <width sOffset="47.484934829269264" a="3.6211703681265215" b="0.030645588791335401" c="-0.0087936855861628204" d="0.00074332578143316999" /> - <width sOffset="48.095519656328293" a="3.6367728986157246" b="0.020738373202507199" c="-0.0055112311459958822" d="0.00046481928697540193" /> - <width sOffset="48.836069581143192" a="3.6492970381287826" b="0.013340430060780664" c="-0.0044803740809405152" d="0.00046377460847763874" /> - <width sOffset="54.462471195143621" a="3.6651267972805859" b="0.0069679589007159391" c="-0.001308569473335742" d="-0.00030589012243929082" /> - <width sOffset="54.66250889444234" a="3.6664658407291784" b="0.0064077117928684549" c="-0.00013755817884159233" d="-5.3778813401238724e-05" /> - <width sOffset="58.394284012464027" a="3.6856674807010954" b="0.0031342446688971091" c="-5.2284169386884608e-06" d="-4.549110699723801e-05" /> - <width sOffset="58.955990756036499" a="3.6874182951920789" b="0.0030853116878251687" c="-8.1528747964520814e-05" d="-4.5440421008181197e-05" /> - <width sOffset="66.74088398543779" a="3.6850573102937112" b="-0.0064457640259877741" c="-0.0016760123601284056" d="0.00035265187061042473" /> - <width sOffset="69.075911930929806" a="3.6653578088413146" b="-0.0085044853162536318" c="0.00079380738327721335" d="0.00035273101534295711" /> - <width sOffset="69.703892904345139" a="3.6604175538975974" b="-0.0070901843311454819" c="0.0003913871210521242" d="1.6525148548642593e-05" /> - <width sOffset="73.869753023358044" a="3.6388678242383552" b="-0.0029689046892758426" c="0.00038921382351474908" d="4.8073622555922597e-06" /> - <width sOffset="79.195833105823112" a="3.6348224020793634" b="0.0015861764936170673" c="0.00046653266404413687" d="4.4801201957546659e-06" /> - <width sOffset="81.662956371309747" a="3.6416426143907872" b="0.0039699710780109997" c="0.00015304735629013294" d="-3.1694100248521959e-05" /> - <width sOffset="89.315754280716419" a="3.6667823354233429" b="0.00074392708035663771" c="-0.00057441682767964543" d="-3.1620084819850903e-05" /> - <width sOffset="90.248453688057907" a="3.6669508384303562" b="-0.00041011099807068858" c="-0.0013342340175991618" d="0.00027739571505257157" /> - <width sOffset="93.649189780355869" a="3.661035578766092" b="0.00013938274494267879" c="-0.00017991128717832969" d="-4.1666733477316165e-06" /> - <width sOffset="93.915380095013234" a="3.661059854487922" b="4.2715743188658008e-05" c="5.7336952393834771e-05" d="-3.9999187153182513e-06" /> - <width sOffset="99.435675455609726" a="3.6623700440884948" b="0.00031007306847609948" c="-3.2511946264511942e-06" d="-5.0516534540893351e-06" /> - <width sOffset="102.18851814190907" a="3.6630936037090773" b="0.00017732655918293363" c="3.4676030344278432e-05" d="-1.6320958420132882e-06" /> - <width sOffset="109.55559663050292" a="3.6656294072225051" b="0.00042250828111925487" c="8.6317647957623199e-06" d="-1.9698543272299097e-06" /> - <width sOffset="113.16438573194239" a="3.6671739847651215" b="0.00040784635962600184" c="3.2380008673564435e-05" d="-4.6277558217964699e-06" /> - <width sOffset="119.67551780539623" a="3.6699248332431282" b="0.00024092847059103723" c="-6.133975071061069e-05" d="-4.1095698262290242e-06" /> - <width sOffset="127.13519575825183" a="3.6666028095958225" b="-0.0013602742723795376" c="-0.0020249564919502944" d="0.00032410177451576108" /> - <width sOffset="129.28792267478468" a="3.6575237065986785" b="-0.0055727413737205606" c="0.00011842106435417139" d="0.00032623472368180638" /> - <width sOffset="129.79543898028953" a="3.6547685977150701" b="-0.0052004525575161022" c="0.00059505414004126344" d="0.00032960743377602052" /> - <width sOffset="131.11564501037503" a="3.649698516489666" b="-0.0019058025702311829" c="5.9078979414286922e-05" d="-2.7259898509856538e-07" /> - <width sOffset="139.19159263845631" a="3.6380169571694907" b="-0.0010049025609409944" c="0.00064853600318877066" d="-3.5569030623122891e-05" /> - <width sOffset="139.91536015518284" a="3.6376158844915141" b="-0.00012202135679995106" c="0.00056977157891686188" d="-3.5606586945477177e-05" /> - <width sOffset="149.68022435197565" a="3.6576000800281232" b="0.00081992380613981188" c="-2.3167601129136537e-05" d="-2.0981736987019678e-05" /> - <width sOffset="150.03528133007615" a="3.6578873399113929" b="0.00079553695240943691" c="-4.5009984237769603e-05" d="-2.1088231960277567e-05" /> - <width sOffset="154.1645037217105" a="3.6589201257041628" b="-0.00065486879454318501" c="-4.8785475170040069e-05" d="-7.4439322059320258e-07" /> - <width sOffset="160.15520250496945" a="3.6530861255302902" b="-0.00131953237359242" c="-5.7263359291397317e-05" d="-9.3382397435685561e-07" /> - <width sOffset="163.55515712227555" a="3.6479011270343005" b="-0.0017413021701387071" c="-0.0001067988885952558" d="4.527577277330797e-06" /> - <width sOffset="170.27512367986276" a="3.6327507539825517" b="-0.0025633037574331941" c="-1.576345180012974e-05" d="4.6670403957845241e-06" /> - <width sOffset="180.39504485475607" a="3.6100329077496061" b="-0.0014484594486101655" c="0.00012531484524639554" d="4.5377622143876052e-06" /> - <width sOffset="184.61142906142106" a="3.6064936240368293" b="-0.00014969278875368326" c="4.6954697583596273e-05" d="6.1835255136500208e-07" /> - <width sOffset="186.94621434902922" a="3.6064079540534961" b="7.967781717550538e-05" c="0.0003345202759977342" d="-1.3520876649100008e-05" /> - <width sOffset="190.51496602964937" a="3.6103382055905513" b="0.0019507122206237097" c="0.00019232453633902561" d="-1.3380933181931938e-05" /> - <width sOffset="200.63488720454268" a="3.6359076282567995" b="0.0017321938307005864" c="-0.00021475694610461197" d="-1.3020832886238497e-05" /> - <width sOffset="201.06581657527499" a="3.6366131590886344" b="0.0015398497686226484" c="-4.3128560927484445e-05" d="2.6666856981542834e-07" /> - <width sOffset="203.93556378281687" a="3.6406832579501711" b="0.0012989020402964496" c="2.8968555930044462e-05" d="2.4439036685910111e-06" /> - <width sOffset="209.43002362444599" a="3.6490999343507768" b="0.0018385728504700558" c="-0.0007019217560688476" d="4.8078708706244402e-05" /> - <width sOffset="210.75480837943587" a="3.6504155229401318" b="0.00023192465061553985" c="-0.00051659560529077032" d="4.6060110316251288e-05" /> - <width sOffset="220.50709759604911" a="3.6462667088276985" b="0.0032978819157434358" c="0.0079036636748658073" d="-0.0057883719653797914" /> - <width sOffset="220.87472955432918" a="3.6482597166512369" b="0.0067622086573126718" c="0.0015196627321297158" d="-0.0057884845351622045" /> - <width sOffset="221.15141049828287" a="3.6501244212402533" b="0.0062737659046575352" c="0.00078792500175948554" d="1.1553024270732386e-05" /> - <width sOffset="222.05700076790549" a="3.6564606350280426" b="0.007729264022751983" c="0.00031420462129184041" d="-3.2070066033802107e-05" /> - <width sOffset="226.00351999094505" a="3.6898868117409447" b="0.0087108179983058018" c="0.0015683589840091755" d="-0.00032604350235561705" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="47.484934829269264" color="standard" width="0.29356967890012498" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29357" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="1" /> - </link> - <width sOffset="0" a="3.6621985515402544" b="-0.0019614054402406905" c="0.00068355579186105326" d="-0.00018273279209102413" /> - <width sOffset="2.0473913785389186" a="3.6594798602139451" b="-0.0014603372045512257" c="-0.00023354783509312228" d="2.204136407664933e-05" /> - <width sOffset="6.9311692798320337" a="3.6493449560678757" b="-0.0021643840421728781" c="0.0003602369856679174" d="-2.6996223521073345e-05" /> - <width sOffset="8.3563848815699657" a="3.6469138169297732" b="-0.0013020606852047929" c="0.00023359655642924917" d="-3.8210409478997688e-05" /> - <width sOffset="14.239630109073573" a="3.6395579042277411" b="-0.002521130957292575" c="-0.00034093104330215873" d="4.6355119489006328e-05" /> - <width sOffset="17.218603550703506" a="3.6302474592326552" b="-0.0033182746901585826" c="-0.00038345746694827163" d="4.9353713306548485e-05" /> - <width sOffset="18.476306056463272" a="3.6255656847540423" b="-0.0040486201043804723" c="-0.00019112206740103379" d="5.0123607898049269e-05" /> - <width sOffset="22.326763392215071" a="3.6100044704551761" b="-0.0032910337429776365" c="0.00027322911515612123" d="-2.3440404190146717e-05" /> - <width sOffset="27.077362558781942" a="3.5980232727112709" b="-0.0022820523874928014" c="0.00015020400153493638" d="1.2008255673748219e-05" /> - <width sOffset="28.596227231356579" a="3.5949457333280641" b="-0.0017426659518240614" c="0.00020159520993149959" d="1.0092078201165295e-05" /> - <width sOffset="35.735722736948219" a="3.5964524492518883" b="0.0026791624605352338" c="0.00062739344402888665" d="-4.182818947125848e-05" /> - <width sOffset="37.185945766943405" a="3.6015297555749712" b="0.0042349708302149361" c="0.00054461239454212671" d="-4.9663956969557087e-05" /> - <width sOffset="38.716148406249886" a="3.6091073940238148" b="0.0055528380142170694" c="0.00031439294659623676" d="-4.8159459117041359e-05" /> - <width sOffset="42.432997018414767" a="3.6316168813198164" b="0.0058939764637537806" c="-0.00019606425169513806" d="-3.561370805054956e-05" /> - <width sOffset="48.095519656328293" a="3.6522388514691846" b="0.00024776875651121716" c="-0.0027219186449257094" d="0.00024289278641523212" /> - <width sOffset="48.836069581143192" a="3.6510282433741148" b="-0.0033840469862037037" c="-0.0021849202569495479" d="0.000242425240270472" /> - <width sOffset="53.394214945583485" a="3.6131662948613048" b="-0.0081920336806118738" c="0.0014206163317733948" d="0.00014139781476858921" /> - <width sOffset="54.66250889444234" a="3.6053500194741819" b="-0.0039061708322560562" c="0.00060403834683966028" d="-0.00011071349426810779" /> - <width sOffset="56.543574486048783" a="3.5994026834194486" b="-0.0028089477934931453" c="0.00015622694707961003" d="1.3603663025315086e-05" /> - <width sOffset="58.955990756036499" a="3.5937265250613439" b="-0.0018176690897082244" c="0.00025606940416411428" d="1.383885766794686e-05" /> - <width sOffset="61.885939884879008" a="3.5909471821203098" b="3.9274816989776778e-05" c="0.00013915582419574721" d="4.6453787931860238e-07" /> - <width sOffset="69.075911930929806" a="3.5985959887964327" b="0.0021123716188030609" c="0.00014774206871737448" d="1.5305526465737189e-06" /> - <width sOffset="70.267725991476937" a="3.6013259899316314" b="0.0024710558547050461" c="0.00030323955875779618" d="-4.4025588898732099e-05" /> - <width sOffset="73.869753023358044" a="3.6121036819837018" b="0.002941966979719152" c="3.6193144270795814e-05" d="-3.2307802605676264e-05" /> - <width sOffset="78.161869535133064" a="3.6228431124587948" b="0.0014671087428085004" c="-0.00013356500628021743" d="1.8582333757085895e-06" /> - <width sOffset="79.195833105823112" a="3.6242193117607471" b="0.0011968658453056537" c="-0.0001282744781027102" d="4.963365347684954e-07" /> - <width sOffset="88.14904729903742" a="3.6250088359665953" b="-0.00098071283466858112" c="-0.0005080121274248302" d="0.00036349412246264079" /> - <width sOffset="89.222601363970284" a="3.6238202423387156" b="-0.00081466888621413371" c="0.00036882227291223181" d="-4.1580140143678055e-06" /> - <width sOffset="89.315754280716419" a="3.6237475506374257" b="-0.0007460633883187729" c="0.0003674788312273263" d="-4.2320288207847983e-06" /> - <width sOffset="93.915380095013234" a="3.6276786970478545" b="0.0023658613633864736" c="6.8505960366277235e-05" d="-4.3987834212112179e-06" /> - <width sOffset="99.435675455609726" a="3.6420865987385729" b="0.002720066531121469" c="-7.9209408764001116e-09" d="-4.6815877355481483e-06" /> - <width sOffset="109.55559663050292" a="3.6647606043685501" b="0.0012815426227873149" c="-0.0001238750693249048" d="-8.8362802473265029e-06" /> - <width sOffset="111.84865163353095" a="3.6669413643844551" b="0.00057405175929593657" c="-8.2372142429516257e-06" d="3.5970943659608615e-07" /> - <width sOffset="113.16438573194239" a="3.6676832232787886" b="0.00055424393166967256" c="-5.1891978688861976e-05" d="3.0176109312234465e-06" /> - <width sOffset="119.67551780539623" a="3.6699250030574344" b="0.0002622862838603427" c="5.7197228181830244e-06" d="3.2195603186583889e-06" /> - <width sOffset="127.13519575825183" a="3.6735363210862766" b="0.00088509550494264414" c="0.0019494189111532916" d="-0.00032499178402335265" /> - <width sOffset="129.79543898028953" a="3.6835683418051333" b="0.0043571551759576683" c="-0.00062417741149016037" d="-0.00032836449411261502" /> - <width sOffset="130.15248377975524" a="3.6850295246699902" b="0.0037858558873301021" c="-0.0011135835803940237" d="-0.00032775874322099786" /> - <width sOffset="131.11564501037503" a="3.6873500114934927" b="0.00072856956762430746" c="-0.00021921279827270861" d="2.1212895398174492e-06" /> - <width sOffset="135.56587774328091" a="3.6864378598727359" b="-0.0010964926827581102" c="-0.00029828923592544029" d="1.1986288340915533e-05" /> - <width sOffset="139.91536015518284" a="3.6770119230014386" b="-0.0030110305437280388" c="-0.00014872333150247127" d="1.1865257846988358e-05" /> - <width sOffset="144.99595750458298" a="3.6594312154612374" b="-0.0036034224551304552" c="-0.00027592247032322726" d="2.5674720957150783e-05" /> - <width sOffset="150.03528133007615" a="3.6375510704606633" b="-0.004428335785992131" c="0.00011492833963436743" d="2.4521303309409037e-05" /> - <width sOffset="153.5056285985055" a="3.6245921799422978" b="-0.0027447003028558785" c="0.0003743540547802407" d="-3.6013102271213066e-05" /> - <width sOffset="158.94689190044494" a="3.6149394130501484" b="-0.0018695395155541915" c="-6.3736522906903935e-05" d="-4.1053809783188265e-06" /> - <width sOffset="160.15520250496945" a="3.6125801298671596" b="-0.0020415482960867148" c="-5.9661818656246807e-05" d="7.8046307896200836e-06" /> - <width sOffset="163.55515712227555" a="3.6052560270246428" b="-0.0021765858774702453" c="5.9955004716122523e-05" d="2.3432295379290695e-06" /> - <width sOffset="170.27512367986276" a="3.594047964097669" b="-0.0010533482934672136" c="0.00010731533195792232" d="2.2526042724470255e-06" /> - <width sOffset="171.19062267170318" a="3.5931752983547414" b="-0.00085119015458793744" c="3.6630474136344987e-06" d="-1.2134141131134994e-06" /> - <width sOffset="180.39504485475607" a="3.584704689090783" b="-0.0010921640674845157" c="-3.074054570584639e-05" d="-1.4148555923350168e-06" /> - <width sOffset="183.74885379054399" a="3.5806426350967562" b="-0.0013461029342685127" c="-0.00011451898444369581" d="2.3055234344726769e-07" /> - <width sOffset="184.61142906142106" a="3.5793964617008047" b="-0.0015431508045275" c="2.1836616269800591e-05" d="4.1499620056172856e-06" /> - <width sOffset="190.51496602964937" a="3.5719013069612231" b="-0.00085142396246556072" c="0.00010293975050772145" d="2.2664750238385672e-06" /> - <width sOffset="193.05461123694749" a="3.570440058059452" b="-0.00028470815770576593" c="4.1028454540526787e-05" d="-1.7649119792573201e-07" /> - <width sOffset="200.63488720454268" a="3.5705625368457774" b="0.00030688199640002375" c="3.8104367178074688e-05" d="-1.565163068748021e-07" /> - <width sOffset="203.93556378281687" a="3.5719849536046384" b="0.00055330689625759065" c="-3.3246764653322465e-05" d="-2.3337514056479525e-06" /> - <width sOffset="210.37125436876761" a="3.5735467761719697" b="-0.00016460362485551426" c="-7.7356665793331053e-05" d="2.0786216653712639e-07" /> - <width sOffset="210.75480837943587" a="3.5734722732966189" b="-0.00022385280558094014" c="-7.5365175448674192e-05" d="3.2636189314484401e-07" /> - <width sOffset="220.50709759604911" a="3.5644241340256149" b="-0.0016007007376070076" c="-0.0071385015773909192" d="0.0058347584375507923" /> - <width sOffset="220.87472955432918" a="3.5631607831802712" b="-0.0044836235502487302" c="-0.00070346190376048448" d="0.0058346055694169351" /> - <width sOffset="221.15141049828287" a="3.5619899786267779" b="-0.0035329343463525401" c="6.6558260491317978e-05" d="3.4568009983888186e-05" /> - <width sOffset="225.35479004534136" a="3.5508829546355711" b="-0.0011411108416359179" c="0.0021934363063539275" d="-0.0004244049197362646" /> - <width sOffset="229.14329840547794" a="3.5549644809316989" b="-0.0027955984607737202" c="-0.010700460112993988" d="0.0058551307921208768" /> - <width sOffset="230.44717883083763" a="3.5461067169836746" b="-0.00083684271317062918" c="0.073453542498708904" d="-0.088515062816657247" /> - <roadMark sOffset="0" color="standard" width="0.17551168402094131" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.175512" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15327851038223128" weight="standard" type="solid"> - <type name="solid"> - <line length="230.99465072922249" space="0" width="0.153279" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="2.493093068653244" b="-1.2993571376702234e-05" c="-1.9668665949998192e-05" d="3.9754392733437604e-06" /> - <width sOffset="4.4927468625066922" a="2.4929981972772266" b="5.1003788418248208e-05" c="0.00023175182005850687" d="-3.0810082486468243e-05" /> - <width sOffset="6.9311692798320337" a="2.4940538362633804" b="0.00063164008750251494" c="-0.00026448160777271942" d="1.8227505111806084e-05" /> - <width sOffset="8.3563848815699657" a="2.4944696018722716" b="-1.1173254303060987e-05" c="-0.00019090302006409337" d="2.3692085137306625e-05" /> - <width sOffset="14.239630109073573" a="2.4926207421911402" b="0.00020270036129304767" c="0.0001273799924835298" d="-6.0873443830695826e-05" /> - <width sOffset="16.23786335831096" a="2.4930487068535099" b="-1.7421083733617365e-05" c="0.00035633245285297642" d="-4.3550633415791391e-05" /> - <width sOffset="18.476306056463272" a="2.4943066954656228" b="0.00092319069985161498" c="7.5765018547948757e-05" d="-3.9002680283728164e-05" /> - <width sOffset="22.326763392215071" a="2.4967581510718349" b="-0.00022811310930847054" c="-0.00026012419207033672" d="3.4561331804461873e-05" /> - <width sOffset="27.077362558781942" a="2.4935093488807398" b="-0.00035964428783504671" c="2.1394129917809657e-05" d="-8.8732805971029027e-07" /> - <width sOffset="28.596227231356579" a="2.4930093439145473" b="-0.00030079577568425594" c="1.9412087649284189e-05" d="8.5063595554792787e-07" /> - <width sOffset="37.185945766943405" a="2.4923969939705959" b="0.00022098105566466936" c="-5.7867303581608968e-05" d="8.6864034534042144e-06" /> - <width sOffset="38.716148406249886" a="2.4926307656955959" b="0.00010490181961941847" c="-1.741371442269616e-05" d="7.2842101642348387e-06" /> - <width sOffset="42.432997018414767" a="2.4931541306053875" b="0.00027734683399751464" c="3.7262146842286198e-05" d="-5.2615409022573979e-06" /> - <width sOffset="48.836069581143192" a="2.4950764570094313" b="0.00010737220874396103" c="-6.3472651371465776e-05" d="-5.0238507392936168e-06" /> - <width sOffset="53.394214945583485" a="2.49377134900947" b="-0.00078439989013238606" c="-0.00042267911048437373" d="9.6003574762498021e-05" /> - <width sOffset="56.543574486048783" a="2.4901075093585305" b="-0.00059011243161869939" c="0.00030740357778477622" d="-2.8313582530787809e-05" /> - <width sOffset="58.955990756036499" a="2.4900754119790456" b="0.00039872424563830444" c="0.00010148260342534719" d="-2.8573078298648617e-05" /> - <width sOffset="61.885939884879008" a="2.491396158651856" b="0.00025753647008741262" c="8.8884632690744588e-05" d="-1.519875851005074e-05" /> - <width sOffset="66.898903296632398" a="2.4930061725473465" b="2.8619095270698142e-06" c="0.00022681046729509583" d="-2.8827015308275976e-05" /> - <width sOffset="69.075911930929806" a="2.4937899140771655" b="0.0005805332207766134" c="3.9375627178082121e-05" d="-2.985445607696715e-05" /> - <width sOffset="70.267725991476937" a="2.4944871917555762" b="0.00054717240588694586" c="-0.0002173923419361467" d="1.5701685468327618e-05" /> - <width sOffset="78.161869535133064" a="2.4929836406006496" b="5.0389161102806085e-05" c="-9.1786673586568039e-05" d="-1.8464350505919846e-05" /> - <width sOffset="78.412870616139116" a="2.4929902136473459" b="8.2220483040365555e-07" c="-0.00013520969022013654" d="1.0698034993506599e-05" /> - <width sOffset="79.195833105823112" a="2.492913104610917" b="-0.00019123136900641921" c="-0.00010954801958871824" d="1.2159082989677576e-05" /> - <width sOffset="88.14904729903742" a="2.4911460479349676" b="0.00077117275991950675" c="0.00061010967485976525" d="-0.00035083870294119437" /> - <width sOffset="89.222601363970284" a="2.4922430166921004" b="0.00086810009453155697" c="-0.0002259658941692038" d="1.6813430177371192e-05" /> - <width sOffset="89.315754280716419" a="2.4923219355274115" b="0.00082643902424528633" c="-0.00022069732654892121" d="1.7016032827813324e-05" /> - <width sOffset="95.225295731068286" a="2.493010187299622" b="7.3544157715545525e-07" c="-7.1435748602845874e-05" d="3.9798051284383764e-06" /> - <width sOffset="99.435675455609726" a="2.4920439683222488" b="-0.0003891542458581798" c="-1.8933666345246938e-05" d="3.6247087158779663e-06" /> - <width sOffset="109.55559663050292" a="2.4899233907408416" b="0.0003412810884120802" c="7.957037189049e-05" d="8.7868592858310597e-06" /> - <width sOffset="111.84865163353095" a="2.4912303002958751" b="0.00084480615442641429" c="-3.6407458140907744e-05" d="-4.0913039816018259e-07" /> - <width sOffset="119.67551780539623" a="2.4954160033787947" b="0.00019970376845749606" c="-4.7943403999408314e-05" d="-1.8645011416953134e-07" /> - <width sOffset="129.79543898028953" a="2.4923337326375217" b="-0.00082794780752482348" c="-6.5934877103587686e-05" d="-5.3073569191090118e-07" /> - <width sOffset="130.15248377975524" a="2.4920296885780928" b="-0.00087523419359876887" c="7.1180297726807325e-05" d="-1.1364865730074445e-06" /> - <width sOffset="135.56587774328091" a="2.4891973372481297" b="-0.00020449385731857598" c="0.00016012068315601069" d="-1.10014853741014e-05" /> - <width sOffset="139.91536015518284" a="2.4904318167750068" b="0.00056401212281418202" c="1.8793712010493392e-05" d="-1.0886644924908532e-05" /> - <width sOffset="144.99595750458298" a="2.4923547426844603" b="-8.8054878187053195e-05" c="0.00016090866548549936" d="-2.4696108035111e-05" /> - <width sOffset="148.99558491540404" a="2.4929965057442365" b="1.3902180134801705e-05" c="0.00023756155515303963" d="-3.2875415678716037e-05" /> - <width sOffset="150.03528133007615" a="2.4932308083846788" b="0.00040127409484693247" c="0.00013247754784816672" d="-3.4054162752295645e-05" /> - <width sOffset="153.5056285985055" a="2.4947955614086332" b="9.038575430032501e-05" c="-0.0002261951654813316" d="2.6480242828309517e-05" /> - <width sOffset="158.94689190044494" a="2.4928563388142218" b="-1.9159991472159944e-05" c="5.6283017459531064e-05" d="-5.4274784659219236e-06" /> - <width sOffset="160.15520250496945" a="2.4929057867242053" b="9.3082150184867554e-05" c="3.4307908832419968e-05" d="-2.2588656014890815e-05" /> - <width sOffset="161.94612322235048" a="2.49305277494277" b="-1.384724108245694e-06" c="8.2192945202065246e-05" d="-5.8126689742789209e-06" /> - <width sOffset="170.27512367986276" a="2.4953845822073566" b="0.00015807168056610268" c="-6.3613883019964131e-05" d="-5.5088849972090177e-06" /> - <width sOffset="171.19062267170318" a="2.495471752383823" b="2.7743164780937371e-05" c="3.1095036355125737e-05" d="-2.0428666142440215e-06" /> - <width sOffset="180.39504485475607" a="2.4967684761000557" b="8.0943366120381829e-05" c="-2.5488834670955003e-05" d="-1.9798768493422755e-06" /> - <width sOffset="183.74885379054399" a="2.4966785570004699" b="-0.00015683516544065198" c="2.4133752074861071e-05" d="-3.625284784279147e-06" /> - <width sOffset="190.51496602964937" a="2.4955992942753538" b="-0.00032815141617121711" c="-5.4672071208778302e-05" d="-1.8794504605628234e-06" /> - <width sOffset="193.05461123694749" a="2.4943824965298447" b="-0.00064221296962723676" c="1.018793999008281e-05" d="5.6351576120750325e-07" /> - <width sOffset="200.63488720454268" a="2.4903451988848833" b="-0.00039061834253037187" c="2.2357857514594376e-05" d="5.6971151024861101e-07" /> - <width sOffset="210.37125436876761" a="2.4891872802071235" b="0.0002067708391516568" c="3.8050614071834597e-05" d="-1.9719019761967802e-06" /> - <width sOffset="210.75480837943587" a="2.4892720744909775" b="0.00023508948915861635" c="3.1526384705269508e-05" d="-2.1038722393748367e-06" /> - <width sOffset="220.87472955432918" a="2.4926993938703257" b="0.0002267881758759218" c="-3.238860689400005e-05" d="-2.2668115645260567e-06" /> - <width sOffset="223.61038333902934" a="2.4930310092551791" b="-1.3129584296150271e-06" c="0.0009681800985770195" d="-0.0001962613718333473" /> - <width sOffset="225.35479004534136" a="2.4949330622229411" b="0.0015848433301994371" c="-0.0017498695084863206" d="0.00026271155788705383" /> - <width sOffset="229.14329840547794" a="2.490106856263103" b="-0.0003620113216471401" c="0.0093062969514329449" d="-0.0060168241539694791" /> - <width sOffset="230.14233645692661" a="2.4930341171572543" b="0.00021691631031540461" c="0.030459569528702463" d="-0.031392085711583875" /> - <width sOffset="230.44717883083763" a="2.4950415202392886" b="0.010035957844731425" c="-0.05950017559069562" d="0.062978107897226007" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5174682" s="0" t="7.4974047067367344" orientation="none" validLength="8.4830206233871994" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.4830206233871994" s="0" distance="0" tStart="7.4974047067367344" tEnd="7.5615314478239828" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273610138" s="8.4830206233871994" t="7.5615314478239828" orientation="none" validLength="71.501792824757345" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="71.501792824757345" s="8.4830206233871994" distance="0" tStart="7.5615314478239828" tEnd="7.1784520376422121" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542045594" s="79.98481344814455" t="7.1784520376422121" orientation="none" validLength="14.773419478122833" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.773419478122833" s="79.98481344814455" distance="0" tStart="7.1784520376422121" tEnd="7.194495693858749" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810481050" s="94.758232926267382" t="7.194495693858749" orientation="none" validLength="7.9906324618417699" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.9906324618417699" s="94.758232926267382" distance="0" tStart="7.194495693858749" tEnd="7.2850278812772604" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078916506" s="102.74886538810915" t="7.2850278812772604" orientation="none" validLength="43.471307284505997" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="43.471307284505997" s="102.74886538810915" distance="0" tStart="7.2850278812772604" tEnd="7.3338641016864754" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742169" s="146.22017267261515" t="7.3338641016864754" orientation="none" validLength="9.9998157351905377" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.9998157351905377" s="146.22017267261515" distance="0" tStart="7.3338641016864754" tEnd="7.4643516530479719" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742170" s="156.21998840780569" t="7.4643516530479719" orientation="none" validLength="13.528823070973658" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.528823070973658" s="156.21998840780569" distance="0" tStart="7.4643516530479719" tEnd="7.5112938892775922" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742171" s="169.74881147877934" t="7.5112938892775922" orientation="none" validLength="49.598642885549339" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="49.598642885549339" s="169.74881147877934" distance="0" tStart="7.5112938892775922" tEnd="7.3309972999026005" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742172" s="219.34745436432868" t="7.3309972999026005" orientation="none" validLength="28.273249847084287" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="28.273249847084287" s="219.34745436432868" distance="0" tStart="7.3309972999026005" tEnd="7.0019998937990842" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742173" s="247.62070421141297" t="7.0019998937990842" orientation="none" validLength="117.42005713484028" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="117.42005713484028" s="247.62070421141297" distance="0" tStart="7.0019998937990842" tEnd="6.6426404596648805" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742174" s="365.04076134625325" t="6.6426404596648805" orientation="none" validLength="34.16153668112554" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="34.16153668112554" s="365.04076134625325" distance="0" tStart="6.6426404596648805" tEnd="6.6662957210122222" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742175" s="399.20229802737879" t="6.6662957210122222" orientation="none" validLength="36.988859448961136" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="36.988859448961136" s="399.20229802737879" distance="0" tStart="6.6662957210122222" tEnd="6.5073967483085013" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742176" s="436.19115747633992" t="6.5073967483085013" orientation="none" validLength="25.200780792927901" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="25.200780792927901" s="436.19115747633992" distance="0" tStart="6.5073967483085013" tEnd="6.8311546468197282" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742177" s="461.39193826926783" t="6.8311546468197282" orientation="none" validLength="19.175102591045402" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.175102591045402" s="461.39193826926783" distance="0" tStart="6.8311546468197282" tEnd="6.9767467560511172" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742178" s="480.56704086031323" t="6.9767467560511172" orientation="none" validLength="60.833645584642568" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="60.833645584642568" s="480.56704086031323" distance="0" tStart="6.9767467560511172" tEnd="7.050585171239848" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742179" s="541.4006864449558" t="7.050585171239848" orientation="none" validLength="35.645249765982044" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="35.645249765982044" s="541.4006864449558" distance="0" tStart="7.050585171239848" tEnd="6.9007664566803495" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742180" s="577.04593621093784" t="6.9007664566803495" orientation="none" validLength="16.919834162770712" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.919834162770712" s="577.04593621093784" distance="0" tStart="6.9007664566803495" tEnd="6.7386686011767942" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742181" s="593.96577037370855" t="6.7386686011767942" orientation="none" validLength="5.186756620776805" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.186756620776805" s="593.96577037370855" distance="0" tStart="6.7386686011767942" tEnd="6.7838183144416888" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742182" s="599.15252699448536" t="6.7838183144416888" orientation="none" validLength="15.627514491847364" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.627514491847364" s="599.15252699448536" distance="0" tStart="6.7838183144416888" tEnd="7.5089070827731152" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742183" s="614.78004148633272" t="7.5089070827731152" orientation="none" validLength="7.4885224628865217" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.4885224628865217" s="614.78004148633272" distance="0" tStart="7.5089070827731152" tEnd="8.0432372742867813" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742184" s="622.26856394921924" t="8.0432372742867813" orientation="none" validLength="9.2521634287440975" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.2521634287440975" s="622.26856394921924" distance="0" tStart="8.0432372742867813" tEnd="8.5870683002397517" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742185" s="631.52072737796334" t="8.5870683002397517" orientation="none" validLength="10.018044783682626" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.018044783682626" s="631.52072737796334" distance="0" tStart="8.5870683002397517" tEnd="8.869156729516984" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742186" s="641.53877216164597" t="8.869156729516984" orientation="none" validLength="56.644349047273636" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="56.644349047273636" s="641.53877216164597" distance="0" tStart="8.869156729516984" tEnd="8.5407597014636938" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742187" s="698.1831212089196" t="8.5407597014636938" orientation="none" validLength="79.352945346269848" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="79.352945346269848" s="698.1831212089196" distance="0" tStart="8.5407597014636938" tEnd="8.6319013244624525" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742188" s="777.53606655518945" t="8.6319013244624525" orientation="none" validLength="52.297469691295419" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="52.297469691295419" s="777.53606655518945" distance="0" tStart="8.6319013244624525" tEnd="8.5024170530536924" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5174741" s="246.31927475166327" t="-4.9445468153789696" orientation="none" validLength="1.6028176081478591" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.6028176081478591" s="246.31927475166327" distance="0" tStart="-4.9445468153789696" tEnd="-4.7945816084196498" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273610197" s="247.92209235981113" t="-4.7945816084196498" orientation="none" validLength="3.0787016845926587" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.0787016845926587" s="247.92209235981113" distance="0" tStart="-4.7945816084196498" tEnd="-4.6840636794850257" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542045653" s="251.00079404440379" t="-4.6840636794850257" orientation="none" validLength="17.640136959468407" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.640136959468407" s="251.00079404440379" distance="0" tStart="-4.6840636794850257" tEnd="-5.0238732336301446" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810481109" s="268.6409310038722" t="-5.0238732336301446" orientation="none" validLength="16.104584941831433" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.104584941831433" s="268.6409310038722" distance="0" tStart="-5.0238732336301446" tEnd="-5.1971872109430128" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078916565" s="284.74551594570363" t="-5.1971872109430128" orientation="none" validLength="18.387488877920589" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.387488877920589" s="284.74551594570363" distance="0" tStart="-5.1971872109430128" tEnd="-5.2718442289577663" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742189" s="303.13300482362422" t="-5.2718442289577663" orientation="none" validLength="8.433848200290754" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.433848200290754" s="303.13300482362422" distance="0" tStart="-5.2718442289577663" tEnd="-4.5918583850482886" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742190" s="311.56685302391497" t="-4.5918583850482886" orientation="none" validLength="28.409093016403006" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="28.409093016403006" s="311.56685302391497" distance="0" tStart="-4.5918583850482886" tEnd="-4.5420326513739546" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742191" s="339.97594604031798" t="-4.5420326513739546" orientation="none" validLength="66.844657273200653" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="66.844657273200653" s="339.97594604031798" distance="0" tStart="-4.5420326513739546" tEnd="-4.6686357788193273" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742192" s="406.82060331351863" t="-4.6686357788193273" orientation="none" validLength="16.093921025041368" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.093921025041368" s="406.82060331351863" distance="0" tStart="-4.6686357788193273" tEnd="-4.3837983969270562" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742193" s="422.91452433856" t="-4.3837983969270562" orientation="none" validLength="5.4142489913614327" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.4142489913614327" s="422.91452433856" distance="0" tStart="-4.3837983969270562" tEnd="-4.38748061170699" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742194" s="428.32877332992143" t="-4.38748061170699" orientation="none" validLength="33.179172730257278" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="33.179172730257278" s="428.32877332992143" distance="0" tStart="-4.38748061170699" tEnd="-4.936050525664756" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742195" s="461.50794606017871" t="-4.936050525664756" orientation="none" validLength="11.041488690347705" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.041488690347705" s="461.50794606017871" distance="0" tStart="-4.936050525664756" tEnd="-5.0048491523531862" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742196" s="472.54943475052642" t="-5.0048491523531862" orientation="none" validLength="58.01186203944178" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="58.01186203944178" s="472.54943475052642" distance="0" tStart="-5.0048491523531862" tEnd="-4.9324924591317325" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742197" s="530.5612967899682" t="-4.9324924591317325" orientation="none" validLength="46.018585237315733" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="46.018585237315733" s="530.5612967899682" distance="0" tStart="-4.9324924591317325" tEnd="-5.112647443871368" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742198" s="576.57988202728393" t="-5.112647443871368" orientation="none" validLength="26.088564983582614" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="26.088564983582614" s="576.57988202728393" distance="0" tStart="-5.112647443871368" tEnd="-5.4385919701812799" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742199" s="602.66844701086654" t="-5.4385919701812799" orientation="none" validLength="28.900053857342982" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="28.900053857342982" s="602.66844701086654" distance="0" tStart="-5.4385919701812799" tEnd="-6.1318214724775348" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742200" s="631.56850086820953" t="-6.1318214724775348" orientation="none" validLength="34.116579580688835" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="34.116579580688835" s="631.56850086820953" distance="0" tStart="-6.1318214724775348" tEnd="-6.8388601358876837" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742201" s="665.68508044889836" t="-6.8388601358876837" orientation="none" validLength="19.791771235827014" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.791771235827014" s="665.68508044889836" distance="0" tStart="-6.8388601358876837" tEnd="-7.0963138236885577" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742202" s="685.47685168472537" t="-7.0963138236885577" orientation="none" validLength="21.219899466458628" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="21.219899466458628" s="685.47685168472537" distance="0" tStart="-7.0963138236885577" tEnd="-7.0960505847490873" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742203" s="706.696751151184" t="-7.0960505847490873" orientation="none" validLength="45.21652944471964" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="45.21652944471964" s="706.696751151184" distance="0" tStart="-7.0960505847490873" tEnd="-6.865757354292386" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742204" s="751.91328059590364" t="-6.865757354292386" orientation="none" validLength="36.999394330334098" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="36.999394330334098" s="751.91328059590364" distance="0" tStart="-6.865757354292386" tEnd="-6.8888385639687186" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742205" s="788.91267492623774" t="-6.8888385639687186" orientation="none" validLength="40.920861140613397" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="40.920861140613397" s="788.91267492623774" distance="0" tStart="-6.8888385639687186" tEnd="-7.0421239899649271" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412692" s="797.52296997787448" t="8.7084521743153598" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848148" s="750.30941828928758" t="8.3190571617366373" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283604" s="697.84284580331735" t="8.4839214291530087" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719060" s="650.29070156088756" t="8.7852841117874565" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154516" s="597.88155777752081" t="7.161316582739528" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742206" s="549.933866723233" t="7.3129395987159747" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742207" s="499.22692588584084" t="6.6610808693746373" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742208" s="448.82260030253076" t="6.802793390520594" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742209" s="399.21015373125397" t="6.8918984042396447" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742210" s="350.36589661474937" t="6.6410945279549889" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742211" s="302.78080899864403" t="6.504628901402663" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742212" s="250.73210144534579" t="7.5457246285252637" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412693" s="203.54543831588359" t="7.3109967015580626" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848149" s="148.40461143577593" t="7.0157822313986049" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283605" s="99.925142488034325" t="7.3101498903219566" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719061" s="52.207482490876558" t="7.4558617505502127" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154517" s="4.7465704411836693" t="7.300751294657517" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="334.95031298650423" id="33782019" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554629" /> - <successor elementType="junction" elementId="33556587" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1447.2814115929436" y="-35.930965995143595" hdg="0.419449658125435" length="3.0001156700595044"> - <paramPoly3 aU="0" bU="2.4071242333719178" cU="0.54406909892086042" dU="0.048921308317256655" aV="-0" bV="-0" cV="0.0018303540248663375" dV="0.00038228309407738886" /> - </geometry> - <geometry s="3.0001156700595044" x="1450.0205548108543" y="-34.707124835376554" hdg="0.42076968002244941" length="331.9501973164447"> - <paramPoly3 aU="0" bU="331.93743358147157" cU="0.023593131129049649" dU="-0.010908241292159906" aV="-0" bV="7.1054273576010019e-14" cV="0.22322311628930183" dV="-0.34964728880941859" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.22772043980953" b="-0.0066739870371866905" c="0.00013308285974209452" d="-2.8157037410632744e-07" /> - <elevation s="10.150009484439522" a="156.17339552974721" b="-0.0040594268742244009" c="0.00013688444448618743" d="-1.5008215153212283e-06" /> - <elevation s="20.300018968879044" a="156.14472513150676" b="-0.0017445260751753327" c="9.1128409966489575e-05" d="9.4319570528603817e-07" /> - <elevation s="30.450028453318566" a="156.13739275157621" b="0.00039689405918401323" c="0.0002159243711826052" d="-1.0971906441427896e-05" /> - <elevation s="40.600037937758088" a="156.15219322268359" b="0.0013890968585460646" c="0.00019022201259368267" d="-1.9974703919544946e-05" /> - <elevation s="50.750047422197611" a="156.1650025784011" b="-0.00092293601859944692" c="-0.00025306319058765356" d="9.4894558543178573e-06" /> - <elevation s="60.900056906637133" a="156.13948646437728" b="-0.0031272357094647516" c="-0.00023967880439903786" d="1.7097113454819076e-05" /> - <elevation s="71.050066391076655" a="156.10093076842557" b="-0.0027085479971683691" c="0.00015864571122250641" d="-5.6126718106437464e-06" /> - <elevation s="81.200075875516177" a="156.0839140229034" b="-0.0012227347367503539" c="9.9899743433478841e-05" d="-6.0007097000188524e-06" /> - <elevation s="91.350085359955699" a="156.07552036432239" b="-0.0010493958613009067" c="-7.5641954992624453e-05" d="4.7301723044843601e-06" /> - <elevation s="101.50009484439522" a="156.06202240125992" b="-0.0011229837216180623" c="1.6093480712165532e-05" d="-1.4076165499803686e-07" /> - <elevation s="111.65010432883474" a="156.05213490771854" b="-0.00083979069199622137" c="5.2732965677466603e-06" d="2.2136294023732687e-07" /> - <elevation s="121.80011381327427" a="156.04438576852931" b="-0.00066432645325082134" c="2.1348237885290581e-05" d="-1.7041514767419603e-06" /> - <elevation s="123.00011428198167" a="156.04361637318337" b="-0.00062045260241372162" c="5.0537952515607087e-05" d="-1.4598617428534256e-06" /> - <elevation s="131.95012329771379" a="156.04106493788382" b="-6.6638773666668539e-05" c="1.3133354031127944e-05" d="1.2086770360399144e-06" /> - <elevation s="142.10013278215331" a="156.04300547817533" b="0.00057353205026153655" c="3.0279810067032854e-05" d="-3.7280672562919379e-08" /> - <elevation s="152.25014226659283" a="156.0519073577853" b="0.0011766905031956073" c="0.00020971504626179409" d="-1.455065822904447e-05" /> - <elevation s="162.40015175103235" a="156.07024083497882" b="0.00093676595366561121" c="-0.00026647129888842589" d="1.4719556171687866e-05" /> - <elevation s="172.55016123547188" a="156.06768839232495" b="7.6738460716325139e-05" c="5.8167718833492066e-05" d="-2.6195587919535448e-06" /> - <elevation s="182.7001707199114" a="156.07172065978224" b="0.00044792225641646468" c="-5.5531821596905141e-05" d="5.8882357691458721e-06" /> - <elevation s="192.85018020435092" a="156.07670325522204" b="0.0011404909342638786" c="1.2696082362653642e-05" d="-3.7280672562881282e-08" /> - <elevation s="203.00018968879044" a="156.089548249909" b="0.0013866993812554592" c="0.00015246319270412109" d="-7.4921798300303982e-06" /> - <elevation s="213.15019917322996" a="156.11149599801359" b="0.0021661114680842346" c="3.4913653140699785e-05" d="-3.4776964020341181e-06" /> - <elevation s="223.30020865766949" a="156.13344238639502" b="0.001800014347651008" c="-1.5089158891323049e-05" d="-3.7280672562885544e-08" /> - <elevation s="233.45021814210901" a="156.15011903961638" b="0.0014821818701319745" c="-0.00020530947298652791" d="1.0857351514371218e-05" /> - <elevation s="243.60022762654853" a="156.15536499446091" b="0.00067005643441768632" c="9.0144576998360891e-06" d="5.2450321894930311e-07" /> - <elevation s="253.75023711098805" a="156.16364323054054" b="0.0010151572982955719" c="4.7890381270591159e-05" d="-2.9761822447551612e-06" /> - <elevation s="263.90024659542757" a="156.17576874463384" b="0.0010674900215338432" c="-2.9469719715087385e-05" d="1.594751869632845e-06" /> - <elevation s="274.0502560798671" a="156.185235330822" b="0.00096214104691065387" c="-1.5065229162639771e-05" d="1.6957820894602492e-06" /> - <elevation s="284.20026556430662" a="156.19522225873209" b="0.0011804287195610198" c="0.00044210394302510164" d="-2.1609297854212251e-05" /> - <elevation s="294.35027504874614" a="156.2301539212126" b="0.0034764030030426402" c="7.0431054848472786e-05" d="-6.6751727308299263e-06" /> - <elevation s="304.50028453318566" a="156.26571533823255" b="0.0028430719488816503" c="-8.0942229892393505e-05" d="1.4887033699189656e-06" /> - <elevation s="314.65029401762519" a="156.28779036830002" b="0.0016600538353441141" c="-8.1275885556901853e-05" d="2.9357178432619929e-06" /> - <elevation s="324.80030350206471" a="156.29933649517463" b="0.00091748848702730623" c="-2.2059156831642508e-05" d="-3.7280672570524663e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.021904540604152502" b="3.6627309718988581e-06" c="1.3993454061209716e-06" d="0" /> - <superelevation s="10.150009484439522" a="0.022085881689780183" b="3.2069469260166966e-05" c="9.6766850112454545e-07" d="4.2529704593682788e-08" /> - <superelevation s="20.300018968879044" a="0.022555551438455775" b="6.4857732228360931e-05" c="2.7197085854058852e-06" d="-8.7555216145466641e-08" /> - <superelevation s="30.450028453318566" a="0.023402494884294387" b="9.300734576375984e-05" c="2.1370648500185187e-06" d="-1.1770716224665688e-07" /> - <superelevation s="40.600037937758088" a="0.024443602321705192" b="0.00010001027640122588" c="7.6487276154108144e-06" d="-7.7843477918764531e-07" /> - <superelevation s="50.750047422197611" a="0.025432705392322109" b="1.4690251339293762e-05" c="-7.2365702523798917e-07" d="0" /> - <superelevation s="60.900056906637133" a="0.025507258487533425" b="0" c="-1.8821022741147325e-05" d="9.5252528942727024e-07" /> - <superelevation s="71.050066391076655" a="0.024564303937457992" b="-8.7671958587810943e-05" c="9.800740098767422e-07" d="-4.5794568766258961e-08" /> - <superelevation s="81.200075875516177" a="0.023727516065162085" b="-8.1930076929637814e-05" c="-7.9205910331651435e-06" d="7.8532285517911679e-07" /> - <superelevation s="91.350085359955699" a="0.022901121821664625" b="0" c="1.4673605582686585e-06" d="-5.467251009207473e-08" /> - <superelevation s="101.50009484439522" a="0.022995123235522292" b="1.2889919575171445e-05" c="-2.9340946198484085e-07" d="6.4129696559008898e-08" /> - <superelevation s="111.65010432883474" a="0.023162787433547931" b="2.6754143963964558e-05" c="1.9034903590113987e-06" d="-8.8183736749407277e-08" /> - <superelevation s="121.80011381327427" a="0.023538232865486893" b="3.8140256366016663e-05" c="4.0291437000429019e-07" d="-2.8527612727498656e-08" /> - <superelevation s="131.95012329771379" a="0.023937035361255979" b="3.7502451295656499e-05" c="3.1662292067060317e-06" d="-3.2930273822216377e-07" /> - <superelevation s="142.10013278215331" a="0.024299533338168183" b="0" c="-2.2891824206917402e-07" d="1.5035666874342483e-08" /> - <superelevation s="152.25014226659283" a="0.024291672080278794" b="0" c="4.0677650082160483e-05" d="-2.6717643396965151e-06" /> - <superelevation s="162.40015175103235" a="0.025688579092755022" b="0" c="-5.1157188016164457e-05" d="2.9331988473419996e-06" /> - <superelevation s="172.55016123547188" a="0.023485419043278999" b="-0.00013193375814838696" c="1.1886263386059286e-05" d="-5.3074527255920804e-07" /> - <superelevation s="182.7001707199114" a="0.02281585459501706" b="-5.4678807028853989e-05" c="2.5644019780435817e-06" d="-1.43081412367706e-07" /> - <superelevation s="192.85018020435092" a="0.022375438223397586" b="-4.684329529189399e-05" c="-5.6355588932920863e-06" d="5.2171433872012215e-07" /> - <superelevation s="203.00018968879044" a="0.021864934812026809" b="0" c="1.3079659887239642e-05" d="-6.7764947250210226e-07" /> - <superelevation s="213.15019917322996" a="0.022503831205398922" b="5.6077524062786831e-05" c="3.4949622790025539e-06" d="-4.1099464431059614e-07" /> - <superelevation s="223.30020865766949" a="0.023003309614229153" b="0" c="-7.1430668535025127e-06" d="3.4165004215472088e-07" /> - <superelevation s="233.45021814210901" a="0.022624668696419117" b="-3.9411270880451742e-05" c="-1.6708369621313625e-06" d="1.4416463820367662e-07" /> - <superelevation s="243.60022762654853" a="0.022203260067768352" b="-2.8772605317733724e-05" c="9.3238699281962761e-07" d="3.1854249567031799e-08" /> - <superelevation s="253.75023711098805" a="0.022040584262685053" b="0" c="2.0234575761645547e-05" d="-1.1704611515312585e-06" /> - <superelevation s="263.90024659542757" a="0.022901275393990003" b="4.9010093776290234e-05" c="-4.6999243579505055e-06" d="2.2518562998628894e-07" /> - <superelevation s="274.0502560798671" a="0.023150001852321311" b="2.319922992120033e-05" c="1.8996808869909533e-06" d="-1.9983554575099017e-07" /> - <superelevation s="284.20026556430662" a="0.023372220201453756" b="0" c="-2.5431074636868666e-06" d="1.6703481690242393e-07" /> - <superelevation s="294.35027504874614" a="0.023284887608682799" b="0" c="1.3934548367553371e-05" d="-7.8968527298696393e-07" /> - <superelevation s="304.50028453318566" a="0.023894703172906019" b="3.8805086950898181e-05" c="-1.9115788517433914e-06" d="0" /> - <superelevation s="314.65029401762519" a="0.024091639173204078" b="0" c="-2.2167952074873537e-06" d="8.7392623848958838e-08" /> - <superelevation s="324.80030350206471" a="0.023954643795202204" b="-1.7990714512463341e-05" c="-4.427232856133115e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="8.1487722749464631" b="-0.0011816481256752788" c="-0.00025860214702239076" d="2.7785710874788717e-05" /> - <laneOffset s="7.980888833821659" a="8.1369946877777473" b="-0" c="0.0002546760768491449" d="-1.2985059146366146e-05" /> - <laneOffset s="10.150009484439522" a="8.1380604360535287" b="0.00092155887747410439" c="0.00017987347827456583" d="-1.0933328715801954e-05" /> - <laneOffset s="20.300018968879044" a="8.1545125399935738" b="0.0011938510104555625" c="-0.00013720417352730056" d="-1.3738823074830415e-05" /> - <laneOffset s="23.299401247903724" a="8.1564883073397016" b="-0" c="-0.0016324807138272843" d="0.00021207680421791859" /> - <laneOffset s="27.203552296750459" a="8.1442257874848334" b="-0.0030492270592767669" c="-0.00012915337107239681" d="9.6115608911165705e-06" /> - <laneOffset s="30.450028453318566" a="8.1332941934937857" b="-0.0035839075028361077" c="-1.3569901994130012e-05" d="1.252555707770079e-05" /> - <laneOffset s="40.583885419465119" a="8.1086171355317234" b="-0" c="0.00040019816485654594" d="-7.1381847536836787e-05" /> - <laneOffset s="44.321513202679597" a="8.1104807065030329" b="-0" c="-0.0049896720748772265" d="0.00086475276732167537" /> - <laneOffset s="48.168217342431348" a="8.0858697598313807" b="-0" c="0.00075595351082815047" d="-8.8459285042304865e-05" /> - <laneOffset s="50.750047422197611" a="8.0893864382899974" b="0.0021345189634167207" c="8.5303529624287114e-05" d="-8.5810972689714479e-05" /> - <laneOffset s="53.979918683812272" a="8.0942792166791886" b="-0" c="-0.00066061953207291349" d="5.1184978915707565e-05" /> - <laneOffset s="58.809986297765093" a="8.0846349515047464" b="-0.0027993059549111499" c="-0.000824811246618786" d="7.7022197739617048e-05" /> - <laneOffset s="60.900056906637133" a="8.0758843352066538" b="-0.0052377432586022494" c="-0.00034914386237981058" d="7.7962890988937818e-05" /> - <laneOffset s="67.354947194865602" a="8.048495865969679" b="-0" c="0.003454909019750018" d="-0.00074621377679269724" /> - <laneOffset s="70.441559572532086" a="8.0594677080334716" b="-0" c="-3.0069111050282878e-05" d="1.1680174647323802e-06" /> - <laneOffset s="81.200075875516177" a="8.0574418142829476" b="-0.00024141914016265046" c="-1.0437703647466501e-05" d="3.0128357561135472e-06" /> - <laneOffset s="85.453060325707071" a="8.0564580363344493" b="-0.00016671451745584246" c="-2.4918331726886046e-07" d="5.6840150265568818e-07" /> - <laneOffset s="91.350085359955699" a="8.0555828125581606" b="-0.00011035507447695243" c="3.9688070996373385e-06" d="-1.8198908590007279e-07" /> - <laneOffset s="101.50009484439522" a="8.0546812821140357" b="-8.6035231994027422e-05" c="-1.589902482904598e-07" d="-2.083697866447632e-07" /> - <laneOffset s="111.65010432883474" a="8.0535737556991389" b="-0.00015366318643826252" c="-2.8179411121780262e-06" d="-4.0314491308655171e-07" /> - <laneOffset s="118.93090173893611" a="8.0521499902246312" b="-0.00025880905188564534" c="-7.3917706824474036e-05" d="6.7714648386937969e-07" /> - <laneOffset s="121.80011381327427" a="8.0508148881665367" b="-0.00066625662844069277" c="-5.8029929834422474e-05" d="2.3533218741165051e-06" /> - <laneOffset s="131.95012329771379" a="8.0405348021412362" b="-0.00111692863722787" c="1.7844637419554487e-05" d="2.3694889083879122e-06" /> - <laneOffset s="142.22369569136424" a="8.0335127157562187" b="-0" c="0.0029588945068834299" d="-0.00052860731683619959" /> - <laneOffset s="145.95538133985031" a="8.0472473889916714" b="-0" c="-0.00043654635126714732" d="2.261664643316536e-05" /> - <laneOffset s="153.19963500523343" a="8.032936012782173" b="-0.0027641937182897045" c="-0.00037723063825611072" d="4.3952303722229484e-05" /> - <laneOffset s="159.43325515723845" a="8.0116930401318598" b="-0.0023435202179059801" c="9.1640347979747688e-05" d="-5.1267444516923427e-06" /> - <laneOffset s="162.40015175103235" a="8.0054128296546239" b="-0.0019351294710823739" c="5.3502366986701712e-05" d="2.191068668188538e-07" /> - <laneOffset s="172.55016123547188" a="7.9915123210281624" b="-0.00078131146825565325" c="4.103632002574621e-05" d="5.2903742056237322e-08" /> - <laneOffset s="179.11136854448077" a="7.9881675081599983" b="-0.00023598343285740901" c="5.5905006365733645e-06" d="1.0102243345367456e-06" /> - <laneOffset s="182.7001707199114" a="7.98743930773204" b="-0.00015682347501965065" c="7.0910474013315802e-06" d="-1.4940662312971475e-07" /> - <laneOffset s="192.85018020435092" a="7.9864218550565313" b="-5.905189605520653e-05" c="-2.3997472428506304e-06" d="-1.289289546798464e-07" /> - <laneOffset s="203.00018968879044" a="7.9854404307313818" b="-0.00014761463477601985" c="-3.5310052102529285e-06" d="-1.1850541279037177e-06" /> - <laneOffset s="207.09044000573789" a="7.9846964818494435" b="-0.00023597841675429464" c="-0.031450639040405952" d="0.054043320872586322" /> - <laneOffset s="207.48212423318364" a="7.9830265131553357" b="-0" c="3.9320492034847385e-05" d="-1.9999399993365097e-06" /> - <laneOffset s="213.15019917322996" a="7.9839255790993588" b="0.00025298633284754555" c="1.5220132118801867e-05" d="-1.3192219874422372e-06" /> - <laneOffset s="223.30020865766949" a="7.9866819259976252" b="0.00015422589997794316" c="-2.5707025252110593e-05" d="-3.4666809101629763e-07" /> - <laneOffset s="226.13709860856355" a="7.9869046443632019" b="-0" c="-0.0013476365574104586" d="0.00021454474538636645" /> - <laneOffset s="230.32468367380932" a="7.9790273184640945" b="-0" c="0.00034684124578464255" d="-3.4117541487872626e-05" /> - <laneOffset s="233.45021814210901" a="7.9813738796516667" b="0.0011682492584833457" c="1.2136573606813456e-05" d="-3.4537978750263512e-05" /> - <laneOffset s="236.92722288781164" a="7.9841307937486405" b="-0" c="-0.0011359133615703133" d="0.00021060647015383772" /> - <laneOffset s="240.52291286745498" a="7.9792353909362852" b="-0" c="0.0003668545666616318" d="-3.3298407271775487e-05" /> - <laneOffset s="243.60022762654853" a="7.9817390804174151" b="0.0013118595675871134" c="5.0091596004595326e-05" d="-3.4127142742254283e-05" /> - <laneOffset s="247.70236246312888" a="7.9856076692538744" b="-0" c="-0.00087587627495315317" d="0.00020675662236789886" /> - <laneOffset s="250.52654052305371" a="7.9832790115362426" b="-0" c="0.00307004752187397" d="-0.00050473560527638085" /> - <laneOffset s="254.58153154512593" a="8.0001058930763751" b="-0" c="-0.004925604944375302" d="0.00081747056380675946" /> - <laneOffset s="258.416714372694" a="7.9737707448615138" b="-0.0017095813896509417" c="4.1795441264810216e-05" d="-1.1793503941849936e-06" /> - <laneOffset s="263.90024659542757" a="7.9654584953858949" b="-0.0013575941972943891" c="3.3424136552386773e-05" d="-8.7192132222293957e-08" /> - <laneOffset s="274.0502560798671" a="7.9550311707678709" b="-0.0007060318959504785" c="3.3108537766725426e-05" d="-6.1313118012775777e-08" /> - <laneOffset s="285.04865929755886" a="7.9511893451428595" b="-0" c="0.00047952850399818732" d="-2.957988855283965e-05" /> - <laneOffset s="294.3172237341621" a="7.9688315241556165" b="0.0012657865158955258" c="-6.2666482380994293e-05" d="-2.5097401913928731e-07" /> - <laneOffset s="303.86857168362241" a="7.9749858513262817" b="-0" c="-0.0011463365663633835" d="0.00017732189467478877" /> - <laneOffset s="308.17838564640022" a="7.9678883098536328" b="-0" c="0.00066519827728414951" d="-3.9057362281299919e-05" /> - <laneOffset s="314.65029401762519" a="7.9851628773781549" b="0.0037023816762327033" c="-9.3062667253683131e-05" d="-3.8803466385192165e-05" /> - <laneOffset s="319.54679156142652" a="7.9965049320698123" b="-0" c="-0.00044430509975091302" d="2.2373796686396989e-05" /> - <laneOffset s="324.80030350206471" a="7.9874864432130988" b="-0.002815815025748309" c="-9.5170104413685365e-05" d="2.2250459093903652e-05" /> - <laneOffset s="332.87558167387994" a="7.9702587655721446" b="-0" c="0.0019136151236163542" d="-0.0002016836760114356" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4927846708288612" b="0.00027759360504565228" c="4.9254469302013117e-05" d="-8.5925794122181779e-06" /> - <width sOffset="7.980888833821659" a="2.4937694108010344" b="-0.00057811988671324427" c="-4.4890088423389608e-06" d="3.2178190608828338e-05" /> - <width sOffset="10.150009484439522" a="2.49282268510885" b="-0.0001433909826079855" c="0.00019521024316878846" d="3.0126460162753485e-05" /> - <width sOffset="10.480953992733649" a="2.4927977028868984" b="-4.2847312853406747e-06" c="9.3577895431857394e-05" d="-7.5565233265748987e-06" /> - <width sOffset="20.300018968879044" a="2.4946241254104216" b="-0.00035225461906301253" c="-0.00013164348399475383" d="-5.6602941779436999e-06" /> - <width sOffset="23.299401247903724" a="2.4922305420985484" b="-0.001294717897747807" c="0.0011890769507555707" d="-0.00023147592147078154" /> - <width sOffset="26.049450752055641" a="2.4928484861966673" b="-6.4759839876991909e-06" c="-4.062733496536037e-05" d="-0.00021260230051284402" /> - <width sOffset="27.203552296750459" a="2.4924600851305385" b="-0.00094977926605068321" c="0.00020389102486777249" d="-1.0137057185610366e-05" /> - <width sOffset="30.450028453318566" a="2.4911787252798447" b="5.3553625638140707e-05" c="0.00011035583607157051" d="-1.1944406395423528e-05" /> - <width sOffset="36.953699154166621" a="2.4929090290534965" b="-2.6674261713018847e-05" c="0.00063279607022286423" d="-0.00010046556497183366" /> - <width sOffset="40.583885419465119" a="2.4963451193380291" b="0.00059577924976325072" c="-0.00049430151740177566" d="-1.6558068723010341e-05" /> - <width sOffset="40.600037937758088" a="2.4963546136383084" b="0.00057979786057324933" c="-0.00045756882333680552" d="-1.4286790428007164e-05" /> - <width sOffset="44.321513202679597" a="2.4914389305047244" b="-0.0034194537449701483" c="0.0039724012751069992" d="-0.00095042140528672834" /> - <width sOffset="46.571495114084989" a="2.4930295468185584" b="2.1915278103589592e-05" c="0.0019242729589854261" d="-0.0010793641887726147" /> - <width sOffset="48.168217342431348" a="2.4935765552332203" b="-0.0020886137373286912" c="0.00098765714495219464" d="-0.00012615213640868587" /> - <width sOffset="50.750047422197611" a="2.4925965916859614" b="0.00048857975948835746" c="1.8707224894754928e-05" d="-0.00013217685873251317" /> - <width sOffset="51.918252911840177" a="2.4929821594799453" b="-8.8593645124509894e-06" c="-0.00040385653349724461" d="0.00010468065935105629" /> - <width sOffset="53.979918683812272" a="2.492164636845958" b="-0.00033926907485753652" c="0.0001580409414501428" d="-3.2315292254409561e-05" /> - <width sOffset="58.809986297765093" a="2.4905715744290333" b="-0.0010742761940435957" c="0.00059565824328093901" d="-5.815251107863553e-05" /> - <width sOffset="60.900056906637133" a="2.4903973846961271" b="0.00065355993830724587" c="0.00022655564800600419" d="-5.6801672687807001e-05" /> - <width sOffset="64.559964013719565" a="2.4930393936852138" b="2.9343600789369893e-05" c="0.00088989164535091948" d="-0.00017372559721849596" /> - <width sOffset="67.354947194865602" a="2.4962800185077043" b="0.00093241083809013749" c="-0.0028611158801998067" d="0.00065045107056299829" /> - <width sOffset="70.441559572532086" a="2.4910272739044093" b="0.0018609848858774729" c="-0.0002628848124976833" d="-9.6930723695531679e-05" /> - <width sOffset="71.050066391076655" a="2.4920405145042768" b="0.0014333757995547685" c="-0.00051253720167033384" d="-6.3950108693470859e-05" /> - <width sOffset="72.191556391897308" a="2.4929137460838291" b="1.3282754063761139e-05" c="2.0579814176410506e-05" d="-7.7997400447140907e-07" /> - <width sOffset="81.200075875516177" a="2.4941333090962665" b="0.00019417738640682518" c="4.7094570160725335e-06" d="-2.7492904397145894e-06" /> - <width sOffset="85.453060325707071" a="2.4948328306530598" b="8.5049401589861956e-05" c="-2.1165009166716945e-06" d="-3.0485618623921574e-07" /> - <width sOffset="91.350085359955699" a="2.4951982515916313" b="2.8283249745373579e-05" c="-6.9301038417952002e-06" d="1.3111053765991718e-08" /> - <width sOffset="101.50009484439522" a="2.4947850788713044" b="-0.0001083457815164243" c="-6.093045680533815e-06" d="4.9453298678492563e-09" /> - <width sOffset="111.65010432883474" a="2.4930628174285641" b="-0.00023050628081484014" c="-5.7473518860495442e-06" d="1.0095887365016657e-07" /> - <width sOffset="118.93090173893611" a="2.4911188463071685" b="-0.0002981413972814402" c="5.8751947826684781e-05" d="-9.7933252324428516e-07" /> - <width sOffset="121.80011381327427" a="2.4907239513854211" b="1.4815492562941768e-05" c="4.5860818153319302e-05" d="-2.6695093938728083e-06" /> - <width sOffset="131.95012329771379" a="2.4928075776731671" b="0.00012073083449648048" c="-1.5518323947828014e-05" d="-1.2049939149000757e-05" /> - <width sOffset="133.43051629943383" a="2.4929132028407608" b="-4.4402201089832095e-06" c="-0.00014778373727673838" d="1.979594732939404e-05" /> - <width sOffset="142.10013278215331" a="2.4946665408472803" b="0.0018968269546946978" c="0.00036999696418921088" d="2.0067906807293717e-05" /> - <width sOffset="142.22369569136424" a="2.4949066051997324" b="0.0019891819351732817" c="-0.002490584610848892" d="0.00055104471350625114" /> - <width sOffset="144.72359843922322" a="2.4929234926874386" b="-0.00013197214999368951" c="-0.00044644508146737794" d="0.00062028334720750191" /> - <width sOffset="145.95538133985031" a="2.4932428368426258" b="0.0015916285266193934" c="-0.00067662997518303858" d="6.9059383937773261e-05" /> - <width sOffset="150.95519681939908" a="2.4929176522181162" b="4.6499952511759764e-06" c="5.3199776464348144e-05" d="-1.9416609047934778e-05" /> - <width sOffset="152.25014226659283" a="2.4929707209059995" b="4.4753425577175737e-05" c="-1.1706346352980948e-05" d="-2.0201455116060041e-05" /> - <width sOffset="153.19963500523343" a="2.4929853677680409" b="-3.2113801187961307e-05" c="0.00036295670726616946" d="-4.1537112407603481e-05" /> - <width sOffset="159.43325515723845" a="2.4968275872791477" b="-0.00034919517063807925" c="-6.0748123219248154e-05" d="7.5419357661083644e-06" /> - <width sOffset="162.40015175103235" a="2.4954537929096556" b="-0.00051049885824753409" c="-1.4378107036823276e-05" d="5.1699034431652631e-06" /> - <width sOffset="169.43281002578493" a="2.4929507247659437" b="5.4352148461125687e-05" c="-8.0002340473374914e-05" d="1.0962840164882355e-05" /> - <width sOffset="172.55016123547188" a="2.4926748151960378" b="-0.00012483198890917259" c="-1.656392251765169e-05" d="4.3481783676317055e-10" /> - <width sOffset="179.11136854448077" a="2.4911428218440719" b="-0.00034213449189154704" c="1.9931792918731799e-05" d="-9.5688577465386154e-07" /> - <width sOffset="182.7001707199114" a="2.4901274512267113" b="-0.00023604460234898526" c="1.1237528003467682e-05" d="9.1422397063751042e-08" /> - <width sOffset="192.85018020435092" a="2.4889849153580554" b="2.0333173795304161e-05" c="1.2481066592568616e-05" d="9.7809362068171503e-08" /> - <width sOffset="203.00018968879044" a="2.4905794077724916" b="0.00030392881388237303" c="1.3544596326903641e-05" d="6.4358804486429559e-07" /> - <width sOffset="207.09044000573789" a="2.4920931968426778" b="0.00044703236177923226" c="0.031454008436069214" d="-0.054043862338669355" /> - <width sOffset="207.48212423318364" a="2.4938463164220455" b="0.00021344421375032687" c="-3.6587347544748196e-05" d="1.4584739162860919e-06" /> - <width sOffset="213.15019917322996" a="2.4941462759627226" b="-6.0745945498447319e-05" c="-1.3900790827564695e-05" d="8.3399195775230441e-07" /> - <width sOffset="223.30020865766949" a="2.4929696969402135" b="-8.5171971862485157e-05" c="1.1219621435712165e-05" d="1.2083608769498861e-06" /> - <width sOffset="225.98091183024903" a="2.4928452801150645" b="1.0314359314626765e-06" c="-0.00037118137736568844" d="4.0539911049903046e-05" /> - <width sOffset="226.13709860856355" a="2.4928365409580824" b="-0.00011194898167075894" c="0.00096679317123179466" d="-0.0001743515026933468" /> - <width sOffset="230.32468367380932" a="2.4965181594171302" b="-0.0011871068570855135" c="-0.00022274676348772775" d="7.4310784180875249e-05" /> - <width sOffset="233.45021814210901" a="2.49290075946036" b="-0.00040169372284928331" c="0.00048883400502284179" d="7.4731221344481101e-05" /> - <width sOffset="233.82442683778115" a="2.4928228106611847" b="-4.4475316797909937e-06" c="-0.00021051100543620604" d="4.5678782190694335e-05" /> - <width sOffset="236.92722288781164" a="2.4921468512483926" b="8.5029928869234704e-06" c="0.0010024686165302241" d="-0.00019946566671347993" /> - <width sOffset="240.52291286745498" a="2.4958654435444156" b="-0.00051903098277721982" c="-0.00038012268581444456" d="4.4439210712013877e-05" /> - <width sOffset="243.60022762654853" a="2.4919635476541027" b="-0.0015960451567875729" c="3.5348242263038251e-05" d="4.5140592107318577e-05" /> - <width sOffset="247.70236246312888" a="2.4891271752305952" b="0.00097277267993959638" c="0.0010968520761548137" d="-0.0001957431730028311" /> - <width sOffset="250.52654052305371" a="2.4962136996309789" b="0.0024844519112325277" c="-0.0027557598944896538" d="0.0005157490546414793" /> - <width sOffset="253.52626874503483" a="2.492790474869337" b="-0.0001259080027848393" c="-0.0028616384719806608" d="0.00099493396589370197" /> - <width sOffset="254.58153154512593" a="2.4906401125872435" b="-0.0028416548209494073" c="0.0021436693587864649" d="-0.00032727220318936104" /> - <width sOffset="258.416714372694" a="2.4928107655586613" b="-0.0008401016029252902" c="6.8927862968468914e-05" d="-1.660792391295342e-06" /> - <width sOffset="263.90024659542757" a="2.4900028021346268" b="-0.00023398101287782041" c="4.5054714189787543e-05" d="-1.3194946638011043e-06" /> - <width sOffset="274.0502560798671" a="2.4908897796981826" b="0.00027281686066403993" c="5.9420436168756125e-06" d="-1.3432619284576486e-06" /> - <width sOffset="283.91439970430434" a="2.4928697980116068" b="-2.0603103062560635e-06" c="0.00021877609263082161" d="-9.2339404543152396e-06" /> - <width sOffset="285.04865929755886" a="2.4931354514687243" b="0.00045859781846112861" c="-0.00026108796941876679" d="2.0284634978669523e-05" /> - <width sOffset="294.3172237341621" a="2.4911080903460832" b="0.00084650948728957182" c="2.2646042660160526e-05" d="-9.0441693745689205e-06" /> - <width sOffset="294.35027504874614" a="2.4911360930092075" b="0.00084797681090141379" c="2.5553244605325636e-05" d="-9.3698645134683467e-06" /> - <width sOffset="303.86857168362241" a="2.4934424663380677" b="-0.001212248600427708" c="0.00083447645842694388" d="-0.0001869427331964274" /> - <width sOffset="304.50028453318566" a="2.4929625536590478" b="-0.00038175432940630214" c="0.00050921001153504013" d="-0.00020134109070700821" /> - <width sOffset="305.61838304854706" a="2.4928908692477521" b="1.8233416981994384e-06" c="0.00083843768240451965" d="-0.00020156886124247795" /> - <width sOffset="308.17838564640022" a="2.4950085587354618" b="0.00033161552155726586" c="-0.00022847445379753953" d="1.4810395713648097e-05" /> - <width sOffset="314.65029401762519" a="2.4915997532869607" b="-0.0007646890970116867" c="5.929892880510096e-05" d="1.4760383206834172e-05" /> - <width sOffset="319.54679156142652" a="2.4910100108362458" b="0.00087769605775790227" c="5.736066811673474e-05" d="-4.6416879864579914e-05" /> - <width sOffset="322.54643882272273" a="2.4929061002958663" b="-3.1141459324820087e-05" c="-0.00020320977621632696" d="1.9967987047929092e-05" /> - <width sOffset="324.80030350206471" a="2.4920322469847083" b="-0.00064284964234236335" c="-7.2569491229595835e-05" d="1.8364131408449967e-05" /> - <width sOffset="332.87558167387994" a="2.4917791572453689" b="0.0017776942043930101" c="-0.0010974323708363074" d="0.00024229826651392562" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="334.95031298650423" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8536203299057012" b="0.0015667975973823055" c="-0.00087873842896176542" d="5.2166254699530945e-05" /> - <width sOffset="2.6211728228450264" a="3.8526292199329371" b="-0.0019646208703355999" c="-0.00019533638913918412" d="3.2478042092213764e-05" /> - <width sOffset="7.980888833821659" a="3.8414885884273531" b="-0.00125956915777423" c="0.00017489707237175337" d="-8.2927279289276179e-06" /> - <width sOffset="10.150009484439522" a="3.8394947017260828" b="-0.00061787740930657872" c="0.00012850252050388143" d="-6.2263549463604321e-06" /> - <width sOffset="20.300018968879044" a="3.839951132847129" b="6.6358640727741999e-05" c="-5.1394641368530486e-05" d="-8.4179146789325668e-06" /> - <width sOffset="23.299401247903724" a="3.8394606631442132" b="-0.00046913581975173831" c="-0.0014987928666145502" d="0.00021739771261362916" /> - <width sOffset="24.90087742293823" a="3.8357582883121362" b="-0.0035970012961524262" c="0.0001470253846115716" d="0.00018192761211638888" /> - <width sOffset="27.203552296750459" a="3.830476383318846" b="-2.5987327906305292e-05" c="0.00042317351831517528" d="-2.0537631210422374e-05" /> - <width sOffset="30.450028453318566" a="3.8341493712500663" b="0.0020722824348774959" c="0.00023721585666914804" d="-1.8011263136274537e-05" /> - <width sOffset="40.583885419465119" a="3.8607662131109128" b="0.0013311024742300309" c="-0.00027738338122115721" d="-0.0001019186676566025" /> - <width sOffset="40.748296529721479" a="3.8609771102459023" b="0.0012316277603286348" c="0.00035154449215290363" d="-7.1175745075816767e-05" /> - <width sOffset="44.321513202679597" a="3.8666192522981557" b="0.0010176274824041391" c="-0.0050009084949137056" d="0.00086495886978269886" /> - <width sOffset="48.168217342431348" a="3.8457682820686081" b="0.0009403302918841776" c="0.00074709553636196865" d="-8.8253182581345384e-05" /> - <width sOffset="50.750047422197611" a="3.8516572347015856" b="0.0030332312275970414" c="7.4714440170715716e-05" d="-8.5795595221628077e-05" /> - <width sOffset="53.979918683812272" a="3.8593427900322608" b="0.00083079072914995437" c="-0.00067105961979976869" d="5.1200356383795648e-05" /> - <width sOffset="58.809986297765093" a="3.8534694704552326" b="-0.0020682916366163481" c="-0.00083502851171434627" d="7.7037575207898092e-05" /> - <width sOffset="60.900056906637133" a="3.8462022330473786" b="-0.0045492370266927177" c="-0.00035659360981605973" d="7.7772030065762868e-05" /> - <width sOffset="67.354947194865602" a="3.8228962662792219" b="0.00056847461757247202" c="0.0034437633133555215" d="-0.0007464046377158711" /> - <width sOffset="70.441559572532086" a="3.8355109694381015" b="0.00049421457013969282" c="-4.2982158498214278e-05" d="9.7715653301681076e-07" /> - <width sOffset="71.050066391076655" a="3.8357960070878327" b="0.00044299016326348426" c="-3.5807858361227878e-05" d="1.0048592162427276e-06" /> - <width sOffset="81.200075875516177" a="3.8376541019621371" b="2.665986552137853e-05" c="-1.8425218762325963e-05" d="2.8573588943295514e-06" /> - <width sOffset="85.453060325707071" a="3.8376540222275999" b="2.4986194137250906e-05" c="-1.0220420458717475e-05" d="4.129246408666602e-07" /> - <width sOffset="91.350085359955699" a="3.8375306301258965" b="-5.2475711922036942e-05" c="-6.7666865507705963e-06" d="-9.1087016987450872e-08" /> - <width sOffset="94.14500217545941" a="3.8373291178263003" b="-9.2434959071028774e-05" c="-0.0001110733199768534" d="5.2305862444376382e-06" /> - <width sOffset="101.50009484439522" a="3.8327216784074389" b="-0.00087746091877864761" c="4.7018302908355709e-06" d="5.2236895570437812e-06" /> - <width sOffset="108.17706281699388" a="3.8286274622269962" b="-0.00011602694137634935" c="0.0060765409707579801" d="-0.0011341996289630891" /> - <width sOffset="111.6175274269159" a="3.8539658192353272" b="0.0014203499948264788" c="-8.0365403466120248e-05" d="1.4258110773230851e-06" /> - <width sOffset="111.65010432883474" a="3.8540120045989461" b="0.0014151184225723221" c="-7.6540139575672196e-05" d="1.2310930076878639e-06" /> - <width sOffset="118.93090173893611" a="3.8607329481965138" b="0.00049635268395737254" c="-0.00011194423962522106" d="2.3113844047437785e-06" /> - <width sOffset="121.80011381327427" a="3.8612901179354218" b="-8.8946274147566422e-05" c="-8.4768760653173273e-05" d="4.0839729589732558e-06" /> - <width sOffset="128.67099762098547" a="3.8580018358048154" b="-0.00067541750308156359" c="-2.5876226403653506e-05" d="3.0731541030780932e-06" /> - <width sOffset="131.95012329771379" a="3.8556171759158229" b="-0.00074598650834387754" c="3.9654375823576575e-06" d="2.4394505966983901e-06" /> - <width sOffset="142.10013278215331" a="3.8510048237243746" b="8.8468256126381152e-05" c="7.7231428381013774e-05" d="2.3617824276741996e-06" /> - <width sOffset="142.22369569136424" a="3.8510169387284696" b="0.00010766231368108821" c="0.0029461274366247244" d="-0.00052861502236585143" /> - <width sOffset="145.95538133985031" a="3.8649751858998327" b="1.2055018420008935e-05" c="-0.00044939968536329689" d="2.2608940901335629e-05" /> - <width sOffset="146.42412894447199" a="3.864884421235443" b="-0.0003943518313655023" c="-0.00043531917854063148" d="2.3846805248602422e-05" /> - <width sOffset="152.25014226659283" a="3.8525268141709201" b="-0.0030384468568865424" c="-2.226575071761999e-05" d="2.4087520675261541e-05" /> - <width sOffset="153.19963500523343" a="3.8496423765311194" b="-0.0030155818597278825" c="-0.0003858594312475881" d="4.5423177968938023e-05" /> - <width sOffset="159.43325515723845" a="3.8268533320719458" b="-0.0025310198115339657" c="0.00011051816902440731" d="-3.6558702050025363e-06" /> - <width sOffset="162.40015175103235" a="3.820221414646598" b="-0.0019717699756877666" c="8.547198341157103e-05" d="1.6899811125234028e-06" /> - <width sOffset="162.95217361205201" a="3.8191592845160862" b="-0.0018758602146157601" c="0.00013212658359826728" d="-2.9012324925904977e-07" /> - <width sOffset="172.55016123547188" a="3.8130699617167503" b="0.00058025876313006213" c="0.00011654496146040416" d="-5.2066829514013623e-07" /> - <width sOffset="177.87436053171334" a="3.8193845043011496" b="0.001776997660913261" c="0.0026042192151418055" d="-0.00044471579493630047" /> - <width sOffset="179.11136854448077" a="3.8247258288959536" b="0.0061783803158474582" c="0.00091738105327600935" d="-0.00044375847434419857" /> - <width sOffset="182.08699669716341" a="3.8395413821761224" b="-0.0001496456258479021" c="1.5000002096352443e-05" d="9.3913568979201785e-07" /> - <width sOffset="182.7001707199114" a="3.8394554796130649" b="-0.0001301911071772429" c="7.3516238191558966e-06" d="-2.2049526450739552e-07" /> - <width sOffset="192.85018020435092" a="3.8386608549445427" b="-4.9101051718236007e-05" c="-5.829182976170302e-07" d="-3.8970805033795062e-07" /> - <width sOffset="199.42836729438039" a="3.8382017023756472" b="-0.0001073611208506742" c="-2.1777301620538873e-05" d="1.8101259740070442e-07" /> - <width sOffset="203.00018968879044" a="3.8375486431165378" b="-0.00025600239797391307" c="-1.6467925627262535e-05" d="-3.356107067509919e-07" /> - <width sOffset="207.09044000573789" a="3.836203052394068" b="-0.00040756272404208669" c="-0.031453152652155182" d="0.05404417031600748" /> - <width sOffset="207.48212423318364" a="3.8344655422472824" b="-0.00017316243544339641" c="3.7805021056072008e-05" d="-1.1504965781740736e-06" /> - <width sOffset="213.15019917322996" a="3.834489105391885" b="0.00014451468499310292" c="2.1449319201375107e-05" d="3.476041371975962e-07" /> - <width sOffset="216.72569117081582" a="3.8352959165025107" b="0.00031122988632672729" c="0.00047952445037979466" d="-2.3665465674653218e-05" /> - <width sOffset="223.30020865766949" a="3.8513439787273906" b="0.0035477454980325854" c="1.1482859253733259e-05" d="-2.2987138145417823e-05" /> - <width sOffset="226.13709860856355" a="3.8609761332825681" b="0.0030578990716089685" c="-0.0015031322388471715" d="0.00019190427533196159" /> - <width sOffset="230.32468367380932" a="3.861514711697497" b="0.00056453535592760869" c="-9.3081118463395301e-05" d="-5.675801153907513e-05" /> - <width sOffset="230.9373387195493" a="3.8618125875427971" b="0.00038657040942996512" c="2.6267890424789956e-05" d="-2.5924566755629872e-05" /> - <width sOffset="233.45021814210901" a="3.8625384984529987" b="2.7479562595059256e-05" c="-0.00017776130297365644" d="-2.5075144183812174e-05" /> - <width sOffset="236.92722288781164" a="3.8594309433967604" b="-0.0021181167564194915" c="-0.0012271042760647007" d="0.00022006930472028414" /> - <width sOffset="240.52291286745498" a="3.8461803574776923" b="-0.002406870692294995" c="0.00037773991045619409" d="-2.3835572705345131e-05" /> - <width sOffset="243.60022762654853" a="3.8416561946451484" b="-0.00075918053690934026" c="0.00015055102043875712" d="-2.4715692540845454e-05" /> - <width sOffset="247.70236246312888" a="3.8393692400340411" b="-0.00077173007195137648" c="-0.00065959573731715461" d="0.00021616807256930951" /> - <width sOffset="249.3164123503328" a="3.8373142337809849" b="-0.0012115155956033785" c="0.00018165227717833205" d="0.00020592439877805641" /> - <width sOffset="250.52654052305371" a="3.8364790816495811" b="0.00013280284744803753" c="0.0031234082733354609" d="-0.0005055678288659088" /> - <width sOffset="253.75023711098805" a="3.8524291312607337" b="0.0045087281954845782" c="-0.0017678329476563481" d="-0.00050534186427971829" /> - <width sOffset="254.58153154512593" a="3.8546652482729069" b="0.00052189866846860265" c="-0.0048836540075009507" d="0.00081686430480177122" /> - <width sOffset="258.416714372694" a="3.830914518328191" b="-0.00089265540907341534" c="7.6771035764228073e-05" d="-1.7856093991735039e-06" /> - <width sOffset="263.90024659542757" a="3.8280336313081476" b="-0.00021177765239386312" c="5.5403238318348859e-05" d="-8.0149323043921684e-07" /> - <width sOffset="274.0502560798671" a="3.8307537704262051" b="0.00066519316446273066" c="3.2028156811292798e-05" d="-7.8016987791288474e-07" /> - <width sOffset="284.20026556430662" a="3.8399893052489942" b="0.0010742397509001566" c="8.2791433353741245e-06" d="-1.0119237084006735e-06" /> - <width sOffset="285.04865929755886" a="3.8409060246854176" b="0.0010861026347171502" c="0.00045414661955705876" d="-3.0530499141648289e-05" /> - <width sOffset="286.38983712463954" a="3.8431059278718633" b="0.0021395344520892578" c="0.00042434618989746779" d="-3.3693783365317361e-05" /> - <width sOffset="294.3172237341621" a="3.8699485098455231" b="0.0025151454337646486" c="-9.6670424062778254e-05" d="-4.3649273499128494e-06" /> - <width sOffset="294.35027504874614" a="3.8700315329491355" b="0.0025087409598707994" c="-9.9026566782347113e-05" d="-4.1385615527302804e-06" /> - <width sOffset="302.03460797525759" a="3.8815842362578552" b="0.00025370132215495311" c="-0.00070331510718638014" d="2.4361002730296823e-05" /> - <width sOffset="303.86857168362241" a="3.8798342374492867" b="-0.0020801983799439085" c="-0.0016457621859069787" d="0.00020193387142865065" /> - <width sOffset="304.50028453318566" a="3.8779142956163817" b="-0.0039177447469661494" c="-0.0012706313116383925" d="0.00020008028339016468" /> - <width sOffset="308.17838564640022" a="3.8562705702273341" b="-0.0051444506270522878" c="0.00045597693849111157" d="-1.6298973565931081e-05" /> - <width sOffset="314.65029401762519" a="3.8376567021621018" b="-0.0012904454585411658" c="0.00013954656238613294" d="-1.6147226205996988e-05" /> - <width sOffset="319.54679156142652" a="3.8327881297388231" b="-0.0010852892408591448" c="0.00012111280305506227" d="4.5030036874926141e-05" /> - <width sOffset="320.0345544653963" a="3.8322928056841024" b="-0.00093500092953860978" c="-0.00035938734380971103" d="1.9955621757217981e-05" /> - <width sOffset="324.80030350206471" a="3.8218343147396059" b="-0.0030007826762051912" c="-7.5764225503693032e-05" d="1.9948484906735309e-05" /> - <width sOffset="332.87558167387994" a="3.8031662352970894" b="-0.00032188793176548278" c="0.0018772537568095564" d="-0.00020398565019882491" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8752478370914041" b="-0.0051951672737061607" c="-0.00029274561548561686" d="9.5234110024416583e-05" /> - <width sOffset="2.6211728228450264" a="3.8613341440286142" b="-0.0047669096989280402" c="0.00018293783496737856" d="0.00011492232263172655" /> - <width sOffset="6.1895025219074675" a="3.8518751303195837" b="0.00092856513808841474" c="0.00017228616254170911" d="-5.8417430731946026e-06" /> - <width sOffset="10.150009484439522" a="3.8578922269578619" b="0.0020183522253374104" c="0.00010467545226525464" d="-5.8805293652896416e-06" /> - <width sOffset="20.300018968879044" a="3.8830133084939438" b="0.0023257819856822371" c="-6.9055406063993786e-05" d="-6.3565655652571717e-06" /> - <width sOffset="23.402123492408094" a="3.8893738491350707" b="0.0017138391186476915" c="-6.9951635995345278e-05" d="-7.5036170016771204e-06" /> - <width sOffset="24.90087742293823" a="3.8917600808075257" b="0.0014535932403970291" c="-0.00070503634187012089" d="2.7966483496216635e-05" /> - <width sOffset="30.450028453318566" a="3.88289483581717" b="-0.0037875907930826616" c="-0.00023221087757333074" d="2.8337350319480594e-05" /> - <width sOffset="40.748296529721479" a="3.8502116128347001" b="0.000445565184915276" c="-3.5931544420853673e-05" d="-2.4055723614532244e-06" /> - <width sOffset="40.97085078422559" a="3.8503089690415249" b="0.0004292143018958135" c="2.3752245786980496e-05" d="-8.9421882582143513e-07" /> - <width sOffset="50.750047422197611" a="3.8559415480355037" b="0.00063722041925791514" c="5.3292953324420203e-07" d="-7.21917032943197e-07" /> - <width sOffset="60.900056906637133" a="3.861709350024022" b="0.00042491738933144081" c="-2.3892812483028912e-05" d="-5.3338350332760718e-07" /> - <width sOffset="71.050066391076655" a="3.8630030145230854" b="-0.00022495897129247151" c="-4.4280070312284115e-05" d="-8.3552676213319876e-07" /> - <width sOffset="73.329597713539471" a="3.8622502257569553" b="-0.00043985943629217808" c="-0.00034661232726499044" d="7.2059389888843022e-05" /> - <width sOffset="76.626934066696975" a="3.859614676662674" b="-0.0003752729162969069" c="3.1356540722188375e-05" d="-6.3884185505143875e-08" /> - <width sOffset="81.200075875516177" a="3.8585481694189236" b="-9.2485251473368963e-05" c="2.6289704371033361e-05" d="-1.7847888253002686e-08" /> - <width sOffset="91.350085359955699" a="3.8602992161664265" b="0.00043568003343322497" c="2.3940074513061216e-05" d="-2.4947999386833785e-07" /> - <width sOffset="94.14500217545941" a="3.8616984681346578" b="0.00056365458324849835" c="0.00012539113854282053" d="-5.5711532552936973e-06" /> - <width sOffset="101.50009484439522" a="3.8704108194937059" b="0.0015040269503444415" c="3.4536426640218924e-06" d="-5.5895283533206895e-06" /> - <width sOffset="108.17706281699388" a="3.8789432835504907" b="0.00080257126905431363" c="-0.0060757135795805224" d="0.0011338337901667932" /> - <width sOffset="111.6175274269159" a="3.8559618532173636" b="-0.00074110352542474972" c="7.7416830478588099e-05" d="-1.7917101930491552e-06" /> - <width sOffset="111.65010432883474" a="3.8559377924575231" b="-0.00073606522879983048" c="7.7116107736749574e-05" d="-1.7885918371121936e-06" /> - <width sOffset="121.80011381327427" a="3.8545411354121066" b="0.00027659658035046424" c="2.525485714569852e-05" d="-1.8847105529198162e-06" /> - <width sOffset="128.67099762098547" a="3.857022516521964" b="0.00035671680645602574" c="1.1694952260250855e-05" d="-8.7389169705847753e-07" /> - <width sOffset="131.95012329771379" a="3.8582871748226006" b="0.0004052252484165471" c="7.5306555019856795e-06" d="-2.2461345974611511e-07" /> - <width sOffset="142.10013278215331" a="3.862941169247716" b="0.00048867684774724454" c="1.6285959751807173e-06" d="-1.537897496402561e-07" /> - <width sOffset="144.21309986786065" a="3.8639795476273981" b="0.00049349934418396204" c="2.3337771927020646e-05" d="-3.057737771746221e-07" /> - <width sOffset="146.42412894447199" a="3.8651814741231965" b="0.00059221586627202253" c="3.9022701636526657e-05" d="-1.5436381222738107e-06" /> - <width sOffset="152.25014226659283" a="3.8696510040340568" b="0.00088972493304570119" c="1.5473383793892218e-05" d="-1.7634505338258704e-06" /> - <width sOffset="162.40015175103235" a="3.8784318229462071" b="0.0006588086511375628" c="-3.8062458755153571e-05" d="-1.8156012148274e-06" /> - <width sOffset="162.95217361205201" a="3.8787835956075418" b="0.00061512623818489598" c="-8.492509407171513e-05" d="1.6450314933454113e-07" /> - <width sOffset="172.55016123547188" a="3.8770096042702487" b="-0.00096963100076039358" c="-9.1471581810967031e-05" d="2.5006801207457374e-07" /> - <width sOffset="177.87436053171334" a="3.8692918833359773" b="-0.0019223907563230007" c="-0.0025834680250050269" d="0.00044444519465355268" /> - <width sOffset="182.07109265008381" a="3.8485738921465598" b="-0.00012318362717356202" c="0.0029250566159538258" d="0.00044912755825742831" /> - <width sOffset="182.08699669716341" a="3.848572674695141" b="-2.9802345583520978e-05" c="-0.00011251413457179908" d="4.4293527293172387e-06" /> - <width sOffset="192.85018020435092" a="3.8407404212356027" b="-0.00091245292777824096" c="2.706832392414584e-05" d="4.6034396948910677e-06" /> - <width sOffset="199.24637580364359" a="3.8372162079825634" b="-1.1859813016705197e-06" c="2.3845745587585015e-05" d="-1.0871736117122844e-07" /> - <width sOffset="199.42836729438039" a="3.8372167812813585" b="7.4826618057389505e-06" c="3.7290054457820337e-05" d="-6.7943841245661896e-07" /> - <width sOffset="203.00018968879044" a="3.8376882900396216" b="0.00024786491202405462" c="2.9476373167235828e-05" d="-1.1804768181034665e-06" /> - <width sOffset="213.15019917322996" a="3.8420064540361061" b="0.00048138814562724542" c="1.5788041763521479e-09" d="-1.9996122249520203e-06" /> - <width sOffset="216.72569117081582" a="3.8436362722050692" b="0.0004047094495974412" c="-0.00047579377746738536" d="2.2013457586900307e-05" /> - <width sOffset="223.30020865766949" a="3.8319869556622637" b="-0.0029969719948665595" c="-4.1118128410742741e-05" d="2.2296064754695978e-05" /> - <width sOffset="230.9373387195493" a="3.8166320347207079" b="0.00027628348595969913" c="0.00024604745542911277" d="-8.5373800320222594e-06" /> - <width sOffset="233.45021814210901" a="3.8187445150763693" b="0.0013511291893963924" c="0.00017586043268942253" d="-9.8718854406584233e-06" /> - <width sOffset="236.34215321831772" a="3.8238839022200506" b="0.0021205988195264875" c="0.0001067431073902977" d="-9.4732231588494374e-06" /> - <width sOffset="243.60022762654853" a="3.8412764419713459" b="0.0021729595776325155" c="-0.00010159828146092428" d="-9.413503651164285e-06" /> - <width sOffset="249.3164123503328" a="3.8486195728344077" b="8.8698350876329656e-05" c="-5.7556113817797204e-05" d="8.3017013978183248e-07" /> - <width sOffset="253.75023711098805" a="3.847953722219835" b="-0.00037272864303636516" c="-4.48005035853834e-05" d="6.1726566755021892e-07" /> - <width sOffset="263.90024659542757" a="3.840200517621239" b="-0.0010914026023949709" c="-2.3198749920612954e-05" d="7.1755439002120468e-07" /> - <width sOffset="274.0502560798671" a="3.8274831063872621" b="-0.0013405645099385907" c="-1.3440807140307554e-07" d="7.2179000452092385e-07" /> - <width sOffset="284.20026556430662" a="3.814617279130295" b="-0.0011202107472075484" c="2.183489669559222e-05" d="9.4098173756136484e-07" /> - <width sOffset="286.38983712463954" a="3.8122790566775953" b="-0.0010110587789415688" c="-6.5024118585602973e-05" d="4.1042659617221527e-06" /> - <width sOffset="287.15157626896507" a="3.8114729776808285" b="-0.0011029771536720323" c="-5.9159585315512062e-05" d="4.2082466555809538e-06" /> - <width sOffset="294.35027504874614" a="3.8020371210911121" b="-0.0013004912386293589" c="3.3548737198544232e-05" d="3.9926927713136987e-06" /> - <width sOffset="302.03460797525759" a="3.7958364240926223" b="-7.7598689566729467e-05" c="0.00063447456476222364" d="-2.450687151138502e-05" /> - <width sOffset="304.50028453318566" a="3.7991350539121131" b="0.0026042463796987665" c="0.00046059285106102803" d="-2.2658765408856415e-05" /> - <width sOffset="314.65029401762519" a="3.8493258476315231" b="0.0049511889274032241" c="-0.00022933017981607336" d="-2.2564168680317841e-05" /> - <width sOffset="319.85742338857165" a="3.8657034552384451" b="0.00072745720160347234" c="-6.6141627996003319e-05" d="-0.00013891928110621748" /> - <width sOffset="320.0345544653963" a="3.8658294632421901" b="0.00069094977432664203" c="0.00040642969792457488" d="-0.00011384486608410801" /> - <width sOffset="322.84140131853377" a="3.8684533640924084" b="0.0002817791018552913" c="-0.00022471047330520548" d="1.2193598942638436e-05" /> - <width sOffset="324.80030350206471" a="3.8682347187471824" b="-0.00045822116188912047" c="-0.00015460253385631443" d="1.2142917671958418e-05" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9033200892730129" b="0.0024202593501452276" c="0.00051729950543933083" d="-6.1502271492358009e-05" /> - <width sOffset="3.1019798983772411" a="3.9139695584526986" b="0.0038541885849767104" c="-0.00022307735329695134" d="-0.00012061902487652794" /> - <width sOffset="6.1895025219074675" a="3.9201927556464815" b="-0.00097283382102763324" c="-9.9425374478479277e-05" d="1.450408283752273e-07" /> - <width sOffset="10.150009484439522" a="3.914789302709607" b="-0.0017535584328218082" c="-9.4904101422261145e-05" d="6.1275631427542379e-09" /> - <width sOffset="15.178499079456667" a="3.9035726141296432" b="-0.0027075421865640982" c="-0.00057739783146358342" d="0.00011436840691254797" /> - <width sOffset="19.565355277223617" a="3.8902385901179337" b="-0.001170573772515405" c="0.0010865649659798867" d="-6.9653572433987044e-05" /> - <width sOffset="20.300018968879044" a="3.8899374455070421" b="0.00031316336319887525" c="0.00093386468111043494" d="-6.9791470860614967e-05" /> - <width sOffset="23.402123492408094" a="3.8978121447528862" b="0.0040922341072961539" c="0.00022610340627892225" d="-6.8644419424670859e-05" /> - <width sOffset="29.577288102707378" a="3.9155402129808468" b="-0.00096809688849603683" c="-0.0001311527169064697" d="8.458697763761849e-06" /> - <width sOffset="30.450028453318566" a="3.9146010428011131" b="-0.0011776930706513184" c="-0.00010835548768773296" d="8.4754590528684151e-06" /> - <width sOffset="40.109771974193634" a="3.9007535228347971" b="-0.00089851386107422015" c="0.00017740989351469274" d="-5.094204200131043e-06" /> - <width sOffset="40.97085078422559" a="3.9001081209374679" b="-0.00060431745685064124" c="0.00010296045834673576" d="-6.6055577299825178e-06" /> - <width sOffset="50.750047422197611" a="3.8978671777099239" b="-0.00048569802289322129" c="-8.7266356430293769e-05" d="-6.5859370605366929e-06" /> - <width sOffset="54.535275669706657" a="3.8944211661128199" b="-0.0014294331654629154" c="-0.00032209157897401266" d="2.1351179366874912e-05" /> - <width sOffset="60.900056906637133" a="3.877780255076837" b="-0.00293468101787853" c="8.1716347036015039e-05" d="2.1944764727100328e-05" /> - <width sOffset="65.515680241791969" a="3.8681336099787651" b="-0.0007778048556832493" c="0.00083927812894802115" d="-3.9125579951414219e-05" /> - <width sOffset="71.050066391076655" a="3.8829031719604199" b="0.0049167910060201195" c="0.00017921903994521694" d="-3.9065746863058411e-05" /> - <width sOffset="73.329597713539471" a="3.8945796848343606" b="0.005124874145447854" c="0.00020868268779351154" d="-0.00011196066351403367" /> - <width sOffset="76.626934066696975" a="3.9097332106945486" b="0.0028492157394525933" c="-0.00056398994037150233" d="-3.9837389184870337e-05" /> - <width sOffset="76.773587412951301" a="3.910138802219008" b="0.0026812233428510643" c="-0.00014217740358557458" d="1.7715870284657615e-06" /> - <width sOffset="81.200075875516177" a="3.9193750635938334" b="0.0015266664359686014" c="-0.00012876733574374035" d="1.6144895441617911e-06" /> - <width sOffset="86.529873365714749" a="3.9240984633740128" b="0.00029164595060756753" c="-9.1407741609871631e-05" d="4.2337422276035167e-06" /> - <width sOffset="91.350085359955699" a="3.9238546083837438" b="-0.00029445749844613693" c="-3.3128445737313899e-05" d="3.7834816979963952e-06" /> - <width sOffset="99.860183832177071" a="3.9212813471905998" b="-3.6290777183192605e-05" c="-4.5318494208316276e-06" d="3.2309027527176259e-07" /> - <width sOffset="101.50009484439522" a="3.9212110709071113" b="-4.8547768813364013e-05" c="-5.1691617061703563e-07" d="1.0928408982473661e-06" /> - <width sOffset="111.65010432883474" a="3.9218078197955895" b="0.00027872105866428036" c="3.4204173360773063e-05" d="1.0560790693506796e-06" /> - <width sOffset="121.80011381327427" a="3.9292649693609105" b="0.0012994667544635138" c="6.9956072409031888e-05" d="6.998997158739023e-07" /> - <width sOffset="125.80758408126147" a="3.9356410705468141" b="0.0018938813010110061" c="0.00061852420078892614" d="-4.61759694834777e-05" /> - <width sOffset="131.95012329771379" a="3.9599098421548402" b="0.0042657324709722191" c="-0.00022796490608969979" d="-4.6376284083390402e-05" /> - <width sOffset="136.51145757500299" a="3.9702230828722378" b="-0.00070859876378605541" c="2.3365381979575233e-06" d="4.3380137930152965e-07" /> - <width sOffset="142.10013278215331" a="3.9664116535149621" b="-0.00064183532400111424" c="1.0980534412559832e-05" d="6.0375951316138755e-07" /> - <width sOffset="144.21309986786065" a="3.9651101962586459" b="-0.00058734562007238772" c="-7.8763276393007072e-06" d="7.5574354070190221e-07" /> - <width sOffset="147.86735428083483" a="3.962895587090991" b="-0.00061463419527375428" c="3.0284691514562605e-07" d="3.2007087981753782e-07" /> - <width sOffset="152.25014226659283" a="3.9602345392607532" b="-0.00059353500577008196" c="1.1717745170471358e-05" d="-5.3093305664938429e-07" /> - <width sOffset="157.86677380546681" a="3.9571764527022286" b="-0.00051215380999680292" c="0.00018710553560471752" d="-8.508709704005205e-06" /> - <width sOffset="162.40015175103235" a="3.9579072305904934" b="0.00065968576662481953" c="7.049927981042932e-05" d="-6.4228281561892151e-06" /> - <width sOffset="169.06835446009435" a="3.9635365184339304" b="0.00074312098145382555" c="0.00010756069381881304" d="-4.4137406581035621e-06" /> - <width sOffset="172.55016123547188" a="3.9672415746598517" b="0.0013316090381954371" c="4.178735361107625e-05" d="-7.6221691077419656e-06" /> - <width sOffset="182.07109265008381" a="3.9771293299637591" b="5.4511850799683452e-05" c="-8.8795482377986899e-05" d="-1.2303937561852792e-05" /> - <width sOffset="182.20553803716277" a="3.977135023901651" b="2.9968363038657741e-05" c="7.7946177085368981e-05" d="-3.5918046414922874e-06" /> - <width sOffset="192.85018020435092" a="3.9819538093920115" b="0.00046844170466658327" c="-3.7035798054655231e-05" d="-3.5765173070566146e-06" /> - <width sOffset="192.86113396273646" a="3.9819589361408299" b="0.00046762905494854003" c="-9.6922351704746332e-05" d="-2.3287742528342409e-06" /> - <width sOffset="199.24637580364359" a="3.9803869484376948" b="-0.0010549578103689733" c="-4.9975631674001973e-05" d="2.3833832067611563e-06" /> - <width sOffset="203.00018968879044" a="3.975848690699844" b="-0.0013294026436527742" c="-2.2877008241865084e-05" d="2.1662097988174061e-06" /> - <width sOffset="213.15019917322996" a="3.9622635553641485" b="-0.0011243000467092319" c="4.7617929735631529e-05" d="1.9337565970162254e-06" /> - <width sOffset="218.73569575720919" a="3.9578063214645667" b="-0.00041137378618840835" c="0.00037630676408504" d="-1.8768440293658013e-05" /> - <width sOffset="223.30020865766949" a="3.9619839782293593" b="0.0018508315103905482" c="0.00012007172890701725" d="-1.8414306343833483e-05" /> - <width sOffset="232.01189323211185" a="3.9750456973217556" b="-0.00024969004228507562" c="-0.00037957285133309718" d="2.4518714710445081e-05" /> - <width sOffset="233.45021814210901" a="3.9739742670345088" b="-0.0011894168437890688" c="-0.00028298640176159685" d="2.1195139330601475e-05" /> - <width sOffset="236.34215321831772" a="3.9686804813191126" b="-0.0022943902523728148" c="-0.00011563073115909523" d="2.0796477048793303e-05" /> - <width sOffset="241.69977630718645" a="3.9562671287494391" b="-0.0017425679620186611" c="-0.00012809752732241694" d="1.6340953222120902e-05" /> - <width sOffset="243.60022762654853" a="3.9526049738664701" b="-0.0020523975833806902" c="-3.9998115027009502e-05" d="1.4883614505485438e-05" /> - <width sOffset="251.19533451959182" a="3.9412304158221567" b="-8.4264627683999766e-05" c="5.8607659141613893e-05" d="-1.2952264295279302e-06" /> - <width sOffset="253.75023711098805" a="3.9413760902533141" b="0.00018984521530311234" c="5.0431807363287958e-05" d="-1.5576750359419863e-06" /> - <width sOffset="263.90024659542757" a="3.9468698099067208" b="0.00073218423252464503" c="5.8802683327274321e-06" d="-1.4551067294594938e-06" /> - <width sOffset="274.0502560798671" a="3.9533857099819469" b="0.00040182675164051782" c="-3.614507463768066e-05" d="-1.6504138200763885e-06" /> - <width sOffset="278.51803298567415" a="3.9543123030603038" b="-1.9981389511414453e-05" c="-8.4388357227997297e-05" d="1.7204025891657439e-06" /> - <width sOffset="284.20026556430662" a="3.9517896889526813" b="-0.00081236606067188681" c="-5.4494937975339127e-05" d="1.8387803512274216e-06" /> - <width sOffset="287.15157626896507" a="3.9489647494007447" b="-0.0010859804220339205" c="-3.4699894718142695e-05" d="1.734799657235857e-06" /> - <width sOffset="294.35027504874614" a="3.9399960705544292" b="-0.0013158700678565756" c="4.1675446201236067e-06" d="1.6097758843504675e-06" /> - <width sOffset="304.50028453318566" a="3.92875264110307" b="-0.00073373849506717329" c="5.614275232202345e-05" d="1.5679571957694021e-06" /> - <width sOffset="310.2344800193967" a="3.926686903022893" b="6.4796530491877498e-05" c="0.0012288860336329883" d="-0.00025862948086488829" /> - <width sOffset="313.32683123449988" a="3.9309907266009994" b="0.00024555218687502924" c="-3.0744853207498958e-05" d="1.4736627888758125e-06" /> - <width sOffset="314.65029401762519" a="3.9312652706406372" b="0.00017191644759187251" c="-2.4762880925237231e-05" d="1.7616980670700406e-06" /> - <width sOffset="319.85742338857165" a="3.9317377653004613" b="5.7330480002206678e-05" c="-0.00051291489992087171" d="0.00011811681057924545" /> - <width sOffset="322.84140131853377" a="3.9304801096155391" b="0.00015145728254501351" c="0.00021696382674316633" d="-7.9216544473530174e-06" /> - <width sOffset="323.68020954439118" a="3.9307551335732698" b="0.00049871835757621212" c="0.00099440020690183973" d="-0.00015331308330807423" /> - <width sOffset="324.80030350206471" a="3.9323458818503894" b="0.0021493170837305485" c="0.00047274220293663219" d="-0.00015542605488902945" /> - <width sOffset="327.36985022169745" a="3.938353067869353" b="0.0015001490550439979" c="-2.1543876640972718e-05" d="-1.7901125804251135e-06" /> - <width sOffset="334.06730721271975" a="3.9468960942117728" b="0.00097067918601178227" c="0.0013210639592688936" d="5.8047862473836024e-05" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.5196324603484626" b="-0.0089413787440776691" c="0.0044156600211438628" d="0.0012386353921596254" /> - <width sOffset="0.80321921913237482" a="3.5159412532858618" b="0.00054946541247716035" c="0.00028842501007090947" d="-5.929218096763198e-05" /> - <width sOffset="3.1019798983772411" a="3.5180082248076099" b="0.00093555242346065562" c="4.7569836600084318e-05" d="-1.7542758348590346e-07" /> - <width sOffset="10.150009484439522" a="3.5269036255718675" b="0.0015799567061629311" c="4.5093960918033129e-05" d="-2.1312796637467881e-07" /> - <width sOffset="15.178499079456667" a="3.5359615551497723" b="0.0020172984583894339" c="0.00052446499283823403" d="-0.00011457540731579338" /> - <width sOffset="17.033651241588498" a="3.5407774175547826" b="0.0027802586175601509" c="-9.7926175969020494e-05" d="-0.00011366979045422791" /> - <width sOffset="19.565355277223617" a="3.5453440271207306" b="9.8710226281624618e-05" c="-0.0011200705109953601" d="7.0352188888724994e-05" /> - <width sOffset="20.300018968879044" a="3.5448399055449933" b="-0.0014331263298926022" c="-0.0009517889435334679" d="7.1656770757279797e-05" /> - <width sOffset="28.322996297320913" a="3.5090823573673102" b="-0.0028682439846172414" c="0.008270551608503509" d="-0.00051322234313401786" /> - <width sOffset="29.577288102707378" a="3.5174836228615143" b="0.015456848260920402" c="0.0054249442251079801" d="-0.00059032546032194489" /> - <width sOffset="30.450028453318566" a="3.5347130703509033" b="0.023577074001715815" c="0.0039164268715707442" d="-0.00058700326871230859" /> - <width sOffset="33.581119059187365" a="3.6289117458114442" b="0.03083798695632561" c="-0.0070929285022739248" d="0.00042452758774864908" /> - <width sOffset="40.109771974193634" a="3.6460526529863548" b="-0.0074922382203183348" c="0.0011816982183026046" d="0.00043809725100624203" /> - <width sOffset="40.600037937758088" a="3.6427151231016142" b="-0.0060176412835249221" c="0.0018798210184153856" d="0.00041399663019781963" /> - <width sOffset="41.835494741301417" a="3.6389305502448428" b="0.00052294968290333998" c="-0.00011442556156417556" d="7.0691117579108755e-06" /> - <width sOffset="50.750047422197611" a="3.6395070899565933" b="0.00016817530780192914" c="7.7545022734813466e-05" d="7.4737184222665912e-06" /> - <width sOffset="54.535275669706657" a="3.6416600672343087" b="0.0010764757851275495" c="0.0003224516105426714" d="-2.046339800514362e-05" /> - <width sOffset="60.900056906637133" a="3.6562979724217222" b="0.0026941999231678746" c="-6.9167519110195893e-05" d="-2.0689435408780954e-05" /> - <width sOffset="65.515680241791969" a="3.6652254252960237" b="0.0007333956144272341" c="-0.00080934691913748592" d="4.0380909269744489e-05" /> - <width sOffset="71.050066391076655" a="3.6513396585885238" b="-0.0045145484366283526" c="-0.00013884342347332245" d="4.0549081063542246e-05" /> - <width sOffset="76.773587412951301" a="3.628554969324874" b="-0.0021188902622905643" c="0.00011806773398639337" d="-1.0598954046095055e-06" /> - <width sOffset="81.200075875516177" a="3.6213971950422881" b="-0.0011359414737917906" c="0.00010519364778652918" d="-9.6920106816198111e-07" /> - <width sOffset="86.529873365714749" a="3.6181843266108777" b="-9.7215325870181964e-05" c="7.815182435236399e-05" d="-3.5884537516195361e-06" /> - <width sOffset="91.350085359955699" a="3.6191296536145123" b="0.00040607421670148507" c="2.5445556309156128e-05" d="-3.4473216683914455e-06" /> - <width sOffset="99.860183832177071" a="3.6223035565284198" b="9.0179123368490572e-05" c="5.4312248544352288e-06" d="1.3069754669992346e-08" /> - <width sOffset="101.50009484439522" a="3.6224661061436212" b="0.00010809802005795318" c="4.3942636901859015e-06" d="-7.8139307322152327e-07" /> - <width sOffset="111.65010432883474" a="3.623198922819963" b="-4.4201998668936399e-05" c="-1.8065994534696985e-05" d="-8.1534145737925136e-07" /> - <width sOffset="121.80011381327427" a="3.6200364773937093" b="-0.00066293804723665476" c="-4.2123829193496109e-05" d="-5.1933830505665632e-07" /> - <width sOffset="125.80758408126147" a="3.6166698476315906" b="-0.00102557946926994" c="-0.00058852117411735795" d="4.635653089430645e-05" /> - <width sOffset="130.45014673942862" a="3.6038624768912659" b="-0.0034926514272996586" c="0.00015463455505588017" d="3.6489400398794418e-05" /> - <width sOffset="131.95012329771379" a="3.5990946444509802" b="-0.002782459257543789" c="0.00032961767979067713" d="4.2430750401858502e-05" /> - <width sOffset="136.51145757500299" a="3.5972876336256236" b="0.0028729469358199579" c="4.5325541431797044e-05" d="-4.3793350608324583e-06" /> - <width sOffset="142.10013278215331" a="3.6139948419111261" b="0.0029692232617311567" c="-2.7588348610664879e-05" d="-4.4186366150157962e-06" /> - <width sOffset="147.86735428083483" a="3.6293538037859157" b="0.0022101042803106372" c="-0.0001039322539022835" d="-3.9829639541373414e-06" /> - <width sOffset="152.25014226659283" a="3.6367084865292618" b="0.0010695539740575427" c="-0.00014627735765784065" d="-6.5216516424519474e-06" /> - <width sOffset="155.60904476008415" a="3.6384035359992715" b="-0.00013384503110188065" c="2.6770480897842689e-06" d="-3.6261784392865692e-07" /> - <width sOffset="157.86677380546681" a="3.6381108228543497" b="-0.0001273020924482356" c="-0.00018411298691328753" d="7.615158803376098e-06" /> - <width sOffset="162.40015175103235" a="3.6344594009313993" b="-0.0013271004364084809" c="-7.8915384227729466e-05" d="7.5535095094645453e-06" /> - <width sOffset="169.06835446009435" a="3.6243406836277559" b="-0.0013719492390347741" c="-9.3357960847028197e-05" d="5.5444220114213702e-06" /> - <width sOffset="172.55016123547188" a="3.6186660742505068" b="-0.0018204132750559749" c="-3.1183371606509293e-05" d="8.1926786732852142e-06" /> - <width sOffset="182.20553803716277" a="3.6055567051079782" b="-0.00013126829220738316" c="3.4422544853809439e-05" d="-5.1945388941411206e-07" /> - <width sOffset="182.7001707199114" a="3.6055001345285418" b="-9.7596531874655191e-05" c="2.825258853408076e-05" d="-5.9680675414138111e-07" /> - <width sOffset="192.85018020435092" a="3.6067961168799103" b="0.00029147763508483178" c="5.5744824659293942e-06" d="-5.7784422627164963e-07" /> - <width sOffset="192.86113396273646" a="3.6067993103235918" b="0.00029159955012281842" c="6.532451848605399e-05" d="-1.825587660737759e-06" /> - <width sOffset="203.00018968879044" a="3.6145684352659933" b="0.0010532437118591649" c="1.0105306321594554e-05" d="-2.0015308492200463e-06" /> - <width sOffset="213.15019917322996" a="3.6242069814038391" b="0.00063977233004248644" c="-4.9732201136282384e-05" d="-1.7281920229669227e-06" /> - <width sOffset="218.73569575720919" a="3.6259277475048557" b="-7.7532971657533474e-05" c="-0.0003749764948072722" d="1.8974004867716691e-05" /> - <width sOffset="223.30020865766949" a="3.6195657347188726" b="-0.0023147455288710646" c="-0.00011523557209495171" d="1.8898437941879434e-05" /> - <width sOffset="232.01189323211185" a="3.6031496639854494" b="-1.973458183162283e-05" c="0.00039706181346921922" d="-2.4034583112297591e-05" /> - <width sOffset="233.45021814210901" a="3.603871195484361" b="0.00097330652264536748" c="0.00030218642831174406" d="-2.064636215997513e-05" /> - <width sOffset="233.99513521870497" a="3.6044879557623215" b="0.0012842477537315488" c="0.00027322574712484082" d="-2.0743154671465591e-05" /> - <width sOffset="241.69977630718645" a="3.6211146437598161" b="0.0018004264156629517" c="0.00014049591473982024" d="-1.6287630844700651e-05" /> - <width sOffset="243.60022762654853" a="3.6249319012607342" b="0.0021579588562015391" c="4.9674846525971641e-05" d="-1.4935530926631057e-05" /> - <width sOffset="251.19533451959182" a="3.6376436709174094" b="0.00032783302342612999" c="-5.0113859947860994e-05" d="1.2433100084445258e-06" /> - <width sOffset="253.75023711098805" a="3.6381748676970793" b="9.6108182023569634e-05" c="-3.8859437914665049e-05" d="1.1731077695474465e-06" /> - <width sOffset="263.90024659542757" a="3.6363736595967491" b="-0.0003301689816091035" c="-4.8255892097895441e-07" d="1.2679170507357095e-06" /> - <width sOffset="274.0502560798671" a="3.6342985639405403" b="5.1907748571832033e-05" c="4.0025086110652067e-05" d="1.1526748427933472e-06" /> - <width sOffset="278.51803298567415" a="3.6354322153366194" b="0.00047857979234019413" c="8.1597008566942659e-05" d="-2.2181415599528291e-06" /> - <width sOffset="278.95114063443964" a="3.6356546178453537" b="0.00054801211754185956" c="9.4134505722226415e-05" d="-2.7630750432054335e-06" /> - <width sOffset="284.20026556430662" a="3.6407252936715082" b="0.001307864068413628" c="5.055120410564471e-05" d="-2.3358860647444651e-06" /> - <width sOffset="286.4438857659319" a="3.6438877286535791" b="0.0014994241025836769" c="-0.0064532634176447026" d="0.00069537288391862035" /> - <width sOffset="292.61938778547915" a="3.5708105242356663" b="0.0013530839206863082" c="0.00013901990477289421" d="-6.9615881462977663e-06" /> - <width sOffset="294.35027504874614" a="3.5735329589030185" b="0.0017717693429925017" c="0.00010345459620051812" d="-7.4838241554958377e-06" /> - <width sOffset="304.50028453318566" a="3.5943489105749507" b="0.0015588884634255638" c="-0.00011983610406213115" d="-8.00966933070948e-06" /> - <width sOffset="308.2661538689743" a="3.5980922225445018" b="0.00031554033498139446" c="-0.00015154817042701676" d="-1.771700675301485e-06" /> - <width sOffset="310.2344800193967" a="3.5981126537586734" b="-0.00030164446023840755" c="-0.0013077803868238428" d="0.00025842573738540443" /> - <width sOffset="313.32683123449988" a="3.5923159503078637" b="-0.00097618318874858104" c="-5.0039639173958254e-05" d="-1.67740626823877e-06" /> - <width sOffset="314.65029401762519" a="3.5909324726483671" b="-0.0011174485906610147" c="-5.6521996054145301e-05" d="-1.8083203178829273e-06" /> - <width sOffset="323.68020954439118" a="3.5749017832789889" b="-0.0025805742126230502" c="-0.00090287956209694829" d="0.00014358310854221463" /> - <width sOffset="324.80030350206471" a="3.5710803102428317" b="-0.0040627714810387633" c="-0.00041897906310276768" d="0.0001467336968719345" /> - <width sOffset="327.19174389552131" a="3.5609751190908407" b="-0.0035491940090245588" c="-0.00055964067432418799" d="0.00024638318116429188" /> - <width sOffset="327.36985022169745" a="3.5603266243715743" b="-0.0037250978971126087" c="-0.0011318309134853023" d="9.2747238898694851e-05" /> - <width sOffset="334.06730721271975" a="3.5124718000219097" b="-0.0064050846174790186" c="-0.00064689442476109171" d="3.2909263842341427e-05" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="33.581119059187365" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <roadMark sOffset="33.581119059187365" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="252.86276670674454" space="0" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <roadMark sOffset="286.4438857659319" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="48.506427220572334" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <predecessor id="-5" /> - <successor id="-5" /> - </link> - <width sOffset="0" a="0.21701630556761309" b="-0.0027886358718120004" c="0.0062740106477256873" d="-0.0038117155639508728" /> - <width sOffset="0.80321921913237482" a="0.21684891420206576" b="-8.7335983502503047e-05" c="0.0010720323394773916" d="4.7518813421122737e-05" /> - <width sOffset="10.150009484439522" a="0.34848992362873776" b="0.032406872225355501" c="0.0024041129250735229" d="4.7631917404791957e-05" /> - <width sOffset="17.033651241588498" a="0.70102145640882085" b="0.072276023642777409" c="0.003372482816915033" d="4.6726300543289596e-05" /> - <width sOffset="20.033590122536843" a="0.94945775153008238" b="0.093772067007949336" c="0.003773004016148111" d="-0.00037735798472574359" /> - <width sOffset="20.300018968879044" a="0.97470202262762662" b="0.095702181711157325" c="0.0034581608874897749" d="-0.00037866256669117753" /> - <width sOffset="22.533538420681239" a="1.2014870028547948" b="0.10548292230518594" c="0.0044349602064864841" d="-0.00024692170024260082" /> - <width sOffset="28.322996297320913" a="1.9129109860212319" b="0.13200611974086338" c="-0.0073513067510575644" d="0.00033795741364120858" /> - <width sOffset="28.822847707781733" a="1.977099903665569" b="0.12491031507618722" c="0.0017816377287327408" d="-0.00031797319370513877" /> - <width sOffset="30.450028453318566" a="2.1836989076036701" b="0.12818269902965126" c="0.00025889297524104215" d="-0.00031595286040189425" /> - <width sOffset="32.571733245226845" a="2.4538124874297385" b="0.12501437817686895" c="0.18840805705943062" d="-0.75342306923452773" /> - <width sOffset="32.821658551143024" a="2.4850635254602942" b="0.078007837049026668" c="-0.21832900366169944" d="0.1871838948435538" /> - <width sOffset="33.32150959052786" a="2.4928831713660591" b="4.816274140833493e-05" c="-0.0053639910310474565" d="0.00094003043460061278" /> - <width sOffset="33.581119059187365" a="2.4925506051939186" b="-0.0025468570729755453" c="0.00086360548690987953" d="-7.1500421914032848e-05" /> - <width sOffset="39.581023062546237" a="2.4929151600889341" b="9.4444491611013134e-05" c="0.0016622069878965973" d="-0.00065484417856226504" /> - <width sOffset="40.600037937758088" a="2.4940445074033706" b="0.001442118259440225" c="-0.00029757801079941361" d="-0.00059011167046651471" /> - <width sOffset="41.835494741301417" a="2.4942591735329849" b="-0.001995328361193489" c="0.0010439209950608944" d="-0.0001831841520263197" /> - <width sOffset="43.835504262607742" a="2.4929787274046289" b="-1.7855256164250183e-05" c="6.119537580957248e-06" d="-4.6531176344513764e-07" /> - <width sOffset="50.750047422197611" a="2.4929940194219906" b="3.1424783622285499e-08" c="1.3623841060007272e-07" d="-9.0406873343981363e-09" /> - <width sOffset="60.900056906637133" a="2.4929989203539833" b="2.8792477085263363e-09" c="-1.7153185166076133e-06" d="1.1260293319718412e-07" /> - <width sOffset="71.050066391076655" a="2.4929399796285248" b="-1.6147081055811578e-08" c="-1.4677333702138488e-06" d="9.6371998060025417e-08" /> - <width sOffset="81.200075875516177" a="2.4928893802886023" b="-2.5654162586364465e-08" c="-1.3990991745916403e-06" d="9.1894806987970204e-08" /> - <width sOffset="91.350085359955699" a="2.4928410736163409" b="-2.5642607831490201e-08" c="1.5685280748652868e-07" d="-1.0271477018457016e-08" /> - <width sOffset="101.50009484439522" a="2.4928462320506783" b="-1.6113297163244424e-08" c="2.816469057729186e-07" d="-1.8437329053776425e-08" /> - <width sOffset="111.65010432883474" a="2.4928558049528045" b="2.9343855312193717e-09" c="6.3768912256081456e-07" d="-4.1791876470110434e-08" /> - <width sOffset="121.80011381327427" a="2.4928778302032679" b="3.1500749334521794e-08" c="2.5727626246969388e-06" d="-4.1131306407052565e-07" /> - <width sOffset="127.33589630623487" a="2.4928870700461516" b="-9.2979187663252971e-06" c="6.53228151085598e-05" d="-3.4265154251148929e-06" /> - <width sOffset="130.45014673942862" a="2.4933881574115677" b="0.00029786853898454641" c="-6.4206697630972415e-05" d="6.4406150708040651e-06" /> - <width sOffset="131.95012329771379" a="2.4937122287399047" b="0.000148724249247968" c="-4.189248751224139e-05" d="1.3876041539147873e-06" /> - <width sOffset="142.10013278215331" a="2.492356896144214" b="-0.00027282989357978096" c="9.8137085164353569e-07" d="1.4302342284351606e-06" /> - <width sOffset="152.25014226659283" a="2.4911843428006089" b="0.00018913169682855161" c="4.6639176355762349e-05" d="2.4217825268236326e-06" /> - <width sOffset="155.60904476008415" a="2.4924375870759317" b="0.00058441388142654177" c="-0.00014362841117790583" d="-3.7372512716575586e-06" /> - <width sOffset="157.60914525228009" a="2.4930019996703416" b="-3.4980152505744063e-05" c="1.4437637915924185e-05" d="-1.6551209195556039e-06" /> - <width sOffset="162.40015175103235" a="2.492983791181401" b="-1.0612180350742735e-05" c="-4.931992605468237e-06" d="2.7355495125698204e-07" /> - <width sOffset="172.55016123547188" a="2.4926540215911999" b="-2.6184620892657728e-05" c="-1.6605247454188551e-06" d="8.9137945152204223e-08" /> - <width sOffset="182.7001707199114" a="2.492310385593429" b="-3.2343611373698736e-05" c="-7.9385239641546483e-07" d="6.2670624473949509e-08" /> - <width sOffset="192.85018020435092" a="2.4919658463203431" b="-2.9089340650525521e-05" c="-4.2736315163901497e-07" d="6.9055654209247124e-08" /> - <width sOffset="203.00018968879044" a="2.4916987713409755" b="-1.6421922441404833e-05" c="1.884386858076059e-06" d="-5.2327440585779952e-08" /> - <width sOffset="213.15019917322996" a="2.4916715054539118" b="5.6584250551437439e-06" c="2.1443457110143084e-06" d="-3.8942698464195333e-08" /> - <width sOffset="223.30020865766949" a="2.4919091331389565" b="3.7152738713050026e-05" c="1.069206559902607e-06" d="6.7965232863312928e-08" /> - <width sOffset="233.45021814210901" a="2.4924674563014282" b="7.9863536025458209e-05" c="-2.0437709057481118e-06" d="8.7321684719937862e-08" /> - <width sOffset="233.99513521870497" a="2.4925103825687227" b="7.7713951177436625e-05" c="-6.6920064120777742e-06" d="1.8411420048740945e-07" /> - <width sOffset="243.49585970021383" a="2.4928025667385763" b="4.1265602845861628e-07" c="1.0069197348472856e-05" d="-4.4659324201161228e-07" /> - <width sOffset="243.60022762654853" a="2.4928027189793047" b="2.4998647844423432e-06" c="1.2810627068541833e-05" d="-3.4968949941970206e-07" /> - <width sOffset="253.75023711098805" a="2.4937822141516675" b="0.00015447797593595665" c="3.3086244145064721e-06" d="-4.5833805763427712e-07" /> - <width sOffset="263.90024659542757" a="2.4952117549294686" b="7.9985451945626838e-05" c="-8.8265164715186284e-06" d="-3.9338797334157325e-07" /> - <width sOffset="274.0502560798671" a="2.494702918082881" b="-0.000220776664527846" c="-1.9772543094594405e-05" d="-4.0597623605729732e-07" /> - <width sOffset="278.95114063443964" a="2.4930982183921371" b="-0.00044383559365664821" c="-4.1161050475232481e-05" d="1.3895725446252405e-07" /> - <width sOffset="279.45118532624207" a="2.4928660060315471" b="-0.0004848960866867323" c="-0.99612663610577112" d="1.9920094644417301" /> - <width sOffset="279.70120639246761" a="2.4616093810996418" b="-0.12502545998042419" c="0.020852763714985616" d="-0.027794398218186463" /> - <width sOffset="280.45127117859124" a="2.36783509165382" b="-0.14065476292259968" c="0.0040523285350778952" d="-0.0004715874285818145" /> - <width sOffset="284.20026556430662" a="1.8726276192820395" b="-0.13015487485369295" c="-0.0012520994043989393" d="-0.0004721204332235043" /> - <width sOffset="284.95166426873834" a="1.7739221873618796" b="-0.13283620420249476" c="0.0058152648242771818" d="-0.00083855188777844927" /> - <width sOffset="286.4438857659319" a="1.5858638309282114" b="-0.12108255118578232" c="0.0085494414621685288" d="-0.0015362606577618006" /> - <width sOffset="288.44389502042418" a="1.3656054344608446" b="-0.10531992559691239" c="0.0065582430348436263" d="-0.00075894266984368017" /> - <width sOffset="292.61938778547915" a="0.98493412154375992" b="-0.090248036896157041" c="0.0033419107782880625" d="-5.6608197778485095e-05" /> - <width sOffset="294.35027504874614" a="0.83844365835288936" b="-0.079187884802781563" c="0.003051206017715176" d="-5.7147801065295044e-05" /> - <width sOffset="298.11990406879625" a="0.58023143562328006" b="-0.058620283711028356" c="0.00094597779076634387" d="0.00018647376909584359" /> - <width sOffset="303.12037206103588" a="0.33407222217964438" b="-0.035171469529818873" c="2.2985384051798207e-05" d="-9.0745427906513316e-06" /> - <width sOffset="304.50028453318566" a="0.28555859651018789" b="-0.035159871995036979" c="-2.1964836985942734e-05" d="-8.5013963679702098e-06" /> - <width sOffset="304.62051203541523" a="0.28133108065330337" b="-0.035165522204237944" c="0.0029453610877170286" d="-7.6248036301144009e-05" /> - <width sOffset="308.2661538689743" a="0.18858164793318632" b="-0.016730229341383011" c="0.0020526639571164292" d="-8.2486004956585824e-05" /> - <width sOffset="314.65029401762519" a="0.1439715920365936" b="-0.00060694762830532621" c="0.00047254591371289408" d="-8.2365837167338302e-05" /> - <width sOffset="318.01712841095173" a="0.14414118681781307" b="-0.00022597204422885047" c="0.00032639133666347687" d="-1.7453915410448781e-05" /> - <width sOffset="324.80030350206471" a="0.15217868856613759" b="0.0017927265071097645" c="-2.6601271780210341e-05" d="-1.8590090852466321e-05" /> - <width sOffset="327.19174389552131" a="0.15605950526743495" b="0.0013465463229948226" c="0.001033403726227018" d="-0.00011823957518784113" /> - <width sOffset="333.69242300463151" a="0.17600167993227789" b="-0.00020779957227068033" c="0.011271122574164995" d="-0.0059322013310142679" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5173992" s="38.03800113478809" t="-10.866898671734956" orientation="none" validLength="5.4191474846959693" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.4191474846959693" s="38.03800113478809" distance="0" tStart="-10.866898671734956" tEnd="-10.78907210193794" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273609448" s="43.457148619484059" t="-10.78907210193794" orientation="none" validLength="13.681138072184332" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.681138072184332" s="43.457148619484059" distance="0" tStart="-10.78907210193794" tEnd="-10.782717098965401" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542044904" s="57.138286691668391" t="-10.782717098965401" orientation="none" validLength="5.6693890299923453" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.6693890299923453" s="57.138286691668391" distance="0" tStart="-10.782717098965401" tEnd="-10.894473747274745" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810480360" s="62.807675721660736" t="-10.894473747274745" orientation="none" validLength="1.9880646316839758" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.9880646316839758" s="62.807675721660736" distance="0" tStart="-10.894473747274745" tEnd="-11.050388804326182" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078915816" s="64.795740353344712" t="-11.050388804326182" orientation="none" validLength="3.976127107250889" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.976127107250889" s="64.795740353344712" distance="0" tStart="-11.050388804326182" tEnd="-11.562593664375665" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742213" s="68.771867460595601" t="-11.562593664375665" orientation="none" validLength="3.4386472992358108" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.4386472992358108" s="68.771867460595601" distance="0" tStart="-11.562593664375665" tEnd="-11.826272506129113" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742214" s="72.210514759831412" t="-11.826272506129113" orientation="none" validLength="7.3424095139455972" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.3424095139455972" s="72.210514759831412" distance="0" tStart="-11.826272506129113" tEnd="-12.022955273641262" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742215" s="79.552924273777009" t="-12.022955273641262" orientation="none" validLength="0.48296782410362482" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="0.48296782410362482" s="79.552924273777009" distance="0" tStart="-12.022955273641262" tEnd="-11.959242526339041" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742216" s="80.035892097880634" t="-11.959242526339041" orientation="none" validLength="1.3084015657680652" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.3084015657680652" s="80.035892097880634" distance="0" tStart="-11.959242526339041" tEnd="-11.543007638717818" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742217" s="81.344293663648699" t="-11.543007638717818" orientation="none" validLength="1.9840300475467956" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.9840300475467956" s="81.344293663648699" distance="0" tStart="-11.543007638717818" tEnd="-11.151567360717852" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742218" s="83.328323711195495" t="-11.151567360717852" orientation="none" validLength="2.9760410825536638" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.9760410825536638" s="83.328323711195495" distance="0" tStart="-11.151567360717852" tEnd="-10.866265486737991" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742219" s="86.304364793749158" t="-10.866265486737991" orientation="none" validLength="24.94216212589302" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="24.94216212589302" s="86.304364793749158" distance="0" tStart="-10.866265486737991" tEnd="-10.945321698164927" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742220" s="111.24652691964218" t="-10.945321698164927" orientation="none" validLength="23.314235601955261" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="23.314235601955261" s="111.24652691964218" distance="0" tStart="-10.945321698164927" tEnd="-10.883873051244921" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742221" s="134.56076252159744" t="-10.883873051244921" orientation="none" validLength="54.894592525580691" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="54.894592525580691" s="134.56076252159744" distance="0" tStart="-10.883873051244921" tEnd="-10.995483974543378" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742222" s="189.45535504717813" t="-10.995483974543378" orientation="none" validLength="20.577317409466048" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="20.577317409466048" s="189.45535504717813" distance="0" tStart="-10.995483974543378" tEnd="-10.88405470330459" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742223" s="210.03267245664418" t="-10.88405470330459" orientation="none" validLength="18.018859693538133" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.018859693538133" s="210.03267245664418" distance="0" tStart="-10.88405470330459" tEnd="-10.925996901524192" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742224" s="228.05153215018231" t="-10.925996901524192" orientation="none" validLength="48.019634858782922" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="48.019634858782922" s="228.05153215018231" distance="0" tStart="-10.925996901524192" tEnd="-10.774358097056139" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="33781996" s="0" t="10.740608623147798" orientation="none" validLength="5.5186935685910496" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.5186935685910496" s="0" distance="0" tStart="10.740608623147798" tEnd="10.702843121889591" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="302217452" s="5.5186935685910496" t="10.702843121889591" orientation="none" validLength="2.4981279370531171" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.4981279370531171" s="5.5186935685910496" distance="0" tStart="10.702843121889591" tEnd="10.589581015269838" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="570652908" s="8.0168215056441667" t="10.589581015269838" orientation="none" validLength="4.8338318201800536" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.8338318201800536" s="8.0168215056441667" distance="0" tStart="10.589581015269838" tEnd="10.54966810582502" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="839088364" s="12.85065332582422" t="10.54966810582502" orientation="none" validLength="2.8587868160228869" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.8587868160228869" s="12.85065332582422" distance="0" tStart="10.54966810582502" tEnd="10.362420293025187" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1107523820" s="15.709440141847107" t="10.362420293025187" orientation="none" validLength="0.88211055179045061" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="0.88211055179045061" s="15.709440141847107" distance="0" tStart="10.362420293025187" tEnd="10.425593565852576" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742225" s="16.591550693637558" t="10.425593565852576" orientation="none" validLength="5.1026709761959808" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.1026709761959808" s="16.591550693637558" distance="0" tStart="10.425593565852576" tEnd="10.276977636506174" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742226" s="21.694221669833539" t="10.276977636506174" orientation="none" validLength="5.3418199325910969" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.3418199325910969" s="21.694221669833539" distance="0" tStart="10.276977636506174" tEnd="10.286454097438384" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742227" s="27.036041602424635" t="10.286454097438384" orientation="none" validLength="3.9732229104355632" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.9732229104355632" s="27.036041602424635" distance="0" tStart="10.286454097438384" tEnd="10.054733843659623" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742228" s="31.009264512860199" t="10.054733843659623" orientation="none" validLength="121.52324871107442" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="121.52324871107442" s="31.009264512860199" distance="0" tStart="10.054733843659623" tEnd="9.7259164518372128" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742229" s="152.53251322393461" t="9.7259164518372128" orientation="none" validLength="8.498151749767203" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.498151749767203" s="152.53251322393461" distance="0" tStart="9.7259164518372128" tEnd="9.8991255455755667" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742230" s="161.03066497370182" t="9.8991255455755667" orientation="none" validLength="10.294941358202237" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.294941358202237" s="161.03066497370182" distance="0" tStart="9.8991255455755667" tEnd="9.8125603998348705" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742231" s="171.32560633190405" t="9.8125603998348705" orientation="none" validLength="7.9960438736363528" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.9960438736363528" s="171.32560633190405" distance="0" tStart="9.8125603998348705" tEnd="9.5588460646315117" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742232" s="179.32165020554041" t="9.5588460646315117" orientation="none" validLength="106.82514372696815" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="106.82514372696815" s="179.32165020554041" distance="0" tStart="9.5588460646315117" tEnd="9.5019611465582106" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742233" s="286.14679393250856" t="9.5019611465582106" orientation="none" validLength="48.803519053995672" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="48.803519053995672" s="286.14679393250856" distance="0" tStart="9.5019611465582106" tEnd="9.5997473592482816" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412697" s="48.267560385116575" t="-10.210919421195175" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848153" s="96.928133222162145" t="-10.70184100274343" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283609" s="132.5171284742888" t="-10.473067526417953" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719065" s="180.75683634794007" t="-10.775673218281145" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154521" s="232.29242422141147" t="-10.495874655511614" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742234" s="264.46973291111425" t="-10.36960855492833" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals /> - </road> - <road name="" length="337.48795844662726" id="33782045" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33554629" /> - <successor elementType="junction" elementId="33556587" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1451.1277026293151" y="-44.180111430978315" hdg="0.40087237207404369" length="25.03550079975042"> - <paramPoly3 aU="0" bU="25.269770779508924" cU="-1.5940247816661355" dU="1.1036614842016628" aV="-0" bV="1.7763568394002505e-15" cV="-2.5177824664155537" dV="-0.52056435380256449" /> - </geometry> - <geometry s="25.03550079975042" x="1475.1282504961414" y="-37.308118368313799" hdg="0.14668306078686988" length="73.991574357821392"> - <paramPoly3 aU="0" bU="74.153295304256915" cU="-0.5099821078385296" dU="-0.47423560261065645" aV="-0" bV="3.5527136788005009e-15" cV="9.1519926389314836" dV="0.31619129116396838" /> - </geometry> - <geometry s="99.027075157571815" x="1546.1277411550784" y="-17.247391835252024" hdg="0.40897361043950875" length="119.99991519544463"> - <paramPoly3 aU="0" bU="119.98734342154684" cU="0.028890881469403551" dU="-0.019939248960809786" aV="-0" bV="7.1054273576010019e-15" cV="3.0057716321908496" dV="-2.2509942805980376" /> - </geometry> - <geometry s="219.02699035301646" x="1655.927727286783" y="31.163800682882471" hdg="0.40279426935087015" length="19.998587412344001"> - <paramPoly3 aU="0" bU="22.707382318400594" cU="-8.6397243065014564" dU="5.8402299754110176" aV="-0" bV="1.7763568394002505e-15" cV="-1.0607005983881543" dV="2.326530753188905" /> - </geometry> - <geometry s="239.02557776536045" x="1673.7461788549363" y="40.132028702367023" hdg="0.61141274417821578" length="29.996929392377243"> - <paramPoly3 aU="0" bU="30.386796600040228" cU="-0.920695983159874" dU="0.5270121532695502" aV="-0" bV="1.7763568394002505e-15" cV="-0.71818859639307298" dV="0.27742963061885295" /> - </geometry> - <geometry s="269.02250715773772" x="1698.5586824754623" y="56.987910352112337" hdg="0.59136366649271122" length="19.993895697433601"> - <paramPoly3 aU="0" bU="21.611765460142717" cU="-3.9691710505113704" dU="2.3146008386069803" aV="-0" bV="-0" cV="1.3916357705081353" dV="-0.31245135216279052" /> - </geometry> - <geometry s="289.01640285517135" x="1714.5251326514122" y="69.009838232615422" hdg="0.6806583523801889" length="48.471555591455889"> - <paramPoly3 aU="0" bU="49.633668156372508" cU="-3.4510377454305514" dU="1.419352001756967" aV="-0" bV="-0" cV="-12.213915161772078" dV="3.9175646669502693" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.02635159219173" b="-0.0061807195891983675" c="0.00012760932896639697" d="-1.1051681559233415e-06" /> - <elevation s="10.226907831715977" a="155.97530643736164" b="-0.0039173893288815542" c="-1.3333193253949182e-05" d="8.9641830864089326e-06" /> - <elevation s="20.453815663431953" a="155.94343749084979" b="-0.0013774218580489186" c="0.00016157686300306666" d="-1.1051681559232816e-06" /> - <elevation s="30.68072349514793" a="155.94506787149004" b="0.0015806740819953064" c="0.00019437248489515333" d="-5.3378519556761411e-06" /> - <elevation s="40.907631326863907" a="155.97585310923128" b="0.0038814809540054862" c="0.00031569005235428332" d="-2.4748625616110377e-05" /> - <elevation s="51.134539158579884" a="156.02209472838513" b="0.002573197278571345" c="-0.00011341035982234892" d="-1.1051681559265511e-06" /> - <elevation s="61.36144699029586" a="156.03536691112942" b="-9.3244746855589285e-05" c="-0.00027073280810805371" d="1.0404138788092059e-05" /> - <elevation s="71.588354822011837" a="156.01722602263098" b="-0.002366268188313596" c="-0.00011975517054792541" d="3.835156653964067e-06" /> - <elevation s="75.028542239091323" a="156.00782447285786" b="-0.0030540626847817189" c="4.4370392056282035e-05" d="4.8556722406114011e-06" /> - <elevation s="81.815262653727814" a="155.99065893598615" b="-0.0017808532091730454" c="0.00037719512021724245" d="-2.3018012995018777e-05" /> - <elevation s="92.042170485443791" a="155.98727629151722" b="-0.0012881110913923199" c="-1.1059772888996886e-06" d="-8.4652567366064546e-08" /> - <elevation s="102.26907831715977" a="155.97389667752674" b="-0.0013372938925897298" c="-0.00022359551411543644" d="1.0920609714619652e-05" /> - <elevation s="112.49598614887574" a="155.94851551796356" b="-0.0024841272811364696" c="-6.7241067724161811e-05" d="6.3833785059689066e-06" /> - <elevation s="122.72289398059172" a="155.92290570241164" b="-0.0018565578328696055" c="-1.1587460750991879e-05" d="7.155571702967286e-06" /> - <elevation s="132.9498018123077" a="155.91036073265931" b="0.00015163046768442166" c="3.3938580231563669e-05" d="-2.7276325751453956e-07" /> - <elevation s="143.17670964402367" a="155.91516931210009" b="0.00076021929578519865" c="3.5221848683112563e-05" d="-8.4031126419339352e-07" /> - <elevation s="153.40361747573965" a="155.92572902437686" b="0.0012169769286695311" c="2.3069516951004836e-05" d="-6.6165727562067289e-07" /> - <elevation s="163.63052530745563" a="155.93988004024351" b="0.0014812290795084167" c="1.4364189654701984e-05" d="-6.4140175778298797e-07" /> - <elevation s="173.8574331391716" a="155.9558447173022" b="0.0015737796227256696" c="5.8648691290698697e-06" d="-6.2103432504741475e-07" /> - <elevation s="184.08434097088758" a="155.97188874491937" b="0.0014988772982519266" c="-4.4912619785931607e-06" d="-3.9873816925104851e-07" /> - <elevation s="194.31124880260356" a="155.9863213836405" b="0.0012819022043732045" c="-2.1037430203324721e-05" d="6.5112381123168001e-07" /> - <elevation s="204.53815663431953" a="155.99792744268396" b="0.0010559089074182455" c="1.9312536166980599e-05" d="-2.8125283265377903e-06" /> - <elevation s="214.76506446603551" a="156.00773765616802" b="0.00056843995463442209" c="-1.2638574300301139e-05" d="-8.465256661515127e-08" /> - <elevation s="219.02699034936217" a="156.00992418463937" b="0.00045609772998759764" c="0.00013575649375688204" d="-3.2863679298470046e-06" /> - <elevation s="224.99197229775149" a="156.01677765348603" b="0.00172487093223758" c="-0.00077477561666883482" d="5.1767251799097903e-05" /> - <elevation s="235.21888012946746" a="156.00875597927575" b="0.0021207085666427187" c="-8.1726893901313955e-06" d="-3.2863679298401025e-06" /> - <elevation s="245.44578796118344" a="156.02607429836928" b="0.00092238573086496595" c="0.00045513909252514317" d="-3.1311394984073463e-05" /> - <elevation s="255.02292289457279" a="156.04914931027389" b="0.0010244571197629143" c="-0.00015943341561200534" d="-2.8452160370917898e-05" /> - <elevation s="255.67269579289942" a="156.04973985570194" b="0.00078122817696545284" c="0.0003677850167346662" d="-2.9377368977062259e-05" /> - <elevation s="265.89960362461539" a="156.06477303271848" b="-0.00091387055810796729" c="-0.00032572370813704649" d="1.6316690218480187e-05" /> - <elevation s="276.1265114563314" a="156.03881243542631" b="-0.0024564927877929127" c="-0.00032555887931084006" d="3.1762996632269718e-05" /> - <elevation s="286.35341928804735" a="156.01361463399502" b="0.00085082741840753623" c="0.00027034907734604241" d="-1.6092685388238837e-05" /> - <elevation s="296.5803271197633" a="156.03337848398172" b="0.0013311129136749039" c="-0.00014058555333274929" d="9.8408537317133509e-06" /> - <elevation s="306.8072349514793" a="156.04281391918232" b="0.0015433560802818433" c="6.4364961717844151e-05" d="-2.4588337654824175e-06" /> - <elevation s="317.03414278319531" a="156.0626995489516" b="0.0020883594993685271" c="6.5038161717531534e-05" d="-5.8377605128242369e-06" /> - <elevation s="327.26105061491126" a="156.08461509135799" b="0.0015869301923772069" c="-4.3076432994611329e-05" d="-4.2713331664674645e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.022298802187366882" b="0.00032249139012566582" c="-1.5766808278331521e-05" d="0" /> - <superelevation s="10.226907831715977" a="0.023947847049035454" b="0" c="-5.1898922269139195e-05" d="3.3752061482613286e-07" /> - <superelevation s="20.453815663431953" a="0.018880778974049675" b="-0.0009556275065858963" c="-0.00012515052205224326" d="7.8376754284209429e-06" /> - <superelevation s="30.68072349514793" a="0.0044016181864224256" b="-0.001056214171026381" c="2.2015798501923957e-06" d="3.2227010434263703e-06" /> - <superelevation s="40.907631326863907" a="-0.0027228309812285072" b="0" c="0.00014405632392269842" d="-7.9127829962219078e-06" /> - <superelevation s="51.134539158579884" a="0.0038802292522991961" b="0.00046371602957953644" c="-8.0281019390855078e-06" d="-9.5455821919143378e-07" /> - <superelevation s="61.36144699029586" a="0.0067619312079698918" b="0" c="-6.8631925022920648e-05" d="3.6669605745432252e-06" /> - <superelevation s="71.588354822011837" a="0.00350602869559502" b="-0.00025320644210239507" c="-5.6446147490945697e-06" d="1.1749421780930873e-06" /> - <superelevation s="81.815262653727814" a="0.0015828933164140477" b="0" c="9.286901494325034e-05" d="-6.0538999321797141e-06" /> - <superelevation s="92.042170485443791" a="0.0048206057140220806" b="0" c="-8.0168675129271802e-06" d="0" /> - <superelevation s="102.26907831715977" a="0.0039821243964659539" b="-0.00016397553030756854" c="-6.516843839159654e-05" d="2.8792744437419583e-06" /> - <superelevation s="112.49598614887574" a="-0.0014310275685193231" b="-0.00059349189083646625" c="-2.4753292852017452e-05" d="1.8067047714899792e-06" /> - <superelevation s="122.72289398059172" a="-0.0081570493364448056" b="-0.00053290335439748601" c="-1.3972364374666069e-05" d="2.5592367025914602e-06" /> - <superelevation s="132.9498018123077" a="-0.012330934545790052" b="-1.5682554339607451e-05" c="7.6673001251523302e-07" d="-2.5340621140902636e-23" /> - <superelevation s="143.17670964402367" a="-0.012411126564688573" b="0" c="1.5758668837198168e-05" d="-6.1191183695910459e-07" /> - <superelevation s="153.40361747573965" a="-0.011417451434689052" b="0.00013032598430636388" c="4.7473951633844174e-06" d="-1.4712738849112063e-07" /> - <superelevation s="163.63052530745563" a="-0.0097454629055308811" b="0.00018126432639386494" c="3.33760884683677e-06" d="-1.5640408547844925e-07" /> - <superelevation s="173.8574331391716" a="-0.0077099043162727754" b="0.00020045641973728129" c="1.8250870201420746e-06" d="-1.6491187115804472e-07" /> - <superelevation s="184.08434097088758" a="-0.0056453642476729871" b="0.00018604219162934014" c="-4.7931667653808069e-07" d="-1.0449623036436566e-07" /> - <superelevation s="194.31124880260356" a="-0.0039046316230653688" b="0.00014345066614676323" c="-5.0102550600887565e-06" d="2.3404843277567557e-07" /> - <superelevation s="204.53815663431953" a="-0.0027112507655105735" b="0.00011440895936768524" c="-1.1140634626269296e-07" d="-1.091876599991976e-08" /> - <superelevation s="214.76506446603551" a="-0.0015645318579136588" b="0.00010870430495754226" c="-4.0775756084512045e-06" d="3.6597952154673913e-07" /> - <superelevation s="224.99197229775149" a="-0.00048783295008751197" b="0.00014013532849683667" c="2.3926916085138036e-05" d="-2.0063556219454419e-06" /> - <superelevation s="235.21888012946746" a="0.001301770319095121" b="0" c="-1.3659710247431215e-05" d="8.9044251186524069e-07" /> - <superelevation s="245.44578796118344" a="0.00082554890937233086" b="0" c="5.8444821902050865e-05" d="-2.7621996972679505e-06" /> - <superelevation s="255.67269579289942" a="0.0039837440882680821" b="0.00032872716635463657" c="3.7985254059476354e-05" d="-3.5238369391743019e-06" /> - <superelevation s="265.89960362461539" a="0.0075492737735523971" b="0" c="-0.00031939844961733569" d="1.642319805974859e-05" /> - <superelevation s="276.1265114563314" a="-0.0082897731770565225" b="-0.0013798277063592252" c="-8.536545235508543e-05" d="9.9623532481554419e-06" /> - <superelevation s="286.35341928804735" a="-0.020673467779615325" b="0" c="0.00037482050072970281" d="-1.8073663276537241e-05" /> - <superelevation s="296.5803271197633" a="-0.00080323312180020868" b="0.0019955554161241191" c="0.00013736302745953293" d="-1.2928434080634131e-05" /> - <superelevation s="306.8072349514793" a="0.02014325484795066" b="0.00074861251265795012" c="-3.6600139796719931e-05" d="8.1089987650887767e-22" /> - <superelevation s="317.03414278319531" a="0.023971250432261754" b="0" c="-2.693506985646465e-05" d="1.7558301622661798e-06" /> - <superelevation s="327.26105061491126" a="0.023032207311604085" b="0" c="2.1058435423845508e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.6597788295885592" b="0.026435404939280042" c="-0.00017578342967055325" d="0.00018474408826148816" /> - <laneOffset s="4.6122124502513557" a="1.7960910330492008" b="0.036603811789200018" c="0.0033952479198280693" d="-0.00031376931547184557" /> - <laneOffset s="10.553311237204458" a="2.0676010767180721" b="0.043721796743314292" c="0.00051462700042653579" d="-0.00010436715383667423" /> - <laneOffset s="18.696465525720342" a="2.4014036080071914" b="0.031341111831083741" c="-0.0003270298903067656" d="-7.1169878474815822e-05" /> - <laneOffset s="20.453815663431953" a="2.4550847031512979" b="0.029532322354026135" c="-0.00079327013613759143" d="-9.6750162974377422e-05" /> - <laneOffset s="28.171469772539567" a="2.591281901608586" b="-0" c="-0.0073943084222315237" d="0.0006138021141979716" /> - <laneOffset s="30.68072349514793" a="2.5544222682627375" b="-0.025514245228297431" c="-0.0028025488486118221" d="0.00060815249095908517" /> - <laneOffset s="34.61474583746466" a="2.4477022988349448" b="-0.019328550721834193" c="-5.229369345578819e-05" d="3.7469352488989125e-05" /> - <laneOffset s="40.907631326863907" a="2.3333364846774822" b="-0.015535302257552003" c="0.00065548014450538482" d="3.7561284689294845e-05" /> - <laneOffset s="48.194218346729919" a="2.2694710276482173" b="-0" c="0.0098378794648184501" d="-0.00033783112892123753" /> - <laneOffset s="51.134539158579884" a="2.3459364440178994" b="0.04909090010036702" c="0.006863617128507935" d="-0.00033686668670579619" /> - <laneOffset s="61.866279128234908" a="3.2468921600328788" b="0.08001695437574724" c="0.006096586943938739" d="-0.00028907315969387834" /> - <laneOffset s="71.588354822011837" a="4.3354301859875628" b="0.11659140769663404" c="-0.0023372884778799204" d="-0.00028914265676858943" /> - <laneOffset s="80.796406096152396" a="4.9850917920364468" b="-0" c="-0.042424858862918025" d="0.0038124300164988326" /> - <laneOffset s="81.815262653727814" a="4.9450840648399437" b="-0.074576998672725575" c="-0.030770582892965328" d="0.0038116122799568396" /> - <laneOffset s="85.611508346281084" a="4.4270532667426394" b="-0.14340944625008292" c="-0.019952481397168816" d="0.0016861211242247694" /> - <laneOffset s="92.042170485443791" a="3.1281222429193285" b="-0.19084417711303636" c="0.012578280703044887" d="0.0016864796812655323" /> - <laneOffset s="94.056066350241707" a="2.8085716567831156" b="-0.11966152787328872" c="0.0022467393929864127" d="0.0012244288234017037" /> - <laneOffset s="99.184654867275569" a="2.4191400594428858" b="-0" c="0.00011857495419810174" d="-1.4446329873050494e-06" /> - <laneOffset s="102.26907831715977" a="2.4202257506209315" b="0.00069023946264696288" c="0.00010335132178765167" d="-1.7105370016496114e-06" /> - <laneOffset s="112.49598614887574" a="2.4362646045399075" b="0.0022674549799441479" c="5.2660286316224778e-05" d="-1.8894745136801576e-06" /> - <laneOffset s="122.72289398059172" a="2.462940342152363" b="0.0027517003699837187" c="-5.9836369764686944e-09" d="-1.9400027201890571e-06" /> - <laneOffset s="132.9498018123077" a="2.4890060199049131" b="0.0021428654013584303" c="-5.5791652397572537e-05" d="-1.9922951416404895e-06" /> - <laneOffset s="134.82075624337313" a="2.4928068784096338" b="0.0019131762118073457" c="-3.3512822779757432e-05" d="4.45771987264134e-07" /> - <laneOffset s="143.17670964402367" a="2.5067134351179288" b="0.0014464870587558728" c="-2.3121462881461538e-05" d="5.0710658279562327e-07" /> - <laneOffset s="153.40361747573965" a="2.5196306751089059" b="0.0011326792096967657" c="-9.6984582856166423e-06" d="5.3498796631383675e-07" /> - <laneOffset s="163.63052530745563" a="2.5307723611466075" b="0.0011021713342028497" c="4.141136577349247e-06" d="5.3569160984061695e-07" /> - <laneOffset s="173.8574331391716" a="2.5430502768877972" b="0.0013549567623701195" c="1.8275420723171762e-05" d="5.1716132130037078e-07" /> - <laneOffset s="184.08434097088758" a="2.559371885120747" b="0.0018910280041569893" c="3.2521300120596055e-05" d="4.9135238426638491e-07" /> - <laneOffset s="194.31124880260356" a="2.5826382100080489" b="0.0027103837945086358" c="4.6378452271288951e-05" d="5.2339991704451884e-07" /> - <laneOffset s="199.91909994045562" a="2.5993884527042987" b="0.0032799303401467566" c="0.0010630799024118789" d="-8.3685105026795311e-06" /> - <laneOffset s="204.53815663431953" a="2.6363954516686907" b="0.012565139313328276" c="0.00094637393444980478" d="-8.4353314926248535e-06" /> - <laneOffset s="214.76506446603551" a="2.8548562138091778" b="0.029275352368835997" c="0.00068729180269383613" d="-8.4421560173810448e-06" /> - <laneOffset s="225.50291065041421" a="3.238003978252979" b="0.041115243969972112" c="-0.00096703970161403938" d="0.00023241528505439329" /> - <laneOffset s="232.38047485479359" a="3.5506430265472724" b="0.060793837767378095" c="0.012125526386173022" d="-0.00088480348203888741" /> - <laneOffset s="235.21888012946746" a="3.8006569647150794" b="0.10824277798364612" c="0.004591547895100352" d="-0.0008847001752736852" /> - <laneOffset s="243.56521107984236" a="4.5095613038820277" b="-0" c="-0.012081082401754973" d="0.0003495969034019163" /> - <laneOffset s="245.44578796118344" a="4.4691608132827394" b="-0.041729687392957855" c="-0.010108053344362865" d="0.00034949045493133386" /> - <laneOffset s="255.67269579289942" a="3.3590224502312735" b="-0.13881870063805138" c="0.00061666462573195535" d="0.00034948043690526934" /> - <laneOffset s="266.60627567138363" a="2.371738230043936" b="-0" c="0.0033673766728367833" d="-0.0001146723780411159" /> - <laneOffset s="276.1265114563314" a="2.5779932015434608" b="0.032936484900959392" c="0.00010769105714370083" d="-0.00011562044727314376" /> - <laneOffset s="286.18645415977875" a="2.8025188350225796" b="-0" c="-0.0015873365845298245" d="2.283944049949868e-05" /> - <laneOffset s="296.5803271197633" a="2.6566806284932833" b="-0.025594937524730407" c="-0.00087301956653142729" d="1.9586216449947072e-05" /> - <laneOffset s="302.36143309765134" a="2.4833205132587506" b="-0.033725191026229485" c="-0.0014114979277497349" d="8.9235294113200342e-05" /> - <laneOffset s="306.8072349514793" a="2.3133278024783621" b="-0.040984423209747566" c="-0.00011969801368482381" d="7.3293355783937499e-05" /> - <laneOffset s="308.50285041576171" a="2.2438471467859094" b="-0.040758167039019286" c="-0.0018547207834096336" d="0.00011860735932839454" /> - <laneOffset s="317.03414278319531" a="1.8347824368974484" b="-0.046506717247204794" c="0.0011839457041945554" d="0.00011932811810402529" /> - <laneOffset s="321.79461720424456" a="1.6530925217494186" b="-0.027121747546732012" c="0.0011921142382938521" d="1.1250813849865412e-05" /> - <laneOffset s="327.26105061491126" a="1.5422937174085645" b="-0.013079934455150936" c="0.0013748969793576111" d="1.0984956782671022e-05" /> - <laneOffset s="331.77369517956527" a="1.5122764367989021" b="-0" c="-4.5495826053265365e-05" d="3.9892908080503584e-05" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="0.21678787852248238" b="-0.0051133651796222528" c="0.0030059937064288353" d="-0.00017185695452167789" /> - <width sOffset="4.6122124502513557" a="0.24028751015188643" b="0.011647714921001619" c="-0.00038672304702464357" d="0.00032665644921635876" /> - <width sOffset="5.1023781913334219" a="0.24594237575497035" b="0.011504047983171325" c="0.0018045210495966977" d="7.3237454713337869e-05" /> - <width sOffset="10.249149437538732" a="0.36293626086154385" b="0.035898978763582876" c="0.0050087451648876411" d="0.0002669781372058931" /> - <width sOffset="10.553311237204458" a="0.3743262524943165" b="0.039020014617253157" c="0.0025405762377219993" d="5.7575975523724948e-05" /> - <width sOffset="18.696465525720342" a="0.89163020349993216" b="0.091850378123148529" c="0.0022391497754237349" d="2.4378700161497596e-05" /> - <width sOffset="19.435631757411208" a="0.96075614377081298" b="0.09520054505772646" c="-0.00013657212946371075" d="0.0018532360069267938" /> - <width sOffset="20.453815663431953" a="1.0595024051757713" b="0.10068617474848066" c="0.005615262158081699" d="0.0018788162914268056" /> - <width sOffset="20.913929816664723" a="1.1072013311223028" b="0.10704676253517241" c="0.0047487690383538972" d="-0.00033996660742331057" /> - <width sOffset="27.073509536022513" a="1.867285506222192" b="0.12685217547616934" c="-0.0022849501257978348" d="0.00015651697223165845" /> - <width sOffset="28.171469772539567" a="2.0040167726514739" b="0.12240065817771026" c="0.0025915835173391322" d="-0.00055403530494069989" /> - <width sOffset="30.68072349514793" a="2.3187153206437379" b="0.12494133172290552" c="-0.0015502657904434554" d="-0.00054838568171793501" /> - <width sOffset="30.944376972667598" a="2.3515387228946465" b="0.124009505730789" c="0.030916334753932313" d="-0.030600147784132246" /> - <width sOffset="31.952705172691715" a="2.4766433734175322" b="0.093021254637652498" c="-0.18403442396004183" d="0.12142709981551679" /> - <width sOffset="32.456868307847046" a="2.4923239961086816" b="4.770107518452596e-05" c="0.0012182037446077296" d="-0.00067125026357767832" /> - <width sOffset="34.61474583746466" a="2.4913546819472154" b="-0.0040717304857014261" c="0.0012999774687845376" d="-0.00010056712510771065" /> - <width sOffset="40.907631326863907" a="2.4921499749297675" b="0.00034199072262392285" c="-0.00059899754235821388" d="-0.00010065905731958099" /> - <width sOffset="41.167818475422948" a="2.4921966329663561" b="9.844742559042205e-06" c="-3.0939618033117098e-06" d="2.2708717844201968e-07" /> - <width sOffset="48.194218346729919" a="2.4921918317624501" b="0" c="1.6249164670210925e-05" d="-2.6234136959165451e-06" /> - <width sOffset="51.134539158579884" a="2.4922656251979967" b="2.7513451219304819e-05" c="3.3540733028001452e-06" d="-2.3323744773706798e-06" /> - <width sOffset="55.748771254119205" a="2.4922348529645886" b="-9.0510322827419554e-05" c="-0.00068550107899173159" d="0.00011426022910427508" /> - <width sOffset="61.866279128234908" a="2.4921858830030135" b="0.0043505642319625892" c="-0.008667004399202257" d="6.6466702061519485e-05" /> - <width sOffset="62.118981203611355" a="2.4927328916914466" b="-1.7042406419240375e-05" c="-3.8512128960038056e-06" d="2.0565987104162681e-07" /> - <width sOffset="71.588354822011837" a="2.4924008040001482" b="-3.4655586423584794e-05" c="9.4795481216016636e-08" d="1.2938050306690553e-07" /> - <width sOffset="80.796406096152396" a="2.4921907429020029" b="0" c="0.0011105708657059496" d="-0.00023048739609516332" /> - <width sOffset="81.815262653727814" a="2.4930998183389868" b="0.00154523957389123" c="0.00040681430465627083" d="-0.00023090796396519394" /> - <width sOffset="85.611508346281084" a="2.4921958593799935" b="-0.0053492037771217249" c="0.0018874298539651516" d="-0.00016065926468857147" /> - <width sOffset="92.042170485443791" a="2.4931245150986499" b="-0.0010057843756202944" c="-0.0012141427716881523" d="-0.00016101782171855047" /> - <width sOffset="92.576245549585423" a="2.4922165042477498" b="-0.0024404554552591162" c="0.0088871741549232663" d="-0.0045350097080743643" /> - <width sOffset="94.056066350241707" a="2.4933706014160073" b="-0.0059308448224485583" c="0.0092748937419192649" d="-0.0040729588502038238" /> - <width sOffset="94.559371698843933" a="2.4922157733563401" b="0.00031012215416943711" c="-0.00013466255724864373" d="1.4577542140177145e-05" /> - <width sOffset="99.184654867275569" a="2.4922117522105118" b="0" c="-1.3402373155271173e-06" d="3.035166695641872e-07" /> - <width sOffset="102.26907831715977" a="2.4922079080856334" b="3.9495168842427087e-07" c="-4.4191144910376353e-07" d="2.9507072500834194e-08" /> - <width sOffset="112.49598614887574" a="2.492197289469142" b="6.1457897629259989e-07" c="3.3340525758879645e-06" d="-4.367665362309547e-07" /> - <width sOffset="118.94810363720556" a="2.4922227351080517" b="-1.0909560125186169e-05" c="-2.3966555429370595e-05" d="-1.0537467980463366e-06" /> - <width sOffset="122.72289398059172" a="2.4917833753140917" b="-0.00023689165170318483" c="-1.8003388466941618e-05" d="1.6212864511793276e-06" /> - <width sOffset="132.9498018123077" a="2.4892119126727232" b="-9.6420323451204028e-05" c="3.4233357442789203e-05" d="2.0614951440966781e-06" /> - <width sOffset="134.82075624337313" a="2.4891648486853821" b="5.3326388854235728e-05" c="1.2342937978648983e-05" d="-3.7657198480794358e-07" /> - <width sOffset="143.17670964402367" a="2.4902525465689331" b="0.00018072143895205266" c="2.1276476528291955e-06" d="-3.1784897017926333e-07" /> - <width sOffset="153.40361747573965" a="2.4919833176144373" b="0.00012450882012155439" c="-1.1832434346141152e-05" d="1.1573216446155482e-07" /> - <width sOffset="158.8135643272185" a="2.4923289221861227" b="6.6447202762976842e-06" c="-8.0311632609009191e-06" d="7.5110424266163737e-07" /> - <width sOffset="163.63052530745563" a="2.4922585313423706" b="-1.8443009786922289e-05" c="-2.7858991643656072e-06" d="1.3955677799444571e-07" /> - <width sOffset="173.8574331391716" a="2.4919278141075445" b="-3.1636696651735898e-05" c="-7.5952813185441883e-07" d="1.2100107549573743e-07" /> - <width sOffset="184.08434097088758" a="2.491654255966723" b="-9.2055668959973528e-06" c="1.3734464855476799e-06" d="9.549254101193694e-08" /> - <width sOffset="194.31124880260356" a="2.4918059013187066" b="4.884924689257681e-05" c="3.1266850418330843e-06" d="1.260131374779493e-07" /> - <width sOffset="199.91909994045562" a="2.4922003917285411" b="9.5805796752282662e-05" c="-1.2465822092809541e-05" d="3.9610939548933495e-07" /> - <width sOffset="204.53815663431953" a="2.4924159941581547" b="5.9989143431742054e-06" c="-7.676876153665216e-06" d="3.3179327088742995e-07" /> - <width sOffset="214.76506446603551" a="2.4920293183473521" b="-4.6916075324338058e-05" c="2.2536227302678716e-06" d="3.2495528490644327e-07" /> - <width sOffset="225.50291065041421" a="2.4921877097277489" b="0.00011388537317733732" c="-0.00010046153999886673" d="1.2202994340005871e-05" /> - <width sOffset="232.38047485479359" a="2.4921888594309745" b="0.00046366144669112569" c="-0.0001113705702487696" d="5.4037674298760109e-06" /> - <width sOffset="235.21888012946746" a="2.4927312285113965" b="-3.796110302954625e-05" c="-6.5139162518382948e-05" d="5.4754808188231356e-06" /> - <width sOffset="242.98259800572603" a="2.4910725346354612" b="-5.9296266306272521e-05" c="0.001646869168527524" d="0.0013850974996584601" /> - <width sOffset="243.56521107984236" a="2.4918709161075858" b="0.0032701429024628846" c="-0.0014115741620015602" d="0.00015080042098155298" /> - <width sOffset="245.44578796118344" a="2.4940314832843047" b="-0.00043905610220338481" c="-0.00056063256700962169" d="0.00015059745005357767" /> - <width sOffset="248.28391802794579" a="2.4917123210346475" b="1.7826981037791234e-05" c="1.3513380617505115e-05" d="-8.0621485487049989e-07" /> - <width sOffset="255.67269579289942" a="2.4922565771026863" b="8.5478142997641449e-05" c="3.7653983743444466e-06" d="-1.708569771904575e-06" /> - <width sOffset="260.20490298847142" a="2.4925622660673863" b="1.4322581149597835e-05" c="-2.6922015391859198e-05" d="2.6872677638505038e-06" /> - <width sOffset="266.60627567138363" a="2.4922556559104749" b="0" c="-1.5203249032298347e-06" d="1.025773198211333e-07" /> - <width sOffset="276.1265114563314" a="2.4922063718631633" b="-1.0564509856092474e-06" c="4.4862381588891593e-05" d="-6.3194257245924518e-06" /> - <width sOffset="281.27479046118236" a="2.4925276895394801" b="-4.161323983390211e-05" c="0.012653063938035615" d="-0.0082977463506050016" /> - <width sOffset="282.79222365998311" a="2.4926068178400071" b="-0.018960514353831538" c="-0.47427547378703183" d="0.46852264222205309" /> - <width sOffset="283.29803515845367" a="2.4223065057613389" b="-0.13914058203059146" c="0.018800979791639479" d="-0.0070732734363344518" /> - <width sOffset="285.06841255208639" a="2.1956538310791944" b="-0.13907885001314835" c="0.0042807486833420887" d="-0.0001740748972593344" /> - <width sOffset="286.18645415977875" a="2.0452656167595866" b="-0.13015952949466691" c="0.00190250216632129" d="-0.00031253478527086076" /> - <width sOffset="286.35341928804735" a="2.0235850962410828" b="-0.12955036438678499" c="0.0017297959352956932" d="-0.00026474574838437572" /> - <width sOffset="289.86966918617384" a="1.5779310496955974" b="-0.12720553472328333" c="0.0078333473765863099" d="-0.00064220711954283017" /> - <width sOffset="294.044011077194" a="1.1367156043237525" b="-0.095379022586045983" c="0.0021259796601333907" d="1.9233549669449931e-05" /> - <width sOffset="296.5803271197633" a="0.90879428378992255" b="-0.084223527498484191" c="0.0022533151436411681" d="1.0255774021819033e-05" /> - <width sOffset="302.36143309765134" a="0.49917914342262826" b="-0.057141939800994364" c="0.0033093526333846887" d="-5.9393303641698758e-05" /> - <width sOffset="303.83514869484566" a="0.4219654537413402" b="-0.047774828457176718" c="0.0026539825485234259" d="-0.00011760674431556494" /> - <width sOffset="306.8072349514793" a="0.30033039053726274" b="-0.03511566414688664" c="0.0015902094257717436" d="-8.7968136123775997e-05" /> - <width sOffset="308.50285041576171" a="0.24493090520414018" b="-0.030481651438610119" c="0.003250583842058904" d="-0.00013328213966821038" /> - <width sOffset="312.21203452180669" a="0.16978899460353825" b="-0.011868729312450123" c="0.0017769164170968223" d="-8.2631685068809951e-05" /> - <width sOffset="317.03414278319531" a="0.1446095940289307" b="-0.00049599895531162591" c="0.00058166547589482884" d="-8.2283800223329303e-05" /> - <width sOffset="321.79461720424456" a="0.14655319852618054" b="-0.00055216696896720138" c="0.0011025425249448922" d="2.5793504054965256e-05" /> - <width sOffset="322.04356448403212" a="0.14648446581019448" b="1.5785936490764207e-06" c="0.00052181667284549875" d="-4.232450272009454e-05" /> - <width sOffset="327.26105061491126" a="0.1546862778197593" b="0.0019902277518633153" c="-0.00014086689978777783" d="-4.2386434923052248e-05" /> - <width sOffset="330.25942732053568" a="0.15824472289611369" b="2.2881139361500408e-06" c="0.0007667577622430088" d="-0.00016532663135481235" /> - <width sOffset="331.77369517956527" a="0.15943231714627326" b="0.0011871559411926087" c="0.0015848177719019773" d="-0.00019423458265264518" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.12" weight="standard" type="solid"> - <type name="solid"> - <line length="337.48795844662726" space="0" width="0.12" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.7166418632263634" b="0.081274427164237564" c="0.0023038429037369589" d="-0.00012441881856607218" /> - <width sOffset="3.8562450704637055" a="4.0571807890412703" b="0.093492235674553198" c="0.0043234520399312772" d="-0.00030019273713391837" /> - <width sOffset="4.6122124502513557" a="4.1301989738705025" b="0.099514344643594627" c="0.0046574386866919341" d="-0.00079870614086717095" /> - <width sOffset="8.5206243149710037" a="4.5426018962059906" b="0.099318375704921968" c="0.00053458932870237286" d="-0.00074443250496560249" /> - <width sOffset="10.226907831715977" a="4.7099255065489753" b="0.09464066755817481" c="-0.0032829658651935033" d="-0.00074201820811848045" /> - <width sOffset="10.553311237204458" a="4.7404409747368899" b="0.09226036303992205" c="-0.0012977750961913155" d="-0.00053261604647807733" /> - <width sOffset="15.449008777412335" a="5.0985180934356711" b="0.041256342780013035" c="-0.0014492919211567181" d="-8.9597998249700433e-05" /> - <width sOffset="18.696465525720342" a="5.21414356906382" b="0.029008622282706811" c="-0.00061421217500643615" d="-5.6400722887790801e-05" /> - <width sOffset="20.453815663431953" a="5.2629189192045178" b="0.026327306992100459" c="-0.0010418969197561864" d="-8.4550340996211785e-05" /> - <width sOffset="28.171469772539567" a="5.3651801815472773" b="-0.0048627022394000449" c="-0.0073604731871894985" d="0.00062600193617612496" /> - <width sOffset="30.68072349514793" a="5.3165245799524374" b="-0.029976701886048659" c="-0.0026911291370207485" d="0.00061952904199958584" /> - <width sOffset="34.61474583746466" a="5.1946662585984837" b="-0.022386143448526498" c="0.00019339283605080673" d="4.8845903529492826e-05" /> - <width sOffset="39.30762138671151" a="5.0989182806520317" b="-0.017343794566895304" c="0.0023694511956686916" d="4.3519058405429894e-06" /> - <width sOffset="40.907631326863907" a="5.0772517331133944" b="-0.0097280805832044518" c="0.0023931044563229435" d="5.2778303832775578e-06" /> - <width sOffset="48.194218346729919" a="5.1354694230483089" b="0.025987716081182177" c="0.01086979517932771" d="-0.00037011458322724249" /> - <width sOffset="51.134539158579884" a="5.2964478135453508" b="0.080309624181582717" c="0.0076124674391481505" d="-0.00036921999173746738" /> - <width sOffset="61.36144699029586" a="6.5190239156273906" b="0.12016386766857207" c="-0.0037158280905843985" d="-0.00036902089995020812" /> - <width sOffset="61.866279128234908" a="6.578692020717301" b="0.116129987786147" c="0.0058037579537457912" d="-0.00032122737294094846" /> - <width sOffset="71.588354822011837" a="7.961098757854046" b="0.13789310120196643" c="-0.0035706250429840374" d="-0.00032130432729959949" /> - <width sOffset="78.406037126263698" a="8.6334260965218856" b="0.044402888041239645" c="-0.0083421727232447732" d="-0.00028862427453173255" /> - <width sOffset="80.796406096152396" a="8.6879572430240763" b="-0.00042633298966699736" c="-0.042512177410474306" d="0.0038129483987356916" /> - <width sOffset="81.815262653727814" a="8.6474250492788975" b="-0.075179647462845209" c="-0.030855727436864325" d="0.003811959384261591" /> - <width sOffset="85.611508346281084" a="8.125898379212126" b="-0.14464354739459268" c="-0.020033672861402483" d="0.001686468228529523" /> - <width sOffset="92.042170485443791" a="6.8157660289170146" b="-0.19307944616202871" c="0.012504497361243025" d="0.001686923855379611" /> - <width sOffset="94.056066350241707" a="6.4914182229134632" b="-0.1221885764432989" c="0.002175639612419357" d="0.0012248729975157795" /> - <width sOffset="99.184654867275569" a="6.0872162535439163" b="-0.0032212830438292659" c="5.4309132414283854e-05" d="-1.0004588732402158e-06" /> - <width sOffset="102.26907831715977" a="6.07776777399497" b="-0.0029148124214648428" c="4.208691261164705e-05" d="-1.2447506524280189e-06" /> - <width sOffset="112.49598614887574" a="6.0510286902559818" b="-0.002444538551128742" c="8.2767059698495417e-06" d="-1.6871506017308801e-06" /> - <width sOffset="122.72289398059172" a="6.0250896529158364" b="-0.0028046237743292739" c="-3.0532586770974255e-05" d="-1.803698727198943e-06" /> - <width sOffset="132.9498018123077" a="5.9912843438688403" b="-0.0039950762980625557" c="-7.769215500203077e-05" d="-1.5798984484317915e-06" /> - <width sOffset="134.82075624337313" a="5.9835274319674614" b="-0.0043023844250386382" c="-5.3098599122691107e-05" d="8.5816868047420122e-07" /> - <width sOffset="143.17670964402367" a="5.9443701405961225" b="-0.005010006214134461" c="-3.3422625677414819e-05" d="1.0013070828825902e-06" /> - <width sOffset="153.40361747573965" a="5.8907086350340094" b="-0.0053794473853338368" c="-7.6854410270376252e-06" d="1.0642304668610125e-06" /> - <width sOffset="163.63052530745563" a="5.836028036293845" b="-0.0052027215230475501" c="1.9029468825684068e-05" d="1.0632335821557904e-06" /> - <width sOffset="173.8574331391716" a="5.7859478332679259" b="-0.0044798866106175034" c="4.6408693711837899e-05" d="1.0187969035596948e-06" /> - <width sOffset="184.08434097088758" a="5.7460760489028813" b="-0.0032109849285158398" c="7.4018779337252442e-05" d="9.5928063714861281e-07" /> - <width sOffset="194.31124880260356" a="5.7220052738054701" b="-0.0013960259998934085" c="0.00010112416226247417" d="9.6522229203551086e-07" /> - <width sOffset="199.91909994045562" a="5.7175269423255077" b="-0.00017078458741937724" c="0.0011252586347280178" d="-7.9266881276894955e-06" /> - <width sOffset="204.53815663431953" a="5.7399650611562745" b="0.0097171183139170367" c="0.001014104139626118" d="-8.0023680079634317e-06" /> - <width sOffset="214.76506446603551" a="5.9368463632131956" b="0.027948522990863072" c="0.00076794864171940251" d="-8.0113491408645604e-06" /> - <width sOffset="222.50967323885564" a="6.195636123511493" b="0.038401909276107531" c="0.012584644367771345" d="-0.00051807729680211113" /> - <width sOffset="224.99197229775149" a="6.3605810905973756" b="0.091302731561066094" c="0.0087263571419338784" d="-0.0005181622780302714" /> - <width sOffset="225.50291065041421" a="6.4094401283600124" b="0.099814181422480983" c="0.006549730413716889" d="-0.00027730483696027336" /> - <width sOffset="232.38047485479359" a="7.3155152470803229" b="0.15055626804865954" c="0.0091253979052438143" d="-0.0013945236040535385" /> - <width sOffset="235.21888012946746" a="7.7844845257893684" b="0.1686542987132803" c="-0.0027490549106677087" d="-0.0013943799019825896" /> - <width sOffset="238.32738987539616" a="8.2403013958205058" b="0.11114239102230035" c="-0.0070784009295938501" d="-0.00082957977608038344" /> - <width sOffset="243.56521107984236" a="8.5090417525566604" b="-0.031286399416592454" c="-0.014634601488183791" d="0.00040471730259529037" /> - <width sOffset="245.44578796118344" a="8.4011406792702328" b="-0.08203545337714499" c="-0.012349909079222288" d="0.00040454986871882835" /> - <width sOffset="255.67269579289942" a="6.7032171959448519" b="-0.2077030371397105" c="6.6582092037852309e-05" d="0.00040447886469389049" /> - <width sOffset="265.89960362461539" a="5.0186633569343657" b="-0.07942827815572033" c="0.012478498924783579" d="0.0004045687802519117" /> - <width sOffset="266.60627567138363" a="4.9689079659933686" b="-0.061185758199948322" c="0.0046236864972708262" d="-5.9584034693972146e-05" /> - <width sOffset="276.1265114563314" a="4.754059426626708" b="0.010650235915785906" c="0.0029687354390420992" d="-6.6295571339585182e-05" /> - <width sOffset="279.69244984118848" a="4.8267815858448326" b="0.029293864367648428" c="0.00041012801287738368" d="-0.00017244775268855211" /> - <width sOffset="286.18645415977875" a="4.9870844910764376" b="0.012803163020031826" c="-0.0011551237561267008" d="-3.3987864906818391e-05" /> - <width sOffset="286.35341928804735" a="4.9891898128403112" b="0.012414589772585581" c="-0.0011691409157158627" d="-3.1373853646068695e-05" /> - <width sOffset="296.5803271197633" a="4.9603142736528785" b="-0.021342943534320688" c="-0.0021347926414617847" d="-3.9215269743815185e-05" /> - <width sOffset="298.10315002696359" a="4.9227237031686117" b="-0.028117585216281007" c="-0.00148436790009662" d="3.1123795290344247e-05" /> - <width sOffset="302.36143309765134" a="4.7784782948720004" b="-0.039066201636942424" c="-0.0019649344485826309" d="0.00010077287295360781" /> - <width sOffset="306.8072349514793" a="4.5748155807383686" b="-0.050562245969072814" c="-0.00048138662904716417" d="8.3187548531236656e-05" /> - <width sOffset="308.50285041576171" a="4.4881029604752065" b="-0.05147721868623284" c="-0.0021660791600854332" d="0.00012850155207575739" /> - <width sOffset="311.1246804653822" a="4.340564740711244" b="-0.060185445314992557" c="-0.0021014754645994819" d="0.00018606041147113491" /> - <width sOffset="317.03414278319531" a="3.9499109813203717" b="-0.065529962786567461" c="0.0012033243376276988" d="0.00018768516086040607" /> - <width sOffset="321.79461720424456" a="3.6854750769005626" b="-0.041313144265150849" c="0.0021877287323489136" d="7.9607856605777452e-05" /> - <width sOffset="322.91881455683199" a="3.641908949602795" b="-0.036092436637589147" c="0.0022163131201835343" d="-7.8842573120477944e-05" /> - <width sOffset="327.26105061491126" a="3.5205206128776627" b="-0.021304660600862245" c="0.0011851262133716449" d="-7.9618671511975714e-05" /> - <width sOffset="329.19681211238583" a="3.4831432190395852" b="-0.017611451920945174" c="0.0012916425566647108" d="1.0951842124876999e-05" /> - <width sOffset="331.77369517956527" a="3.446524895633047" b="-0.010736456837446371" c="-0.00019279901572272868" d="3.9859793422741786e-05" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="337.48795844662726" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4929118310042213" b="0.0033270397163795151" c="-0.001423822822891275" d="0.0002107909724146107" /> - <width sOffset="3.8562450704637055" a="2.4966563363549019" b="0.0017496014047578279" c="-0.0024442153815733034" d="0.00038656489098237116" /> - <width sOffset="8.5206243149710037" a="2.4908684356996718" b="0.0041789267215767006" c="-0.0022771279332924515" d="0.00033229125508082064" /> - <width sOffset="9.8069010310167393" a="2.493183333179839" b="-2.977114804601777e-05" c="-3.0982974346098631e-05" d="5.2844835532830123e-06" /> - <width sOffset="10.226907831715977" a="2.4931657550573618" b="-5.3000628648672277e-05" c="-1.7407961001484652e-05" d="2.8701867134152685e-06" /> - <width sOffset="15.449008777412335" a="2.4928229983069037" b="0" c="-2.2902350783086326e-05" d="3.0507138843145959e-06" /> - <width sOffset="20.453815663431953" a="2.4926317782440193" b="1.4597698050344832e-15" c="-1.2050980704929261e-05" d="7.8557343713531927e-07" /> - <width sOffset="30.68072349514793" a="2.492211642317586" b="1.8908485888147197e-15" c="-6.649190037403413e-07" d="5.1383398912276684e-08" /> - <width sOffset="39.30762138671151" a="2.4921951471472004" b="0" c="1.3159254326447923e-06" d="-7.6466499531162578e-07" /> - <width sOffset="40.907631326863907" a="2.4921953838319708" b="-1.6617125858705423e-06" c="-2.1669058503570246e-07" d="-5.5416451571902239e-09" /> - <width sOffset="51.134539158579884" a="2.492149798556992" b="-7.8326579480668401e-06" c="9.8255383742802509e-07" d="-5.9188018427901298e-08" /> - <width sOffset="61.36144699029586" a="2.492109150441868" b="-6.3070441704768387e-06" c="-3.0211683874213809e-06" d="4.6389483580651928e-07" /> - <width sOffset="67.253090747184643" a="2.4920619924164416" b="6.4010697745052469e-06" c="-0.00015736081251959387" d="1.4237900069403933e-05" /> - <width sOffset="71.588354822011837" a="2.4902923151348539" b="-0.0005552170227122212" c="2.2172779229993889e-05" d="1.3343378075749951e-05" /> - <width sOffset="78.406037126263698" a="2.4917660302696936" b="0.0016077492492899618" c="-0.001505019282285991" d="-1.9336674688186588e-05" /> - <width sOffset="78.905292272631272" a="2.4921911664218039" b="9.0512675940193022e-05" c="-1.7945900956089768e-06" d="1.0014518275909854e-07" /> - <width sOffset="81.815262653727814" a="2.4924418268882347" b="8.2612334368896857e-05" c="-5.2103318280299915e-07" d="-4.3604352815627881e-08" /> - <width sOffset="92.042170485443791" a="2.4931855604776749" b="5.8273526506325696e-05" c="-1.3816011007435812e-06" d="2.1921705193431162e-08" /> - <width sOffset="102.26907831715977" a="2.4936604653791572" b="3.6892862284069843e-05" c="-1.466884828494751e-06" d="3.6912323960306386e-08" /> - <width sOffset="112.49598614887574" a="2.4939238267988229" b="1.84714108465555e-05" c="1.4784828695495837e-06" d="-1.4565690331567116e-07" /> - <width sOffset="122.72289398059172" a="2.4941115674153025" b="3.0094160185980406e-06" c="2.3753854958563907e-06" d="-1.9469580033398311e-07" /> - <width sOffset="132.9498018123077" a="2.4941825329529053" b="-9.4943801375469566e-06" c="-4.6800808077847081e-07" d="8.9027539450945482e-11" /> - <width sOffset="143.17670964402367" a="2.4940365812302634" b="-1.9038997074690041e-05" c="-1.2412173621781041e-06" d="5.9925170491937132e-08" /> - <width sOffset="153.40361747573965" a="2.4937761503592357" b="-2.5623971490215322e-05" c="-1.5150763602923732e-06" d="8.7209733725078767e-08" /> - <width sOffset="163.63052530745563" a="2.4934489170971843" b="-2.9249359121861877e-05" c="-1.3754678577593731e-06" d="8.7540530937326096e-08" /> - <width sOffset="173.8574331391716" a="2.4930995627636983" b="-2.9915426289333844e-05" c="-9.4604619036021598e-07" d="6.8978270265179067e-08" /> - <width sOffset="184.08434097088758" a="2.4927684549561375" b="-2.7622442525838606e-05" c="-4.0985544129133923e-07" d="4.3455589531949271e-08" /> - <width sOffset="194.31124880260356" a="2.4924895774911722" b="-2.2370536280266577e-05" c="4.6880258230638273e-08" d="2.3112475530708365e-08" /> - <width sOffset="204.53815663431953" a="2.4922904210339327" b="-1.4159679371344904e-05" c="2.98515307296511e-07" d="1.6139620707259735e-08" /> - <width sOffset="214.76506446603551" a="2.4921940963083991" b="-2.9897907606465327e-06" c="-2.4165820130889941e-07" d="2.6650517820804034e-07" /> - <width sOffset="217.19902899877167" a="2.4921892304415869" b="5.7031087194686723e-07" c="-3.1460634809738007e-07" d="3.2753248276533019e-08" /> - <width sOffset="222.50967323885564" a="2.4921882919787994" b="0" c="-1.3237855275169408e-05" d="6.0951612759242713e-07" /> - <width sOffset="224.99197229775149" a="2.4921160456725922" b="-5.4453466201039025e-05" c="-8.8880149236511552e-06" d="5.4134149473641317e-07" /> - <width sOffset="235.21888012946746" a="2.4912085951484264" b="-6.6391142740110376e-05" c="7.6374407086132745e-06" d="6.1789846961691347e-07" /> - <width sOffset="237.06541308031262" a="2.4911159333213231" b="-3.1865055415337962e-05" c="-0.0013497239595414521" d="0.0015774824660983833" /> - <width sOffset="238.32738987539616" a="2.4920966031486191" b="0.0040983210922241175" c="-0.0040514696845333365" d="0.0010126823401953565" /> - <width sOffset="240.31976393118103" a="2.492188602260244" b="1.3927769332761075e-05" c="-8.0964079970198208e-07" d="2.2799706866639654e-08" /> - <width sOffset="245.44578796118344" a="2.4922417930587151" b="7.4245566041644673e-06" c="5.8949320394692528e-09" d="-2.5997860849966766e-08" /> - <width sOffset="255.67269579289942" a="2.4922905318069044" b="-6.121905603839739e-07" c="1.2210215091101742e-06" d="-8.6424000992565443e-08" /> - <width sOffset="265.89960362461539" a="2.4923195356079044" b="-2.7548081298067739e-06" c="4.5858079572363639e-07" d="-1.7936646435437215e-08" /> - <width sOffset="276.1265114563314" a="2.4923201396902814" b="9.9695654796547184e-07" c="4.0402614945843525e-05" d="-8.5843317427158693e-06" /> - <width sOffset="279.42006646752384" a="2.4924549996137082" b="-1.222230811562708e-05" c="-0.0016239180117249277" d="-0.00011159190842280681" /> - <width sOffset="279.69244984118848" a="2.4923289324495812" b="-0.00092171675699370844" c="0.00013428430523546074" d="-5.4397270364049021e-06" /> - <width sOffset="286.35341928804735" a="2.4905397580376989" b="0.00014315273668311437" c="2.4597331383145434e-05" d="-2.2465935929485018e-06" /> - <width sOffset="295.81341017172349" a="2.4921932925448478" b="5.3811949122829772e-06" c="3.6556951751570005e-05" d="7.6007428477430571e-05" /> - <width sOffset="296.5803271197633" a="2.4922532056244662" b="0.00019556744006456097" c="0.00021665659294576884" d="8.0595620526241417e-05" /> - <width sOffset="298.10315002696359" a="2.4933380608095113" b="0.0014161279045685842" c="-0.00024472331018091846" d="1.0256555492073692e-05" /> - <width sOffset="306.8072349514793" a="2.4938871431954417" b="-0.00051291343934167441" c="6.7345942093897698e-05" d="1.3949460779865182e-06" /> - <width sOffset="310.05761911474838" a="2.4929793900315875" b="-3.0900267795393871e-05" c="-0.00067648994108796467" d="3.5950021348276323e-05" /> - <width sOffset="311.1246804653822" a="2.4922198310838768" b="-0.0013518125763068" c="0.00038471669039742283" d="-2.1608838046689397e-05" /> - <width sOffset="317.03414278319531" a="2.4932069351359978" b="0.00093127000494201695" c="6.1456434272616419e-06" d="-2.1026286193567039e-05" /> - <width sOffset="322.91881455683199" a="2.4946151854968992" b="-0.0011807804272289651" c="-0.00012515229808545011" d="0.00013742414353296392" /> - <width sOffset="324.92967882949222" a="2.4928521404106951" b="-1.7054452656555322e-05" c="-0.00051566326598164347" d="8.8038358380865646e-05" /> - <width sOffset="327.26105061491126" a="2.4911251934409391" b="-0.00098591684146450385" c="9.6039496908730505e-05" d="8.6478690682003026e-05" /> - <width sOffset="329.19681211238583" a="2.4902038547806966" b="0.00035805401340511384" c="2.9361236559514143e-05" d="-4.0918229548813975e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423294" type="poles" s="35.633289519531942" t="4.0297222035337548" zOffset="-3.0094912555261657" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.89050874447383421" name="SgPoleSign01.flt" /> - <object id="33782041" s="0" t="-3.041074446793095" orientation="none" validLength="7.8586675861470958" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.8586675861470958" s="0" distance="0" tStart="-3.041074446793095" tEnd="-3.5402951083327685" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="302217497" s="7.8586675861470958" t="-3.5402951083327685" orientation="none" validLength="11.900818067627917" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.900818067627917" s="7.8586675861470958" distance="0" tStart="-3.5402951083327685" tEnd="-3.9440472348234721" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412698" s="305.52928694109039" t="-3.6709487721938387" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848154" s="325.86026173092307" t="-3.4444664682314134" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9489014" s="6.5192562575905999" t="-4.5646860440097221" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8987838" type="605" subtype="31" country="DEU" zOffset="0.89050874447383421" s="35.633289519531942" t="4.0297222035337548" orientation="+" name="" /> - </signals> - </road> - <road name="" length="178.0234137912432" id="33782103" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33555309" /> - <successor elementType="junction" elementId="33554459" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-763.33629905008456" y="-799.38577082753307" hdg="1.2525530369563562" length="178.0234137912432"> - <paramPoly3 aU="0" bU="178.0119035795812" cU="0.015104705865742973" dU="-0.059353545703595689" aV="-0" bV="1.4210854715202004e-14" cV="-5.1152380434149594" dV="1.1297779234772825" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.26840152186281" b="-0.00024857624157361184" c="4.6306725994513896e-06" d="3.4803022484518011e-07" /> - <elevation s="10.471965517131952" a="158.26670591915766" b="-3.7094617941075148e-05" c="4.3334885404564501e-05" d="-2.3038627000516426e-06" /> - <elevation s="20.943931034263905" a="158.2684239547834" b="0.00011256923202980994" c="-3.4056040909791915e-06" d="5.5172727706353224e-07" /> - <elevation s="31.415896551395857" a="158.26986290143034" b="0.0002227531470673518" c="4.2961251885970433e-05" d="-2.6281978167704254e-06" /> - <elevation s="41.887862068527809" a="158.27388862137371" b="0.00025788986955991092" c="3.734505060325086e-05" d="-4.024026954650845e-06" /> - <elevation s="52.359827585659758" a="158.27606346911335" b="-0.00028380724379530411" c="-3.7237674017465325e-05" d="-2.2986108640354343e-07" /> - <elevation s="62.831793102791714" a="158.26874392207313" b="-0.0011393316422757874" c="8.8312324134442273e-06" d="1.5523676495001247e-06" /> - <elevation s="73.30375861992367" a="158.25956403537319" b="-0.00044366340835090377" c="0.00020196496205343692" d="-6.87447619285159e-06" /> - <elevation s="75.000509740729669" a="158.25935911788415" b="0.00018233102716548832" c="8.534329771922224e-05" d="-6.9463611517548066e-06" /> - <elevation s="83.775724137055619" a="158.26283705542269" b="7.5441634984001128e-05" c="-8.2339460092185324e-06" d="-1.0279407036752689e-06" /> - <elevation s="94.247689654187567" a="158.26154366232643" b="-0.00043518785326778571" c="-3.9113345626697723e-05" d="1.445177388026836e-06" /> - <elevation s="104.71965517131952" a="158.25435674895826" b="-0.00077893167051406556" c="1.9797416859626719e-05" d="-2.1829234961325424e-06" /> - <elevation s="115.19162068845148" a="158.24586400906017" b="-0.0010824476111097629" c="-3.0741397749119654e-05" d="1.0125494394032753e-06" /> - <elevation s="125.66358620558343" a="158.23232027876435" b="-0.0013931785478903057" c="4.6456592058146708e-05" d="-4.7944826342608666e-06" /> - <elevation s="136.13555172271538" a="158.21731961155609" b="-0.0019975134404345181" c="-2.4665160806821647e-06" d="2.7614526383406886e-07" /> - <elevation s="146.60751723984734" a="158.19644835540967" b="-0.0019583240061648069" c="-1.2361083169742817e-05" d="1.2289258743145993e-06" /> - <elevation s="157.07948275697927" a="158.17599658269324" b="-0.0018129140440800685" c="-4.5548639435190952e-06" d="2.2647025387876989e-06" /> - <elevation s="167.55144827411124" a="158.15911304662077" b="-0.00116325495113648" c="4.5768693521995298e-05" d="2.761452638530362e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026335183751882426" b="-4.8754199472036959e-05" c="1.6739846074801014e-06" d="4.1626007137362245e-08" /> - <superelevation s="10.471965517131952" a="0.026056006422579509" b="0" c="1.673984607479975e-06" d="0" /> - <superelevation s="20.943931034263905" a="0.026239579026043847" b="3.5059818171481917e-05" c="9.118540640580991e-06" d="-4.8616322791759748e-07" /> - <superelevation s="31.415896551395857" a="0.027048383370715672" b="6.6096918658249215e-05" c="-1.5483711707827714e-06" d="4.6289561751278806e-08" /> - <superelevation s="41.887862068527809" a="0.027623908331999569" b="4.8896565985211783e-05" c="-5.2180415122166878e-07" d="-5.4508994078254798e-09" /> - <superelevation s="52.359827585659758" a="0.028072469676522282" b="3.6174665225584751e-05" c="1.5465271307592116e-06" d="-2.0841307581490248e-07" /> - <superelevation s="62.831793102791714" a="0.028381548025671801" b="0" c="-2.5770974055230638e-05" d="1.6406327295526852e-06" /> - <superelevation s="73.30375861992367" a="0.027439515309243549" b="0" c="1.3830274333488949e-05" d="-7.3970531966026283e-07" /> - <superelevation s="83.775724137055619" a="0.02810671088810324" b="4.6307480408176736e-05" c="-6.0841057331676111e-06" d="4.2227439144824356e-07" /> - <superelevation s="94.247689654187567" a="0.028409375985282929" b="5.7804830752074917e-05" c="1.5028773682246677e-05" d="-1.1324683127858357e-06" /> - <superelevation s="104.71965517131952" a="0.029362291550922688" b="0" c="-4.7821728002089894e-05" d="3.0444286652048402e-06" /> - <superelevation s="115.19162068845148" a="0.027614215120534212" b="0" c="2.1627105860408816e-05" d="-1.1256684869492585e-06" /> - <superelevation s="125.66358620558343" a="0.028693195968696461" b="8.262723209171227e-05" c="2.0438750905509599e-06" d="-3.8127440180353347e-07" /> - <superelevation s="136.13555172271538" a="0.029344754171015151" b="0" c="-1.4015285901570763e-05" d="7.5023064582383285e-07" /> - <superelevation s="146.60751723984734" a="0.02866935688809737" b="-4.6719663026232168e-05" c="6.3107556881156871e-07" d="1.0183546095513216e-07" /> - <superelevation s="157.07948275697927" a="0.028366260770649694" b="0" c="6.5254124877812383e-06" d="-4.154210577505457e-07" /> - <superelevation s="167.55144827411124" a="0.02860479083313415" b="0" c="-4.380722448868825e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.9012144526644366" b="0.012857938639797355" c="-0.0014217280017648993" d="0.00026980285495289345" /> - <laneOffset s="1.7439894129323621" a="3.9207455037900565" b="0.010360796872728402" c="-0.00089867790772534591" d="6.5177972261008102e-05" /> - <laneOffset s="8.108983958874294" a="3.9670908254169683" b="0.006842332900085059" c="6.3335918591673758e-05" d="-2.1308965133358036e-05" /> - <laneOffset s="10.471965517131952" a="3.9833316260839684" b="0.0067847086700687466" c="-8.8094166556422463e-05" d="-2.1652832941627149e-05" /> - <laneOffset s="14.307904818996644" a="4.0068389360719268" b="0.0051530336134073002" c="5.4283156875686183e-06" d="-3.8549853535587301e-05" /> - <laneOffset s="19.705830577204509" a="4.0287495752786633" b="0.0018418859783217512" c="-0.00024187593427601385" d="-4.5485828930693437e-06" /> - <laneOffset s="20.943931034263905" a="4.0306506126435266" b="0.0012220350996572072" c="-0.00024322792723554368" d="-1.9381353007413642e-06" /> - <laneOffset s="23.384836503763104" a="4.0321561418372767" b="-0" c="-0.0024336882961511759" d="0.00037599601109053574" /> - <laneOffset s="27.699932452241264" a="4.0170510067811804" b="-0" c="0.00040145585810375792" d="-3.3724607805463841e-05" /> - <laneOffset s="31.415896551395857" a="4.0208640060231993" b="0.0015865435830281715" c="3.7178649176159086e-05" d="-3.312160705974403e-05" /> - <laneOffset s="35.803393913497167" a="4.0257432078618649" b="-0" c="-0.0077215568503483066" d="0.00099137398660800757" /> - <laneOffset s="40.859996229456328" a="3.9564870937693626" b="-0.0020436850423745548" c="0.00038188550058992904" d="-4.1383043203822369e-05" /> - <laneOffset s="41.887862068527809" a="3.9547449850241434" b="-0.0013897954927504501" c="0.00027235748942976178" d="-3.1512883564045773e-05" /> - <laneOffset s="48.004192124565456" a="3.9492228674275758" b="-0.0015947819203781307" c="-0.00014547013973754218" d="3.1310725662601922e-06" /> - <laneOffset s="52.359827585659758" a="3.9397755137666182" b="-0.0026838077230195486" c="-0.0001006466391600586" d="3.5266342499055598e-06" /> - <laneOffset s="62.831793102791714" a="3.9046835606962831" b="-0.0036315300433253663" c="4.8599119032897009e-06" d="4.5742222122424758e-06" /> - <laneOffset s="67.034479215673016" a="3.8898467639643513" b="-0.0033483031070054223" c="-2.0330977979526287e-05" d="1.2186856206874977e-06" /> - <laneOffset s="71.654628880166996" a="3.8740633094887271" b="-0.0034581260330582933" c="-0.0001155421492957998" d="9.4318120195930168e-06" /> - <laneOffset s="73.30375861992367" a="3.8680884811095697" b="-0.0037622609366537935" c="-7.4295037506528935e-05" d="6.3321780174824288e-06" /> - <laneOffset s="83.775724137055619" a="3.8278145970030155" b="-0.00323509198728522" c="0.00013034398418997455" d="5.5632404790073213e-06" /> - <laneOffset s="86.578021862466116" a="3.8198949059332059" b="-0.0023735044312490328" c="-0.00016541483703641692" d="4.4318078647902581e-05" /> - <laneOffset s="92.226707592814478" a="3.8091974525905949" b="-0" c="0.00076636808711205413" d="-5.2770038268570981e-05" /> - <laneOffset s="94.247689654187567" a="3.8118919953843151" b="0.002451035467984575" c="0.00045801004719657289" d="-5.0750326625169308e-05" /> - <laneOffset s="102.27075060467453" a="3.8348291603339679" b="-0" c="-0.00045032135814137382" d="7.2520440540661653e-05" /> - <laneOffset s="104.71965517131952" a="3.8331935877606149" b="-0.00090084375396535426" c="7.404164093067395e-05" d="7.9965830902093993e-05" /> - <laneOffset s="106.37325434697259" a="3.8322679843479324" b="-0" c="0.00024328589537712724" d="-5.433355186045917e-06" /> - <laneOffset s="115.19162068845148" a="3.8474608564794037" b="0.0030232167698645549" c="9.6556008420601851e-05" d="-6.2490595846734233e-06" /> - <laneOffset s="123.85353441836662" a="3.8768309585912739" b="0.0032893590220516929" c="-0.0002409837197817426" d="2.9253923737769076e-05" /> - <laneOffset s="125.66358620558343" a="3.8821688199068558" b="0.0027045057882704366" c="-5.8900323214355008e-05" d="3.5864263944513978e-05" /> - <laneOffset s="132.18024562709601" a="3.9072169999107662" b="0.0065059660494568008" c="0.0010526578411765451" d="-0.00019546725037059056" /> - <laneOffset s="135.79867017014891" a="3.9352803321189409" b="0.006446136101759938" c="-0.00078203608291439535" d="5.5918494572616275e-05" /> - <laneOffset s="143.31608842366492" a="3.9632999006831855" b="0.0041684784211003462" c="0.00020219157740529166" d="-8.7250343909040399e-06" /> - <laneOffset s="146.60751723984734" a="3.9788994791582257" b="0.0052159087138094785" c="0.00010779441106949048" d="-1.0142646326331799e-05" /> - <laneOffset s="157.07948275697927" a="4.0336936676137327" b="0.0041367569006099947" c="-0.00020970663009495336" d="-1.1460377639861695e-05" /> - <laneOffset s="158.18459139336676" a="4.0379936587265943" b="0.0036312712068852127" c="6.5750078674426429e-05" d="-1.5216636796227148e-05" /> - <laneOffset s="167.55144827411124" a="4.0652705584193649" b="0.00085778216570371981" c="-0.00036108706232872899" d="-1.5059870350688397e-05" /> - <laneOffset s="168.66205993156092" a="4.0657572050621136" b="-0" c="-7.9588259034632161e-05" d="2.442742083851967e-08" /> - <laneOffset s="174.4372235809418" a="4.063107441562531" b="-0.0009168262932155053" c="-0.0049188470172013103" d="0.0015069833218101338" /> - <laneOffset s="176.70276025922257" a="4.05330712189149" b="-0" c="0.00036424877299487168" d="-0.00018387329306021247" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="0.15238765609523997" b="8.700191397540552e-07" c="-0.00011498318644762506" d="-0.0001830026010282466" /> - <width sOffset="1.7439894129323621" a="0.15106874372848234" b="-0.0020699956243530552" c="-0.00018389710883396043" d="2.1622281663643287e-05" /> - <width sOffset="8.108983958874294" a="0.13601863228171318" b="-0.0017830432313946714" c="0.00051153849330039898" d="0.0001081092190579213" /> - <width sOffset="9.3574191409303857" a="0.13480025618789115" b="-3.0395321658563401e-07" c="0.0011047070059401849" d="-8.7068397781526617e-05" /> - <width sOffset="10.471965517131952" a="0.13605165290660093" b="0.0021377177772351702" c="0.00081355611295163372" d="-8.7344641435566279e-05" /> - <width sOffset="14.307904818996644" a="0.15129277190260382" b="0.0045235415904463869" c="-0.00053428945659498607" d="-7.0447620841587475e-05" /> - <width sOffset="17.054545764228138" a="0.15822688909150262" b="-5.8392708320734524e-06" c="0.0044443075534198323" d="-0.00085337731318303051" /> - <width sOffset="19.705830577204509" a="0.17354768617593308" b="0.0055644469578098217" c="-0.0027202948692827537" d="-0.00088737858382721615" /> - <width sOffset="20.454934392274772" a="0.17581650095327372" b="-4.9944209663185801e-06" c="0.003766547001781132" d="-0.00054949657865180248" /> - <width sOffset="20.943931034263905" a="0.17665045540987556" b="0.0032844801502579352" c="0.0029448982418304364" d="-0.0005521070262424361" /> - <width sOffset="23.384836503763104" a="0.1941840504259611" b="0.0077925232978718357" c="0.0010782430152633589" d="-0.00093004117263324249" /> - <width sOffset="24.883066714804869" a="0.20515157790581018" b="0.0047604629535116455" c="0.0022968340165067185" d="-0.00045637438918299795" /> - <width sOffset="27.699932452241264" a="0.22658546778589539" b="0.0068365828375233535" c="0.00047243031355473575" d="-4.6653770286972487e-05" /> - <width sOffset="31.415896551395857" a="0.25611959187371891" b="0.0084150107551876404" c="-5.167703735395611e-05" d="-4.7137672028574851e-05" /> - <width sOffset="35.803393913497167" a="0.28806439606412848" b="0.0052393256429767131" c="0.0066506463363186392" d="-0.0010716332656963451" /> - <width sOffset="37.801001223497231" a="0.31652714906118185" b="0.018981236559119624" c="-0.00044858561772501181" d="0.00066735929238733328" /> - <width sOffset="39.548907785146405" a="0.35189787679770967" b="0.023529768049503463" c="-0.0037234007575540004" d="-0.0009212959522782011" /> - <width sOffset="40.859996229456328" a="0.37427080918369215" b="0.0090153595648654328" c="-0.00041159254896673249" d="0.000111461077534494" /> - <width sOffset="41.887862068527809" a="0.38322357942018703" b="0.008522514345014361" c="-7.3506383415172859e-05" d="0.00010280312124095563" /> - <width sOffset="45.355208310149266" a="0.41617582257603214" b="0.011720618659181312" c="-0.00025683353772979454" d="4.1716540299989812e-05" /> - <width sOffset="48.004192124565456" a="0.44619675759065824" b="0.011238112203519961" c="-8.5716179103308767e-05" d="7.0725841696880113e-06" /> - <width sOffset="52.359827585659758" a="0.4941041382290039" b="0.010893949215453566" c="7.2628902269469408e-06" d="6.6288961125235719e-06" /> - <width sOffset="58.493724091977107" a="0.5627296151969432" b="0.011731279260676302" c="0.00087115303809423669" d="-0.00012910463442440044" /> - <width sOffset="62.831793102791714" a="0.61947503458791742" b="0.012000723819426096" c="-0.00080375557736655221" d="-0.00013015222257667296" /> - <width sOffset="62.989237849250259" a="0.62134405336428289" b="0.011737950662168784" c="-0.002942188837371078" d="0.0014725773840329559" /> - <width sOffset="64.987243013309765" a="0.64479665269804221" b="0.017616629265453942" c="-0.0015135306548126927" d="0.00015938912298449269" /> - <width sOffset="67.034479215673016" a="0.67588619129046323" b="0.013423603399001043" c="-0.00045174615591363589" d="0.0001627446595759558" /> - <width sOffset="71.030743263050667" a="0.73270251291620259" b="0.017610167878154094" c="-0.00043905034712871929" d="2.7010448100427746e-05" /> - <width sOffset="71.654628880166996" a="0.74352490950816685" b="0.017093873579195971" c="-0.00027639335568283057" d="1.8797321700049401e-05" /> - <width sOffset="73.30375861992367" a="0.77104754381842566" b="0.016335621791675015" c="-0.000183527095845201" d="1.9215648401400996e-05" /> - <width sOffset="82.145375315434464" a="0.91441535962981124" b="0.01759677232690627" c="1.4394158250569277e-05" d="-0.00087637491624017745" /> - <width sOffset="83.644052118935079" a="0.93786961903940513" b="0.011734817967226864" c="0.0014749846128336475" d="-1.5639904032095346e-06" /> - <width sOffset="83.775724137055619" a="0.939440335208793" b="0.012123165021404108" c="0.0014686588393145767" d="-7.9505287786774658e-07" /> - <width sOffset="85.642291054124712" a="0.96718077675909786" b="0.017597554960711092" c="-0.0005684124281525835" d="2.7153808904687748e-05" /> - <width sOffset="86.578021862466116" a="0.98317190124895815" b="0.016605119904384579" c="-0.00014965807184108803" d="-1.160102926631409e-05" /> - <width sOffset="92.226707592814478" a="1.0701028411810856" b="0.013803892313581673" c="-0.00052701600604691974" d="8.5487087650190047e-05" /> - <width sOffset="94.247689654187567" a="1.0965533800011351" b="0.012721194826941727" c="-9.2488114990841338e-06" d="8.2120670172431391e-05" /> - <width sOffset="98.721576667336933" a="1.1606351745137933" b="0.017569538024458375" c="-0.002535977549852078" d="0.00041556264388340982" /> - <width sOffset="102.27075060467453" a="1.2096265653918832" b="0.015272360801878019" c="0.0015755472791794927" d="0.00029229187671764225" /> - <width sOffset="104.01942561249031" a="1.2427137170818217" b="0.023463967773386499" c="-0.0065761666652679766" d="0.0022625399090386872" /> - <width sOffset="104.71965517131952" a="1.256696260344313" b="0.017582430652995449" c="-0.001814850783266358" d="0.0022550945186681822" /> - <width sOffset="105.26847970809288" a="1.2661720723572834" b="0.017628121419249129" c="-0.0002520693703138254" d="-6.6484727731189473e-05" /> - <width sOffset="106.37325434697259" a="1.2852498678685431" b="0.01682772250773365" c="-0.00024497125179122196" d="1.8914458356729439e-05" /> - <width sOffset="115.19162068845148" a="1.4275635947170997" b="0.016919798291510996" c="0.00025955038759293989" d="1.4154463904299244e-05" /> - <width sOffset="116.36611984264974" a="1.4478168523388866" b="0.017588057764852498" c="-0.00015672515679319055" d="-7.1678875514624155e-07" /> - <width sOffset="122.36183976246907" a="1.5474813663970064" b="0.015631394695740354" c="0.00038852043882928904" d="-1.3258209121925831e-05" /> - <width sOffset="123.85353441836662" a="1.5716191444339058" b="0.016701997791081405" c="0.00050434212290269428" d="-4.8761192444542523e-05" /> - <width sOffset="125.66358620558343" a="1.603213829103574" b="0.018048501461102213" c="0.0002396004560732701" d="-5.2886121199629056e-05" /> - <width sOffset="131.34855513456796" a="1.7038457542611756" b="0.015645084456382428" c="0.00014604100463591336" d="-9.938067552900242e-05" /> - <width sOffset="132.18024562709601" a="1.7169014676503234" b="0.015681778740996154" c="-0.00051233346810121091" d="0.00013195083878618513" /> - <width sOffset="135.79867017014891" a="1.7731881259933804" b="0.017156994232645738" c="0.00063287242830726003" d="-0.00011943490617803228" /> - <width sOffset="136.13555172271538" a="1.7790352587366161" b="0.017542736616235864" c="0.00051065333875579752" d="-0.00011799037852766424" /> - <width sOffset="140.29588198920911" a="1.8523610989610191" b="0.015665054127520339" c="0.0058263275835924236" d="-0.0019437380947704705" /> - <width sOffset="142.2946431330142" a="1.8914272213052459" b="0.015659958554818419" c="0.007015337008903437" d="-0.002837848589956414" /> - <width sOffset="143.31608842366492" a="1.9117181000448409" b="0.02110891237420584" c="-0.0014039237493627551" d="-0.0027732050609914518" /> - <width sOffset="144.56536410220062" a="1.9304908556634111" b="0.0046167988864299582" c="0.056172409963778647" d="-0.037341430189710478" /> - <width sOffset="145.56478463815171" a="1.9539357545730907" b="0.0050020189432421758" c="0.010457986012498916" d="-0.0022976441015970009" /> - <width sOffset="146.60751723984734" a="1.9679174364457324" b="0.019317159690617633" c="0.0032395271386857689" d="-0.0023096894719133875" /> - <width sOffset="148.56304615194509" a="2.0008088081064028" b="0.0054897333686890577" c="0.053787334947710617" d="-0.035832251432125865" /> - <width sOffset="149.56246667735334" a="2.0242503806514072" b="0.005629859359011012" c="0.0061760643152100137" d="-0.00086099442554185275" /> - <width sOffset="153.31029390687365" a="2.0867752840215292" b="0.01564238058460099" c="0.00051341330662988945" d="-2.8321091310550577e-05" /> - <width sOffset="157.07948275697927" a="2.1515117834332482" b="0.018305629075673575" c="0.00019203139528101604" d="-2.7003359999015978e-05" /> - <width sOffset="157.80768595489201" a="2.1649334040661206" b="0.018542346811042901" c="-0.0052543219030545133" d="0.0065760784660385714" /> - <width sOffset="158.18459139336676" a="2.1715277970058171" b="0.017384129743678849" c="0.0018679057143053855" d="0.0065798347251890699" /> - <width sOffset="158.93420377449272" a="2.1883803331721774" b="0.031276537202135524" c="-0.015018605492935089" d="0.0040068939734745693" /> - <width sOffset="161.43291334936248" a="2.2352727284191234" b="0.031273993578646631" c="-0.020855120279159658" d="0.0092736820399289925" /> - <width sOffset="162.93213826333235" a="2.2665341227483218" b="0.031273641136609888" c="-0.018495505793015326" d="0.0061973056330650571" /> - <width sOffset="164.68123506725766" a="2.2978130001331749" b="0.023451769155630114" c="-0.00073525129970056279" d="8.2391491011589316e-05" /> - <width sOffset="167.55144827411124" a="2.3610156473844697" b="0.021267367096227868" c="-2.3891257041552436e-05" d="8.2949415735540443e-05" /> - <width sOffset="168.66205993156092" a="2.3847195961701644" b="0.021521243203492694" c="-7.9193298765666313e-05" d="6.7865117964004316e-05" /> - <width sOffset="172.1603965475156" a="2.4619445236154336" b="0.023458826617524936" c="-0.0021319699950475527" d="-0.00094029504790206324" /> - <width sOffset="174.4372235809418" a="2.4932059628894221" b="-0.00087273033307754715" c="0.0036743607657257196" d="-0.0012287544285082103" /> - <width sOffset="176.70276025922257" a="2.4957997631894848" b="-0.0031442551594302662" c="0.00028227826372812604" d="0.00046210218636256762" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="178.0234137912432" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="3.8883379730233005" b="0.024795376360970095" c="-0.0028414273996137597" d="0.00082481833604762132" /> - <width sOffset="1.2083301111051172" a="3.9156054882831905" b="0.021541468670384246" c="-0.0003481314751367096" d="0.00025573660064438298" /> - <width sOffset="1.7439894129323621" a="3.9270837926775131" b="0.021388645134019779" c="-0.0008257182820926018" d="5.11117179507518e-05" /> - <width sOffset="8.108983958874294" a="4.0429499240703111" b="0.017089351352358874" c="-0.00013229935167541614" d="-3.537521944361569e-05" /> - <width sOffset="10.471965517131952" a="4.0821262831707656" b="0.015871537584326845" c="-0.00038343604038888702" d="-3.5723017328229431e-05" /> - <width sOffset="13.576256045209533" a="4.1266324703464567" b="0.012458196451988028" c="-0.0006849321146093271" d="-9.3467385735217586e-06" /> - <width sOffset="14.307904818996644" a="4.1353771828101626" b="0.01144092676255707" c="-0.00036274836318650634" d="-2.6243759169306933e-05" /> - <width sOffset="19.705830577204509" a="4.1824371513986209" b="0.0052307086281287449" c="-0.00041077046186207411" d="7.7575114732286136e-06" /> - <width sOffset="20.943931034263905" a="4.1882983498710002" b="0.0042492327340668459" c="-0.00036617906697943562" d="1.0339979757298756e-05" /> - <width sOffset="23.384836503763104" a="4.1966389972041158" b="0.0026464331626690494" c="-0.0024667302812941237" d="0.00038827412614857707" /> - <width sOffset="25.180687697781558" a="4.1956849842060437" b="-0.0024566807629066972" c="-0.0006118451339942665" d="0.00039808842433762217" /> - <width sOffset="27.699932452241264" a="4.1919777574697736" b="0.0020400609231769583" c="0.0003645689524294076" d="-1.1632194558352905e-05" /> - <width sOffset="29.454332705031696" a="4.1966161422945945" b="0.0032118517463361187" c="0.00031504343617550629" d="-4.2566195021385114e-05" /> - <width sOffset="31.415896551395857" a="4.2038073260174356" b="0.0039564573507318256" c="7.6890518452251322e-05" d="-4.177571269802695e-05" /> - <width sOffset="35.803393913497167" a="4.2191180520617966" b="0.0022186071548308643" c="-0.0077957545780501514" d="0.00098271988096972464" /> - <width sOffset="40.859996229456328" a="4.158064454656464" b="-0.0012392910651840481" c="0.00017640666104870139" d="-5.0037148842053105e-05" /> - <width sOffset="41.646996469692979" a="4.1571740028739486" b="-0.0010546013292201618" c="0.000273905929469698" d="-4.1387309631841822e-05" /> - <width sOffset="41.887862068527809" a="4.1569352983334422" b="-0.00092985570563590978" c="0.00026208023021854755" d="-3.1517149955400273e-05" /> - <width sOffset="48.004192124565456" a="4.1538408810326848" b="-0.0012610391626951393" c="-0.0001558256829217713" d="3.1268061749057319e-06" /> - <width sOffset="52.359827585659758" a="4.1456503758047543" b="-0.0024405177278629783" c="-0.00011094018666097944" d="3.5234859336271092e-06" /> - <width sOffset="62.831793102791714" a="4.1119737200772164" b="-0.0036048631496888007" c="-5.9005679054693365e-06" d="4.7900692083181026e-06" /> - <width sOffset="64.120907937284287" a="4.1073270934862762" b="-0.0035961955127899528" c="-0.00051134103569145501" d="2.0249797739897471e-05" /> - <width sOffset="67.034479215673016" a="4.0930094382548869" b="-0.0060601572449394629" c="-0.00041720629881568795" d="1.6894261148313648e-05" /> - <width sOffset="71.654628880166996" a="4.0577711337644518" b="-0.0088334046346209994" c="-0.0002951469550877851" d="2.5107387547209092e-05" /> - <width sOffset="73.30375861992367" a="4.0425136204476537" b="-0.0096020275468671982" c="-0.00017639729834866214" d="2.1973861815220978e-05" /> - <width sOffset="77.84164154009855" a="3.9973616686428608" b="-0.0098454856917438195" c="-0.00019029059825686966" d="1.5845207645110211e-05" /> - <width sOffset="83.775724137055619" a="3.9355479728189078" b="-0.010429998071597486" c="9.7689485464157947e-05" d="1.5084542242161779e-05" /> - <width sOffset="86.578021862466116" a="3.9074191077717151" b="-0.0095271170630334811" c="-0.00011802476894070665" d="5.3839380411046885e-05" /> - <width sOffset="88.170066054136669" a="3.8921696230665139" b="-0.0094935337175297181" c="3.1429784531338142e-05" d="4.5163619919026913e-05" /> - <width sOffset="92.226707592814478" a="3.8571899882936505" b="-0.0070088512458303179" c="0.00076183386311698691" d="-5.1924496997447943e-05" /> - <width sOffset="94.247689654187567" a="3.8457082284729394" b="-0.0045657824421779045" c="0.00045864765943062552" d="-4.9906294878543119e-05" /> - <width sOffset="99.188679349052578" a="3.828325874244221" b="-0.0036885796232714731" c="-0.00021944189934955161" d="-5.6674380440728677e-05" /> - <width sOffset="102.27075060467453" a="3.8132136332068609" b="-0.0066563283352001849" c="-0.00043027785003443278" d="6.6596386725117354e-05" /> - <width sOffset="104.71965517131952" a="3.7953105483016292" b="-0.0075655848382353737" c="5.0708644163937431e-05" d="7.4024033230804781e-05" /> - <width sOffset="106.37325434697259" a="3.7832734666617576" b="-0.0067906495132773505" c="0.00019047684341696894" d="-1.1375152857335341e-05" /> - <width sOffset="111.16880851806265" a="3.7538344911516188" b="-0.005748560238268168" c="-5.5767447129483283e-05" d="7.3755401591745367e-06" /> - <width sOffset="115.19162068845148" a="3.7302867842915419" b="-0.0058391686761988856" c="3.0356767659874855e-05" d="6.6225614632702387e-06" /> - <width sOffset="123.14888368902857" a="3.6890818140883375" b="-0.0040980723831233901" c="0.00013285938234072555" d="-1.3062681817807972e-05" /> - <width sOffset="123.85353441836662" a="3.6862555030174597" b="-0.0039302916058585897" c="-6.9907785622097643e-05" d="2.2440301504573876e-05" /> - <width sOffset="125.66358620558343" a="3.6790455102676161" b="-0.0039628023943818411" c="7.4331184302673102e-05" d="2.8864692735088727e-05" /> - <width sOffset="132.18024562709601" a="3.6643659607105969" b="0.00068335736203016962" c="0.0010490478836882177" d="-0.00020246682158001503" /> - <width sOffset="135.79867017014891" a="3.6709817457635214" b="0.00032246661959399892" c="-0.0008616283011682786" d="4.891892336333546e-05" /> - <width sOffset="136.13555172271538" a="3.6709944636176197" b="-0.00024141143450685451" c="-0.00081199237223955373" d="4.8736359196538292e-05" /> - <width sOffset="137.32580307666862" a="3.669638955696497" b="-0.0019672273258640365" c="-0.00059365284994971268" d="6.1955280611512107e-05" /> - <width sOffset="143.31608842366492" a="3.6498697930291217" b="-0.002410006881245509" c="0.00024287610379055357" d="-2.688248352004253e-06" /> - <width sOffset="146.50534685499915" a="3.6445668363940142" b="-0.00094284705829057736" c="0.00015810267902633833" d="-8.4756317987754139e-06" /> - <width sOffset="146.60751723984734" a="3.6444721467079337" b="-0.00091080566112183934" c="0.00014726112591398663" d="-9.8932434711656765e-06" /> - <width sOffset="157.07948275697927" a="3.6397220034026638" b="-0.0010813192265262438" c="-0.00016248615692419476" d="-1.1180065307586875e-05" /> - <width sOffset="158.18459139336676" a="3.6383135005560083" b="-0.001481410407816386" c="0.0001138998785830393" d="-1.4936324463953503e-05" /> - <width sOffset="161.36880959270457" a="3.6342689976590936" b="-0.0012103754589033399" c="-0.00031554894467109159" d="6.9779442543401044e-06" /> - <width sOffset="167.55144827411124" a="3.6163729264603255" b="-0.0043120294829708484" c="-0.00018549004744010823" d="7.1172017312077372e-06" /> - <width sOffset="168.66205993156092" a="3.611364891824937" b="-0.0046977079873727423" c="0.00016989910020075603" d="2.2201499502734849e-05" /> - <width sOffset="174.11381795894044" a="3.5944012361099333" b="-0.00086561378925433408" c="0.0049875682673486826" d="-0.00086396203140471555" /> - <width sOffset="174.4372235809418" a="3.5946137236311233" b="0.0020893129789161628" c="-0.00069034424234667904" d="0.00064299686297435122" /> - <width sOffset="176.70276025922257" a="3.6032807488926668" b="0.0088621585457261138" c="-0.0012794274882416976" d="-0.0010478597518959758" /> - <roadMark sOffset="0" color="standard" width="0.30539408610475943" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.305394" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - <speed sOffset="113.44281201704102" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.4536667368809448" b="-0.0040623131110634047" c="0.0031483514054025464" d="-0.0021690582831642648" /> - <width sOffset="0.51556154833212986" a="3.4521119641450824" b="-0.00254560647791921" c="0.00087071756575917542" d="-0.00058727807504723394" /> - <width sOffset="1.2083301111051172" a="3.4505710722292999" b="-0.0021847490367722724" c="0.00014683677220122323" d="-1.8196339642269489e-05" /> - <width sOffset="8.3838021330819661" a="3.4357321381044281" b="-0.0028881493195280104" c="-0.00012786946346609744" d="3.5173046090666464e-05" /> - <width sOffset="10.471965517131952" a="3.429463905597645" b="-0.0029620655549995236" c="9.2130957634041917e-05" d="3.4852475226793807e-05" /> - <width sOffset="13.576256045209533" a="3.4221992317195689" b="-0.0013824828904621207" c="0.00038551978505646934" d="8.4761964736986214e-06" /> - <width sOffset="14.89167418986435" a="3.4210670557997531" b="-0.000324243728361478" c="0.00058831437868334178" d="-6.1409059576631424e-05" /> - <width sOffset="20.943931034263905" a="3.4270405342501675" b="4.8808631808144008e-05" c="-0.0005269106693549481" d="-6.1381080085487694e-05" /> - <width sOffset="21.086908536192006" a="3.4270365619739729" b="-0.00010562847104758155" c="-0.00074007946447423212" d="0.00018399123516702812" /> - <width sOffset="23.601635375294261" a="3.4250167509973153" b="-0.00033722434473988736" c="6.4748173544049422e-05" d="-4.0613537407606831e-06" /> - <width sOffset="25.180687697781558" a="3.424629709173566" b="-0.00016312265136221192" c="0.00028247141522521664" d="-1.3875651929824359e-05" /> - <width sOffset="29.454332705031696" a="3.4280086000034773" b="0.0014909660011559228" c="9.2875524481299111e-05" d="1.7058348533236633e-05" /> - <width sOffset="31.415896551395857" a="3.4314193343398958" b="0.0020522364407972002" c="0.00020109165065624316" d="1.6077983414277005e-05" /> - <width sOffset="34.792854325931678" a="3.441262035868486" b="0.0039604449019091763" c="0.00034288349449307034" d="-2.1694503033976235e-06" /> - <width sOffset="41.041937620989799" a="3.4788717257693502" b="0.0079917020521544507" c="0.00034806247909016999" d="1.1496250273532462e-05" /> - <width sOffset="41.646996469692979" a="3.4838371466983236" b="0.0084255248188812564" c="0.00015329319009512186" d="2.8464110265726476e-06" /> - <width sOffset="49.204636694156115" a="3.5574987504469733" b="0.011230337659194713" c="0.0016463987498232197" d="-0.00034153712100066521" /> - <width sOffset="52.359827585659758" a="3.5985949841970255" b="0.011419501007302976" c="-0.0015716468402565209" d="-0.00034747178563551765" /> - <width sOffset="53.452438460736786" a="3.6087425981639991" b="0.0067406702335946252" c="-0.0009830705181420661" d="6.8976290914755418e-05" /> - <width sOffset="59.449805079579662" a="3.6286886591665808" b="0.0023919033972959946" c="-7.6060229657471968e-05" d="-1.3003935390304796e-05" /> - <width sOffset="62.831793102791714" a="3.6354050561890481" b="0.0014312229121010739" c="-0.00021318881767285277" d="-1.1234759574142285e-05" /> - <width sOffset="64.120907937284287" a="3.6368717181407186" b="0.00082556283202293585" c="0.00026732781224959103" d="-2.6694488105531226e-05" /> - <width sOffset="65.543886153187799" a="3.6385108633925292" b="0.001424207774320779" c="-0.00043901142212875443" d="3.5119602316235733e-05" /> - <width sOffset="73.30375861992367" a="3.6395373686498633" b="0.00095510843663005815" c="0.00037835904168994879" d="3.3285687517976297e-05" /> - <width sOffset="75.044223935501947" a="3.642521324864997" b="0.0025746389769959522" c="9.6699952548257547e-05" d="-1.8311092053742617e-05" /> - <width sOffset="77.84164154009855" a="3.6500795411793177" b="0.0026857764376622766" c="0.00025606637530952602" d="-1.2182437883627928e-05" /> - <width sOffset="82.023601946568547" a="3.6648986513834032" b="0.0041883269262625155" c="0.00014381260141851975" d="-1.6112903810583325e-05" /> - <width sOffset="83.775724137055619" a="3.6725919372251745" b="0.0045438848613970888" c="7.4675863108017782e-05" d="-1.330339230835424e-05" /> - <width sOffset="86.091706719006865" a="3.6833507797735963" b="0.0046757116358953302" c="0.00025680568548196972" d="-3.7444792665088978e-05" /> - <width sOffset="88.170066054136669" a="3.693841715113928" b="0.00525794356879037" c="0.00013102394744707405" d="-2.8769032173059266e-05" /> - <width sOffset="94.247689654187567" a="3.7241787897667811" b="0.0036626029171625135" c="-0.00037191055270597738" d="-4.0660553513823975e-05" /> - <width sOffset="95.393208139597334" a="3.7278252239278711" b="0.0026504762190901823" c="-0.00082105002039085614" d="0.00012044979000380907" /> - <width sOffset="99.188679349052578" a="3.7326430288586239" b="0.0016233878908402215" c="0.00048877120270984017" d="0.00012721787556580567" /> - <width sOffset="100.26935816938165" a="3.7351287696458426" b="0.0031255178307581428" c="0.00072586064398170416" d="-0.00011265997535847279" /> - <width sOffset="103.73468356281079" a="3.7499880367033986" b="0.0040975792636095167" c="-0.00044995410046855136" d="6.5336319597100221e-05" /> - <width sOffset="104.71965517131952" a="3.7536499390582554" b="0.0034013570645999081" c="-0.00025703666349787522" d="6.535406345283798e-05" /> - <width sOffset="110.73437652518476" a="3.7790300109918835" b="0.0074022662010354238" c="0.00013759157555796794" d="6.7931612111017096e-06" /> - <width sOffset="111.16880851806265" a="3.782272317043661" b="0.0075256608092947605" c="0.00022903888059753289" d="-1.1957531805668646e-05" /> - <width sOffset="115.19162068845148" a="3.8154747270521923" b="0.0087878947533472137" c="7.707432920934666e-05" d="-1.3805379374491193e-05" /> - <width sOffset="123.14888368902857" a="3.8833268336344551" b="0.0073921077086540679" c="-0.0001968949990893034" d="5.8798639066332295e-06" /> - <width sOffset="125.66358620558343" a="3.9007641782659919" b="0.0065133910024817191" c="-0.00012255880944073611" d="-1.0574376549313884e-05" /> - <width sOffset="126.69545650625935" a="3.9073430397653079" b="0.0062266840086835432" c="-0.00024847357852161541" d="1.8005638584588445e-05" /> - <width sOffset="135.62611222248765" a="3.9559590355642005" b="0.0060968262053506996" c="8.5695056523651562e-05" d="6.8038526320032453e-06" /> - <width sOffset="136.13555172271538" a="3.9590881395430584" b="0.0061894364820194985" c="9.5897230006370456e-05" d="6.9864167990856217e-06" /> - <width sOffset="137.32580307666862" a="3.9666027628223399" b="0.0064474130318354413" c="7.6530036441014297e-05" d="-6.232504615888283e-06" /> - <width sOffset="146.50534685499915" a="4.0274149264965171" b="0.0062769069163764674" c="-3.6051741701894487e-05" d="-4.4512225574499632e-07" /> - <width sOffset="146.60751723984734" a="4.028055863680609" b="0.0062695261361131963" c="-3.8855490782985236e-05" d="-4.9836685680721161e-07" /> - <width sOffset="157.07948275697927" a="4.0888768387553496" b="0.0052917836057132265" c="-5.374134120496312e-05" d="-8.6205650435166114e-07" /> - <width sOffset="160.83937390214066" a="4.1079678188006854" b="0.0048511003067310951" c="-0.00028820590804512741" d="1.0712379116167184e-05" /> - <width sOffset="161.36880959270457" a="4.110456969443864" b="0.0045549354275382118" c="1.5575914145578691e-05" d="-1.1201889602689878e-05" /> - <width sOffset="167.55144827411124" a="4.1365665197522352" b="0.0034629585280419747" c="-0.00019102596366155612" d="-1.1046025341306262e-05" /> - <width sOffset="171.95364935986129" a="4.1471668384317963" b="0.0011388939366263058" c="-0.00025028695943307895" d="-5.9230097874824334e-05" /> - <width sOffset="174.11381795894044" a="4.1478620775049739" b="-0.00077159138378548773" c="-0.0050886855098238818" d="0.00082693343304283311" /> - <width sOffset="177.63080504325089" a="4.1181789558438977" b="-0.0058797633386295876" c="-0.0089022251132148539" d="0.016560595375224682" /> - <roadMark sOffset="0" color="standard" width="0.16178024958896625" weight="standard" type="solid"> - <type name="solid"> - <line length="178.0234137912432" space="0" width="0.16178000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - <speed sOffset="113.4428119185081" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="2.4930893539899808" b="-0.00011890707095339823" c="-0.0011859173580646741" d="0.0015577909660680496" /> - <width sOffset="0.51556154833212986" a="2.4929263056695836" b="-9.9533994482481347e-05" c="0.00014627870823788415" d="-2.3989242048969826e-05" /> - <width sOffset="4.5198290407618575" a="2.4933329701899032" b="-8.1997744821767082e-05" c="-0.00013753717868032604" d="3.3888080107238197e-05" /> - <width sOffset="8.3838021330819661" a="2.4929176745941635" b="0.00037299873316783139" c="0.00013829496802355556" d="-1.9481305625628699e-05" /> - <width sOffset="10.471965517131952" a="2.4941221991166591" b="0.00069572331671778533" c="1.6099918266381874e-05" d="-1.9351423046667004e-05" /> - <width sOffset="14.89167418986435" a="2.4958409043044538" b="-0.00029598470597358689" c="-0.00040982840424966629" d="5.0533833003865388e-05" /> - <width sOffset="20.943931034263905" a="2.4902405899229261" b="0.00029637631048632382" c="0.00051663635164310873" d="4.9101742938516835e-05" /> - <width sOffset="21.086908536192006" a="2.4902936699560758" b="0.0004471223572988293" c="0.00072453813991057579" d="-0.00019627057231400445" /> - <width sOffset="23.601635375294261" a="2.4928786884244629" b="0.00036759576073760623" c="-0.00017292703417854817" d="-8.2179834052450667e-06" /> - <width sOffset="24.602668881561716" a="2.4930651359467251" b="-3.3206865418179861e-06" c="0.0001295318527292776" d="-8.7777917860396357e-06" /> - <width sOffset="31.415896551395857" a="2.4962792324694267" b="0.00053934215854556378" c="-4.9588354943111591e-05" d="-7.552574018388821e-06" /> - <width sOffset="34.792854325931678" a="2.4972442184264514" b="-5.3958526387324138e-05" c="-0.00010501035615835891" d="1.0694859699290253e-05" /> - <width sOffset="41.041937620989799" a="2.4954161642587276" b="-0.00011345920452219063" c="4.9638639558704216e-05" d="-2.9708408776653422e-06" /> - <width sOffset="41.887862068527809" a="2.4953539088175294" b="-3.5855822793586303e-05" c="4.6971805945613586e-05" d="-2.9500819849728811e-06" /> - <width sOffset="49.204636694156115" a="2.496450642795248" b="0.0001777088060267544" c="-0.0014463525574071544" d="0.0003414334500423115" /> - <width sOffset="51.957148881685598" a="2.4931019804579013" b="-2.4066625031333652e-05" c="-0.00041353337037200628" d="0.00041620146456084834" /> - <width sOffset="52.359827585659758" a="2.4930524104752911" b="-0.00015464741275971264" c="7.4336434634226546e-05" d="0.00042213501111673511" /> - <width sOffset="53.452438460736786" a="2.4935227986186503" b="0.0015196266410558712" c="-0.00026950633109283618" d="5.6869345664551751e-06" /> - <width sOffset="59.449805079579662" a="2.4941696046578246" b="-0.0010993799859679906" c="0.00016683158889186744" d="8.7667160871415187e-05" /> - <width sOffset="60.951231324638272" a="2.493191773392113" b="-5.530149266809968e-06" c="-0.00029483453275611744" d="2.2523730505528573e-05" /> - <width sOffset="62.831793102791714" a="2.4922884845717519" b="-0.00087547288533484436" c="-0.00016426862793350491" d="2.1706812202028244e-05" /> - <width sOffset="65.543886153187799" a="2.4891388730209227" b="-0.001287506462078748" c="0.00060472626482607999" d="-4.0107278219903361e-05" /> - <width sOffset="73.30375861992367" a="2.4968212055646517" b="0.00085243696479568414" c="-0.00032922351218418944" d="-3.8856629329168878e-05" /> - <width sOffset="75.044223935501947" a="2.4971026903255642" b="-0.00064668302278520244" c="-7.6652516034911048e-05" d="1.2740150242548718e-05" /> - <width sOffset="81.549832253895886" a="2.4931592920353505" b="-2.6423687331311035e-05" c="0.00023360105125940365" d="-1.6863446993258387e-05" /> - <width sOffset="82.023601946568547" a="2.4931974135725752" b="0.00018356711651863148" c="0.00016904723619809691" d="-1.2932981072626829e-05" /> - <width sOffset="83.775724137055619" a="2.4939684439758216" b="0.00065683982012078356" c="0.00010186897356758004" d="-1.132657387756545e-05" /> - <width sOffset="86.091706719006865" a="2.4958953724976065" b="0.00094643376469662872" c="-0.00025138856684820196" d="1.2814826479167889e-05" /> - <width sOffset="94.247689654187567" a="2.4938445987040452" b="-0.00059687896984862536" c="6.0083998104733358e-05" d="2.0238471135789888e-05" /> - <width sOffset="95.393208139597334" a="2.4932701275269169" b="-0.00037955277832055906" c="0.00043904184716455941" d="-0.00014087187238147041" /> - <width sOffset="96.894338369395456" a="2.4932131846510797" b="-1.375343719448377e-05" c="0.00052560140803304409" d="-0.00012521595212011276" /> - <width sOffset="100.26935816938165" a="2.4943399587446122" b="-0.00074483718847345509" c="-0.00056686199520195664" d="0.00011466189880431042" /> - <width sOffset="103.73468356281079" a="2.4897231635002455" b="-0.00054281433757290797" c="0.00062976469770032535" d="-6.3334396148384469e-05" /> - <width sOffset="104.71965517131952" a="2.4897389633682772" b="0.00051345114043249663" c="0.00044050875186508835" d="-6.2258522076191942e-05" /> - <width sOffset="110.73437652518476" a="2.4952163890183616" b="-0.00094442999910280981" c="0.00010173696926869657" d="-3.6976198341922686e-06" /> - <width sOffset="115.19162068845148" a="2.49270061257275" b="-0.00025787909712896061" c="5.6549473121607183e-05" d="-2.7772232604075507e-06" /> - <width sOffset="125.66358620558343" a="2.4930121431442389" b="1.2821081575077549e-05" c="-4.4740080934157036e-05" d="1.2727859857227685e-05" /> - <width sOffset="126.69545650625935" a="2.4929917195314331" b="-3.8854632384863961e-05" c="8.7841034552149161e-05" d="-1.5852155276658793e-05" /> - <width sOffset="130.19759437177009" a="2.4932521055054209" b="-6.8704149529993366e-06" c="7.4104710667534553e-05" d="-1.2365673063847003e-05" /> - <width sOffset="135.62611222248765" a="2.4934204259758057" b="-0.00029551778938540976" c="2.0960722198439278e-05" d="-1.1638871193097544e-06" /> - <width sOffset="136.13555172271538" a="2.4932751635655341" b="-0.00027506753571278342" c="2.0025896706453908e-05" d="-4.8580717419579595e-07" /> - <width sOffset="146.60751723984734" a="2.4920328569933132" b="-1.5470385260971358e-05" c="2.6520167120259563e-06" d="-5.5047781831650918e-07" /> - <width sOffset="157.07948275697927" a="2.4915295210258548" b="-0.00014102632772485993" c="-1.5644239610332309e-05" d="-3.8407838609394242e-07" /> - <width sOffset="160.83937390214066" a="2.4907577033630961" b="-0.00027495650027248899" c="0.00020476433260838191" d="-1.1958514006047804e-05" /> - <width sOffset="167.55144827411124" a="2.4945210469756285" b="0.00085756750644812492" c="-3.616015696027148e-05" d="-1.2008020185279891e-05" /> - <width sOffset="171.95364935986129" a="2.4965710433100066" b="-0.00015892481491382822" c="-0.00028136479393293902" d="3.6176052348235983e-05" /> - <width sOffset="177.45593397903426" a="2.4932045305118522" b="3.048154667429975e-05" c="-0.0018181324527227214" d="-0.0022591372690302274" /> - <width sOffset="177.63080504325089" a="2.4931421817417561" b="-0.00081264846855780065" c="0.0095351765461282774" d="-0.017992799211246399" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659200" type="poles" s="113.44281193397661" t="-5.187482253754081" zOffset="-2.046058442266053" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.8539415577339469" name="SgPoleSign01.flt" /> - <object id="277422248" type="poles" s="14.628135112567412" t="-6.1713291071008305" zOffset="-2.0174929003558417" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.8825070996441582" name="SgPoleSign01.flt" /> - <object id="5177144" s="91.950914955300647" t="-4.99554456332881" orientation="none" validLength="11.80698877041749" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.80698877041749" s="91.950914955300647" distance="0" tStart="-4.99554456332881" tEnd="-4.8179074353448694" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273612600" s="103.75790372571814" t="-4.8179074353448694" orientation="none" validLength="2.5323792147051023" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.5323792147051023" s="103.75790372571814" distance="0" tStart="-4.8179074353448694" tEnd="-4.8997161791622661" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542048056" s="106.29028294042324" t="-4.8997161791622661" orientation="none" validLength="0.99557994679943818" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="0.99557994679943818" s="106.29028294042324" distance="0" tStart="-4.8997161791622661" tEnd="-5.019712749835719" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810483512" s="107.28586288722268" t="-5.019712749835719" orientation="none" validLength="2.058138457072161" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.058138457072161" s="107.28586288722268" distance="0" tStart="-5.019712749835719" tEnd="-5.0104066660672206" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078918968" s="109.34400134429484" t="-5.0104066660672206" orientation="none" validLength="1.4943999242994011" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.4943999242994011" s="109.34400134429484" distance="0" tStart="-5.0104066660672206" tEnd="-4.8292994703301035" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742235" s="110.83840126859424" t="-4.8292994703301035" orientation="none" validLength="4.428155618719984" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.428155618719984" s="110.83840126859424" distance="0" tStart="-4.8292994703301035" tEnd="-4.7240168412413697" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742236" s="115.26655688731422" t="-4.7240168412413697" orientation="none" validLength="15.031009669712361" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.031009669712361" s="115.26655688731422" distance="0" tStart="-4.7240168412413697" tEnd="-4.8019304695705864" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742237" s="130.29756655702658" t="-4.8019304695705864" orientation="none" validLength="47.725847234216616" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="47.725847234216616" s="130.29756655702658" distance="0" tStart="-4.8019304695705864" tEnd="-5.2654480600572944" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412762" s="27.429999505501858" t="-4.9508247253941304" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848218" s="90.630314824189156" t="-4.9786758460430152" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283674" s="122.98676060675972" t="-4.6997677730340062" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719130" s="171.31434486323138" t="-5.2252001080386536" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <objectReference id="277422248" s="14.628135112567412" t="-6.1713291071008305" zOffset="-2.0366943013387355" validLength="0" orientation="none" /> - </objects> - <signals> - <signal dynamic="no" id="8223744" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="1.8539415577339469" s="113.44281193397661" t="-5.187482253754081" orientation="+" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8986780" type="511" subtype="22" country="DEU" zOffset="1.8633056986612644" s="14.627126365306415" t="-6.1721967958684756" orientation="+" name="" /> - <signal dynamic="no" id="8986792" type="1004" subtype="34" country="DEU" zOffset="1.5329438251429224" s="14.628135112567412" t="-6.1713291071008305" orientation="+" name="Sg1004-36nach800m03.flt" height="0.40999999999999998" /> - </signals> - </road> - <road name="" length="5.0000000000003668" id="33782133" junction="33555390"> - <link> - <predecessor elementType="road" elementId="4940858" contactPoint="end" /> - <successor elementType="road" elementId="4940867" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-786.89038493392832" y="-783.78807151147794" hdg="4.4015573432498112" length="5.0000000000003668"> - <paramPoly3 aU="0" bU="5.0000261860857069" cU="-2.5979593419214988e-05" dU="-2.0962581833248068e-07" aV="0" bV="-1.3322676295501878e-15" cV="0.00015143551376185533" dV="1.6662665110716065e-06" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.49193669757221" b="-0.00025016797391528938" c="6.6619755671126765e-06" d="2.6568859170197913e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025299780913263688" b="-3.8529687927481937e-05" c="-5.5511151231249681e-19" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="6.0525686731425896" b="-0.00049785102054610822" c="0.00011942779292547581" d="-6.3199272783124298e-05" /> - <laneOffset s="2.7732876083230167" a="6.0507585015740002" b="-0.0012936561452272044" c="-0.0022476063386577226" d="0.00075989220039988242" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1547079165304224" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000003668" space="0" width="0.15470800000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8564273988219453" b="0.0040720789205990864" c="-9.1416183400091941e-05" d="-9.6019123118527922e-05" /> - <width sOffset="2.7732876083230167" a="3.8649692925905779" b="0.0013495471908747273" c="-0.0027315069677095192" d="0.00072707235006439386" /> - <roadMark sOffset="0" color="standard" width="0.15821327330226068" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15821299999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6558023086637439" b="-0.0051344191373493674" c="0.00023504425893264728" d="3.7119669297743314e-05" /> - <roadMark sOffset="0" color="standard" width="0.14027440931680168" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14027400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.7920598405975232" b="-0.0015364326708106691" c="0.00036376719888324915" d="2.5321325583640686e-05" /> - <width sOffset="2.1688759098647097" a="3.7906970173002326" b="0.00039883543006093098" c="0.052013502610949558" d="-0.012264607902123035" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.1688759098647097" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="2.1688759098647097" type="none" width="0" /> - <speed sOffset="0" max="60" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link> - <predecessor id="-4" /> - </link> - <width sOffset="0" a="0.19344557515535232" b="-0.00015220468106389665" c="0.00020042268540445228" d="-0.00069400435084498167" /> - <width sOffset="2.1688759098647097" a="0.18697771613519354" b="-0.0090766574993535552" c="-0.055800184241128023" d="0.011595924876852459" /> - <width sOffset="2.668240633549658" a="0.16997450619064747" b="-0.056131086821756965" c="-0.045641070607262579" d="0.01649034649185694" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782129" s="0" t="7.1235331815107754" orientation="none" validLength="5.0000000000003668" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="5.0000000000003668" s="0" distance="0" tStart="7.1235331815107754" tEnd="7.1215521089016995" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="205.47736385204763" id="33782160" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33555390" /> - <successor elementType="road" elementId="4940815" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-795.46051527368672" y="-781.03554470611607" hdg="1.2595894977009909" length="107.00606561227193"> - <paramPoly3 aU="0" bU="127.06829373574372" cU="-67.835565500619239" dU="47.73202634753175" aV="-0" bV="2.1316282072803006e-14" cV="-0.58932087118332177" dV="2.7962960572974982" /> - </geometry> - <geometry s="107.00606561227193" x="-764.80804440127224" y="-678.53307892203952" hdg="1.3131089822743887" length="98.471298239775706"> - <paramPoly3 aU="0" bU="86.955385740987509" cU="33.572625973908416" dU="-22.057686656470768" aV="-0" bV="1.4210854715202004e-14" cV="0.39949019360214244" dV="-0.019837034064061676" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.26483309683684" b="0.00012392269422003914" c="8.0903765912723253e-06" d="3.0521148236638235e-08" /> - <elevation s="10.273868192602382" a="158.26699331875037" b="0.0002998263580528441" c="1.3898886509767294e-05" d="-4.4328278471517403e-07" /> - <elevation s="20.547736385204765" a="158.27106004596891" b="0.00044504837172258834" c="-2.9612793108857926e-05" d="3.4096565836385081e-06" /> - <elevation s="30.821604577807147" a="158.27620425153663" b="0.0009162644810086696" c="8.2004997986834431e-05" d="-3.9838866116989461e-06" /> - <elevation s="41.095472770409529" a="158.28995340314924" b="0.0013397555691013843" c="6.9636913497959509e-05" d="-6.7028918025544927e-06" /> - <elevation s="51.369340963011908" a="158.3037993919566" b="0.00064811821097441463" c="-0.00011987534129945717" d="5.1013056178638179e-06" /> - <elevation s="61.643209155614294" a="158.30333696146027" b="-0.00019968404308681124" c="2.4394469454065357e-05" d="-3.7787507549594169e-06" /> - <elevation s="71.917077348216679" a="158.29976253304437" b="-0.00089500118219824616" c="-5.0276531563783646e-06" d="3.052114823660217e-08" /> - <elevation s="82.190945540819058" a="158.29006982625464" b="-0.00098864333551345186" c="-9.527008002451314e-05" d="6.1033708024219576e-06" /> - <elevation s="92.464813733421437" a="158.27647533761382" b="-0.001013552108931975" c="6.7544179193660184e-05" d="-4.4005306441958614e-06" /> - <elevation s="102.73868192602382" a="158.2684196125322" b="-0.0010191314055937159" c="-7.2286759063177404e-05" d="4.002186744696382e-06" /> - <elevation s="113.01255011862621" a="158.25465924805624" b="-0.0012371398150567176" c="3.2820754683854134e-05" d="-2.1651528545527524e-06" /> - <elevation s="123.28641831122859" a="158.24306538590622" b="-0.001248358630144339" c="-0.00018005211201427867" d="1.1171347151320435e-05" /> - <elevation s="133.56028650383098" a="158.22334954358135" b="-0.001410535538796995" c="7.4655580279015915e-05" d="-4.6178170627581795e-06" /> - <elevation s="143.83415469643336" a="158.21173025613581" b="-0.0013387969284325192" c="-0.00016141921327335343" d="9.7979508865034814e-06" /> - <elevation s="154.10802288903574" a="158.19156265559343" b="-0.0015530056280382641" c="3.3385122105630762e-05" d="6.9579606494994564e-07" /> - <elevation s="164.38189108163812" a="158.17988570205156" b="-0.00064668817367585904" c="0.00020515321864790677" d="-9.9902739519966189e-06" /> - <elevation s="174.65575927424049" a="158.18406235705419" b="0.00040525487469217467" c="4.4758954204299358e-06" d="-3.8671430969514587e-07" /> - <elevation s="184.92962746684287" a="158.18827896855103" b="0.00037476856091434024" c="3.646607627753328e-05" d="-3.8261289033654769e-06" /> - <elevation s="195.20349565944525" a="158.19182919881476" b="-8.7507010658464604e-05" c="3.2139365844470644e-06" d="3.0521148176226806e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.025137724201139262" b="3.8933511559628765e-05" c="-1.8947834851366488e-06" d="0" /> - <superelevation s="10.273868192602382" a="-0.024937725318119868" b="0" c="-2.8338093003319748e-06" d="7.8690172185531265e-08" /> - <superelevation s="20.547736385204765" a="-0.025151506528238131" b="-3.3310564516861904e-05" c="-5.8283467807060736e-06" d="4.4885162122958722e-07" /> - <superelevation s="30.821604577807147" a="-0.025622182016654702" b="-1.0937843710251265e-05" c="1.5969414107522286e-06" d="-1.0362480686045096e-07" /> - <superelevation s="41.095472770409529" a="-0.025678368998949905" b="-1.0937843710251265e-05" c="-5.4541361649954536e-05" d="3.5737059253037045e-06" /> - <superelevation s="51.369340963011908" a="-0.027672274927478792" b="0" c="5.3732773943568019e-05" d="-3.0507531178318026e-06" /> - <superelevation s="61.643209155614294" a="-0.025308985015580581" b="0.00013804423023091166" c="-6.7182208124058508e-06" d="0" /> - <superelevation s="71.917077348216679" a="-0.024599860902509759" b="0" c="-1.389782631380352e-05" d="7.7114187152348877e-07" /> - <superelevation s="82.190945540819058" a="-0.02523055913730457" b="-4.1381320448851295e-05" c="2.3653320330358118e-06" d="-4.067975638251978e-08" /> - <superelevation s="92.464813733421437" a="-0.025450153366364438" b="-5.6606351740056713e-06" c="8.2646113438769607e-07" d="-5.362868972648159e-08" /> - <superelevation s="102.73868192602382" a="-0.02547923167619651" b="-5.6606351740056713e-06" c="-1.5177759933157216e-05" d="1.0027542167016297e-06" /> - <superelevation s="113.01255011862621" a="-0.026052018921439473" b="0" c="4.3387050849594298e-07" d="0" /> - <superelevation s="123.28641831122859" a="-0.026006222862019004" b="8.9150568338893778e-06" c="3.9325913573682945e-05" d="-1.7475694285849047e-06" /> - <superelevation s="133.56028650383098" a="-0.023658806115591412" b="0.00026359328965143138" c="3.5908627185081277e-05" d="-3.1625196017405699e-06" /> - <superelevation s="143.83415469643336" a="-0.020589977433352467" b="0" c="-2.9431666173544947e-05" d="1.2827463886917563e-06" /> - <superelevation s="154.10802288903574" a="-0.022305509388134345" b="-0.00019856336269110113" c="-2.8549424970122414e-05" d="2.4796204275651874e-06" /> - <superelevation s="164.38189108163812" a="-0.024670005065689015" b="0" c="9.0275776935319556e-07" d="0" /> - <superelevation s="174.65575927424049" a="-0.024574716845729302" b="1.8549628664366968e-05" c="3.0577421742040781e-05" d="-2.0427346299849084e-06" /> - <superelevation s="184.92962746684287" a="-0.023371826132060479" b="0" c="-5.977264225693441e-06" d="3.3562488373931589e-07" /> - <superelevation s="195.20349565944525" a="-0.023638778457016629" b="-1.6541246262549832e-05" c="8.0501549915056489e-07" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-3.364527840190835" b="-0.00066840665300195272" c="-0.00039682180528855031" d="4.2270768530432768e-05" /> - <laneOffset s="7.0102834348448511" a="-3.3741521336154139" b="-0" c="0.00013831929202310435" d="-4.2303272575379976e-05" /> - <laneOffset s="9.1900878739602749" a="-3.3739330567249519" b="-0" c="-0.00018792761144732106" d="1.3924961760898665e-05" /> - <laneOffset s="10.273868192602382" a="-3.3741360664096884" b="-0.00035827655770647224" c="-0.000142738228633314" d="1.4267737199272885e-05" /> - <laneOffset s="18.023474509512646" a="-3.3788445158856217" b="-0" c="4.2335439933219337e-05" d="8.464868402625588e-07" /> - <laneOffset s="20.547736385204765" a="-3.378561143598358" b="0.00022991265748508559" c="4.3056998565450016e-05" d="3.1088516039110568e-07" /> - <laneOffset s="25.87454775017634" a="-3.376067713759825" b="0.0007150897001148073" c="0.00044428381819404996" d="-4.2905662843498734e-05" /> - <laneOffset s="30.821604577807147" a="-3.3668516398518249" b="0.0019607456452834858" c="-0.00019527226942952293" d="-4.3004550485092735e-05" /> - <laneOffset s="33.489998220718192" a="-3.3638270796917515" b="-0" c="-0.0026136646653879001" d="0.00047096827904367445" /> - <laneOffset s="37.189701975282603" a="-3.3757521929519041" b="-0" c="0.00086863898325642943" d="-7.6260890255795276e-05" /> - <laneOffset s="41.095472770409529" a="-3.3670448963363064" b="0.0032953194915249138" c="-3.6963531458390796e-05" d="-7.4231169418297277e-05" /> - <laneOffset s="44.779827308192715" a="-3.3591180662176972" b="-0" c="-0.00013552272374440263" d="9.9835753270585304e-06" /> - <laneOffset s="51.369340963011908" a="-3.3621461132946675" b="-0.00048554653227340157" c="6.5750660208486173e-05" d="5.9816024025372904e-06" /> - <laneOffset s="54.06791929487774" a="-3.3628600309695802" b="-0" c="1.1133854025377042e-05" d="-9.323716677388015e-07" /> - <laneOffset s="61.643209155614294" a="-3.3626264241202826" b="8.1718524788095774e-06" c="7.8232083365808728e-06" d="-1.7476833642877646e-06" /> - <laneOffset s="65.080826797078743" a="-3.362576880139025" b="-0" c="-0.0050765337991809985" d="0.0022139395330174816" /> - <laneOffset s="66.209948343602377" a="-3.3658619892065404" b="-0.0029962901288477168" c="0.00016625795598135729" d="-2.3319927340149557e-05" /> - <laneOffset s="71.917077348216679" a="-3.3818818739338452" b="-0.0033772614737205765" c="-0.0002339617102459364" d="-2.2731698469670214e-05" /> - <laneOffset s="76.383708629216443" a="-3.4036602641185287" b="-0.0068278492293392399" c="-0.00059819722807372426" d="2.6180750780167941e-05" /> - <laneOffset s="82.190945540819058" a="-3.4583574822344447" b="-0.011126836314984068" c="-0.00014676474604857287" d="2.5992713457470092e-05" /> - <laneOffset s="87.581740865805841" a="-3.5185330395911016" b="-0.010443096393843648" c="-0.00051636436892140976" d="5.9790536900506227e-05" /> - <laneOffset s="92.464813733421437" a="-3.5748781909990037" b="-0.011208977525915974" c="0.00035858210377108881" d="5.9751609878490176e-05" /> - <laneOffset s="95.936857567652126" a="-3.6069725621988069" b="-0.0065580191459694284" c="0.0021259143470665313" d="-0.00054050279635478257" /> - <laneOffset s="98.978590825667567" a="-3.6224621720085377" b="-0.0086275149931936967" c="-0.0033951643647997468" d="0.00038515447816380637" /> - <laneOffset s="102.73868192602382" a="-3.6824289264278147" b="-0.017823498178057083" c="0.00094472497133738322" d="0.00038658685974152435" /> - <laneOffset s="104.77602454072954" a="-3.7115509840465823" b="-0.009160147752401376" c="0.0023763826702916926" d="-0.00051655529932618138" /> - <laneOffset s="107.30951192653129" a="-3.7279050316177207" b="-0.0070656976787691417" c="-0.0018728442697292565" d="0.00033155832973644786" /> - <laneOffset s="112.21932196857149" a="-3.7685012283028043" b="-0.0014784481948665381" c="0.00014789629786898562" d="2.7190121022699432e-09" /> - <laneOffset s="117.216892862344" a="-3.7721957228268099" b="-0" c="0.00026379597043353522" d="-2.3141915580097887e-05" /> - <laneOffset s="123.28641831122859" a="-3.7676521482604213" b="0.00064464796524902625" c="-0.00014482018809570618" d="-2.8530445962211041e-05" /> - <laneOffset s="124.81847988917167" a="-3.7671070292683893" b="-0" c="-0.00067662368992048186" d="4.5266567761352801e-05" /> - <laneOffset s="132.32461186548076" a="-3.7860856607616702" b="-0.0025064242052798493" c="6.5415268429536312e-05" d="-3.2924286422889216e-05" /> - <laneOffset s="133.56028650383098" a="-3.7891450231644828" b="-0.0024955756990114558" c="1.1829416923221536e-05" d="-4.2091886374808456e-07" /> - <laneOffset s="143.83415469643336" a="-3.813992073508456" b="-0.0023857949064398027" c="2.1794203432856132e-06" d="3.1491582882726158e-07" /> - <laneOffset s="154.10802288903574" a="-3.8379318684118764" b="-0.0022412924177346097" c="1.804761689887848e-06" d="4.4959331565052443e-07" /> - <laneOffset s="164.38189108163812" a="-3.8602805614438869" b="-0.0020618417334678112" c="9.8485853215838289e-06" d="-1.1299635457210977e-07" /> - <laneOffset s="165.40447295062791" a="-3.862378785836341" b="-0.0020420542358415834" c="0.00021630114726532915" d="-3.715237623959706e-05" /> - <laneOffset s="171.00977974824235" a="-3.8735721782670702" b="-0.0031191089298913217" c="-0.00043636803544072758" d="1.8165086616195891e-05" /> - <laneOffset s="174.65575927424049" a="-3.889864698369486" b="-0.005576672202180632" c="-0.00023262259915216875" d="1.8107329074784384e-05" /> - <laneOffset s="183.92764236763884" a="-3.9471359539316966" b="-0.0052204286828616917" c="-6.4829907961511459e-06" d="4.9515838772160343e-07" /> - <laneOffset s="184.92962746684287" a="-3.9523727563254241" b="-0.0052319290245671154" c="2.4503612506356852e-06" d="6.1739466858129544e-06" /> - <laneOffset s="192.51525257189485" a="-3.9892243455917309" b="-0.0041289756643791064" c="-0.00020856637061828428" d="3.4669331536169499e-05" /> - <laneOffset s="195.20349565944525" a="-4.0011577513227321" b="-0.0044987004049879351" c="6.7755963288258124e-05" d="3.4056239310785022e-05" /> - <laneOffset s="201.20904222875845" a="-4.0183546123382223" b="-0" c="0.00041222583606847487" d="-7.1701461937152914e-05" /> - <laneOffset s="205.04184028643891" a="-4.0163360329780096" b="-0" c="-0.045123576320332627" d="0.069071771483909652" /> - <laneSection s="0"> - <left> - <lane id="3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - </link> - <width sOffset="0" a="2.4929676309008069" b="-6.9820502985169525e-05" c="0.00028944493277308965" d="-4.2679140575222479e-05" /> - <width sOffset="3.5206897521717249" a="2.494447047331263" b="0.00038121445202436667" c="-0.00029287140248024786" d="3.2302557229372829e-05" /> - <width sOffset="8.7705549353110062" a="2.4930504392437078" b="-2.2975783621716726e-05" c="-0.00028631635637047523" d="3.8719828994086179e-05" /> - <width sOffset="10.273868192602382" a="2.4925003858655139" b="-0.00062130741256737239" c="-0.00011182527903111177" d="3.8484948306291538e-05" /> - <width sOffset="13.267461976197595" a="2.4906707611689485" b="-0.00025616576271813608" c="0.00019032420789576895" d="-1.535539182474146e-05" /> - <width sOffset="20.547736385204765" a="2.4929682275579825" b="7.3441507302413229e-05" c="-0.00015010223685227374" d="-1.4595656214568673e-05" /> - <width sOffset="20.770865103915686" a="2.4929769792736711" b="4.2772710588628686e-06" c="0.00050498029518804169" d="-6.2729691034771684e-05" /> - <width sOffset="23.744275278713612" a="2.4958052486082756" b="0.0013434931428285618" c="-0.00060728559936562825" d="4.3116585333297773e-05" /> - <width sOffset="30.821604577807147" a="2.4901800594847243" b="-0.0007734802918989564" c="0.00030829716922848389" d="4.322042857510622e-05" /> - <width sOffset="33.380644021184672" a="2.4909439358417051" b="0.0016535195818643785" c="-0.00011575620070298652" d="-9.7553081773020002e-05" /> - <width sOffset="35.384306409130211" a="2.4930075888670307" b="1.4718657317009352e-05" c="0.00045575934028682554" d="-7.1405046150115764e-05" /> - <width sOffset="40.739422909694447" a="2.4951906612166472" b="-0.0012470985649946889" c="-0.00061883402240323613" d="0.00013687437660292424" /> - <width sOffset="41.095472770409529" a="2.4946743595224228" b="-0.0016357147885038552" c="-0.00045424255183709164" d="0.00013473790539612448" /> - <width sOffset="43.063952071439694" a="2.4907220773124696" b="-0.0018577568327538551" c="0.0016200909934319069" d="-0.00025647934726092769" /> - <width sOffset="46.572522749711737" a="2.4930699028697458" b="3.8815905193883594e-05" c="0.00098045828246894908" d="-0.00057747143810923376" /> - <width sOffset="47.333614031181995" a="2.493412795868033" b="0.00052773419688547166" c="-0.00044020634287234505" d="5.0351746019982517e-05" /> - <width sOffset="50.220209435094382" a="2.4924792395724045" b="-0.00075500336098637249" c="0.002287386190319843" d="-0.001046065647082167" /> - <width sOffset="51.369340963011908" a="2.4930448089244952" b="0.00035801249668326179" c="-0.0013199694418574894" d="-0.0010603595802328595" /> - <width sOffset="51.473660324702443" a="2.4930665881713749" b="4.7997575054834624e-05" c="0.0017862983483127558" d="-0.00073003301103289708" /> - <width sOffset="53.21380463508855" a="2.4947124164868786" b="-0.00036701235627675799" c="1.8430984245571517e-05" d="-2.4840836014698718e-07" /> - <width sOffset="61.643209155614294" a="2.4927795476597705" b="-0.00010923977662504435" c="8.434041624309645e-06" d="-1.7789281184621629e-07" /> - <width sOffset="71.917077348216679" a="2.4923545531556845" b="7.7296649043222948e-06" c="5.1118011458740052e-06" d="-1.6966177938208931e-06" /> - <width sOffset="72.521423079424409" a="2.4923607170578972" b="1.2049269006069244e-05" c="0.00037682883778182406" d="-0.00011854762415141618" /> - <width sOffset="74.526556294174256" a="2.4929442379848137" b="9.3350080907167107e-05" c="0.00066493972067856373" d="-0.00012907591598109358" /> - <width sOffset="77.105953416302668" a="2.4953939281740585" b="0.00094729896993814636" c="-0.00019727652160377279" d="8.4901820718893595e-06" /> - <width sOffset="82.190945540819058" a="2.4962262461904663" b="-0.000400404543130734" c="-6.6375681615434261e-05" d="8.3039213208240331e-06" /> - <width sOffset="89.633967381320389" a="2.4929928874183505" b="-8.3996367259107918e-06" c="-0.00061231200514051242" d="0.00017407997088121635" /> - <width sOffset="90.617354632004094" a="2.4925580381628278" b="-0.00070764691460791385" c="0.0008482870225856047" d="-0.00013504463192823878" /> - <width sOffset="92.464813733421437" a="2.4932944485509196" b="0.0010439396677639767" c="0.0001002257410840457" d="-0.00013507945480036447" /> - <width sOffset="95.263993024539801" a="2.4940392745858229" b="-0.0015701672810778844" c="8.7954538268018813e-05" d="0.00043875592326669344" /> - <width sOffset="96.265678002724599" a="2.4929956903429988" b="-7.3254529746487156e-05" c="-0.0010176878642861259" d="0.00030552968119522107" /> - <width sOffset="98.764414538134801" a="2.4912251917994572" b="0.00056377037058473163" c="0.00013409586196714668" d="-1.5595345126572878e-05" /> - <width sOffset="102.73868192602382" a="2.4946048205757956" b="0.00089065986166323688" c="-5.2334712694234253e-05" d="-1.5369391010137803e-05" /> - <width sOffset="107.539838451072" a="2.4959736844776774" b="-0.0006747187237748888" c="-7.582229264844452e-05" d="1.430395249395906e-05" /> - <width sOffset="113.01255011862621" a="2.4923547953507867" b="-0.00021939109513866993" c="0.00015877120889912824" d="1.4146275893091081e-05" /> - <width sOffset="115.47002405442664" a="2.492984441686497" b="0.00081725676073886831" c="-0.00075987905282897934" d="0.00018170506865279417" /> - <width sOffset="117.47053992482259" a="2.4930330580711439" b="-4.1457644706186826e-05" c="-0.00052902561097564781" d="0.00017829866698726313" /> - <width sOffset="119.60991775829018" a="2.4922689119891914" b="0.00014315659744527226" c="0.00019287847823292457" d="-1.7672679975978626e-05" /> - <width sOffset="123.28641831122859" a="2.4945240733397491" b="0.00084476563695207174" c="-3.9416254458437519e-06" d="-1.7886737385431589e-05" /> - <width sOffset="129.15212528181036" a="2.4957337279417895" b="-0.0010477362723989871" c="0.00010081541316146365" d="-8.7568647979015015e-07" /> - <width sOffset="133.56028650383098" a="2.4929991607597399" b="-0.00020996380049486708" c="-7.1238058967263795e-06" d="6.8398390627999732e-05" /> - <width sOffset="134.65331342689387" a="2.4928504716974356" b="1.9611459792850602e-05" c="0.00017780910680329493" d="-1.5301416832243216e-05" /> - <width sOffset="141.95312557488307" a="2.4965165395584203" b="0.00016944600373803697" c="-0.00028176189952551582" d="2.088707810681622e-05" /> - <width sOffset="143.83415469643336" a="2.4959773384203103" b="-0.00066884627255973071" c="-0.00016295230101855731" d="2.4087632618289891e-05" /> - <width sOffset="151.03033089633396" a="2.4917020696571472" b="0.00072801747639275778" c="0.00025684000077759916" d="-5.1527505836428255e-05" /> - <width sOffset="154.10802288903574" a="2.4948733655512085" b="0.00084473163633041158" c="-0.00018036424956042416" d="-5.7553191350943353e-05" /> - <width sOffset="154.96518714121601" a="2.4954286740641343" b="0.00040866979743473669" c="-0.0015147885560233404" d="0.00037545284003041022" /> - <width sOffset="157.46565577267461" a="2.4928493121654811" b="-0.00012431250470557563" c="-0.00033672403026484255" d="0.00057459884278802096" /> - <width sOffset="158.45939697173452" a="2.4929571327928861" b="0.00090874066739242854" c="0.0018523492193525443" d="-0.00068104817400153623" /> - <width sOffset="160.58852987425388" a="2.4967157039749424" b="-0.00046546087159359071" c="-0.0011382128471935503" d="0.00029541170670747193" /> - <width sOffset="163.33913791609436" a="2.4929715784635227" b="-2.1898495463244447e-05" c="-0.00016180801221329488" d="9.1446792689634803e-05" /> - <width sOffset="164.38189108163812" a="2.4928764886652304" b="-6.1050463641822844e-05" c="0.00014404159699598869" d="0.00010438233156778042" /> - <width sOffset="164.97003325385484" a="2.4929116439773713" b="0.00021670446918320777" c="-0.00042587093581250611" d="5.1458482028309616e-05" /> - <width sOffset="169.95994733628802" a="2.4897825802039875" b="-0.00018958261479297411" c="7.384000361771222e-05" d="-4.9997351973691601e-06" /> - <width sOffset="174.65575927424049" a="2.4900028548533584" b="0.00017315269704086013" c="7.7190843829939311e-06" d="-9.8726709224106726e-06" /> - <width sOffset="175.99496133987182" a="2.490224872926317" b="0.00014070873901391931" c="0.00013078038863039663" d="-1.3846798087776626e-05" /> - <width sOffset="182.747076073437" a="2.4928748268970504" b="1.2926784791511201e-05" c="0.00018419992424543698" d="-1.4069030567130934e-05" /> - <width sOffset="184.92962746684287" a="2.4936342114509977" b="0.00061592361522956694" c="8.3649349427643489e-05" d="-1.7432472217064481e-05" /> - <width sOffset="190.06890024821837" a="2.4966426996441231" b="9.4431373418843445e-05" c="-0.00036913406109364796" d="4.287337394436274e-05" /> - <width sOffset="195.20349565944525" a="2.4931994089000864" b="-0.00030532683884551201" c="0.00028955505578274294" d="4.394503638468157e-05" /> - <width sOffset="196.53125288904505" a="2.493407341537377" b="0.00069600808839069377" c="-0.0011194063887270537" d="0.00032063880897978452" /> - <width sOffset="198.53219471870605" a="2.4928869055511131" b="6.7564359912699462e-05" c="-0.0013506583135215397" d="0.00050189057050575186" /> - <width sOffset="200.35818537057048" a="2.4915625135365653" b="0.00015525910021349878" c="0.0001621724337450758" d="-2.8213973144725443e-05" /> - <width sOffset="205.22304606783985" a="2.4929074965914255" b="-0.00027005757183976172" c="0.0022079682053279702" d="-0.0056318132590293972" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.9447705775349422" b="0.0013067875535871898" c="-0.00041840268806799566" d="4.6418023149247373e-05" /> - <width sOffset="3.5206897521717249" a="3.9462108381725107" b="8.6745327208134337e-05" c="0.0002034039838740706" d="-2.8563674655343077e-05" /> - <width sOffset="10.273868192602382" a="3.9472758844672584" b="-0.001073982932248068" c="-0.00037509022201864903" d="-2.8778413132217606e-05" /> - <width sOffset="13.267461976197595" a="3.9399273558642181" b="-0.0040934206504651032" c="-0.00059006743887352595" d="2.506192699882062e-05" /> - <width sOffset="17.438559146877974" a="3.9144059948913719" b="-0.0077077918021486343" c="-0.00059613395266495104" d="4.0884054672578277e-05" /> - <width sOffset="20.547736385204765" a="3.8859071132385203" b="-0.010229087638733111" c="-0.00020946583388454411" d="4.0165813844906993e-05" /> - <width sOffset="23.744275278713612" a="3.8523810313704074" b="-0.01033699291234655" c="0.0007284115143491183" d="-6.5680462523156881e-05" /> - <width sOffset="30.821604577807147" a="3.7924245407972754" b="-0.0098961018842830088" c="-0.00066341992248685508" d="-6.5728076431725266e-05" /> - <width sOffset="33.380644021184672" a="3.7616540057498251" b="-0.01458283436777873" c="-0.00041216042848416689" d="7.5045433916394146e-05" /> - <width sOffset="34.745266170783907" a="3.7411771292058069" b="-0.015288473484813016" c="-0.00087759530503184299" d="8.9871420647806606e-05" /> - <width sOffset="40.739422909694447" a="3.6373592648364728" b="-0.016122143590918819" c="0.00066596118019344812" d="-0.00011840800206635712" /> - <width sOffset="41.095472770409529" a="3.6316980581773013" b="-0.015692945101299285" c="0.00053921063816568082" d="-0.00011838769514479118" /> - <width sOffset="43.063952071439694" a="3.6019931900296798" b="-0.014946320401853326" c="-0.0014385677557619938" d="0.00027282955751229928" /> - <width sOffset="47.333614031181995" a="3.5331883049516684" b="-0.01230965710272303" c="0.0021582413886617135" d="-0.00035499362661597336" /> - <width sOffset="49.607992156435067" a="3.5121791699242659" b="-0.0080012717786141392" c="-0.00076919945078612168" d="-0.0003867702754019631" /> - <width sOffset="50.220209435094382" a="3.5069035991452946" b="-0.0093780022640936392" c="-0.0037711189644770225" d="0.00070964711769682331" /> - <width sOffset="51.369340963011908" a="3.4922241073578788" b="-0.015233751644206045" c="-0.0013235693907349081" d="0.00072358478332189941" /> - <width sOffset="53.21380463508855" a="3.4641636204344546" b="-0.012731296292496265" c="0.00063708714121723988" d="-6.1998193507861664e-06" /> - <width sOffset="54.653718313598496" a="3.4471340490425342" b="-0.010935158526834431" c="0.0001779914248813043" d="-6.1285448725951313e-06" /> - <width sOffset="61.643209155614294" a="3.3773056331415043" b="-0.0093452127397853444" c="3.9731050566534863e-05" d="-6.6890103808823955e-06" /> - <width sOffset="70.128771052653093" a="3.2967800857315144" b="-0.010115853937707796" c="0.0016626034604861431" d="-7.3969489418464316e-05" /> - <width sOffset="71.917077348216679" a="3.2835838748500836" b="-0.0048790374930542096" c="0.0012658222018930045" d="-7.3941114687677218e-05" /> - <width sOffset="72.521423079424409" a="3.2810812495397834" b="-0.003430066379326668" c="0.00075697114302819579" d="4.2909891670428037e-05" /> - <width sOffset="77.105953416302668" a="3.2854006445314123" b="0.0062162777656833233" c="0.0012105383470029185" d="-9.46562063825482e-05" /> - <width sOffset="82.190945540819058" a="3.3358657156830556" b="0.011184815953383324" c="-0.00022915462334779625" d="-9.4290306693057947e-05" /> - <width sOffset="83.768802859267694" a="3.3525728489484421" b="0.0097574243740760937" c="0.00063729313805420461" d="-4.6088794556820901e-05" /> - <width sOffset="90.617354632004094" a="3.434483393009383" b="0.012001433100758265" c="-0.0012566663047765077" d="0.00026303580825193582" /> - <width sOffset="92.464813733421437" a="3.4540250068722296" b="0.010051460497016442" c="0.00020258903072049069" d="0.00026333874469618835" /> - <width sOffset="95.263993024539801" a="3.4895239443516179" b="0.017375723452495613" c="0.0012919224780469909" d="-0.00031049663337112329" /> - <width sOffset="98.764414538134801" a="3.5528588095429865" b="0.015006770033114585" c="-0.00083015400309522334" d="1.0628392950683261e-05" /> - <width sOffset="102.73868192602382" a="3.6000547823784022" b="0.0089118821337013654" c="-0.00069987943678972617" d="1.0078403358250803e-05" /> - <width sOffset="104.46487630170705" a="3.6134047990291638" b="0.0065857195160147772" c="-7.1393335372868608e-06" d="2.9342473885417057e-05" /> - <width sOffset="107.539838451072" a="3.634441263709832" b="0.007374146953095702" c="6.5656680312976915e-05" d="-3.3086961870417246e-07" /> - <width sOffset="113.01255011862621" a="3.6767100658541647" b="0.0080630579098979315" c="6.2891661390169281e-05" d="3.0802338283413639e-08" /> - <width sOffset="115.47002405442664" a="3.6969050915988539" b="0.0083727252096122244" c="0.0010860613238375173" d="-0.00016752799042161055" /> - <width sOffset="119.60991775829018" a="3.7382944586373092" b="0.0087514361834134212" c="-0.00057214233600481564" d="2.8443356541646849e-05" /> - <width sOffset="123.28641831122859" a="3.7641491312863931" b="0.0056978501785706704" c="-0.00026746653810332167" d="2.9275692524788569e-05" /> - <width sOffset="129.15212528181036" a="3.7942768364009631" b="0.0055819134533709389" c="-0.0001718107560651253" d="1.2264641619158931e-05" /> - <width sOffset="133.56028650383098" a="3.8165947794231987" b="0.0047821497582959394" c="-3.9172857924657772e-05" d="1.1232103031775593e-05" /> - <width sOffset="136.94454361500956" a="3.8327655119331032" b="0.0049029381514040463" c="0.00016249749768596213" d="1.0633995493552588e-05" /> - <width sOffset="141.95312557488307" a="3.8627347801192662" b="0.0073309920495502065" c="0.00044675981256661173" d="-2.5554499445788637e-05" /> - <width sOffset="143.83415469643336" a="3.877935266474946" b="0.008740472286207791" c="0.00029455597836937862" d="-3.0224739195631531e-05" /> - <width sOffset="151.03033089633396" a="3.9448234532583522" b="0.008284265732059334" c="-0.0002577274242912237" d="4.5390399259057074e-05" /> - <width sOffset="154.10802288903574" a="3.9692018715291799" b="0.0079876936577725974" c="0.00016268993702932792" d="4.5373840460237336e-05" /> - <width sOffset="154.96518714121601" a="3.9761967460112912" b="0.0083666102951749487" c="0.0014657951308969189" d="-0.00038763219092105452" /> - <width sOffset="158.45939697173452" a="4.0067906842278216" b="0.004411813381015867" c="-0.0030736751261137489" d="0.00086801482586833158" /> - <width sOffset="160.58852987425388" a="4.0106283214124181" b="0.0031279601326757236" c="0.0011111174909234948" d="-0.00010844505484075455" /> - <width sOffset="164.38189108163812" a="4.0325628648200196" b="0.006876260720551532" c="-0.00012223567157997918" d="-0.00010839154296942428" /> - <width sOffset="164.97003325385484" a="4.0365427493327353" b="0.0066199952628561405" c="0.00044060290232836443" d="-5.5467693425536097e-05" /> - <width sOffset="169.95994733628802" a="4.073655047388943" b="0.006873825860149071" c="-0.00011912489833312479" d="9.9052380014197566e-07" /> - <width sOffset="174.65575927424049" a="4.1034090239965764" b="0.0058205747009257881" c="-0.00011715736182543173" d="6.4352558033215429e-06" /> - <width sOffset="175.17287893149211" a="4.1063885181151871" b="0.0057045685595016977" c="-0.00019253884995568422" d="1.3091054669163948e-06" /> - <width sOffset="175.99496133987182" a="4.1109487493806212" b="0.0053906571134991225" c="-0.00035203608035521729" d="5.2832326329527159e-06" /> - <width sOffset="184.92962746684287" a="4.1347782502789672" b="0.00036526121403524132" c="-0.00021337054424214514" d="4.8267240255472554e-06" /> - <width sOffset="190.06890024821837" a="4.1316750331091567" b="-0.0014454255358316431" c="4.5059730570564728e-05" d="-5.5479122135879971e-05" /> - <width sOffset="194.45179805371026" a="4.1215344285083884" b="-0.0042476685323779018" c="-0.0023769486967511089" d="0.0001122041524150325" /> - <width sOffset="195.20349565944525" a="4.1170460313552892" b="-0.0076309591908562766" c="-0.0021192225226862324" d="0.00011083200298402055" /> - <width sOffset="196.53125288904505" a="4.1034373401371376" b="-0.01267241497388249" c="-9.3742079183600389e-05" d="-0.00016586176961096868" /> - <width sOffset="200.35818537057048" a="4.0442719170435035" b="-0.02067724615086327" c="-0.00076145573714495182" d="0.00036424277403950239" /> - <width sOffset="205.22304606783985" a="3.9675961859636524" b="-0.0022245396155592956" c="0.0020969484111241889" d="0.0059678420598875412" /> - <roadMark sOffset="0" color="standard" width="0.2954527572594926" weight="bold" type="solid"> - <type name="solid"> - <line length="205.47736385204763" space="0" width="0.29545300000000002" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="2.9601690732009338" b="0.0022306482389748698" c="0.00068571087482735646" d="-4.3581503119630628e-05" /> - <width sOffset="7.0102834348448511" a="2.9944907424331531" b="0.0054193855910679885" c="0.00012300391458129443" d="4.0992537986183071e-05" /> - <width sOffset="9.1900878739602749" a="3.0073129800521583" b="0.0065399685101084756" c="0.00044067938282340842" d="-1.5235696350041481e-05" /> - <width sOffset="10.273868192602382" a="3.014899087465106" b="0.007441481171421507" c="0.00039123047570040599" d="-1.5569525373023646e-05" /> - <width sOffset="17.438559146877974" a="3.0825717382397646" b="0.010649890240660048" c="0.00037625167507675494" d="-3.1391653048036686e-05" /> - <width sOffset="18.023474509512646" a="3.0889234661929379" b="0.011057821310272135" c="0.00046780166511359864" d="-1.797040268778757e-05" /> - <width sOffset="20.547736385204765" a="3.1195280454038792" b="0.013076012407778302" c="0.00033713560687318752" d="-1.7476295725935405e-05" /> - <width sOffset="25.87454775017634" a="3.1961061881529722" b="0.015180062528633466" c="-0.00033840192501024755" d="2.5740252277954553e-05" /> - <width sOffset="30.821604577807147" a="3.2660373863445855" b="0.013721727672072758" c="4.6319426168409252e-05" d="2.5836388382167984e-05" /> - <width sOffset="33.489998220718192" a="3.3034730535465751" b="0.014520815014651708" c="0.0023272775782790574" d="-0.00048813644114660407" /> - <width sOffset="34.745266170783907" a="3.324402156837476" b="0.018056062629379019" c="0.0012617123493810565" d="-0.00050296242787801332" /> - <width sOffset="37.189701975282603" a="3.3687317629788627" b="0.015208408822211111" c="-0.0006816400695551318" d="4.4266741421455954e-05" /> - <width sOffset="41.095472770409529" a="3.4203714041887863" b="0.011909622533401006" c="-0.00015064990713830849" d="4.2216713662985631e-05" /> - <width sOffset="44.779827308192715" a="3.4643170746211527" b="0.012518735527092888" c="-0.00040594853086252099" d="-4.1998031082370232e-05" /> - <width sOffset="49.607992156435067" a="3.5105695690879046" b="0.0056616922156086311" c="-0.00050899716045671158" d="-1.0221382294058248e-05" /> - <width sOffset="51.369340963011908" a="3.5189068438669158" b="0.0037735182289868438" c="-0.00056688144232577896" d="-5.8631438754444795e-06" /> - <width sOffset="54.06791929487774" a="3.5248465414268915" b="0.00058587831709266459" c="-0.00051130562729917971" d="1.0508301946390457e-06" /> - <width sOffset="54.653718313598496" a="3.5250144997214807" b="-1.2084542169267135e-05" c="-7.7144799135004391e-05" d="9.7955571663970934e-07" /> - <width sOffset="61.643209155614294" a="3.5214957580419268" b="-0.00094692762223882098" c="-7.5086712929579391e-05" d="1.7563886479018432e-06" /> - <width sOffset="65.080826797078743" a="3.5174246170021162" b="-0.001400899573165657" c="0.0050093600708975752" d="-0.0022139308277338674" /> - <width sOffset="66.209948343602377" a="3.519042311883458" b="0.0014437292432539545" c="-0.00023340219629488466" d="2.3328632623762784e-05" /> - <width sOffset="70.128771052653093" a="3.5225195978062178" b="0.00068919101982850475" c="-0.0017522923151737624" d="9.0609111661366337e-05" /> - <width sOffset="71.917077348216679" a="3.518666382784827" b="-0.0047087652088462911" c="-0.0012652906678374503" d="8.9992508057493633e-05" /> - <width sOffset="76.383708629216443" a="3.480409998502513" b="-0.010625672722404771" c="2.3255826136104208e-07" d="4.1080058807655448e-05" /> - <width sOffset="82.190945540819058" a="3.4267572951234704" b="-0.0064668199034061055" c="0.00072055717500817086" d="4.1305805850432809e-05" /> - <width sOffset="83.768802859267694" a="3.4185097605011032" b="-0.0038844380986049146" c="-0.00039669653365044554" d="-6.895706285804504e-06" /> - <width sOffset="87.581740865805841" a="3.3975490085410631" b="-0.0072103562788002201" c="0.0003143885820559151" d="-4.0693529728841689e-05" /> - <width sOffset="92.464813733421437" a="3.3650986125010349" b="-0.0070509300467134096" c="-0.0002808250747370642" d="-4.0655706676760576e-05" /> - <width sOffset="95.936857567652126" a="3.3355304262729368" b="-0.010471328397439601" c="-0.0018492518791206119" d="0.00055959869955651202" /> - <width sOffset="98.978590825667567" a="3.3023184308466265" b="-0.0061887317111920682" c="0.0038460807643273072" d="-0.00036605857496207681" /> - <width sOffset="102.73868192602382" a="3.3139650943886676" b="0.0072081749255568043" c="-0.00027889373188115421" d="-0.00036730466544217759" /> - <width sOffset="104.46487630170705" a="3.3236874960764808" b="0.0029619003930240716" c="-0.0028215597284968275" d="-0.00038656873599370582" /> - <width sOffset="104.77602454072954" a="3.3243242771539672" b="0.0010937788114328342" c="-0.0022512283209188831" d="0.00051657342309838661" /> - <width sOffset="107.30951192653129" a="3.3210458859729037" b="-0.00036616834590352983" c="0.0019981363681468617" d="-0.00033154020596424275" /> - <width sOffset="112.21932196857149" a="3.3281754980189664" b="-0.0047217863360915387" c="-2.2337246614810916e-05" d="1.5404759875119495e-08" /> - <width sOffset="113.01255011862621" a="3.3244159970282685" b="-0.0047571943231822199" c="-2.2510206675531669e-05" d="-3.7656894982336616e-09" /> - <width sOffset="117.216892862344" a="3.3040169401152415" b="-0.0049466752639818886" c="-0.00013841661062085521" d="2.3140868902696537e-05" /> - <width sOffset="123.28641831122859" a="3.2740680277995384" b="-0.004069452475018419" c="0.00027104573572341592" d="2.8475480846413252e-05" /> - <width sOffset="124.81847988917167" a="3.268571977953235" b="-0.0030384209308689609" c="0.00080259660772206791" d="-4.5321532877150407e-05" /> - <width sOffset="132.32461186548076" a="3.271818143916061" b="0.0013498514308232185" c="5.93199231321295e-05" d="3.2869321307204625e-05" /> - <width sOffset="133.56028650383098" a="3.2736387121117536" b="0.001647015372644383" c="0.00011722815995624947" d="-3.0574054265446921e-07" /> - <width sOffset="136.94454361500956" a="3.2805434220395" b="0.0024299707213099359" c="2.6490664205060299e-05" d="2.9236699556449354e-07" /> - <width sOffset="143.83415469643336" a="3.2986380127550881" b="0.0028366245938703321" c="3.0004061569902764e-05" d="-2.8009550336263086e-07" /> - <width sOffset="154.10802288903574" a="3.3306443754035677" b="0.003364445910859631" c="3.0127582241576128e-05" d="-3.9821419107519839e-07" /> - <width sOffset="164.38189108163812" a="3.3679584510114577" b="0.0038574021765966629" c="2.2906715675609894e-05" d="1.1086360672391061e-07" /> - <width sOffset="165.40447295062791" a="3.3719270320333048" b="0.0039045979423216366" c="-0.00018355238899597792" d="3.715024349174888e-05" /> - <width sOffset="171.00977974824235" a="3.3945891261935239" b="0.0053485852816680269" c="0.00046908092959202719" d="-1.8167219364042445e-05" /> - <width sOffset="174.65575927424049" a="3.4194450260164722" b="0.0080446045856629178" c="0.0002653121654386674" d="-1.8109461822932756e-05" /> - <width sOffset="175.17287893149211" a="3.4236734927798489" b="0.0083044727553623302" c="0.00032258276932359991" d="-1.298331148713929e-05" /> - <width sOffset="183.92764236763884" a="3.512389811179832" b="0.010967392310683367" c="0.00025911281384981353" d="4.6288591999318783e-06" /> - <width sOffset="184.92962746684287" a="3.5236437738966502" b="0.011500588432454941" c="0.00026592013177578619" d="-1.0164658271746397e-06" /> - <width sOffset="192.51525257189485" a="3.6257407478764252" b="0.015359461747356459" c="0.00059430501248498217" d="-2.9511850677523106e-05" /> - <width sOffset="194.45179805371026" a="3.6574994834636922" b="0.017329232349643533" c="0.0021153823485641136" d="-0.00019719512523251072" /> - <width sOffset="195.20349565944525" a="3.6716373633454116" b="0.020175213146114271" c="0.0016739654767152132" d="-0.00019658203300597683" /> - <width sOffset="201.20904222875845" a="3.8105951848308872" b="0.019011237878552172" c="-0.0015986730643181883" d="-9.0824331758040103e-05" /> - <width sOffset="205.04184028643891" a="3.854862494047711" b="0.0027537346464775415" c="0.042068343452889755" d="-0.069234297277605605" /> - <roadMark sOffset="0" color="standard" width="0.18168409816709552" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.18168400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15106905665220544" weight="standard" type="solid"> - <type name="solid"> - <line length="205.47736385204763" space="0" width="0.15106900000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="0.19344604021610623" b="0.00062787570887394366" c="-0.013338675995380958" d="0.0072883169415536714" /> - <width sOffset="1.196316061336935" a="0.18758581346537229" b="5.8390434799122665e-06" c="-0.0010968431700611552" d="9.8470293876777674e-05" /> - <width sOffset="7.0102834348448511" a="0.16989590402678223" b="-0.0027626391528643747" c="0.00026681694960730231" d="1.3896252770957388e-05" /> - <width sOffset="9.1900878739602749" a="0.16528561398022079" b="-0.0014013354996226172" c="0.00030808197061568454" d="7.0124487107169631e-05" /> - <width sOffset="10.273868192602382" a="0.16421800852060509" b="-0.00048644873333732912" c="0.00053599517189004565" d="7.0467262543620458e-05" /> - <width sOffset="10.6898032028017" a="0.16411347631472051" b="-3.9975009236439232e-06" c="-0.00044389398031332477" d="2.7074948255269234e-05" /> - <width sOffset="18.023474509512646" a="0.15088936145682919" b="-0.0021462483061708954" c="5.1479627218398258e-06" d="1.3653697896238424e-05" /> - <width sOffset="20.547736385204765" a="0.14572408168410078" b="-0.0018592587824458186" c="0.00010631152611968684" d="1.2752015323587967e-05" /> - <width sOffset="25.26900735135402" a="0.14065775311506146" b="-2.665189825842222e-06" c="0.00020615564783364984" d="-5.1404208054053196e-06" /> - <width sOffset="25.87454775017634" a="0.14073059084356832" b="0.00024135130081885773" c="0.00059307619025614862" d="-4.8356968805854532e-05" /> - <width sOffset="30.821604577807147" a="0.15058450900285836" b="0.0025589403822690133" c="-0.00012522546211928364" d="-4.822347900993228e-05" /> - <width sOffset="33.489998220718192" a="0.15560488545444784" b="0.00086053825164313037" c="-0.0025853963251731226" d="0.00046574935051883537" /> - <width sOffset="37.189701975282603" a="0.14698614951055955" b="0.00085540014766910251" c="0.00083898185509690239" d="-8.1479818780660646e-05" /> - <width sOffset="41.095472770409529" a="0.15827106429036286" b="0.0036802067727403614" c="-0.00011291819407431798" d="-8.4790837676653784e-05" /> - <width sOffset="42.928471085576902" a="0.16411528730095437" b="0.002411587216483452" c="0.0076587835296754638" d="-0.00299243199522976" /> - <width sOffset="44.779827308192715" a="0.17584196952553688" b="0" c="0.0028338610370670526" d="-0.00037910413400495466" /> - <width sOffset="49.767471513399862" a="0.19930120781912253" b="-2.3878532598927272e-05" c="0.0038144447053317038" d="-0.00053049703096660135" /> - <width sOffset="51.369340963011908" a="0.20687022693745716" b="0.0081128629092767825" c="0.0012707023852725696" d="-0.00052566192698776061" /> - <width sOffset="54.06791929487774" a="0.22768682226398251" b="0.0034869197573749143" c="-0.0030879595469791412" d="-0.00053257590106211953" /> - <width sOffset="54.56651941654323" a="0.22859171331324735" b="1.0407313331813056e-05" c="0.011287151040555075" d="-0.0030166860898147101" /> - <width sOffset="57.059519593259708" a="0.25202696783870238" b="4.1582819258177096e-05" c="0.0058480727130777272" d="-0.00092041765680440479" /> - <width sOffset="61.297620194120441" a="0.28717872605869355" b="1.478765333028342e-05" c="0.02307883428264693" d="-0.0088210335991134089" /> - <width sOffset="61.643209155614294" a="0.28957609974217791" b="0.012805834480292974" c="0.013951357071416055" d="-0.008821848910831917" /> - <width sOffset="63.042719041859513" a="0.31064177030590523" b="1.9799982990467576e-05" c="0.0094335083556900401" d="-0.0019460319577348103" /> - <width sOffset="65.080826797078743" a="0.33339259044012648" b="0.014222044564845424" c="-0.0075314935252245013" d="0.00026965525864514127" /> - <width sOffset="65.828695858973489" a="0.33992918587490362" b="0.0034093637084910578" c="0.010849874727072347" d="-0.00065935259814219006" /> - <width sOffset="66.209948343602377" a="0.34276954213442812" b="0.011394929565070006" c="0.0078391065450672016" d="-0.002896612058508493" /> - <width sOffset="68.453766465096678" a="0.37508238301259622" b="0.0028230982848943299" c="0.0076108516908499528" d="-0.0010036944847126468" /> - <width sOffset="71.917077348216679" a="0.43445394892282918" b="0.019424081709427075" c="-0.0028184165709280785" d="-0.0010031062558628874" /> - <width sOffset="72.193464157295423" a="0.43958603229965609" b="0.017636254521769652" c="-0.00033581274619403414" d="-3.1743393941541352e-05" /> - <width sOffset="76.383708629216443" a="0.50525454548982562" b="0.013149913818603341" c="-0.00079448366060756834" d="1.7169055308248484e-05" /> - <width sOffset="78.877501255145077" a="0.53337308156735741" b="0.0095076819805615109" c="0.0022304130376682202" d="-0.00032571087256472446" /> - <width sOffset="82.190945540819058" a="0.5775150513196099" b="0.013560526616662464" c="-0.0010119424356622138" d="-0.00032589890988623437" /> - <width sOffset="82.867569503637384" a="0.58612618675547035" b="0.011743508510614738" c="0.0006406393853195222" d="-4.7489841024798e-06" /> - <width sOffset="87.581740865805841" a="0.655226763854869" b="0.017467060312487306" c="-0.00021648700668998528" d="2.904883934055526e-05" /> - <width sOffset="92.464813733421437" a="0.73873996020923771" b="0.017430773144625752" c="0.0002091053713797208" d="2.8992556406970726e-05" /> - <width sOffset="95.936857567652126" a="0.80299465887237576" b="0.019931342665569365" c="-0.0056630946356907089" d="0.0037950072429170688" /> - <width sOffset="97.184515169322481" a="0.82641722908573856" b="0.023522624802327315" c="0.0013828454987254491" d="-0.00062504503653530187" /> - <width sOffset="98.978590825667567" a="0.8694601847348995" b="0.022448972326736965" c="-0.0025701714704745608" d="0.00030061223798337759" /> - <width sOffset="102.73868192602382" a="0.93351346813586256" b="0.015871239141818795" c="0.00082087132709096568" d="0.00030125000268494377" /> - <width sOffset="104.77602454072954" a="0.97180339367197677" b="0.022967285252212054" c="0.0017309477795858265" d="-0.00060189215638283174" /> - <width sOffset="106.52347686762182" a="1.0140115359879931" b="0.023502987752620868" c="0.00035415782932539619" d="-0.00058203815004413142" /> - <width sOffset="107.30951192653129" a="1.0324218567977903" b="0.02298090993520148" c="-0.0013415172806306619" d="0.00026607547901759832" /> - <width sOffset="110.80810315317406" a="1.1077965229189486" b="0.023364472555521397" c="0.00094933413369428798" d="0.00036120599698375344" /> - <width sOffset="112.21932196857149" a="1.1436747099707421" b="0.028201975935619822" c="-0.0003843684517610949" d="2.9650386258210755e-05" /> - <width sOffset="113.01255011862621" a="1.1658182610902874" b="0.02764816122225789" c="-0.00030881933562148752" d="3.1227988853901057e-05" /> - <width sOffset="117.216892862344" a="1.2789225661778794" b="0.026707400995393187" c="0.0002009190765922907" d="8.0833542617080835e-06" /> - <width sOffset="122.21540366038968" a="1.4184493004312255" b="0.029321883834151758" c="-0.0022373687598164862" d="0.00042647742993621616" /> - <width sOffset="123.28641831122859" a="1.4478109845773157" b="0.025996975836646966" c="-0.00087391131289655481" d="0.00042446518798593835" /> - <width sOffset="124.81847988917167" a="1.4871151050650426" b="0.026308134159218032" c="0.00067633680250835202" d="0.00049826220172147391" /> - <width sOffset="125.31834208054499" a="1.5004967689560296" b="0.027357775236832301" c="-0.00044453916498932015" d="3.7782507386691701e-05" /> - <width sOffset="131.31668947085365" a="1.6567578932566764" b="0.026103037833190828" c="-0.014305249815066291" d="0.0071367776545707929" /> - <width sOffset="132.32461186548076" a="1.6758426644288882" b="0.019016793517239877" c="0.0069974127186445663" d="0.0070585868003782129" /> - <width sOffset="132.82447996162446" a="1.6879786083579247" b="0.031303507568697382" c="-0.0077140019763672863" d="0.0029108669159882356" /> - <width sOffset="133.56028650383098" a="1.7079950999921256" b="0.024679409767089811" c="-0.0012200319498834069" d="0.0029433702835456972" /> - <width sOffset="134.57402161297838" a="1.7348260337647394" b="0.031280173075471075" c="-0.0031493418610350093" d="0.0007648833235876873" /> - <width sOffset="137.32329857513298" a="1.8129141565994433" b="0.031307513476747727" c="-0.003869412092707923" d="0.00073692005577414481" /> - <width sOffset="140.82237976117074" a="1.9066568442502416" b="0.031296334342410338" c="-0.0019364971348273781" d="0.00018607084453008767" /> - <width sOffset="143.83415469643336" a="1.9884321056519854" b="0.02469517497330162" c="-0.00026174642449944497" d="0.00018117383098847426" /> - <width sOffset="147.82053963373079" a="2.0941942238983002" b="0.031245574971605385" c="-0.0034576252742502191" d="0.0005125121170138975" /> - <width sOffset="152.31935697015331" a="2.2114480984722014" b="0.031253873683268082" c="-0.0022659880941259566" d="0.00032569011493475671" /> - <width sOffset="154.10802288903574" a="2.2619649728741344" b="0.026273648662774304" c="-0.00044083627007488466" d="0.00033392314286513549" /> - <width sOffset="156.81817615712558" a="2.3365797124880245" b="0.031242108013718798" c="-0.009976678582580922" d="0.0017740037145781715" /> - <width sOffset="160.5671911930387" a="2.4069607739783843" b="0.031238143932671963" c="-0.023347871817878264" d="0.015570826783053255" /> - <width sOffset="161.56692886809856" a="2.4304136755490737" b="0.031242625621492354" c="0.0020916967182401601" d="-0.0018850568002179123" /> - <width sOffset="164.31620654295079" a="2.4929460694162442" b="-8.2650914067080791e-07" c="2.9035452615328445e-05" d="-2.9251861803468495e-05" /> - <width sOffset="164.38189108163812" a="2.4929461321098523" b="2.6092336074074948e-06" c="1.7457903642539566e-05" d="-2.9814449686374685e-05" /> - <width sOffset="165.40447295062791" a="2.4929351753333395" b="-5.5215050777930423e-05" c="0.00013279396260896739" d="-6.6853829571452227e-05" /> - <width sOffset="166.40418375606546" a="2.4929458975725294" b="9.8505649452570749e-06" c="0.00035362346877737798" d="-4.2088097855260679e-05" /> - <width sOffset="171.00977974824235" a="2.4963804982160167" b="0.00058888733940080408" c="-0.00025581663708016766" d="1.3229365000507691e-05" /> - <width sOffset="174.65575927424049" a="2.4957681387183888" b="-0.00074893663998865274" c="-0.00011195547542052842" d="1.3461643047387718e-05" /> - <width sOffset="183.92764236763884" a="2.4899295721291823" b="0.00064679136209117027" c="-1.503864027030298e-05" d="-4.1505276390016944e-06" /> - <width sOffset="184.92962746684287" a="2.4905583737360075" b="0.00060415330792636633" c="-2.4162002203319965e-05" d="1.1123142072066709e-06" /> - <width sOffset="192.51525257189485" a="2.4942364451901686" b="0.00042959890565109037" c="-0.0003503656732789866" d="2.960769905753774e-05" /> - <width sOffset="195.20349565944525" a="2.493434529672836" b="-0.00081224377803922618" c="-0.00011320941744435371" d="2.9031308444417255e-05" /> - <width sOffset="201.20904222875845" a="2.4907616535558876" b="0.00096916822618278839" c="0.00014072808635943237" d="-7.6726392803566688e-05" /> - <width sOffset="203.95741929304961" a="2.4928954478701026" b="4.0398859265537495e-06" c="-0.0029497314658637587" d="0.0027256382720869544" /> - <width sOffset="205.04184028643891" a="2.4929068939069161" b="0.0032223358805303585" c="-0.038793863862217719" d="0.071869111217940387" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="277423366" type="poles" s="158.41229177982538" t="-6.6345435719564962" zOffset="-2.8638862015356152" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.0361137984643847" name="SgPoleSign01.flt" /> - <object id="5176797" s="155.19451886937222" t="-4.5803538675600226" orientation="none" validLength="23.023336566571174" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="23.023336566571174" s="155.19451886937222" distance="0" tStart="-4.5803538675600226" tEnd="-4.9596111103787903" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273612253" s="178.21785543594339" t="-4.9596111103787903" orientation="none" validLength="27.259508416104239" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="27.259508416104239" s="178.21785543594339" distance="0" tStart="-4.9596111103787903" tEnd="-5.1494384178488577" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5183019" s="0" t="7.411638444736159" orientation="none" validLength="43.037258279640113" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="43.037258279640113" s="0" distance="0" tStart="7.411638444736159" tEnd="7.3963277205076086" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273618475" s="43.037258279640113" t="7.3963277205076086" orientation="none" validLength="25.049065705776002" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="25.049065705776002" s="43.037258279640113" distance="0" tStart="7.3963277205076086" tEnd="7.1923722741059359" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542053931" s="68.086323985416115" t="7.1923722741059359" orientation="none" validLength="29.497101799033658" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="29.497101799033658" s="68.086323985416115" distance="0" tStart="7.1923722741059359" tEnd="6.5184086006220445" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810489387" s="97.583425784449773" t="6.5184086006220445" orientation="none" validLength="10.527149891921184" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.527149891921184" s="97.583425784449773" distance="0" tStart="6.5184086006220445" tEnd="6.3787942024302522" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078924843" s="108.11057567637096" t="6.3787942024302522" orientation="none" validLength="44.157926448864316" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="44.157926448864316" s="108.11057567637096" distance="0" tStart="6.3787942024302522" tEnd="6.4778518748138909" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742238" s="152.26850212523527" t="6.4778518748138909" orientation="none" validLength="9.8884749312269946" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.8884749312269946" s="152.26850212523527" distance="0" tStart="6.4778518748138909" tEnd="6.7007881812368435" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742239" s="162.15697705646227" t="6.7007881812368435" orientation="none" validLength="7.7140816040143818" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.7140816040143818" s="162.15697705646227" distance="0" tStart="6.7007881812368435" tEnd="7.1315307277561173" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742240" s="169.87105866047665" t="7.1315307277561173" orientation="none" validLength="20.790540726971159" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="20.790540726971159" s="169.87105866047665" distance="0" tStart="7.1315307277561173" tEnd="8.5892169035111152" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742241" s="190.66159938744781" t="8.5892169035111152" orientation="none" validLength="8.0498158700512761" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.0498158700512761" s="190.66159938744781" distance="0" tStart="8.5892169035111152" tEnd="9.2712514418618781" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412763" s="172.61984444366357" t="7.3173056621877697" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848219" s="124.36821996757395" t="6.4400170261695555" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283675" s="68.138023306582639" t="7.0142086084773698" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719131" s="24.012072393542461" t="7.3352564982034636" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412820" s="186.04379590042993" t="-5.0255947314865477" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848276" s="158.22539348295518" t="-4.5491117343459209" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8987910" type="Barrier" subtype="-1" country="DEU" zOffset="1.0361137984643847" s="158.41229177982538" t="-6.6345435719564962" orientation="-" hOffset="3.1415926535897931" name="" /> - </signals> - </road> - <road name="" length="140.6890909279779" id="33782184" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556302" /> - <successor elementType="road" elementId="4942035" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-474.71945748606237" y="-204.06136603889658" hdg="-0.17859585847700643" length="39.000744180427908"> - <paramPoly3 aU="0" bU="39.436521073540469" cU="-1.6630755993893915" dU="-2.1997298607378601" aV="-0" bV="-0" cV="-13.420403118796724" dV="-0.17616969032477517" /> - </geometry> - <geometry s="39.000744180427908" x="-442.12697680612058" y="-223.76127055199925" hdg="-0.92635627843755453" length="75.868985217461145"> - <paramPoly3 aU="0" bU="76.471805711253225" cU="-4.0644309931908928" dU="-17.685936264813606" aV="-0" bV="-0" cV="-57.201361666866028" dV="13.015284799217929" /> - </geometry> - <geometry s="114.86972939788905" x="-444.57697719662195" y="-294.05239882173851" hdg="3.986154317060405" length="25.819361530088862"> - <paramPoly3 aU="0" bU="27.179012216345207" cU="-3.9093388162295297" dU="2.0121026636329278" aV="0" bV="1.7763568394002505e-15" cV="-7.4455095178462631" dV="2.6623699644028558" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.88685475900633" b="0.0019200906992717468" c="-9.1116780549908399e-05" d="-4.4214704074053195e-06" /> - <elevation s="3.0005175188593469" a="165.8916762493171" b="0.0012538748146260418" c="-0.00052875288241882687" d="2.3647187004353598e-06" /> - <elevation s="10.049220780569851" a="165.87507191400582" b="-0.0058477019233288442" c="-0.00048324028863006653" d="2.8117192748760272e-06" /> - <elevation s="20.098441561139701" a="165.77035959990573" b="-0.014708238705106182" c="-0.00027268489675971318" d="-1.0599533839941209e-05" /> - <elevation s="30.147662341709552" a="165.58425885560709" b="-0.023400020396978319" c="-0.00079318918459187837" d="2.1137567042788654e-05" /> - <elevation s="40.196883122279402" a="165.29045644456326" b="-0.032938038675622984" c="-0.00049949856992967021" d="1.7779358798311466e-05" /> - <elevation s="50.246103902849256" a="164.92705522782964" b="-0.037590737797278409" c="-0.00019375970307478009" d="9.864018287706516e-06" /> - <elevation s="60.295324683419103" a="164.53974081538766" b="-0.0384965978071036" c="-0.00012626842668911106" d="2.3647187004352712e-06" /> - <elevation s="70.34454546398895" a="164.14252836437683" b="-0.040317980006878078" c="0.00068490037070269663" d="-3.7552403919047205e-05" /> - <elevation s="80.393766244558805" a="163.76842035952996" b="-0.037929445557775457" c="-2.2233214411248588e-05" d="-8.3638250123473665e-09" /> - <elevation s="90.442987025128659" a="163.3850052370706" b="-0.038378832427068403" c="3.3869145711982198e-05" d="-8.7004749454127761e-07" /> - <elevation s="100.49220780569851" a="163.00186525649289" b="-0.037961705418175312" c="0.00012886556418100073" d="2.3647187004354373e-06" /> - <elevation s="110.54142858626835" a="162.63579323227222" b="-0.034655292012186457" c="-3.5314856065837434e-05" d="2.0180864143367729e-05" /> - <elevation s="120.59064936683821" a="162.30444854463971" b="-0.029251060591267725" c="0.00028980896155487128" d="2.3647187004443116e-06" /> - <elevation s="130.63987014740806" a="162.04216487827128" b="-0.022709935718506154" c="0.00044103618206251747" d="-2.8677973704788365e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024423546208072671" b="0.00010794810444587617" c="1.0546095308768719e-05" d="0" /> - <superelevation s="10.049220780569851" a="0.026573357364100842" b="0.00031990818470737379" c="4.9798694762639936e-05" d="-3.9060341404545561e-06" /> - <superelevation s="20.098441561139701" a="0.030853202163344109" b="0.00013741022684564402" c="-6.8368597847569996e-06" d="0" /> - <superelevation s="30.147662341709552" a="0.03154363501688414" b="0" c="-4.6012967748438778e-05" d="3.0525065079277785e-06" /> - <superelevation s="40.196883122279402" a="0.02999473363903082" b="0" c="0.00014598902181144321" d="-9.6849314654467247e-06" /> - <superelevation s="50.246103902849256" a="0.034909056885282959" b="0" c="-2.9791041799312157e-05" d="1.9763417449515435e-06" /> - <superelevation s="60.295324683419103" a="0.033906222511657799" b="0" c="0.00010462188306024059" d="-6.9406298819723307e-06" /> - <superelevation s="70.34454546398895" a="0.037428033573955855" b="0" c="-2.6421389074579859e-06" d="0" /> - <superelevation s="80.393766244558805" a="0.037161212319351135" b="-5.3102874427959227e-05" c="-5.1696930365284339e-05" d="2.5799712015893828e-06" /> - <superelevation s="90.442987025128659" a="0.034025115744813518" b="-0.00031050120463027244" c="-7.5089126947351101e-06" d="7.6278379402702713e-07" /> - <superelevation s="100.49220780569851" a="0.030920622003426122" b="-0.00023032527662499567" c="2.8382405172922723e-05" d="-2.0459847393715101e-06" /> - <superelevation s="110.54142858626835" a="0.029395936632512706" b="-0.00027973575498931334" c="-6.6052660408023824e-05" d="5.3052830687914522e-06" /> - <superelevation s="120.59064936683821" a="0.025298369279212113" b="0" c="3.7025879099989905e-05" d="-2.4563018306573181e-06" /> - <superelevation s="130.63987014740806" a="0.026544744767699285" b="0" c="-1.2311223969200024e-05" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.1645967091831233" b="0.11383769384635031" c="-0.0024829146808381451" d="8.6729515709759391e-05" /> - <laneOffset s="3.6286093645365884" a="2.5491208683989242" b="0.099244491024642847" c="0.0034671222853522631" d="-0.00098523895090996084" /> - <laneOffset s="9.0232347888212932" a="3.0307309589841798" b="0.050634920098736887" c="-0.0050023852195850678" d="0.00017714824213012437" /> - <laneOffset s="10.049220780569851" a="3.077607250966174" b="0.040929589610050512" c="-0.0043642289523334599" d="0.00022249117736411212" /> - <laneOffset s="16.455417969780566" a="3.2191994198966301" b="0.012406055309030458" c="-0.0056272221908759351" d="0.001556408602944973" /> - <laneOffset s="18.964277291256735" a="3.2394829604612418" b="0.013560096257704267" c="0.016758381709156472" d="-0.010857500663116968" /> - <laneOffset s="20.304005286563942" a="3.2616205658569655" b="-0" c="-7.8206068589863393e-05" d="-3.6086879496494516e-06" /> - <laneOffset s="22.867078683438105" a="3.2610460411370492" b="-0.00047201593874338034" c="-0.013120697052917237" d="0.0014738749317285515" /> - <laneOffset s="27.342334310632538" a="3.1282569254100001" b="-0.029353046174790624" c="-0.0051916220610614431" d="0.00097053452210696595" /> - <laneOffset s="30.147662341709552" a="3.0264816637719765" b="-0.035567523909788394" c="0.0029677367259428517" d="0.00097372041736777345" /> - <laneOffset s="32.765993790360341" a="2.9711785504033092" b="-0" c="0.00091106929317266206" d="-1.8976828047412853e-05" /> - <laneOffset s="40.196883122279402" a="3.0136995139561527" b="0.010396516090263585" c="0.00049634274289207044" d="-2.0515759361431543e-05" /> - <laneOffset s="50.246103902849256" a="3.1474802904004968" b="0.014156766683078545" c="-0.00011459568172554328" d="-1.8553317852086756e-05" /> - <laneOffset s="54.830401849619207" a="3.2081833328455152" b="0.011936347420824193" c="0.0019235375655075543" d="-0.00028134543349387785" /> - <laneOffset s="60.295324683419103" a="3.2849427812894625" b="0.0077528499669137618" c="-0.0026630071842246687" d="-0.00030036372501247171" /> - <laneOffset s="61.476897855518729" a="3.2898899924428111" b="0.0002017472240009399" c="9.3538244238125361e-06" d="-1.1429916665556159e-06" /> - <laneOffset s="70.34454546398895" a="3.291617536951799" b="9.8002015454015401e-05" c="-6.8257024512890612e-06" d="7.7588424651602391e-08" /> - <laneOffset s="78.719320005935344" a="3.2920051223879869" b="-0" c="-0.008911104622977636" d="0.0011253060058592729" /> - <laneOffset s="80.393766244558805" a="3.2723034771529016" b="-0.020377032880131679" c="-0.0032944232474819953" d="0.001128918052868678" /> - <laneOffset s="82.553024289732306" a="3.2243094746517671" b="-0.018813665992332286" c="-0.0015325628617385632" d="4.0156885056735508e-05" /> - <laneOffset s="90.442987025128659" a="3.0001895361107644" b="-0.035497913297998514" c="-0.00060548658157802654" d="3.9437955087269914e-05" /> - <laneOffset s="100.49220780569851" a="2.6223401688677463" b="-0.035719106794454239" c="0.00057156157347981252" d="3.9096802217077225e-05" /> - <laneOffset s="110.54142858626835" a="2.3607881357965756" b="-0.012386822581042451" c="0.001719332302483929" d="4.4596353998820381e-05" /> - <laneOffset s="113.74447744937046" a="2.3402175796781508" b="-0" c="0.0023587107500130534" d="-0.00017944016206809842" /> - <laneOffset s="120.59064936683821" a="2.3931916584013257" b="0.0070651597666766958" c="-0.0013315882755298592" d="-0.00018255561947339304" /> - <laneOffset s="122.49655704218557" a="2.4005563621543695" b="-0" c="-0.0019498565105603579" d="7.1308555851577971e-05" /> - <laneOffset s="130.63987014740806" a="2.3097619331527848" b="-0.017570414057147293" c="-0.00020669952887762214" d="7.1708195744778946e-05" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="0.12880597674872574" b="-0.024376396487808732" c="0.051064140154928578" d="-0.00023473412547062063" /> - <width sOffset="0.29082252687296339" a="0.12602988742280941" b="0.005265248210097162" c="0.0054339278408457054" d="1.3395579089776853e-05" /> - <width sOffset="3.6286093645365884" a="0.20464070464681772" b="0.041987547103509229" c="0.00056214823601980369" d="0.0010853640457095461" /> - <width sOffset="6.0009864328096896" a="0.32190680790968962" b="0.062980651973857715" c="0.0062874600107414875" d="0.0005130076326281596" /> - <width sOffset="9.0232347888212932" a="0.58384120970742259" b="0.11504259559271193" c="0.003463291657952383" d="-0.00064937956042135099" /> - <width sOffset="9.4956598337886362" a="0.63889469978634983" b="0.11788009087134288" c="0.010281183992580645" d="-0.00027855702026828577" /> - <width sOffset="10.049220780569851" a="0.70725172390792368" b="0.12900654031058706" c="0.0097256877063727973" d="-0.00032389995550468085" /> - <width sOffset="16.109613834462547" a="1.7741943150787742" b="0.21120057438598441" c="0.024556416292267992" d="-0.02135908763287216" /> - <width sOffset="16.455417969780566" a="1.8492815867743886" b="0.22052160385465511" c="0.0079371941057805838" d="-0.022693005058451874" /> - <width sOffset="16.925985827298948" a="1.9524449249386278" b="0.21291656466986933" c="-0.13911601432010817" d="0.29432777092565421" /> - <width sOffset="17.396554280465548" a="2.0525006385139219" b="0.27751246703061166" c="0.43325129397649209" d="-1.2581424729516033" /> - <width sOffset="17.631852317991054" a="2.1253955890762848" b="0.27242702313798561" c="-0.30870548914137491" d="0.63627829477830999" /> - <width sOffset="17.867122275703476" a="2.1806880621435809" b="0.2328265071925095" c="0.026189178233428638" d="-0.0093792391514530577" /> - <width sOffset="18.808258327805042" a="2.4151876827020096" b="0.25719904743915034" c="-0.23987449297836708" d="0.049908079898382141" /> - <width sOffset="18.964277291256735" a="2.44966614743453" b="0.18599368294221177" c="-0.22718584550298343" d="0.062321989164530016" /> - <width sOffset="19.434337654589704" a="2.4933691098975204" b="0.013722952415921513" c="-0.029027325126748993" d="0.01737019276177219" /> - <width sOffset="20.304005286563942" a="2.4947747385540184" b="0.0026470680569636081" c="-0.010510146923137139" d="0.0065163007866029929" /> - <width sOffset="21.24369602560623" a="2.4933885027156091" b="0.00015653865344567849" c="0.00047994500099707565" d="-0.00099053868769113798" /> - <width sOffset="22.867078683438105" a="2.4906697196572245" b="-0.0061165041136952685" c="0.0086706180065518491" d="-0.0024680223073691781" /> - <width sOffset="24.747374703079803" a="2.493417018592166" b="0.00031297718198182445" c="0.0032144949038779361" d="-0.0012729703451505457" /> - <width sOffset="27.342334310632538" a="2.4936311399898883" b="-0.0087198957569661305" c="0.0051634012761842237" d="-0.00076962993552899149" /> - <width sOffset="30.147662341709552" a="2.4928126984628625" b="0.0020795210011800361" c="-0.001305147705924131" d="-0.00077281583078464328" /> - <width sOffset="30.641502586720364" a="2.4934282770514855" b="0.00022503330297669183" c="0.0037149894116529159" d="-0.0015899270879673436" /> - <width sOffset="32.765993790360341" a="2.495428312894592" b="-0.005518272697042359" c="0.0032868668789382662" d="-0.00059722984255216477" /> - <width sOffset="35.382547054864645" a="2.4927938217016541" b="-0.00058428353714221276" c="5.3302339017384666e-05" d="-2.6307918655993511e-07" /> - <width sOffset="40.196883122279402" a="2.4911869611215942" b="-8.9345606108563735e-05" c="5.2064142436705437e-05" d="-2.6393363697777342e-06" /> - <width sOffset="50.246103902849256" a="2.4928683989615084" b="0.00015744781253159389" c="-2.2690835766348802e-05" d="1.9832874480630035e-08" /> - <width sOffset="53.460555609871697" a="2.4931407084859969" b="1.2185402419271144e-05" c="0.0015213427807039361" d="-0.00014336387303474102" /> - <width sOffset="54.830401849619207" a="2.4956436529506498" b="0.003373139006311773" c="-0.0013611116645111086" d="0.00011942824260701812" /> - <width sOffset="60.295324683419103" a="2.4929196011121428" b="-0.00080329131272238643" c="0.00061719233570064341" d="0.00011123840305483207" /> - <width sOffset="61.476897855518729" a="2.4930156254537392" b="0.0011211293620356317" c="-0.0027255648927580946" d="-0.0001879823302807594" /> - <width sOffset="61.714515845503286" a="2.4931256122141519" b="-0.00020599889007090163" c="4.2138760606789292e-05" d="-1.9000413567671943e-06" /> - <width sOffset="70.34454546398895" a="2.4932649846086301" b="9.6788129808906214e-05" c="4.7686649672116509e-06" d="-8.3960201232865362e-07" /> - <width sOffset="78.719320005935344" a="2.4939168568299386" b="0" c="0.0015497339726151761" d="-0.00037985406274725574" /> - <width sOffset="80.393766244558805" a="2.4964786301697059" b="0.001994821931303431" c="-0.00038080451458949015" d="-0.00038173785178359759" /> - <width sOffset="82.553024289732306" a="2.4951674292538546" b="-0.0049891267966584371" c="0.0026973996808304897" d="0.00070702331602820316" /> - <width sOffset="83.276203237371817" a="2.493237510832699" b="2.1572213669648899e-05" c="-1.7845351230451464e-05" d="1.5465076033636474e-06" /> - <width sOffset="90.442987025128659" a="2.4930448059414498" b="4.0835010467962785e-06" c="-7.3682376571506877e-06" d="4.9108426309824781e-07" /> - <width sOffset="100.49220780569851" a="2.4928401183993736" b="4.7725482881233461e-06" c="-3.437821933980202e-06" d="2.2158831418046321e-07" /> - <width sOffset="110.54142858626835" a="2.4927657804937717" b="2.810194808395769e-06" c="-6.7957005766366117e-05" d="3.2495269863600135e-05" /> - <width sOffset="112.20395841668341" a="2.4927319426053733" b="4.6300404004277068e-05" c="0.00070350261452730703" d="-0.00019275904469489322" /> - <width sOffset="113.74447744937046" a="2.4937681019001179" b="0.00084145208568832635" c="-0.00039818986130413583" d="3.1277471372011267e-05" /> - <width sOffset="120.59064936683821" a="2.4909019733160309" b="-0.00021276859616193525" c="0.0002407083375408276" d="3.0530799362429623e-05" /> - <width sOffset="122.49655704218557" a="2.4915821954134838" b="0.0010374750666221255" c="-1.0259241904976612e-05" d="-0.00022333337596276459" /> - <width sOffset="123.72780934611552" a="2.4924271717595174" b="-3.4966557983682686e-06" c="1.2986757507008062e-05" d="-8.1415529593742821e-07" /> - <width sOffset="130.63987014740806" a="2.492754603284753" b="5.9341181273393079e-05" c="-1.8172586892408317e-06" d="-1.7933763976353241e-07" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15449818811100205" weight="standard" type="solid"> - <type name="solid"> - <line length="140.6890909279779" space="0" width="0.154498" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.9983401574098973" b="0.11699938854846287" c="0.0074232301280465172" d="-0.0026675289785973296" /> - <width sOffset="1.8367542070216691" a="4.2217531783671314" b="0.11727063128975759" c="-0.003811788203491079" d="0.00036358472849339432" /> - <width sOffset="3.6286093645365884" a="4.4217382562715564" b="0.10711242003039362" c="0.0031485996768743163" d="-0.00070838373812638091" /> - <width sOffset="7.6159064859927863" a="4.8539794321265974" b="0.098434426837835667" c="-0.0033155740909786621" d="-0.0019806866196430549" /> - <width sOffset="9.0232347888212932" a="4.9804214503825106" b="0.077333541285699983" c="-0.0042025253317639188" d="-0.00081829942660286152" /> - <width sOffset="10.049220780569851" a="5.0544570392025472" b="0.066125935108792083" c="-0.0065595809879270134" d="-0.00079605608057882883" /> - <width sOffset="11.239914724822054" a="5.1225491009007866" b="0.047119197924923736" c="-0.0052961734046894932" d="8.0719661901707527e-05" /> - <width sOffset="14.477081859119231" a="5.2223201491993194" b="0.015367645765043462" c="-0.0028983423319774168" d="0.00031596782799235763" /> - <width sOffset="16.455417969780566" a="5.2438254336870695" b="0.0076097728773602104" c="-0.0065620309439091739" d="0.0016498852535732291" /> - <width sOffset="18.964277291256735" a="5.247667894806991" b="0.0058383378233678243" c="0.016527132254929074" d="-0.010764024012488507" /> - <width sOffset="20.098441561139701" a="5.2598451317480244" b="0.0017890880707318989" c="-0.020080735852277626" d="-0.010763036651988259" /> - <width sOffset="20.304005286563942" a="5.259270870883924" b="-0.0078310766771211935" c="8.3499429142486596e-05" d="9.0855323193399326e-05" /> - <width sOffset="22.867078683438105" a="5.241277579109668" b="-0.0056124663919043744" c="-0.012232636973416406" d="0.0015683389428715799" /> - <width sOffset="25.021021651886095" a="5.1881083438147488" b="-0.036480485290188935" c="-0.0003130348090519962" d="0.0013939887922782084" /> - <width sOffset="27.342334310632538" a="5.1191754814217116" b="-0.015399294331840339" c="-0.0024642095741949531" d="0.00089064838265665871" /> - <width sOffset="30.147662341709552" a="5.076245749475909" b="-0.0081972781486848306" c="0.0050228287339830011" d="0.0008938342777516249" /> - <width sOffset="30.312260995032396" a="5.0750365565941582" b="-0.0064711272611944932" c="0.0098612424108340223" d="0.00019627466389110222" /> - <width sOffset="32.765993790360341" a="5.1214304064882867" b="0.045467774766924082" c="0.0016008233441462839" d="-0.00079642258152406401" /> - <width sOffset="35.426687277161875" a="5.2387376384276862" b="0.037072056410514656" c="-0.00082393019309905222" d="-6.411703163320068e-06" /> - <width sOffset="38.373265118039157" a="5.3406556805024223" b="0.032049502117153655" c="0.00026063847899863215" d="-0.00022866681808923027" /> - <width sOffset="40.196883122279402" a="5.3985817333517279" b="0.030718760971232377" c="-0.00096610390839722555" d="-0.00023769728070698379" /> - <width sOffset="43.971354725783051" a="5.487983273626746" b="0.013266537606945926" c="-0.00060607618738471613" d="-2.2391800271607987e-05" /> - <width sOffset="50.246103902849256" a="5.5418328002421351" b="0.0030157235515429325" c="-0.0010200212170542124" d="-2.0429358789185875e-05" /> - <width sOffset="50.579546983712646" a="5.5427242046707299" b="0.0023286712460743562" c="-0.0091232470746488992" d="0.00070897740248714015" /> - <width sOffset="54.830401849619207" a="5.4422260404279328" b="-0.036801357587025289" c="0.0022113281069303195" d="0.00044618528684533241" /> - <width sOffset="57.919039613868769" a="5.3628020298495729" b="-0.010371975679718936" c="0.00061676477667229332" d="-0.00022484455529102234" /> - <width sOffset="60.295324683419103" a="5.3386209448793611" b="-0.011249667799954339" c="-0.00095019434525720013" d="-0.00024756957796604915" /> - <width sOffset="61.476897855518729" a="5.3235936646795956" b="-0.014532023016848876" c="0.0019093071067730334" d="5.165115537988183e-05" /> - <width sOffset="64.873449977394955" a="5.2982856663413047" b="0.00022573013090796106" c="0.0052866875927598716" d="-0.0005466328847684341" /> - <width sOffset="70.34454546398895" a="5.3682467693526599" b="0.0089867762051536199" c="-0.0036711271182124899" d="-0.00054541230465653882" /> - <width sOffset="70.6112194699827" a="5.3703718931784117" b="0.0069124268250870171" c="-0.0044687439880640532" d="0.0017917307303412335" /> - <width sOffset="72.562122210112875" a="5.3801531491091943" b="0.0099343540960255793" c="0.0067211506964191875" d="-0.0016410074977991332" /> - <width sOffset="74.53926636721846" a="5.4133853383061297" b="0.017267139358511843" c="0.00063644296755552743" d="-8.2952704308219372e-05" /> - <width sOffset="78.719320005935344" a="5.4906247250489546" b="0.018239610757390775" c="-0.0093100255701163408" d="0.0010422757131268597" /> - <width sOffset="79.422035509095522" a="5.4992062844291247" b="0.006699067779468949" c="-0.0072625014835379703" d="0.001158543184695496" /> - <width sOffset="80.393766244558805" a="5.4999213213936926" b="-0.0041334239109036067" c="-0.0039212372716864348" d="0.0011621552317048253" /> - <width sOffset="82.553024289732306" a="5.4844136166129314" b="-0.0048120688725504842" c="-0.0019440739485405293" d="7.3394063892883086e-05" /> - <width sOffset="90.442987025128659" a="5.3614734131142923" b="-0.02178273655025895" c="-0.00025057975668367797" d="7.3908907001006159e-05" /> - <width sOffset="96.107694358330662" a="5.2434744928773291" b="-0.017506689909722623" c="0.0030985416453199939" d="-0.00047992616311958087" /> - <width sOffset="100.49220780569851" a="5.1858305365762476" b="-0.018013736341166962" c="-0.0032261005008661281" d="-0.00048026731598820092" /> - <width sOffset="101.22779748535314" a="5.1706430434173507" b="-0.023539515471481781" c="-4.685966967814053e-05" d="5.8731613181022055e-05" /> - <width sOffset="110.54142858626835" a="4.9947891121491619" b="-0.0091285862436916165" c="0.0015507035472419372" d="6.4546389773002477e-05" /> - <width sOffset="113.74447744937046" a="4.9835803888941852" b="0.0027920175457627596" c="0.0023817848129870541" d="-0.00015949012629391638" /> - <width sOffset="120.59064936683821" a="5.0631521612582695" b="0.012978294031486891" c="-0.00090234319449007021" d="-0.00016392066840151807" /> - <width sOffset="122.49655704218557" a="5.0834749920165097" b="0.0077524107424986888" c="-0.0014140619406878259" d="8.9943506923449441e-05" /> - <width sOffset="125.35602467322329" a="5.096183536862271" b="0.0018717661767734782" c="0.011888513183698402" d="-0.001564387898481596" /> - <width sOffset="130.63987014740806" a="5.20721113799409" b="-0.0035226457950022494" c="-0.012908345278600897" d="-0.0015639882586947808" /> - <width sOffset="130.72290665869349" a="5.2068287304842755" b="-0.0056987251007980938" c="-0.00078896231843530974" d="7.1900826904649991e-05" /> - <roadMark sOffset="0" color="standard" width="0.28648685363082366" weight="bold" type="solid"> - <type name="solid"> - <line length="140.6890909279779" space="0" width="0.28648699999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - <speed sOffset="41.654061611140939" max="60" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="2.4934418833868275" b="0.0041020546980062196" c="-0.0078508866987739012" d="0.0024358346155123351" /> - <width sOffset="1.8367542070216691" a="2.4895839611596209" b="-8.5166251395592946e-05" c="0.0021074348443449859" d="-0.00059527909157836988" /> - <width sOffset="4.1660947003149964" a="2.4932966634790068" b="4.305604680073568e-05" c="0.00093112724300878488" d="-0.00018294198535684115" /> - <width sOffset="7.6159064859927863" a="2.4970156998852628" b="-6.4204692329032642e-05" c="-0.0029716545604282401" d="0.001089360896159538" /> - <width sOffset="9.4313407734958936" a="2.4936231418614696" b="-8.2939527210765251e-05" c="-0.002664000860693805" d="0.0010754169435675085" /> - <width sOffset="10.049220780569851" a="2.4928085261797439" b="-0.0021433010891060561" c="-0.00073929914209686651" d="0.0010985165327773451" /> - <width sOffset="11.239914724822054" a="2.4910627830930845" b="0.00076841314905340408" c="-0.00092229323890873245" d="0.00022174079029680738" /> - <width sOffset="14.477081859119231" a="2.4914074546323106" b="0.0017682106589051428" c="-0.00038277920577527006" d="-1.3507375793817632e-05" /> - <width sOffset="16.562182695100525" a="2.4933077157317274" b="-4.2316696196101344e-06" c="-4.8931349364581098e-05" d="9.3186409090397149e-06" /> - <width sOffset="20.098441561139701" a="2.4930929417505006" b="-7.0714804551071098e-07" c="7.3815132925000092e-05" d="1.5364610952131426e-05" /> - <width sOffset="25.021021651886095" a="2.4967108700341729" b="0.001842950956427291" c="-0.0014845485330901771" d="0.00018971476154550256" /> - <width sOffset="30.312260995032396" a="2.4930034789982569" b="0.0020672019585437455" c="-0.0028701118238917194" d="0.00088727437557800637" /> - <width sOffset="30.834512376207783" a="2.4934266504556324" b="-0.00020463481464901012" c="-0.00027868832198759547" d="7.2710685998934334e-05" /> - <width sOffset="35.426687277161875" a="2.4936512432936824" b="0.0018357783288011631" c="-0.0032093433491754853" d="-0.00071730019232907371" /> - <width sOffset="35.688473045813282" a="2.4938990130648691" b="7.9839021833796875e-06" c="0.00045970719563259406" d="-6.3924213876331243e-05" /> - <width sOffset="38.373265118039157" a="2.4959969887082791" b="0.0010941023682933607" c="-0.0011964088917701789" d="0.00015833090104957711" /> - <width sOffset="40.196883122279402" a="2.4949736692335591" b="-0.0016898557418609239" c="-0.00031254323820075988" d="0.00015632220941310795" /> - <width sOffset="43.971354725783051" a="2.4925486628688271" b="0.0026319698982761072" c="-0.001594014646709259" d="-5.898327102364055e-05" /> - <width sOffset="44.495244413717487" a="2.4934815498256051" b="0.00091322850924137073" c="-2.9725563847133999e-05" d="-1.8784857820922434e-05" /> - <width sOffset="50.579546983712646" a="2.4937065318752731" b="-0.0015346653165570524" c="0.00039207528150335749" d="-2.511728177685853e-05" /> - <width sOffset="57.919039613868769" a="2.4936327462546402" b="0.00016153729868313357" c="-0.00037684524961543672" d="5.1799780043896849e-05" /> - <width sOffset="60.295324683419103" a="2.4925837232540844" b="-0.00075194795208350859" c="9.4316831666853979e-07" d="4.8815416952249277e-05" /> - <width sOffset="64.873449977394955" a="2.4938450132585341" b="0.0023260887645255093" c="-0.0021796805082052355" d="0.00064709945710001153" /> - <width sOffset="66.168750005119904" a="2.4946072369766341" b="-6.3477076780530869e-05" c="-0.00042974343421341285" d="8.5564144330270279e-05" /> - <width sOffset="70.6112194699827" a="2.49334581998255" b="0.0011842412365073969" c="0.0010718798784479476" d="-0.0022515788906872021" /> - <width sOffset="71.129447681446521" a="2.4939340268933909" b="0.00048114270390626785" c="0.0041213151778615601" d="-0.0019189907178990991" /> - <width sOffset="72.562122210112875" a="2.4974395085210608" b="0.00047363977146904802" c="-0.0048299696992702111" d="0.0015137475102414823" /> - <width sOffset="74.53926636721846" a="2.4911946637198419" b="-0.000873286251100832" c="0.00049990400709465637" d="-4.4307283249429697e-05" /> - <width sOffset="79.422035509095522" a="2.4936911279652265" b="0.00083949789494018254" c="6.2312082851521348e-07" d="-0.00016057475481870892" /> - <width sOffset="80.729607972849593" a="2.4944309141092686" b="1.7501433365933045e-05" c="-1.069026116057943e-05" d="7.115886480640971e-07" /> - <width sOffset="90.442987025128659" a="2.4942444276560662" b="1.1238911751261516e-05" c="-1.9091262699011142e-05" d="2.7091936716281976e-06" /> - <width sOffset="95.37465909914981" a="2.4941604828004533" b="2.0609280644495048e-05" c="0.0017319278266206299" d="-0.00039558263248656064" /> - <width sOffset="96.107694358330662" a="2.4949504095116088" b="0.0019220496716777433" c="-0.0012311046455482371" d="0.0001582524376340946" /> - <width sOffset="100.49220780569851" a="2.4930496924140177" b="0.00025317464883765559" c="0.00072825265543531494" d="0.00021834418801284551" /> - <width sOffset="101.22779748535314" a="2.4937168826387714" b="0.0016789979198369321" c="-0.0030289920251447078" d="-0.00032065474115781906" /> - <width sOffset="101.4931577310746" a="2.4939431406215311" b="3.7120531803207235e-06" c="-3.9431256962085002e-06" d="2.8038554681053914e-07" /> - <width sOffset="110.54142858626835" a="2.4938616074362407" b="1.2216226902097595e-06" c="-8.3412613833730692e-06" d="5.5040478653074074e-07" /> - <width sOffset="120.59064936683821" a="2.4935900984397104" b="3.2618575551094514e-07" c="8.2187014883428858e-06" d="-7.6664319304877863e-06" /> - <width sOffset="121.66261572515756" a="2.4935904487254104" b="-8.4822351069128651e-06" c="-0.00064343603337720285" d="0.00016354932839013182" /> - <width sOffset="125.35602467322329" a="2.4930219069680186" b="0.0019316344312201878" c="-0.0010548645884190869" d="0.00012977186896423725" /> - <width sOffset="130.72290665869349" a="2.4930657791456277" b="0.0018225887301032678" c="-0.0003681818233698921" d="1.8512146381418632e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276670258" type="poles" s="41.536946471999883" t="-7.2424541344463922" zOffset="-2.0609234519801247" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.8390765480198752" name="SgPoleSign01.flt" /> - <object id="276670302" type="poles" s="41.654061611140939" t="5.2282725984369955" zOffset="-1.663550465544398" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.2364495344556019" name="SgPoleSign01.flt" /> - <object id="277423230" type="poles" s="119.30651817163132" t="6.1951763249216985" zOffset="-2.2284389497467543" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.6715610502532456" name="SgPoleSign01.flt" /> - <object id="5177022" s="86.748517256510809" t="-11.468699373799462" orientation="none" validLength="1.8024273177783243" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.8024273177783243" s="86.748517256510809" distance="0" tStart="-11.468699373799462" tEnd="-11.222068425271289" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273612478" s="88.550944574289133" t="-11.222068425271289" orientation="none" validLength="2.4032355624217985" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.4032355624217985" s="88.550944574289133" distance="0" tStart="-11.222068425271289" tEnd="-10.735631640914091" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542047934" s="90.954180136710931" t="-10.735631640914091" orientation="none" validLength="1.7173722369971642" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.7173722369971642" s="90.954180136710931" distance="0" tStart="-10.735631640914091" tEnd="-10.265359336876136" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810483390" s="92.671552373708096" t="-10.265359336876136" orientation="none" validLength="2.565977030747149" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.565977030747149" s="92.671552373708096" distance="0" tStart="-10.265359336876136" tEnd="-9.422060902443409" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078918846" s="95.237529404455245" t="-9.422060902443409" orientation="none" validLength="6.4176110846594554" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.4176110846594554" s="95.237529404455245" distance="0" tStart="-9.422060902443409" tEnd="-8.3719853863022351" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742242" s="101.6551404891147" t="-8.3719853863022351" orientation="none" validLength="6.7743149055655465" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.7743149055655465" s="101.6551404891147" distance="0" tStart="-8.3719853863022351" tEnd="-7.0721207141765836" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742243" s="108.42945539468025" t="-7.0721207141765836" orientation="none" validLength="3.0992134772387203" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="3.0992134772387203" s="108.42945539468025" distance="0" tStart="-7.0721207141765836" tEnd="-6.5998856105805208" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742244" s="111.52866887191897" t="-6.5998856105805208" orientation="none" validLength="2.2815380553743978" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="2.2815380553743978" s="111.52866887191897" distance="0" tStart="-6.5998856105805208" tEnd="-6.3867365904468265" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742245" s="113.81020692729336" t="-6.3867365904468265" orientation="none" validLength="4.6100986103413391" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.6100986103413391" s="113.81020692729336" distance="0" tStart="-6.3867365904468265" tEnd="-6.2929489420511979" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742246" s="118.4203055376347" t="-6.2929489420511979" orientation="none" validLength="22.268785390343197" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="22.268785390343197" s="118.4203055376347" distance="0" tStart="-6.2929489420511979" tEnd="-6.4538264341808862" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5177073" s="34.619086889803597" t="3.584363406910462" orientation="none" validLength="11.15578551306168" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="11.15578551306168" s="34.619086889803597" distance="0" tStart="3.584363406910462" tEnd="3.5910152955965859" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="273612529" s="45.774872402865277" t="3.5910152955965859" orientation="none" validLength="7.8396958390172529" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="7.8396958390172529" s="45.774872402865277" distance="0" tStart="3.5910152955965859" tEnd="3.8957237700518474" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="542047985" s="53.61456824188253" t="3.8957237700518474" orientation="none" validLength="4.7007492132610693" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="4.7007492132610693" s="53.61456824188253" distance="0" tStart="3.8957237700518474" tEnd="3.9793341750223203" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="810483441" s="58.3153174551436" t="3.9793341750223203" orientation="none" validLength="22.515295838441531" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="22.515295838441531" s="58.3153174551436" distance="0" tStart="3.9793341750223203" tEnd="3.9809048658984185" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1078918897" s="80.830613293585131" t="3.9809048658984185" orientation="none" validLength="10.519453702828699" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="10.519453702828699" s="80.830613293585131" distance="0" tStart="3.9809048658984185" tEnd="3.7621616352083942" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742247" s="91.35006699641383" t="3.7621616352083942" orientation="none" validLength="4.2203712498311177" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="4.2203712498311177" s="91.35006699641383" distance="0" tStart="3.7621616352083942" tEnd="3.5455611223529218" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742248" s="95.570438246244947" t="3.5455611223529218" orientation="none" validLength="12.285821626778528" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="12.285821626778528" s="95.570438246244947" distance="0" tStart="3.5455611223529218" tEnd="3.209917004109534" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742249" s="107.85625987302348" t="3.209917004109534" orientation="none" validLength="15.57655510332205" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="15.57655510332205" s="107.85625987302348" distance="0" tStart="3.209917004109534" tEnd="3.1890652239778019" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742250" s="123.43281497634553" t="3.1890652239778019" orientation="none" validLength="10.680872240913658" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="10.680872240913658" s="123.43281497634553" distance="0" tStart="3.1890652239778019" tEnd="2.8634072302941429" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="1073742251" s="134.11368721725918" t="2.8634072302941429" orientation="none" validLength="6.5754037107187173" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="6.5754037107187173" s="134.11368721725918" distance="0" tStart="2.8634072302941429" tEnd="2.8305986075583585" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - <object id="5177120" s="25.021877532171608" t="3.904523761875446" orientation="none" validLength="1.8574857844382286" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="1.8574857844382286" s="25.021877532171608" distance="0" tStart="3.904523761875446" tEnd="3.7472480493354641" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="273612576" s="26.879363316609837" t="3.7472480493354641" orientation="none" validLength="2.4714010453511506" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="2.4714010453511506" s="26.879363316609837" distance="0" tStart="3.7472480493354641" tEnd="3.6711987286052361" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="542048032" s="29.350764361960987" t="3.6711987286052361" orientation="none" validLength="2.8897490521257403" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="2.8897490521257403" s="29.350764361960987" distance="0" tStart="3.6711987286052361" tEnd="3.8766172680407318" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="810483488" s="32.240513414086728" t="3.8766172680407318" orientation="none" validLength="0.92479906032608028" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="0.92479906032608028" s="32.240513414086728" distance="0" tStart="3.8766172680407318" tEnd="3.8282056226424723" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="1078918944" s="33.165312474412808" t="3.8282056226424723" orientation="none" validLength="1.4537744153907894" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_DBL_FULL" width="0.54000000000000004" height="0.75" zOffset="0.22"> - <repeat length="1.4537744153907894" s="33.165312474412808" distance="0" tStart="3.8282056226424723" tEnd="3.584363406910462" zOffsetStart="0.22" zOffsetEnd="0.22" heightStart="0.75" heightEnd="0.75" /> - </object> - <object id="33782180" s="0" t="-5.354405809044148" orientation="none" validLength="5.5178764410790171" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.5178764410790171" s="0" distance="0" tStart="-5.354405809044148" tEnd="-5.678715592624763" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="302217636" s="5.5178764410790171" t="-5.678715592624763" orientation="none" validLength="15.528478029556975" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.528478029556975" s="5.5178764410790171" distance="0" tStart="-5.678715592624763" tEnd="-5.7467436851760274" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="570653092" s="21.046354470635993" t="-5.7467436851760274" orientation="none" validLength="10.685369846118146" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.685369846118146" s="21.046354470635993" distance="0" tStart="-5.7467436851760274" tEnd="-5.9687606558281212" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="839088548" s="31.731724316754139" t="-5.9687606558281212" orientation="none" validLength="10.624837917136432" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="10.624837917136432" s="31.731724316754139" distance="0" tStart="-5.9687606558281212" tEnd="-5.99882121661435" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1107524004" s="42.356562233890571" t="-5.99882121661435" orientation="none" validLength="12.296172226913811" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.296172226913811" s="42.356562233890571" distance="0" tStart="-5.99882121661435" tEnd="-5.6460399143181874" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742252" s="54.652734460804382" t="-5.6460399143181874" orientation="none" validLength="9.2050759803629916" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.2050759803629916" s="54.652734460804382" distance="0" tStart="-5.6460399143181874" tEnd="-5.574800422241176" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742253" s="63.857810441167373" t="-5.574800422241176" orientation="none" validLength="19.433682022072873" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.433682022072873" s="63.857810441167373" distance="0" tStart="-5.574800422241176" tEnd="-5.6702671700737737" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742254" s="83.291492463240246" t="-5.6702671700737737" orientation="none" validLength="4.6604583277498079" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.6604583277498079" s="83.291492463240246" distance="0" tStart="-5.6702671700737737" tEnd="-5.790239935273422" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412807" s="33.035766872922501" t="3.8851003416047871" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848263" s="56.397450612217582" t="4.0421958046528204" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283719" s="79.694500605523046" t="4.1135637073986411" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719175" s="103.09604221495582" t="3.4095850246563781" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154631" s="125.82507922448988" t="3.280516843427784" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="33782183" s="29.967372651230225" t="-6.0717536669422749" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="302217639" s="52.206262101340897" t="-5.6233125552166499" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="570653095" s="78.858998258553811" t="-5.6138315744455722" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="839088551" s="101.91300539358753" t="-8.6152156144595953" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1107524007" s="128.5889085435943" t="-6.548307413664487" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8234802" type="274" subtype="56" value="60" unit="km/h" country="DEU" zOffset="1.8390765480198752" s="41.536946471999883" t="-7.2424541344463922" orientation="+" name="Sg274Hoechstgeschw60_03.flt" height="0.76000000000000001" /> - <signal dynamic="no" id="8234846" type="274" subtype="56" value="60" unit="km/h" country="DEU" zOffset="2.2364495344556019" s="41.654061611140939" t="5.2282725984369955" orientation="+" name="Sg274Hoechstgeschw60_03.flt" height="0.76000000000000001" /> - <signal dynamic="no" id="8987762" type="531" subtype="20" country="DEU" zOffset="1.6715610502532456" s="119.30597507793487" t="6.1824367152628525" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8987774" type="1004" subtype="32" country="DEU" zOffset="1.3452672565325656" s="119.30651817163132" t="6.1951763249216985" orientation="-" hOffset="3.1415926535897931" name="Sg1004-33nach400m03.flt" height="0.40999999999999998" /> - </signals> - </road> - <road name="" length="302.16145909041006" id="33782205" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556302" /> - <successor elementType="junction" elementId="33554492" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-474.14167530850881" y="-197.98828626833719" hdg="-0.093198049580967002" length="99.006919862107225"> - <paramPoly3 aU="0" bU="111.30898237062527" cU="-40.816384391199314" dU="28.436463256830621" aV="-0" bV="1.4210854715202004e-14" cV="1.0309568433488718" dV="2.1176986420291266" /> - </geometry> - <geometry s="99.006919862107225" x="-375.34892205346142" y="-204.05994936339846" hdg="-0.020145123873785087" length="104.00240456626004"> - <paramPoly3 aU="0" bU="84.20276486755408" cU="13.875711378642691" dU="5.9104617074174239" aV="-0" bV="5.773159728050814e-15" cV="2.1949061335841122" dV="-3.0953889894377462" /> - </geometry> - <geometry s="203.00932442836728" x="-271.39922320618075" y="-207.05497785307369" hdg="-0.057882784482820027" length="99.152134662042783"> - <paramPoly3 aU="0" bU="87.233725023962677" cU="24.296125639166586" dU="-12.38660798599847" aV="-0" bV="-3.5527136788005009e-15" cV="-2.6623498370565133" dV="1.3987685953245717" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="166.03157531440914" b="0.0036264276962890626" c="7.4053804557310874e-05" d="-1.8298274169157522e-07" /> - <elevation s="10.072048636347002" a="166.07542637852134" b="0.0050624860471827661" c="0.00025322405462749293" d="-1.85207896787293e-05" /> - <elevation s="10.999948197369498" a="166.08032708578818" b="0.0054845799593695758" c="0.00014961623719880567" d="-1.8321354922918935e-05" /> - <elevation s="20.144097272694005" a="166.12898076736772" b="0.0036249606272665473" c="-0.00014882921329825022" d="4.4979559358109907e-06" /> - <elevation s="30.216145909041007" a="166.15498927393293" b="0.0019958316005515577" c="-0.00012347203525758007" d="6.5112369031924943e-06" /> - <elevation s="40.288194545388009" a="166.16921861363491" b="0.0014902189268210305" c="1.3038134253622989e-06" d="6.6704917899359656e-07" /> - <elevation s="50.360243181735015" a="166.18504200931815" b="0.0017194918119772947" c="5.726707797019314e-05" d="-4.1892917327770807e-06" /> - <elevation s="60.432291818082014" a="166.20388984432071" b="0.0015981226759867581" c="5.4960298552683121e-06" d="-3.205608144521803e-06" /> - <elevation s="70.504340454429013" a="166.21726836832269" b="0.00073324528992649968" c="-0.0002396187435862174" d="1.7957826516099256e-05" /> - <elevation s="80.576389090776019" a="166.21869402913151" b="0.0013715998378847998" c="3.0083585664975687e-05" d="1.645201115986714e-08" /> - <elevation s="90.648437727123024" a="166.23557752394817" b="0.0019826134940850735" c="0.00016532582172940126" d="-1.1582184684288154e-05" /> - <elevation s="100.72048636347003" a="166.26048383697258" b="0.0017880483170878783" c="-1.4227483808677939e-05" d="1.6452011159858967e-08" /> - <elevation s="110.79253499981702" a="166.27706663311736" b="0.0015064554795537661" c="-9.6762780417741206e-05" d="4.1646955207055937e-06" /> - <elevation s="120.86458363616403" a="166.28667887694741" b="0.0008247337695164792" c="-1.251828042089859e-05" d="-1.8921079662454585e-09" /> - <elevation s="130.93663227251102" a="166.29371377076032" b="0.00057198846974740487" c="-9.0084022324632906e-05" d="7.7302087014331754e-06" /> - <elevation s="141.00868090885803" a="166.29823468868662" b="0.0011099272141706176" c="0.00021536199069830891" d="-1.3202536625472096e-05" /> - <elevation s="151.08072954520503" a="166.31777161231602" b="0.0014301600270450569" c="-2.9994721201169234e-05" d="1.6452011159855778e-08" /> - <elevation s="161.15277818155204" a="166.32915021445095" b="0.00083095042575494595" c="-0.00020619456921975313" d="1.3238995797560114e-05" /> - <elevation s="171.22482681789904" a="166.33012915746198" b="0.00070648297230794751" c="4.6907942298636428e-05" d="-9.3759210116754054e-07" /> - <elevation s="181.29687545424605" a="166.34104551498169" b="0.0013660557594043356" c="7.6720266284140595e-05" d="-4.8021868546045142e-06" /> - <elevation s="191.36892409059305" a="166.35768073792508" b="0.001450025964433914" c="-4.3395792985226034e-05" d="2.3542133202305398e-06" /> - <elevation s="201.44097272694006" a="166.37028859942293" b="0.001292334619152949" c="1.0708474327723173e-05" d="-6.3039352823469934e-07" /> - <elevation s="211.51302136328704" a="166.38374727256792" b="0.0013161941524083057" c="1.8569024113141623e-05" d="-2.0083151060360746e-06" /> - <elevation s="221.58506999963404" a="166.39683576282451" b="0.001079042791179618" c="-6.8641140790076275e-05" d="4.674906036119802e-06" /> - <elevation s="231.65711863598105" a="166.40551723588055" b="0.0011190828237245889" c="5.5589678491510811e-05" d="-2.9514994922558936e-06" /> - <elevation s="241.72916727232806" a="166.41941229644755" b="0.0013406318123681293" c="5.736183158717413e-05" d="-6.0460425930714261e-06" /> - <elevation s="251.80121590867506" a="166.43255667388149" b="0.00065609064710090608" c="-5.0386874617598772e-05" d="1.9426194281264315e-06" /> - <elevation s="261.87326454502204" a="166.43603820725986" b="0.00023230640926646866" c="-1.0953612698736197e-05" d="3.0245801424994223e-09" /> - <elevation s="271.94531318136904" a="166.43726989715253" b="1.2576265732788709e-05" c="-7.0497571190198966e-05" d="4.619185822143635e-06" /> - <elevation s="282.01736181771605" a="166.43496460647117" b="-1.7376221330816445e-06" c="8.9167853054887019e-06" d="-3.1483419501144627e-07" /> - <elevation s="292.08941045406306" a="166.4355299903643" b="8.2066804532832428e-05" c="2.7404401143856059e-06" d="1.6452011073442717e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.024006256333356183" b="-0.00013448435238930058" c="6.6761171061061751e-06" d="0" /> - <superelevation s="10.072048636347002" a="0.023328989864309851" b="0" c="1.5196364260416594e-05" d="-6.643754773785957e-07" /> - <superelevation s="20.144097272694005" a="0.02419176332789625" b="0.0001039220094782246" c="5.6851390583654558e-06" d="-3.8443212296284372e-07" /> - <superelevation s="30.216145909041007" a="0.025422404932013035" b="0.00010144651140786016" c="-2.4592940402110741e-06" d="3.9753086320465016e-08" /> - <superelevation s="40.288194545388009" a="0.026235311721671647" b="6.4004647350961091e-05" c="-5.1792833152114934e-06" d="3.495594034389812e-07" /> - <superelevation s="50.360243181735015" a="0.026711720774155272" b="6.605704187347716e-05" c="6.0842793138022022e-06" d="-4.1918026371696159e-07" /> - <superelevation s="60.432291818082014" a="0.027565971198717391" b="6.1046667205005137e-05" c="-1.0181880239007064e-06" d="-1.3319441931245905e-07" /> - <superelevation s="70.504340454429013" a="0.027941450776506675" b="0" c="-3.9452527875329285e-05" d="2.232027690112814e-06" /> - <superelevation s="80.576389090776019" a="0.02621976365837211" b="-0.00011544361965138425" c="5.0671836957599294e-06" d="4.3930619267783893e-08" /> - <superelevation s="90.648437727123024" a="0.0256159432727373" b="0" c="3.845523729040601e-05" d="-2.5453436322532293e-06" /> - <superelevation s="100.72048636347003" a="0.026916322038921157" b="0" c="-9.998115777902517e-06" d="6.6177306715421197e-07" /> - <superelevation s="110.79253499981702" a="0.026578231875512493" b="0" c="1.8498225310911235e-06" d="-1.2243934330074199e-07" /> - <superelevation s="120.86458363616403" a="0.026640784341967812" b="0" c="-5.6050438358027158e-06" d="1.8936731307775387e-07" /> - <superelevation s="130.93663227251102" a="0.026265664118381247" b="-5.5276785901668136e-05" c="-1.0859368091932691e-05" d="9.0040846291287237e-07" /> - <superelevation s="141.00868090885803" a="0.025527283389842729" b="0" c="3.8422522683155206e-05" d="-2.5431782596508301e-06" /> - <superelevation s="151.08072954520503" a="0.026826555898892046" b="0" c="-1.6340513850825933e-05" d="6.7369539983520841e-07" /> - <superelevation s="161.15277818155204" a="0.025857235672268664" b="-0.00012413345898340978" c="-2.063313375511852e-05" d="1.7735821396131087e-06" /> - <superelevation s="171.22482681789904" a="0.024325999426334267" b="0" c="4.2225361879479253e-05" d="-2.7948873431171142e-06" /> - <superelevation s="181.29687545424605" a="0.025753866417970363" b="0" c="-4.1015894903696502e-05" d="2.7148329920808384e-06" /> - <superelevation s="191.36892409059305" a="0.024366898021285884" b="0" c="8.8692192486071289e-07" d="0" /> - <superelevation s="201.44097272694006" a="0.024456872848093635" b="1.7866241527678521e-05" c="7.4513612786935326e-05" d="-4.9907446792699988e-06" /> - <superelevation s="211.51302136328704" a="0.027096546004876054" b="0" c="-1.8188334720435423e-05" d="9.3279869194792061e-07" /> - <superelevation s="221.58506999963404" a="0.026204515590646977" b="-8.2501037337107447e-05" c="-6.3849294631942699e-06" d="6.9370021744985969e-07" /> - <superelevation s="231.65711863598105" a="0.025434637083659201" b="0" c="1.3546812909348372e-05" d="-6.8836636929352511e-07" /> - <superelevation s="241.72916727232806" a="0.026105556700491524" b="6.3391934758099907e-05" c="5.334728586391835e-06" d="-5.613986770217066e-07" /> - <superelevation s="251.80121590867506" a="0.026711610383730638" b="0" c="-2.1023682103896124e-05" d="1.1064195296164601e-06" /> - <superelevation s="261.87326454502204" a="0.025709345538585757" b="-8.6777047054701863e-05" c="-4.8232086889708988e-06" d="6.0438044273430544e-07" /> - <superelevation s="271.94531318136904" a="0.024963565106823581" b="0" c="7.3674424267795239e-06" d="-4.0763297508140727e-07" /> - <superelevation s="282.01736181771605" a="0.025294456449253541" b="2.4352072296858397e-05" c="-3.0398077721751269e-06" d="2.1801442552937613e-07" /> - <superelevation s="292.08941045406306" a="0.025454115619963174" b="2.9468070169058928e-05" c="1.3518960225391306e-06" d="1.0611012604849447e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.5488851244632991" b="0.021025194910751204" c="-0.0050131033994100663" d="0.0040446530690940756" /> - <laneOffset s="0.58841186702148907" a="3.560344916095445" b="0.019326778650918312" c="-0.00028930077233127948" d="1.6119628556146959e-06" /> - <laneOffset s="10.935426555218978" a="3.7311322977164378" b="0.013857713647431878" c="-0.00040926009416974237" d="2.8727613719980128e-05" /> - <laneOffset s="16.301453384216828" a="3.7981475492421" b="0.011947082107624456" c="0.00037880544632933554" d="-5.4564456717779679e-05" /> - <laneOffset s="20.144097272694005" a="3.8465533441875053" b="0.012441229066693761" c="-0.00023514714123629119" d="-5.4095651066821864e-05" /> - <laneOffset s="25.149474945946189" a="3.8961512655964863" b="0.0060213227800253412" c="-0.00015767863784601753" d="-9.310336389684763e-07" /> - <laneOffset s="30.216145909041007" a="3.922490437162689" b="0.0043518091026897472" c="-0.00016231291264529892" d="-1.6214566005199571e-07" /> - <laneOffset s="40.288194545388009" a="3.949690372105116" b="0.001032814836214011" c="-0.00015966948574354373" d="-1.0843234230203075e-06" /> - <laneOffset s="43.422359290526892" a="3.9513255694883429" b="-0" c="-0.0026006971488000837" d="0.00024081743275389394" /> - <laneOffset s="48.842252527924188" a="3.9132701665925289" b="-0.0069687901745337441" c="1.7142354966915026e-05" d="-4.4170099221507232e-06" /> - <laneOffset s="50.360243181735015" a="3.9027156590371987" b="-0.0069472805952044284" c="1.4925499284651877e-05" d="5.1262027468856842e-08" /> - <laneOffset s="54.961379465264493" a="3.8710712471704012" b="-0.0068066763612357412" c="0.00014844551367728171" d="-3.738293952802608e-05" /> - <laneOffset s="58.430738919071857" a="3.8476821316513594" b="-0.0071265288791354893" c="-0.0001622969430147589" d="1.5099227331625716e-06" /> - <laneOffset s="60.432291818082014" a="3.832779918367768" b="-0.0077580734919075493" c="-0.000140632561253316" d="5.2627609643737093e-06" /> - <laneOffset s="70.729347785708626" a="3.7437292519481682" b="-0.0089802546441750935" c="1.7761063945802435e-06" d="-9.5427294108305496e-06" /> - <laneOffset s="75.699110746839679" a="3.6979720512855385" b="-0.0096696755521716131" c="-0.00027204722242315263" d="1.7351887592609366e-05" /> - <laneOffset s="80.576389090776019" a="3.6463521001208585" b="-0.011085083617299051" c="-3.4538969665781725e-05" d="1.6234571166392466e-05" /> - <laneOffset s="86.128973777207435" a="3.5865155990045889" b="-0.0099670509544885974" c="0.0001115338794949569" d="-7.1293034996929193e-06" /> - <laneOffset s="90.648437727123024" a="3.5430898886174154" b="-0.0093957641886298054" c="2.2481638872300871e-05" d="-1.1133338071239402e-05" /> - <laneOffset s="92.304280252206539" a="3.5275430777014609" b="-0.0094128887234720925" c="-7.5022747658908215e-05" d="1.3094583392134142e-05" /> - <laneOffset s="99.863252545404677" a="3.4577602746384026" b="-0.0083024811070459108" c="-0.0012136574964400921" d="0.00034539919610794253" /> - <laneOffset s="103.73769901568079" a="3.4274627661084272" b="-0.0021522735215770972" c="0.00017217745577911435" d="1.9954927105111591e-07" /> - <laneOffset s="109.92138443942942" a="3.420784683039618" b="-0" c="0.00022727751516082154" d="-1.9105537567625644e-08" /> - <laneOffset s="116.59822068317442" a="3.4309110601446231" b="0.0030324343184825451" c="0.000895607574863101" d="-3.5679952705568097e-05" /> - <laneOffset s="120.86458363616403" a="3.4573794907806752" b="0.0087260845279415137" c="0.00043818712379235081" d="-3.5536585622904574e-05" /> - <laneOffset s="129.43108072847565" a="3.5419476540792636" b="0.0084099985637734343" c="-0.00028304392723917072" d="5.6028470639837242e-05" /> - <laneOffset s="130.93663227251102" a="3.5541589722692275" b="0.0079387208782537525" c="-4.6914776213850789e-05" d="5.2799074374734379e-05" /> - <laneOffset s="134.35877872964943" a="3.5828930460890605" b="0.0094726259692627813" c="0.00052973036495336035" d="-3.4210552293264751e-05" /> - <laneOffset s="141.00868090885803" a="3.6592502116223984" b="0.011979441263988269" c="-0.00014622720051697753" d="-3.7659874756279321e-05" /> - <laneOffset s="142.99423674765393" a="3.6821647719329738" b="0.010953342235614059" c="-0.00019898815884040989" d="4.428766323705728e-05" /> - <laneOffset s="146.17652614713145" a="3.7164335862226872" b="0.011032365374431924" c="0.000396853025090357" d="-4.5412858636232907e-05" /> - <laneOffset s="151.08072954520503" a="3.7747268069212523" b="0.011648158551412028" c="-0.00026817077172133752" d="-4.2737547629299893e-05" /> - <laneOffset s="152.96369340069012" a="3.7954237326143976" b="0.010183662105533628" c="-0.00024015550665897956" d="3.0100550282385788e-06" /> - <laneOffset s="161.51302090713449" a="3.8668149087234287" b="0.0067373497512699977" c="-0.00010062712334632126" d="-1.5139853445582627e-05" /> - <laneOffset s="167.61514705199781" a="3.9007400672656525" b="0.0038180307688206161" c="-0.00014410532962327001" d="1.4088502665948422e-06" /> - <laneOffset s="171.22482681789904" a="3.9127105367458039" b="0.0028327536447662429" c="-0.00013257139562359273" d="-2.5059585643542537e-07" /> - <laneOffset s="181.60329723331574" a="3.9275504313122607" b="-0" c="-0.001023901378414788" d="5.4456163785252046e-05" /> - <laneOffset s="190.08583084008268" a="3.8871144226132346" b="-0.0056156411560609396" c="-0.00050257381844156688" d="7.5671101422242445e-05" /> - <laneOffset s="191.36892409059305" a="3.8792414769372252" b="-0.0065316008798032947" c="-0.0002217181594791522" d="7.0087844378819464e-05" /> - <laneOffset s="195.64785966246626" a="3.8527246566454254" b="-0.0045792603924015591" c="0.00082141892553103341" d="-0.00011004865690467657" /> - <laneOffset s="200.49117088148358" a="3.8373115100046471" b="-0.0043669385054318543" c="-0.00044533631061538368" d="1.2609116663715324e-05" /> - <laneOffset s="211.51302136328704" a="3.7519627277623586" b="-0.0095884875474219027" c="-2.603372978318229e-05" d="1.3552090530572288e-05" /> - <laneOffset s="216.44638940271983" a="3.70565276236665" b="-0.0088558582629496216" c="-0.00072868264398455213" d="6.9712954008250706e-05" /> - <laneOffset s="221.58506999963404" a="3.6503632174092799" b="-0.010822264194997148" c="0.00033408397544412049" d="6.9695691265039638e-05" /> - <laneOffset s="226.39490745009198" a="3.6137940373239683" b="-0.0027713524630807785" c="0.00016568339428611666" d="3.8325512485002398e-07" /> - <laneOffset s="231.65711863598105" a="3.6038543582483862" b="-0.00099579244205628211" c="0.00017187871254026947" d="-7.1657674928478803e-07" /> - <laneOffset s="234.60837536083687" a="3.6023941485517379" b="-0" c="2.3355154740239288e-05" d="-2.940664084136779e-07" /> - <laneOffset s="241.72916727232806" a="3.6034722105311086" b="0.00028788188457318584" c="2.1921369547371791e-05" d="-1.1296218750322421e-07" /> - <laneOffset s="251.80121590867506" a="3.6084801882655611" b="0.00069508934337869155" c="1.4506173799845577e-05" d="3.2871800657692512e-06" /> - <laneOffset s="252.95886460716133" a="3.6093093978038402" b="0.00074189139793635124" c="9.5376297602470475e-05" d="-2.4125868936255073e-06" /> - <laneOffset s="261.87326454502204" a="3.6217930696306295" b="0.0018671766216244656" c="2.5338174992634614e-05" d="-2.5389953505515349e-06" /> - <laneOffset s="271.94531318136904" a="3.6405755529811161" b="0.0016048772692407638" c="-5.1733330449191645e-05" d="-3.0409540102972959e-06" /> - <laneOffset s="274.98203166728905" a="3.6448868887039252" b="0.0012065502231766176" c="2.6966233371053546e-05" d="-3.1609329019365333e-06" /> - <laneOffset s="282.01736181771605" a="3.6536093856695482" b="0.0011166235574680669" c="-3.7718573870844861e-05" d="-3.0600498363402462e-06" /> - <laneOffset s="289.6779367154565" a="3.658574207209488" b="-0" c="-0.00051356490966532548" d="1.8675595476904965e-05" /> - <laneOffset s="292.08941045406306" a="3.6558496135762182" b="-0.0021510893037020116" c="-0.00037469455321236303" d="1.9306127881336527e-05" /> - <laneSection s="0"> - <left> - <lane id="1" type="shoulder" level="false"> - <link /> - <width sOffset="0" a="2.4929041363091504" b="0.0011202220825539053" c="0.0029121198973031458" d="-0.0037864035057110679" /> - <width sOffset="0.58841186702148907" a="2.4938001623018082" b="0.00061439118870563331" c="-0.0013558114065323709" d="0.00025663760052736258" /> - <width sOffset="3.8408996449989594" a="2.4902859057746776" b="-6.0470218811309318e-05" c="-7.5148242773131926e-05" d="7.1900926908360761e-06" /> - <width sOffset="10.072048636347002" a="2.4887308675764146" b="-0.00015947612942635199" c="6.0567239389786617e-05" d="6.5607943901361183e-06" /> - <width sOffset="10.935426555218978" a="2.4886425499246272" b="-4.0219625010233864e-05" c="0.00024755690628100566" d="-2.0554856473127676e-05" /> - <width sOffset="16.301453384216828" a="2.4923789993207466" b="0.00084098972293428741" c="-0.00040894293025782853" d="6.2737213964586506e-05" /> - <width sOffset="18.806186010651562" a="2.4929057209839911" b="-2.6815022284781137e-05" c="-0.00039520703823305091" d="4.1890671287431912e-05" /> - <width sOffset="20.144097272694005" a="2.4922627443869931" b="-0.00085936518952124154" c="-0.00019895090573642299" d="5.9684164150691026e-05" /> - <width sOffset="25.149474945946189" a="2.4904614382911334" b="0.0016349323145669076" c="-0.00019250155327651787" d="6.5195467228341537e-06" /> - <width sOffset="30.216145909041007" a="2.4946513450311194" b="0.00018634113036796081" c="-9.2863908731608349e-05" d="5.8307075987181109e-06" /> - <width sOffset="39.693381933447519" a="2.4930397454027418" b="-2.7377001555650878e-06" c="0.00047623776614239927" d="-0.00012395334689419623" /> - <width sOffset="40.288194545388009" a="2.4931805254031181" b="0.00043224191679555818" c="0.00024750788024915113" d="-0.00012303116913165492" /> - <width sOffset="43.422359290526892" a="2.4931787659183837" b="-0.0016418984721711569" c="0.0015215403400348673" d="-0.00036493292530866356" /> - <width sOffset="45.429845259389261" a="2.4930621164362767" b="5.500432106355594e-05" c="0.0011798921398171991" d="-0.00024296666942567863" /> - <width sOffset="48.842252527924188" a="2.4973346065417861" b="-0.00038014382905173123" c="-9.6367245371420618e-06" d="2.2677732503517599e-06" /> - <width sOffset="50.360243181735015" a="2.4967432783422776" b="-0.00039372388467878196" c="-7.8608419614184972e-06" d="-1.8150029665827402e-06" /> - <width sOffset="54.961379465264493" a="2.4945884874094206" b="-0.00058133481144277774" c="-0.00016572649364308563" d="3.5619198588909456e-05" /> - <width sOffset="58.430738919071857" a="2.4920642830978905" b="-0.00044507772141422555" c="0.00012665880914498973" d="-3.2736636723344595e-06" /> - <width sOffset="60.432291818082014" a="2.4916546084288944" b="2.2605900065582156e-05" c="0.00010070845049761074" d="-6.8659644993824617e-06" /> - <width sOffset="70.504340454429013" a="2.4950833407933057" b="-3.8290553294706778e-05" c="-0.00011433095493235056" d="-6.0466611304513774e-06" /> - <width sOffset="70.729347785708626" a="2.4950688678743287" b="-9.0659555897397437e-05" c="-9.8248419244774583e-05" d="8.7588292154913711e-06" /> - <width sOffset="75.699110746839679" a="2.4932668289270143" b="-0.00041821128239545591" c="0.00016388751510484082" d="-1.8135787787955606e-05" /> - <width sOffset="79.711368997574354" a="2.4930557597413916" b="2.1045284805114306e-05" c="0.00016340856583382411" d="-1.939212661394832e-05" /> - <width sOffset="80.576389090776019" a="2.4931836846475246" b="0.00026021762638621902" c="0.00012946653230775393" d="-1.8274810188448243e-05" /> - <width sOffset="86.128973777207435" a="2.4954916566926353" b="7.6625930559067607e-06" c="-5.0592116704501795e-05" d="5.0890644776441676e-06" /> - <width sOffset="90.648437727123024" a="2.4949627000273811" b="-0.00013779501222210833" c="1.3784234647704433e-05" d="8.5344130344159021e-06" /> - <width sOffset="92.304280252206539" a="2.4948110733464395" b="-2.1946637013027515e-05" c="9.8378389392433119e-05" d="-1.5693508428955523e-05" /> - <width sOffset="99.863252545404677" a="2.4934882246449885" b="-0.001224757576602226" c="0.0011780775311367767" d="-0.00034799812114494268" /> - <width sOffset="100.86499846479965" a="2.4930936994840511" b="8.7868136704754782e-05" c="0.0010532641990909206" d="-0.00036717231191745386" /> - <width sOffset="103.73769901568079" a="2.4933336414825296" b="-0.0029508742473557635" c="0.0005177930273208292" d="-2.197266508056323e-05" /> - <width sOffset="109.92138443942942" a="2.4896902445824276" b="0.00093229412116939674" c="5.8778671355097571e-05" d="-2.1754010269214748e-05" /> - <width sOffset="110.79253499981702" a="2.490532638465869" b="0.00098517669567549284" c="9.4830223144076633e-07" d="-2.1974342157230222e-05" /> - <width sOffset="114.67376721684118" a="2.4930858550253774" b="-5.2420804186629685e-07" c="0.00050271581450746466" d="-2.3264205247817538e-05" /> - <width sOffset="116.59822068317442" a="2.4947808549575723" b="0.0016759037474707457" c="-0.00030030958012346393" d="1.2396641920208965e-05" /> - <width sOffset="120.86458363616403" a="2.4974273478708344" b="-0.0002096300305898767" c="-0.00014223593651380991" d="1.2445291720067208e-05" /> - <width sOffset="129.43108072847565" a="2.4930173355397476" b="9.3330932064750877e-05" c="-1.4439391695471836e-05" d="-7.911976455113315e-05" /> - <width sOffset="129.93057983612229" a="2.4930504913605827" b="1.9685014010123111e-05" c="0.00042600120286592254" d="-4.4766897225740567e-05" /> - <width sOffset="130.93663227251102" a="2.493455884342143" b="0.00074091280594325119" c="0.00027820530731479797" d="-5.8646083773216744e-05" /> - <width sOffset="134.35877872964943" a="2.4968991206671203" b="0.00058460336180026634" c="-0.00035846780134593309" d="2.8363542894780342e-05" /> - <width sOffset="141.00868090885803" a="2.493275571832545" b="-0.00042013864140040026" c="0.00020367616136076423" d="3.117105684698696e-05" /> - <width sOffset="142.99423674765393" a="2.4934883470175642" b="0.00075735145635737189" c="0.00021778538882416345" d="-5.0776481146349274e-05" /> - <width sOffset="146.17652614713145" a="2.4964675933105567" b="0.00060082865739491571" c="-0.00044000368445013671" d="3.892404072692143e-05" /> - <width sOffset="151.08072954520503" a="2.4934227274532117" b="-0.00090639552554972087" c="0.00012997584123310913" d="3.7204967028027036e-05" /> - <width sOffset="152.96369340069012" a="2.4924252395215212" b="-2.1179369184210622e-05" c="7.07076282715728e-05" d="-8.5426356295185363e-06" /> - <width sOffset="158.20210001639467" a="2.4930265996717029" b="1.6358316897035693e-05" c="-4.2349453485540254e-05" d="3.1966285775560998e-06" /> - <width sOffset="161.15277818155204" a="2.4927882738717346" b="-0.00015006654271000619" c="-4.3185690559346685e-05" d="-1.2658641261975386e-06" /> - <width sOffset="161.51302090713449" a="2.4927285498963947" b="-0.00018167403632562973" c="-0.00010688029014890896" d="1.6884044349962779e-05" /> - <width sOffset="167.61514705199781" a="2.4914765295183123" b="0.00040001190168176661" c="-3.1472265114077175e-05" d="3.3534063777619232e-07" /> - <width sOffset="171.22482681789904" a="2.4925261396408782" b="0.0001859105568076066" c="-2.3285617235028854e-05" d="9.2246971967723165e-07" /> - <width sOffset="180.3324081590734" a="2.492984724185094" b="-8.6895895177198346e-06" c="-0.00057676293499760579" d="2.4831082238844827e-05" /> - <width sOffset="181.60329723331574" a="2.4920930872768174" b="-0.0013543745737666318" c="0.00040143729610503138" d="-2.9875677402874064e-05" /> - <width sOffset="190.08583084008268" a="2.4912548002177557" b="-0.000992931446544984" c="0.00050562414156034719" d="-5.1090615040005308e-05" /> - <width sOffset="191.36892409059305" a="2.4907052764654942" b="5.2258625509472682e-05" c="0.00031444866838499952" d="-4.5876065636454069e-05" /> - <width sOffset="195.64785966246626" a="2.4930920925955684" b="0.00022339529264464152" c="-0.00041788649266780598" d="0.00013426043564721788" /> - <width sOffset="197.39316151216022" a="2.4929228420476517" b="-8.3773465649728505e-06" c="-0.00057373086466835173" d="0.00011420858477002986" /> - <width sOffset="200.49117088148358" a="2.4907862517409569" b="-0.00027481833466702545" c="0.00015548248462867755" d="-8.4491887980663123e-06" /> - <width sOffset="201.44097272694006" a="2.4906582535986717" b="-2.3298694608615139e-06" c="0.00014568345208803212" d="-9.0181261485123657e-06" /> - <width sOffset="211.51302136328704" a="2.4961993573506831" b="0.00018776885494363113" c="-0.00012090742833366872" d="-8.8248158987242492e-06" /> - <width sOffset="216.44638940271983" a="2.4931234447166353" b="-0.001649531120988262" c="0.00065170564261488886" d="-6.4985679376409935e-05" /> - <width sOffset="221.4394949500055" a="2.493045249048182" b="-1.9550017220770072e-06" c="0.00053124104894779374" d="-9.2974698666742592e-05" /> - <width sOffset="221.58506999963404" a="2.4930559357288362" b="0.00014680489647504041" c="0.00050256785278539762" d="-9.29574361922532e-05" /> - <width sOffset="226.39490745009198" a="2.4950450314733335" b="-0.0014702372898643223" c="0.0003353127982016191" d="-2.3645000052050759e-05" /> - <width sOffset="229.89160278371526" a="2.492992977878429" b="7.4224926760681122e-06" c="-7.9493978383992251e-05" d="1.0426330988918664e-06" /> - <width sOffset="231.65711863598105" a="2.4927640338144665" b="-0.00026352345862689676" c="-7.7220477020924384e-05" d="-4.1184897886376145e-07" /> - <width sOffset="234.60837536083687" a="2.4913031378870083" b="-0.00073007987318416344" c="6.131225872305177e-05" d="-8.343593197357499e-07" /> - <width sOffset="241.72916727232806" a="2.488912013050101" b="1.6183535172832717e-05" c="4.4642160047481944e-05" d="-1.0002765347360352e-06" /> - <width sOffset="251.80121590867506" a="2.4925817370308629" b="0.00061103689826985652" c="1.6555856205413169e-05" d="-3.8953143510624965e-06" /> - <width sOffset="252.95886460716133" a="2.493305247157795" b="0.00063370770651193181" c="-6.6426285188864241e-05" d="1.8044526083313471e-06" /> - <width sOffset="261.87326454502204" a="2.494953972687286" b="-0.00012041249689528823" c="-2.082105811651658e-05" d="1.8433580920351093e-06" /> - <width sOffset="271.94531318136904" a="2.4935124449703494" b="2.1170903554537223e-05" c="3.3320238457924968e-05" d="2.0187146481439681e-06" /> - <width sOffset="274.98203166728905" a="2.4939405341697185" b="0.00027938696701152507" c="-5.4692084866603637e-05" d="2.138693539782932e-06" /> - <width sOffset="282.01736181771605" a="2.4939438167947667" b="-0.00017259728595721909" c="-9.1495976216157042e-06" d="2.0495249922089042e-06" /> - <width sOffset="288.98814842556675" a="2.4929903042609829" b="-1.3863401543656425e-06" c="-0.00036466006926663788" d="1.8540687401833143e-05" /> - <width sOffset="289.6779367154565" a="2.4928219250214867" b="-0.00047799741552740943" c="7.9228490811879672e-05" d="-3.1949579091781907e-06" /> - <width sOffset="292.08941045406306" a="2.492085173186136" b="-0.00015162057694332633" c="5.7480134777855324e-05" d="-3.290289014308712e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15523179294825901" weight="standard" type="solid"> - <type name="solid"> - <line length="302.16145909041006" space="0" width="0.15523200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.6302802821616402" b="0.0053060127553523108" c="-0.0060946032479076732" d="0.0041107779701094948" /> - <width sOffset="0.58841186702148907" a="3.6321297456697432" b="0.002403544786326501" c="-0.0012540745914396021" d="6.7736863871033752e-05" /> - <width sOffset="10.072048636347002" a="3.5999097298544007" b="-0.0031061991775166876" c="0.00067294643146916032" d="6.7763155197077555e-05" /> - <width sOffset="10.935426555218978" a="3.5977731458034801" b="-0.001792648674183427" c="0.00067846573533045479" d="9.487880606278505e-05" /> - <width sOffset="13.51935290385671" a="3.5993078218412613" b="0.0036139872703518407" c="0.0014111294746925237" d="-0.0012948099058423511" /> - <width sOffset="14.193148527250191" a="3.6019874772101139" b="0.0037520798010075643" c="-0.00076425101738944597" d="5.5316140656206528e-05" /> - <width sOffset="16.301453384216828" a="3.6070193328106819" b="0.0012671638708665056" c="-8.8775050711644115e-05" d="-2.7975929781611169e-05" /> - <width sOffset="20.144097272694005" a="3.6089903895031017" b="-0.00065436829758877546" c="-0.00039674199682026949" d="-2.7519726925736882e-05" /> - <width sOffset="25.149474945946189" a="3.5923240549387403" b="-0.0066944770334116466" c="7.9794118595492478e-05" d="2.5644890502116952e-05" /> - <width sOffset="30.216145909041007" a="3.5637893112075099" b="-0.0039108940959313252" c="0.00047911423328531304" d="2.6413778481000013e-05" /> - <width sOffset="31.101967365390664" a="3.560719268343465" b="-0.0029998956965965207" c="-0.0011936245885835618" d="0.00033277124480725378" /> - <width sOffset="34.986720030682157" a="3.5505611054263122" b="0.0027920870249421108" c="-0.00014343279938421643" d="-1.1037762906061564e-07" /> - <width sOffset="40.288194545388009" a="3.5613155677420165" b="0.0012619696648449813" c="-0.00013820115982643013" d="-1.0747618122895189e-06" /> - <width sOffset="43.422359290526892" a="3.5638801516041445" b="0.00036400713986515127" c="-0.002579138919893195" d="0.00024082699436462466" /> - <width sOffset="48.842252527924188" a="3.5284324290610143" b="-0.0063702538126355806" c="3.8856052601850171e-05" d="-4.4074483114390383e-06" /> - <width sOffset="50.360243181735015" a="3.5188365623330262" b="-0.0062827557548340044" c="3.5569825934498147e-05" d="3.0959837339275922e-07" /> - <width sOffset="52.861189689331333" a="3.5033510490205151" b="-0.0060990299250491681" c="0.0013757175081290682" d="-4.1803218526234657e-05" /> - <width sOffset="54.961379465264493" a="3.4962226949440347" b="-0.00087365077926350801" c="0.0012451458553480079" d="-7.9237420081818845e-05" /> - <width sOffset="58.430738919071857" a="3.5048699697274288" b="0.0049048533818962107" c="0.00049877868527552704" d="-4.0344557820641876e-05" /> - <width sOffset="60.432291818082014" a="3.5163619985300461" b="0.0064166304308444768" c="0.0002686782774095843" d="-3.6616018588244689e-05" /> - <width sOffset="69.302138510493364" a="3.5688628899568169" b="0.0025406949412639847" c="0.00040155558056410086" d="-1.5416425484369054e-05" /> - <width sOffset="70.504340454429013" a="3.5724708959243667" b="0.0034393531460807474" c="0.00034598827172372038" d="-1.5466596943873595e-05" /> - <width sOffset="70.729347785708626" a="3.5732621162033817" b="0.0035927037989318625" c="0.0003153838136628492" d="-3.0272087310603176e-05" /> - <width sOffset="75.699110746839679" a="3.5951907485748333" b="0.0044844399590628983" c="-0.00026749950044984176" d="-3.377470307163431e-06" /> - <width sOffset="80.576389090776019" a="3.6103075201823169" b="0.0016340727071543285" c="-0.00033313680777850309" d="-4.4834631873454538e-06" /> - <width sOffset="86.128973777207435" a="3.6083423040697458" b="-0.0024801595738395635" c="-0.00053217987947433995" d="-2.7847337853430795e-05" /> - <width sOffset="89.511564732541132" a="3.5927859932881478" b="-0.007036334434729629" c="-3.1098391749008246e-05" d="-7.117759403092989e-06" /> - <width sOffset="90.648437727123024" a="3.5847359218977974" b="-0.0071346429676523099" c="-4.7729155094116908e-05" d="-1.1136884546193766e-05" /> - <width sOffset="92.304280252206539" a="3.5727406505821655" b="-0.007384312710562559" c="-0.0001452511588374574" d="1.3091036917179809e-05" /> - <width sOffset="99.863252545404677" a="3.514277550333806" b="-0.0073362222388431795" c="-0.0012839663307364097" d="0.00034539564963298138" /> - <width sOffset="100.72048636347003" a="3.5072627479930665" b="-0.0087760991670947277" c="-0.00039569104748749006" d="0.00034540240404806266" /> - <width sOffset="103.73769901568079" a="3.4866684990819379" b="-0.0017306800786214222" c="0.0001019093269352593" d="2.0275721115179632e-07" /> - <width sOffset="106.73820645468575" a="3.4823985520998777" b="-0.0011136443946527035" c="-4.8371486177560953e-05" d="2.7084395053951102e-06" /> - <width sOffset="109.92138443942942" a="3.4784508516350354" b="-0.0013392637126066612" c="2.8891058467884849e-05" d="2.4897846967756156e-06" /> - <width sOffset="110.79253499981702" a="3.4773077228649241" b="-0.001283258271598157" c="3.5364901611990304e-05" d="2.483879480849368e-06" /> - <width sOffset="116.59822068317442" a="3.4715355989159145" b="-0.00062145844271983613" c="0.00074733952557478733" d="-3.3176967687148567e-05" /> - <width sOffset="120.86458363616403" a="3.4799108147067499" b="0.0039437380364955995" c="0.00032195284387572697" d="-3.3032253840443014e-05" /> - <width sOffset="124.13466953524321" a="3.4950948776393029" b="0.0049896775137694051" c="-0.00012755559252810959" d="-3.0390200041578953e-05" /> - <width sOffset="129.43108072847565" a="3.5134288584605096" b="0.0010809886988473278" c="-0.00041839145832618554" d="6.1174856221160671e-05" /> - <width sOffset="130.93663227251102" a="3.5143167468685066" b="0.00023716135648759601" c="-0.000158953372129381" d="5.7942341574867432e-05" /> - <width sOffset="134.35877872964943" a="3.5155889893733452" b="0.0011849412186240148" c="0.00047049480991898622" d="-2.9067285093131694e-05" /> - <width sOffset="140.04903863736013" a="3.5322102821948005" b="0.0037159028120926189" c="-0.00030525228982954892" d="-2.3577248370464333e-05" /> - <width sOffset="141.00868090885803" a="3.5354742723897092" b="0.0030648990064666669" c="-0.00036659654910434474" d="-2.7026570834067889e-05" /> - <width sOffset="142.99423674765393" a="3.5399029567416704" b="0.0012894519171281708" c="-0.00035601845136246373" d="5.4920967159268738e-05" /> - <width sOffset="146.17652614713145" a="3.5421709137125617" b="0.00069209270155284712" c="0.00034133748362752712" d="-3.4779554714021231e-05" /> - <width sOffset="151.08072954520503" a="3.5496723378212103" b="0.00153059837217062" c="-0.00016711901361357944" d="-3.2133326301408655e-05" /> - <width sOffset="152.96369340069012" a="3.5517473430934348" b="0.00055944902483409491" c="-7.9201652123273339e-05" d="1.3614276356129782e-05" /> - <width sOffset="158.63965333249521" a="3.5548606539028782" b="0.00097617208326893773" c="-0.00012007361349570347" d="6.818888570507786e-06" /> - <width sOffset="161.15277818155204" a="3.5566637677392441" b="0.00050185225752941327" c="-6.7070398176962708e-05" d="7.1141970573371566e-06" /> - <width sOffset="161.51302090713449" a="3.5568361849072083" b="0.00045629874240132786" c="2.9446596081824636e-06" d="-1.1035711422346908e-05" /> - <width sOffset="167.61514705199781" a="3.5572227076115861" b="-0.00074053926944484894" c="3.4598430357902902e-05" d="5.5129922898286971e-06" /> - <width sOffset="171.22482681789904" a="3.5552597027707948" b="-0.00027526139890414296" c="9.025262145722924e-05" d="3.9570493732918128e-06" /> - <width sOffset="177.19080795496512" a="3.5576701203706791" b="0.0012241584305297669" c="0.00050285405584621725" d="-2.1618258109285002e-05" /> - <width sOffset="181.29687545424605" a="3.5696780348516883" b="0.004260225926030683" c="0.00023602191329197018" d="-2.1781026879998946e-05" /> - <width sOffset="181.60329723331574" a="3.5710049953054961" b="0.0043987350919137205" c="-0.00066752820747737905" d="3.2925732765552528e-05" /> - <width sOffset="190.08583084008268" a="3.5803826252080926" b="0.00018142711291249669" c="-0.00069409846158244087" d="5.4140670402514278e-05" /> - <width sOffset="191.31728928433319" a="3.5796545592447568" b="-0.0012817683708811669" c="-0.0001639427114310054" d="7.4362939776572578e-05" /> - <width sOffset="191.36892409059305" a="3.5795879485241398" b="-0.0012981038822037919" c="-0.00016284714265816491" d="6.877968839829979e-05" /> - <width sOffset="195.64785966246626" a="3.5764403246721073" b="0.0010861929610745261" c="0.0008634973968762122" d="-0.00011135681288519626" /> - <width sOffset="200.49117088148358" a="3.589305171225007" b="0.001614054264092825" c="-0.000422265258880207" d="1.1300960683203316e-05" /> - <width sOffset="201.44097272694006" a="3.5904669506105971" b="0.00084250220794131626" c="-0.00039051893545549666" d="1.1331194595812656e-05" /> - <width sOffset="211.15914652824057" a="3.572172704383088" b="-0.0035373068636061853" c="0.00028093404516737471" d="-3.9518832518795181e-06" /> - <width sOffset="211.51302136328704" a="3.570955946012937" b="-0.0033399605380108359" c="0.00027911381415866024" d="-3.0089093879600013e-06" /> - <width sOffset="216.44638940271983" a="3.5609105205500704" b="-0.00080571179291952927" c="-0.0006686396231401191" d="5.3151954089718356e-05" /> - <width sOffset="221.58506999963404" a="3.5463264069114753" b="-0.0034669651058478043" c="0.00013897861916123657" d="5.3137001755839617e-05" /> - <width sOffset="226.39490745009198" a="3.538778806893375" b="0.0015578637166153678" c="-0.00026835577679233224" d="-1.6175434384350098e-05" /> - <width sOffset="230.21746859326174" a="3.5399091471299871" b="-0.0012028140783117301" c="0.00016194566272053902" d="3.5179384635667999e-07" /> - <width sOffset="231.65711863598105" a="3.5385142128006306" b="-0.00073433654221151878" c="0.00016364540379215664" d="-7.1440953391009164e-07" /> - <width sOffset="234.60837536083687" a="3.5377539708656491" b="0.00021291531301666569" c="1.51410340189732e-05" d="-2.9189919303900586e-07" /> - <width sOffset="241.72916727232806" a="3.5399324384326842" b="0.00038414477917708472" c="1.3656410393814116e-05" d="-1.0567337592206136e-07" /> - <width sOffset="247.59828998444732" a="3.5426360840793918" b="0.00053352681001371798" c="-0.00046584106233937963" d="2.420838287572111e-05" /> - <width sOffset="251.80121590867506" a="3.5384468697875229" b="-0.0020993709376805059" c="-0.00016457244244940321" d="2.7595295825485198e-05" /> - <width sOffset="252.95886460716133" a="3.5358387959015771" b="-0.0023694595360457343" c="7.1845706888872104e-07" d="2.1895528866090393e-05" /> - <width sOffset="260.91649749993383" a="3.5280623457950862" b="0.0018015071364943331" c="0.00037201999530062725" d="-3.5618220131088071e-05" /> - <width sOffset="261.87326454502204" a="3.5300953213209163" b="0.0024155649839618706" c="0.00026426714837518215" d="-3.5744628589235217e-05" /> - <width sOffset="266.21665745414771" a="3.5426436284424723" b="0.0026882232011514731" c="-4.720080892266649e-05" d="-1.4435978952472202e-06" /> - <width sOffset="271.94531318136904" a="3.5562231246960829" b="0.0020053030260538535" c="-7.2318771877576241e-05" d="-1.936731665892616e-06" /> - <width sOffset="274.98203166728905" a="3.5615915309741846" b="0.0015124998852368155" c="1.6440429160127586e-05" d="-2.0567105575318099e-06" /> - <width sOffset="282.01736181771605" a="3.5723300130530991" b="0.0014384315419905794" c="-2.4983222149163764e-05" d="-1.9531049469242908e-06" /> - <width sOffset="285.99308906665453" a="3.5775311925988453" b="0.0011471638718212672" c="-0.00010619939577259161" d="-3.2251312279272272e-07" /> - <width sOffset="289.6779367154565" a="3.5803001940700674" b="0.00035136933576660655" c="-0.00051528574384738797" d="2.1413132190452842e-05" /> - <width sOffset="292.08941045406306" a="3.5784513004254563" b="-0.0017602614443977893" c="-0.0003566584322505776" d="2.2045002243643107e-05" /> - <width sOffset="299.17747802831639" a="3.5559061128839655" b="-0.0034936304210543717" c="0.00050054843179560716" d="1.8678764211302841e-07" /> - <roadMark sOffset="0" color="standard" width="0.15745140277557482" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15745100000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6004212284774844" b="0.002818807652118567" c="-0.009946737392738908" d="0.013663662885016033" /> - <width sOffset="0.33263244143021797" a="3.6007611811895681" b="0.00073701349614424885" c="-0.0034322515540193082" d="0.00058804581378368924" /> - <width sOffset="4.1787855014830821" a="3.5862802137403351" b="0.00043178090609764103" c="0.0015545350972634817" d="-0.00013870437018116208" /> - <width sOffset="10.072048636347002" a="3.6144251783195323" b="0.0043025123190530874" c="-0.00089619394497125629" d="-0.00013942423497165398" /> - <width sOffset="13.51935290385671" a="3.6128951078544058" b="-0.006847107908694439" c="-0.0023352914242343445" d="0.0012502644769339299" /> - <width sOffset="14.09684382477818" a="3.6084029448109489" b="-0.0082934533792317581" c="0.00014611565846831768" d="0.0014477815783064849" /> - <width sOffset="14.193148527250191" a="3.6076068945544035" b="-0.0082250273627205057" c="0.00012246892993767985" d="9.7655531878604202e-05" /> - <width sOffset="17.41281100666453" a="3.5856539498897" b="-0.0043994520436611458" c="-0.00027353489937260631" d="5.8664768690066162e-05" /> - <width sOffset="20.144097272694005" a="3.572792542997643" b="-0.0045807520064278778" c="0.00022142077340403505" d="6.0796261050909451e-05" /> - <width sOffset="28.131029134061251" a="3.5813064511038903" b="0.010590970812304392" c="-6.3846682792356724e-06" d="-3.0809607770998001e-05" /> - <width sOffset="30.216145909041007" a="3.6030827992058807" b="0.010162491353384782" c="-0.00017823444913338921" d="-2.8228052177054474e-05" /> - <width sOffset="31.101967365390664" a="3.6119254742251381" b="0.0097802736202571433" c="0.0014896830050326643" d="-0.0003345855185032599" /> - <width sOffset="33.294406260915792" a="3.637002657890251" b="0.011487506267005424" c="-0.0060777361192204619" d="0.00041450936391036861" /> - <width sOffset="34.986720030682157" a="3.6410459235321198" b="-0.0055219944766282669" c="-0.0011452862550999253" d="0.0007473909863464905" /> - <width sOffset="36.699059976647639" a="3.631984763824271" b="-0.0028699398113620567" c="-0.00025219098035053324" d="0.00010909909867439459" /> - <width sOffset="40.288194545388009" a="3.623479645756869" b="-0.00046402777512475268" c="0.00092307877087643379" d="0.0001091413050138438" /> - <width sOffset="40.409955657604456" a="3.6234370275930949" b="-0.00023438326838783624" c="0.00043030384445747394" d="-5.0332887293473672e-06" /> - <width sOffset="50.360243181735015" a="3.6587498690555775" b="0.006833899780903238" c="0.00028467284275255939" d="-5.3510178478204286e-06" /> - <width sOffset="52.861189689331333" a="3.6775379349387296" b="0.0081573953139684238" c="-0.0010932998007259539" d="3.6761799051898408e-05" /> - <width sOffset="60.432291818082014" a="3.6925828925101905" b="-0.0020758395464562443" c="-0.00025452525479519945" d="3.686436015316086e-05" /> - <width sOffset="69.302138510493364" a="3.6798709278826576" b="0.0021097804319694206" c="-0.00038079430312525585" d="1.5664767049445354e-05" /> - <width sOffset="70.413120866615586" a="3.6817663297930925" b="0.0013216731382045318" c="6.9477029294470088e-05" d="-1.7746006535313729e-05" /> - <width sOffset="70.504340454429013" a="3.681887456921344" b="0.0013339054758918171" c="6.4587017907094979e-05" d="-1.7695835078268951e-05" /> - <width sOffset="76.948189772847655" a="3.6884299415555448" b="-3.807928235363689e-05" c="0.00075310229819146302" d="-6.7251105676711058e-05" /> - <width sOffset="80.576389090776019" a="3.6949935131104246" b="0.0027708847809498494" c="1.069341675109998e-06" d="-6.9371081462356321e-05" /> - <width sOffset="85.730718728968341" a="3.6998046009368362" b="-0.0027470600325969477" c="0.00024700937267171816" d="2.0958969326666146e-05" /> - <width sOffset="89.511564732541132" a="3.6940820960552641" b="1.9561370719954705e-05" c="-0.00029893266826168326" d="2.2939087672789937e-07" /> - <width sOffset="90.648437727123024" a="3.6937183073564817" b="-0.00065924613526501061" c="-0.00029046825258585121" d="-2.9213419867701168e-06" /> - <width sOffset="92.812128675011309" a="3.6909024667638022" b="-0.0019572424931890262" c="5.5484273404683272e-05" d="-4.5282459676503682e-07" /> - <width sOffset="100.72048636347003" a="3.6786700276829909" b="-0.0011646253654663281" c="4.8616512048781939e-05" d="1.3232799704603879e-07" /> - <width sOffset="106.73820645468575" a="3.6734510226315935" b="-0.00056512827937975113" c="0.00020311138726135765" d="-2.373354297002122e-06" /> - <width sOffset="108.18570382375123" a="3.6730513717229534" b="7.9598159545974908e-06" c="0.00019747427110951038" d="-6.8762504997239657e-06" /> - <width sOffset="110.79253499981702" a="3.6742922595172449" b="0.00089733988908548116" c="0.00014150628736023558" d="-7.5194063029457552e-06" /> - <width sOffset="119.32342636150263" a="3.6875772590920697" b="0.0016699900553933727" c="-0.0016765630062411409" d="0.0002314605071373323" /> - <width sOffset="120.86458363616403" a="3.6870161234969232" b="-0.0018484332878129115" c="-0.00060744762169253339" d="0.00023212957163336242" /> - <width sOffset="123.09974414192595" a="3.6824419340584975" b="-0.0010848011865659422" c="7.7364854939701336e-05" d="-3.7123845599412372e-06" /> - <width sOffset="124.13466953524321" a="3.6813979938859798" b="-0.0009365961582481928" c="0.00019129224569571716" d="-6.3544383588046297e-06" /> - <width sOffset="130.93663227251102" a="3.681877992712705" b="0.00078373267208767857" c="5.3744935073641244e-05" d="-5.4285805903983275e-06" /> - <width sOffset="134.80046589475643" a="3.685395432639166" b="0.00095592238326366267" c="0.000140480260110157" d="-3.7173356154649424e-05" /> - <width sOffset="139.22697717505207" a="3.6891552450123926" b="1.44728380347698e-05" c="-0.0007195588451327378" d="1.7820093951028373e-05" /> - <width sOffset="140.04903863736013" a="3.6886907751849938" b="-0.0011324426957301809" c="-0.00039606532888501137" d="1.233005722824517e-05" /> - <width sOffset="141.00868090885803" a="3.6872501901343817" b="-0.0018585400187997054" c="-0.00036111743371157554" d="1.0585869957450749e-05" /> - <width sOffset="151.08072954520503" a="3.6427132380698573" b="-0.0059112370394736775" c="-4.0329849203145181e-05" d="1.1014894423532995e-05" /> - <width sOffset="158.63965333249521" a="3.600483604650913" b="-0.0046328526185795719" c="0.00048214661588060007" d="1.7810282209151207e-05" /> - <width sOffset="161.15277818155204" a="3.5921684991842895" b="-0.0018720049815707657" c="0.00058669836111517745" d="2.8778099919520203e-05" /> - <width sOffset="162.64620072291112" a="3.5907771784854905" b="7.2924462041666464e-05" c="-0.00048143600770643382" d="0.00013770404994170222" /> - <width sOffset="167.3403051904059" a="3.5947543500920309" b="0.0046558705297565185" c="-4.3560199538570992e-05" d="-3.0334279369042879e-06" /> - <width sOffset="171.22482681789904" a="3.6120050719086372" b="0.0041801306474841772" c="-8.0048388865182693e-05" d="-4.5994435705683742e-06" /> - <width sOffset="177.19080795496512" a="3.6331178188113911" b="0.0027338732594987297" c="-0.00050414735824458703" d="2.0975863911909022e-05" /> - <width sOffset="179.34236892185163" a="3.6368750278861692" b="0.00085577103042644691" c="-0.00010792197889572747" d="7.711957336926202e-06" /> - <width sOffset="181.29687545424605" a="3.6381929462336329" b="0.00052228385209975893" c="-5.6307042034394535e-05" d="1.126552607204042e-05" /> - <width sOffset="191.31728928433319" a="3.6491073888197132" b="0.0027873143842117344" c="-4.7791133599728255e-05" d="-8.9567596782885375e-06" /> - <width sOffset="191.36892409059305" a="3.6492511826063976" b="0.0027823073720609085" c="-5.2347362081671549e-05" d="-9.2024715385089934e-06" /> - <width sOffset="198.36771045190679" a="3.6630050198503854" b="0.00069727708363055089" c="-0.00037225955749429362" d="3.6138416606835908e-05" /> - <width sOffset="201.44097272694006" a="3.6626809475462849" b="-0.00056684978624191567" c="-2.5305266897785301e-05" d="3.5093583576216794e-05" /> - <width sOffset="207.70501119366321" a="3.6667628789253213" b="0.0032471487111026109" c="0.0010914440090738376" d="-0.00022419006694709574" /> - <width sOffset="211.10393178415916" a="3.6816055856322523" b="0.0028966360923139596" c="-0.00067298284888971734" d="6.1308857701021307e-05" /> - <width sOffset="211.15914652824057" a="3.6817634812717421" b="0.0028228796718213593" c="-0.0010039248154701285" d="7.6591935295065042e-05" /> - <width sOffset="215.27238931545438" a="3.6817196103035101" b="-0.0015483701961603313" c="6.1034467354384507e-05" d="3.0923852376303636e-06" /> - <width sOffset="221.58506999963404" a="3.6751553835933994" b="-0.00040809391528800684" c="0.00011247079086091439" d="2.7180454826432526e-06" /> - <width sOffset="230.21746859326174" a="3.6817621287840736" b="0.0021413239091623423" c="-0.00043293565350107353" d="-1.3809182747848683e-05" /> - <width sOffset="231.65711863598105" a="3.6839063828198726" b="0.00080890982980757239" c="-0.00049221967846950899" d="-1.4237241462941804e-05" /> - <width sOffset="238.24664045883605" a="3.663789962399103" b="-0.0075326946584224185" c="1.7083393238739506e-06" d="2.6432545334729194e-05" /> - <width sOffset="241.72916727232806" a="3.6386942765935757" b="-0.0065590748085130775" c="0.00029018988172019316" d="2.6608351289231946e-05" /> - <width sOffset="245.38916700984703" a="3.6198798827371284" b="-0.0033655806884430291" c="0.00031031615046164351" d="-1.2245944019052854e-05" /> - <width sOffset="247.59828998444732" a="3.6138272898245924" b="-0.0021738164750501532" c="0.00070679460432828225" d="-3.6560000270699034e-05" /> - <width sOffset="251.80121590867506" a="3.614461812317153" b="0.0018299424137997416" c="0.00024535666763882998" d="-3.6135054081063458e-05" /> - <width sOffset="260.91649749993383" a="3.6241607928077806" b="-0.0027042743369642178" c="-0.00059137870826045228" d="2.1378694917323844e-05" /> - <width sOffset="262.04439379803131" a="3.6203890046271807" b="-0.0039567113245854617" c="-0.0013964797503592066" d="0.00030522497778797829" /> - <width sOffset="265.29480319114487" a="3.6032558005294204" b="-0.003360719821602738" c="0.00040287799430654828" d="3.423141129164834e-05" /> - <width sOffset="266.21665745414771" a="3.6005268955990886" b="-0.0025306590992172874" c="0.0003432561698262195" d="-6.9619402357655015e-08" /> - <width sOffset="269.1136198837653" a="3.5960747187484929" b="-0.00054361146357838537" c="0.0010665212896033476" d="-8.7616696896616677e-05" /> - <width sOffset="271.94531318136904" a="3.6010978492521999" b="0.0033888508942736375" c="0.00032063647757512513" d="-8.8640836870812318e-05" /> - <width sOffset="275.55576832135779" a="3.6133409999721273" b="0.0022377354748800891" c="-0.00011628936970403498" d="4.413128588369918e-06" /> - <width sOffset="282.01736181771605" a="3.6241355999536919" b="0.0012876795616587927" c="-3.069729042462003e-05" d="4.410406043531814e-06" /> - <width sOffset="282.96840970878907" a="3.6253362733275156" b="0.0012412579071742402" c="-9.3538814811814494e-05" d="7.7052093989440656e-07" /> - <width sOffset="285.99308906665453" a="3.6282562450564142" b="0.00069655582313191741" c="-2.8625942515957362e-05" d="-8.6007088423350737e-07" /> - <width sOffset="292.08941045406306" a="3.6312439194361095" b="0.00025163598177348862" c="-4.2684159828059594e-05" d="-9.059152414382288e-07" /> - <width sOffset="299.17747802831639" a="3.6305604451127818" b="-0.0004900018895258873" c="-0.00045038519248564746" d="2.0952299360140831e-05" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="33.294406260915792" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="33.294406260915792" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="204.95223419792026" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="238.24664045883605" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="63.914818631574008" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="0.12892234844505301" b="0.0022014472521371571" c="0.0084870216331034663" d="-0.012620369708807718" /> - <width sOffset="0.33263244143021797" a="0.13012918334488699" b="0.0036584472324095799" c="0.0030136352633729126" d="0.00045524736242462621" /> - <width sOffset="3.8292151874024647" a="0.19922784012478445" b="0.041430984265724287" c="-4.628717256043198e-06" d="-0.00020827476345538836" /> - <width sOffset="4.1787855014830821" a="0.2137014197484679" b="0.041351394985248896" c="0.0015753072264439694" d="0.00051847542050210494" /> - <width sOffset="9.6724107902364374" a="0.57437488811229231" b="0.10560232851097268" c="0.0070191578183333696" d="-7.9706200573441589e-05" /> - <width sOffset="10.072048636347002" a="0.61769352042822634" b="0.11117438100558076" c="0.0069222163789469434" d="-7.9012627111716826e-05" /> - <width sOffset="14.09684382477818" a="1.1721290226559704" b="0.16305561633207066" c="0.0056528295245265809" d="-0.00027652972855530004" /> - <width sOffset="16.84260014401918" a="1.6567333268534226" b="0.18784378076682517" c="0.0053682293405894537" d="-0.00091082199514689981" /> - <width sOffset="17.41281100666453" a="1.7654204543855228" b="0.19307739097351201" c="0.005149404938890715" d="-0.00087183123195579821" /> - <width sOffset="20.144097272694005" a="2.3134205267415635" b="0.20169500301095702" c="-0.0020079968331174329" d="-0.000873950121513333" /> - <width sOffset="20.407144375366297" a="2.3663209650585788" b="0.20045719178006" c="0.22260806634986932" d="-0.44609149673063325" /> - <width sOffset="20.9062000770748" a="2.466356175428841" b="0.089338755724741731" c="-0.091942001612405108" d="0.029996114326030516" /> - <width sOffset="22.153840644620125" a="2.4929563037107272" b="-5.9031022618880047e-06" c="1.9675386763517186e-05" d="-3.2849753445567245e-06" /> - <width sOffset="26.146285559594524" a="2.4930373046238161" b="-5.8810472108880921e-06" c="0.00075170866480784465" d="-0.00025916338628953267" /> - <width sOffset="28.131029134061251" a="2.4939605471078274" b="-8.4677882601637625e-05" c="0.00089312229278357938" d="-0.00016755751746763193" /> - <width sOffset="30.216145909041007" a="2.4961480317913982" b="0.0014543751962725715" c="-0.00015488931510878359" d="-0.00016921129513520225" /> - <width sOffset="33.294406260915792" a="2.4942216328343103" b="-0.0043093837830704557" c="0.0036492256324950579" d="-0.00091830617754897577" /> - <width sOffset="35.039940578530882" a="2.4929342782903809" b="3.6379488781819284e-05" c="0.0015267693317280394" d="-0.00075252993893357872" /> - <width sOffset="36.699059976647639" a="2.4937605199421622" b="-0.0011118512459806907" c="0.00072742532246198493" d="-0.0001142380512613118" /> - <width sOffset="40.288194545388009" a="2.493858770573687" b="-0.00030500149000576107" c="-0.00049435643586812506" d="-0.00011360227104742848" /> - <width sOffset="40.409955657604456" a="2.4938140989639344" b="-0.00043044099180579719" c="-3.2110260065634192e-06" d="5.7232269576237652e-07" /> - <width sOffset="50.360243181735015" a="2.4897769989421219" b="-0.00032434829860115283" c="1.6499376083276072e-05" d="5.1927475433659306e-07" /> - <width sOffset="60.432291818082014" a="2.4887145252378144" b="0.00016605203341229884" c="3.464514033676828e-05" d="5.8334540720389783e-07" /> - <width sOffset="70.413120866615586" a="2.4944031022060034" b="0.0010319597476942041" c="-0.00034594954009408059" d="3.3994118510231237e-05" /> - <width sOffset="70.504340454429013" a="2.4944943843010119" b="0.00096969359528803652" c="-0.00034324414529220929" d="3.4669990173020504e-05" /> - <width sOffset="76.948189772847655" a="2.4957669721954159" b="0.00086489267970345056" c="-0.00070362273236244141" d="8.4225260771424623e-05" /> - <width sOffset="80.576389090776019" a="2.4936652876751517" b="-0.00091469323863346309" c="0.00018595084668521569" d="0.00010479996086393923" /> - <width sOffset="81.932302185066632" a="2.493028164058694" b="0.00016759742171651958" c="-0.00051426648910323901" d="0.00012212413865928711" /> - <width sOffset="85.730718728968341" a="2.4929377703884965" b="0.001546810323449564" c="-0.00044125573766483822" d="3.1794087870260094e-05" /> - <width sOffset="90.648437727123024" a="2.4936545060642916" b="-0.00048641226318449078" c="3.0073067325252993e-05" d="3.2894414037979276e-05" /> - <width sOffset="92.812128675011309" a="2.4930760512617014" b="0.00010571675660896017" c="-0.00012132206463305866" d="3.042589664813045e-05" /> - <width sOffset="95.307142602838354" a="2.4930571405468429" b="6.8528520232236743e-05" c="2.5056138593940657e-05" d="-2.1798804413872505e-06" /> - <width sOffset="100.72048636347003" a="2.4938165577648395" b="0.00014816395303225845" c="-3.6571614519028206e-06" d="-1.1528559083071453e-06" /> - <width sOffset="108.18570382375123" a="2.4942391965480093" b="-9.9183210269149615e-05" c="-3.414527777066772e-05" d="3.3500402942820094e-06" /> - <width sOffset="110.79253499981702" a="2.4938079517103864" b="-0.0002089088717742866" c="-6.7660399721529638e-06" d="3.8041164163090556e-06" /> - <width sOffset="115.68192889223651" a="2.4930694144223224" b="-2.2469494872620534e-06" c="-0.00020291785645115717" d="1.0826484547492886e-05" /> - <width sOffset="119.32342636150263" a="2.49089322942319" b="-0.0010494027519047698" c="0.0015409835705680621" d="-0.00022815342889295984" /> - <width sOffset="120.86458363616403" a="2.4921008695973308" b="0.002074686701026271" c="0.00048595499780310466" d="-0.00022862625412200279" /> - <width sOffset="123.09974414192595" a="2.4966129221802134" b="0.00082045068885751478" c="-0.00017536604800745499" d="7.2157020712980919e-06" /> - <width sOffset="130.93663227251102" a="2.4957453162202268" b="-0.00059870118142651887" c="-6.2943791589632097e-06" d="6.8621041606337574e-06" /> - <width sOffset="134.80046589475643" a="2.4937338978662682" b="-0.00034000466154793935" c="-7.6413014488606538e-05" d="3.8606879724836973e-05" /> - <width sOffset="137.30357234523149" a="2.4930095450458705" b="3.1345874300162113e-06" c="-0.00048682820004009475" d="4.9809592996024345e-05" /> - <width sOffset="139.22697717505207" a="2.491568985561698" b="-0.0013167911383785598" c="0.00016697809938790462" d="-5.1838571094698422e-06" /> - <width sOffset="141.00868090885803" a="2.489723600841609" b="-0.00077114810065904982" c="0.00013973519053152116" d="-4.9315509645709916e-06" /> - <width sOffset="151.08072954520503" a="2.4910932444269198" b="0.0005428303899982518" c="-1.0124524977860954e-05" d="-4.2435328957799459e-06" /> - <width sOffset="156.75612795355158" a="2.4930721699166405" b="1.7854507801725455e-05" c="0.00019876454142689001" d="-2.7281549190262787e-05" /> - <width sOffset="161.15277818155204" a="2.4946742467440548" b="0.00018355016121824122" c="-0.0001528096351135947" d="-4.0131880300001411e-05" /> - <width sOffset="162.64620072291112" a="2.4944738805708839" b="-0.00054138825466444086" c="0.00086445675905842093" d="-0.00014905783032218261" /> - <width sOffset="167.3403051904059" a="2.4955630532314319" b="-0.0022789840803525748" c="0.00026669345726961283" d="-8.3203524435631138e-06" /> - <width sOffset="171.22482681789904" a="2.4902468616174236" b="-0.00058368115613384301" c="0.00017159014251067145" d="-7.7822370345024821e-06" /> - <width sOffset="179.34236892185163" a="2.4926529214830651" b="0.00066367963987922244" c="-0.00027876059709036442" d="5.4816695408104085e-06" /> - <width sOffset="180.59523301894552" a="2.4930576403111453" b="-9.0054365542721962e-06" c="-6.1843841761716222e-06" d="3.6449986959411509e-06" /> - <width sOffset="181.29687545424605" a="2.4930495361849787" b="-1.2300567687848797e-05" c="-4.3735892497350588e-06" d="2.541987299389089e-07" /> - <width sOffset="191.36892409059305" a="2.4927416932308191" b="-2.3040117031979807e-05" c="1.7366187940969334e-06" d="1.5427257352406678e-07" /> - <width sOffset="198.36771045190679" a="2.4927183931651613" b="2.3938536110555513e-05" c="0.00013166957967504495" d="-4.5186615571793765e-05" /> - <width sOffset="200.37228694281839" a="2.4929314910459048" b="7.0982443912438742e-06" c="0.00039193249697398996" d="-4.7676484310387959e-05" /> - <width sOffset="201.44097272694006" a="2.4933285079529957" b="0.00068145121157292023" c="0.00024463137429488977" d="-4.317252219282367e-05" /> - <width sOffset="207.70501119366321" a="2.4965846832074101" b="-0.0013358214311372536" c="-0.0010239382484707054" d="0.00021611112833046526" /> - <width sOffset="211.10393178415916" a="2.4887010650544741" b="-0.00080641509457435138" c="0.00065810959703665626" d="-6.9387796072981127e-05" /> - <width sOffset="211.51302136328704" a="2.4884765560137763" b="-0.00030280057317980981" c="0.00057867219869881697" d="-6.7876500563881183e-05" /> - <width sOffset="215.27238931545438" a="2.4919101857136923" b="0.0011702181905142413" c="-0.00030668163066723626" d="5.6230494935228786e-06" /> - <width sOffset="217.27457095327594" a="2.4930689025977477" b="9.7774150556442438e-06" c="-8.9661559764638498e-06" d="1.2421605242651443e-06" /> - <width sOffset="221.58506999963404" a="2.4930439389899335" b="1.7197272579464254e-06" c="-1.0382361430463774e-05" d="1.9856156047673783e-06" /> - <width sOffset="225.28329798579006" a="2.4930087334657669" b="6.3981880892268264e-06" c="-0.00015593592281944158" d="1.148249722855176e-05" /> - <width sOffset="231.65711863598105" a="2.4896878059386331" b="-0.0005819673591015435" c="6.2220689561557632e-05" d="1.1068179799359479e-05" /> - <width sOffset="238.24664045883605" a="2.4917215794700609" b="0.0016798426218717025" c="-0.0004943551312033129" d="-2.9601606997689827e-05" /> - <width sOffset="239.74747581323214" a="2.4930291359619492" b="-4.0821549014231559e-06" c="0.00045039063807721206" d="-6.2527374267115163e-05" /> - <width sOffset="241.72916727232806" a="2.4943031689866353" b="0.0010443344572076876" c="9.0231107786282582e-05" d="-5.7292057951695546e-05" /> - <width sOffset="245.38916700984703" a="2.496525224025445" b="-0.0005975580254211992" c="-0.00026680223594766924" d="-1.8437762643287552e-05" /> - <width sOffset="247.88981521890167" a="2.4930742486239645" b="-0.0022778024380850775" c="-0.22518935052616759" d="0.20948618834616045" /> - <width sOffset="248.38994497898813" a="2.4618146558683374" b="-0.070329393464283102" c="-0.031172850048072364" d="0.031140710910304525" /> - <width sOffset="248.8900746240123" a="2.4227392044170495" b="-0.078142679854537919" c="0.00087177641114350964" d="-1.0924189279724756e-05" /> - <width sOffset="251.80121590867506" a="2.2023733919458057" b="-0.073344690360464759" c="0.00077741304235025115" d="-9.9866604965384244e-06" /> - <width sOffset="261.87326454502204" a="1.5323035971626164" b="-0.060723731601931424" c="0.00044635926696630324" d="1.5111525996624913e-06" /> - <width sOffset="262.04439379803131" a="1.5219250696367532" b="-0.060570828582762734" c="0.0013245749689057597" d="-0.00028233513011063249" /> - <width sOffset="263.29441132721229" a="1.4477287195871473" b="-0.058582827763998688" c="0.017648685598804361" d="-0.011766049773715398" /> - <width sOffset="264.29442419720323" a="1.3950277736748351" b="-0.05858406019026216" c="1.3595625877460354e-05" d="-0.00026532035856645104" /> - <width sOffset="265.29480319114487" a="1.3361694942765023" b="-0.059353423152061976" c="0.00039429354553327837" d="5.6732079296180236e-06" /> - <width sOffset="269.1136198837653" a="1.1155757239230932" b="-0.056093750288475609" c="-0.00026458180519543404" d="9.3220285423815163e-05" /> - <width sOffset="271.94531318136904" a="0.95673053152451937" b="-0.055349722416038347" c="0.00052671286468753623" d="9.3895466423036812e-05" /> - <width sOffset="275.55576832135779" a="0.76817781335393187" b="-0.047874485041856533" c="0.0010205535247933947" d="8.4150096385665748e-07" /> - <width sOffset="282.01736181771605" a="0.50166972227302242" b="-0.034580277479198569" c="0.0010388109688133672" d="7.8996907933017791e-07" /> - <width sOffset="282.96840970878907" a="0.46972249815265155" b="-0.03260221595461868" c="0.0011164899105809084" d="4.429854182960242e-06" /> - <width sOffset="286.96555002299863" a="0.3575280746837004" b="-0.023464353212961579" c="0.0012621200747568039" d="-8.8322460230235404e-05" /> - <width sOffset="292.08941045406306" a="0.25855436107671714" b="-0.017486938221801501" c="-9.7159852412933068e-05" d="-8.8277953529663223e-05" /> - <width sOffset="292.46161784700092" a="0.25202758097343425" b="-0.017595955096842985" c="-0.0051833728756673688" d="0.0064023438629047811" /> - <width sOffset="293.71072519885325" a="0.23443869490270153" b="-0.00057699407061510117" c="-0.0084547967100769266" d="0.0015177367301500556" /> - <width sOffset="297.45804351597616" a="0.19341623681938858" b="-4.649175319898914e-06" c="-0.0054993896885645105" d="0.00091729389571175652" /> - <width sOffset="301.45518357253133" a="0.16411417268617567" b="-1.1431022264296858e-06" c="0.019168574761242931" d="-0.040908440201752917" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276662471" type="poles" s="126.80547747813191" t="-8.489213102747792" zOffset="-1.8283679358681524" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.0716320641318475" name="SgPoleSign01.flt" /> - <object id="276662526" type="poles" s="126.9010387796088" t="5.8909938807741611" zOffset="-1.4860663677508739" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.413933632249126" name="SgPoleSign01.flt" /> - <object id="5174943" s="26.691929383360293" t="-7.0947427431093502" orientation="none" validLength="1.8876105806433081" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="1.8876105806433081" s="26.691929383360293" distance="0" tStart="-7.0947427431093502" tEnd="-6.998027945339893" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273610399" s="28.579539964003601" t="-6.998027945339893" orientation="none" validLength="17.285731183385337" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="17.285731183385337" s="28.579539964003601" distance="0" tStart="-6.998027945339893" tEnd="-7.0039322291523805" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542045855" s="45.865271147388938" t="-7.0039322291523805" orientation="none" validLength="32.480613186137816" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="32.480613186137816" s="45.865271147388938" distance="0" tStart="-7.0039322291523805" tEnd="-7.3914161686493625" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810481311" s="78.345884333526755" t="-7.3914161686493625" orientation="none" validLength="21.500526342864461" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="21.500526342864461" s="78.345884333526755" distance="0" tStart="-7.3914161686493625" tEnd="-7.4160706737741888" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078916767" s="99.846410676391216" t="-7.4160706737741888" orientation="none" validLength="9.3089144166483919" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.3089144166483919" s="99.846410676391216" distance="0" tStart="-7.4160706737741888" tEnd="-7.6910483562861538" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742255" s="109.15532509303961" t="-7.6910483562861538" orientation="none" validLength="44.93655737249037" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="44.93655737249037" s="109.15532509303961" distance="0" tStart="-7.6910483562861538" tEnd="-7.0165642000943356" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742256" s="154.09188246552998" t="-7.0165642000943356" orientation="none" validLength="45.253619241924014" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="45.253619241924014" s="154.09188246552998" distance="0" tStart="-7.0165642000943356" tEnd="-7.0415958755803132" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742257" s="199.34550170745399" t="-7.0415958755803132" orientation="none" validLength="15.797746279210457" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.797746279210457" s="199.34550170745399" distance="0" tStart="-7.0415958755803132" tEnd="-7.1912937502942498" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412769" s="27.602062389856432" t="-7.2126762660766479" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848225" s="71.287391477220851" t="-7.4636267116819894" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283681" s="116.98072745167272" t="-7.7524831645272716" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719137" s="167.2381257185678" t="-7.0367708210480817" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154593" s="204.7924956899347" t="-7.0445312636027086" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8227015" type="278" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.0716320641318475" s="126.80547747813191" t="-8.489213102747792" orientation="+" name="" /> - <signal dynamic="no" id="8227070" type="278" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.413933632249126" s="126.9010387796088" t="5.8909938807741611" orientation="+" name="" /> - </signals> - </road> - <road name="" length="5.0000000000001679" id="33782227" junction="33556490"> - <link> - <predecessor elementType="road" elementId="4942083" contactPoint="end" /> - <successor elementType="road" elementId="4940168" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-568.67138055502642" y="-226.53414703563311" hdg="1.2540727317287357" length="5.0000000000001679"> - <paramPoly3 aU="0" bU="5.0000490072122075" cU="-4.8438295579421873e-05" dU="-4.6191376171645928e-06" aV="-0" bV="4.4408920985006262e-16" cV="-0.0054356483734887655" dV="-6.7380970300639486e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="157.09668835325331" b="-0.00077168252636308516" c="6.1059917661623325e-05" d="-2.9454453885693447e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028031831405683078" b="3.3270087645799742e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.5592537479267807" b="0.0054339933405768122" c="-0.00026619852465333709" d="0.00010542353897851214" /> - <laneOffset s="3.1631240908151597" a="1.5771151954442659" b="0.0069143548946691748" c="-0.014048295823216636" d="0.0078667837148590665" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15287265664435828" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000001679" space="0" width="0.15287300000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.5724669725242828" b="-0.0036727423405306372" c="-0.0011843393394063888" d="0.00010679741814004056" /> - <width sOffset="2.0728472509633633" a="3.56071637275863" b="-0.0072060233981690036" c="0.046383328709867652" d="-0.011227222187625688" /> - <width sOffset="3.1631240908151597" a="3.593445182089825" b="0.053897796820183828" c="-0.0051215127774563579" d="-0.0034658620117453496" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.0728472509633633" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="2.0728472509633633" type="none" width="0" /> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="0.18965951154709648" b="-0.029631146419976235" c="0.048659193531514031" d="-0.029207709475615469" /> - <width sOffset="0.84174108591773233" a="0.18177476654818614" b="-0.0097977064343309599" c="-0.0051069603431019087" d="0.00090247578152361885" /> - <width sOffset="2.0728472509633633" a="0.16365644871676821" b="-0.018268689658720878" c="-0.048677373693257579" d="0.01223649538728927" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782225" s="0" t="2.7052241521545559" orientation="none" validLength="5.0000000000001679" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.0000000000001679" s="0" distance="0" tStart="2.7052241521545559" tEnd="2.7522116615913421" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="427.28101609005961" id="33782252" junction="-1"> - <link> - <predecessor elementType="junction" elementId="33556490" /> - <successor elementType="junction" elementId="33554459" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-562.79869504182966" y="-228.47304419041902" hdg="4.4143065880620433" length="19.044495975165031"> - <paramPoly3 aU="0" bU="19.335491175278719" cU="-2.4744850710259541" dU="2.1267844734094843" aV="0" bV="8.8817841970012523e-16" cV="0.98022644884584376" dV="0.27311253958200005" /> - </geometry> - <geometry s="19.044495975165031" x="-567.17710713388067" y="-246.99159049387529" hdg="4.5473725574917516" length="88.026951516058446"> - <paramPoly3 aU="0" bU="88.089248391604897" cU="-7.0941808225132617" dU="6.7529900372848122" aV="0" bV="-1.0658141036401503e-14" cV="22.358786084018035" dV="-16.702097103193537" /> - </geometry> - <geometry s="107.07144749122348" x="-576.01150505692328" y="-334.47686443900898" hdg="4.49020543991222" length="63.974209278564345"> - <paramPoly3 aU="0" bU="58.565843731572258" cU="13.880440866046875" dU="-9.5121281250881307" aV="0" bV="2.1316282072803006e-14" cV="-10.351197792309977" dV="0.37691866352110281" /> - </geometry> - <geometry s="171.04565676978783" x="-599.60877406173972" y="-393.66607959314274" hdg="4.1636629405765397" length="47.997793193283975"> - <paramPoly3 aU="0" bU="41.383787898450905" cU="23.192719721697721" dU="-16.650647940581976" aV="0" bV="1.7763568394002505e-14" cV="-6.1697606285401356" dV="3.66236475761586" /> - </geometry> - <geometry s="219.04344996307179" x="-626.7462214727833" y="-433.2480705497872" hdg="4.1279160347446489" length="127.97514895602772"> - <paramPoly3 aU="0" bU="122.55155562347441" cU="0.19337378136466654" dU="2.5642532155869668" aV="0" bV="-0" cV="40.588297712655176" dV="-16.395885400004921" /> - </geometry> - <geometry s="347.01859891909953" x="-675.71025813288156" y="-551.10470878647334" hdg="4.3680701324326456" length="80.262417170960077"> - <paramPoly3 aU="0" bU="72.004159665265917" cU="16.749909820435509" dU="-8.5016738902388056" aV="0" bV="-7.1054273576010019e-15" cV="-2.4572250115723637" dV="1.2535993816225424" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.92295377009813" b="0.0011000460165425819" c="6.1297652364802701e-05" d="-4.9983833548817027e-06" /> - <elevation s="10.173357525953801" a="156.93522619903641" b="0.00079529578704256644" c="-8.1662045548261077e-05" d="-7.0950332614098556e-06" /> - <elevation s="20.346715051907601" a="156.92739477385791" b="-0.003069206884995998" c="-0.00033201129914355281" d="-2.3593932792998434e-07" /> - <elevation s="30.520072577861402" a="156.86155997011952" b="-0.0098978033644872357" c="-0.00043316372122256195" d="-5.2577037853393317e-07" /> - <elevation s="35.069955774318956" a="156.80750948753038" b="-0.013872144644767633" c="-0.00042380060605262351" d="7.5261263738772446e-06" /> - <elevation s="40.693430103815203" a="156.71743619438018" b="-0.017924601753870294" c="-0.00029578158874088781" d="-1.5223183952513254e-06" /> - <elevation s="50.866787629769007" a="156.5028673745594" b="-0.024415452547136004" c="-0.0003297788351949467" d="6.4041821674624349e-06" /> - <elevation s="61.040145155722804" a="156.22709211287213" b="-0.029136923704751752" c="-0.00015484893345786091" d="1.2907611882772328e-07" /> - <elevation s="71.213502681676601" a="155.91478124532188" b="-0.032247513777956482" c="-0.00047156534613031177" d="2.7965545713853694e-05" /> - <elevation s="81.386860207630406" a="155.56735537988533" b="-0.033159252189328893" c="0.00035041089356222763" d="-1.5819892663303365e-05" /> - <elevation s="91.56021773358421" a="155.24962401228117" b="-0.030941485530822981" c="0.00016955095579927786" d="-7.7549563361368419e-06" /> - <elevation s="101.73357525953801" a="154.94422796483886" b="-0.029899529425091571" c="-6.7478099898503986e-05" d="1.4131508753424238e-05" /> - <elevation s="111.9069327854918" a="154.64794483166398" b="-0.026884772190646899" c="7.6915219597441974e-05" d="2.0176763555518452e-05" /> - <elevation s="122.08029031144561" a="154.40364134017221" b="-0.019055084332338445" c="0.00044798305819283417" d="-1.5844864165670302e-06" /> - <elevation s="132.2536478373994" a="154.25448382022947" b="-0.010432070437793145" c="0.00044122123764285878" d="3.6027136407948436e-06" /> - <elevation s="139.06400942840088" a="154.20503993640529" b="-0.0039210254435098502" c="0.0005160722480340832" d="-2.3581654711075784e-07" /> - <elevation s="142.4270053633532" a="154.19768121838868" b="-0.00045792877162907186" c="0.00053563303088506012" d="-3.4908239420863105e-06" /> - <elevation s="152.60036288930701" a="154.24478352840856" b="0.0093565723339901815" c="0.00025190448277688548" d="1.4465613896649396e-05" /> - <elevation s="162.77372041526081" a="154.38127374161027" b="0.018973452814520193" c="0.00048736732468831529" d="-7.850167905544121e-07" /> - <elevation s="172.94707794121462" a="154.62391206049369" b="0.028646035768346283" c="0.0011067842260998333" d="-3.7726332825162745e-05" /> - <elevation s="183.12043546716842" a="154.99016491019495" b="0.039451749220479018" c="0.00043415180222710562" d="-1.0905645726098624e-05" /> - <elevation s="193.29379299312222" a="155.42497244976144" b="0.044899200729506004" c="-0.00018304300982282764" d="3.0156846590385537e-05" /> - <elevation s="195.04365474075729" a="155.5031409465154" b="0.044535623059962358" c="-0.00042882405334533364" d="2.9451569894747631e-05" /> - <elevation s="203.46715051907603" a="155.86546220139897" b="0.043580461118541636" c="3.9250419088305792e-05" d="-5.2846737760215775e-06" /> - <elevation s="213.6405080450298" a="156.30731981482751" b="0.042738231342079436" c="9.7680524993251508e-06" d="-1.065193685323111e-05" /> - <elevation s="223.81386557098361" a="156.73190651441283" b="0.039629642099156474" c="-0.00054770827568990867" d="3.0513213205768362e-05" /> - <elevation s="233.98722309693741" a="157.11051454830221" b="0.037959674578260827" c="-0.00013803073699513994" d="-1.490293494571597e-06" /> - <elevation s="244.16058062289122" a="157.48083694313726" b="0.03468847887763539" c="1.3929319368764488e-05" d="-1.3312163841074372e-05" /> - <elevation s="251.03741331070626" a="157.71571327403078" b="0.032991428330944879" c="-0.00053047207978644745" d="-8.7993019085244171e-06" /> - <elevation s="254.33393814884502" a="157.81839043400953" b="0.029207131509050459" c="-0.00021632814854385046" d="-2.458849003161793e-05" /> - <elevation s="264.5072956747988" a="158.06724610009118" b="0.017171044454241637" c="-0.00079008718949059669" d="2.4724754149173373e-05" /> - <elevation s="274.6806532007526" a="158.18619450099393" b="0.0087721942674465325" c="-0.00020055271773370507" d="-5.14136965877362e-06" /> - <elevation s="284.85401072670641" a="158.24926710379049" b="0.0030952531236047498" c="-0.00086655270781885499" d="4.3951833553489158e-05" /> - <elevation s="295.02736825266021" a="158.23734794182195" b="-0.00088957233505581939" c="-3.2727315145031138e-05" d="-2.6095064888797043e-06" /> - <elevation s="305.20072577861401" a="158.22216323276896" b="-0.0023656955619008341" c="-0.00012573933393727013" d="9.9688300849466445e-06" /> - <elevation s="315.01855501055451" a="158.1962511379572" b="-0.0019519904366606528" c="0.00013832421367586105" d="6.9283187579220872e-06" /> - <elevation s="315.37408330456782" a="158.19557494570989" b="-0.001851006867124164" c="0.00011891655176073976" d="-4.0612236317613073e-06" /> - <elevation s="325.54744083052162" a="158.18477540217427" b="-0.00069242153770237951" c="0.00016307958630981255" d="-1.2499381162332405e-05" /> - <elevation s="335.72079835647543" a="158.1814486573443" b="-0.0012552406460279012" c="-1.4767419338746621e-05" d="1.6031067097343168e-06" /> - <elevation s="345.89415588242923" a="158.16883819245143" b="-0.0010579579359738143" c="1.3137459595293644e-05" d="1.4882589439100165e-06" /> - <elevation s="356.06751340838304" a="158.16100190720459" b="-0.00032856187341255973" c="5.708784644117555e-05" d="-1.3795135997024065e-06" /> - <elevation s="366.24087093433684" a="158.16211525299406" b="0.00040466087239198411" c="4.4368250001503433e-05" d="-1.5446279671797238e-06" /> - <elevation s="376.41422846029064" a="158.16919764202567" b="0.00082781498806240323" c="6.6252222916657977e-06" d="5.848456337298409e-07" /> - <elevation s="386.58758598624445" a="158.17892078402969" b="0.0011442061606355156" c="6.8311462704815967e-05" d="-4.9297030697423969e-06" /> - <elevation s="396.76094351219825" a="158.19244069409461" b="0.0010034885838636515" c="-5.4162447932217733e-05" d="2.1433993703517759e-06" /> - <elevation s="406.93430103815206" a="158.19930069566129" b="0.0005669682107593755" c="-1.0966580162509989e-05" d="4.9334342185544202e-09" /> - <elevation s="417.1076585641058" a="158.20393885008028" b="0.00034536611903249214" c="-1.1048740417538733e-05" d="-1.7942890019103768e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.028457149297500123" b="0" c="-9.9802214771026177e-06" d="0" /> - <superelevation s="10.173357525953801" a="-0.02949007430920263" b="-0.00020306472254953329" c="-1.2872879302261116e-05" d="-1.0668428252235535e-07" /> - <superelevation s="20.346715051907601" a="-0.033000560719727096" b="-0.00049811010425791617" c="-9.4092875602008576e-05" d="7.7702293860292381e-06" /> - <superelevation s="30.520072577861402" a="-0.039624978665014438" b="0" c="2.0926516388249214e-05" d="0" /> - <superelevation s="40.693430103815203" a="-0.037459142742954261" b="0.00042578586598078272" c="0.00031092215326763062" d="-1.5066048863348759e-05" /> - <superelevation s="50.866787629769007" a="-0.016811152141552835" b="0.0020741485531298601" c="6.5333993787147663e-06" d="-2.1191128752313266e-07" /> - <superelevation s="61.040145155722804" a="0.0047429668429054299" b="0.0021412850917574924" c="5.5466369666606584e-05" d="-5.2337361324000195e-06" /> - <superelevation s="71.213502681676601" a="0.026756965465334664" b="0.0016448123519881373" c="-7.3156122190929388e-05" d="2.1755997524175143e-06" /> - <superelevation s="81.386860207630406" a="0.038209495082665995" b="0.00083183104942500521" c="-4.903805780274219e-06" d="-2.357727831743175e-06" /> - <superelevation s="91.56021773358421" a="0.043681994799314519" b="0" c="-1.2016043990955716e-06" d="0" /> - <superelevation s="101.73357525953801" a="0.043557632104474032" b="-2.4448702313512173e-05" c="-1.1380712198242414e-05" d="8.2452730511949121e-07" /> - <superelevation s="111.9069327854918" a="0.042999191216466941" b="0" c="3.6605735927535463e-08" d="0" /> - <superelevation s="122.08029031144561" a="0.043002979807762028" b="7.4480647818021266e-07" c="2.0518305790803417e-05" d="-1.3245622532221716e-06" /> - <superelevation s="132.2536478373994" a="0.04373949404720448" b="6.959461133656788e-06" c="-1.0261304268383922e-06" d="6.7242987330416139e-08" /> - <superelevation s="142.4270053633532" a="0.043774894590354815" b="6.959461133656788e-06" c="3.75446419844924e-05" d="-2.4827388836281589e-06" /> - <superelevation s="152.60036288930701" a="0.045117350463290268" b="0" c="-1.0978526380151956e-05" d="0" /> - <superelevation s="162.77372041526081" a="0.043981103686030663" b="-0.00022337694794680391" c="-5.5444193059446691e-05" d="1.1147199956880052e-06" /> - <superelevation s="172.94707794121462" a="0.037143995556014213" b="-0.0010053729391912769" c="-2.7654506794403267e-05" d="-5.0217404992230678e-07" /> - <superelevation s="183.12043546716842" a="0.023525066971406917" b="-0.00172397213812508" c="-8.1858321859292678e-05" d="4.3236682336624781e-06" /> - <superelevation s="193.29379299312222" a="0.0020668257041553052" b="-0.0020470573764201183" c="-5.4957696199306766e-06" d="1.1412056698424824e-06" /> - <superelevation s="203.46715051907603" a="-0.018125826161518803" b="-0.0018045434490371812" c="1.0837865869742187e-06" d="1.635667510018169e-06" /> - <superelevation s="213.6405080450298" a="-0.034649705652190742" b="-0.001274630913478601" c="1.3520977257712571e-05" d="2.0488093554256907e-06" /> - <superelevation s="223.81386557098361" a="-0.044060378154420543" b="-0.00036338532653556023" c="3.045963036705625e-05" d="-1.238526669460903e-06" /> - <superelevation s="233.98722309693741" a="-0.045908802577686404" b="-0.00012818404656468434" c="3.1790688041874163e-06" d="2.0451579823593987e-07" /> - <superelevation s="244.16058062289122" a="-0.046668502424072632" b="0" c="2.5078320505555628e-05" d="-9.3706967546098042e-07" /> - <superelevation s="254.33393814884502" a="-0.045059620216592045" b="0.00021930916904156649" c="1.2030568566329888e-05" d="-5.9159797695188148e-07" /> - <superelevation s="264.5072956747988" a="-0.042206281253313251" b="0.00028040551120544533" c="-2.6486959961202933e-05" d="2.6029216999060954e-06" /> - <superelevation s="274.6806532007526" a="-0.03935428918111037" b="0.00054966823372836783" c="0.0001148942686318971" d="-8.6913609628984165e-06" /> - <superelevation s="284.85401072670641" a="-0.0310223383285568" b="0.00018879451975988657" c="-2.7836609390495187e-05" d="1.8241509301447193e-06" /> - <superelevation s="295.02736825266021" a="-0.030062001254327762" b="0.00018879451975988657" c="2.9645532540967865e-05" d="-1.8362932162443695e-06" /> - <superelevation s="305.20072577861401" a="-0.027006556328155372" b="0.00022183008569255319" c="-1.8779668760232682e-05" d="1.0874154820866815e-06" /> - <superelevation s="315.37408330456782" a="-0.025548487710801135" b="0.00017735890048815463" c="2.7470656947150531e-05" d="-2.3713894541488452e-06" /> - <superelevation s="325.54744083052162" a="-0.023397885318003252" b="0" c="-4.2769574051009497e-06" d="1.0297157396490712e-22" /> - <superelevation s="335.72079835647543" a="-0.023840538448282024" b="-8.7022033610731787e-05" c="-0.00011130183567142381" d="7.5739527015648703e-06" /> - <superelevation s="345.89415588242923" a="-0.028270552195257617" b="0" c="0.00011366252294532402" d="-7.448378286477098e-06" /> - <superelevation s="356.06751340838304" a="-0.024349301111708826" b="0" c="-6.903331143688579e-05" d="4.5237973311348582e-06" /> - <superelevation s="366.24087093433684" a="-0.026730886002298181" b="0" c="9.9851889663912103e-06" d="-6.5433585984551769e-07" /> - <superelevation s="376.41422846029064" a="-0.026386406291314324" b="0" c="-1.4993966271683164e-05" d="7.9643147924408012e-07" /> - <superelevation s="386.58758598624445" a="-0.027099665971122077" b="-5.7792666940749167e-05" c="3.1558469451421557e-06" d="-1.9119045460799931e-07" /> - <superelevation s="396.76094351219825" a="-0.027562297217647549" b="-5.2944580478442352e-05" c="-3.3879682084873932e-06" d="2.6084971911247602e-07" /> - <superelevation s="406.93430103815206" a="-0.028176914263659734" b="-4.0886954952442909e-05" c="1.7393773811564623e-06" d="1.7702053235470688e-08" /> - <superelevation s="417.1076585641058" a="-0.028394212439405087" b="0" c="1.1745445209026634e-06" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="-3.7836453986431549" b="0.012920761195840312" c="-0.0026977637405855327" d="0.00020399049876755599" /> - <laneOffset s="3.9449338962627145" a="-3.7621342089945307" b="0.0011595704671435066" c="-0.0004910246558903138" d="9.0468687283432899e-05" /> - <laneOffset s="7.5633245266112645" a="-3.7600813678025649" b="0.0011595843597320414" c="0.0060074747478094164" d="-0.0015057698089190605" /> - <laneOffset s="10.316325422595625" a="-3.7427762316758439" b="-0" c="-0.00010843092373756878" d="4.3998839677686985e-06" /> - <laneOffset s="15.593260772675603" a="-3.745149077422965" b="-0.00077680782584896302" c="5.7938044808782376e-05" d="-2.7550906885014068e-05" /> - <laneOffset s="20.539993652359193" a="-3.7509089496261159" b="-0.0022261255732692752" c="-0.0049070711037635471" d="0.00045884338891436101" /> - <laneOffset s="26.696155927540129" a="-3.8435311911558685" b="-0.010475377631521846" c="0.0012821662737741665" d="-0.00018366149380598899" /> - <laneOffset s="29.859015826072934" a="-3.8696480533914128" b="-0.0078766269959061608" c="2.0261788857333746e-05" d="1.3931295171020368e-05" /> - <laneOffset s="35.49605704271584" a="-3.9109096526122369" b="-0.0063201416457028215" c="0.0021559784356901283" d="-0.00060208507745481744" /> - <laneOffset s="38.757347609030546" a="-3.9294750583282414" b="-0.011468957215495162" c="-0.46517316427870181" d="1.0969923511286437" /> - <laneOffset s="39.051876065986832" a="-3.9451778085238871" b="-0" c="0.0012138939736997432" d="-8.3322459897116157e-05" /> - <laneOffset s="40.693430103815203" a="-3.9422753053403494" b="0.0033117580952011752" c="0.0011489811163503583" d="-0.00013845576378223811" /> - <laneOffset s="42.310705295465482" a="-3.9344997134641302" b="0.0059417694220529919" c="0.00061559941690311954" d="8.3298325796590092e-05" /> - <laneOffset s="45.915541185037462" a="-3.9011789433385116" b="0.013627384860840136" c="0.0024189089421872115" d="-0.00029224621821947539" /> - <laneOffset s="49.572465685749698" a="-3.8332884498351314" b="0.019594208711716667" c="0.00081120256426687565" d="-0.0001994590797758124" /> - <laneOffset s="50.866787629769007" a="-3.8070007474404068" b="0.020691680255930496" c="0.00043328110662712845" d="-1.6068164965912007e-05" /> - <laneOffset s="57.623212091906368" a="-3.6523758434323197" b="0.024346042315812402" c="0.0011702191179285345" d="-0.00026297296835770163" /> - <laneOffset s="61.154763729235896" a="-3.5633843785743502" b="0.02277213705698998" c="-0.00078644757224510884" d="1.9895864741428097e-05" /> - <laneOffset s="65.03848025360135" a="-3.4856405606022975" b="0.017563741340057185" c="-0.0012001845948264023" d="7.3948515553473479e-05" /> - <laneOffset s="71.213502681676601" a="-3.4055363285956783" b="0.011200578554302761" c="-0.00032890016069154576" d="0.00034227830810528272" /> - <laneOffset s="72.246846037842886" a="-3.3939358135238464" b="0.011617297745963163" c="0.00011716698983234828" d="-1.6392973787388773e-05" /> - <laneOffset s="81.386860207630406" a="-3.2904823789166207" b="0.0096507134830174368" c="-0.00040368576094551979" d="-1.6603402571295832e-05" /> - <laneOffset s="89.389283468408109" a="-3.2476134971585453" b="-0" c="-0.0014943755298027263" d="0.00019625198155408423" /> - <laneOffset s="91.56021773358421" a="-3.2526484672160825" b="-0.0037136014685383747" c="-0.00024614608172392861" d="0.00018672788988628576" /> - <laneOffset s="93.480974789746242" a="-3.2593662989926728" b="-0.002592485206766307" c="0.0004297404275577505" d="-0.00011918942498977982" /> - <laneOffset s="96.533016007749779" a="-3.2666641687646534" b="-0.0033000468148889385" c="-0.0021160274057970456" d="0.00067604496458341444" /> - <laneOffset s="99.224286210812835" a="-3.2776937970742988" b="-0" c="0.0065581402988671399" d="-0.0015190994131537691" /> - <laneOffset s="101.47738231637938" a="-3.2617767991600264" b="0.0064173802673200544" c="-0.0008980731951807214" d="9.6127982736651872e-05" /> - <laneOffset s="107.86007053925948" a="-3.2324075679604296" b="0.0067015275871112178" c="0.0019372164329379204" d="-0.00022589032097363799" /> - <laneOffset s="111.9069327854918" a="-3.1885325048556394" b="0.011282542589664881" c="-0.00080088424600104047" d="-0.00022517059452857404" /> - <laneOffset s="114.97666880418777" a="-3.1679585385678481" b="-0" c="-0.00038288832122728274" d="2.6190117181519518e-09" /> - <laneOffset s="122.08029031144561" a="-3.187278695240646" b="-0.0054393909497994627" c="-0.00039062768459187315" d="3.1925612784404178e-06" /> - <laneOffset s="123.70132525497439" a="-3.1971090123207468" b="-0.0066806654032974984" c="-0.0009357379106971071" d="0.00010274338350212332" /> - <laneOffset s="128.5918002713546" a="-3.2401431427825482" b="-0.0084612089675701468" c="-5.5010126851483761e-05" d="1.4468186887539987e-05" /> - <laneOffset s="132.2536478373994" a="-3.271154018521353" b="-0.0082820690735932838" c="9.6410707374169948e-05" d="1.3191795124475087e-05" /> - <laneOffset s="137.28241824448241" a="-3.308686953654751" b="-0.0063116110574588276" c="0.00043402265991610061" d="-8.1645686609260518e-05" /> - <laneOffset s="140.38491257755229" a="-3.3265292012780439" b="-0.0059761399592721297" c="0.0010320770558123486" d="-0.00043329914592302827" /> - <laneOffset s="142.93581105199553" a="-3.3422502092226369" b="-0.0091692329389535272" c="-0.0016013433615455859" d="5.2275329950184345e-05" /> - <laneOffset s="150.95694513742779" a="-3.4918483835777789" b="-0.024768449199925859" c="-0.0033808062978426348" d="0.001049860865112354" /> - <laneOffset s="153.44588051261377" a="-3.5582516368377797" b="-0.022086633919909591" c="0.0027225682074553332" d="-0.00028112290751712929" /> - <laneOffset s="156.56442524383075" a="-3.6091780765629586" b="-0.013307764193520408" c="6.8837443589558943e-05" d="0.00023560919112299096" /> - <laneOffset s="160.42050413296462" a="-3.6459610872782955" b="-0.002266816348214662" c="0.00074319946695467637" d="-0.00011887041683985666" /> - <laneOffset s="162.77372041526081" a="-3.6487288632630568" b="-0.000743778218424075" c="5.268401305954307e-05" d="-0.00016254287823073095" /> - <laneOffset s="164.07852335354812" a="-3.6499707315812557" b="-0.0014364866803197446" c="0.00010158930373064349" d="-1.8067454232977198e-05" /> - <laneOffset s="173.65082447246593" a="-3.6702596556265834" b="-0.0044581053805462902" c="-0.00090291300101273805" d="3.1644177048888541e-05" /> - <laneOffset s="180.18057849217354" a="-3.7290579399624635" b="-0.012202001374053164" c="-0.001805857033051487" d="0.00016580706474441197" /> - <laneOffset s="183.12043546716842" a="-3.7763247612660695" b="-0.018520832643096782" c="-8.7400926471212706e-05" d="0.00018724093992483523" /> - <laneOffset s="187.60447240054879" a="-3.844248797296768" b="-0.008010321738499717" c="0.0033265729021628187" d="-0.0022112639986106228" /> - <laneOffset s="188.58998924891637" a="-3.8510287627414903" b="-0.0078965615341376853" c="-0.0019625334184831312" d="0.00022597794558351761" /> - <laneOffset s="193.28095643332949" a="-3.9079304648107538" b="-0.011390869817820701" c="0.00014597357297978556" d="3.6583398870540887e-06" /> - <laneOffset s="198.60560276505919" a="-3.963891919675766" b="-0.0095251923129234823" c="-0.00058636443807345005" d="0.00013456912481174744" /> - <laneOffset s="204.15575644645577" a="-4.0118136672794504" b="-0.0035981327218972121" c="0.00023314276206355157" d="1.0857224232448462e-05" /> - <laneOffset s="209.71416011061393" a="-4.0227458686474895" b="-0" c="0.0055309697645013721" d="-0.00077202304448184263" /> - <laneOffset s="212.70991396802725" a="-3.9938641909408377" b="0.012353190214065448" c="0.0014519916830642745" d="-0.00018840865745296012" /> - <laneOffset s="216.20886666680349" a="-3.9409354795266198" b="0.015594215601790121" c="0.00084665681220203013" d="-0.00025067170451601389" /> - <laneOffset s="219.45476193996109" a="-3.8899705776572095" b="0.013167426291872253" c="-0.0014110012109460088" d="0.00013726458341363105" /> - <laneOffset s="223.47929956473726" a="-3.8508840268314826" b="0.0084799548348116136" c="0.00082397727184892969" d="-0.00044004676596878437" /> - <laneOffset s="226.15569563434835" a="-3.8307223413483036" b="0.0034342423148156654" c="-0.00020427851926246092" d="6.5007639576191541e-07" /> - <laneOffset s="234.92888753823723" a="-3.8158771941472214" b="-0" c="-0.0012742947340085328" d="9.5303579857106469e-05" /> - <laneOffset s="241.6483955838693" a="-3.8444989833426355" b="-0.0042158862279997374" c="-0.0012239672259339693" d="0.0006297640888873725" /> - <laneOffset s="243.59457983121999" a="-3.8526975504085104" b="-0.0018240717254440354" c="0.00040766974538868306" d="-2.0039561151409937e-06" /> - <laneOffset s="245.86994730098374" a="-3.8547609635863327" b="-0" c="0.0027537976511696535" d="-0.00020819990259140142" /> - <laneOffset s="251.92033130035185" a="-3.8000659223998468" b="0.010458253461055708" c="0.00061917945522152701" d="-0.00011706937942131975" /> - <laneOffset s="255.06165153889538" a="-3.7647321440119987" b="0.010882651095706772" c="-0.0011180485917923052" d="0.00022813514390516304" /> - <laneOffset s="259.55004142005066" a="-3.717782048850927" b="0.014633963114597555" c="0.0013571673073662302" d="-7.644300331039101e-05" /> - <laneOffset s="264.89596960147151" a="-3.6124425577684942" b="0.022590619147858964" c="0.00071481262283420749" d="-7.9370901893964141e-05" /> - <laneOffset s="269.86109705895097" a="-3.4923705601633319" b="0.023818819454035772" c="-0.001454406954969463" d="0.00036079714676610653" /> - <laneOffset s="273.73777464230636" a="-3.4008699628882204" b="0.028809145256560136" c="0.0026842822370883065" d="-0.00022945112071522792" /> - <laneOffset s="279.45673458663259" a="-3.1912363155182173" b="0.036998119245658406" c="0.00078944533608060047" d="-0.0001439896156891823" /> - <laneOffset s="284.27926577743602" a="-3.0106011504691561" b="0.034566152615494901" c="-0.00082416284857765457" d="5.8139861206904063e-05" /> - <laneOffset s="288.49756157048506" a="-2.8750920606247452" b="0.030716652715889012" c="0.00016752419888759471" d="-0.00010285855839950552" /> - <laneOffset s="293.33093161858551" a="-2.734327734551965" b="0.025127285455032383" c="0.1271623568844045" d="-7.9322734898774643" /> - <laneOffset s="293.33906825572484" a="-2.7341191371777698" b="0.025621168105583219" c="-0.00098976084851898349" d="5.3641028160417937e-05" /> - <laneOffset s="295.02736825266021" a="-2.6934259563467471" b="0.022737829851486171" c="-0.00066433282618701128" d="4.9673640031100503e-05" /> - <laneOffset s="296.76524204366967" a="-2.6556561755093013" b="0.020878850411897118" c="0.0015828240512813733" d="-0.0013577136044951653" /> - <laneOffset s="297.46831909189984" a="-2.6406661817178252" b="0.021091120820535398" c="-0.0002199824830095098" d="-6.4364786733504516e-06" /> - <laneOffset s="305.20072577861401" a="-2.4937095578965569" b="0.016534619410506601" c="-0.0003517104098262222" d="-7.1945616946076867e-06" /> - <laneOffset s="308.99029691827303" a="-2.4364928401642771" b="0.013558996121844214" c="-0.0005403638213154142" d="4.3151660949937306e-05" /> - <laneOffset s="313.2231220268817" a="-2.3855090094053999" b="0.011303885144703364" c="-0.00016638392108403303" d="-2.8407258036034058e-06" /> - <laneOffset s="315.37408330456782" a="-2.3619928578312273" b="0.010548685402415017" c="-0.00015786405182510269" d="-1.9183258652083261e-06" /> - <laneOffset s="318.40548759213488" a="-2.3315196439429058" b="0.0095387010153875681" c="-0.00018860013044128964" d="2.6728666648896354e-06" /> - <laneOffset s="325.54744083052162" a="-2.2720410007249967" b="0.0072537630982861239" c="-0.00012734064365363737" d="3.4824361653360549e-06" /> - <laneOffset s="326.75603876485616" a="-2.2634539773212166" b="0.0069612162977316996" c="2.6658947830866553e-05" d="-1.4646533540369459e-05" /> - <laneOffset s="335.72079835647543" a="-2.2094582383796477" b="0.0039079082864280097" c="-0.00038845036137988379" d="-9.3148642447730614e-06" /> - <laneOffset s="338.23459846095471" a="-2.2022371984573201" b="0.0017783479504484276" c="-0.00018003421094523112" d="2.1891356456873299e-06" /> - <laneOffset s="343.72291292086601" a="-2.1975380825092583" b="-0" c="-0.003412312292142269" d="0.00041907628268912769" /> - <laneOffset s="345.89415588242923" a="-2.2093351173119347" b="-0.0088909691667519702" c="-0.00068339296083800411" d="0.00040752098124956823" /> - <laneOffset s="348.03520731685472" a="-2.2275041466032146" b="-0.0062129758125562115" c="0.00018649680555542705" d="-1.5990142121914021e-06" /> - <laneOffset s="355.97209825201861" a="-2.2658671064660001" b="-0.0035547522458420425" c="0.00013190834098741815" d="2.5657279981795697e-07" /> - <laneOffset s="366.24087093433684" a="-2.2881827973106712" b="-0.00076451367981793001" c="0.00013736459276674046" d="-3.5394965775467416e-07" /> - <laneOffset s="369.05425365834304" a="-2.2892542911772007" b="-0" c="0.00016269947406403069" d="-4.6194168815424999e-06" /> - <laneOffset s="376.41422846029064" a="-2.2822826744387967" b="0.0016442373049125364" c="5.9364285725601602e-05" d="-4.0251506895269402e-06" /> - <laneOffset s="379.40302668796733" a="-2.2769455509971763" b="0.001891224063788095" c="5.74000055295268e-05" d="8.0310787089830496e-07" /> - <laneOffset s="386.58758598624445" a="-2.2600972382544517" b="0.0028403757574658756" c="7.1336242936597213e-05" d="7.3104508426682176e-07" /> - <laneOffset s="393.2513244737234" a="-2.2377856811813888" b="0.0038884949641494722" c="0.00044030282356797066" d="-4.2600048755504874e-05" /> - <laneOffset s="396.76094351219825" a="-2.2205567254855789" b="0.0054049164904693857" c="-1.2957319805783665e-05" d="-4.2747235454261722e-05" /> - <laneOffset s="401.76093831564344" a="-2.1991994912134092" b="0.0020693074321565959" c="-0.0007703816887601006" d="0.00017898839689190477" /> - <laneOffset s="404.43607400911793" a="-2.1957503433465564" b="0.0017902676934673644" c="0.0003378794401497255" d="-1.2236192143238877e-05" /> - <laneOffset s="406.93430103815206" a="-2.189359879915076" b="0.0032493634914666724" c="0.00024195775368261981" d="-1.320490459437276e-05" /> - <laneOffset s="416.20883894222931" a="-2.1489454979411118" b="0.0043299152585963337" c="0.00055099978490898334" d="-5.5473925286587173e-05" /> - <laneOffset s="425.6007827617434" a="-2.1056336425645394" b="-0" c="-0.00058823063124071847" d="6.7653224935623551e-05" /> - <laneSection s="0"> - <left> - <lane id="3" type="shoulder" level="false"> - <link> - <predecessor id="-3" /> - <successor id="2" /> - </link> - <width sOffset="0" a="2.4933358730922723" b="0.0024774351768056709" c="-0.0021094317143078383" d="0.00081690018550219646" /> - <width sOffset="1.6789096151609861" a="2.4954152314815476" b="0.0023022263512499294" c="-0.0016779620939998451" d="0.00024424436160498328" /> - <width sOffset="5.2604624027587619" a="2.4933578660018516" b="-0.0003180447077539908" c="0.0015159791453059138" d="0.00019550885039438157" /> - <width sOffset="6.463995341987097" a="2.4955118036816817" b="0.0041805957102771414" c="-0.0028796643416660037" d="0.00037776299844247363" /> - <width sOffset="10.173357525953801" a="2.4906772351898829" b="-0.0015895001888885478" c="0.0013407211665743541" d="0.00037905070686821796" /> - <width sOffset="11.582727519345426" a="2.492161286888853" b="0.0044483964711323964" c="-0.0041651963697763705" d="-0.00024426308136266589" /> - <width sOffset="12.095289313943972" a="2.4933141937980388" b="-1.3962673329885838e-05" c="0.00027774013659391593" d="-4.0900764165133296e-05" /> - <width sOffset="20.086966022030644" a="2.4900651123493502" b="-0.0034113585404865424" c="0.0076323658136783299" d="-0.0026546610789523724" /> - <width sOffset="20.346715051907601" a="2.4896474442899135" b="1.631425795858496e-05" c="0.0058001058929417516" d="-0.0027268484929663483" /> - <width sOffset="21.726021572248875" a="2.4935490138192664" b="0.00045318486302319688" c="-0.00023683314214044057" d="-0.00027510957422024942" /> - <width sOffset="22.234939046201269" a="2.4936820467734568" b="-1.6298451594350116e-06" c="0.00029005203663223247" d="-4.354721878033877e-05" /> - <width sOffset="28.088296260679982" a="2.4948769665767205" b="-0.001082090566450266" c="0.00011097147715043382" d="0.0002524986614435039" /> - <width sOffset="29.103498516459645" a="2.4941569872099669" b="-7.6071235023573991e-05" c="-3.6017081318227276e-05" d="-7.8133132922080005e-06" /> - <width sOffset="30.520072577861402" a="2.4939547416082974" b="-0.00022514946845657996" c="8.8700294075283752e-06" d="4.0409832258681201e-05" /> - <width sOffset="31.130635058305252" a="2.4938297780787093" b="-0.00016912532919144928" c="0.00059308565410375741" d="-0.00022769862646317878" /> - <width sOffset="32.649316880080498" a="2.4941432647117852" b="5.6802911434854567e-05" c="0.000684145658252051" d="-0.00012035529778069723" /> - <width sOffset="38.117364514910633" a="2.4952323648795582" b="-0.0032570208947139429" c="0.00061811480766018213" d="1.5366490276081111e-06" /> - <width sOffset="40.693430103815203" a="2.4909702148231503" b="-4.182018870297179e-05" c="0.00050688737649766413" d="6.6503784307524268e-06" /> - <width sOffset="41.149567641461545" a="2.4910572339412047" b="0.00042475159305588404" c="0.00033082922647610863" d="-3.9829463753457051e-05" /> - <width sOffset="45.407579313821714" a="2.49578912697186" b="0.0010756972064592061" c="-0.00085807590582176007" d="0.00010317958088978672" /> - <width sOffset="50.424627895203457" a="2.4926173431747509" b="0.00025701069431628004" c="-0.00068363301300537597" d="7.8591182760793079e-05" /> - <width sOffset="50.866787629769007" a="2.4926041229038112" b="-0.0003014443268371976" c="-0.00042693990315658894" d="8.6134733018333246e-05" /> - <width sOffset="56.334439343138001" a="2.4922717627547915" b="0.0027548874416671067" c="-0.00048321897266356611" d="2.2036228642499909e-05" /> - <width sOffset="61.040145155722804" a="2.4968314224066424" b="-0.00032899647531313761" c="-0.0001545687249684627" d="1.5778981802152812e-05" /> - <width sOffset="68.035521373172116" a="2.4923675760794524" b="-0.00017508216396459192" c="0.00057484802804001831" d="-6.601116739366573e-05" /> - <width sOffset="71.213502681676601" a="2.495498173799596" b="0.0014785781462110723" c="0.00034966164946611459" d="-2.2858222151794516e-05" /> - <width sOffset="71.401305308312743" a="2.495788035757363" b="0.0016074942820087333" c="7.7238870672113164e-05" d="-0.00019973265107937844" /> - <width sOffset="73.455633200840325" a="2.4976846814798495" b="-0.00060393079083733391" c="-0.0033107031720982557" d="0.0011278302557087207" /> - <width sOffset="75.39662145688348" a="2.4922869112970898" b="-0.00070891981760152697" c="0.0021940738358731588" d="-0.0007834413376563424" /> - <width sOffset="77.126151665611815" a="2.49357075692207" b="-0.00014995071658822608" c="0.0020053571520208128" d="-0.00099157380052865675" /> - <width sOffset="78.150891844889344" a="2.4944559020591694" b="0.0008362569382564071" c="-0.001665780349220602" d="0.00029286833118234208" /> - <width sOffset="81.386860207630406" a="2.4896427634725367" b="-0.00074426358300703349" c="0.0011917554587627356" d="0.00034997530943804499" /> - <width sOffset="82.785472054173766" a="2.4918905169158831" b="0.0046431189820203451" c="-0.0019310838345790147" d="-0.00030984176495289903" /> - <width sOffset="83.768058980645691" a="2.4942944316840068" b="-4.9231833921512082e-05" c="-2.0649012729838019e-05" d="4.1681150169820998e-07" /> - <width sOffset="91.56021773358421" a="2.4928542508699785" b="-0.0002951090497812773" c="8.4936501563293422e-06" d="2.2583703107349171e-06" /> - <width sOffset="93.798446440151309" a="2.4922616023027109" b="-0.00022314653188260309" c="0.00029661103349995553" d="-2.6251202202476916e-05" /> - <width sOffset="101.73357525953801" a="2.496051102094401" b="-0.00047467382004697819" c="-0.00034208802502713775" d="-2.4008953569734491e-05" /> - <width sOffset="101.74154201174797" a="2.4960472987615212" b="-0.0004801290529454502" c="-8.1617214300601666e-06" d="3.6767282833481832e-06" /> - <width sOffset="105.40536352676529" a="2.4943594595139693" b="-0.00039187057606956813" c="0.0013145002940635926" d="-5.4801883036469716e-05" /> - <width sOffset="106.2393574793517" a="2.4949151475946572" b="0.00168634833846456" c="-0.00049044944056958516" d="2.8476965810480002e-05" /> - <width sOffset="111.9069327854918" a="2.4939029724318962" b="-0.0011288090677861167" c="-8.6185688796839785e-06" d="2.8305443754483091e-05" /> - <width sOffset="117.38988191258096" a="2.4921203269663863" b="0.0013294974181224436" c="0.0004680834230781695" d="-0.0002697336279550523" /> - <width sOffset="119.35095188463319" a="2.4944934205015494" b="5.336504355244083e-05" c="0.0017405014295444248" d="-0.00051999028109367483" /> - <width sOffset="121.73250137804813" a="2.4974684185733249" b="-0.00050426265412496785" c="-0.0062106602010277897" d="0.0029107909482065288" /> - <width sOffset="122.08029031144561" a="2.4966642677533137" b="-0.0037680175643036821" c="-0.003158312610419448" d="0.0029067857743007939" /> - <width sOffset="123.33982206442812" a="2.4927161032375107" b="0.002110143727291125" c="-0.00031127936250685008" d="-0.00030251631534986933" /> - <width sOffset="124.56637149466843" a="2.494277784666239" b="-1.8793288385053272e-05" c="0.00023198427305253498" d="2.3409781183081359e-05" /> - <width sOffset="125.38144211981438" a="2.4944292592944137" b="0.00040603001533964079" c="2.7251896124198122e-06" d="-3.0830156514854931e-06" /> - <width sOffset="132.2536478373994" a="2.496347675702105" b="6.6794466153808491e-06" c="-5.8049501148062514e-05" d="-2.8853243795239133e-06" /> - <width sOffset="137.04908375464868" a="2.4947266038673668" b="-0.0007491204172304991" c="0.00048917957679511391" d="-9.6008208948206359e-05" /> - <width sOffset="139.25900133283568" a="2.4944239499328011" b="6.3365207830026749e-06" c="-0.00095314926157129244" d="-4.1397936537085808e-05" /> - <width sOffset="140.08528004382362" a="2.4937550820218455" b="-0.0016535890135928807" c="0.00034165924087721793" d="-1.6806581301849417e-05" /> - <width sOffset="142.4270053633532" a="2.4915405620555169" b="-0.00032993043737121475" c="0.00023177013515179976" d="-1.7646855960662348e-05" /> - <width sOffset="150.39786293294031" a="2.494699340268181" b="1.3267981560996511e-06" c="0.0024441583003853426" d="-0.00067472032395147986" /> - <width sOffset="151.82859990408781" a="2.4977283769046781" b="0.0028517478148797071" c="-0.0046785588192410363" d="0.0012011608412953708" /> - <width sOffset="152.60036288930701" a="2.4976947607910156" b="-0.0022234297932849888" c="-0.0018791704859614632" d="0.0012137684963616552" /> - <width sOffset="154.03726929987369" a="2.494220961868689" b="-0.00010561046645644716" c="-0.013605500950119453" d="0.011272911234875956" /> - <width sOffset="154.77937849193361" a="2.4912569095746204" b="-0.0016742873732106256" c="0.44946349271973385" d="-1.308770861295123" /> - <width sOffset="155.02097750465884" a="2.4986311359735027" b="-0.013673606387212498" c="0.0068870677518508136" d="0.0095905248436628232" /> - <width sOffset="155.51095254195744" a="2.4947129698864181" b="-1.7272619109276466e-05" c="4.1227842290840824e-07" d="4.1052082368713385e-08" /> - <width sOffset="162.77372041526081" a="2.4946249964896694" b="-4.7878333957491331e-06" c="-0.00010406395977724894" d="5.3334988143560623e-05" /> - <width sOffset="164.33050382574555" a="2.494566567983219" b="5.8986039796659478e-05" c="-0.0028596315208265018" d="0.0012873294013954629" /> - <width sOffset="165.70748513051799" a="2.4925867487078133" b="-0.00049370325352831972" c="0.013095794223620122" d="-0.008846207453214492" /> - <width sOffset="166.86511707937177" a="2.4958414311288903" b="-0.0057382027716187181" c="0.0048792848835980474" d="0.0011929517436302286" /> - <width sOffset="167.35364365819646" a="2.4943417352937582" b="-0.00011675885637182263" c="-4.8279464356133816e-05" d="1.1708057146426683e-05" /> - <width sOffset="172.94707794121462" a="2.4942270550421761" b="0.00044205775979745112" c="-0.00014146329865558717" d="2.8768930708766342e-05" /> - <width sOffset="173.72323535098997" a="2.4944983926568809" b="0.00027445515060970207" c="-0.00055927098128592855" d="0.0001143512668501989" /> - <width sOffset="176.92839281191328" a="2.4933978636516265" b="0.00021355551063510564" c="0.00026355071861963741" d="-0.00013271001972733654" /> - <width sOffset="180.32402312802162" a="2.4919658899606398" b="-0.0025871639784609008" c="0.0032255692999868819" d="-0.00083680031776281016" /> - <width sOffset="182.30692636286204" a="2.4929942399718699" b="0.00033416096025770843" c="0.0010712955414760631" d="-0.00060006968264279023" /> - <width sOffset="183.12043546716842" a="2.4936519989210044" b="0.00088580525272086499" c="0.00010622076858241638" d="-0.00073766602148622946" /> - <width sOffset="184.4066060585518" a="2.4933975306935743" b="-0.0025017770785278979" c="0.00050704700054282322" d="-2.5286708510411983e-05" /> - <width sOffset="193.29379299312222" a="2.4934619385530499" b="0.00051907449409330578" c="-0.00016658739375269456" d="-2.8164394038884394e-05" /> - <width sOffset="195.57621045183595" a="2.4934439807076689" b="-0.0006815307294472453" c="-0.00020000541164994108" d="0.00011739268393019754" /> - <width sOffset="197.57328709512643" a="2.4922202563186677" b="-7.5785953125375588e-05" c="-0.00083146746782490405" d="0.00022565104290693706" /> - <width sOffset="198.74553844379534" a="2.4913523317448059" b="-0.0010949128104894394" c="0.00082876686054070801" d="-0.00011756121790346515" /> - <width sOffset="203.46715051907603" a="2.4922840834241988" b="-0.001131277141763011" c="-0.000575914656429971" d="-0.00014649610684128617" /> - <width sOffset="203.79499184207521" a="2.4918461427705769" b="-0.0015561305628208118" c="0.001919370022783317" d="-0.00042697252919320647" /> - <width sOffset="206.63250950528783" a="2.4931296759797301" b="-0.00097695414737174581" c="0.0018299979538525042" d="0.00010474051718381782" /> - <width sOffset="206.88350315873527" a="2.4930014087223338" b="-3.8523132011424358e-05" c="0.00020412821198658696" d="-1.3417557886738866e-05" /> - <width sOffset="212.09047669924269" a="2.4964410445446852" b="0.00099590369412448383" c="-0.00066866538692856702" d="0.00013669951893563527" /> - <width sOffset="213.6405080450298" a="2.4968872757252067" b="-9.1699291833085249e-05" c="-0.0002093737590112865" d="2.9118873945033764e-05" /> - <width sOffset="219.68008007813214" a="2.4951111909102464" b="0.00056570264075786816" c="-0.00044899064647711123" d="0.00010320053375132602" /> - <width sOffset="222.89743730073982" a="2.4957205842881329" b="0.00088138218664509174" c="-0.00092074403322102655" d="0.00015434852692956818" /> - <width sOffset="223.81386557098361" a="2.4958738243935228" b="-0.00041732497755834173" c="-0.0003231065890786708" d="0.00012369571192314289" /> - <width sOffset="225.94901066434181" a="2.4947138109508353" b="-0.00010535530038353891" c="-0.0010701010424168697" d="0.00023861081479406899" /> - <width sOffset="229.04822165082678" a="2.4912118841952635" b="0.00013735535201604221" c="-7.0370494833150738e-05" d="9.2465227542941428e-05" /> - <width sOffset="230.35941000495652" a="2.4914794373917397" b="0.00042972019619334214" c="0.00019236981156267564" d="-2.0042099591919275e-05" /> - <width sOffset="233.98722309693741" a="2.4946132413311868" b="0.0010341597464478924" c="-2.6569843598898628e-05" d="-2.0525710949844742e-05" /> - <width sOffset="237.66844237448166" a="2.4970362151189427" b="4.0860641205603572e-06" c="-0.0011446952168683345" d="0.00033200827409476816" /> - <width sOffset="239.95084214218818" a="2.4950299419877049" b="-3.2577517268036343e-05" c="-0.001284427865068461" d="0.00032949925335616127" /> - <width sOffset="242.4075743790593" a="2.4920834131360925" b="-0.00037745706962781099" c="0.00056413206579646004" d="-7.592007533008999e-05" /> - <width sOffset="244.16058062289122" a="2.4927463391407985" b="0.00090048278755481669" c="0.00015907031280773597" d="-7.3591708289624482e-05" /> - <width sOffset="246.96724529175455" a="2.4948996991470525" b="5.4270254515919984e-05" c="0.0016440735891221818" d="-0.00026455366583461444" /> - <width sOffset="248.46934635033912" a="2.4977941284532212" b="0.0032026562790236856" c="-0.0036605903845966185" d="0.00072927093847475078" /> - <width sOffset="251.6530986033622" a="2.4944204229146032" b="0.0020701103134233585" c="-0.00298552578263087" d="0.0013941115671569455" /> - <width sOffset="252.41192149152994" a="2.494881310257965" b="-5.2621037155170525e-05" c="-0.0028365003721205389" d="0.0016390888202357065" /> - <width sOffset="254.03799086793049" a="2.4943429999443469" b="0.0037244383796614356" c="-0.00096860153543520998" d="0.00010501488810167432" /> - <width sOffset="254.33393814884502" a="2.4953631246271333" b="0.0031787215199840652" c="-0.0010002508229294534" d="7.5764489295582053e-05" /> - <width sOffset="261.11011474417148" a="2.4945478877248992" b="5.9505346935622219e-05" c="0.00044808126889747972" d="-8.47781532035266e-05" /> - <width sOffset="264.5072956747988" a="2.4965974325733336" b="0.00016869876484472759" c="-0.00050034575134344213" d="-9.6349430120215129e-05" /> - <width sOffset="264.91688324737362" a="2.4965759700174059" b="-0.00028966335203332166" c="-0.011213601425449032" d="0.028573241489253193" /> - <width sOffset="265.12097356354718" a="2.4962926735422002" b="-0.0012963668340721067" c="7.8963441782977208e-05" d="3.9186047788145918e-05" /> - <width sOffset="269.76382828847903" a="2.4958977863017848" b="0.0019709598372911405" c="-0.00085970273076862763" d="7.8821425959169951e-05" /> - <width sOffset="274.6806532007526" a="2.4941743073323503" b="-0.00076649231153255032" c="0.0005159395472598958" d="-1.622322457484989e-05" /> - <width sOffset="275.54696853806098" a="2.4938869492048279" b="9.0913673984685528e-05" c="-0.002568424559230279" d="0.00047632095005348371" /> - <width sOffset="275.94079117258741" a="2.4935534938890225" b="-0.0017104669746095535" c="0.00050687789501117214" d="-3.7074117841827501e-05" /> - <width sOffset="282.69497900780846" a="2.4937007039757106" b="6.2771575117498424e-05" c="-0.0034939223384341856" d="-0.00026014559875456571" /> - <width sOffset="283.21204185484919" a="2.4927630845357815" b="-0.0037590361778808701" c="0.0017058969384264409" d="-0.00016392020219624026" /> - <width sOffset="284.85401072670641" a="2.4904644176059851" b="0.0005172061906646569" c="0.00085138762751367286" d="-0.00017315367134763894" /> - <width sOffset="289.88341561467553" a="2.4925731069683366" b="-0.0040585690495174714" c="0.0035285280107091939" d="-0.00071284807704429746" /> - <width sOffset="292.38222673329489" a="2.4933414712617332" b="0.00022248891133115622" c="0.0019093568649015159" d="-0.0012803105636894959" /> - <width sOffset="293.35426417578088" a="2.4941859240718092" b="0.00030529125216003511" c="-0.00045911595422262579" d="8.6861207644242655e-05" /> - <width sOffset="295.02736825266021" a="2.4938183281820905" b="-0.00050156048944229037" c="-5.9507807284147826e-05" d="9.844522090592155e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="3.4627442707896079" b="-0.0037088353897525399" c="0.00038502834626758485" d="0.0024747920833188839" /> - <width sOffset="0.73436208452913476" a="3.4612083816355574" b="0.00086053962609056178" c="0.0031220777646440976" d="-0.00097647253315632501" /> - <width sOffset="1.6789096151609861" a="3.4639837559710616" b="0.0041449027022282293" c="0.0040381387127674589" d="-0.00040381670925797173" /> - <width sOffset="6.463995341987097" a="3.5320350109697669" b="0.015051953945728893" c="0.0033427935086470205" d="-0.000586070857306229" /> - <width sOffset="10.173357525953801" a="3.6039507202052548" b="0.015659324136863939" c="-0.0031141460763525262" d="-0.00060764189335687103" /> - <width sOffset="10.747554375842949" a="3.6118004795025862" b="0.011482036119146005" c="-0.0052602196715654309" d="-0.00062442141350629876" /> - <width sOffset="11.582727519345426" a="3.6173571362521058" b="0.0013890193519647798" c="0.00028386595712098187" d="-1.1076252718467198e-06" /> - <width sOffset="14.426792461064871" a="3.6235782248909181" b="0.0029768080220271293" c="0.0029376092722239473" d="-0.00025776136778517413" /> - <width sOffset="20.086966022030644" a="3.6877993456841685" b="0.011457425168343709" c="-0.0097745356947034883" d="0.0023559989469985089" /> - <width sOffset="20.346715051907601" a="3.6901572063889891" b="0.0068564474664469053" c="-0.0079329147424734136" d="0.0023524814546465518" /> - <width sOffset="21.402704543879093" a="3.6913216010259684" b="-0.0020278480976167503" c="0.0018097146393500766" d="0.0025746434611574336" /> - <width sOffset="21.726021572248875" a="3.6909421564802716" b="-5.0212406077877053e-05" c="-0.00093954782565316205" d="0.00012290454240260039" /> - <width sOffset="28.088296260679982" a="3.6842434611404431" b="0.0029194539110545294" c="0.00082069782983474173" d="-0.00017314133782022332" /> - <width sOffset="30.520072577861402" a="3.6937063050654242" b="0.0038393283709934022" c="-0.00044190687935900298" d="-0.00017290277256272777" /> - <width sOffset="31.130635058305252" a="3.695846363671706" b="0.0031063373698900776" c="-0.0012688081588721127" d="9.5205686166728099e-05" /> - <width sOffset="34.416694161158929" a="3.6957313756814525" b="-0.0021482741572732833" c="0.0034291284036620834" d="-0.0015135231203478254" /> - <width sOffset="36.401961007175132" a="3.6931390849778607" b="-0.006428479712560305" c="0.0012642259287896267" d="0.00014504597726924451" /> - <width sOffset="38.117364514910633" a="3.6865639287630541" b="-0.00081072364797993041" c="0.00010236840984588133" d="2.3154030461139666e-05" /> - <width sOffset="40.693430103815203" a="3.6855505995497673" b="0.00017765017943609696" c="0.00026950096925586225" d="2.36196777773988e-05" /> - <width sOffset="41.149567641461545" a="3.6856899468454847" b="0.00043825222990978878" c="0.00048698104598701871" d="7.0099519961610681e-05" /> - <width sOffset="45.407579313821714" a="3.7017970427297215" b="0.0083982465891594728" c="0.0020625569362569198" d="-7.2909524681660236e-05" /> - <width sOffset="46.992985751565229" a="3.7200054016669557" b="0.014388451439438352" c="0.0020282755581372816" d="-0.0002075893848336491" /> - <width sOffset="50.670838958632231" a="3.7900323584314717" b="0.020883912629831448" c="-0.001461576316983835" d="1.7263086262681542e-05" /> - <width sOffset="50.866787629769007" a="3.7940685447289657" b="0.020313113249926733" c="-0.0016038718208898795" d="9.719535968915374e-06" /> - <width sOffset="56.334439343138001" a="3.8587742024062797" b="0.0036459910909167753" c="2.4700522802815258e-05" d="7.3818040344753272e-05" /> - <width sOffset="59.820032219278559" a="3.8749087637741053" b="0.0065087083537396818" c="-0.0005819510969025134" d="9.4165561990292428e-06" /> - <width sOffset="61.040145155722804" a="3.8820008904344832" b="0.0051306708220425178" c="-0.00050691925821878857" d="8.4286963730255429e-06" /> - <width sOffset="70.832557532319342" a="3.8915479773706418" b="-0.0023725370413265456" c="-0.0011671540624506574" d="5.4513447045263083e-06" /> - <width sOffset="71.401305308312743" a="3.8898220610854484" b="-0.0036948794904846909" c="-0.00089830846563436755" d="0.00018232577370970042" /> - <width sOffset="73.455633200840325" a="3.8800211977826127" b="-0.0050773315651402931" c="0.0023823552760288513" d="-0.0011452371330783718" /> - <width sOffset="75.39662145688348" a="3.8707669250920609" b="-0.0087729051245072111" c="-0.0032237813655902449" d="0.00076603446028694134" /> - <width sOffset="78.150891844889344" a="3.838153804574274" b="-0.00909781164121835" c="0.0037286376837713116" d="-0.00051840767142461591" /> - <width sOffset="81.386860207630406" a="3.8301915120300518" b="-0.0012518086570659347" c="-0.00091973482094368213" d="-0.00062196525740693706" /> - <width sOffset="82.785472054173766" a="3.8249400094388708" b="-0.0074744195795776753" c="0.0010618793822898414" d="3.7851816982594173e-05" /> - <width sOffset="83.44748388555908" a="3.8204682162110659" b="-0.0060186993765382023" c="0.0019423178310305127" d="-0.00045648717771742373" /> - <width sOffset="86.271361515247136" a="3.8086813783842532" b="-0.0059694400113301897" c="-0.0016294492936024085" d="0.0001066558471755555" /> - <width sOffset="91.56021773358421" a="3.7473095666022731" b="-0.014255153966180031" c="8.8529040116599664e-05" d="0.00010873315456740348" /> - <width sOffset="93.798446440151309" a="3.7170659740301386" b="-0.012224706557212008" c="0.00054568490827677828" d="0.00013724272708061114" /> - <width sOffset="95.33044463767736" a="3.7001119519844816" b="-0.009586396316449617" c="0.00094571200155411407" d="-4.0179707588496662e-05" /> - <width sOffset="101.73357525953801" a="3.6669549399704744" b="-0.0024174752519622936" c="0.00017461297929159247" d="-4.0253004776923481e-05" /> - <width sOffset="101.74154201174797" a="3.6669356916063509" b="-0.0024147007196226554" c="-0.00016084917367495852" d="-6.7935176126575936e-05" /> - <width sOffset="106.2393574793517" a="3.6466391976475734" b="-0.0079846964665089091" c="0.00059030758615322967" d="-0.00015121402137304005" /> - <width sOffset="106.25719938786075" a="3.6464969224796948" b="-0.0079637764481894531" c="-0.00095026276492878037" d="0.00043953959706388029" /> - <width sOffset="109.50145456128844" a="3.6256673999864866" b="-0.00025085076603842231" c="0.0013717708848861824" d="-8.8351385903958225e-05" /> - <width sOffset="111.9069327854918" a="3.6317717444304893" b="0.0048149895901079846" c="0.00073009959149750257" d="-8.8733576753578577e-05" /> - <width sOffset="117.38988191258096" a="3.6654947044465449" b="0.0048184664453829688" c="-0.00074057553769714662" d="0.00020930549495604367" /> - <width sOffset="121.73250137804813" a="3.6895944345927525" b="0.010227855917131448" c="0.0062222406712234479" d="-0.0032214757343632149" /> - <width sOffset="122.13864356527699" a="3.6945589473991109" b="0.013687923254249348" c="0.002146483986106625" d="-0.0032154858472200837" /> - <width sOffset="123.33982206442812" a="3.7085248515033644" b="0.0049263478015828801" c="-0.0013040997082708094" d="-6.1837575697240494e-06" /> - <width sOffset="125.38144211981438" a="3.7130941941376312" b="-0.00047593008155314044" c="-0.0010554734002984354" d="2.0309039260840952e-05" /> - <width sOffset="128.64226466158485" a="3.7010236195260608" b="-0.0067115171648026535" c="0.0010844314883527175" d="-0.0001455674264706196" /> - <width sOffset="132.2536478373994" a="3.6840727880362194" b="-0.004574431651237585" c="-0.00048581403344810908" d="-0.00014499757926385304" /> - <width sOffset="132.61816604910678" a="3.6823337496355055" b="-0.0049864067957719107" c="0.0017563244754151958" d="-0.00020149497504236361" /> - <width sOffset="137.04908375464868" a="3.6771928446464743" b="-0.0012900200714066647" c="-0.0015108367244938913" d="-0.00010837209047381048" /> - <width sOffset="140.08528004382362" a="3.6563152189400001" b="-0.013461494200595333" c="-0.003895380744701595" d="-0.00013296344571006339" /> - <width sOffset="140.45359443502144" a="3.6508220837440124" b="-0.016385055439977168" c="-0.006143789972770093" d="0.0028174446266060779" /> - <width sOffset="141.86234624389022" a="3.623423718153882" b="-0.016920859121320665" c="0.013468181918976151" d="-0.0032510770535473057" /> - <width sOffset="142.4270053633532" a="3.617578084320527" b="-0.004820715089679465" c="0.0079695389375724329" d="-0.0032512997405113775" /> - <width sOffset="144.09264571507941" a="3.6166343355203301" b="-0.0053327500147975528" c="-0.0013127730452769262" d="0.00014034487724361088" /> - <width sOffset="151.82859990408781" a="3.5617913344353198" b="-0.00044704213968520951" c="0.0061710067594182702" d="-0.0017355362880052707" /> - <width sOffset="153.56964269492914" a="3.5705594610222042" b="0.0052585025372727939" c="-0.0028657964839965619" d="-0.0019193361294160517" /> - <width sOffset="154.77937849193361" a="3.5693288850472711" b="-0.010101829628115067" c="-0.44780326587453773" d="1.3181244364005831" /> - <width sOffset="155.02097750465884" a="3.5593383735462556" b="0.0043376145836342608" c="0.0015526026261455676" d="-0.00023694973820639214" /> - <width sOffset="157.44537390497203" a="3.5756036970512044" b="0.0076877060793791412" c="8.9497856424861381e-06" d="-5.7167568306444029e-05" /> - <width sOffset="162.77372041526081" a="3.6081723273817734" b="0.002913900475928077" c="-0.00097363360962445303" d="-4.4210039490236831e-05" /> - <width sOffset="164.52236146434319" a="3.6100541829298072" b="-0.00089672006755976783" c="-0.0019101401098924953" d="-6.1432422417465499e-05" /> - <width sOffset="165.70748513051799" a="3.606206376424645" b="-0.0056830734158443844" c="-0.012766095350953195" d="0.01007210443219274" /> - <width sOffset="166.86511707937177" a="3.5981448961371769" b="0.0052532827594955912" c="-0.00029217348431521072" d="3.2945235345739747e-05" /> - <width sOffset="172.94707794121462" a="3.6266993829979195" b="0.0053552646367068394" c="0.00030726475392613476" d="3.3142358499396587e-05" /> - <width sOffset="173.72323535098997" a="3.631056510331804" b="0.005892133158865694" c="0.00086923115415695514" d="-5.2439977644364814e-05" /> - <width sOffset="176.89348659214363" a="3.6568013809766411" b="0.0098223525754842396" c="-0.00020592360977311709" d="-6.4465730193184441e-05" /> - <width sOffset="180.32402312802162" a="3.6854712459778494" b="0.0061334851538226666" c="-0.0051833008180718759" d="0.00063962456784221909" /> - <width sOffset="183.12043546716842" a="3.6760771265745085" b="-0.0078503649436227965" c="-0.00032080348160603634" d="0.00077738161313789609" /> - <width sOffset="184.4066060585518" a="3.6671035127666483" b="-0.0048176658219310324" c="-0.00056838663556117101" d="6.5002300162079462e-05" /> - <width sOffset="188.21837078742675" a="3.6440813390531841" b="-0.006317415502643229" c="0.00050110218232511281" d="7.8361198073471528e-06" /> - <width sOffset="193.29379299312222" a="3.6259506488131259" b="-0.00062523197938608999" c="0.0005930869580280287" d="4.5506123036400574e-06" /> - <width sOffset="195.57621045183595" a="3.6276673602989673" b="0.0021532303570199335" c="0.00046481545282992746" d="-0.00014100646566565697" /> - <width sOffset="198.74553844379534" a="3.6346716506187096" b="0.00085045808624704608" c="-0.0017425468734517269" d="0.00020220579514444134" /> - <width sOffset="201.8646357120225" a="3.626507407642571" b="-0.0041182486319211679" c="0.0044021714346512211" d="-0.00096826608927135156" /> - <width sOffset="203.46715051907603" a="3.6272281177731167" b="0.0025311632232713713" c="-0.00020436878186126228" d="-0.00097210407382067993" /> - <width sOffset="203.79499184207521" a="3.6280017187175067" b="0.0020837171172605525" c="-0.0037998235504528841" d="-0.00069162765145768066" /> - <width sOffset="204.94261901705619" a="3.6243431170740745" b="-0.0093705651367459696" c="0.00077274031027172992" d="0.00052123838189464063" /> - <width sOffset="206.63250950528783" a="3.6132300548110354" b="-0.00229332409881323" c="-0.00013000654967178823" d="-1.0474664502447432e-05" /> - <width sOffset="212.09047669924269" a="3.5951372777256503" b="-0.0046485691623123155" c="0.00036168131691077115" d="-0.00016059174143736769" /> - <width sOffset="212.17079006818324" a="3.594766185212777" b="-0.0045935810367135838" c="-0.0019516411328467406" d="0.00033543716172441008" /> - <width sOffset="213.6405080450298" a="3.5848641440120232" b="-0.0081566009641854433" c="-6.2999555525892537e-05" d="0.00045634860225481701" /> - <width sOffset="215.46400815692715" a="3.572548129629499" b="-0.0038340740538779384" c="0.00031564511259844769" d="-2.9420579567994684e-06" /> - <width sOffset="219.68008007813214" a="3.5617735893084514" b="-0.0013293966182238142" c="0.0010456468263793828" d="-7.7023717763096365e-05" /> - <width sOffset="222.89743730073982" a="3.5657551345114116" b="0.0030071350727966205" c="0.0017700607170728151" d="-0.00012817171093890519" /> - <width sOffset="223.81386557098361" a="3.5698988794201072" b="0.0059284709481910256" c="0.0014241195667391579" d="-0.00012869535240099973" /> - <width sOffset="226.45017392261164" a="3.5930679195390804" b="0.010753962469380192" c="0.0097483561212471995" d="-0.0027754347993147665" /> - <width sOffset="228.57272402391746" a="3.6332719801329616" b="0.014624886802996281" c="-0.0024713507270624634" d="-0.00016092348721461215" /> - <width sOffset="229.04822165082678" a="3.6396500109290173" b="0.012165490558489209" c="-0.0014821217073817373" d="-1.4777899957879428e-05" /> - <width sOffset="230.35941000495652" a="3.6530198621914498" b="0.0082025899568466502" c="-0.0014392738561985216" d="9.7729427176983022e-05" /> - <width sOffset="233.98722309693741" a="3.6685011668545675" b="0.001618416012681203" c="-0.00034358561519550921" d="9.7621394356811101e-05" /> - <width sOffset="236.83038818348498" a="3.67256881630367" b="0.0020320680727343421" c="0.00062208708471247955" d="3.4239539580639001e-05" /> - <width sOffset="237.66844237448166" a="3.6747288661031177" b="0.0031468963130789201" c="0.0015996172984098994" d="-0.00031829444546446951" /> - <width sOffset="240.68066981190756" a="3.6900227227973748" b="0.0041195710945488642" c="-0.00096760443505373691" d="-0.00026405029537614379" /> - <width sOffset="242.4075743790593" a="3.6928913874987415" b="-0.0015847018263200664" c="-0.0017556590358128704" d="0.00014136903331037607" /> - <width sOffset="244.16058062289122" a="3.6854797618195287" b="-0.0064367701108160712" c="-0.0010182612254642784" d="0.00014473934115177454" /> - <width sOffset="248.46934635033912" a="3.6504190488682107" b="-0.0071502099955512146" c="0.0049651874614528579" d="-0.00084908526317196205" /> - <width sOffset="248.6239770016102" a="3.6494289887035527" b="-0.0056755761657286512" c="0.0044435035181243521" d="-0.00085224364386910173" /> - <width sOffset="251.6530986033622" a="3.6493214808565893" b="-0.0022152344425270427" c="0.0029892440016527728" d="-0.0015170842725470311" /> - <width sOffset="254.03799086793049" a="3.640461733391378" b="-0.013843395881318974" c="-0.0017370860665627964" d="1.698965963065056e-05" /> - <width sOffset="254.33393814884502" a="3.6362131160781308" b="-0.014867103570076251" c="-0.0017240700172765696" d="1.6954480575523414e-05" /> - <width sOffset="260.31302133948094" a="3.4893109373672924" b="-0.033665480345032923" c="-0.0089155774890404601" d="0.0016145598139082383" /> - <width sOffset="264.91688324737362" a="3.3029001377793308" b="-0.013093232531645297" c="0.023978918873269299" d="-0.02705503110552801" /> - <width sOffset="265.03654203169248" a="3.301630399617927" b="-0.0085167960093689935" c="-0.011025770359532963" d="-0.027902696339509696" /> - <width sOffset="265.12097356354718" a="3.3008159200231466" b="-0.010975369850975705" c="-0.011891371742148363" d="0.00063135910161614373" /> - <width sOffset="269.76382828847903" a="3.0567148549254544" b="-0.080566273023861767" c="-0.0016129744240211484" d="0.00059172372344510336" /> - <width sOffset="272.17119632736893" a="2.8616698769608782" b="-0.078044455119061232" c="-0.0018365272292046168" d="-0.00020888968048253718" /> - <width sOffset="274.6806532007526" a="2.6509543030711393" b="-0.091208196078518877" c="-0.0036114385753544249" d="-0.00011244907047235567" /> - <width sOffset="275.94079117258741" a="2.5300596019177135" b="-0.10084570757321276" c="-0.0065490871460982232" d="0.00040094599743629062" /> - <width sOffset="283.21204185484919" a="1.6046670767328277" b="-0.13249046481377477" c="-0.0034063047225382538" d="0.00030472060088345516" /> - <width sOffset="284.85401072670641" a="1.3792872019740019" b="-0.14121192076537059" c="-0.0019534261929545116" d="0.00028409218418972511" /> - <width sOffset="288.01145282650646" a="0.92288680624707542" b="-0.14505086048915061" c="-0.0016743295134299179" d="0.0022948367396797972" /> - <width sOffset="289.66624305683973" a="0.68867192955354739" b="-0.13174012300015081" c="0.009328823706066771" d="-0.000318573018783891" /> - <width sOffset="289.88341561467553" a="0.66049831091505606" b="-0.1277332694454677" c="0.0038315476076792162" d="0.00022112138693349134" /> - <width sOffset="293.35426417578088" a="0.27255898114422483" b="-0.093144417881308297" c="0.0047689275520581588" d="-0.0011460503844006713" /> - <width sOffset="294.01463547422037" a="0.21279872249003629" b="-0.088345236324011325" c="-0.020133174358732742" d="0.0087683308267193713" /> - <width sOffset="295.02736825266021" a="0.1117870141559838" b="-0.10214515911458635" c="0.0065127186061610318" d="0.0087751863327577874" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="254.03799086793049" space="0" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <roadMark sOffset="254.03799086793049" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="42.727251175739184" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.6091187902268032" b="0.021161990115230997" c="0.0061972570653475514" d="-0.0036720676360076938" /> - <width sOffset="0.73436208452913476" a="3.6265471999048318" b="0.024323148937305614" c="0.000822506335089055" d="-0.00022080301953357102" /> - <width sOffset="3.9449338962627145" a="3.7058094036620552" b="0.022776619124402129" c="-0.0010967575016757616" d="-0.00010728120804947132" /> - <width sOffset="7.5633245266112645" a="3.7687821226709119" b="0.01062580663607202" c="-0.0077777597082126148" d="0.0014889572881530222" /> - <width sOffset="10.316325422595625" a="3.7701543703480853" b="0.0016559318441101453" c="-0.0018007086908636851" d="-2.1212404733736549e-05" /> - <width sOffset="10.747554375842949" a="3.770531898142095" b="9.106252120392418e-05" c="-0.00072879548799793239" d="-4.4328845840385649e-06" /> - <width sOffset="14.426792461064871" a="3.7607806050708681" b="-0.0054517828318841064" c="-0.0034409181910809053" d="0.00025222085792939283" /> - <width sOffset="15.593260772675603" a="3.7501397067222619" b="-0.012449675236025182" c="-0.0026550105349842511" d="0.0002841716487820667" /> - <width sOffset="20.346715051907601" a="3.661491611276011" b="-0.018427763130291937" c="0.0013916646551822755" d="0.00028768914126516123" /> - <width sOffset="20.539993652359193" a="3.6579839840759245" b="-0.017857563857051919" c="0.0061146253366308068" d="-0.00019870515466471444" /> - <width sOffset="21.402704543879093" a="3.647001415369115" b="-0.0077509270115772716" c="0.003310307739898169" d="-0.00042086716116371389" /> - <width sOffset="26.696155927540129" a="3.636303689449055" b="-0.0080839067538375359" c="-0.0010883061242859952" d="0.00022163772155663162" /> - <width sOffset="29.859015826072934" a="3.6068610280126285" b="-0.0083166460019922471" c="0.00053393882418070683" d="2.4044932579709557e-05" /> - <width sOffset="30.520072577861402" a="3.601603528247018" b="-0.0075791956522878248" c="0.00058110571395355453" d="2.3806367318065608e-05" /> - <width sOffset="34.416694161158929" a="3.5823020854908236" b="-0.0019660941732684038" c="-0.0028999830994322451" d="0.001632535173832509" /> - <width sOffset="35.49605704271584" a="3.5788542925545941" b="-0.0025205333006736172" c="0.00048618771738953613" d="0.0022485515464584988" /> - <width sOffset="36.401961007175132" a="3.5786415925300736" b="0.0038962478398812568" c="-0.00025223634157108628" d="0.00058998244884128279" /> - <width sOffset="38.757347609030546" a="3.5941288848757873" b="0.012527415025862219" c="0.46535509348914622" d="-1.0970044537572572" /> - <width sOffset="39.051876065986832" a="3.6101588536167988" b="0.0011624748690148461" c="-0.0010426584688472693" d="7.1219831283594515e-05" /> - <width sOffset="40.693430103815203" a="3.6095725080864765" b="-0.001684937404963749" c="-0.0010255406241759324" d="0.00012588748785666263" /> - <width sOffset="42.310705295465482" a="3.6046976361150151" b="-0.0040142941979859938" c="-0.00055313800729743544" d="-9.5866601722166133e-05" /> - <width sOffset="45.915541185037462" a="3.5785480222523613" b="-0.011739551646359401" c="-0.002492367248961179" d="0.00027967794229386239" /> - <width sOffset="46.992985751565229" a="3.5633557685927921" b="-0.016136303457433332" c="-0.0019008471223440314" d="0.00041435780244589507" /> - <width sOffset="49.572465685749698" a="3.5161964756422743" b="-0.017671639149421499" c="-0.00029282490041974746" d="0.00032157066400224487" /> - <width sOffset="50.670838958632231" a="3.496859263049314" b="-0.017151049685691304" c="0.0019661909884801198" d="9.6718192969726913e-05" /> - <width sOffset="50.866787629769007" a="3.4935747589625601" b="-0.016369363922020964" c="0.0016264750585790002" d="-8.6672721868920284e-05" /> - <width sOffset="57.623212091906368" a="3.430491681363808" b="-0.0062606920163249015" c="-0.0011929460759400525" d="0.00016023208152287266" /> - <width sOffset="59.820032219278559" a="3.4126796507903898" b="-0.0091822188654527813" c="0.0012416076356544462" d="0.00022463356566790012" /> - <width sOffset="61.040145155722804" a="3.403732671432155" b="-0.0051491962795430224" c="0.0020603601053934021" d="0.00022295948156385396" /> - <width sOffset="61.154763729235896" a="3.4031698814411544" b="-0.0046680978718338997" c="0.0013075848377556529" d="-5.9909351565723905e-05" /> - <width sOffset="65.03848025360135" a="3.4012535120122012" b="0.0027775959035640299" c="0.0012551187404059561" d="-0.00011396200237776926" /> - <width sOffset="70.832557532319342" a="3.437315818389906" b="0.0058445373706197592" c="0.00018205141084373216" d="-0.00011098465070511833" /> - <width sOffset="71.213502681676601" a="3.4395625502035401" b="0.0059349225609674049" c="0.00055383100988246449" d="-0.00037931444325881182" /> - <width sOffset="72.246846037842886" a="3.4458682064219901" b="0.0058644235787538804" c="-7.0492732383575649e-06" d="-2.0643161366140338e-05" /> - <width sOffset="81.386860207630406" a="3.4831180264370407" b="0.00056198229317744666" c="-0.00049133328227565071" d="-2.3392151793941443e-05" /> - <width sOffset="83.44748388555908" a="3.4819851001673618" b="-0.0017609048527270806" c="-0.0014412039445633323" d="0.00047094684290609207" /> - <width sOffset="86.271361515247136" a="3.4761249211168721" b="0.0013659208378136185" c="0.0022530601552470386" d="-9.2196181986914372e-05" /> - <width sOffset="89.389283468408109" a="3.4994922095023582" b="0.012726814068370899" c="0.0020827660598264999" d="-0.00030505156611227612" /> - <width sOffset="91.56021773358421" a="3.5338161299676845" b="0.017456827034128368" c="0.00012781190895973232" d="-0.00029527202130918794" /> - <width sOffset="93.480974789746242" a="3.5657256157103614" b="0.014679770288328431" c="-0.0011735353193285301" d="1.0645293566890541e-05" /> - <width sOffset="95.33044463767736" a="3.5889286293135703" b="0.010448171827610771" c="-0.00088373113264934942" d="0.00018806772823628062" /> - <width sOffset="96.533016007749779" a="3.6005423438198014" b="0.009138610486581062" c="0.0012492181840817072" d="-0.0006071666613372054" /> - <width sOffset="99.224286210812835" a="3.6223495052765298" b="0.0026695712945829283" c="-0.0068688391450902461" d="0.0015879777163999738" /> - <width sOffset="101.47738231637938" a="3.6116578735427605" b="-0.0040989075465443954" c="0.0010529426593607681" d="-2.7249679493970269e-05" /> - <width sOffset="101.73357525953801" a="3.6106764138527043" b="-0.0035647601725475497" c="0.0010312703669691169" d="-2.7173754239883052e-05" /> - <width sOffset="106.25719938786075" a="3.6131384326860077" b="0.0040972149711565372" c="0.0021949753263868416" d="-0.00061792737627794532" /> - <width sOffset="107.86007053925948" a="3.6228003814641725" b="0.0063710107317797044" c="-0.0017710233671099172" d="-0.00029590907256761247" /> - <width sOffset="109.50145456128844" a="3.6271777234471312" b="-0.001834510927840682" c="-0.0012722224528801162" d="0.00023198191040021607" /> - <width sOffset="111.9069327854918" a="3.6186322825169182" b="-0.003928149219235808" c="0.00039688526048808339" d="0.0002310840502032941" /> - <width sOffset="114.97666880418777" a="3.6169984256190579" b="0.0050412253277509755" c="3.3347579353277081e-05" d="5.9108366630017219e-06" /> - <width sOffset="122.08029031144561" a="3.6566109414681067" b="0.0064098104541554009" c="0.00016710779535400686" d="2.7208952517230171e-06" /> - <width sOffset="122.13864356527699" a="3.6569855443243151" b="0.0064293408161372337" c="0.00031820919712180078" d="-3.2689927467594253e-06" /> - <width sOffset="123.70132525497439" a="3.667797141532235" b="0.0073999118013046454" c="0.0008635199980736916" d="-0.00010281981497067153" /> - <width sOffset="128.5918002713546" a="3.7126125713202325" b="0.0084686115947045625" c="-1.8329144336111836e-05" d="-1.4544619083111342e-05" /> - <width sOffset="128.64226466158485" a="3.7130398860932474" b="0.0084666505361586427" c="-0.0019617634698042672" d="0.00015133184737537136" /> - <width sOffset="132.2536478373994" a="3.7251584395184247" b="0.00021834136953608613" c="-0.00031469155648396484" d="0.00015260823913984975" /> - <width sOffset="132.61816604910678" a="3.7252036062997105" b="4.975254751675949e-05" c="-0.0025485073929636974" d="0.00020910563491838177" /> - <width sOffset="137.28241824448241" a="3.6912106128129096" b="-0.010076574680019167" c="0.00023886043150961176" d="0.00030394311665211" /> - <width sOffset="140.38491257755229" a="3.6713238851708825" b="0.00018233863432368796" c="0.0017098355864758345" d="0.00065559657627423335" /> - <width sOffset="140.45359443502144" a="3.6713446865632475" b="0.00042648573809651955" c="0.0039464105346607619" d="-0.0022948114963505092" /> - <width sOffset="141.86234624389022" a="3.6733616781100049" b="-0.0021172107229162898" c="-0.013456780254219432" d="0.0037737101838038797" /> - <width sOffset="142.93581105199553" a="3.6602503319527759" b="-0.017962329846163451" c="-0.0019864309928930611" d="0.0032881357079305677" /> - <width sOffset="144.09264571507941" a="3.6419030494008031" b="-0.0093570693212673712" c="0.002460880951472141" d="-0.00010350890982435743" /> - <width sOffset="150.95694513742779" a="3.6601480742843786" b="0.0097957912737523228" c="0.0033667177306953614" d="-0.0011010944449865291" /> - <width sOffset="153.44588051261377" a="3.6884081310732788" b="0.0060916996929112135" c="-0.0031192079826395619" d="0.00022988932763334791" /> - <width sOffset="153.56964269492914" a="3.6891147117654723" b="0.0053301834169878076" c="-0.0030619787520112861" d="0.00041368916905390192" /> - <width sOffset="156.56442524383075" a="3.6887268462475729" b="-0.0018789475519014366" c="0.00067839623812558398" d="-0.00010304292958615715" /> - <width sOffset="157.44537390497203" a="3.6875276250390701" b="-0.00092358878362524925" c="0.00022634220896328909" d="-0.00028282509948611515" /> - <width sOffset="160.42050413296462" a="3.6793353383197496" b="-0.0070869878375649214" c="-0.00024676143862447178" d="7.1654508476720746e-05" /> - <width sOffset="162.77372041526081" a="3.6622253970216003" b="-0.0070579661132286961" c="0.00011014126336200506" d="0.00011537277209240907" /> - <width sOffset="164.07852335354812" a="3.6534599525821729" b="-0.006181270685488926" c="-0.00012340710657493228" d="-2.910265190533589e-05" /> - <width sOffset="164.52236146434319" a="3.650689614310183" b="-0.0063080152318335334" c="0.00054242632606884167" d="-1.1880268978374965e-05" /> - <width sOffset="172.94707794121462" a="3.6289417193729605" b="0.0003019242961174967" c="0.00024383929025685174" d="-1.2077392131622088e-05" /> - <width sOffset="173.65082447246593" a="3.629270751778884" b="0.00062718208754474359" c="0.00070400198943565157" d="-6.1789023412933566e-05" /> - <width sOffset="176.89348659214363" a="3.6366002054549811" b="0.0032437549027451501" c="0.00067933026382732426" d="-4.9763270864114847e-05" /> - <width sOffset="180.18057849217354" a="3.6528354320952579" b="0.0060967245000800073" c="0.0017114310389927483" d="-0.00018392615855963989" /> - <width sOffset="183.12043546716842" a="3.6808771329335226" b="0.011390561049367622" c="-0.00016277461249490866" d="-0.00020552074019142345" /> - <width sOffset="187.60447240054879" a="3.7101505088412092" b="-0.0024661757636028746" c="-0.0038226503397197661" d="0.0021929841983442467" /> - <width sOffset="188.21837078742675" a="3.7077032508122278" b="-0.0046801955651786719" c="-0.00011001034700697894" d="0.0022501503786904074" /> - <width sOffset="188.58998924891637" a="3.7060642903758625" b="-0.0038297201187536042" c="0.0011499744587362638" d="-0.00018709156549537493" /> - <width sOffset="193.28095643332949" a="3.694091957210901" b="-0.0053916820880569385" c="-0.00041128833362057436" d="3.5228041215944783e-05" /> - <width sOffset="193.29379299312222" a="3.6940226788649397" b="-0.0054022237282988859" c="-0.00040981555446476415" d="3.5553926319216478e-05" /> - <width sOffset="198.60560276505919" a="3.6590926402088866" b="-0.0067464517113700381" c="0.00094752763452739491" d="-9.5356858605478111e-05" /> - <width sOffset="201.8646357120225" a="3.6438689108135831" b="-0.0036088443441492993" c="-0.0042374054755542753" d="0.0010751150258104343" /> - <width sOffset="203.46715051907603" a="3.6316282677449845" b="-0.0089069949983906216" c="0.00088281574972147382" d="0.0010789530103608507" /> - <width sOffset="204.15575644645577" a="3.6262657718598792" b="-0.0061563229418135062" c="0.0045328668349086804" d="0.0012026649109402729" /> - <width sOffset="204.94261901705619" a="3.6248140525464696" b="0.0032110632564914723" c="0.00041810692101955284" d="-1.0201122411689379e-05" /> - <width sOffset="209.71416011061393" a="3.6485468509593733" b="0.0065043266080371349" c="-0.0048446988009129659" d="0.0007726791463026027" /> - <width sOffset="212.17079006818324" a="3.6467432836605913" b="-0.0033095105915951373" c="0.0031244908727084322" d="0.00027665024324961839" /> - <width sOffset="212.70991396802725" a="3.6459105457538019" b="0.00030069379731272397" c="0.00071254218769364322" d="-0.00030696414377593377" /> - <width sOffset="213.6405080450298" a="3.6465600527268616" b="0.00082937111672498794" c="-0.00019982182518301825" d="-0.00031297657277264091" /> - <width sOffset="215.46400815692715" a="3.6455102657424887" b="-0.0030214637730608552" c="0.00020585024210857715" d="0.00014631408743565123" /> - <width sOffset="216.20886666680349" a="3.6434343768547515" b="-0.0024712737638804584" c="-0.00083956394900623632" d="0.00020857713450208977" /> - <width sOffset="219.45476193996109" a="3.6337003397166763" b="-0.0013289435458914266" c="0.0010081903766404078" d="-0.00017935915342755465" /> - <width sOffset="223.47929956473726" a="3.6329899835956088" b="-0.0019291318192927905" c="-0.0017350216486134759" d="0.00039795219595515979" /> - <width sOffset="223.81386557098361" a="3.6321652561289426" b="-0.0029564567109338375" c="-0.0013420372056972675" d="0.00039847583741698571" /> - <width sOffset="226.15569563434835" a="3.6229994003992023" b="-0.0026861774962353068" c="-0.0010475116324740127" d="-4.2221004948453398e-05" /> - <width sOffset="226.45017392261164" a="3.6221164637247982" b="-0.0033141002563788703" c="-0.010426889591831776" d="0.0026045184419662211" /> - <width sOffset="228.57272402391746" a="3.5930125448778645" b="-0.012375513990481483" c="0.00070448166166463462" d="-9.9928701395270602e-06" /> - <width sOffset="233.98722309693741" a="3.5450722578644229" b="-0.0056255603146630213" c="0.00053977860075217184" d="-9.7196890147372817e-06" /> - <width sOffset="234.92888753823723" a="3.5402453906903348" b="-0.0046348359611588967" c="0.0015994464938408704" d="-0.00010437319247552408" /> - <width sOffset="236.83038818348498" a="3.5364977799917989" b="0.00031571319001890081" c="0.00087103793582162057" d="-4.0991337698798593e-05" /> - <width sOffset="240.68066981190756" a="3.548286462758024" b="0.0052001469211247217" c="8.8449300462621193e-05" d="-9.5235487787296441e-05" /> - <width sOffset="241.6483955838693" a="3.5533153021874675" b="0.0051037741047804119" c="0.0016828157994589438" d="-0.00062969599681737994" /> - <width sOffset="243.59457983121999" a="3.5649803146448802" b="0.0044987410569914746" c="5.1576387278398975e-05" d="2.0720481848920342e-06" /> - <width sOffset="244.16058062289122" a="3.5675435042044588" b="0.0045591169938295423" c="5.5536434467633059e-05" d="1.8825319777499567e-06" /> - <width sOffset="245.86994730098374" a="3.5755083832980024" b="0.0047654831598869015" c="-0.0022946168686799203" d="0.00020807847845397798" /> - <width sOffset="248.6239770016102" a="3.575575165051013" b="-0.0031387770887682772" c="-0.00044765381786428455" d="0.00021123685916526119" /> - <width sOffset="251.92033130035185" a="3.5679305463688675" b="0.00079584024079697689" c="-3.1691135569285322e-06" d="0.00012010633599518128" /> - <width sOffset="254.33393814884502" a="3.5715216807225958" b="0.0028795799196890803" c="0.00086856739318916677" d="0.00012014151504935492" /> - <width sOffset="255.06165153889538" a="3.5741234533001034" b="0.0043345850291636769" c="0.0017648239751393566" d="-0.00022506300827683832" /> - <width sOffset="259.55004142005066" a="3.6087817403465299" b="0.0065749036317950624" c="-0.00066902509661607946" d="7.9515138938765807e-05" /> - <width sOffset="260.31302133948094" a="3.613444112053275" b="0.0056928646402926754" c="0.0070086044874958751" d="-0.0015180901943940002" /> - <width sOffset="264.89596960147151" a="3.64061118031759" b="-0.025722225892674876" c="-0.014447003698810728" d="-0.0015151622958040544" /> - <width sOffset="265.03654203169248" a="3.6367056541214624" b="-0.029873748316560776" c="0.010206599000080717" d="-0.00066749706142297258" /> - <width sOffset="269.86109705895097" a="3.6551917449005407" b="0.022000200665300021" c="0.0015324297348230525" d="-0.0011076651100830571" /> - <width sOffset="272.17119632736893" a="3.7005370199578218" b="0.0113469708770245" c="-0.0016469762023340125" d="-0.00030705170615571455" /> - <width sOffset="273.73777464230636" a="3.7130904777693665" b="0.0039260674076150304" c="-0.0030326443946547686" d="0.00028319656132591488" /> - <width sOffset="274.6806532007526" a="3.7143335871834511" b="-0.0010374611421684055" c="-0.0022422609110958232" d="0.0002818006018510645" /> - <width sOffset="279.45673458663259" a="3.6889318008715755" b="-0.0031714811471153792" c="-0.00024638148864968685" d="0.00019633909682501474" /> - <width sOffset="284.27926577743602" a="3.6899279281448027" b="0.0081508155202421814" c="0.0021245977128090485" d="-5.790380070232079e-06" /> - <width sOffset="284.85401072670641" a="3.6953132909509296" b="0.010587280890315486" c="0.0021079713461123976" d="-5.5027675889620395e-06" /> - <width sOffset="288.01145282650646" a="3.7495840967653851" b="0.023734297293024793" c="0.0044677645241930864" d="-0.002016247323085659" /> - <width sOffset="288.49756157048506" a="3.7619456836543206" b="0.026648608018953641" c="0.0012714845112205505" d="-0.0018552489034726453" /> - <width sOffset="289.66624305683973" a="3.7918646765138071" b="0.022018740608416153" c="-0.0048438335953567349" d="0.00075816085497029694" /> - <width sOffset="293.33093161858551" a="3.8448181638867465" b="0.017062626970434324" c="-0.12499485646742961" d="7.9329287921740335" /> - <width sOffset="293.33906825572484" a="3.844952994372969" b="0.016604146801266175" c="0.0031732571365052122" d="0.00060166126840834955" /> - <width sOffset="294.01463547422037" a="3.8578039637655408" b="0.021715422280079884" c="0.027024290594751844" d="-0.0093127199427098118" /> - <width sOffset="295.02736825266021" a="3.8978397451845339" b="0.047798042016157963" c="-0.0013556624617618975" d="-0.0093138817745348768" /> - <roadMark sOffset="0" color="standard" width="0.15684155628812513" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.15684200000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16593723176204453" weight="standard" type="solid"> - <type name="solid"> - <line length="296.76524204366967" space="0" width="0.165937" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <successor id="-1" /> - </link> - <width sOffset="0" a="0.19075078481290975" b="0.026536875448590878" c="-0.018050494678747822" d="0.0059625872348383251" /> - <width sOffset="0.84869774421973876" a="0.20391598836560521" b="0.0087823848337863653" c="0.0023081281491541391" d="-2.5361455572643903e-05" /> - <width sOffset="3.9449338962627145" a="0.25248281340414902" b="0.022346008123619369" c="0.0018651049677036085" d="-0.00013888326705800174" /> - <width sOffset="4.4315467326498332" a="0.26378230686201665" b="0.024062516798997111" c="0.00029514433908021769" d="0.00020430743240182797" /> - <width sOffset="7.5633245266112645" a="0.34831117284548885" b="0.031922731370190617" c="0.0077311270313732286" d="-0.0013919310638007608" /> - <width sOffset="10.173357525953801" a="0.45954820754326464" b="0.043833084606674108" c="-0.003085449596580473" d="-0.0014346169633274581" /> - <width sOffset="10.316325422595625" a="0.46574767312786403" b="0.042862874193426805" c="0.0026194891219839958" d="7.5552729516593982e-05" /> - <width sOffset="11.289264424919505" a="0.50999985418867766" b="0.04817463743567784" c="0.0012551176091171649" d="3.9249971987584308e-05" /> - <width sOffset="15.593260772675603" a="0.7437229554713638" b="0.061159925372344673" c="0.0018586280761787022" d="7.2991811347664156e-06" /> - <width sOffset="19.99244942388497" a="1.0493682050437645" b="0.077936616560557295" c="0.0021606904759696993" d="-0.00011440329098337051" /> - <width sOffset="20.539993652359193" a="1.0926709547260169" b="0.080199867832959501" c="-0.0025833803268314596" d="0.00037199100482319887" /> - <width sOffset="26.696155927540129" a="1.5752771318327872" b="0.090685968802877243" c="0.0020018249393522675" d="-0.00027051387789716024" /> - <width sOffset="28.661458166566831" a="1.7591809247217065" b="0.095419842006442976" c="0.002891685075679645" d="-0.00076156802082127972" /> - <width sOffset="29.859015826072934" a="1.8762908105458953" b="0.099069165811287552" c="0.00063640246205004861" d="-0.00056397523184729861" /> - <width sOffset="30.520072577861402" a="1.9418963361483152" b="0.099171197289612045" c="-0.00041061585367658908" d="-0.00052976237609912908" /> - <width sOffset="33.798717017125412" a="2.2439586623736285" b="0.07939461365899092" c="0.010331095533456416" d="-0.00083619506535880862" /> - <width sOffset="35.49605704271584" a="2.4043928514111363" b="0.10723823603344194" c="0.0079732962640641225" d="-0.0014522114379018154" /> - <width sOffset="35.742885829840617" a="2.4313262656132713" b="0.11090888857587189" c="0.039585046548281891" d="-0.10120193771500856" /> - <width sOffset="36.483437966394007" a="2.4940678932407758" b="0.003035739172223662" c="-0.0068231213980027763" d="0.0024083625309375962" /> - <width sOffset="38.757347609030546" a="2.4940074382374013" b="0.0093639240849978309" c="-0.063926153442709133" d="0.10871543946010742" /> - <width sOffset="39.051876065986832" a="2.4939975987129195" b="0" c="0.00038370306187626561" d="-4.9077487409357752e-05" /> - <width sOffset="40.693430103815203" a="2.4948144691975789" b="0.00086299135532300845" c="0.00012565671152649791" d="-0.00015299294403494184" /> - <width sOffset="42.310705295465482" a="2.4958916516176402" b="6.8938904160910364e-05" c="-0.00047825685085858068" d="6.8761145543885322e-05" /> - <width sOffset="45.915541185037462" a="2.4931463587507694" b="-0.00069851539357559077" c="0.0011678402271022739" d="-0.00030678339847612279" /> - <width sOffset="46.412461451993039" a="2.4930499831199691" b="0.00023486971600858095" c="0.00090430973628450196" d="-0.00022964056575985799" /> - <width sOffset="49.572465685749698" a="2.4955760504775073" b="-0.00092920002749948341" c="0.00032577494517716709" d="-0.00013685342731619733" /> - <width sOffset="50.866787629769007" a="2.4946223827932599" b="-0.00077368374079745186" c="-6.4664971112939171e-05" d="1.3334024315552245e-05" /> - <width sOffset="57.623212091906368" a="2.4905556960637565" b="0.00017857376286820742" c="0.0012682340528929711" d="-0.00023357077907619424" /> - <width sOffset="61.040145155722804" a="2.4966549386151584" b="0.00066439656046338863" c="-0.0010782803851255086" d="-0.00024143384977237103" /> - <width sOffset="61.154763729235896" a="2.4967165614325082" b="0.00040769918948486972" c="-0.0003318576348884875" d="4.1434983142926319e-05" /> - <width sOffset="65.03848025360135" a="2.4957216798140887" b="-0.00029505964035600116" c="-0.00049463916730096914" d="9.5487633954956485e-05" /> - <width sOffset="68.559788359491037" a="2.4927186129936523" b="-0.00022658497391157655" c="-0.00017231341264472725" d="5.7666132146187574e-06" /> - <width sOffset="71.213502681676601" a="2.4910116221279619" b="-0.001019297190376519" c="-0.00025639821357741185" d="0.00034675193738556811" /> - <width sOffset="72.246846037842886" a="2.4900671634692584" b="-0.00043840838420291378" c="0.00020353732223067156" d="-1.1919344507101932e-05" /> - <width sOffset="81.386860207630406" a="2.4939625028329191" b="0.0002950385549923655" c="0.00031684602496108764" d="-0.00025083673152020259" /> - <width sOffset="82.618053502178839" a="2.4943379055810309" b="-6.5446784351034029e-05" c="0.00030628571181234095" d="-3.2266554578988681e-05" /> - <width sOffset="89.389283468408109" a="2.4979204078116966" b="-0.0003558063354756405" c="-0.0010412544760277681" d="0.00018058882954629708" /> - <width sOffset="91.56021773358421" a="2.4940882871868073" b="-0.002323474979327834" c="0.00014395283311279298" d="0.00017412533794447754" /> - <width sOffset="93.480974789746242" a="2.4913904405846004" b="0.00015672769441585485" c="0.00074722002069091279" d="-0.0001317919769316066" /> - <width sOffset="96.533016007749779" a="2.4950823043479895" b="0.0010349110593099913" c="-0.0019139383365978828" d="0.00066344241264117067" /> - <width sOffset="98.059984087595069" a="2.4945620534225568" b="-0.00016942471742486739" c="-0.0022099738964082103" d="0.00096014111792823323" /> - <width sOffset="99.224286210812835" a="2.4928843694386136" b="-0.0014108790486695891" c="0.0043596178274903294" d="-0.0012350032598093957" /> - <width sOffset="101.47738231637938" a="2.4977112592534505" b="-0.00057387063132066391" c="-0.0011763078563766143" d="0.00038022413596768294" /> - <width sOffset="101.73357525953801" a="2.4974934244249671" b="-0.0011017263420249074" c="-0.0009044880812140335" d="0.00038480666466505364" /> - <width sOffset="103.77135910849903" a="2.494748644466894" b="5.7730219659561134e-06" c="-0.00050478726420413852" d="6.9896908924579532e-05" /> - <width sOffset="107.86007053925948" a="2.4911111199499509" b="-0.00061656834217155114" c="0.0013472024054910605" d="-0.00025212139478568603" /> - <width sOffset="111.16807098310335" a="2.4946872237012117" b="1.9731343520696526e-05" c="0.001010900544359058" d="-0.00025414828000649644" /> - <width sOffset="111.9069327854918" a="2.495151157491339" b="0.0010973315209532181" c="0.00045189953191610618" d="-0.00025342855356186035" /> - <width sOffset="114.97666880418777" a="2.4954471284448014" b="-0.0032926280101447901" c="0.00060966203271192775" d="-2.8255340021565584e-05" /> - <width sOffset="122.08029031144561" a="2.4926935886801549" b="0.0010915733353741366" c="1.2701027350330333e-05" d="-2.8703121620290776e-05" /> - <width sOffset="123.70132525497439" a="2.4943741762224536" b="0.0009064767009186207" c="-0.00068752124833278356" d="7.084770060222117e-05" /> - <width sOffset="124.46238318187648" a="2.4946970693883221" b="-1.6903377813742501e-05" c="-0.00060695284983733192" d="9.5979883204682685e-05" /> - <width sOffset="128.5918002713546" a="2.4910358965082189" b="-0.00011965479532975373" c="-4.4594006483723762e-05" d="7.704686590085956e-06" /> - <width sOffset="132.2536478373994" a="2.4903780890816249" b="-0.00013630832679122767" c="4.0601876724872639e-05" d="7.0791701086184911e-06" /> - <width sOffset="137.28241824448241" a="2.4916196472754986" b="0.00080911216088095858" c="0.00028599686589876269" d="-8.7758311625112917e-05" /> - <width sOffset="140.38491257755229" a="2.4942620439496475" b="4.9574198831396805e-05" c="0.00082715810838069844" d="-0.00043941177093966796" /> - <width sOffset="141.65398194646608" a="2.4947590194771108" b="2.5949406818748764e-05" c="0.00085651384443371787" d="-0.00045852032857695467" /> - <width sOffset="142.93581105199553" a="2.495233892957383" b="-3.840664243252509e-05" c="-0.00022423428992670658" d="2.7054147296026412e-05" /> - <width sOffset="150.95694513742779" a="2.4944607021280274" b="0.0015862439811582807" c="-0.0026106046898175632" d="0.0010246396824596942" /> - <width sOffset="151.46567416027659" a="2.4947269381900372" b="-0.00027439047333833316" c="-0.0031331439668012681" d="0.0010423711744374463" /> - <width sOffset="152.60036288930701" a="2.4919044437351041" b="-0.0033584602147250509" c="0.00043494240231281957" d="0.0010599235971667711" /> - <width sOffset="153.44588051261377" a="2.4900164288274458" b="-0.00034973898013260923" c="0.001387761611292409" d="-0.00027106017546456058" /> - <width sOffset="156.56442524383075" a="2.4942012364320796" b="0.00039741249624941632" c="-0.0011718259125008553" d="0.00024567192317555774" /> - <width sOffset="160.42050413296462" a="2.4923955880377369" b="0.002319047475130892" c="-0.00038105582323060634" d="-0.00010880768478739885" /> - <width sOffset="162.46422086022591" a="2.4946146797034134" b="-0.00060188949694007263" c="2.5832807360156471e-05" d="-0.00010415143658943549" /> - <width sOffset="162.77372041526081" a="2.4944277819229894" b="-0.00061582900255115983" c="7.7796284804471089e-05" d="-0.00014782389799180686" /> - <width sOffset="164.07852335354812" a="2.4934283133749515" b="-0.001167826668134757" c="0.00018431768146867623" d="-3.3484739940577868e-06" /> - <width sOffset="172.94707794121462" a="2.4952325591795033" b="0.0013113510701242542" c="-2.2198228616342403e-05" d="-2.0022800324837793e-06" /> - <width sOffset="173.65082447246593" a="2.496143726201312" b="0.001277132274645227" c="-0.00051208648913035777" d="4.770935124936137e-05" /> - <width sOffset="180.18057849217354" a="2.4959318348734767" b="0.00069218388945130327" c="-0.0011003256137305628" d="0.00018187223894491054" /> - <width sOffset="183.12043546716842" a="2.4930780036852758" b="-0.0010617821629202301" c="0.00075981843612896811" d="0.00020330611412434403" /> - <width sOffset="183.70843288807816" a="2.4927577099479388" b="4.2634156172519089e-05" c="-0.0012567247779744788" d="0.00028197309773342523" /> - <width sOffset="187.60447240054879" a="2.4905232897829346" b="0.0030904491198734362" c="0.0029341981711375792" d="-0.0021165318408020439" /> - <width sOffset="188.58998924891637" a="2.4943929050811735" b="0.0027068494733570748" c="-0.0020748277367003817" d="0.00032071010339206063" /> - <width sOffset="192.10454492976487" a="2.4922005099824589" b="6.9856319923934651e-06" c="5.8431948905100122e-05" d="0.00028348485404834791" /> - <width sOffset="193.28095643332949" a="2.4927511327030079" b="0.0013214471761549447" c="-1.2741939601983491e-05" d="6.1165519080136175e-05" /> - <width sOffset="193.29379299312222" a="2.4927680935684933" b="0.0013211502874771602" c="-9.222279552459318e-05" d="-3.7973133077198515e-06" /> - <width sOffset="198.60560276505919" a="2.4966145764444745" b="1.9983129415942699e-05" c="-0.00094351072256256018" d="0.00012711347161697037" /> - <width sOffset="203.46715051907603" a="2.4890176432140256" b="-0.00014101581311870733" c="0.0010974871607313487" d="0.00010788110373200049" /> - <width sOffset="204.15575644645577" a="2.4894761688307234" b="0.0015239210929775273" c="-0.00010078090712572297" d="-1.5830796853713666e-05" /> - <width sOffset="208.39202510191029" a="2.4929197767867324" b="-0.00018224601985171375" c="-0.0017155173523860263" d="8.7329950005327081e-05" /> - <width sOffset="209.71416011061393" a="2.4898818605878663" b="-0.0042605681246104003" c="0.0037476490978158509" d="-0.00069555031870829854" /> - <width sOffset="212.70991396802725" a="2.4920514488688976" b="-0.00053323456452555179" c="0.00035595140604950367" d="-0.00011193593168045831" /> - <width sOffset="213.6405080450298" a="2.4917732706542823" b="-0.00016155336661307675" c="0.00034367468452276321" d="-0.0001038110446614192" /> - <width sOffset="216.20886666680349" a="2.4918666059492347" b="-0.00045055177118237359" c="0.0009161667802897607" d="-0.00016607409172454478" /> - <width sOffset="219.45476193996109" a="2.4943773067073685" b="0.00024782282724181148" c="-0.00051770626839739322" d="0.0002218621961892949" /> - <width sOffset="219.94475807671412" a="2.4944005408684355" b="-9.9720495718106511e-05" c="-0.0005165802156475997" d="0.00011026720722500912" /> - <width sOffset="223.47929956473726" a="2.4924635121196337" b="0.00038123030755237916" c="0.0012303508817758666" d="-0.00046704414219986463" /> - <width sOffset="223.81386557098361" a="2.4927112868783063" b="0.0010476625341036445" c="0.00090940897940983395" d="-0.00044521677714524417" /> - <width sOffset="226.15569563434835" a="2.494434171722792" b="-0.002017905758003191" c="0.00028650539265112759" d="-4.5199347806856707e-06" /> - <width sOffset="233.98722309693741" a="2.4940320128851896" b="0.0016379828719971284" c="0.00021006400464613917" d="-5.1080367001292773e-06" /> - <width sOffset="234.92888753823723" a="2.4957564483387129" b="0.0020200141015699188" c="-0.00089149211459117392" d="8.9545466762258155e-05" /> - <width sOffset="240.09430158514724" a="2.4947455550394504" b="-2.2214955595276087e-05" c="2.5806948828850873e-05" d="8.4269047135907728e-05" /> - <width sOffset="241.6483955838693" a="2.49508966060358" b="0.00066857976304612009" c="-0.0014521589966824558" d="0.00061872955616603038" /> - <width sOffset="243.12553388338975" a="2.4949029050446927" b="0.00042858818771203313" c="7.5781711716228295e-05" d="0.00067191963885845126" /> - <width sOffset="243.59457983121999" a="2.4951899416377814" b="0.00094315362593489567" c="-0.0010240086133735755" d="4.0151593873115915e-05" /> - <width sOffset="244.16058062289122" a="2.4954029994933142" b="-0.00017743722578282464" c="-0.00096114796467559188" d="4.6314779492827955e-05" /> - <width sOffset="245.86994730098374" a="2.4925226093266448" b="-0.0030573595849790226" c="0.001636165973076271" d="-0.00015988116698339313" /> - <width sOffset="251.92033130035185" a="2.4985081303665564" b="-0.00081687466350754447" c="0.0003785884915053912" d="-6.8750643813224403e-05" /> - <width sOffset="254.33393814884502" a="2.497775316782719" b="-0.00019086732982883346" c="-0.00019872259353700587" d="-5.5895009086769022e-05" /> - <width sOffset="255.06165153889538" a="2.4975096427693626" b="-0.0005688939338860978" c="-0.00095472004752877675" d="0.00028930951423947009" /> - <width sOffset="257.53251391435515" a="2.4946395022523498" b="1.1985761347376583e-05" c="-0.0009236272510678346" d="0.00028032201608932253" /> - <width sOffset="259.55004142005066" a="2.4932061900720757" b="-0.00029181830877034014" c="0.00017638236750780315" d="-2.4256131126138681e-05" /> - <width sOffset="264.5072956747988" a="2.4931391422074829" b="-0.00033131122990727457" c="-0.00024242846004408344" d="-2.5133896090919503e-05" /> - <width sOffset="264.89596960147151" a="2.4929722713674671" b="-0.00053115321151420494" c="0.00031188660218213905" d="-2.8061794672446026e-05" /> - <width sOffset="269.86109705895097" a="2.4945889684517324" b="0.00049058085875968924" c="-0.0010930642043707622" d="0.00041210625398854794" /> - <width sOffset="271.34883388850312" a="2.4942565021816603" b="-2.5383313521080975e-05" c="-0.0015980956510972929" d="0.00040456192831288327" /> - <width sOffset="273.73777464230636" a="2.4905911769602169" b="-0.00073434416838650055" c="0.0012439343418954778" d="-0.00018568633917023694" /> - <width sOffset="274.6806532007526" a="2.4908490127460121" b="0.0011161772754219312" c="0.00042550857219081405" d="-0.00014812307932576688" /> - <width sOffset="277.21198768953917" a="2.493998398658885" b="0.00042302186764454214" c="0.00038030204536470538" d="-0.00021350701078481023" /> - <width sOffset="279.45673458663259" a="2.4944492912134169" b="-0.0010971286082674045" c="0.00098432285011006517" d="-0.00012804550575871366" /> - <width sOffset="284.27926577743602" a="2.4976894024114142" b="-0.00053706219239859493" c="-0.00039861243219856037" d="7.4083971137020778e-05" /> - <width sOffset="284.85401072670641" a="2.4972631196080304" b="-0.00092184629165464882" c="-0.00033860702029149173" d="6.8909659428497891e-05" /> - <width sOffset="288.49756157048506" a="2.4927423089536664" b="-0.00064488722981519836" c="0.00067055417462691077" d="-9.2088760177899107e-05" /> - <width sOffset="293.33093161858551" a="2.4948922924443777" b="-0.00061679962895210688" c="0.12782155012058963" d="-7.932262720079243" /> - <width sOffset="293.33906825572484" a="2.4948914631873609" b="-0.00011218760702711578" c="-0.00033030472251393379" d="6.4410826381996458e-05" /> - <width sOffset="295.02736825266021" a="2.4940705319956198" b="-0.00067671300473692506" c="-1.7366389514454324e-05" d="8.4139569620539636e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - <laneSection s="296.76524204366967"> - <left> - <lane id="2" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="2.4932836664961071" b="0.0001585141576671556" c="-3.150026042025595e-05" d="1.4003127151790895e-06" /> - <width sOffset="8.4354837349443414" a="2.4932198673755961" b="-7.3997934653468461e-05" c="-3.3190646871923864e-05" d="1.4285998008124713e-05" /> - <width sOffset="10.009674872008816" a="2.4930768607008522" b="-7.2289338130073974e-05" c="0.0082673013365449355" d="-0.0032509913143927314" /> - <width sOffset="10.638811275507919" a="2.4954941207390489" b="0.0064698810081533784" c="-0.0026437345831270866" d="-0.0024179692820039105" /> - <width sOffset="11.879526486469842" a="2.4948335635687648" b="-0.011256841253037844" c="-0.014004449466568316" d="-0.0036848247136386627" /> - <width sOffset="12.379775218161342" a="2.4852364555948849" b="-0.028034626237599423" c="-0.20033786952798549" d="0.20032502227143853" /> - <width sOffset="12.880023671477204" a="2.446155897721435" b="-0.078078926932240236" c="0.0020050563918370544" d="-0.00021390879150993893" /> - <width sOffset="16.866804441467536" a="2.1531866628551257" b="-0.07229135550531432" c="-0.0015298309228383743" d="0.0004560031431579516" /> - <width sOffset="18.608841260898146" a="2.0250205751967956" b="-0.073469911440554952" c="0.00085824645907175501" d="0.00045087530543219635" /> - <width sOffset="19.734528272963246" a="1.9440471411150599" b="-0.069823668984336368" c="0.0076686896328050213" d="-0.0017835133294955051" /> - <width sOffset="21.984612520868836" a="1.8054460384062101" b="-0.062402410697367149" c="0.0033977894103234931" d="-0.0028389956711203515" /> - <width sOffset="22.536429195558128" a="1.7715689462573074" b="-0.061245933524393191" c="0.0038683021885898149" d="-0.0011000601004694216" /> - <width sOffset="25.03609914279474" a="1.6254631999584972" b="-0.062527657144261534" c="0.0012563462638361628" d="-1.7177609499170496e-05" /> - <width sOffset="26.789144168809514" a="1.5196178206687443" b="-0.058281162987628608" c="0.0014035440727590933" d="-6.4725232900919051e-05" /> - <width sOffset="28.78219878685195" a="1.4085231049509421" b="-0.053457800659895173" c="0.0010133108412058022" d="-6.4742477855195271e-05" /> - <width sOffset="33.268570362274374" a="1.1832407734186414" b="-0.048274941228758569" c="-0.00020602710666058248" d="2.0409523425580549e-05" /> - <width sOffset="36.502113501656311" a="1.0256775213091081" b="-0.048967142542626685" c="0.0011726668659404874" d="-5.9684340927901029e-05" /> - <width sOffset="38.955556312805754" a="0.91171673604759795" b="-0.04429078883410395" c="0.00074200702666929865" d="-5.9989835405774693e-05" /> - <width sOffset="41.140660770102841" a="0.81785369854491408" b="-0.041907360181436516" c="0.00075555668009125024" d="8.2530325512403203e-05" /> - <width sOffset="41.640022489977753" a="0.79712545114332189" b="-0.04109102820236657" c="0.00054948992696563881" d="4.4545793147045466e-06" /> - <width sOffset="49.128913838759559" a="0.52208745787046529" b="-0.032111402369862048" c="0.00065594883450015404" d="-2.4018431709508412e-07" /> - <width sOffset="50.41212612801985" a="0.48196131172763512" b="-0.030429145645578911" c="0.0016742910197204653" d="-0.00020808205838399456" /> - <width sOffset="55.406559115328889" a="0.34582562799354521" b="-0.029276298908497256" c="0.0044264502313830362" d="-0.0011174292964418755" /> - <width sOffset="56.397195963791432" a="0.320081060461614" b="-0.02379609531503446" c="0.0016825786542359316" d="-0.00047123731712020006" /> - <width sOffset="58.650562801742808" a="0.26961147446049538" b="-0.023391513036392555" c="0.0019898540003550633" d="-7.4031567077325022e-05" /> - <width sOffset="68.189635750872924" a="0.16328350603369435" b="-0.0056380539628190464" c="0.0011708213019687604" d="-0.00015103689689319026" /> - <width sOffset="69.475628890667167" a="0.15764806888218086" b="-0.0033760622912432058" c="0.00058472360952141239" d="-0.00015416805179682377" /> - <width sOffset="72.461352805760441" a="0.14867723023639323" b="-0.0040074309302689688" c="-2.2240799544281996e-05" d="-4.3282007315312071e-06" /> - <width sOffset="75.868696345643627" a="0.13459310062026342" b="-0.0043097461211845673" c="0.00042632165122381837" d="-4.1924835949796551e-06" /> - <width sOffset="79.648986416620971" a="0.12416691055412477" b="-0.0012662463412623506" c="0.00037985814499774608" d="-4.587839316663438e-06" /> - <width sOffset="81.367363957322425" a="0.12308939554851972" b="-1.4081411911562574e-06" c="-0.00086764316756212149" d="0.00012854273675983699" /> - <width sOffset="85.866273982521591" a="0.11722674402359368" b="-3.116439853954097e-06" c="0.00083806297721839441" d="-4.8874692103368953e-05" /> - <width sOffset="89.822343942574776" a="0.12730446224337433" b="0.0043330165267923479" c="0.00025914253790820102" d="-4.8449573245305536e-05" /> - <width sOffset="94.068019458606614" a="0.14666436578117992" b="0.0039134655598614138" c="-0.00056539584226130237" d="-3.5575368665020032e-05" /> - <width sOffset="96.817797110565834" a="0.15241073421594797" b="-2.9458082512002007e-06" c="-0.00023487444204416528" d="2.0734828891272956e-05" /> - <width sOffset="99.75746065630625" a="0.150899114847173" b="-0.00084630183271411797" c="-0.00021932445658982125" d="1.4424916677844389e-05" /> - <width sOffset="99.99570146852858" a="0.15068523770061781" b="-0.00094834968818435523" c="-0.00020669170267718242" d="1.472242705733129e-05" /> - <width sOffset="110.16905899448238" a="0.13514677441757983" b="-0.00058265678523721203" c="0.00024590479832383528" d="1.2311748638926863e-05" /> - <width sOffset="111.25793069458518" a="0.13481978549654294" b="-3.3472703099852313e-06" c="0.00099277790400793863" d="-9.3798790601505783e-05" /> - <width sOffset="113.53235631026416" a="0.13884422233867588" b="0.003056984946114321" c="-0.00021351831268043525" d="-1.9022210308238701e-05" /> - <width sOffset="118.03321573069678" a="0.14654349207437245" b="-2.1087588443453181e-05" c="0.00015750635081255345" d="8.1703231148938871e-05" /> - <width sOffset="119.31935287705818" a="0.14695073001133729" b="0.00078950984398757328" c="-0.00051203358418803308" d="0.00011297065893372441" /> - <width sOffset="120.34241652043613" a="0.14734349302565386" b="9.6549300392950559e-05" c="-0.00016529640175000717" d="0.00011286877617107402" /> - <width sOffset="123.85520577732768" a="0.15053543605539055" b="0.0031135430235579593" c="-0.00023978792493492893" d="-1.5619620606414502e-05" /> - <width sOffset="128.35721063874024" a="0.15826734759358341" b="4.7525661256528785e-06" c="-0.0038310766036218843" d="0.001192642303599583" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - <lane id="1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.9279262273135229" b="-0.041303404181003006" c="0.0047090130324441148" d="0.0010416151798680034" /> - <width sOffset="0.70307704823017048" a="3.9015765048412616" b="-0.033137140893387165" c="0.0058450949247237901" d="-0.00030966194595381103" /> - <width sOffset="8.4354837349443414" a="3.8516621757255178" b="0.0017119928895454745" c="-0.0013689933487962668" d="-0.00030637010543754241" /> - <width sOffset="10.638811275507919" a="3.8455112163388474" b="-0.008782649572966459" c="0.0013809905480972127" d="-0.0011393921378255367" /> - <width sOffset="11.879526486469842" a="3.8345641571280806" b="-0.010617670315136173" c="-0.00049931184187982606" d="0.00012746329380714999" /> - <width sOffset="12.225054874603359" a="3.8308410960347441" b="-0.01091706966985366" c="-0.00026032478110914919" d="7.711707116443982e-05" /> - <width sOffset="16.457879983212024" a="3.78581531989325" b="-0.0089758128443145711" c="0.000892924845879318" d="0.00012310945792463467" /> - <width sOffset="16.866804441467536" a="3.7823026229060104" b="-0.0081837764267490669" c="0.0020204171961431291" d="-0.0005468024767500048" /> - <width sOffset="18.608841260898146" a="3.7712868312410848" b="-0.0061226258992131471" c="-0.0008933927431279419" d="-0.00053978358531791963" /> - <width sOffset="19.734528272963246" a="3.7624926212532119" b="-0.010185981834643462" c="-0.0080040846046583389" d="0.0016946050496097383" /> - <width sOffset="21.640245548465202" a="3.7257406575331631" b="-0.022229838409974792" c="0.0016975201647823606" d="0.0016900138570795924" /> - <width sOffset="22.536429195558128" a="3.7083984086463539" b="-0.015115279592024564" c="0.0010708802806553984" d="-4.8921713570106135e-05" /> - <width sOffset="26.789144168809514" a="3.6597222209968394" b="-0.0086613157588821925" c="0.00020919279160761214" d="-1.3740901683863629e-06" /> - <width sOffset="28.78219878685195" a="3.6432798365918391" b="-0.0078438251980314008" c="0.00019351436272770485" d="-3.5436737647584619e-06" /> - <width sOffset="29.990796721186484" a="3.6340762177885404" b="-0.007391591908048431" c="3.929273633454835e-05" d="1.4585295940961194e-05" /> - <width sOffset="33.268570362274374" a="3.610784038025483" b="-0.0066639020077222232" c="0.00053067614283319427" d="-7.0566705339801392e-05" /> - <width sOffset="36.502113501656311" a="3.5923988578698021" b="-0.0054454679403036178" c="-0.00099981425970396723" d="0.00014181348467506876" /> - <width sOffset="38.955556312805754" a="3.5751147812338502" b="-0.0077905537036258281" c="8.1493211433763591e-05" d="0.0001332593814357799" /> - <width sOffset="41.140660770102841" a="3.5598710305600108" b="-0.0055255980390882878" c="0.00054824839286166625" d="-9.26077950439789e-06" /> - <width sOffset="41.469356417285042" a="3.5581136948731649" b="-0.005168185945338682" c="0.00026045318857030006" d="-2.0764779368469856e-05" /> - <width sOffset="46.957670877196335" a="3.5341615641952977" b="-0.0041856928046761881" c="0.0031868843476295203" d="-0.0004376519264118743" /> - <width sOffset="49.128913838759559" a="3.5356175708025628" b="0.0034636454377546784" c="0.00033166514239485901" d="-0.00041951891765448193" /> - <width sOffset="50.41212612801985" a="3.5397218588438908" b="0.00224245694842939" c="-0.0023025971573614676" d="-0.00021167704358817754" /> - <width sOffset="51.269965273185051" a="3.5398174464660728" b="-0.0021753707939385107" c="-0.0010996713417334321" d="0.00019744295187417804" /> - <width sOffset="56.397195963791432" a="3.5263678924109554" b="0.0021195257958519014" c="0.001360307013072987" d="-0.00044874902744743394" /> - <width sOffset="58.650562801742808" a="3.5329166284146982" b="0.0014142794254014702" c="-0.0014119529946551763" d="7.1405520358587774e-05" /> - <width sOffset="59.206856208348938" a="3.5332787290300178" b="-9.0348896020047732e-05" c="-0.0012762708737946867" d="6.9549933342876355e-05" /> - <width sOffset="68.189635750872924" a="3.4798958502676927" b="-0.0061832478216642906" c="-0.00070156057682608684" d="0.00014655526315868813" /> - <width sOffset="69.475628890667167" a="3.4710956963474162" b="-0.0072605422332279413" c="-0.00012843512088569171" d="0.00015045104241024929" /> - <width sOffset="72.28901161467337" a="3.4530027167713699" b="-0.0044107013078687491" c="0.0011130717008268646" d="0.00015471650965151804" /> - <width sOffset="72.461352805760441" a="3.4522764230993879" b="-0.0040132591716915932" c="0.00041911847497716226" d="4.8766585687436863e-06" /> - <width sOffset="75.868696345643627" a="3.4436607485203816" b="-0.00098724404374146051" c="-2.3837622985488306e-05" d="4.7409414322066787e-06" /> - <width sOffset="79.648986416620971" a="3.4398441438160576" b="-0.00096421770908871837" c="3.1222941954375353e-05" d="3.9830738546024321e-06" /> - <width sOffset="82.637784644297653" a="3.437347546332246" b="-0.0006708381832342381" c="3.2809944641507626e-05" d="-8.4518470582272042e-07" /> - <width sOffset="89.822343942574776" a="3.4339080115380876" b="-0.00033026815691697799" c="1.9694885860642984e-05" d="-9.0133633946311511e-07" /> - <width sOffset="94.068019458606614" a="3.4327918347584112" b="-0.00021177378672965338" c="0.00021564942047623079" d="-1.377554091976884e-05" /> - <width sOffset="96.486082430053727" a="3.433345895467502" b="0.00058949602772388407" c="-0.00023863305659193969" d="2.9555552920026558e-05" /> - <width sOffset="99.75746065630625" a="3.4337552694321962" b="-2.2918853427200681e-05" c="0.0002187393967140377" d="3.5865465052199986e-05" /> - <width sOffset="99.99570146852858" a="3.4337627095676204" b="8.7413479503422806e-05" c="0.00024910356622149496" d="3.6012651817259476e-05" /> - <width sOffset="104.99569627197377" a="3.4449289201631705" b="0.0052793898248027753" c="0.0009055092856107103" d="-0.00018572298052890935" /> - <width sOffset="107.67083196544826" a="3.4619766268559031" b="0.0061368137459075723" c="-0.00025679961850326791" d="5.5016085062256031e-06" /> - <width sOffset="110.16905899448238" a="3.4757908387680194" b="0.0049567351484171868" c="-0.00020961103738867786" d="6.2825124967062417e-06" /> - <width sOffset="113.53235631026416" a="3.4903297583814394" b="0.0037599656567870055" c="0.00042005993535795707" d="-6.8494067796580848e-05" /> - <width sOffset="119.31935287705818" a="3.5128818614979558" b="0.0017402752970863298" c="0.00021571974637509586" d="-9.9761495212453681e-05" /> - <width sOffset="119.44359689855963" a="3.5131012189410238" b="0.001789259146737286" c="-0.00049791475749351845" d="-5.749247488855737e-05" /> - <width sOffset="120.34241652043613" a="3.5142654391096273" b="0.00075484754377160793" c="-0.00065281606270259948" d="-5.7294640846578519e-05" /> - <width sOffset="123.85520577732768" a="3.5063779776551662" b="-0.0059525569986119149" c="7.3361370690584813e-06" d="7.1193755930906732e-05" /> - <width sOffset="128.83554071807373" a="3.4857088433739221" b="-0.00058187075212543806" c="0.0006472488346770548" d="-5.1933394291319456e-05" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="130.51577404638994" space="0" width="0.14999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - </left> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16593723176204453" weight="standard" type="solid"> - <type name="solid"> - <line length="130.51577404638994" space="0" width="0.165937" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="shoulder" level="false"> - <link> - <predecessor id="-1" /> - </link> - <width sOffset="0" a="2.4932836664984506" b="-0.00068037478066163698" c="0.00184138841502605" d="-0.0013539795290678533" /> - <width sOffset="0.70307704823017048" a="2.493244974479242" b="-9.8985578094984428e-05" c="4.6457908923046385e-05" d="-2.702403246036385e-06" /> - <width sOffset="8.4354837349443414" a="2.4940079223218059" b="0.00013474632539544479" c="-2.3074056732988089e-05" d="-3.9043306488542059e-06" /> - <width sOffset="12.225054874603359" a="2.493974710677155" b="-0.0002083437471768583" c="-0.00017432177438058728" d="4.6441891995623772e-05" /> - <width sOffset="15.222249081667087" a="2.493034717430485" b="-1.709505117976004e-06" c="-4.6330687212194226e-05" d="4.7487088189468878e-05" /> - <width sOffset="16.457879983212024" a="2.4930514545199216" b="0.00010130277742986284" c="-4.4281548048025573e-05" d="1.4947014358303092e-06" /> - <width sOffset="18.608841260898146" a="2.4930793531746458" b="-6.8446701582096023e-05" c="-3.0815404494901504e-05" d="-1.9419028558308138e-07" /> - <width sOffset="21.640245548465202" a="2.4925832785791715" b="-0.00026062808379611994" c="-4.5871827145872718e-05" d="4.397002244518455e-06" /> - <width sOffset="28.78219878685195" a="2.4899838757552368" b="-0.00024301674868636245" c="4.6405276679217528e-05" d="4.6326872764471662e-06" /> - <width sOffset="29.990796721186484" a="2.4897661294102238" b="-0.0001105450820776217" c="0.00020457544151430697" d="-1.3496282429260025e-05" /> - <width sOffset="38.955556312805754" a="2.4954925488309816" b="0.00030343049135338153" c="-0.00015579567150117822" d="-9.9342303709318425e-06" /> - <width sOffset="41.469356417285042" a="2.4951130027655672" b="-0.00066817675566269706" c="4.7949591035569537e-05" d="1.5697695195220398e-06" /> - <width sOffset="46.957670877196335" a="2.4931496660626062" b="0" c="-5.0617070457309021e-05" d="1.0108377947636667e-05" /> - <width sOffset="49.128913838759559" a="2.4930145103738424" b="-7.6842258812385295e-05" c="1.6407790437579723e-05" d="2.3149510293234404e-05" /> - <width sOffset="51.269965273185051" a="2.4931524098516231" b="0.00031177668455130685" c="-2.5602239424752136e-05" d="1.1775750043037019e-06" /> - <width sOffset="59.206856208348938" a="2.4946029158964511" b="0.00012791363978171665" c="-1.407824664521087e-05" d="3.0331622962758181e-06" /> - <width sOffset="59.302271364713363" a="2.4946149952621015" b="0.00012530992576663359" c="-2.4745763322465031e-05" d="8.2074326180800945e-07" /> - <width sOffset="69.475628890667167" a="2.4941928727537745" b="-0.00012335117249861463" c="5.0048963655373725e-06" d="8.4573765471084489e-07" /> - <width sOffset="72.28901161467337" a="2.4939042861763325" b="-7.5107443514414428e-05" c="4.0465316340169012e-05" d="-3.4197295690819509e-06" /> - <width sOffset="79.648986416620971" a="2.4941800802609997" b="-3.5192369593323256e-05" c="-3.5016551064677381e-05" d="-3.0814227527407034e-06" /> - <width sOffset="82.637784644297653" a="2.4936798275800767" b="-0.00032708544227798286" c="-2.8518994106072919e-05" d="1.7468358076823989e-06" /> - <width sOffset="89.822343942574776" a="2.4905055896756876" b="-0.00046637430302794028" c="1.0129048207497697e-05" d="1.7338600066448894e-06" /> - <width sOffset="96.486082430053727" a="2.4883606374831468" b="-0.00010040134955739341" c="0.00039914311802139747" d="-4.1597233833185855e-05" /> - <width sOffset="99.99570146852858" a="2.4911264562747273" b="0.0011641666995300705" c="-3.3239399559357264e-05" d="-4.3719179899308652e-05" /> - <width sOffset="102.73622805784117" a="2.4931673838486983" b="-3.0770810347828179e-06" c="-2.0084583021579602e-05" d="-6.1981767753315799e-05" /> - <width sOffset="104.99569627197377" a="2.4923429340191841" b="-0.0010431253668701313" c="-0.00055643858886000885" d="0.00015975386459283591" /> - <width sOffset="107.67083196544826" a="2.488628723799748" b="-0.00059045865184710025" c="0.00039745758834858202" d="-3.1470724442404335e-05" /> - <width sOffset="110.16905899448238" a="2.4891435271854934" b="0.00080618049850556634" c="0.00016309328553163396" d="-3.2488346933563642e-05" /> - <width sOffset="115.16858572981528" a="2.4931907181463613" b="7.9420699609228373e-07" c="-0.00022536082025012108" d="7.0651849012178712e-06" /> - <width sOffset="119.44359689855963" a="2.489627477218999" b="-0.0015386818066810432" c="0.0005417006086030319" d="-3.5203835790856779e-05" /> - <width sOffset="120.34241652043613" a="2.4886565443734172" b="-0.00065022061168872568" c="0.00044718275289698842" d="-3.5062193397709208e-05" /> - <width sOffset="128.83554071807373" a="2.4939104868827089" b="-0.00064170356839887872" c="-2.2386383539679182e-05" d="8.8064956824717442e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="276659308" type="poles" s="383.33655093089482" t="-6.3584444948052381" zOffset="-3.5571901252685563" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="0.34280987473144364" name="SgPoleSign01.flt" /> - <object id="276670026" type="poles" s="304.02384197071467" t="-4.3167160911241895" zOffset="-1.574840962374958" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.3251590376250419" name="SgPoleSign01.flt" /> - <object id="276670038" type="poles" s="288.10367068480411" t="5.1738975068588813" zOffset="-2.6484738126408955" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="1.2515261873591044" name="SgPoleSign01.flt" /> - <object id="276670082" type="poles" s="243.38501173075801" t="7.2895655469675109" zOffset="-1.7675065483871548" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.1324934516128451" name="SgPoleSign01.flt" /> - <object id="276670126" type="poles" s="242.79187132367682" t="-5.1849987325265197" zOffset="-1.5743590954755233" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.3256409045244766" name="SgPoleSign01.flt" /> - <object id="276659364" type="poles" s="312.43617662021126" t="-8.4807337650654073" zOffset="-1.7773362217947635" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.1226637782052364" name="SgPoleSign01.flt" /> - <object id="277422369" type="poles" s="370.24293579544178" t="-6.4775893794529491" zOffset="-1.6368061236412301" roll="0" pitch="0" hdg="0" validLength="0" orientation="none" width="0.040000000000000001" length="0.040000000000000001" height="2.2631938763587698" name="SgPoleSign01.flt" /> - <object id="5182309" s="37.078149482771494" t="-5.1211750851979545" orientation="none" validLength="7.0299797232094221" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.0299797232094221" s="37.078149482771494" distance="0" tStart="-5.1211750851979545" tEnd="-5.1088965894005955" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273617765" s="44.108129205980916" t="-5.1088965894005955" orientation="none" validLength="15.060324934750398" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.060324934750398" s="44.108129205980916" distance="0" tStart="-5.1088965894005955" tEnd="-4.8966143630340673" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542053221" s="59.168454140731313" t="-4.8966143630340673" orientation="none" validLength="27.880031769403956" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="27.880031769403956" s="59.168454140731313" distance="0" tStart="-4.8966143630340673" tEnd="-4.3081165015443075" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810488677" s="87.04848591013527" t="-4.3081165015443075" orientation="none" validLength="11.48835554210028" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="11.48835554210028" s="87.04848591013527" distance="0" tStart="-4.3081165015443075" tEnd="-4.4276064182446584" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078924133" s="98.536841452235549" t="-4.4276064182446584" orientation="none" validLength="9.0238872697751589" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.0238872697751589" s="98.536841452235549" distance="0" tStart="-4.4276064182446584" tEnd="-4.3787996340106847" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742258" s="107.56072872201071" t="-4.3787996340106847" orientation="none" validLength="7.163618202923459" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.163618202923459" s="107.56072872201071" distance="0" tStart="-4.3787996340106847" tEnd="-4.2347806457419432" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742259" s="114.72434692493417" t="-4.2347806457419432" orientation="none" validLength="18.797088102905292" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.797088102905292" s="114.72434692493417" distance="0" tStart="-4.2347806457419432" tEnd="-4.4368860691675955" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742260" s="133.52143502783946" t="-4.4368860691675955" orientation="none" validLength="29.175961033709484" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="29.175961033709484" s="133.52143502783946" distance="0" tStart="-4.4368860691675955" tEnd="-4.8866929519223339" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742261" s="162.69739606154894" t="-4.8866929519223339" orientation="none" validLength="15.672992033000128" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.672992033000128" s="162.69739606154894" distance="0" tStart="-4.8866929519223339" tEnd="-4.9233831231289642" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742262" s="178.37038809454907" t="-4.9233831231289642" orientation="none" validLength="14.237187076631017" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.237187076631017" s="178.37038809454907" distance="0" tStart="-4.9233831231289642" tEnd="-5.0823902680997799" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742263" s="192.60757517118009" t="-5.0823902680997799" orientation="none" validLength="18.829842314784628" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.829842314784628" s="192.60757517118009" distance="0" tStart="-5.0823902680997799" tEnd="-5.1110265057550768" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742264" s="211.43741748596472" t="-5.1110265057550768" orientation="none" validLength="15.359857397193622" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.359857397193622" s="211.43741748596472" distance="0" tStart="-5.1110265057550768" tEnd="-4.9884685054874209" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742265" s="226.79727488315834" t="-4.9884685054874209" orientation="none" validLength="20.455052483738768" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="20.455052483738768" s="226.79727488315834" distance="0" tStart="-4.9884685054874209" tEnd="-4.9455133100694404" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742266" s="247.25232736689711" t="-4.9455133100694404" orientation="none" validLength="14.85283010941086" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.85283010941086" s="247.25232736689711" distance="0" tStart="-4.9455133100694404" tEnd="-4.8118421308075785" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742267" s="262.10515747630797" t="-4.8118421308075785" orientation="none" validLength="12.038894533672817" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="12.038894533672817" s="262.10515747630797" distance="0" tStart="-4.8118421308075785" tEnd="-4.5731796989759044" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742268" s="274.14405200998078" t="-4.5731796989759044" orientation="none" validLength="27.546985682078628" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="27.546985682078628" s="274.14405200998078" distance="0" tStart="-4.5731796989759044" tEnd="-3.6102718133181355" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742269" s="301.69103769205941" t="-3.6102718133181355" orientation="none" validLength="6.6181463142271468" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.6181463142271468" s="301.69103769205941" distance="0" tStart="-3.6102718133181355" tEnd="-3.5826187913598826" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742270" s="308.30918400628656" t="-3.5826187913598826" orientation="none" validLength="5.9913021058314371" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.9913021058314371" s="308.30918400628656" distance="0" tStart="-3.5826187913598826" tEnd="-3.7090720247360398" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="5182532" s="0" t="6.8746379867094367" orientation="none" validLength="7.3914915909401238" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.3914915909401238" s="0" distance="0" tStart="6.8746379867094367" tEnd="7.0542399035323955" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="273617988" s="7.3914915909401238" t="7.0542399035323955" orientation="none" validLength="16.158404433492802" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="16.158404433492802" s="7.3914915909401238" distance="0" tStart="7.0542399035323955" tEnd="7.0424145758604677" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="542053444" s="23.549896024432925" t="7.0424145758604677" orientation="none" validLength="14.861486028854102" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="14.861486028854102" s="23.549896024432925" distance="0" tStart="7.0424145758604677" tEnd="6.8915391608604528" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="810488900" s="38.411382053287028" t="6.8915391608604528" orientation="none" validLength="18.968609599422535" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="18.968609599422535" s="38.411382053287028" distance="0" tStart="6.8915391608604528" tEnd="7.2072777113071709" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1078924356" s="57.379991652709563" t="7.2072777113071709" orientation="none" validLength="9.1477517319578396" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="9.1477517319578396" s="57.379991652709563" distance="0" tStart="7.2072777113071709" tEnd="7.4689763094787072" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742271" s="66.527743384667403" t="7.4689763094787072" orientation="none" validLength="15.398076813536079" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="15.398076813536079" s="66.527743384667403" distance="0" tStart="7.4689763094787072" tEnd="7.6405674951492992" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742272" s="81.925820198203482" t="7.6405674951492992" orientation="none" validLength="47.256776702132086" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="47.256776702132086" s="81.925820198203482" distance="0" tStart="7.6405674951492992" tEnd="7.4798460736936123" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742273" s="129.18259690033557" t="7.4798460736936123" orientation="none" validLength="7.7459134470795448" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.7459134470795448" s="129.18259690033557" distance="0" tStart="7.4798460736936123" tEnd="7.5823542329064226" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742274" s="136.92851034741511" t="7.5823542329064226" orientation="none" validLength="24.081114254548993" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="24.081114254548993" s="136.92851034741511" distance="0" tStart="7.5823542329064226" tEnd="7.1979451032021133" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742275" s="161.00962460196411" t="7.1979451032021133" orientation="none" validLength="7.6675902428689824" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.6675902428689824" s="161.00962460196411" distance="0" tStart="7.1979451032021133" tEnd="6.9796088858081049" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742276" s="168.67721484483309" t="6.9796088858081049" orientation="none" validLength="8.1812116690785501" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.1812116690785501" s="168.67721484483309" distance="0" tStart="6.9796088858081049" tEnd="7.0244225863666268" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742277" s="176.85842651391164" t="7.0244225863666268" orientation="none" validLength="13.996430334439196" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.996430334439196" s="176.85842651391164" distance="0" tStart="7.0244225863666268" tEnd="6.773459416464342" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742278" s="190.85485684835083" t="6.773459416464342" orientation="none" validLength="8.1635915598017732" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="8.1635915598017732" s="190.85485684835083" distance="0" tStart="6.773459416464342" tEnd="6.7412552475489536" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742279" s="199.01844840815261" t="6.7412552475489536" orientation="none" validLength="28.266690181185339" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="28.266690181185339" s="199.01844840815261" distance="0" tStart="6.7412552475489536" tEnd="7.0331748671316596" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742280" s="227.28513858933795" t="7.0331748671316596" orientation="none" validLength="13.284350070282358" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="13.284350070282358" s="227.28513858933795" distance="0" tStart="7.0331748671316596" tEnd="7.083156075331388" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742281" s="240.5694886596203" t="7.083156075331388" orientation="none" validLength="6.886304743373671" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.886304743373671" s="240.5694886596203" distance="0" tStart="7.083156075331388" tEnd="6.9921545769041211" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742282" s="247.45579340299398" t="6.9921545769041211" orientation="none" validLength="7.7103720344446742" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="7.7103720344446742" s="247.45579340299398" distance="0" tStart="6.9921545769041211" tEnd="6.6738086366561449" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742283" s="255.16616543743865" t="6.6738086366561449" orientation="none" validLength="19.131669651783938" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="19.131669651783938" s="255.16616543743865" distance="0" tStart="6.6738086366561449" tEnd="5.32476849954194" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object id="1073742284" s="274.29783508922259" t="5.32476849954194" orientation="none" validLength="6.1162840791199073" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="6.1162840791199073" s="274.29783508922259" distance="0" tStart="5.32476849954194" tEnd="5.1142470017214032" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412772" s="278.54663325460263" t="5.2611054355258284" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848228" s="250.40356529957367" t="7.0147514016312078" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283684" s="225.52504624643612" t="7.0508466792509354" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719140" s="197.31975547073944" t="6.5923905558345002" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154596" s="173.3475739236344" t="7.2458765285266935" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742285" s="150.18280835614607" t="7.5260713310561416" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742286" s="127.2836953251696" t="7.5393280620925482" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742287" s="104.00346119319546" t="7.8765993859423515" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742288" s="79.233893011581003" t="7.5114325603271093" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742289" s="45.519729825481839" t="6.7683148923209684" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742290" s="24.893184304171378" t="7.0197893772302979" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="3.1415926535897931" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="9412805" s="300.21635798195683" t="-3.7871835500190381" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="277848261" s="250.90048297354483" t="-4.9620194082335374" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="546283717" s="225.34294821927264" t="-5.1385219920981315" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="814719173" s="197.79608977155095" t="-5.0814292618060497" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1083154629" s="173.52679545712476" t="-5.0177304846950204" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742291" s="150.9011408998112" t="-4.8150629615990752" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742292" s="122.30496039629408" t="-4.4130174740475727" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742293" s="103.95106723052139" t="-4.4600427655146317" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742294" s="75.356951099575127" t="-4.6520154513298051" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - <object type="COUNTRY_D_road" name="Sg620_Leitpfosten.flt" zOffset="-0.19500000000000001" id="1073742295" s="61.038032154518888" t="-4.9488553229096581" validLength="0" orientation="none" length="0.11" width="0.12" height="1.25" hdg="0" pitch="0" roll="0" /> - </objects> - <signals> - <signal dynamic="no" id="8223852" type="626" subtype="32" country="DEU" zOffset="0.34280987473144364" s="383.33655093089482" t="-6.3584444948052381" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8223908" type="276" subtype="-1" country="DEU" zOffset="2.1226637782052364" s="312.43617662021126" t="-8.4807337650654073" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8223920" type="1049" subtype="13" country="DEU" zOffset="1.3656356680060924" s="312.43307899114296" t="-8.4443439117156647" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8234570" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.3251590376250419" s="304.02384197071467" t="-4.3167160911241895" orientation="-" hOffset="3.1415926535897931" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8234582" type="605" subtype="31" country="DEU" zOffset="1.2515261873591044" s="288.10367068480411" t="5.1738975068588813" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8234626" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.1324934516128451" s="243.38501173075801" t="7.2895655469675109" orientation="-" hOffset="3.1415926535897931" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8234670" type="274" subtype="58" value="80" unit="km/h" country="DEU" zOffset="2.3256409045244766" s="242.79187132367682" t="-5.1849987325265197" orientation="-" hOffset="3.1415926535897931" name="Sg274Hoechstgeschw80_03.flt" height="0.77000000000000002" /> - <signal dynamic="no" id="8986901" type="511" subtype="22" country="DEU" zOffset="2.2631938763587698" s="370.24426958246545" t="-6.4787971604104353" orientation="-" hOffset="3.1415926535897931" name="" /> - <signal dynamic="no" id="8986913" type="1004" subtype="33" country="DEU" zOffset="1.8981478733500978" s="370.24293579544178" t="-6.4775893794529491" orientation="-" hOffset="3.1415926535897931" name="Sg1004-33nach400m03.flt" height="0.40999999999999998" /> - </signals> - </road> - <road name="" length="5.0000000000000568" id="33782286" junction="33556587"> - <link> - <predecessor elementType="road" elementId="33782019" contactPoint="end" /> - <successor elementType="road" elementId="9100473" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1753.0679056553786" y="100.76685894860647" hdg="0.41895467314610246" length="5.0000000000000568"> - <paramPoly3 aU="0" bU="5.0000017620815287" cU="-1.7317202617289765e-06" dU="-3.5108085083121239e-08" aV="-0" bV="-0" cV="-0.00018733922867203515" dV="-1.1949146719725221e-06" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.3063374345858" b="0.00037990236126078897" c="-1.1486916216654278e-05" d="-3.7280672529289848e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.023726427327337384" b="-2.1488929262364098e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="7.9766947642924944" b="0.0053441723052595255" c="0.00064546059230734395" d="-0.00020332473855626636" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.1579837929624697" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000000568" space="0" width="0.15798400000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8087573269336623" b="0.0048341411478869858" c="0.00057582241976240423" d="-0.00020765662123289707" /> - <roadMark sOffset="0" color="standard" width="0.1512401578714869" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.15124000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.8603538223114775" b="0.00015636237910243115" c="0.0002501419675693648" d="5.8299241990891054e-06" /> - <width sOffset="0.96800629827538387" a="3.8607448622295748" b="0.00065702892918232574" c="-0.00017657483274624496" d="0.00010064120829187031" /> - <roadMark sOffset="0" color="standard" width="0.14204582948662806" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14204600000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.9488232067731888" b="0.0034393052364363273" c="0.0010485262570719806" d="-0.00039765396082910447" /> - <width sOffset="0.96800629827538387" a="3.9527742881727588" b="0.0043514168165845624" c="0.00033737865156699583" d="-0.00049246524492189058" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="driving" level="false"> - <link> - <predecessor id="-4" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.5063343475933846" b="-0.0074698926393490569" c="-2.4144546648656061e-05" d="0.00051309898093478904" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000000568" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-5" type="shoulder" level="false"> - <link> - <predecessor id="-5" /> - </link> - <width sOffset="0" a="0.18176732725256617" b="-0.00064268584811086674" c="-0.00017342982935620688" d="-0.00018698248870348028" /> - <width sOffset="4.4927103954627796" a="0.15842323134468472" b="-0.013523440072379114" c="0.051289090708737176" d="2.0029793597585725e-06" /> - <width sOffset="4.7427367336659927" a="0.15824829008604446" b="0.012124182644737774" c="2.1606347895221014" d="-2.7070556145297839" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782279" s="0" t="9.5997473592482816" orientation="none" validLength="5.0000000000000568" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.0000000000000568" s="0" distance="0" tStart="9.5997473592482816" tEnd="9.5936403869666975" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="4.9999999999998952" id="33782308" junction="33556587"> - <link> - <predecessor elementType="road" elementId="33782045" contactPoint="end" /> - <successor elementType="road" elementId="9100473" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="1756.7403550725628" y="92.518414477990348" hdg="0.41718592190177861" length="4.9999999999998952"> - <paramPoly3 aU="0" bU="4.9901673995956095" cU="0.0094541205888678849" dU="0.00037738022070165668" aV="-0" bV="4.4408920985006262e-16" cV="-0.0024718941085917182" dV="0.0044755239957476687" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.09588225735612" b="-9.0049269937341825e-05" c="-3.5489954325385045e-05" d="-4.2713331673727151e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.023252456737597276" b="7.3305188685658817e-05" c="-0" d="8.6736173798845811e-22" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="1.5182343574417256" b="0.0034515951871005482" c="0.00061505346274361465" d="4.2297974073227878e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.12" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999998952" space="0" width="0.12" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="-6" /> - </link> - <width sOffset="0" a="3.3863158343140007" b="-0.0090327021395450371" c="0.00048170690435801934" d="4.2045473142599408e-05" /> - <roadMark sOffset="0" color="standard" width="0.20000000000000001" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999998952" space="0" width="0.20000000000000001" sOffset="0" tOffset="-0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <predecessor id="-2" /> - </link> - <width sOffset="0" a="2.4928587436527918" b="9.0118684057281448e-05" c="-7.0964803169818271e-06" d="-1.99297718056192e-06" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="5.0000000011376473" id="33782320" junction="33554597"> - <link> - <predecessor elementType="road" elementId="33781969" contactPoint="start" /> - <successor elementType="road" elementId="4940030" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="660.79479631654954" y="-254.13038568642784" hdg="0.042856448045598183" length="5.0000000011376473"> - <paramPoly3 aU="0" bU="5.0004757903167247" cU="-0.00047147416456179637" dU="-9.030802838725833e-06" aV="-0" bV="4.4408920985006262e-16" cV="0.0058726221631195639" dV="6.607660713093401e-05" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.34877670074601" b="-0.01502765183454016" c="3.3428259162064936e-05" d="1.3655502843334943e-07" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.028184898499840075" b="8.0800997199598204e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.6903153136327158" b="0.00088903225060935618" c="-1.0453649158041201e-05" d="-7.2268921394444041e-06" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15327851038223128" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000011376473" space="0" width="0.153279" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="3.9453453415765947" b="0.0080035276104323053" c="7.8332274683626927e-06" d="-0.00010775816260485536" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="2" /> - <successor id="-5" /> - </link> - <width sOffset="0" a="3.7089786428962261" b="-0.0062794348378956474" c="-0.00010954942753973417" d="0.00029079984827803658" /> - <width sOffset="0.27842690011850291" a="3.707228063527316" b="-0.0062728080978429425" c="0.00020810163281490061" d="6.0915926667656687e-05" /> - <width sOffset="4.376258995827647" a="3.6892093695370876" b="-0.0014985346303890233" c="-0.0003151857475025238" d="0.0016207924331761664" /> - <roadMark sOffset="0" color="standard" width="0.30015685778938728" weight="bold" type="solid"> - <type name="solid"> - <line length="5.0000000011376473" space="0" width="0.30015700000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="2.493162872451415" b="-1.3859837345992312e-05" c="0.00019385498828179898" d="-0.00021950225552516068" /> - <width sOffset="0.27842690011850291" a="2.4931693036822238" b="4.3040591771113823e-05" c="-6.4242568864642552e-05" d="1.0381666085222197e-05" /> - <width sOffset="4.376258995827647" a="2.492981281351931" b="3.9523978739653852e-05" c="0.001335541503251138" d="-0.0015494948404252706" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33781966" s="0" t="-7.4974047067367344" orientation="none" validLength="5.0000000011376464" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.0000000011376464" s="0" distance="0" tStart="-7.4974047067367344" tEnd="-7.4787836415952729" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="4.9999999994717861" id="33782323" junction="33556490"> - <link> - <predecessor elementType="road" elementId="33782252" contactPoint="start" /> - <successor elementType="road" elementId="4940168" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-562.79869504182966" y="-228.47304419041902" hdg="1.27271393447225" length="4.9999999994717861"> - <paramPoly3 aU="0" bU="4.8134285371078285" cU="0.1533498929485928" dU="0.032811149059914869" aV="-0" bV="4.4408920985006262e-16" cV="-0.060747030869514357" dV="0.0042134670242187427" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="156.92295377009813" b="-0.00092742866264970973" c="7.1962636918669891e-05" d="4.99838335482862e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028457149297500123" b="-5.1793490723079803e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.7836453986431549" b="0.015300290683905541" c="0.0038928820088299423" d="0.00035890276123767487" /> - <laneOffset s="2.0885663972659789" a="3.8358520531335483" b="0.036258095324480856" c="0.050293224948966236" d="-0.011568300388350087" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16593723176204453" weight="standard" type="solid"> - <type name="solid"> - <line length="2.0885663972659789" space="0" width="0.165937" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <roadMark sOffset="2.0885663972659789" type="none" width="0" /> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6091187902268032" b="-0.021447749736102108" c="0.0029440507953578826" d="0.0013302042958824869" /> - <width sOffset="1.6164751234155403" a="3.5877603821523629" b="-0.0015023411399155695" c="0.013016024374220489" d="-0.0011753067397247798" /> - <width sOffset="2.0885663972659789" a="3.5898283636133774" b="0.010001339473030831" c="0.055503034405568634" d="-0.013102509889308604" /> - <roadMark sOffset="0" color="standard" width="0.15684155628812513" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="6" width="0.15684200000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="2" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.4627442707896079" b="0.0030691736255717694" c="-2.778410020761238e-05" d="-0.0009757070420273275" /> - <width sOffset="1.2806472215778513" a="3.464579920462675" b="-0.0018026360246736761" c="-0.0049336667126625815" d="-0.0006599801295711521" /> - <width sOffset="1.6164751234155403" a="3.46339312756953" b="-0.0053396603343620688" c="-0.0092198330579587387" d="0.0018455309060325178" /> - <roadMark sOffset="0" color="standard" width="0.29999999999999999" weight="bold" type="solid"> - <type name="solid"> - <line length="4.9999999994717861" space="0" width="0.29999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="2.4933358730922723" b="1.4885954275546676e-05" c="-0.00062802458488993816" d="0.00012563596957902622" /> - <width sOffset="1.2806472215778513" a="2.4925888180424765" b="-0.00097551935570134446" c="0.0010119345563413204" d="-0.0001900909428775193" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782249" s="0" t="-6.8746379867094367" orientation="none" validLength="4.9999994384157072" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="4.9999994384157072" s="0" distance="0" tStart="-6.8746379867094367" tEnd="-6.7316418764827608" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="4.999999999412319" id="33782325" junction="33554597"> - <link> - <predecessor elementType="road" elementId="33781942" contactPoint="start" /> - <successor elementType="road" elementId="4940030" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="660.3527959705682" y="-244.36814670859701" hdg="0.043588376720283595" length="4.999999999412319"> - <paramPoly3 aU="0" bU="4.967337425579232" cU="0.032261184509095861" dU="0.00039907533374361124" aV="-0" bV="-0" cV="0.0041813493035314873" dV="-7.6422612267209617e-06" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="165.07121194259207" b="-0.012941854920484025" c="-0.00013305280561553889" d="-2.313599395379562e-06" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="-0.027893224450209121" b="2.2466187294432542e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="5.2384787362378296" b="-0.00044336982480320386" c="0.00052204754757109761" d="7.1224862025138575e-05" /> - <laneOffset s="0.39303186853167205" a="5.2383894448569679" b="-0" c="0.00013305555759514601" d="-1.6701674386470649e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16415335160999631" weight="standard" type="solid"> - <type name="solid"> - <line length="4.999999999412319" space="0" width="0.16415299999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-1" /> - </link> - <width sOffset="0" a="3.8212742921510543" b="-0.00085423142591824935" c="0.00063389283623497292" d="-0.00059723478158391812" /> - <width sOffset="0.39303186853167205" a="3.8210002119217408" b="-0.00063272308012581589" c="-0.00054327697723400431" d="-0.00068516173957699556" /> - <width sOffset="0.39973793778296152" a="3.82099594419841" b="-0.00064010202417219358" c="-0.0012319498560850808" d="0.00018861566629120057" /> - <roadMark sOffset="0" color="standard" width="0.14573232133187675" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.145732" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="2" /> - <successor id="-2" /> - </link> - <width sOffset="0" a="3.6551692970762013" b="0.0032934445760545686" c="-7.7854648458603902e-05" d="0.00062332610364539706" /> - <width sOffset="0.39973793778296152" a="3.6565131859062303" b="0.0035300062804544991" c="0.0013445352815605461" d="-0.00025045088064133372" /> - <roadMark sOffset="0" color="standard" width="0.14480015053551021" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.14480000000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="3" /> - <successor id="-3" /> - </link> - <width sOffset="0" a="3.8465111972139874" b="-0.0027919641800373428" c="-0.00045939185969330544" d="0.00046498930324717646" /> - <width sOffset="0.13250145053518825" a="3.8461342742304581" b="-0.0028892134140230219" c="-0.00038849707594799281" d="0.00010532870010351774" /> - <width sOffset="4.2573869442771226" a="3.8349987943815305" b="-0.00071782283234442463" c="0.011328927271447386" d="-0.0097364442245535324" /> - <roadMark sOffset="0" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="4.999999999412319" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link> - <predecessor id="4" /> - </link> - <width sOffset="0" a="-2.454799919160422e-05" b="0.00027924597085445766" c="-0.0010491601918338231" d="-0.00013397615877720152" /> - <width sOffset="0.13250145053518825" a="-6.2788908987698733e-06" b="-5.8410349590877288e-06" c="-0.00098847581021367127" d="0.00022568444436643495" /> - <width sOffset="4.2573869442771226" a="-0.0010096238245838052" b="0.0033593059375444673" c="-0.0086097262040380779" d="0.010067457369033804" /> - <width sOffset="4.7504933193607934" a="-0.00023952157445528144" b="0.002212108660644644" c="2.3916491988450721" d="-3.1651029061938272" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33781938" s="0" t="6.7417376166212444" orientation="none" validLength="5.000000000207252" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="5.000000000207252" s="0" distance="0" tStart="6.7417376166212444" tEnd="6.7501314107154773" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="5.0000000000000462" id="33782328" junction="33555390"> - <link> - <predecessor elementType="road" elementId="33782160" contactPoint="start" /> - <successor elementType="road" elementId="4940867" contactPoint="start" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-795.46051527368672" y="-781.03554470611607" hdg="4.4011821512907847" length="5.0000000000000462"> - <paramPoly3 aU="0" bU="4.8965380016859825" cU="0.10073057475395769" dU="0.0027312764805956691" aV="0" bV="-1.9984014443252818e-15" cV="0.00087509597085987795" dV="0.00016000698581860717" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.26483309683684" b="3.7434462749512856e-05" c="-9.2082807736915135e-06" d="-3.0521147964398047e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.025137724201139262" b="-6.1183455025994863e-06" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="3.364527840190835" b="-0.00070400974002368406" c="0.00038566148290239383" d="4.3235540333539171e-05" /> - <laneOffset s="0.80402208442005652" a="3.3642335844213629" b="-0" c="0.0062894109740255525" d="5.2553835615852253e-07" /> - <laneOffset s="2.2016188520091391" a="3.3765199791530773" b="0.017583200460190334" c="0.079461181143536563" d="-0.019678723835412377" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.15106905665220544" weight="standard" type="solid"> - <type name="solid"> - <line length="2.2016188520091391" space="0" width="0.15106900000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <roadMark sOffset="2.2016188520091391" type="none" width="0" /> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="1" /> - <successor id="-4" /> - </link> - <width sOffset="0" a="2.9601690732009338" b="-0.0022308567648350393" c="0.00068057013101884803" d="4.4750929429355517e-05" /> - <width sOffset="0.80402208442005652" a="2.9588386304861234" b="-0.0010496820161493248" c="0.0065879748410405999" d="2.0409274519735949e-06" /> - <width sOffset="2.2016188520091391" a="2.9702453077278141" b="0.017376942157708766" c="0.079766098719258438" d="-0.019677208446317245" /> - <width sOffset="2.5389901236982024" a="2.9844311235533478" b="0.064479579783874266" c="0.066532938611165882" d="-0.022279424140435673" /> - <width sOffset="4.3305244297574941" a="3.1853833876499364" b="0.088347867473197533" c="-0.06632894673610952" d="0.00034460415092976704" /> - <roadMark sOffset="0" color="standard" width="0.18168409816709552" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.18168400000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="40" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="2" /> - <successor id="-5" /> - </link> - <width sOffset="0" a="3.9447705775349422" b="-0.0013060448775739255" c="-0.00057420762460082481" d="0.00018690078873393601" /> - <width sOffset="0.63243456924615948" a="3.9437621996547225" b="-0.0018080763019084779" c="-0.0011014135716096662" d="0.00017287637293998874" /> - <width sOffset="2.5389901236982024" a="3.9375094890626312" b="-0.0041226955947023707" c="-0.0067950327468050842" d="0.0027750920670591215" /> - <width sOffset="4.3305244297574941" a="3.9242712906816539" b="-0.0017489978656532732" c="0.021238812521792522" d="-0.019848936224305242" /> - <roadMark sOffset="0" color="standard" width="0.2954527572594926" weight="bold" type="solid"> - <type name="solid"> - <line length="5.0000000000000462" space="0" width="0.29545300000000002" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-3" type="shoulder" level="false"> - <link> - <predecessor id="3" /> - </link> - <width sOffset="0" a="2.4929676309008069" b="9.7743739411904063e-05" c="-0.00036362310705978149" d="-7.5057159589704607e-05" /> - <width sOffset="0.63243456924615948" a="2.4928650215811121" b="-0.00045225452769796131" c="0.00037578417221133844" d="-6.1032743795787434e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="33782157" s="0" t="-7.411638444736159" orientation="none" validLength="5.0000000000000462" length="0" roll="0" pitch="0" hdg="0" type="Railing" name="RAILING_SGL_STD_UP" width="0.34999999999999998" height="0.29999999999999999" zOffset="0.69999999999999996"> - <repeat length="5.0000000000000462" s="0" distance="0" tStart="-7.411638444736159" tEnd="-7.3867559359819053" zOffsetStart="0.69999999999999996" zOffsetEnd="0.69999999999999996" heightStart="0.29999999999999999" heightEnd="0.29999999999999999" /> - </object> - </objects> - <signals /> - </road> - <road name="" length="5.0000000000000631" id="33782339" junction="33554459"> - <link> - <predecessor elementType="road" elementId="33782103" contactPoint="end" /> - <successor elementType="road" elementId="33782252" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-705.68371530910304" y="-630.92388351749207" hdg="1.2141092274364922" length="5.0000000000000631"> - <paramPoly3 aU="0" bU="4.9609851268231031" cU="0.041136193410534587" dU="-0.0021250166106181684" aV="-0" bV="6.6613381477509392e-16" cV="-0.0055966054891025078" dV="0.00028653391973159064" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.20770354535642" b="-0.00030702297854488163" c="4.7721482678751886e-06" d="1.7942890164998066e-08" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.028556750927546001" b="-5.6820112253085755e-05" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="2.1120027938654906" b="0.00022440614811453194" c="-3.3793663440125197e-05" d="-6.0803952539024762e-05" /> - <laneOffset s="0.93925665952134008" a="2.1121333728869542" b="-0" c="-0.0005468285134861662" d="5.7601935191063972e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16593723176204453" weight="standard" type="solid"> - <type name="solid"> - <line length="5.0000000000000631" space="0" width="0.165937" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.6103394821389396" b="2.6313201917935528e-09" c="-0.041247911748955257" d="0.0095807781771173068" /> - <width sOffset="0.93925665952134008" a="3.5818892277044325" b="-0.052128173138696804" c="-0.014593185928196374" d="0.0096991840648473927" /> - <width sOffset="2.7223988358437685" a="3.4975280377671316" b="-0.011653162591638868" c="0.0032428806270077964" d="5.0613585947914942e-05" /> - <width sOffset="4.2013755980318086" a="3.4875504068566801" b="-0.0017287401497372099" c="-4.9503612857830995e-05" d="0.00034139933716094938" /> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="2.7223988358437685" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="2.2776011641562945" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="80" unit="km/h" /> - </lane> - <lane id="-2" type="shoulder" level="false"> - <link> - <successor id="2" /> - </link> - <width sOffset="0" a="6.8389738316909643e-14" b="-0.016020336629254034" c="0.074495119165682688" d="-0.018528360235105425" /> - <width sOffset="2.2225081179246393" a="0.12895892370873185" b="0.040546818257623851" c="-0.022141032933878414" d="-0.0098507135646495169" /> - <width sOffset="2.7223988358437685" a="0.14246453092495615" b="0.011025818553058587" c="-0.0028648677707986282" d="-0.00020214308574996207" /> - <width sOffset="4.2013755980318086" a="0.15185098046198231" b="0.0012251862967185994" c="-0.00024480935791163904" d="-0.00049292883696424011" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects /> - <signals /> - </road> - <road name="" length="4.9999999999999707" id="33782346" junction="33555309"> - <link> - <predecessor elementType="road" elementId="4939858" contactPoint="end" /> - <successor elementType="road" elementId="4940763" contactPoint="end" /> - </link> - <type s="0" type="motorway" /> - <planView> - <geometry s="0" x="-773.98848329782436" y="-801.15725538041443" hdg="1.254182308202864" length="4.9999999999999707"> - <paramPoly3 aU="0" bU="4.9999948503560718" cU="5.1623427422368973e-06" dU="-6.4458116221566327e-08" aV="-0" bV="2.2204460492503131e-16" cV="0.00062736922891796945" dV="-3.8377235107183344e-06" /> - </geometry> - </planView> - <elevationProfile> - <elevation s="0" a="158.52105886574549" b="-4.6177224792630177e-05" c="-1.1000282529505375e-06" d="-7.6638962687171302e-10" /> - </elevationProfile> - <lateralProfile> - <superelevation s="0" a="0.026490421049647068" b="-8.3847355029608375e-06" c="-0" d="0" /> - </lateralProfile> - <lanes> - <laneOffset s="0" a="5.7848796827805495" b="-9.9324935794002694e-10" c="0.010147727706939402" d="-0.0028575700868331286" /> - <laneOffset s="1.8078264818772984" a="5.8011611755678549" b="0.0086730154290851208" c="-0.00023640756727692493" d="1.5988386892794823e-05" /> - <laneSection s="0"> - <center> - <lane id="0" type="driving" level="false"> - <roadMark sOffset="0" color="standard" width="0.16677984138680607" weight="standard" type="solid"> - <type name="solid"> - <line length="4.9999999999999707" space="0" width="0.16678000000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - </lane> - </center> - <right> - <lane id="-1" type="driving" level="false"> - <link> - <predecessor id="-1" /> - <successor id="1" /> - </link> - <width sOffset="0" a="3.8116132011079511" b="-3.132905129990385e-10" c="0.0092865246804214995" d="-0.0028179324210190529" /> - <width sOffset="1.8078264818772984" a="3.8253142752522091" b="0.0059478406429181157" c="-0.00088263652797934927" d="5.5626052706869033e-05" /> - <roadMark sOffset="0" color="standard" width="0.16109079863826911" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16109100000000001" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-2" type="driving" level="false"> - <link> - <predecessor id="-2" /> - <successor id="2" /> - </link> - <width sOffset="0" a="3.6463421739597406" b="1.6452838188841019e-10" c="6.1369938424854129e-05" d="-1.3937454411983653e-05" /> - <roadMark sOffset="0" color="standard" width="0.16803765159562165" weight="standard" type="broken"> - <type name="broken"> - <line length="6" space="12" width="0.16803799999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-3" type="driving" level="false"> - <link> - <predecessor id="-3" /> - <successor id="3" /> - </link> - <width sOffset="0" a="3.8364074509586881" b="6.33485925636854e-10" c="-0.13088140525510611" d="0.052930822345965578" /> - <width sOffset="1.6191997669031641" a="3.7179651045402493" b="-0.0075229389478913113" c="0.0013081345757866185" d="-2.7552117887613272e-05" /> - <roadMark sOffset="0" type="none" width="0" /> - <roadMark sOffset="1.6191997669031641" color="standard" width="0.14999999999999999" weight="standard" type="solid"> - <type name="solid"> - <line length="3.3808002330968066" space="0" width="0.14999999999999999" sOffset="0" tOffset="0" /> - </type> - </roadMark> - <speed sOffset="0" max="100" unit="km/h" /> - </lane> - <lane id="-4" type="shoulder" level="false"> - <link> - <successor id="4" /> - </link> - <width sOffset="0" a="0.10003509738246397" b="-0.99202566260041825" c="-3.8107860261802564" d="42.787405018879774" /> - <width sOffset="0.12373354590997021" a="-1.3008577504081131e-07" b="0.030154480068783268" c="0.15747510091694161" d="-0.07321836771796203" /> - <width sOffset="1.6191997669031641" a="0.15239716386046531" b="0.0099109741522962341" c="-0.0059610356377432019" d="0.00089610835825383876" /> - <roadMark sOffset="0" type="none" width="0" /> - </lane> - </right> - </laneSection> - </lanes> - <objects> - <object id="5181514" s="0" t="6.7802891346042937" orientation="none" validLength="4.9999999999999707" length="0" roll="0" pitch="0" hdg="3.1415926535897931" type="Railing" name="ROADBARRIER" width="0.68000000000000005" height="1.1499999999999999" zOffset="0.070000000000000007"> - <repeat length="4.9999999999999707" s="0" distance="0" tStart="6.7802891346042937" tEnd="6.8249754126403817" zOffsetStart="0.070000000000000007" zOffsetEnd="0.070000000000000007" heightStart="1.1499999999999999" heightEnd="1.1499999999999999" /> - </object> - </objects> - <signals /> - </road> - <junction id="33556302" name=""> - <connection id="1" incomingRoad="4941552" connectingRoad="4941542" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - </connection> - <connection id="2" incomingRoad="4941552" connectingRoad="4941863" contactPoint="start"> - <laneLink from="-3" to="-1" /> - </connection> - </junction> - <junction id="33554629" name=""> - <connection id="1" incomingRoad="4940030" connectingRoad="9100480" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - <laneLink from="-4" to="-4" /> - </connection> - <connection id="2" incomingRoad="4940030" connectingRoad="9100458" contactPoint="start"> - <laneLink from="-6" to="-1" /> - </connection> - </junction> - <junction id="33554492" name=""> - <connection id="1" incomingRoad="33781870" connectingRoad="33781913" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - </connection> - <connection id="2" incomingRoad="33782205" connectingRoad="33781891" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - </connection> - </junction> - <junction id="33556587" name=""> - <connection id="1" incomingRoad="33782019" connectingRoad="33782286" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - <laneLink from="-4" to="-4" /> - <laneLink from="-5" to="-5" /> - </connection> - <connection id="2" incomingRoad="33782045" connectingRoad="33782308" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - </connection> - </junction> - <junction id="33556490" name=""> - <connection id="1" incomingRoad="4942083" connectingRoad="33782227" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - </connection> - <connection id="2" incomingRoad="33782252" connectingRoad="33782323" contactPoint="start"> - <laneLink from="3" to="-3" /> - <laneLink from="2" to="-2" /> - <laneLink from="1" to="-1" /> - </connection> - </junction> - <junction id="33554597" name=""> - <connection id="1" incomingRoad="33781942" connectingRoad="33782325" contactPoint="start"> - <laneLink from="4" to="-4" /> - <laneLink from="3" to="-3" /> - <laneLink from="2" to="-2" /> - <laneLink from="1" to="-1" /> - </connection> - <connection id="2" incomingRoad="33781969" connectingRoad="33782320" contactPoint="start"> - <laneLink from="3" to="-3" /> - <laneLink from="2" to="-2" /> - <laneLink from="1" to="-1" /> - </connection> - </junction> - <junction id="33555390" name=""> - <connection id="1" incomingRoad="4940858" connectingRoad="33782133" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - <laneLink from="-4" to="-4" /> - </connection> - <connection id="2" incomingRoad="33782160" connectingRoad="33782328" contactPoint="start"> - <laneLink from="3" to="-3" /> - <laneLink from="2" to="-2" /> - <laneLink from="1" to="-1" /> - </connection> - </junction> - <junction id="33554459" name=""> - <connection id="1" incomingRoad="33782103" connectingRoad="4939871" contactPoint="start"> - <laneLink from="-2" to="-1" /> - </connection> - <connection id="2" incomingRoad="33782103" connectingRoad="33782339" contactPoint="start"> - <laneLink from="-1" to="-1" /> - </connection> - </junction> - <junction id="33555309" name=""> - <connection id="1" incomingRoad="4939858" connectingRoad="33782346" contactPoint="start"> - <laneLink from="-1" to="-1" /> - <laneLink from="-2" to="-2" /> - <laneLink from="-3" to="-3" /> - </connection> - <connection id="2" incomingRoad="4939858" connectingRoad="4939864" contactPoint="start"> - <laneLink from="-4" to="-1" /> - <laneLink from="-5" to="-2" /> - </connection> - </junction> -</OpenDRIVE>