Index: applications/editors/josm/plugins/roadsigns/README
===================================================================
--- applications/editors/josm/plugins/roadsigns/README	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/README	(revision 21967)
@@ -0,0 +1,36 @@
+Road Signs Plugin
+_________________
+
+Shows a GUI dialog to tag objects by clicking on road sign symbols. 
+It tries to generate the corresponding tags for the object.
+As tagging schemes are under constant development, the definitions
+need to be updated when needed.
+ 
+Author: 
+    Sebastian Klein <bastikln@gmail.com>
+
+License:
+    GPL v2 or later.
+
+Attribution:
+    Inspired by the Verkehrszeichen Tool [1] by Sebastian Hohmann. 
+    Basically, this plugin is a port to Java and the JOSM (plugin) framework.
+    [1] http://osmtools.de/traffic_signs/
+
+    Pics have been derived from
+        http://de.wikipedia.org/wiki/Bildtafel_der_Verkehrszeichen_in_Deutschland (german street sign SVGs)
+    
+JavaCC usage:
+-------------
+
+There is a simple format to insert parameters into strings. E.g. keys,
+values and refs in the preset file can contain '$foo' or '${foo}' which
+will be replaced by the value of the parameter named foo.
+(Textual "$" or "\" is escaped as "\$" or "\\".)
+
+javacc is used for easier tokenization. All *.java files in the folder
+plugins/roadsigns/javacc are auto generated. To create them, execute
+
+    javacc ParamString.jj
+    
+(Provided javacc is installed. Not necessary if that file is not changed.)
Index: applications/editors/josm/plugins/roadsigns/build.xml
===================================================================
--- applications/editors/josm/plugins/roadsigns/build.xml	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/build.xml	(revision 21967)
@@ -0,0 +1,261 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+** This is a template build file for a JOSM  plugin.
+**
+** Maintaining versions
+** ====================
+** see README.template
+**
+** Usage
+** =====
+** To build it run
+**
+**    > ant  dist
+**
+** To install the generated plugin locally (in you default plugin directory) run
+**
+**    > ant  install
+**
+** The generated plugin jar is not automatically available in JOSMs plugin configuration
+** dialog. You have to check it in first.
+**
+** Use the ant target 'publish' to check in the plugin and make it available to other
+** JOSM users:
+**    set the properties commit.message and plugin.main.version
+** and run
+**    > ant  publish
+**
+**
+-->
+<project name="RoadSigns" default="dist" basedir=".">
+
+	<!-- enter the SVN commit message -->
+	<property name="commit.message" value="Commit message" />
+	<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
+	<property name="plugin.main.version" value="3338" />
+
+
+	<!--
+      ************************************************
+      ** should not be necessary to change the following properties
+     -->
+	<property name="josm"                   location="../../core/dist/josm-custom.jar"/>
+	<property name="plugin.build.dir"       value="build"/>
+	<property name="plugin.src.dir"         value="src"/>
+	<!-- this is the directory where the plugin jar is copied to -->
+	<property name="plugin.dist.dir"        value="../../dist"/>
+	<property name="ant.build.javac.target" value="1.5"/>
+	<property name="plugin.dist.dir"        value="../../dist"/>
+	<property name="plugin.jar"             value="${plugin.dist.dir}/${ant.project.name}.jar"/>
+
+	<!--
+    **********************************************************
+    ** init - initializes the build
+    **********************************************************
+    -->
+	<target name="init">
+		<mkdir dir="${plugin.build.dir}"/>
+	</target>
+
+	<!--
+    **********************************************************
+    ** compile - complies the source tree
+    **********************************************************
+    -->
+	<target name="compile" depends="init">
+		<echo message="compiling sources for  ${plugin.jar} ... "/>
+		<javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
+			<compilerarg value="-Xlint:deprecation"/>
+			<compilerarg value="-Xlint:unchecked"/>
+		</javac>
+	</target>
+
+	<!--
+    **********************************************************
+    ** dist - creates the plugin jar
+    **********************************************************
+    -->
+	<target name="dist" depends="compile,revision">
+		<echo message="creating ${ant.project.name}.jar ... "/>
+		<copy todir="${plugin.build.dir}/images">
+			<fileset dir="images"/>
+		</copy>
+		<copy todir="${plugin.build.dir}/data">
+			<fileset dir="data"/>
+		</copy>
+		<copy todir="${plugin.build.dir}">
+			<fileset dir=".">
+				<include name="README" />
+				<include name="LICENSE" />
+			</fileset>
+		</copy>
+		<jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
+			<!--
+        ************************************************
+        ** configure these properties. Most of them will be copied to the plugins
+        ** manifest file. Property values will also show up in the list available
+        ** plugins: http://josm.openstreetmap.de/wiki/Plugins.
+        **
+        ************************************************
+    -->
+			<manifest>
+				<attribute name="Author" value="Sebastian Klein"/>
+				<attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.roadsigns.RoadSignsPlugin"/>
+				<attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
+				<attribute name="Plugin-Description" 
+				    value="Selection of road signs from a list of presets. With simple clicks you can create combinations 
+				            of signs and generate tagging suggestions. The dialog can be opened by clicking a small icon 
+				            in the upper right corner of the properties window.
+				            Available country presets: Germany (hopefully more to come)."/>
+				<attribute name="Plugin-Icon" value="images/pref/roadsigns.png"/>
+				<attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/RoadSigns"/>
+				<attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
+				<attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
+			</manifest>
+		</jar>
+	</target>
+
+	<!--
+    **********************************************************
+    ** revision - extracts the current revision number for the
+    **    file build.number and stores it in the XML property
+    **    version.*
+    **********************************************************
+    -->
+	<target name="revision">
+
+		<exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
+			<env key="LANG" value="C"/>
+			<arg value="info"/>
+			<arg value="--xml"/>
+			<arg value="."/>
+		</exec>
+		<xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
+		<delete file="REVISION"/>
+	</target>
+
+	<!--
+    **********************************************************
+    ** clean - clean up the build environment
+    **********************************************************
+    -->
+	<target name="clean">
+		<delete dir="${plugin.build.dir}"/>
+		<delete file="${plugin.jar}"/>
+	</target>
+
+	<!--
+    **********************************************************
+    ** install - install the plugin in your local JOSM installation
+    **********************************************************
+    -->
+	<target name="install" depends="dist">
+		<property environment="env"/>
+		<condition property="josm.plugins.dir" value="${env.APPDATA}/JOSM/plugins" else="${user.home}/.josm/plugins">
+			<and>
+				<os family="windows"/>
+			</and>
+		</condition>
+		<copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
+	</target>
+
+
+	<!--
+	************************** Publishing the plugin *********************************** 
+	-->
+	<!--
+		** extracts the JOSM release for the JOSM version in ../core and saves it in the 
+		** property ${coreversion.info.entry.revision}
+		**
+		-->
+	<target name="core-info">
+		<exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
+			<env key="LANG" value="C"/>
+			<arg value="info"/>
+			<arg value="--xml"/>
+			<arg value="../../core"/>
+		</exec>
+		<xmlproperty file="core.info.xml" prefix="coreversion" keepRoot="true" collapseAttributes="true"/>
+		<echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
+		<echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
+		<delete file="core.info.xml" />
+	</target>
+
+	<!--
+		** commits the source tree for this plugin
+		-->
+	<target name="commit-current">
+		<echo>Commiting the plugin source with message '${commit.message}' ...</echo>
+		<exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+			<env key="LANG" value="C"/>
+			<arg value="commit"/>
+			<arg value="-m '${commit.message}'"/>
+			<arg value="."/>
+		</exec>
+	</target>
+
+	<!--
+		** updates (svn up) the source tree for this plugin
+		-->
+	<target name="update-current">
+		<echo>Updating plugin source ...</echo>
+		<exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+			<env key="LANG" value="C"/>
+			<arg value="up"/>
+			<arg value="."/>
+		</exec>
+		<echo>Updating ${plugin.jar} ...</echo>
+		<exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+			<env key="LANG" value="C"/>
+			<arg value="up"/>
+			<arg value="../dist/${plugin.jar}"/>
+		</exec>
+	</target>
+
+	<!--
+		** commits the plugin.jar 
+		-->
+	<target name="commit-dist">
+		<echo>
+	***** Properties of published ${plugin.jar} *****
+	Commit message    : '${commit.message}'					
+	Plugin-Mainversion: ${plugin.main.version}
+	JOSM build version: ${coreversion.info.entry.revision}
+	Plugin-Version    : ${version.entry.commit.revision}
+	***** / Properties of published ${plugin.jar} *****					
+						
+	Now commiting ${plugin.jar} ...
+	</echo>
+		<exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
+			<env key="LANG" value="C"/>
+			<arg value="-m '${commit.message}'"/>
+			<arg value="commit"/>
+			<arg value="${plugin.jar}"/>
+		</exec>
+	</target>
+
+	<!-- ** make sure svn is present as a command line tool ** -->
+	<target name="ensure-svn-present">
+		<exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code">
+			<env key="LANG" value="C" />
+			<arg value="--version" />
+		</exec>
+		<fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system.">
+			<!-- return code not set at all? Most likely svn isn't installed -->
+			<condition>
+				<not>
+					<isset property="svn.exit.code" />
+				</not>
+			</condition>
+		</fail>
+		<fail message="Fatal: command 'svn --version' failed. Please make sure a working copy of svn is installed on your system.">
+			<!-- error code from SVN? Most likely svn is not what we are looking on this system -->
+			<condition>
+				<isfailure code="${svn.exit.code}" />
+			</condition>
+		</fail>
+	</target>
+
+	<target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
+	</target>
+</project>
Index: applications/editors/josm/plugins/roadsigns/data/defaultroadsignpreset.xml
===================================================================
--- applications/editors/josm/plugins/roadsigns/data/defaultroadsignpreset.xml	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/data/defaultroadsignpreset.xml	(revision 21967)
@@ -0,0 +1,356 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Preset file for road signs plugin.
+
+Plugin is in early state of development (05-2010) and it is likely, the preset format will be changing.
+Some values can contain parameters like $foo, that will be replaced by the value of the parameter named foo.
+
+sign:
+    ref             Short official designation of the sign that can be used for the traffic_sign tag. (accepts parameters)
+    id              Unique identifier. (If missing, equals ref. Either id or ref must be present.)
+    icon            Icon path. (If missing, id or ref is used as icon path. In this case ':' and '.' characters are converted to underscore '_'.)
+    name            Name of the sign. (required)
+    long_name       Official name of the sign. (optional)
+    help            Some notes to guide the user.
+    wiki            Page in the osm wiki
+    deprecated      Set to "yes" if authorities have decided to no longer install signs of this kind. 
+                    (But old signs may still be there and need to be recorded.)
+    
+tag:
+    static tags:
+        key             The key text. (accepts parameters)
+        value           The value text. (accepts parameters)
+    
+    identified tags:
+        key             The key text.
+        value           The default value text. If the final evaluation of the value results in an empty string, the tag is dropped.
+        ident           Name a tag so it can later be changed by other tags.
+    
+    modifying tags:
+        tag_ref         Name of the tag to be changed.
+        append_value    Append a string to the value of the tag. The default value of the identified tag is dropped (unless there is no
+                        modifying tag appending a value).
+            
+parameter:
+    ident           identifier to get the value of this parameter (required)
+    input           input type (currently "textfield" and "combo" are possible values) (required)
+    prefix          text to put before the input area
+    suffix          text to put after the input area
+    field_width     for text fields: the width of the field (number of characters)
+    default         default value (required)
+    
+supplementary: (list of recommended additional signs)
+    id         the id of the supplementary sign
+
+-->
+<roadsignpreset country="DE">
+    <sign ref="DE:110" name="Incline" de.name="Steigung"
+            help="Applies for the road section with steep incline. (Split the way at the ends of the steep section.) \
+Positive values indicate movement upward in the direction of the (osm) way and negative values indicate movement downwards in the direction of the way."
+            de.help="&lt;p&gt;Gilt für das Streckenstück mit hoher Steigung. (Weg am Anfang und Ende des steilen Abschnittes auftrennen.) \
+Positive Werte stehen für einen Anstieg in Richtung des ways und negative Werte für einen Abfall in Richtung des ways.&lt;/p&gt;\" 
+            wiki="Key:incline" 
+            de.wiki="DE:Key:incline">
+        <tag key="incline" value="$val%"/>
+        <parameter input="textfield" name="max. incline" de.name="Maximale Steigung" type="int" ident="val" default="12" suffix="%" field_width="3"/>
+    </sign>
+    
+    <sign ref="DE:215" name="Roundabout" de.name="Kreisverkehr"
+        wiki="Tag:junction=roundabout"
+        de.wiki="DE:Tag:junction=roundabout"
+        help=""
+        de.help="">
+        <tag key="junction" value="roundabout"/>
+    </sign>
+    
+    <sign id="oneway" icon="DE_220;DE_267" name="One-way road" de.name="Einbahnstraße">  <!--ref="DE:220;DE:267"-->
+        <tag key="oneway" value="yes"/>
+<!--        <supplementary id="DE:1022-10;DE:1000-33"/>-->
+<!--        FIXME: lane->-->
+    </sign>
+    
+    <sign ref="DE:237" name="Bicycle path" de.name="Radweg">
+        <tag key="highway" value="path"/>
+        <tag key="bicycle" value="official"/>
+        <tag key="access" value="" ident="mode"/>
+        <supplementary id="DE:1020-13"/> <!-- Inlineskaten frei -->
+        <supplementary id="DE:1022-11"/> <!-- Mofas frei -->
+    </sign>
+
+    <sign ref="DE:238" name="Bridle path" de.name="Reitweg">
+        <tag key="highway" value="path"/>
+        <tag key="horse" value="official"/>
+        <tag key="access" value="" ident="mode"/>
+        <supplementary id="DE:1022-10"/> <!-- Radfahrer frei -->
+        <supplementary id="DE:1026-36"/> <!-- Landwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-37"/> <!-- Forstwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-38"/> <!-- Land- und forstwirtschaftlicher Verkehr frei -->
+    </sign>
+    
+    <sign ref="DE:239" name="Pedestrian path" de.name="Gehweg">
+        <tag key="highway" value="path"/>
+        <tag key="foot" value="official"/>
+        <tag key="access" value="" ident="mode"/>
+        <supplementary id="DE:1020-13"/> <!-- Inlineskaten frei -->
+        <supplementary id="DE:1022-10"/> <!-- Radfahrer frei -->
+        <supplementary id="DE:1022-11"/> <!-- Mofas frei -->
+    </sign>
+
+    <sign ref="DE:240" name="Pedestrian &amp; bicycle path" de.name="Gemeinsamer Geh- und Radweg">
+        <tag key="highway" value="path"/>
+        <tag key="foot" value="official"/>
+        <tag key="bicycle" value="official"/>
+        <tag key="access" value="" ident="mode"/>
+        <supplementary id="DE:1020-13"/> <!-- Inlineskaten frei -->
+        <supplementary id="DE:1022-11"/> <!-- Mofas frei -->
+    </sign>
+
+    <sign ref="DE:241" name="Split pedestrian &amp; bicycle path" de.name="Getrennter Rad- und Gehweg">
+        <tag key="highway" value="path"/>
+        <tag key="foot" value="official"/>
+        <tag key="bicycle" value="official"/>
+        <tag key="segregated" value="yes"/>
+        <tag key="access" value="" ident="mode"/>
+        <supplementary id="DE:1020-13"/> <!-- Inlineskaten frei -->
+        <supplementary id="DE:1022-11"/> <!-- Mofas frei -->
+    </sign>
+
+    <sign ref="DE:242" name="Pedestrian zone" de.name="Fußgängerbereich">
+        <tag key="highway" value="pedestrian"/>
+        <tag key="access" value="" ident="mode"/>
+        <supplementary id="DE:1020-13"/> <!-- Inlineskaten frei -->
+        <supplementary id="DE:1020-30"/> <!-- Anlieger frei -->
+        <supplementary id="DE:1022-10"/> <!-- Radfahrer frei -->
+        <supplementary id="DE:1022-11"/> <!-- Mofas frei -->
+        <supplementary id="DE:1026-32"/> <!-- Linienverkehr frei -->
+        <supplementary id="DE:1026-35"/> <!-- Lieferverkehr frei -->
+    </sign>
+
+    <sign ref="DE:244" name="Bicycle road" de.name="Fahrradstraße">
+        <!-- highway=* -->
+        <tag key="bicycle" value="official"/>
+        <tag key="foot" value="yes"/>
+        <tag key="maxspeed" value="30"/> <!-- FIXME: no override but min. value -->
+        <tag key="access" value="" ident="mode"/>
+        <supplementary id="DE:1020-13"/> <!-- Inlineskaten frei -->
+        <supplementary id="DE:1020-30"/> <!-- Anlieger frei -->
+        <supplementary id="DE:1026-32"/> <!-- Linienverkehr frei -->
+        <supplementary id="DE:1026-35"/> <!-- Lieferverkehr frei -->
+        <!-- Kraftfahrzeuge frei -->
+    </sign>
+    
+    <sign ref="DE:250" name="All vehicles prohibited" de.name="Verbot für Fahrzeuge aller Art">
+        <tag key="vehicle" value="no" ident="mode"/>
+        <supplementary id="DE:1020-12"/> <!-- Radfahrer und Anlieger frei -->
+        <supplementary id="DE:1020-30"/> <!-- Anlieger frei -->
+        <supplementary id="DE:1022-10"/> <!-- Radfahrer frei -->
+        <supplementary id="DE:1022-11"/> <!-- Mofas frei -->
+        <supplementary id="DE:1022-12"/> <!-- Krafträder frei -->
+        <supplementary id="DE:1026-30"/> <!-- Taxi frei -->
+        <supplementary id="DE:1026-32"/> <!-- Linienverkehr frei -->
+        <supplementary id="DE:1026-35"/> <!-- Lieferverkehr frei -->
+        <supplementary id="DE:1026-36"/> <!-- Landwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-37"/> <!-- Forstwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-38"/> <!-- Land- und forstwirtschaftlicher Verkehr frei -->
+    </sign>
+    
+    <sign ref="DE:251" name="Motorcars prohibited" de.name="Verbot für Kraftwagen"
+            long_name="Motorcars and other multi-track motorized vehicles prohibited" 
+            de.long_name="Verbot für Kraftwagen und sonstige mehrspurige Kraftfahrzeuge"
+            wiki="Key:motorcar"
+            de.wiki="DE:Key:access">
+        <tag key="motorcar" value="no" ident="mode"/>
+        <supplementary id="DE:1020-30"/> <!-- Anlieger frei -->
+        <supplementary id="DE:1026-30"/> <!-- Taxi frei -->
+        <supplementary id="DE:1026-32"/> <!-- Linienverkehr frei -->
+        <supplementary id="DE:1026-35"/> <!-- Lieferverkehr frei -->
+        <supplementary id="DE:1026-36"/> <!-- Landwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-37"/> <!-- Forstwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-38"/> <!-- Land- und forstwirtschaftlicher Verkehr frei -->
+    </sign>
+
+    <sign ref="DE:253" name="Heavy goods vehicles prohibited" de.name="Verbot für LKW"
+            long_name="Vehicles with a permitted gross weight over 3.5 t including their trailers prohibited, except passenger cars and busses prohibited"
+            de.long_name="Verbot für Kraftfahrzeuge mit einem zulässigen Gesamtgewicht über 3,5 t, einschließlich ihrer Anhänger und Zugmaschinen, ausgenommen Personenkraftwagen und Kraftomnibusse"
+            wiki="Key:hgv"
+            de.wiki="DE:Key:access">
+        <tag key="motorcar" value="no" ident="mode"/>
+        <supplementary id="DE:1020-30"/> <!-- Anlieger frei -->
+        <supplementary id="DE:1026-30"/> <!-- Taxi frei -->
+        <supplementary id="DE:1026-32"/> <!-- Linienverkehr frei -->
+        <supplementary id="DE:1026-35"/> <!-- Lieferverkehr frei -->
+        <supplementary id="DE:1026-36"/> <!-- Landwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-37"/> <!-- Forstwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-38"/> <!-- Land- und forstwirtschaftlicher Verkehr frei -->
+    </sign>
+
+    <sign ref="DE:254" name="Bicycles prohibited" de.name="Verbot für Fahrräder"
+            wiki="Key:bicycle"
+            de.wiki="DE:Key:access">
+        <tag key="bicycle" value="no" ident="mode"/>
+    </sign>
+
+    <sign ref="DE:255" name="Motorcycles prohibited" de.name="Verbot für Krafträder">
+        <tag key="motorcycle" value="no" ident="mode"/>
+        <supplementary id="DE:1022-11"/> <!-- Mofas frei -->
+        <supplementary id="DE:1026-35"/> <!-- Lieferverkehr frei -->
+    </sign>
+    
+    <sign ref="DE:256" deprecated="yes" name="Mopeds prohibited" de.name="Verbot für Mofas">
+        <tag key="mofa" value="no" ident="mode"/>
+        <supplementary id="DE:1020-30"/> <!-- Anlieger frei -->
+        <supplementary id="DE:1026-35"/> <!-- Lieferverkehr frei -->
+    </sign>
+
+    <sign ref="DE:258" deprecated="yes" name="Horses prohibited" de.name="Verbot für Reiter">
+        <tag key="horse" value="no" ident="mode"/>
+    </sign>
+    
+    <sign ref="DE:259" name="Pedestrians prohibited" de.name="Verbot für Fußgänger">
+        <tag key="foot" value="no" ident="mode"/>
+        <supplementary id="DE:1020-30"/> <!-- Anlieger frei -->
+    </sign>
+    
+    <sign ref="DE:260" name="Motor vehicles prohibited" de.name="Verbot für Kraftfahrzeuge"
+        long_name="Motorcycles, also with sidecar, mopeds, mofas as well as motorcars and other multi-track motorized vehicles prohibited"
+        de.long_name="Verbot für Krafträder, auch mit Beiwagen, Kleinkrafträder und Mofas sowie für Kraftwagen und sonstige mehrspurige Kraftfahrzeuge">
+        <tag key="motor_vehicle" value="no" ident="mode"/>
+        <supplementary id="DE:1020-30"/> <!-- Anlieger frei -->
+        <supplementary id="DE:1022-11"/> <!-- Mofas frei -->
+        <supplementary id="DE:1026-30"/> <!-- Taxi frei -->
+        <supplementary id="DE:1026-32"/> <!-- Linienverkehr frei -->
+        <supplementary id="DE:1026-35"/> <!-- Lieferverkehr frei -->
+        <supplementary id="DE:1026-36"/> <!-- Landwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-37"/> <!-- Forstwirtschaftlicher Verkehr frei -->
+        <supplementary id="DE:1026-38"/> <!-- Land- und forstwirtschaftlicher Verkehr frei -->
+    </sign>
+
+    <sign ref="DE:261" name="Hazardous cargo prohibited" de.name="Verbot für kennzeichnungspflichtige Kraftfahrzeuge mit gefährlichen Gütern" wiki="Key:hazmat" de.wiki="DE:Key:hazmat">
+        <tag key="hazmat" value="no" ident="mode"/>        
+    </sign>
+    
+    <sign ref="DE:262[$val]" icon="DE_262" name="Weight limit" de.name="Tatsächliches Gewicht" wiki="Key:maxweight">
+        <tag key="maxweight" value="$val"/>
+        <parameter ident="val" input="textfield" default="5.5" suffix="t" field_width="3"/>
+    </sign>
+    
+    <sign ref="DE:263[$val]" icon="DE_263" name="Axle weight limit" de.name="Tatsächliche Achslast" wiki="Key:maxaxleload">
+        <tag key="maxaxleload" value="$val"/>
+        <parameter ident="val" input="textfield" default="8" suffix="t" field_width="3"/>
+    </sign>
+    
+    <sign ref="DE:264[$val]" icon="DE_264" name="Width limit" de.name="Tatsächliche Breite">
+        <tag key="maxwidth" value="$val"/>
+        <parameter ident="val" input="textfield" default="2" suffix="m" field_width="3"/>
+    </sign>
+    
+    <sign ref="DE:265[$val]" icon="DE_265" name="Height limit" de.name="Tatsächliche Höhe">
+        <tag key="maxheight" value="$val"/>
+        <parameter ident="val" input="textfield" default="3.8" suffix="m" field_width="3"/>
+    </sign>
+
+    <sign ref="DE:266[$val]" icon="DE_266" name="Length limit" de.name="Tatsächliche Länge" 
+            wiki="Key:maxlength">
+        <tag key="maxlength" value="$val"/>
+        <parameter ident="val" input="textfield" default="10" suffix="m" field_width="3"/>
+    </sign>
+    
+    <sign ref="DE:269" name="Water polluting cargo prohibited" de.name="Verbot für Fahrzeuge mit wassergefährdender Ladung" 
+            wiki="Key:hazmat" 
+            de.wiki="DE:Key:hazmat">
+        <tag key="hazmat:water" value="no" ident="mode"/>
+    </sign>
+
+    <sign ref="DE:274[$val]" icon="DE_274" name="Speed limit" de.name="Zulässige Höchstgeschwindigkeit">
+        <tag key="maxspeed" value="$val" ident="restriction"/>
+        <parameter ident="val" type="int" input="combo" editable="yes" text="speed-limit" de.text="Höchstgeschwindigkeit" suffix="km/h" values="5,10,20,30,40,50,60,70,80,90,100,110,120,130" default="60" field_width="3"/>
+        <supplementary id="DE:1052-36"/> <!-- Bei nasser Fahrbahn -->
+        <supplementary id="DE:1048-12"/> <!-- nur LKW -->
+    </sign>
+    
+    <sign ref="DE:274.1[$val]" icon="DE_274_1" name="Speed limit zone" de.name="Zone mit zulässiger Höchstgeschwindigkeit">
+        <tag key="maxspeed" value="$val"/>
+        <tag key="zone:maxspeed" value="DE:$val"/>
+        <parameter ident="val" type="int" input="combo" editable="yes" text="speed-limit" de.text="Höchstgeschwindigkeit" suffix="km/h" values="20,30" default="30" field_width="2"/>
+    </sign>
+    
+    <sign ref="DE:275[$val]" icon="DE_275" name="Minimum speed limit" de.name="Vorgeschriebene Mindestgeschwindigkeit" wiki="Key:minspeed">
+        <tag key="minspeed" value="$val"/>
+        <parameter ident="val" input="textfield" suffix="km/h" default="30" field_width="2"/>
+    </sign>
+
+    <sign ref="DE:325" name="Traffic calming zone" de.name="Verkehrsberuhigter Bereich">
+        <tag key="highway" value="living_street"/>
+    </sign>
+    
+    <sign ref="DE:327" name="Tunnel" de.name="Tunnel">
+        <tag key="tunnel" value="yes"/>
+    </sign>
+    
+    <sign ref="DE:1020-12" supplementary="yes" name="Bicyle and residents allowed" de.name="Radfahrer und Anlieger frei"> <!-- FIXME: bad translation into English -->
+        <tag key="bicycle" value="yes"/>
+        <tag tag_ref="mode" append_value="destination"/>
+    </sign>
+
+    <sign ref="DE:1020-13" supplementary="yes" name="Inline skating allowed" de.name="Inlineskaten frei">
+        <tag key="inline_skates" value="yes"/>
+    </sign>
+
+    <sign ref="DE:1020-30" supplementary="yes" name="Residents allowed" de.name="Anlieger frei"> <!-- FIXME: bad translation into English -->
+        <tag tag_ref="mode" append_value="destination"/>
+    </sign>
+
+    <sign ref="DE:1022-10" supplementary="yes" name="Bicycles allowed" de.name="Radfahrer frei">
+        <tag key="bicycle" value="yes"/>
+    </sign>
+
+    <sign ref="DE:1022-11" supplementary="yes" name="Mofas allowed" de.name="Mofas frei">
+        <tag key="mofa" value="yes"/>
+    </sign>
+
+    <sign ref="DE:1022-12" supplementary="yes" name="Motorcycles allowed" de.name="Krafträder frei"
+        long_name="Motorcycles, also with sidecar, mopeds and mofas allowed"
+        de.long_name="Krafträder auch mit Beiwagen, Kleinkrafträder und Mofas frei">
+        <tag key="motorcycle" value="yes"/>
+    </sign>
+
+<!--FIXME: motorcar does not fit, since 1024-10 refers to passenger vehicles -->
+<!--    <sign ref="DE:1024-10" supplementary="yes" name="passenger car allowed" de.name="Personenkraftwagen frei"> -->
+<!--        <tag key="motorcar" value="yes"/>-->
+<!--    </sign>-->
+
+    <sign ref="DE:1026-30" supplementary="yes" name="Taxi allowed" de.name="Taxi frei">
+        <tag key="taxi" value="yes"/>
+    </sign>
+
+    <sign ref="DE:1026-32" supplementary="yes" name="Public service vehicles allowed" de.name="Linienverkehr frei">
+        <tag key="psv" value="yes"/>
+    </sign>
+
+    <sign ref="DE:1026-35" supplementary="yes" name="Delivery vehicles allowed" de.name="Lieferverkehr frei">
+        <tag tag_ref="mode" append_value="delivery"/>
+    </sign>
+    
+    <sign ref="DE:1026-36" supplementary="yes" name="Agricultural vehicles allowed" de.name="Landwirtschaftlicher Verkehr frei">
+        <tag tag_ref="mode" append_value="agricultural"/>
+    </sign>
+    
+    <sign ref="DE:1026-37" supplementary="yes" name="Forestry vehicles allowed" de.name="Forstwirtschaftlicher Verkehr frei">
+        <tag tag_ref="mode" append_value="forestry"/>
+    </sign>
+
+    <sign ref="DE:1026-38" supplementary="yes" name="Agricultural and forestry vehicles allowed" de.name="Land- und forstwirtschaftlicher Verkehr frei">
+        <tag tag_ref="mode" append_value="agricultural"/>
+        <tag tag_ref="mode" append_value="forestry"/>
+    </sign>
+    
+    <sign ref="DE:1048-12" supplementary="yes" name="Heavy goods vehicles only" de.name="nur LKW"
+            long_name="Vehicles with a permitted gross weight over 3.5 t including their trailers prohibited, except passenger cars and busses, only"
+            de.long_name="nur Kraftfahrzeuge mit einem zulässigen Gesamtgewicht über 3,5 t, einschl. ihrer Anhänger, und Zugmaschinen, ausgenommen Personenkraftwagen und Kraftomnibusse">
+        <tag tag_ref="restriction" condition="hgv"/>
+    </sign>
+
+    <sign ref="DE:1052-36" supplementary="yes" name="When the road is wet" de.name="Bei nasser Fahrbahn">
+        <tag tag_ref="restriction" condition="wet"/>
+    </sign>
+</roadsignpreset>
Index: applications/editors/josm/plugins/roadsigns/gpl-2.0.txt
===================================================================
--- applications/editors/josm/plugins/roadsigns/gpl-2.0.txt	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/gpl-2.0.txt	(revision 21967)
@@ -0,0 +1,339 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+                            NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "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, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, 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 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.
Index: applications/editors/josm/plugins/roadsigns/gpl-3.0.txt
===================================================================
--- applications/editors/josm/plugins/roadsigns/gpl-3.0.txt	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/gpl-3.0.txt	(revision 21967)
@@ -0,0 +1,674 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, 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 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+  If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+    <program>  Copyright (C) <year>  <name of author>
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+  You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<http://www.gnu.org/licenses/>.
+
+  The GNU General Public License does not permit incorporating your program
+into proprietary programs.  If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.  But first, please read
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
Index: applications/editors/josm/plugins/roadsigns/images_nodist/roadsigns.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_nodist/roadsigns.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_nodist/roadsigns.svg	(revision 21967)
@@ -0,0 +1,222 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="Nederlands_verkeersbord_D4"
+   width="1205.02"
+   height="1205.02"
+   viewBox="0 0 1205.02 1205.02"
+   version="1.1"
+   inkscape:version="0.47pre4 r22446"
+   inkscape:export-xdpi="1.1950009"
+   inkscape:export-ydpi="1.1950009">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs8">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 150 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="300 : 150 : 1"
+       inkscape:persp3d-origin="150 : 100 : 1"
+       id="perspective12" />
+    <inkscape:perspective
+       id="perspective2828"
+       inkscape:persp3d-origin="367.5 : 245 : 1"
+       inkscape:vp_z="735 : 367.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 367.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective2844"
+       inkscape:persp3d-origin="362.5 : 241.66667 : 1"
+       inkscape:vp_z="725 : 362.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 362.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective2870"
+       inkscape:persp3d-origin="376.56 : 223.84001 : 1"
+       inkscape:vp_z="753.12 : 335.76001 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 335.76001 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective2899"
+       inkscape:persp3d-origin="362.5 : 241.66667 : 1"
+       inkscape:vp_z="725 : 362.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 362.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective2914"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective2937"
+       inkscape:persp3d-origin="300 : 200 : 1"
+       inkscape:vp_z="600 : 300 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 300 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective2975"
+       inkscape:persp3d-origin="362.5 : 241.66667 : 1"
+       inkscape:vp_z="725 : 362.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 362.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+  </defs>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="865"
+     inkscape:window-height="816"
+     id="namedview6"
+     showgrid="false"
+     inkscape:zoom="0.2"
+     inkscape:cx="-563.87942"
+     inkscape:cy="1091.2698"
+     inkscape:window-x="106"
+     inkscape:window-y="46"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="Nederlands_verkeersbord_D4" />
+  <g
+     id="g2902"
+     transform="matrix(0.88927866,0,0,0.88927866,554.95142,552.96099)">
+    <circle
+       id="circle2889"
+       cy="362.5"
+       cx="362.5"
+       r="350"
+       style="fill:#ffffff;stroke:#000000;stroke-width:2.5px"
+       sodipodi:cx="362.5"
+       sodipodi:cy="362.5"
+       sodipodi:rx="350"
+       sodipodi:ry="350"
+       d="m 712.5,362.5 c 0,193.29966 -156.70034,350 -350,350 -193.29966,0 -350,-156.70034 -350,-350 0,-193.29966 156.70034,-350 350,-350 193.29966,0 350,156.70034 350,350 z" />
+    <circle
+       id="circle2891"
+       style="fill:none;stroke:#cc0000;stroke-width:83.75"
+       r="295"
+       cy="362.5"
+       cx="362.5"
+       sodipodi:cx="362.5"
+       sodipodi:cy="362.5"
+       sodipodi:rx="295"
+       sodipodi:ry="295"
+       d="m 657.5,362.5 c 0,162.924 -132.076,295 -295,295 -162.924,0 -295,-132.076 -295,-295 0,-162.924 132.076,-295 295,-295 162.924,0 295,132.076 295,295 z" />
+  </g>
+  <g
+     id="g2847"
+     transform="matrix(0.83391798,0,0,0.83391798,588.32749,43.783839)">
+    <circle
+       id="circle4"
+       style="fill:#ffffff;stroke:#000000;stroke-width:2.5px"
+       r="350"
+       cy="362.5"
+       cx="362.5"
+       sodipodi:cx="362.5"
+       sodipodi:cy="362.5"
+       sodipodi:rx="350"
+       sodipodi:ry="350"
+       d="m 712.5,362.5 c 0,193.29966 -156.70034,350 -350,350 -193.29966,0 -350,-156.70034 -350,-350 0,-193.29966 156.70034,-350 350,-350 193.29966,0 350,156.70034 350,350 z" />
+    <path
+       id="path1883"
+       style="fill:#003399;fill-opacity:1;fill-rule:nonzero;stroke:none"
+       transform="matrix(1.061206,0,0,1.061206,877.7452,-29.79549)"
+       d="m -176.30905,369.66949 a 309.2189,309.2189 0 1 1 -618.43781,0 309.2189,309.2189 0 1 1 618.43781,0 z" />
+    <path
+       id="path1885"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="M 383.65625,138.34375 473.3125,228 380.46875,228.46875 C 265.85778,233.37859 237.41403,333.38056 233.03125,362.5 l 0,232.78125 63.3125,0 0,-223.1875 c -10e-6,-10.79629 9.57271,-69.73935 80.78125,-82 l 97.8125,0.25 -91.34375,91.34375 78.65625,0 121.53125,-121.5625 0.3125,0 -0.15625,-0.15625 0.0937,-0.0937 -0.1875,0 -121.5625,-121.53125 -78.625,0 z" />
+  </g>
+  <g
+     id="layer1-4"
+     transform="matrix(1.0180822,0,0,1.0180822,83.599792,591.13918)">
+    <g
+       id="g3810"
+       transform="translate(-137.5187,76.8608)">
+      <path
+         id="path84"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-opacity:1"
+         d="M 729.60917,223.33738 C 730.75125,76.700028 619.28349,-48.694492 474.05023,-66.484189 306.65375,-87.444858 157.2418,37.136763 145.93513,205.19834 136.05271,372.84339 269.48216,515.94027 437.77215,515.1744 598.22876,516.26946 730.63705,383.6865 729.60917,223.33738" />
+      <path
+         id="path86"
+         d="m 729.60917,223.33738 -0.40309,-18.13904 m 0,0 -4.43399,-36.68117 m 0,0 -9.27107,-35.47191 m 0,0 -13.30196,-34.262629 m 0,0 -17.73595,-31.844095 m 0,0 -21.76685,-29.828645 m 0,0 -24.99157,-26.603927 m 0,0 -28.21628,-23.379209 m 0,0 -31.03792,-19.7514 m 0,0 -33.05336,-15.720502 m 0,0 -35.06882,-11.286515 m 0,0 -36.27808,-6.852527 m 0,0 -36.27808,-2.418538 m 0,0 -36.68117,2.418538 m 0,0 -35.875,6.852527 m 0,0 -35.06881,11.286515 m 0,0 -33.05336,15.720502 m 0,0 -31.03792,19.7514 m 0,0 -28.21628,23.379209 m 0,0 -24.99157,26.603927 m 0,0 -21.76685,29.828645 m 0,0 -17.73595,31.844095 m 0,0 -13.30196,34.262629 m 0,0 -9.27107,35.47191 m 0,0 -4.83708,36.68117 m 0,0 0,36.27808 m 0,0 4.83708,36.68117 m 0,0 9.27107,35.47191 m 0,0 13.30196,33.85954 m 0,0 17.73595,32.24718 m 0,0 21.76685,29.82865 m 0,0 24.99157,26.60393 m 0,0 28.21628,23.3792 m 0,0 31.03792,19.7514 m 0,0 33.05336,15.72051 m 0,0 35.06881,11.28651 m 0,0 35.875,6.85253 m 0,0 36.68117,2.01545 m 0,0 36.27808,-2.01545 m 0,0 36.27808,-6.85253 m 0,0 35.06882,-11.28651 m 0,0 33.05336,-15.72051 m 0,0 31.03792,-19.7514 m 0,0 28.21628,-23.3792 m 0,0 24.99157,-26.60393 m 0,0 21.76685,-29.82865 m 0,0 17.73595,-32.24718 m 0,0 13.30196,-33.85954 m 0,0 9.27107,-35.47191 m 0,0 4.43399,-36.68117 m 0,0 0.40309,-18.13904" />
+      <path
+         id="path88"
+         style="fill:#000000;fill-rule:evenodd;stroke:none"
+         d="M 719.93501,223.33738 C 720.4859,81.436333 613.98958,-39.443581 473.24405,-56.810033 311.79315,-77.542286 165.90823,42.974847 156.01238,205.60143 c -9.95632,162.80125 118.56886,299.91225 281.75977,299.89881 155.80764,0.2956 282.41143,-126.61051 282.16286,-282.16286" />
+      <path
+         id="path90"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="M 584.49684,-0.78055067 C 336.07259,-153.518 60.916774,121.63782 213.65422,370.06207 L 584.49684,-0.78055067" />
+      <path
+         id="path92"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         d="m 595.78335,7.2812454 4.43399,3.2247186 4.0309,2.821628 -376.48588,376.485878 -2.82163,-4.0309 -3.22472,-4.43399 L 595.78335,7.2812454" />
+      <path
+         id="path94"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         d="m 614.72857,22.195568 3.62781,3.627808 3.62781,3.224719 -378.50133,378.501325 -3.22471,-3.62781 -3.62781,-3.62781 378.09823,-378.098232" />
+      <path
+         id="path96"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         d="m 638.91396,46.380956 -3.62781,-3.627808 -3.62781,-4.030898 -378.50132,378.50133 4.0309,3.6278 3.62781,3.62781 378.09823,-378.098234" />
+      <path
+         id="path98"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         d="m 653.82828,65.326177 -3.22471,-4.433988 -3.22472,-4.030898 -376.08279,376.082789 4.0309,3.22472 4.43399,3.22471 374.06733,-374.067333" />
+      <path
+         id="path100"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         d="M 661.48699,76.612692 C 815.29934,323.98219 538.42367,600.86457 291.04746,447.05222 L 661.48699,76.612692" />
+    </g>
+  </g>
+  <g
+     id="layer1"
+     transform="translate(17.568028,2.2593869)">
+    <path
+       id="rect1924"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2.03192091;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
+       d="M 391.91972,14.243162 722.65773,345.2093 c 15.15005,15.15006 9.69741,34.88788 -0.78328,45.95642 l -328.7798,329.79122 c -16.84198,16.84197 -40.52027,10.3968 -51.30871,-0.39164 L 14.964338,394.29884 C -0.7041983,378.6303 -1.0447956,357.69367 14.18105,342.46782 c 0,0 327.21325,-327.833017 327.21325,-327.833017 17.30914,-15.52546173 37.29919,-13.4160973 50.52542,-0.391641 z" />
+    <path
+       id="path2814"
+       style="fill:none;stroke:#000000;stroke-width:12.17423248;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       d="M 387.72893,30.498744 705.6622,348.22179 c 14.25215,14.25215 11.45922,25.81051 1.59969,36.22306 L 386.28527,705.52327 c -15.8438,15.84379 -26.6484,10.84268 -36.79744,0.69364 L 31.203018,388.24192 c -14.739903,-14.73991 -16.122382,-26.15155 -1.798932,-40.475 0,0 320.989804,-320.510776 320.989804,-320.510776 16.28327,-14.605304 24.8927,-9.009932 37.33504,3.2426 z" />
+    <rect
+       id="rect4591"
+       style="fill:#ffcc33;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:5.34560061;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
+       transform="matrix(0.707107,-0.707107,0.707107,0.707107,0,0)"
+       y="373.03519"
+       x="-146.68831"
+       height="293.37677"
+       width="293.37677" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1000-33.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1000-33.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1000-33.svg	(revision 21967)
@@ -0,0 +1,100 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1000-33.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata11">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="1.05"
+     inkscape:cx="245"
+     inkscape:cy="79.901905"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2" />
+  <defs
+     id="defs4" />
+  <path
+     sodipodi:nodetypes="ccccccccc"
+     d="M 38.774314,2.2764824 C 20.349334,2.2764725 9.9608448,11.800443 9.9608448,39.939406 L 9.6483342,320.06059 C 9.6483342,348.19954 20.036823,357.72352 38.461803,357.72352 L 451.22569,357.6818 C 469.65066,357.6818 480.03915,348.15783 480.03916,320.01889 L 480.35167,39.981111 C 480.35167,11.842158 469.96317,2.3181773 451.5382,2.3181971 L 38.774314,2.2764824 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.98416758;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     sodipodi:nodetypes="ccccccccc"
+     d="M 453.23342,15.483526 L 36.797822,15.526436 C 28.375507,15.526436 23.425893,23.764976 23.425893,35.947756 L 23.425893,324.09514 C 23.425893,336.27788 28.375517,344.51647 36.797822,344.51647 L 453.20218,344.47356 C 461.62449,344.47355 466.57411,336.235 466.57411,324.05224 L 466.57411,35.904856 C 466.57411,23.722076 461.65573,15.483526 453.23342,15.483526 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g1974"
+     transform="translate(-10.33192,-365.1959)">
+    <g
+       id="g1901"
+       transform="matrix(0.281329,0,0,0.281329,113.9641,397.2582)">
+      <circle
+         id="circle1890"
+         style="fill:none;stroke:black;stroke-width:40px"
+         r="161"
+         cy="409"
+         cx="215"
+         sodipodi:cx="215"
+         sodipodi:cy="409"
+         sodipodi:rx="161"
+         sodipodi:ry="161" />
+      <circle
+         id="circle1892"
+         style="fill:none;stroke:black;stroke-width:40px"
+         r="161"
+         cy="406"
+         cx="790"
+         sodipodi:cx="790"
+         sodipodi:cy="406"
+         sodipodi:rx="161"
+         sodipodi:ry="161" />
+      <path
+         id="path1894"
+         style="fill:black;fill-rule:evenodd;stroke:none"
+         d="M 429.48437,15.467118 C 296.9179,16.75919 319.39993,1.7711686 248.07762,230.98455 C 189.97511,414.12586 196.30387,394.15363 196,407 C 195.78704,416.98022 203.84333,424.89312 213.96694,425.57043 C 235.02054,423.44166 226.16492,427.84741 299.15748,201.18078 C 565.86963,482.5364 465.80592,436.91194 609.34064,442.62576 C 797.98299,440.81686 813.31557,452.4455 815.55516,424.79518 C 815.29674,415.40613 810.90371,409.80716 681.4382,121.67535 L 693.84208,87.564675 L 736.48042,86.789433 L 734.92994,51.128275 L 576.00521,51.128275 C 561.96471,70.337063 581.69033,70.250925 652.75423,86.01419 L 640.35035,120.9001 L 323.27614,121.67535 C 344.63838,47.079788 332.57905,51.731243 428.70913,51.903518 L 429.48437,15.467118 z M 314.11415,159.91012 L 624.37752,159.36001 L 534.70921,400.30922 L 314.11415,159.91012 z M 661.78516,174.21304 L 573.76718,405.26023 L 766.3065,405.81034 L 661.78516,174.21304 z " />
+    </g>
+    <path
+       id="path1906"
+       style="color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       d="M 203.15481,583.17833 L 202.8008,663.71655 L 227.82522,636.88253 L 227.82522,655.6129 L 195.36382,688.78231 L 162.15487,656.83217 L 162.15487,638.73167 L 188.47764,663.75608 L 187.4156,583.49282 L 203.15481,583.17833 z " />
+    <path
+       id="path1954"
+       style="color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       d="M 326.99211,683.43737 L 326.6381,602.89915 L 351.66252,629.73317 L 351.66252,611.0028 L 319.20112,577.83339 L 285.99217,609.78353 L 285.99217,627.88403 L 312.31494,602.85962 L 311.2529,683.12288 L 326.99211,683.43737 z " />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1020-12.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1020-12.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1020-12.svg	(revision 21967)
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1020-12.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="1.05"
+     inkscape:cx="416.64094"
+     inkscape:cy="108.23622"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5738"
+     transform="translate(-340.163,-124.3555)">
+    <g
+       id="g1918"
+       transform="matrix(0.200056,0,0,0.200056,409.2681,162.2679)">
+      <circle
+         id="circle1907"
+         style="fill:none;stroke:black;stroke-width:40px"
+         r="161"
+         cy="409"
+         cx="215"
+         sodipodi:cx="215"
+         sodipodi:cy="409"
+         sodipodi:rx="161"
+         sodipodi:ry="161" />
+      <circle
+         id="circle1909"
+         style="fill:none;stroke:black;stroke-width:40px"
+         r="161"
+         cy="406"
+         cx="790"
+         sodipodi:cx="790"
+         sodipodi:cy="406"
+         sodipodi:rx="161"
+         sodipodi:ry="161" />
+      <path
+         id="path1911"
+         style="fill:black;fill-rule:evenodd;stroke:none"
+         d="M 429.48437,15.467118 C 296.9179,16.75919 319.39993,1.7711686 248.07762,230.98455 C 189.97511,414.12586 196.30387,394.15363 196,407 C 195.78704,416.98022 203.84333,424.89312 213.96694,425.57043 C 235.02054,423.44166 226.16492,427.84741 299.15748,201.18078 C 565.86963,482.5364 465.80592,436.91194 609.34064,442.62576 C 797.98299,440.81686 813.31557,452.4455 815.55516,424.79518 C 815.29674,415.40613 810.90371,409.80716 681.4382,121.67535 L 693.84208,87.564675 L 736.48042,86.789433 L 734.92994,51.128275 L 576.00521,51.128275 C 561.96471,70.337063 581.69033,70.250925 652.75423,86.01419 L 640.35035,120.9001 L 323.27614,121.67535 C 344.63838,47.079788 332.57905,51.731243 428.70913,51.903518 L 429.48437,15.467118 z M 314.11415,159.91012 L 624.37752,159.36001 L 534.70921,400.30922 L 314.11415,159.91012 z M 661.78516,174.21304 L 573.76718,405.26023 L 766.3065,405.81034 L 661.78516,174.21304 z " />
+    </g>
+    <path
+       id="text1923"
+       d="M 635.9187,266.6518 L 635.9187,239.69482 L 644.08393,239.69482 L 644.08393,263.87797 C 644.08392,266.6388 644.84575,268.78103 646.36942,270.30467 C 647.89306,271.82834 649.82693,272.59016 652.17103,272.59016 C 654.43696,272.59016 656.33176,271.82834 657.85544,270.30467 C 659.37907,268.78103 660.14089,266.6388 660.14092,263.87797 L 660.14092,239.69482 L 668.30616,239.69482 L 668.30616,280.2475 L 660.14092,280.2475 L 660.14092,275.95001 L 659.98465,275.95001 C 657.45822,279.12755 653.96814,280.71632 649.5144,280.71632 C 646.3108,280.71632 643.24396,279.52474 640.31386,277.14159 C 637.38375,274.75844 635.9187,271.26185 635.9187,266.6518 L 635.9187,266.6518 z M 678.89361,280.2475 L 678.89361,239.69482 L 687.05885,239.69482 L 687.05885,244.03138 L 687.21512,244.03138 C 689.74151,240.82783 693.25763,239.22604 697.7635,239.226 C 700.91497,239.22604 703.95577,240.42413 706.88591,242.82026 C 709.81598,245.21648 711.28103,248.70656 711.28107,253.29051 L 711.28107,280.2475 L 703.11583,280.2475 L 703.11583,256.10342 C 703.1158,253.36868 702.35398,251.23296 700.83035,249.69625 C 699.30667,248.1596 697.41187,247.39126 695.14594,247.39123 C 692.80184,247.39126 690.86797,248.1596 689.34433,249.69625 C 687.82066,251.23296 687.05883,253.36868 687.05885,256.10342 L 687.05885,280.2475 L 678.89361,280.2475 z M 746.09074,280.2475 L 746.09074,276.02815 C 743.25177,279.1536 739.76169,280.71632 735.62049,280.71632 C 733.12012,280.71632 730.97138,280.22797 729.17426,279.25127 C 727.37711,278.27457 725.90555,277.01788 724.75956,275.48119 C 723.61356,274.0487 722.84522,272.34924 722.45454,270.38281 C 722.06386,268.41639 721.86852,264.93282 721.86852,259.93209 C 721.86852,254.98349 722.06386,251.53899 722.45454,249.59858 C 722.84522,247.65823 723.61356,245.95877 724.75956,244.50019 C 725.90555,242.9896 727.37711,241.73291 729.17426,240.73012 C 730.97138,239.72741 733.12012,239.22604 735.62049,239.226 C 737.7041,239.22604 739.59239,239.66881 741.28537,240.55431 C 742.97829,241.4399 744.58008,242.59892 746.09074,244.03138 L 746.09074,223.32528 L 754.25598,223.32528 L 754.25598,280.2475 L 746.09074,280.2475 z M 738.12085,247.39123 C 734.26612,247.39126 731.95459,248.70656 731.18626,251.33711 C 730.41791,253.96772 730.03374,256.83271 730.03376,259.93209 C 730.03374,263.10965 730.41791,266.01371 731.18626,268.64428 C 731.95459,271.27487 734.26612,272.59016 738.12085,272.59016 C 741.89741,272.59016 744.16987,271.22278 744.93824,268.48801 C 745.70655,265.75325 746.09072,262.90128 746.09074,259.93209 C 746.09072,257.04108 745.70655,254.22818 744.93824,251.49338 C 744.16987,248.75865 741.89741,247.39126 738.12085,247.39123 L 738.12085,247.39123 z "
+       style="font-size:80.01146698px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1927"
+       d="M 437.17487,361.01831 L 458.84291,301.63482 L 466.25567,301.63482 L 487.92372,361.01831 L 478.47449,361.01831 L 473.9128,347.61833 L 451.38943,347.61833 L 446.66482,361.01831 L 437.17487,361.01831 z M 454.03684,339.6761 L 471.22466,339.6761 C 469.97559,336.01047 468.99129,333.13905 468.27177,331.06183 C 467.55219,328.98466 466.92767,327.14505 466.39822,325.54299 C 465.86871,323.941 465.33244,322.31183 464.78941,320.65546 C 464.24632,318.99917 463.52677,316.75906 462.63075,313.93511 C 461.68037,316.86767 460.92009,319.20961 460.3499,320.96093 C 459.77967,322.71233 459.22982,324.4026 458.70036,326.03174 C 458.17086,327.66095 457.55992,329.4802 456.86754,331.48948 C 456.17512,333.49883 455.23155,336.2277 454.03684,339.6761 L 454.03684,339.6761 z M 494.64407,361.05904 L 494.64407,318.78191 L 503.15652,318.78191 L 503.15652,323.30287 L 503.31944,323.30287 C 505.95325,319.9631 509.6189,318.2932 514.31638,318.29315 C 517.60185,318.2932 520.77196,319.54223 523.8267,322.04026 C 526.88136,324.53837 528.40872,328.17686 528.40875,332.95574 L 528.40875,361.05904 L 519.89631,361.05904 L 519.89631,335.88826 C 519.89628,333.03723 519.10205,330.81069 517.51364,329.20864 C 515.92516,327.60665 513.94979,326.80564 511.58751,326.8056 C 509.14372,326.80564 507.12762,327.60665 505.53919,329.20864 C 503.95073,330.81069 503.1565,333.03723 503.15652,335.88826 L 503.15652,361.05904 L 494.64407,361.05904 z M 539.44642,350.83596 L 539.44642,301.71628 L 547.95887,301.71628 L 547.95887,350.14356 C 547.95886,352.09858 549.01782,353.07608 551.13576,353.07607 L 554.02755,353.07607 L 554.02755,361.05904 L 550.28045,361.05904 C 547.185,361.05904 544.60547,360.30555 542.54186,358.79856 C 540.47823,357.29157 539.44642,354.63738 539.44642,350.83596 L 539.44642,350.83596 z M 561.19593,361.05904 L 561.19593,318.78191 L 569.70838,318.78191 L 569.70838,361.05904 L 561.19593,361.05904 z M 561.19593,310.22873 L 561.19593,301.71628 L 569.70838,301.71628 L 569.70838,310.22873 L 561.19593,310.22873 z M 613.73688,343.1381 L 587.42568,343.1381 C 587.42566,346.61369 588.36923,349.22037 590.25637,350.95815 C 592.14348,352.69594 594.5533,353.56483 597.48584,353.56483 C 600.98855,353.56483 604.08398,352.20719 606.77215,349.49189 L 612.92229,354.74598 C 610.83148,357.18975 608.47596,358.93432 605.85574,359.97971 C 603.23545,361.0251 600.49979,361.54779 597.64876,361.54779 C 593.30427,361.54779 589.09557,360.14263 585.02264,357.3323 C 580.94969,354.52198 578.91323,348.77235 578.91323,340.08339 C 578.91323,331.85608 580.79356,326.16754 584.55425,323.01777 C 588.31492,319.86807 592.24531,318.2932 596.34542,318.29315 C 600.98855,318.2932 605.04791,319.90201 608.52351,323.11959 C 611.99905,326.33725 613.73684,330.67493 613.73688,336.13264 L 613.73688,343.1381 z M 587.42568,336.13264 L 605.26516,336.13264 C 605.12937,332.95577 604.23332,330.52559 602.57702,328.84207 C 600.92066,327.15862 598.84347,326.31688 596.34542,326.31685 C 593.82018,326.31688 591.72261,327.15862 590.05272,328.84207 C 588.3828,330.52559 587.50712,332.95577 587.42568,336.13264 L 587.42568,336.13264 z M 646.4426,361.01831 L 646.4426,356.66026 C 643.4829,359.91862 639.84441,361.54779 635.52712,361.54779 C 632.7575,361.54779 630.44272,360.99795 628.58275,359.89825 C 626.72277,358.79856 625.3176,357.63777 624.36726,356.41589 C 623.14537,354.84102 622.31042,353.17112 621.8624,351.40617 C 621.41437,349.64124 621.19036,345.82625 621.19037,339.9612 C 621.19036,334.09619 621.41437,330.28121 621.8624,328.51624 C 622.31042,326.75133 623.14537,325.06785 624.36726,323.46579 C 625.3176,322.2711 626.72277,321.11031 628.58275,319.98343 C 630.44272,318.85662 632.7575,318.2932 635.52712,318.29315 C 639.65434,318.2932 643.29283,319.9631 646.4426,323.30287 L 646.4426,318.78191 L 654.95505,318.78191 L 654.95505,360.08153 C 654.95501,366.43532 653.10183,371.1192 649.39548,374.13318 C 645.68908,377.14714 641.43286,378.65413 636.62681,378.65415 C 633.9115,378.65413 631.25052,378.00246 628.64385,376.69914 C 626.03716,375.39578 623.79704,373.68515 621.92349,371.56723 L 628.52166,366.31313 C 629.55346,367.34494 630.78213,368.24099 632.20767,369.00128 C 633.63318,369.76155 635.16054,370.14169 636.78973,370.1417 C 639.61361,370.14169 641.9284,369.35426 643.7341,367.77939 C 645.53974,366.20452 646.44257,363.95083 646.4426,361.01831 L 646.4426,361.01831 z M 629.70281,339.9612 C 629.7028,343.35534 629.79105,345.60903 629.96755,346.72229 C 630.14403,347.83557 630.61242,348.86738 631.37272,349.81772 C 631.94292,350.57801 632.78466,351.31114 633.89794,352.01711 C 635.0112,352.72309 636.42315,353.07608 638.1338,353.07607 C 639.79011,353.07608 641.16812,352.72309 642.26784,352.01711 C 643.36751,351.31114 644.21603,350.57801 644.81343,349.81772 C 645.54653,348.86738 646.00134,347.83557 646.17786,346.72229 C 646.35433,345.60903 646.44257,343.35534 646.4426,339.9612 C 646.44257,336.56711 646.35433,334.31342 646.17786,333.20012 C 646.00134,332.08688 645.54653,331.04149 644.81343,330.06396 C 644.21603,329.33086 643.36751,328.60452 642.26784,327.88493 C 641.16812,327.16541 639.79011,326.80564 638.1338,326.8056 C 636.42315,326.80564 635.0112,327.16541 633.89794,327.88493 C 632.78466,328.60452 631.94292,329.33086 631.37272,330.06396 C 630.61242,331.04149 630.14403,332.08688 629.96755,333.20012 C 629.79105,334.31342 629.7028,336.56711 629.70281,339.9612 L 629.70281,339.9612 z M 698.77989,343.1381 L 672.46869,343.1381 C 672.46868,346.61369 673.41224,349.22037 675.29939,350.95815 C 677.1865,352.69594 679.59632,353.56483 682.52886,353.56483 C 686.03156,353.56483 689.12699,352.20719 691.81516,349.49189 L 697.9653,354.74598 C 695.87449,357.18975 693.51898,358.93432 690.89875,359.97971 C 688.27846,361.0251 685.54281,361.54779 682.69177,361.54779 C 678.34729,361.54779 674.13858,360.14263 670.06566,357.3323 C 665.99271,354.52198 663.95624,348.77235 663.95624,340.08339 C 663.95624,331.85608 665.83658,326.16754 669.59727,323.01777 C 673.35794,319.86807 677.28832,318.2932 681.38843,318.29315 C 686.03156,318.2932 690.09092,319.90201 693.56653,323.11959 C 697.04207,326.33725 698.77985,330.67493 698.77989,336.13264 L 698.77989,343.1381 z M 672.46869,336.13264 L 690.30817,336.13264 C 690.17238,332.95577 689.27633,330.52559 687.62003,328.84207 C 685.96368,327.15862 683.88648,326.31688 681.38843,326.31685 C 678.86319,326.31688 676.76563,327.15862 675.09574,328.84207 C 673.42582,330.52559 672.55014,332.95577 672.46869,336.13264 L 672.46869,336.13264 z M 707.74035,361.05904 L 707.74035,318.78191 L 716.2528,318.78191 L 716.2528,323.30287 L 716.41572,323.30287 C 719.04954,319.9631 722.71518,318.2932 727.41266,318.29315 C 730.50807,318.2932 733.45416,319.37931 736.25094,321.55151 L 730.1008,328.8828 C 728.25438,327.49804 726.38082,326.80564 724.48014,326.8056 C 722.38935,326.80564 720.49543,327.50482 718.79839,328.90317 C 717.10131,330.30157 716.25279,332.54848 716.2528,335.64389 L 716.2528,361.05904 L 707.74035,361.05904 z "
+       style="font-size:83.41384125px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1931"
+       d="M 536.5138,442.86002 L 536.5138,407.09952 L 532.23721,407.09952 L 532.23721,400.58281 L 536.5138,400.58281 L 536.5138,395.00287 C 536.5138,391.06573 537.59991,388.16715 539.77216,386.30712 C 541.94439,384.4472 544.68684,383.51721 547.99952,383.51715 L 553.498,383.51715 L 553.498,391.50013 L 548.69192,391.50013 C 546.22098,391.50018 544.98552,392.66776 544.98554,395.00287 L 544.98554,400.58281 L 553.498,400.58281 L 553.498,407.09952 L 544.98554,407.09952 L 544.98554,442.86002 L 536.5138,442.86002 z M 558.30408,442.86002 L 558.30408,400.58281 L 566.81655,400.58281 L 566.81655,405.10378 L 566.97946,405.10378 C 569.61329,401.764 573.27894,400.09409 577.97643,400.09405 C 581.07184,400.09409 584.01794,401.18021 586.81473,403.35241 L 580.66457,410.68372 C 578.81814,409.29895 576.94459,408.60655 575.0439,408.60652 C 572.9531,408.60655 571.05918,409.30574 569.36214,410.70408 C 567.66506,412.10249 566.81653,414.3494 566.81655,417.44482 L 566.81655,442.86002 L 558.30408,442.86002 z M 623.47127,424.93904 L 597.16002,424.93904 C 597.16001,428.41464 598.10357,431.02133 599.99072,432.75911 C 601.87784,434.49691 604.28766,435.3658 607.22021,435.36579 C 610.72292,435.3658 613.81835,434.00815 616.50653,431.29284 L 622.65668,436.54695 C 620.56587,438.99072 618.21035,440.7353 615.59012,441.78069 C 612.96982,442.82608 610.23416,443.34877 607.38312,443.34877 C 603.03863,443.34877 598.82992,441.94361 594.75698,439.13327 C 590.68403,436.32294 588.64755,430.5733 588.64756,421.88433 C 588.64755,413.657 590.5279,407.96846 594.28859,404.81867 C 598.04927,401.66897 601.97966,400.09409 606.07978,400.09405 C 610.72292,400.09409 614.78228,401.70291 618.2579,404.9205 C 621.73344,408.13816 623.47123,412.47585 623.47127,417.93357 L 623.47127,424.93904 z M 597.16002,417.93357 L 614.99954,417.93357 C 614.86374,414.7567 613.9677,412.32651 612.31139,410.64299 C 610.65503,408.95954 608.57783,408.1178 606.07978,408.11776 C 603.55453,408.1178 601.45697,408.95954 599.78707,410.64299 C 598.11715,412.32651 597.24147,414.7567 597.16002,417.93357 L 597.16002,417.93357 z M 632.67614,442.86002 L 632.67614,400.58281 L 641.1886,400.58281 L 641.1886,442.86002 L 632.67614,442.86002 z M 632.67614,392.02961 L 632.67614,383.51715 L 641.1886,383.51715 L 641.1886,392.02961 L 632.67614,392.02961 z "
+       style="font-size:83.41400146px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1020-13.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1020-13.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1020-13.svg	(revision 21967)
@@ -0,0 +1,213 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="523"
+   height="355"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.46"
+   sodipodi:docname="Zusatzzeichen_Inlineskater_frei.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="1"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="1.222449"
+     inkscape:cx="243.66122"
+     inkscape:cy="175.5485"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     showgrid="true"
+     inkscape:snap-global="false">
+    <inkscape:grid
+       type="xygrid"
+       id="grid2473"
+       visible="true"
+       enabled="true" />
+  </sodipodi:namedview>
+  <defs
+     id="defs4" />
+  <path
+     d="M 40.589996,13.483754 C 20.793639,13.554399 9.6319306,22.774365 9.6319306,49.897406 L 9.2961598,311.82004 C 9.2961598,338.94308 20.457868,348.08337 40.254225,348.0127 L 483.74026,346.3896 C 503.53662,346.31893 514.69832,337.09897 514.69833,309.97595 L 515.03409,48.133708 C 515.03409,21.010665 503.87238,11.870377 484.07602,11.94105 L 40.589996,13.483754 z"
+     style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.03687978;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 484.68714,29.777412 L 37.441138,29.817799 C 28.39569,29.817799 23.079874,37.572154 23.079874,49.038941 L 23.079874,313.49124 C 23.079874,324.95799 28.3957,332.71239 37.441138,332.71239 L 484.65358,332.672 C 493.69903,332.67199 499.01485,324.91762 499.01485,313.45085 L 499.01485,48.998562 C 499.01485,37.531775 493.73257,29.777412 484.68714,29.777412 z"
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:12.06502438;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     d="M 319.97421,212.94611 L 319.97421,169.94211 L 314.83136,169.94211 L 314.83136,162.1054 L 319.97421,162.1054 L 319.97421,155.39521 C 319.9742,150.66058 321.28032,147.17488 323.89257,144.93808 C 326.50479,142.70142 329.80274,141.58306 333.78642,141.58299 L 340.39866,141.58299 L 340.39866,151.18297 L 334.61908,151.18297 C 331.64763,151.18303 330.16192,152.58711 330.16194,155.39521 L 330.16194,162.1054 L 340.39866,162.1054 L 340.39866,169.94211 L 330.16194,169.94211 L 330.16194,212.94611 L 319.97421,212.94611 z M 346.17824,212.94611 L 346.17824,162.1054 L 356.41495,162.1054 L 356.41495,167.54212 L 356.61087,167.54212 C 359.77819,163.52585 364.18634,161.51769 369.83533,161.51764 C 373.55774,161.51769 377.10058,162.82381 380.46388,165.436 L 373.06798,174.25231 C 370.84754,172.58705 368.59449,171.7544 366.30881,171.75436 C 363.7945,171.7544 361.51696,172.59521 359.47617,174.2768 C 357.43534,175.95847 356.41493,178.6605 356.41495,182.38291 L 356.41495,212.94611 L 346.17824,212.94611 z M 424.54542,191.39513 L 392.90467,191.39513 C 392.90466,195.57473 394.03935,198.70942 396.30875,200.79919 C 398.57811,202.889 401.47606,203.93389 405.00261,203.93388 C 409.21481,203.93389 412.93725,202.30124 416.16993,199.03593 L 423.56583,205.35429 C 421.05151,208.29306 418.21887,210.39101 415.06789,211.64815 C 411.91684,212.90529 408.62706,213.53386 405.19852,213.53386 C 399.97402,213.53386 394.91282,211.84407 390.01488,208.46448 C 385.11693,205.08491 382.66796,198.17064 382.66796,187.72167 C 382.66796,177.82785 384.92917,170.98705 389.45162,167.19926 C 393.97404,163.41157 398.70056,161.51769 403.63118,161.51764 C 409.21481,161.51769 414.09643,163.45238 418.27605,167.32171 C 422.45559,171.19113 424.54538,176.40744 424.54542,182.97066 L 424.54542,191.39513 z M 392.90467,182.97066 L 414.35769,182.97066 C 414.19439,179.15029 413.11684,176.22785 411.12504,174.20333 C 409.13318,172.17889 406.63523,171.16664 403.63118,171.1666 C 400.59443,171.16664 398.07199,172.17889 396.06385,174.20333 C 394.05568,176.22785 393.00262,179.15029 392.90467,182.97066 L 392.90467,182.97066 z M 435.61479,212.94611 L 435.61479,162.1054 L 445.8515,162.1054 L 445.8515,212.94611 L 435.61479,212.94611 z M 435.61479,151.8197 L 435.61479,141.58299 L 445.8515,141.58299 L 445.8515,151.8197 L 435.61479,151.8197 z"
+     id="text5654" />
+  <g
+     id="g3239"
+     transform="matrix(1.1523906,0,0,1.1523906,16.880407,-18.001883)">
+    <rect
+       ry="2"
+       rx="1.86"
+       y="248.24542"
+       x="113.91585"
+       height="10"
+       width="46.5"
+       id="rect2411"
+       style="fill:#000000;fill-opacity:1" />
+    <g
+       id="g3224">
+      <path
+         sodipodi:type="arc"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="Rolle1"
+         sodipodi:cx="175"
+         sodipodi:cy="205"
+         sodipodi:rx="5"
+         sodipodi:ry="5"
+         d="M 180,205 A 5,5 0 1 1 170,205 A 5,5 0 1 1 180,205 z"
+         inkscape:label="#path2477"
+         transform="matrix(1.2712937,0,0,1.2727956,-102.8176,5.8907718)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path2397"
+         sodipodi:cx="175"
+         sodipodi:cy="205"
+         sodipodi:rx="5"
+         sodipodi:ry="5"
+         d="M 180,205 A 5,5 0 1 1 170,205 A 5,5 0 1 1 180,205 z"
+         inkscape:label="#path2477"
+         transform="matrix(1.2727273,0,0,1.2727273,-87.386179,6.1092813)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path2399"
+         sodipodi:cx="175"
+         sodipodi:cy="205"
+         sodipodi:rx="5"
+         sodipodi:ry="5"
+         d="M 180,205 A 5,5 0 1 1 170,205 A 5,5 0 1 1 180,205 z"
+         inkscape:label="#path2477"
+         transform="matrix(1.2727273,0,0,1.2727273,-71.363641,6.0680625)"
+         inkscape:transform-center-x="25.454533"
+         inkscape:transform-center-y="7.0000045" />
+      <path
+         inkscape:transform-center-y="7.0000045"
+         inkscape:transform-center-x="25.454533"
+         transform="matrix(1.2727273,0,0,1.2727273,-46.879043,0.1546593)"
+         inkscape:label="#path2477"
+         d="M 180,205 A 5,5 0 1 1 170,205 A 5,5 0 1 1 180,205 z"
+         sodipodi:ry="5"
+         sodipodi:rx="5"
+         sodipodi:cy="205"
+         sodipodi:cx="175"
+         id="path2401"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path2403"
+         sodipodi:cx="175"
+         sodipodi:cy="205"
+         sodipodi:rx="5"
+         sodipodi:ry="5"
+         d="M 180,205 A 5,5 0 1 1 170,205 A 5,5 0 1 1 180,205 z"
+         inkscape:label="#path2477"
+         transform="matrix(1.2727273,0,0,1.2727273,-32.355973,-5.9090965)"
+         inkscape:transform-center-x="25.454533"
+         inkscape:transform-center-y="7.0000045" />
+      <path
+         inkscape:transform-center-y="7.0000045"
+         inkscape:transform-center-x="25.454533"
+         transform="matrix(1.2727273,0,0,1.2727273,-17.727277,-11.753824)"
+         inkscape:label="#path2477"
+         d="M 180,205 A 5,5 0 1 1 170,205 A 5,5 0 1 1 180,205 z"
+         sodipodi:ry="5"
+         sodipodi:rx="5"
+         sodipodi:cy="205"
+         sodipodi:cx="175"
+         id="path2405"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path2407"
+         sodipodi:cx="175"
+         sodipodi:cy="205"
+         sodipodi:rx="5"
+         sodipodi:ry="5"
+         d="M 180,205 A 5,5 0 1 1 170,205 A 5,5 0 1 1 180,205 z"
+         inkscape:label="#path2477"
+         transform="matrix(2.7272727,0,0,2.7272727,-364.72697,-474.27287)"
+         inkscape:transform-center-x="54.545448"
+         inkscape:transform-center-y="15.000019" />
+      <rect
+         ry="2"
+         rx="1.86"
+         y="290.50479"
+         x="52.570236"
+         height="10.000001"
+         width="46.500004"
+         id="rect2413"
+         style="fill:#000000;fill-opacity:1"
+         transform="matrix(0.9205048,-0.3907312,0.3907312,0.9205048,0,0)" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#000000;fill-opacity:1"
+         id="path2441"
+         sodipodi:cx="134.46368"
+         sodipodi:cy="265.00626"
+         sodipodi:rx="1.1247913"
+         sodipodi:ry="0.51126879"
+         d="M 135.58848,265.00626 A 1.1247913,0.51126879 0 1 1 133.33889,265.00626 A 1.1247913,0.51126879 0 1 1 135.58848,265.00626 z" />
+      <path
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 125,199.25709 C 129.63816,215.71041 133.72209,230.58076 136.81553,241.79466 C 137.69185,244.97137 143.16718,247.59201 146.42738,247.11185 C 149.90413,246.59981 155.63046,242.18194 154.60768,238.72705 C 151.17248,227.12316 144.3823,203.96077 144.3823,203.96077 L 154.60768,193.53088 L 159.72037,210.50501 C 159.72037,210.50501 171.32652,225.58879 176.28548,231.9783 C 178.49333,234.82307 184.82413,235.20684 188.14691,233.81887 C 190.66088,232.76875 192.46702,229.17518 192.64608,226.45659 C 192.70562,225.55269 192.03255,223.798 192.03255,223.798 L 177.30801,203.55175 L 170.35476,182.28297 C 170.35476,182.28297 174.21949,176.2238 175.67195,174.10267 C 177.49566,171.43938 179.0248,166.45425 177.30801,163.46828 C 175.16084,159.73376 170.96828,150.58431 170.96828,150.58431 C 170.96828,150.58431 145,173.15184 133.13439,183.101 C 128.9762,186.58759 123.52766,194.03415 125,199.25709 z"
+         id="path2445"
+         sodipodi:nodetypes="cssscccssscccsscss" />
+      <path
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 144.3823,167.14942 L 170,145 L 170,145 L 176.48998,117.8631 C 176.48998,117.8631 150.32208,105.46211 138.8606,100.27546 C 133.5824,97.886922 124.43386,98.867398 119.63689,102.11603 C 117.75115,103.3931 116.75065,106.66514 116.16027,108.86477 C 114.85459,113.72946 115.34224,125.63439 115.34224,125.63439 L 120.45493,147.7212 C 120.45493,147.7212 106.15754,160.79718 99.390651,167.14941 C 97.276706,169.13382 95.490881,175.43149 97.423902,177.94599 C 99.584079,180.75597 106.63936,181.24961 109.20701,178.80634 C 116.90801,171.47838 135.9975,153.85643 135.9975,153.85643 L 144.3823,167.14942 z"
+         id="path3217"
+         sodipodi:nodetypes="ccccsssccssscc" />
+      <a
+         id="a3221"
+         style="fill:#ffffff;fill-opacity:1">
+        <path
+           id="path3219"
+           d="M 152.76711,122.97579 L 160.74291,125 L 159.10684,133.20117 L 152.76711,122.97579 z"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      </a>
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1020-30.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1020-30.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1020-30.svg	(revision 21967)
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 67.12418,120.39301 L 92.898369,49.75623 L 101.71586,49.75623 L 127.49004,120.39301 L 116.25017,120.39301 L 110.82403,104.45371 L 84.032436,104.45371 L 78.4125,120.39301 L 67.12418,120.39301 z M 87.181538,95.00641 L 107.62648,95.00641 C 106.14071,90.64614 104.96989,87.23058 104.11402,84.75971 C 103.25807,82.28892 102.51521,80.1007 101.88542,78.19505 C 101.25557,76.28948 100.61767,74.35157 99.971737,72.38132 C 99.325735,70.41116 98.469826,67.74654 97.404008,64.38744 C 96.273531,67.87573 95.369175,70.66147 94.690935,72.74468 C 94.01264,74.82797 93.358596,76.83855 92.728802,78.77642 C 92.098957,80.71437 91.372242,82.87836 90.548655,85.26841 C 89.725021,87.65853 88.602649,90.90453 87.181538,95.00641 L 87.181538,95.00641 z M 135.48392,120.44146 L 135.48392,70.15272 L 145.60949,70.15272 L 145.60949,75.53042 L 145.80329,75.53042 C 148.93622,71.55776 153.29651,69.5714 158.88417,69.57135 C 162.79225,69.5714 166.5631,71.05713 170.19671,74.02854 C 173.83025,77.00005 175.64704,81.32804 175.64708,87.01253 L 175.64708,120.44146 L 165.52151,120.44146 L 165.52151,90.50077 C 165.52147,87.10946 164.57674,84.46099 162.68732,82.55534 C 160.79782,80.64977 158.44811,79.69697 155.63817,79.69692 C 152.73129,79.69697 150.33313,80.64977 148.44369,82.55534 C 146.55421,84.46099 145.60948,87.10946 145.60949,90.50077 L 145.60949,120.44146 L 135.48392,120.44146 z M 188.77642,108.28108 L 188.77642,49.85313 L 198.90199,49.85313 L 198.90199,107.45747 C 198.90197,109.78297 200.16161,110.94572 202.68091,110.94571 L 206.1207,110.94571 L 206.1207,120.44146 L 201.66351,120.44146 C 197.98147,120.44146 194.91312,119.54518 192.45844,117.75261 C 190.00375,115.96005 188.77641,112.80288 188.77642,108.28108 L 188.77642,108.28108 z M 214.64751,120.44146 L 214.64751,70.15272 L 224.77308,70.15272 L 224.77308,120.44146 L 214.64751,120.44146 z M 214.64751,59.9787 L 214.64751,49.85313 L 224.77308,49.85313 L 224.77308,59.9787 L 214.64751,59.9787 z M 277.14507,99.12446 L 245.84784,99.12446 C 245.84782,103.25868 246.97019,106.35934 249.21495,108.42643 C 251.45968,110.49354 254.32617,111.52709 257.81442,111.52708 C 261.9809,111.52709 265.66292,109.91217 268.86051,106.68231 L 276.17611,112.93206 C 273.68909,115.83893 270.8872,117.91411 267.77043,119.1576 C 264.65359,120.40109 261.39953,121.02283 258.00821,121.02283 C 252.84044,121.02283 247.83418,119.35139 242.98942,116.00849 C 238.14464,112.66561 235.72226,105.82641 235.72226,95.49088 C 235.72226,85.70448 237.95893,78.93795 242.43227,75.19129 C 246.9056,71.44471 251.5808,69.5714 256.45789,69.57135 C 261.9809,69.5714 266.80952,71.48508 270.94376,75.31241 C 275.07792,79.13982 277.14502,84.29949 277.14507,90.79145 L 277.14507,99.12446 z M 245.84784,90.79145 L 267.06794,90.79145 C 266.90641,87.01256 265.84056,84.12185 263.87039,82.11931 C 261.90015,80.11685 259.42932,79.11559 256.45789,79.11555 C 253.45411,79.11559 250.95905,80.11685 248.97271,82.11931 C 246.98634,84.12185 245.94472,87.01256 245.84784,90.79145 L 245.84784,90.79145 z M 316.04859,120.39301 L 316.04859,115.20911 C 312.52803,119.08493 308.20003,121.02283 303.0646,121.02283 C 299.77014,121.02283 297.0167,120.36879 294.80427,119.0607 C 292.59181,117.75261 290.92036,116.37186 289.78993,114.91842 C 288.33649,113.04512 287.34331,111.05876 286.81039,108.95935 C 286.27746,106.85996 286.011,102.32203 286.011,95.34554 C 286.011,88.3691 286.27746,83.83117 286.81039,81.73173 C 287.34331,79.63237 288.33649,77.62986 289.78993,75.72421 C 290.92036,74.30312 292.59181,72.92237 294.80427,71.58193 C 297.0167,70.24159 299.77014,69.5714 303.0646,69.57135 C 307.97394,69.5714 312.30194,71.55776 316.04859,75.53042 L 316.04859,70.15272 L 326.17417,70.15272 L 326.17417,119.27872 C 326.17412,126.83655 323.96975,132.40804 319.56105,135.99318 C 315.15228,139.57829 310.08949,141.37086 304.37269,141.37088 C 301.14282,141.37086 297.97757,140.59569 294.87694,139.04539 C 291.77627,137.49504 289.11165,135.46024 286.88306,132.94097 L 294.73159,126.69122 C 295.95892,127.91855 297.42043,128.9844 299.11611,129.88877 C 300.81176,130.79311 302.62855,131.24529 304.56648,131.2453 C 307.9255,131.24529 310.67894,130.30864 312.82682,128.43534 C 314.97463,126.56202 316.04856,123.88125 316.04859,120.39301 L 316.04859,120.39301 z M 296.13658,95.34554 C 296.13656,99.38287 296.24153,102.06364 296.45149,103.38786 C 296.66141,104.71212 297.21856,105.93946 298.12293,107.06989 C 298.80118,107.97426 299.80244,108.84632 301.12669,109.68607 C 302.45091,110.52584 304.13043,110.94572 306.16526,110.94571 C 308.13544,110.94572 309.77458,110.52584 311.0827,109.68607 C 312.39076,108.84632 313.40008,107.97426 314.11068,107.06989 C 314.98271,105.93946 315.52371,104.71212 315.73368,103.38786 C 315.94359,102.06364 316.04856,99.38287 316.04859,95.34554 C 316.04856,91.30826 315.94359,88.62749 315.73368,87.30322 C 315.52371,85.97901 314.98271,84.73552 314.11068,83.57274 C 313.40008,82.70072 312.39076,81.83674 311.0827,80.98079 C 309.77458,80.12492 308.13544,79.69697 306.16526,79.69692 C 304.13043,79.69697 302.45091,80.12492 301.12669,80.98079 C 299.80244,81.83674 298.80118,82.70072 298.12293,83.57274 C 297.21856,84.73552 296.66141,85.97901 296.45149,87.30322 C 296.24153,88.62749 296.13656,91.30826 296.13658,95.34554 L 296.13658,95.34554 z M 378.30391,99.12446 L 347.00668,99.12446 C 347.00667,103.25868 348.12904,106.35934 350.3738,108.42643 C 352.61852,110.49354 355.48501,111.52709 358.97327,111.52708 C 363.13974,111.52709 366.82177,109.91217 370.01935,106.68231 L 377.33496,112.93206 C 374.84793,115.83893 372.04604,117.91411 368.92928,119.1576 C 365.81244,120.40109 362.55837,121.02283 359.16706,121.02283 C 353.99928,121.02283 348.99302,119.35139 344.14826,116.00849 C 339.30349,112.66561 336.8811,105.82641 336.88111,95.49088 C 336.8811,85.70448 339.11777,78.93795 343.59112,75.19129 C 348.06444,71.44471 352.73964,69.5714 357.61673,69.57135 C 363.13974,69.5714 367.96836,71.48508 372.1026,75.31241 C 376.23676,79.13982 378.30386,84.29949 378.30391,90.79145 L 378.30391,99.12446 z M 347.00668,90.79145 L 368.22678,90.79145 C 368.06526,87.01256 366.99941,84.12185 365.02923,82.11931 C 363.059,80.11685 360.58816,79.11559 357.61673,79.11555 C 354.61295,79.11559 352.1179,80.11685 350.13156,82.11931 C 348.14519,84.12185 347.10356,87.01256 347.00668,90.79145 L 347.00668,90.79145 z M 388.96241,120.44146 L 388.96241,70.15272 L 399.08799,70.15272 L 399.08799,75.53042 L 399.28178,75.53042 C 402.41471,71.55776 406.775,69.5714 412.36266,69.57135 C 416.04466,69.5714 419.54904,70.86334 422.87582,73.44717 L 415.56021,82.16776 C 413.36389,80.52058 411.13529,79.69697 408.87443,79.69692 C 406.38742,79.69697 404.1346,80.52865 402.11597,82.19198 C 400.0973,83.85539 399.08797,86.52809 399.08799,90.21008 L 399.08799,120.44146 L 388.96241,120.44146 z M 182.42976,219.6624 L 182.42976,177.1253 L 177.34275,177.1253 L 177.34275,169.37366 L 182.42976,169.37366 L 182.42976,162.73632 C 182.42976,158.05311 183.72169,154.60525 186.30558,152.39273 C 188.88945,150.18036 192.15159,149.07414 196.09202,149.07407 L 202.63247,149.07407 L 202.63247,158.56982 L 196.91563,158.56982 C 193.97645,158.56988 192.50687,159.95871 192.50689,162.73632 L 192.50689,169.37366 L 202.63247,169.37366 L 202.63247,177.1253 L 192.50689,177.1253 L 192.50689,219.6624 L 182.42976,219.6624 z M 208.3493,219.6624 L 208.3493,169.37366 L 218.47487,169.37366 L 218.47487,174.75136 L 218.66866,174.75136 C 221.80159,170.7787 226.16188,168.79234 231.74955,168.79229 C 235.43154,168.79234 238.93592,170.08428 242.2627,172.66811 L 234.9471,181.3887 C 232.75077,179.74152 230.52218,178.9179 228.26131,178.91786 C 225.7743,178.9179 223.52149,179.74959 221.50285,181.41292 C 219.48418,183.07633 218.47485,185.74903 218.47487,189.43102 L 218.47487,219.6624 L 208.3493,219.6624 z M 285.86565,198.3454 L 254.56842,198.3454 C 254.56841,202.47962 255.69078,205.58028 257.93554,207.64736 C 260.18027,209.71448 263.04675,210.74803 266.53501,210.74802 C 270.70149,210.74803 274.38351,209.13311 277.58109,205.90325 L 284.8967,212.153 C 282.40967,215.05987 279.60778,217.13505 276.49102,218.37854 C 273.37418,219.62203 270.12011,220.24377 266.7288,220.24377 C 261.56102,220.24377 256.55476,218.57233 251.71001,215.22943 C 246.86523,211.88655 244.44285,205.04735 244.44285,194.71182 C 244.44285,184.92542 246.67951,178.15889 251.15286,174.41223 C 255.62618,170.66565 260.30139,168.79234 265.17848,168.79229 C 270.70149,168.79234 275.5301,170.70602 279.66435,174.53335 C 283.79851,178.36076 285.86561,183.52043 285.86565,190.01239 L 285.86565,198.3454 z M 254.56842,190.01239 L 275.78853,190.01239 C 275.627,186.2335 274.56115,183.34279 272.59098,181.34025 C 270.62074,179.33778 268.14991,178.33653 265.17848,178.33649 C 262.1747,178.33653 259.67964,179.33778 257.6933,181.34025 C 255.70693,183.34279 254.66531,186.2335 254.56842,190.01239 L 254.56842,190.01239 z M 296.81484,219.6624 L 296.81484,169.37366 L 306.94041,169.37366 L 306.94041,219.6624 L 296.81484,219.6624 z M 296.81484,159.19964 L 296.81484,149.07407 L 306.94041,149.07407 L 306.94041,159.19964 L 296.81484,159.19964 z "
+     style="font-size:99.22093964px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text3933" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1022-10.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1022-10.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1022-10.svg	(revision 21967)
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1022-10.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="1.05"
+     inkscape:cx="416.64094"
+     inkscape:cy="108.23622"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5674"
+     transform="translate(276.4897,-456.8417)">
+    <path
+       id="text5654"
+       d="M -91.856923,763.33719 L -91.856923,720.33319 L -96.999769,720.33319 L -96.999769,712.49648 L -91.856923,712.49648 L -91.856923,705.78629 C -91.856931,701.05166 -90.550813,697.56596 -87.938564,695.32916 C -85.326339,693.0925 -82.02839,691.97414 -78.044706,691.97407 L -71.432475,691.97407 L -71.432475,701.57405 L -77.212055,701.57405 C -80.183498,701.57411 -81.669207,702.97819 -81.669189,705.78629 L -81.669189,712.49648 L -71.432475,712.49648 L -71.432475,720.33319 L -81.669189,720.33319 L -81.669189,763.33719 L -91.856923,763.33719 z M -65.652895,763.33719 L -65.652895,712.49648 L -55.416182,712.49648 L -55.416182,717.9332 L -55.220264,717.9332 C -52.052944,713.91693 -47.644794,711.90877 -41.995801,711.90872 C -38.273394,711.90877 -34.730548,713.21489 -31.367252,715.82708 L -38.763155,724.64339 C -40.98359,722.97813 -43.236644,722.14548 -45.522325,722.14544 C -48.03663,722.14548 -50.314174,722.98629 -52.354964,724.66788 C -54.395794,726.34955 -55.416199,729.05158 -55.416182,732.77399 L -55.416182,763.33719 L -65.652895,763.33719 z M 12.714294,741.78621 L -18.926457,741.78621 C -18.926472,745.96581 -17.791781,749.1005 -15.522383,751.19027 C -13.25302,753.28008 -10.355069,754.32497 -6.8285231,754.32496 C -2.6163176,754.32497 1.10612,752.69232 4.3388008,749.42701 L 11.734704,755.74537 C 9.2203809,758.68414 6.3877365,760.78209 3.2367623,762.03923 C 0.085714918,763.29637 -3.2040709,763.92494 -6.6326051,763.92494 C -11.857106,763.92494 -16.918315,762.23515 -21.816247,758.85556 C -26.714203,755.47599 -29.163175,748.56172 -29.163171,738.11275 C -29.163175,728.21893 -26.901958,721.37813 -22.379511,717.59034 C -17.857087,713.80265 -13.130571,711.90877 -8.1999488,711.90872 C -2.6163176,711.90877 2.2653001,713.84346 6.444919,717.71279 C 10.624458,721.58221 12.714248,726.79852 12.714294,733.36174 L 12.714294,741.78621 z M -18.926457,733.36174 L 2.5265597,733.36174 C 2.363259,729.54137 1.2857112,726.61893 -0.70608672,724.59441 C -2.69795,722.56997 -5.1959016,721.55772 -8.1999488,721.55768 C -11.236699,721.55772 -13.759141,722.56997 -15.76728,724.59441 C -17.775455,726.61893 -18.828513,729.54137 -18.926457,733.36174 L -18.926457,733.36174 z M 23.783659,763.33719 L 23.783659,712.49648 L 34.020372,712.49648 L 34.020372,763.33719 L 23.783659,763.33719 z M 23.783659,702.21078 L 23.783659,691.97407 L 34.020372,691.97407 L 34.020372,702.21078 L 23.783659,702.21078 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <circle
+       transform="matrix(0.276135,0,0,0.276135,-170.2475,505.4875)"
+       sodipodi:ry="161"
+       sodipodi:rx="161"
+       sodipodi:cy="409"
+       sodipodi:cx="215"
+       cx="215"
+       cy="409"
+       r="161"
+       style="fill:none;stroke:black;stroke-width:40px"
+       id="circle2026" />
+    <circle
+       transform="matrix(0.276135,0,0,0.276135,-170.2475,505.4875)"
+       sodipodi:ry="161"
+       sodipodi:rx="161"
+       sodipodi:cy="406"
+       sodipodi:cx="790"
+       cx="790"
+       cy="406"
+       r="161"
+       style="fill:none;stroke:black;stroke-width:40px"
+       id="circle2028" />
+    <path
+       d="M -51.651833,509.75851 C -88.258076,510.1153 -82.05,505.97658 -101.74459,569.27042 C -117.78872,619.84214 -116.04113,614.32711 -116.12504,617.87445 C -116.18385,620.63033 -113.95922,622.81536 -111.16374,623.00239 C -105.3501,622.41456 -107.79545,623.63114 -87.639649,561.04055 C -13.99109,638.73269 -41.622182,626.13418 -1.9872224,627.71196 C 50.103533,627.21246 54.337395,630.42354 54.955824,622.78832 C 54.884465,620.19567 53.671396,618.6496 17.921437,539.08632 L 21.346583,529.66717 L 33.120521,529.4531 L 32.692379,519.60581 L -11.192301,519.60581 C -15.069375,524.91002 -9.6224407,524.88624 10.000789,529.23903 L 6.5756439,538.87225 L -80.979643,539.08632 C -75.080781,518.48788 -78.410784,519.77231 -51.865904,519.81988 L -51.651833,509.75851 z M -83.509589,549.64428 L 2.1649865,549.49238 L -22.595572,616.02689 L -83.509589,549.64428 z M 12.494545,553.59382 L -11.8103,617.39403 L 41.356545,617.54594 L 12.494545,553.59382 z "
+       style="fill:black;fill-rule:evenodd;stroke:none"
+       id="path2030" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1022-11.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1022-11.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1022-11.svg	(revision 21967)
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1022-11.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="28.98207"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5631"
+     transform="translate(236.0836,-302.4038)">
+    <path
+       id="text1982"
+       d="M -51.450823,608.44705 L -51.450823,565.44306 L -56.593669,565.44306 L -56.593669,557.60634 L -51.450823,557.60634 L -51.450823,550.89615 C -51.450831,546.16153 -50.144713,542.67582 -47.532463,540.43903 C -44.920239,538.20237 -41.62229,537.084 -37.638606,537.08393 L -31.026375,537.08393 L -31.026375,546.68391 L -36.805955,546.68391 C -39.777397,546.68397 -41.263107,548.08805 -41.263089,550.89615 L -41.263089,557.60634 L -31.026375,557.60634 L -31.026375,565.44306 L -41.263089,565.44306 L -41.263089,608.44705 L -51.450823,608.44705 z M -25.246795,608.44705 L -25.246795,557.60634 L -15.010082,557.60634 L -15.010082,563.04306 L -14.814164,563.04306 C -11.646844,559.02679 -7.2386937,557.01864 -1.5897011,557.01859 C 2.1327062,557.01864 5.6755525,558.32476 9.0388485,560.93694 L 1.6429453,569.75325 C -0.57748962,568.08799 -2.830544,567.25534 -5.1162244,567.2553 C -7.6305293,567.25534 -9.9080733,568.09615 -11.948863,569.77774 C -13.989693,571.45941 -15.010099,574.16144 -15.010082,577.88385 L -15.010082,608.44705 L -25.246795,608.44705 z M 53.120394,586.89607 L 21.479643,586.89607 C 21.479628,591.07568 22.614319,594.21036 24.883718,596.30014 C 27.15308,598.38994 30.051031,599.43483 33.577577,599.43482 C 37.789783,599.43483 41.51222,597.80219 44.744901,594.53688 L 52.140804,600.85523 C 49.626481,603.794 46.793837,605.89196 43.642863,607.14909 C 40.491815,608.40623 37.202029,609.0348 33.773495,609.0348 C 28.548995,609.0348 23.487786,607.34501 18.589853,603.96543 C 13.691897,600.58585 11.242925,593.67159 11.242929,583.22261 C 11.242925,573.32879 13.504143,566.488 18.026589,562.70021 C 22.549013,558.91251 27.275529,557.01864 32.206151,557.01859 C 37.789783,557.01864 42.6714,558.95332 46.851019,562.82265 C 51.030558,566.69208 53.120348,571.90839 53.120394,578.4716 L 53.120394,586.89607 z M 21.479643,578.4716 L 42.93266,578.4716 C 42.769359,574.65124 41.691812,571.7288 39.700014,569.70427 C 37.70815,567.67983 35.210199,566.66759 32.206151,566.66754 C 29.169401,566.66759 26.64696,567.67983 24.63882,569.70427 C 22.630645,571.7288 21.577587,574.65124 21.479643,578.4716 L 21.479643,578.4716 z M 64.189759,608.44705 L 64.189759,557.60634 L 74.426473,557.60634 L 74.426473,608.44705 L 64.189759,608.44705 z M 64.189759,547.32065 L 64.189759,537.08393 L 74.426473,537.08393 L 74.426473,547.32065 L 64.189759,547.32065 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="layer1"
+       transform="matrix(0.425919,0,0,0.425919,-135.8564,350.6084)">
+      <path
+         id="path15475"
+         style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:39.38558578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(0.74724,0,0,0.74724,122.5869,48.79482)"
+         d="M 136.75462,282.03583 C 136.75462,357.06643 75.930301,417.89075 0.8997,417.89075 C -74.130901,417.89075 -134.95522,357.06643 -134.95522,282.03583 C -134.95522,207.00523 -74.130901,146.18091 0.8997,146.18091 C 75.930301,146.18091 136.75462,207.00523 136.75462,282.03583 z " />
+      <path
+         id="path12814"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 648.90867,96.718727 L 435.78671,96.718727 C 427.74779,99.838733 421.99999,104.94437 426.56202,118.9852 L 481.59203,154.61156 C 505.09805,136.98259 529.46933,134.06306 553.79902,130.43653 L 649.54486,130.11844 L 648.90867,96.718727 z " />
+      <path
+         id="path13701"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 582.93177,285.852 L 361.08955,285.58848 C 314.75731,284.17925 288.28246,245.79634 259.51124,204.2434 C 209.17953,131.55162 201.92686,130.76936 191.60083,97.014213 L 265.47547,97.091396 C 270.39789,98.590741 275.32031,99.325646 280.24273,105.42207 L 324.71097,168.71896 C 328.41656,184.39886 325.34225,197.06215 321.45561,210.49425 C 316.96787,226.00375 334.80258,253.63393 362.62544,252.50687 L 583.4588,239.59683 L 582.93177,285.852 z " />
+      <path
+         id="path14588"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 108.60035,251.76407 C 110.39975,246.36586 194.33551,41.815551 194.33551,41.815551 C 204.53449,23.526361 218.83992,13.450051 237.52117,12.125404 L 295.10207,12.125404 L 294.78398,45.941389 L 239.266,45.941389 C 232.48018,45.301217 227.37783,49.579445 223.12595,61.608982 L 139.45372,265.8412 C 131.31921,284.84108 100.39972,278.15819 108.60035,251.76407 z " />
+      <path
+         id="path17247"
+         style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:39.38558578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(0.74724,0,0,0.74724,555.8824,49.18351)"
+         d="M 136.75462,282.03583 C 136.75462,357.06643 75.930301,417.89075 0.8997,417.89075 C -74.130901,417.89075 -134.95522,357.06643 -134.95522,282.03583 C -134.95522,207.00523 -74.130901,146.18091 0.8997,146.18091 C 75.930301,146.18091 136.75462,207.00523 136.75462,282.03583 z " />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1022-12.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1022-12.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1022-12.svg	(revision 21967)
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1022-12.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="163.66908"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5588"
+     transform="translate(218.5742,-400.6013)">
+    <path
+       id="text5568"
+       d="M -33.941422,712.1561 L -33.941422,669.1521 L -39.084269,669.1521 L -39.084269,661.31538 L -33.941422,661.31538 L -33.941422,654.60519 C -33.941431,649.87057 -32.635312,646.38487 -30.023063,644.14807 C -27.410838,641.91141 -24.112889,640.79305 -20.129206,640.79298 L -13.516975,640.79298 L -13.516975,650.39296 L -19.296554,650.39296 C -22.267997,650.39302 -23.753707,651.7971 -23.753688,654.60519 L -23.753688,661.31538 L -13.516975,661.31538 L -13.516975,669.1521 L -23.753688,669.1521 L -23.753688,712.1561 L -33.941422,712.1561 z M -7.7373948,712.1561 L -7.7373948,661.31538 L 2.4993188,661.31538 L 2.4993188,666.75211 L 2.6952367,666.75211 C 5.8625569,662.73584 10.270707,660.72768 15.919699,660.72763 C 19.642107,660.72768 23.184953,662.0338 26.548249,664.64599 L 19.152346,673.4623 C 16.931911,671.79704 14.678856,670.96439 12.393176,670.96434 C 9.8788711,670.96439 7.601327,671.8052 5.560537,673.48679 C 3.5197069,675.16845 2.4993018,677.87049 2.4993188,681.59289 L 2.4993188,712.1561 L -7.7373948,712.1561 z M 70.629794,690.60512 L 38.989043,690.60512 C 38.989029,694.78472 40.123719,697.9194 42.393118,700.00918 C 44.662481,702.09898 47.560431,703.14388 51.086978,703.14387 C 55.299183,703.14388 59.021621,701.51123 62.254301,698.24592 L 69.650205,704.56428 C 67.135881,707.50305 64.303237,709.601 61.152263,710.85814 C 58.001216,712.11528 54.71143,712.74385 51.282896,712.74385 C 46.058395,712.74385 40.997186,711.05406 36.099253,707.67447 C 31.201298,704.2949 28.752325,697.38063 28.75233,686.93166 C 28.752325,677.03784 31.013543,670.19704 35.535989,666.40925 C 40.058413,662.62155 44.784929,660.72768 49.715552,660.72763 C 55.299183,660.72768 60.180801,662.66237 64.36042,666.5317 C 68.539959,670.40112 70.629748,675.61743 70.629794,682.18065 L 70.629794,690.60512 z M 38.989043,682.18065 L 60.44206,682.18065 C 60.27876,678.36028 59.201212,675.43784 57.209414,673.41332 C 55.217551,671.38887 52.719599,670.37663 49.715552,670.37659 C 46.678801,670.37663 44.15636,671.38887 42.14822,673.41332 C 40.140046,675.43784 39.086988,678.36028 38.989043,682.18065 L 38.989043,682.18065 z M 81.699159,712.1561 L 81.699159,661.31538 L 91.935873,661.31538 L 91.935873,712.1561 L 81.699159,712.1561 z M 81.699159,651.02969 L 81.699159,640.79298 L 91.935873,640.79298 L 91.935873,651.02969 L 81.699159,651.02969 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="g5571"
+       transform="matrix(0.368756,0,0,0.368756,-99.2002,446.1241)">
+      <path
+         id="path4749"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 438.12826,429.16927 C 375.32987,426.00501 282.92602,437.06422 251.92375,397.77007 C 237.71768,323.00073 197.12299,285.36345 127.4223,284.58694 C 84.626532,201.93866 162.31092,188.98722 215.41306,167.75274 C 218.78636,206.16837 216.71935,246.10015 277.48123,268.52224 C 279.92034,256.63453 284.90432,246.92813 300.84807,246.61583 L 390.66436,246.98094 L 454.19295,197.3264 C 464.45935,213.65423 484.83147,234.57558 484.86193,246.25072 L 581.25015,246.61583 C 588.2694,252.59444 594.22298,268.45864 580.15483,284.22184 C 522.41354,282.46908 417.46802,288.77717 438.12826,429.16927 z " />
+      <path
+         id="path5636"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 281.45311,113.13794 L 281.71128,79.094411 L 319.83363,73.920272 L 319.83363,46.902363 L 280.93677,53.36735 C 283.79727,29.02724 299.44705,11.428004 333.92156,6.3312047 C 355.56786,7.8567994 378.26787,9.030436 391.1807,49.520754 C 394.96498,65.581097 392.60623,81.830116 382.63201,95.826685 C 350.34442,78.127222 326.17913,90.209532 304.13403,110.06585 L 281.45311,113.13794 z " />
+      <path
+         id="path6523"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 215.04795,186.7383 L 328.59619,100.93818 C 343.85852,92.79748 360.69029,91.248459 380.80647,103.49393 C 398.00264,119.11558 427.05087,162.39207 450.17678,191.84979 L 385.55287,240.22646 L 323.48469,153.87868 L 225.27094,229.0907 C 217.71099,215.89572 215.94199,200.40941 215.04795,186.7383 z " />
+      <path
+         id="path7410"
+         style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:34.99968338;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(0.974466,0,0,0.974466,-15.37667,-10.08382)"
+         d="M 241.70075,414.19989 C 241.70789,460.38118 204.27256,497.8223 158.09128,497.8223 C 111.90999,497.8223 74.474661,460.38118 74.481804,414.19989 C 74.474661,368.0186 111.90999,330.57748 158.09128,330.57748 C 204.27256,330.57748 241.70789,368.0186 241.70075,414.19989 L 241.70075,414.19989 z " />
+      <path
+         id="path8297"
+         style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:34.99968338;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(0.974466,0,0,0.974466,388.6178,-9.97323)"
+         d="M 241.70075,414.19989 C 241.70789,460.38118 204.27256,497.8223 158.09128,497.8223 C 111.90999,497.8223 74.474661,460.38118 74.481804,414.19989 C 74.474661,368.0186 111.90999,330.57748 158.09128,330.57748 C 204.27256,330.57748 241.70789,368.0186 241.70075,414.19989 L 241.70075,414.19989 z " />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1024-10.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1024-10.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1024-10.svg	(revision 21967)
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1024-10.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="28.98207"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5543"
+     transform="translate(96.0091,-383.8141)">
+    <path
+       id="text1982"
+       d="M 88.623683,681.17807 L 88.623683,638.17408 L 83.480837,638.17408 L 83.480837,630.33736 L 88.623683,630.33736 L 88.623683,623.62717 C 88.623675,618.89255 89.929793,615.40684 92.542042,613.17005 C 95.154267,610.93339 98.452216,609.81502 102.4359,609.81495 L 109.04813,609.81495 L 109.04813,619.41493 L 103.26855,619.41493 C 100.29711,619.41499 98.811399,620.81907 98.811417,623.62717 L 98.811417,630.33736 L 109.04813,630.33736 L 109.04813,638.17408 L 98.811417,638.17408 L 98.811417,681.17807 L 88.623683,681.17807 z M 114.82771,681.17807 L 114.82771,630.33736 L 125.06442,630.33736 L 125.06442,635.77408 L 125.26034,635.77408 C 128.42766,631.75781 132.83581,629.74965 138.4848,629.7496 C 142.20721,629.74965 145.75006,631.05577 149.11335,633.66796 L 141.71745,642.48427 C 139.49702,640.81901 137.24396,639.98636 134.95828,639.98632 C 132.44398,639.98636 130.16643,640.82717 128.12564,642.50876 C 126.08481,644.19043 125.06441,646.89246 125.06442,650.61487 L 125.06442,681.17807 L 114.82771,681.17807 z M 193.1949,659.62709 L 161.55415,659.62709 C 161.55413,663.80669 162.68882,666.94138 164.95822,669.03116 C 167.22759,671.12096 170.12554,672.16585 173.65208,672.16584 C 177.86429,672.16585 181.58673,670.5332 184.81941,667.26789 L 192.21531,673.58625 C 189.70099,676.52502 186.86834,678.62297 183.71737,679.88011 C 180.56632,681.13725 177.27654,681.76582 173.848,681.76582 C 168.6235,681.76582 163.56229,680.07603 158.66436,676.69645 C 153.7664,673.31687 151.31743,666.4026 151.31744,655.95363 C 151.31743,646.05981 153.57865,639.21901 158.10109,635.43122 C 162.62352,631.64353 167.35003,629.74965 172.28066,629.7496 C 177.86429,629.74965 182.74591,631.68434 186.92553,635.55367 C 191.10506,639.42309 193.19485,644.63941 193.1949,651.20262 L 193.1949,659.62709 z M 161.55415,651.20262 L 183.00717,651.20262 C 182.84387,647.38225 181.76632,644.45981 179.77452,642.43529 C 177.78266,640.41085 175.2847,639.3986 172.28066,639.39856 C 169.24391,639.3986 166.72147,640.41085 164.71333,642.43529 C 162.70515,644.45981 161.65209,647.38225 161.55415,651.20262 L 161.55415,651.20262 z M 204.26426,681.17807 L 204.26426,630.33736 L 214.50098,630.33736 L 214.50098,681.17807 L 204.26426,681.17807 z M 204.26426,620.05166 L 204.26426,609.81495 L 214.50098,609.81495 L 214.50098,620.05166 L 204.26426,620.05166 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="layer1"
+       transform="matrix(0.524571,0,0,0.524571,-31.97182,443.4982)">
+      <path
+         id="path25345"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(1.079545,0,0,1.079545,-521.3741,-27.12071)"
+         d="M 640.23853,222.03787 C 640.23853,249.14264 618.26578,271.11539 591.16101,271.11539 C 564.05624,271.11539 542.08349,249.14264 542.08349,222.03787 C 542.08349,194.9331 564.05624,172.96035 591.16101,172.96035 C 618.26578,172.96035 640.23853,194.9331 640.23853,222.03787 L 640.23853,222.03787 z " />
+      <path
+         id="path24454"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 285.83418,10.247082 C 288.65554,6.9807461 291.87058,4.1737036 297.80466,4.5388804 L 554.11195,4.5388804 L 681.49562,105.68157 C 682.90126,108.65248 683.61253,110.92902 683.96915,112.85091 L 684.45326,202.47755 C 682.08558,207.61498 679.30008,212.00034 674.33227,212.45753 L 644.76683,212.45753 C 644.76683,124.83077 515.22193,124.6518 515.22193,212.45753 L 182.38817,212.45753 C 182.38817,125.17065 51.857393,124.83574 51.857393,212.45753 L 15.791737,212.45753 C 12.71653,211.01909 9.9497784,212.35674 5.8866518,202.02701 L 5.492299,137.57457 C 7.5896054,131.71045 10.205427,129.47594 12.815364,127.20023 L 200.16379,96.077198 L 285.83418,10.247082 z " />
+      <path
+         id="path25343"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(1.079545,0,0,1.079545,-58.73586,-27.14299)"
+         d="M 640.23853,222.03787 C 640.23853,249.14264 618.26578,271.11539 591.16101,271.11539 C 564.05624,271.11539 542.08349,249.14264 542.08349,222.03787 C 542.08349,194.9331 564.05624,172.96035 591.16101,172.96035 C 618.26578,172.96035 640.23853,194.9331 640.23853,222.03787 L 640.23853,222.03787 z " />
+      <path
+         id="path25349"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 226.41173,97.07302 L 290.25519,34.075171 C 291.69464,32.851906 292.82676,31.167654 295.32884,31.538345 L 408.85181,31.538345 L 408.85181,108.70014 L 231.27398,108.70014 C 224.51388,106.03369 223.59914,101.99187 226.41173,97.07302 z " />
+      <path
+         id="path26236"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 585.23723,89.186408 L 530.52565,34.0864 C 529.0862,32.863135 527.95408,31.178883 525.452,31.549574 L 429.94598,31.549574 L 429.94598,108.71136 L 592.71536,108.71136 C 600.41757,107.17544 590.2821,96.783985 585.23723,89.186408 z " />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1024-11.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1024-11.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1024-11.svg	(revision 21967)
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1024-11.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="58.945703"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5496"
+     transform="translate(190.2899,-339.4851)">
+    <path
+       id="text5469"
+       d="M -5.6572235,628.65005 L -5.6572235,585.64606 L -10.80007,585.64606 L -10.80007,577.80934 L -5.6572235,577.80934 L -5.6572235,571.09915 C -5.6572318,566.36453 -4.3511134,562.87883 -1.7388642,560.64203 C 0.87336042,558.40537 4.1713095,557.28701 8.1549929,557.28694 L 14.767224,557.28694 L 14.767224,566.88692 L 8.9876443,566.88692 C 6.0162018,566.88698 4.5304921,568.29105 4.5305106,571.09915 L 4.5305106,577.80934 L 14.767224,577.80934 L 14.767224,585.64606 L 4.5305106,585.64606 L 4.5305106,628.65005 L -5.6572235,628.65005 z M 20.546804,628.65005 L 20.546804,577.80934 L 30.783518,577.80934 L 30.783518,583.24607 L 30.979436,583.24607 C 34.146756,579.2298 38.554905,577.22164 44.203898,577.22159 C 47.926305,577.22164 51.469152,578.52776 54.832448,581.13995 L 47.436544,589.95626 C 45.21611,588.29099 42.963055,587.45834 40.677375,587.4583 C 38.16307,587.45834 35.885526,588.29916 33.844736,589.98075 C 31.803906,591.66241 30.783501,594.36444 30.783518,598.08685 L 30.783518,628.65005 L 20.546804,628.65005 z M 98.913993,607.09908 L 67.273242,607.09908 C 67.273228,611.27868 68.407918,614.41336 70.677317,616.50314 C 72.94668,618.59294 75.84463,619.63784 79.371176,619.63783 C 83.583382,619.63784 87.305819,618.00519 90.5385,614.73988 L 97.934403,621.05823 C 95.42008,623.99701 92.587436,626.09496 89.436462,627.3521 C 86.285414,628.60924 82.995628,629.23781 79.567094,629.23781 C 74.342594,629.23781 69.281385,627.54802 64.383452,624.16843 C 59.485496,620.78885 57.036524,613.87459 57.036528,603.42562 C 57.036524,593.53179 59.297742,586.691 63.820188,582.90321 C 68.342612,579.11551 73.069128,577.22164 77.999751,577.22159 C 83.583382,577.22164 88.464999,579.15633 92.644618,583.02566 C 96.824158,586.89508 98.913947,592.11139 98.913993,598.67461 L 98.913993,607.09908 z M 67.273242,598.67461 L 88.726259,598.67461 C 88.562958,594.85424 87.485411,591.9318 85.493613,589.90728 C 83.501749,587.88283 81.003798,586.87059 77.999751,586.87055 C 74.963,586.87059 72.440559,587.88283 70.432419,589.90728 C 68.424244,591.9318 67.371186,594.85424 67.273242,598.67461 L 67.273242,598.67461 z M 109.98336,628.65005 L 109.98336,577.80934 L 120.22007,577.80934 L 120.22007,628.65005 L 109.98336,628.65005 z M 109.98336,567.52365 L 109.98336,557.28694 L 120.22007,557.28694 L 120.22007,567.52365 L 109.98336,567.52365 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="g1893"
+       transform="matrix(0.416646,0,0,0.416646,-150.0806,408.9311)">
+      <path
+         id="path1895"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         d="M 160.58312,199.08511 C 160.58312,226.81161 138.10636,249.28837 110.37986,249.28837 C 82.653362,249.28837 60.176601,226.81161 60.176601,199.08511 C 60.176601,171.35862 82.653362,148.88185 110.37986,148.88185 C 138.10636,148.88185 160.58312,171.35862 160.58312,199.08511 L 160.58312,199.08511 z " />
+      <path
+         id="path1897"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 270.54027,7.362515 C 273.21369,4.2674527 276.26014,1.6076003 281.88306,1.9536287 L 524.75063,1.9536287 L 645.45481,97.7928 C 646.78674,100.60793 647.46071,102.76509 647.79863,104.58621 L 648.25736,189.51319 C 646.01383,194.38123 643.37439,198.53664 638.66707,198.96986 L 610.65193,198.96986 C 610.65193,115.93789 487.89984,115.76831 487.89984,198.96986 L 172.51855,198.96986 C 172.51855,116.25995 48.832289,115.9426 48.832289,198.96986 L 14.657772,198.96986 C 11.743816,197.60684 9.1221418,198.87435 5.2720693,189.08627 L 4.8983948,128.01346 C 6.8857269,122.45683 9.3643852,120.33949 11.837468,118.18311 L 189.36209,88.692043 L 270.54027,7.362515 z " />
+      <path
+         id="path1899"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         d="M 598.96242,199.064 C 598.96242,226.7905 576.48566,249.26726 548.75916,249.26726 C 521.03266,249.26726 498.5559,226.7905 498.5559,199.064 C 498.5559,171.33751 521.03266,148.86074 548.75916,148.86074 C 576.48566,148.86074 598.96242,171.33751 598.96242,199.064 L 598.96242,199.064 z " />
+      <path
+         id="path1901"
+         style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 554.24382,82.162579 L 502.4011,29.951795 C 501.03713,28.792673 499.96437,27.196736 497.59349,27.54799 L 407.09542,27.54799 L 407.09542,100.66372 L 561.32983,100.66372 C 568.62816,99.208338 559.02416,89.361769 554.24382,82.162579 z " />
+      <path
+         id="path28093"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 787.13419,173.56057 L 707.90245,173.56057 L 707.90245,186.47499 L 658.86255,186.47499 L 658.86255,199.56394 L 782.94573,199.56394 C 783.89147,190.82108 783.62571,181.87631 787.13419,173.56057 z " />
+      <path
+         id="path1904"
+         style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 214.23369,89.635648 L 274.72946,29.941154 C 276.09343,28.782032 277.16619,27.186096 279.53707,27.537349 L 387.10735,27.537349 L 387.10735,100.65309 L 218.84099,100.65309 C 212.43536,98.126456 211.56859,94.296573 214.23369,89.635648 z " />
+      <path
+         id="path26315"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         d="M 893.91893,199.09866 C 893.91893,226.82516 871.44217,249.30192 843.71567,249.30192 C 815.98917,249.30192 793.51241,226.82516 793.51241,199.09866 C 793.51241,171.37217 815.98917,148.8954 843.71567,148.8954 C 871.44217,148.8954 893.91893,171.37217 893.91893,199.09866 L 893.91893,199.09866 z " />
+      <path
+         id="path26317"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 708.07697,162.39134 L 708.07697,48.604793 C 710.54619,30.868706 719.63699,29.163014 727.97217,26.615369 L 960.08276,26.615369 C 966.40555,28.250356 974.14601,29.599665 978.05824,47.208639 L 978.05824,162.39134 L 892.19479,162.39134 C 874.56835,126.20501 813.66112,126.0422 794.98756,162.39134 L 708.07697,162.39134 z " />
+      <path
+         id="path27206"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 978.1455,173.56057 L 965.66738,199.56394 L 904.2366,199.56394 C 902.40617,190.85015 902.52331,181.85814 897.77939,173.56057 L 978.1455,173.56057 z " />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1024-12.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1024-12.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1024-12.svg	(revision 21967)
@@ -0,0 +1,103 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1024-12.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="193.63271"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5441"
+     transform="translate(62.33732,-441.1226)">
+    <path
+       id="text1982"
+       d="M 122.29545,745.82785 L 122.29545,702.82386 L 117.1526,702.82386 L 117.1526,694.98714 L 122.29545,694.98714 L 122.29545,688.27695 C 122.29544,683.54233 123.60156,680.05662 126.21381,677.81983 C 128.82604,675.58317 132.12398,674.4648 136.10767,674.46473 L 142.7199,674.46473 L 142.7199,684.06471 L 136.94032,684.06471 C 133.96888,684.06477 132.48317,685.46885 132.48319,688.27695 L 132.48319,694.98714 L 142.7199,694.98714 L 142.7199,702.82386 L 132.48319,702.82386 L 132.48319,745.82785 L 122.29545,745.82785 z M 148.49948,745.82785 L 148.49948,694.98714 L 158.73619,694.98714 L 158.73619,700.42386 L 158.93211,700.42386 C 162.09943,696.40759 166.50758,694.39943 172.15657,694.39938 C 175.87898,694.39943 179.42183,695.70555 182.78512,698.31774 L 175.38922,707.13405 C 173.16878,705.46879 170.91573,704.63614 168.63005,704.6361 C 166.11574,704.63614 163.8382,705.47695 161.79741,707.15854 C 159.75658,708.84021 158.73618,711.54224 158.73619,715.26465 L 158.73619,745.82785 L 148.49948,745.82785 z M 226.86667,724.27687 L 195.22592,724.27687 C 195.2259,728.45647 196.36059,731.59116 198.62999,733.68094 C 200.89935,735.77074 203.7973,736.81563 207.32385,736.81562 C 211.53606,736.81563 215.25849,735.18298 218.49118,731.91767 L 225.88708,738.23603 C 223.37276,741.1748 220.54011,743.27275 217.38914,744.52989 C 214.23809,745.78703 210.9483,746.4156 207.51977,746.4156 C 202.29527,746.4156 197.23406,744.72581 192.33613,741.34623 C 187.43817,737.96665 184.9892,731.05238 184.9892,720.60341 C 184.9892,710.70959 187.25042,703.86879 191.77286,700.081 C 196.29529,696.29331 201.0218,694.39943 205.95243,694.39938 C 211.53606,694.39943 216.41767,696.33412 220.59729,700.20345 C 224.77683,704.07287 226.86662,709.28919 226.86667,715.8524 L 226.86667,724.27687 z M 195.22592,715.8524 L 216.67893,715.8524 C 216.51563,712.03203 215.43809,709.10959 213.44629,707.08507 C 211.45442,705.06063 208.95647,704.04839 205.95243,704.04834 C 202.91567,704.04839 200.39323,705.06063 198.38509,707.08507 C 196.37692,709.10959 195.32386,712.03203 195.22592,715.8524 L 195.22592,715.8524 z M 237.93603,745.82785 L 237.93603,694.98714 L 248.17275,694.98714 L 248.17275,745.82785 L 237.93603,745.82785 z M 237.93603,684.70144 L 237.93603,674.46473 L 248.17275,674.46473 L 248.17275,684.70144 L 237.93603,684.70144 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="g2148"
+       transform="matrix(0.337061,0,0,0.337061,13.98148,491.7313)">
+      <path
+         id="path2135"
+         style="fill:black;fill-rule:evenodd;stroke:none"
+         d="M 295.78419,86.816926 L 295.78419,335.08252 L 687.71625,335.4031 C 664.71649,354.19396 650.35734,380.09418 650.54503,414.08813 L 261.47933,413.85667 C 257.75238,281.97351 70.642616,282.42223 66.576854,413.09434 C 38.473995,412.88466 34.575813,406.50199 34.30487,380.61469 L 34.304868,281.61469 C 33.952015,237.37253 28.42681,266.57731 61.177014,182.67997 C 94.875059,93.246445 85.585107,101.51291 116.0648,99.204795 L 295.78419,86.816926 z M 217.93865,233.19966 L 219.48981,127.72046 L 119.43969,133.92512 C 101.20003,135.14704 101.04823,135.26154 94.62105,156.41701 L 69.026832,224.66825 C 60.428592,245.6025 61.79713,251.77115 85.314062,248.71131 L 217.93865,233.19966 z M 966.63494,335.59074 L 966.82552,391.36792 L 902.21802,414.23783 L 845.4914,414.20156 C 845.7223,381.85903 832.28136,354.65711 808.44981,335.54893 L 966.63494,335.59074 z " />
+      <rect
+         id="rect2137"
+         style="fill:black;stroke:none"
+         y="12.158683"
+         x="335.82718"
+         height="301.70154"
+         width="631.32404" />
+      <circle
+         id="circle2139"
+         style="fill:black;stroke:none"
+         r="77"
+         cy="412"
+         cx="164"
+         sodipodi:cx="164"
+         sodipodi:cy="412"
+         sodipodi:rx="77"
+         sodipodi:ry="77" />
+      <circle
+         id="circle2141"
+         style="fill:black;stroke:none"
+         r="77"
+         cy="412"
+         cx="748"
+         sodipodi:cx="748"
+         sodipodi:cy="412"
+         sodipodi:rx="77"
+         sodipodi:ry="77" />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1024-13.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1024-13.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1024-13.svg	(revision 21967)
@@ -0,0 +1,124 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1024-13.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="-75.741303"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5394"
+     transform="translate(230.6961,-498.63)">
+    <path
+       id="text5360"
+       d="M -46.063323,790.27457 L -46.063323,747.27057 L -51.206169,747.27057 L -51.206169,739.43385 L -46.063323,739.43385 L -46.063323,732.72366 C -46.063331,727.98904 -44.757213,724.50334 -42.144964,722.26654 C -39.532739,720.02988 -36.23479,718.91152 -32.251106,718.91145 L -25.638875,718.91145 L -25.638875,728.51143 L -31.418455,728.51143 C -34.389897,728.51149 -35.875607,729.91557 -35.875589,732.72366 L -35.875589,739.43385 L -25.638875,739.43385 L -25.638875,747.27057 L -35.875589,747.27057 L -35.875589,790.27457 L -46.063323,790.27457 z M -19.859295,790.27457 L -19.859295,739.43385 L -9.6225818,739.43385 L -9.6225818,744.87058 L -9.4266638,744.87058 C -6.2593437,740.85431 -1.8511939,738.84615 3.7977988,738.8461 C 7.520206,738.84615 11.063052,740.15227 14.426348,742.76446 L 7.0304452,751.58077 C 4.8100102,749.91551 2.5569559,749.08285 0.2712754,749.08281 C -2.2430295,749.08285 -4.5205735,749.92367 -6.5613636,751.60526 C -8.6021937,753.28692 -9.6225987,755.98896 -9.6225818,759.71136 L -9.6225818,790.27457 L -19.859295,790.27457 z M 58.507894,768.72359 L 26.867143,768.72359 C 26.867128,772.90319 28.001819,776.03787 30.271217,778.12765 C 32.54058,780.21745 35.438531,781.26235 38.965077,781.26234 C 43.177282,781.26235 46.89972,779.6297 50.132401,776.36439 L 57.528304,782.68274 C 55.013981,785.62152 52.181337,787.71947 49.030362,788.97661 C 45.879315,790.23375 42.589529,790.86232 39.160995,790.86232 C 33.936494,790.86232 28.875285,789.17253 23.977353,785.79294 C 19.079397,782.41336 16.630425,775.4991 16.630429,765.05013 C 16.630425,755.15631 18.891642,748.31551 23.414089,744.52772 C 27.936513,740.74002 32.663029,738.84615 37.593651,738.8461 C 43.177282,738.84615 48.0589,740.78084 52.238519,744.65017 C 56.418058,748.51959 58.507848,753.7359 58.507894,760.29912 L 58.507894,768.72359 z M 26.867143,760.29912 L 48.32016,760.29912 C 48.156859,756.47875 47.079311,753.55631 45.087513,751.53179 C 43.09565,749.50734 40.597699,748.4951 37.593651,748.49506 C 34.556901,748.4951 32.034459,749.50734 30.02632,751.53179 C 28.018145,753.55631 26.965087,756.47875 26.867143,760.29912 L 26.867143,760.29912 z M 69.577259,790.27457 L 69.577259,739.43385 L 79.813972,739.43385 L 79.813972,790.27457 L 69.577259,790.27457 z M 69.577259,729.14816 L 69.577259,718.91145 L 79.813972,718.91145 L 79.813972,729.14816 L 69.577259,729.14816 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="g5363"
+       transform="matrix(0.412424,0,0,0.412424,-185.7745,564.3572)">
+      <path
+         id="path11867"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 948.58272,181.11452 L 948.58272,212.00923 L 904.55776,212.00923 C 901.60557,200.82583 896.46811,190.20899 885.45863,181.11452 L 948.58272,181.11452 z " />
+      <path
+         id="path10081"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 187.42838,5.0734714 L 532.683,5.0734714 L 532.683,169.79304 L 187.42838,169.79304 L 187.42838,5.0734714 z " />
+      <path
+         id="path10968"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 579.57758,4.9475632 L 948.64201,4.9475632 L 948.64201,169.66713 L 579.57758,169.66713 L 579.57758,4.9475632 z " />
+      <path
+         id="path10970"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:34.10599899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(1.090164,0,0,1.090164,-86.75925,-32.25117)"
+         d="M 900.1042,233.89624 C 900.1042,254.86716 883.10391,271.86745 862.13299,271.86745 C 841.16208,271.86745 824.16179,254.86716 824.16179,233.89624 C 824.16179,212.92532 841.16208,195.92504 862.13299,195.92504 C 883.10391,195.92504 900.1042,212.92532 900.1042,233.89624 z " />
+      <path
+         id="path10972"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:34.10599899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(1.090164,0,0,1.090164,-288.7536,-32.29364)"
+         d="M 900.1042,233.89624 C 900.1042,254.86716 883.10391,271.86745 862.13299,271.86745 C 841.16208,271.86745 824.16179,254.86716 824.16179,233.89624 C 824.16179,212.92532 841.16208,195.92504 862.13299,195.92504 C 883.10391,195.92504 900.1042,212.92532 900.1042,233.89624 z " />
+      <path
+         id="path10974"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:34.10599899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(1.090164,0,0,1.090164,-525.918,-32.41613)"
+         d="M 900.1042,233.89624 C 900.1042,254.86716 883.10391,271.86745 862.13299,271.86745 C 841.16208,271.86745 824.16179,254.86716 824.16179,233.89624 C 824.16179,212.92532 841.16208,195.92504 862.13299,195.92504 C 883.10391,195.92504 900.1042,212.92532 900.1042,233.89624 z " />
+      <path
+         id="path10976"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:34.10599899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(1.090164,0,0,1.090164,-846.4946,-32.29364)"
+         d="M 900.1042,233.89624 C 900.1042,254.86716 883.10391,271.86745 862.13299,271.86745 C 841.16208,271.86745 824.16179,254.86716 824.16179,233.89624 C 824.16179,212.92532 841.16208,195.92504 862.13299,195.92504 C 883.10391,195.92504 900.1042,212.92532 900.1042,233.89624 z " />
+      <path
+         id="path10980"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 555.58979,180.92026 L 555.58979,211.81497 L 599.61475,211.81497 C 602.56694,200.63157 607.7044,190.01473 618.71388,180.92026 L 555.58979,180.92026 z " />
+      <path
+         id="path11871"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 684.37536,181.11451 C 695.46489,190.5657 698.81792,200.8602 702.48185,212.00922 L 801.50106,212.00922 C 804.45325,200.82582 809.59071,190.20898 820.60019,181.11451 L 684.37536,181.11451 z " />
+      <path
+         id="path11875"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 532.6833,180.77713 L 532.84234,212.30802 L 498.57982,222.89377 L 466.55091,222.96412 C 468.00842,210.31082 458.55157,189.47039 445.86132,180.93618 L 532.6833,180.77713 z " />
+      <path
+         id="path11879"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 164.38292,46.440644 L 60.571013,51.8735 C 56.231301,53.218337 52.575838,55.171397 50.919898,58.901809 L 22.700623,132.93384 L 21.613992,140.70413 L 21.621535,212.97526 C 22.503535,219.59402 26.862349,221.74259 31.897406,223.02171 L 40.397747,223.02171 C 40.397747,154.18672 147.11778,154.36604 147.11778,223.02171 L 361.41037,223.02171 C 359.95286,210.36841 369.40971,189.52798 382.09996,180.99377 L 164.61964,180.96791 L 164.38292,46.440644 z " />
+      <path
+         id="path11883"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 122.58432,126.2727 L 122.58432,67.11733 L 62.754174,71.165986 C 60.574695,71.531761 59.010637,72.974522 58.030742,75.439568 L 38.912086,126.2727 C 38.590374,128.0721 37.82559,129.87151 38.912086,131.67091 C 39.608067,133.31708 40.918089,134.14453 42.510892,134.59494 L 122.58432,126.2727 z " />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1024-14.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1024-14.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1024-14.svg	(revision 21967)
@@ -0,0 +1,110 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1024-14.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="-86.706583"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5324"
+     transform="translate(201.0649,-476.0947)">
+    <path
+       id="text1982"
+       d="M -16.432122,774.11215 L -16.432122,731.10816 L -21.574969,731.10816 L -21.574969,723.27144 L -16.432122,723.27144 L -16.432122,716.56125 C -16.43213,711.82663 -15.126012,708.34092 -12.513763,706.10413 C -9.9015381,703.86747 -6.603589,702.7491 -2.6199056,702.74903 L 3.9923257,702.74903 L 3.9923257,712.34901 L -1.7872542,712.34901 C -4.7586967,712.34907 -6.2444064,713.75315 -6.2443879,716.56125 L -6.2443879,723.27144 L 3.9923257,723.27144 L 3.9923257,731.10816 L -6.2443879,731.10816 L -6.2443879,774.11215 L -16.432122,774.11215 z M 9.7719054,774.11215 L 9.7719054,723.27144 L 20.008619,723.27144 L 20.008619,728.70816 L 20.204537,728.70816 C 23.371857,724.69189 27.780007,722.68374 33.429,722.68369 C 37.151407,722.68374 40.694253,723.98986 44.057549,726.60204 L 36.661646,735.41835 C 34.441211,733.75309 32.188157,732.92044 29.902476,732.9204 C 27.388171,732.92044 25.110627,733.76125 23.069837,735.44284 C 21.029007,737.12451 20.008602,739.82654 20.008619,743.54895 L 20.008619,774.11215 L 9.7719054,774.11215 z M 88.139095,752.56117 L 56.498343,752.56117 C 56.498329,756.74078 57.633019,759.87546 59.902418,761.96524 C 62.171781,764.05504 65.069731,765.09993 68.596278,765.09992 C 72.808483,765.09993 76.530921,763.46729 79.763602,760.20198 L 87.159505,766.52033 C 84.645182,769.4591 81.812537,771.55706 78.661563,772.81419 C 75.510516,774.07133 72.22073,774.6999 68.792196,774.6999 C 63.567695,774.6999 58.506486,773.01011 53.608554,769.63053 C 48.710598,766.25095 46.261626,759.33669 46.26163,748.88771 C 46.261626,738.99389 48.522843,732.1531 53.045289,728.36531 C 57.567714,724.57761 62.29423,722.68374 67.224852,722.68369 C 72.808483,722.68374 77.690101,724.61842 81.86972,728.48776 C 86.049259,732.35718 88.139049,737.57349 88.139095,744.1367 L 88.139095,752.56117 z M 56.498343,744.1367 L 77.951361,744.1367 C 77.78806,740.31634 76.710512,737.3939 74.718714,735.36937 C 72.726851,733.34493 70.228899,732.33269 67.224852,732.33265 C 64.188101,732.33269 61.66566,733.34493 59.657521,735.36937 C 57.649346,737.3939 56.596288,740.31634 56.498343,744.1367 L 56.498343,744.1367 z M 99.20846,774.11215 L 99.20846,723.27144 L 109.44517,723.27144 L 109.44517,774.11215 L 99.20846,774.11215 z M 99.20846,712.98575 L 99.20846,702.74903 L 109.44517,702.74903 L 109.44517,712.98575 L 99.20846,712.98575 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="layer1"
+       transform="matrix(0.549144,0,0,0.549144,-142.6758,536.1839)">
+      <path
+         id="path1966"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 31.761217,26.619391 L 31.306216,5.7140301 C 31.754181,4.3093648 31.994305,2.6968585 33.909231,2.7591539 L 628.71325,2.3775139 C 655.69631,7.7477606 661.04445,77.952922 675,117.14286 L 675,202.14286 C 668.20192,218.11846 660.86056,219.42544 653.57143,222.14286 L 565,221.42857 C 565,144.20059 447.85714,144.63084 447.85714,221.42857 L 210,221.42857 C 210,144.48294 95.714286,144.46188 95.714286,221.42857 L 13.571429,221.42857 C 9.6780696,220.28672 7.0245746,216.66514 4.6428571,212.5 L 5.5969572,136.28675 L 40.376483,35.905105 C 41.587822,29.237159 34.6359,29.712067 31.761217,26.619391 z " />
+      <path
+         id="path2856"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:8, 2;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(1.08125,0,0,1.08125,-58.95434,-28.22524)"
+         d="M 566.16677,231.14012 C 566.17704,254.99373 546.84274,274.33634 522.98914,274.33634 C 499.13553,274.33634 479.80123,254.99373 479.8115,231.14012 C 479.80123,207.28651 499.13553,187.9439 522.98914,187.9439 C 546.84274,187.9439 566.17704,207.28651 566.16677,231.14012 L 566.16677,231.14012 z " />
+      <path
+         id="path3745"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:8, 2;stroke-dashoffset:0;stroke-opacity:1"
+         transform="matrix(1.08125,0,0,1.08125,-412.2014,-27.95538)"
+         d="M 566.16677,231.14012 C 566.17704,254.99373 546.84274,274.33634 522.98914,274.33634 C 499.13553,274.33634 479.80123,254.99373 479.8115,231.14012 C 479.80123,207.28651 499.13553,187.9439 522.98914,187.9439 C 546.84274,187.9439 566.17704,207.28651 566.16677,231.14012 L 566.16677,231.14012 z " />
+      <path
+         id="path3747"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 531.61675,40.718007 L 552.142,110.69117 C 553.35031,113.54485 554.53622,116.41596 557.8805,117.60833 L 629.04027,117.43371 C 631.87882,114.96101 634.80496,112.64856 635.25102,107.54413 L 615.09087,37.58684 C 613.44354,32.067784 611.173,30.495693 608.80472,29.542611 L 536.28374,29.633887 C 532.7483,31.744775 531.50679,35.690805 531.61675,40.718007 z " />
+      <path
+         id="path4634"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 429.39705,40.58628 L 449.9223,110.55944 C 451.13061,113.41312 452.31652,116.28423 455.6608,117.4766 L 526.82057,117.30198 C 529.65912,114.82928 532.58526,112.51683 533.03132,107.4124 L 512.87117,37.455113 C 511.22384,31.936057 508.9533,30.363966 506.58502,29.410884 L 434.06404,29.50216 C 430.5286,31.613048 429.28709,35.559078 429.39705,40.58628 z " />
+      <path
+         id="path4636"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 327.98862,40.586273 L 348.51387,110.55944 C 349.72218,113.41312 350.90809,116.28423 354.25237,117.4766 L 425.41214,117.30198 C 428.25069,114.82928 431.17683,112.51683 431.62289,107.4124 L 411.46274,37.455106 C 409.81541,31.93605 407.54487,30.363959 405.17659,29.410877 L 332.65561,29.502153 C 329.12017,31.613041 327.87866,35.559071 327.98862,40.586273 z " />
+      <path
+         id="path4638"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 227.1726,40.586276 L 247.69785,110.55944 C 248.90616,113.41312 250.09207,116.28423 253.43635,117.4766 L 324.59612,117.30198 C 327.43467,114.82928 330.36081,112.51683 330.80687,107.4124 L 310.64672,37.455109 C 308.99939,31.936053 306.72885,30.363962 304.36057,29.41088 L 231.83959,29.502156 C 228.30415,31.613044 227.06264,35.559074 227.1726,40.586276 z " />
+      <path
+         id="path4640"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 142.51433,35.694816 L 142.50232,110.96203 C 143.71063,113.81571 145.80931,116.50427 149.15359,117.69664 L 223.05166,117.43074 C 225.89021,114.95804 228.81635,112.64559 229.26241,107.54116 L 209.10226,37.583869 C 207.45493,32.064813 205.18439,30.492722 202.81611,29.53964 L 148.00281,29.448363 C 144.46737,31.559251 143.68225,31.580382 142.51433,35.694816 z " />
+      <path
+         id="path4642"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 124.8189,37.998446 L 124.68904,110.81147 C 123.48073,113.66515 122.29482,116.53626 118.95054,117.72863 L 35.269552,117.29584 C 32.431002,114.82314 29.504862,112.51069 29.058802,107.40626 L 54.124173,37.707145 C 55.771503,32.188089 58.04204,30.615998 60.41032,29.662916 L 120.15191,29.883276 C 123.68735,31.994164 124.92886,32.971244 124.8189,37.998446 z " />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1024-15.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1024-15.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1024-15.svg	(revision 21967)
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1024-15.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="-66.213809"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5262"
+     transform="translate(-41.37167,-408.4354)">
+    <path
+       id="text5229"
+       d="M 226.00445,730.27798 L 226.00445,687.27399 L 220.8616,687.27399 L 220.8616,679.43727 L 226.00445,679.43727 L 226.00445,672.72708 C 226.00444,667.99246 227.31056,664.50676 229.92281,662.26996 C 232.53503,660.0333 235.83298,658.91494 239.81667,658.91487 L 246.4289,658.91487 L 246.4289,668.51485 L 240.64932,668.51485 C 237.67788,668.51491 236.19217,669.91898 236.19219,672.72708 L 236.19219,679.43727 L 246.4289,679.43727 L 246.4289,687.27399 L 236.19219,687.27399 L 236.19219,730.27798 L 226.00445,730.27798 z M 252.20848,730.27798 L 252.20848,679.43727 L 262.44519,679.43727 L 262.44519,684.874 L 262.64111,684.874 C 265.80843,680.85773 270.21658,678.84957 275.86557,678.84952 C 279.58798,678.84957 283.13083,680.15569 286.49412,682.76788 L 279.09822,691.58419 C 276.87778,689.91892 274.62473,689.08627 272.33905,689.08623 C 269.82474,689.08627 267.5472,689.92709 265.50641,691.60868 C 263.46558,693.29034 262.44518,695.99237 262.44519,699.71478 L 262.44519,730.27798 L 252.20848,730.27798 z M 330.57567,708.72701 L 298.93492,708.72701 C 298.9349,712.90661 300.06959,716.04129 302.33899,718.13107 C 304.60835,720.22087 307.5063,721.26577 311.03285,721.26576 C 315.24506,721.26577 318.96749,719.63312 322.20017,716.36781 L 329.59608,722.68616 C 327.08175,725.62494 324.24911,727.72289 321.09814,728.98003 C 317.94709,730.23717 314.6573,730.86574 311.22877,730.86574 C 306.00427,730.86574 300.94306,729.17595 296.04513,725.79636 C 291.14717,722.41678 288.6982,715.50252 288.6982,705.05355 C 288.6982,695.15972 290.95942,688.31893 295.48186,684.53114 C 300.00429,680.74344 304.7308,678.84957 309.66143,678.84952 C 315.24506,678.84957 320.12667,680.78426 324.30629,684.65359 C 328.48583,688.52301 330.57562,693.73932 330.57567,700.30253 L 330.57567,708.72701 z M 298.93492,700.30253 L 320.38793,700.30253 C 320.22463,696.48217 319.14709,693.55973 317.15529,691.53521 C 315.16342,689.51076 312.66547,688.49852 309.66143,688.49848 C 306.62467,688.49852 304.10223,689.51076 302.09409,691.53521 C 300.08592,693.55973 299.03286,696.48217 298.93492,700.30253 L 298.93492,700.30253 z M 341.64503,730.27798 L 341.64503,679.43727 L 351.88175,679.43727 L 351.88175,730.27798 L 341.64503,730.27798 z M 341.64503,669.15158 L 341.64503,658.91487 L 351.88175,658.91487 L 351.88175,669.15158 L 341.64503,669.15158 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="g2285"
+       transform="translate(-597.3004,408.9739)">
+      <path
+         id="path2251"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 1009.2409,214.27547 L 778.51034,214.27547 C 767.62857,214.27547 754.64651,197.1834 754.64651,186.04954 C 754.40757,167.2221 755.3126,148.96663 755.91728,130.561 C 758.8462,109.58406 766.90603,90.391773 774.90005,71.176601 C 776.86018,67.160472 779.21612,63.236208 784.00517,63.236208 L 867.61359,63.236208 C 875.20749,66.657776 883.41863,69.267175 886.87666,78.130673 C 910.87184,137.18871 958.2811,165.41624 1012.6455,175.37682 L 1012.688,211.1328 C 1012.688,212.54459 1010.7322,214.27547 1009.2409,214.27547 z " />
+      <path
+         id="path2253"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 793.875,37.03125 C 790.72173,37.03125 790.81823,43.156249 793.875,43.15625 L 807.46875,43.15625 C 818.96113,47.799678 825.74527,54.403373 828.90625,63.28125 L 834.125,63.28125 L 834.125,63.25 L 839.28125,63.25 C 842.44212,54.37242 849.22708,47.799652 860.71875,43.15625 L 874,43.15625 C 877.27802,43.15625 876.78185,37.03125 874,37.03125 L 793.875,37.03125 z M 821.53125,43.15625 L 846.59375,43.15625 C 841.19066,47.706706 835.34374,52.334774 835.34375,59.4375 L 834.125,59.4375 L 832.84375,59.4375 C 832.84372,52.31253 826.94842,47.720599 821.53125,43.15625 z " />
+      <path
+         id="path2260"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 770.43133,114.13629 L 875.52,114.13629 C 878.07188,114.13629 879.0233,108.86338 877.81594,105.56774 C 874.02206,95.426493 869.39273,75.603781 864.13539,75.603781 L 783.34848,75.603781 C 778.97076,75.603781 773.13152,95.745774 768.02304,105.81677 C 767.00828,109.81958 768.01345,114.13629 770.43133,114.13629 z " />
+      <path
+         id="path2265"
+         style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="translate(1.548102,-0.619241)"
+         d="M 787.9841,164.9391 C 787.9841,170.24006 783.68682,174.53733 778.38587,174.53733 C 773.08491,174.53733 768.78763,170.24006 768.78763,164.9391 C 768.78763,159.63814 773.08491,155.34087 778.38587,155.34087 C 783.68682,155.34087 787.9841,159.63814 787.9841,164.9391 z " />
+      <path
+         id="path2267"
+         style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="translate(80.81094,-0.619236)"
+         d="M 787.9841,164.9391 C 787.9841,170.24006 783.68682,174.53733 778.38587,174.53733 C 773.08491,174.53733 768.78763,170.24006 768.78763,164.9391 C 768.78763,159.63814 773.08491,155.34087 778.38587,155.34087 C 783.68682,155.34087 787.9841,159.63814 787.9841,164.9391 z " />
+      <path
+         id="path2271"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 913.61464,136.35817 L 913.61464,171.27826 L 897.63241,163.94395 C 896.11238,149.20714 895.97165,134.19446 895.88093,119.17179 C 901.79166,124.90194 908.13437,132.76415 913.61464,136.35817 z " />
+      <path
+         id="path2273"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 937.80693,155.40549 L 938.04009,182.28151 L 922.75735,175.87984 C 922.40312,161.14303 922.8453,159.53714 922.75458,144.51447 C 929.36479,150.12804 932.0935,151.22857 937.80693,155.40549 z " />
+      <path
+         id="path2275"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 945.69493,160.17743 L 945.69493,184.16603 C 950.07313,186.52004 955.14,187.77217 960.61567,188.37022 L 960.61567,166.27763 L 945.69493,160.17743 z " />
+      <path
+         id="path2277"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 966.7983,169.24529 L 966.7983,190.18379 C 970.62585,191.67422 974.62319,192.14594 978.66895,192.3271 L 978.66895,172.29538 L 966.7983,169.24529 z " />
+      <path
+         id="path2279"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 984.76914,174.35626 L 984.76914,193.15145 C 987.91261,194.03102 991.13362,194.5229 994.49648,194.30554 L 994.49648,176.25227 L 984.76914,174.35626 z " />
+      <path
+         id="path2281"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 999.68988,177.24149 L 999.68988,195.04746 L 1007.5212,196.36642 L 1007.5212,178.31314 L 999.68988,177.24149 z " />
+      <path
+         id="path2283"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 754.65511,229.21337 L 774.58951,229.21337 L 774.58951,219.23069 L 804.62563,219.23069 L 804.62563,229.09314 L 848.63107,229.09314 L 848.63107,219.20093 L 1012.7369,219.20093 L 1012.7369,229.24313 C 966.49324,230.93241 919.38423,232.25082 894.91493,243.27197 L 754.62535,243.27197 L 754.65511,229.21337 z " />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1024-16.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1024-16.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1024-16.svg	(revision 21967)
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1024-16.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="-60.435159"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5184"
+     transform="translate(234.7367,-398.8309)">
+    <path
+       id="text1982"
+       d="M -50.103923,714.84988 L -50.103923,671.84589 L -55.246769,671.84589 L -55.246769,664.00917 L -50.103923,664.00917 L -50.103923,657.29898 C -50.103931,652.56436 -48.797813,649.07866 -46.185563,646.84186 C -43.573339,644.6052 -40.27539,643.48684 -36.291706,643.48676 L -29.679475,643.48676 L -29.679475,653.08674 L -35.459055,653.08674 C -38.430497,653.08681 -39.916207,654.49088 -39.916189,657.29898 L -39.916189,664.00917 L -29.679475,664.00917 L -29.679475,671.84589 L -39.916189,671.84589 L -39.916189,714.84988 L -50.103923,714.84988 z M -23.899895,714.84988 L -23.899895,664.00917 L -13.663182,664.00917 L -13.663182,669.44589 L -13.467264,669.44589 C -10.299944,665.42963 -5.8917938,663.42147 -0.24280107,663.42142 C 3.4796062,663.42147 7.0224525,664.72759 10.385748,667.33978 L 2.9898453,676.15608 C 0.76941036,674.49082 -1.483644,673.65817 -3.7693244,673.65813 C -6.2836293,673.65817 -8.5611733,674.49899 -10.601963,676.18057 C -12.642794,677.86224 -13.663199,680.56427 -13.663182,684.28668 L -13.663182,714.84988 L -23.899895,714.84988 z M 54.467294,693.29891 L 22.826543,693.29891 C 22.826528,697.47851 23.961219,700.61319 26.230618,702.70297 C 28.49998,704.79277 31.397931,705.83767 34.924477,705.83766 C 39.136683,705.83767 42.85912,704.20502 46.091801,700.93971 L 53.487704,707.25806 C 50.973381,710.19684 48.140737,712.29479 44.989763,713.55193 C 41.838715,714.80907 38.548929,715.43764 35.120395,715.43764 C 29.895895,715.43764 24.834686,713.74785 19.936753,710.36826 C 15.038797,706.98868 12.589825,700.07442 12.589829,689.62544 C 12.589825,679.73162 14.851043,672.89083 19.373489,669.10304 C 23.895913,665.31534 28.622429,663.42147 33.553051,663.42142 C 39.136683,663.42147 44.0183,665.35616 48.197919,669.22549 C 52.377458,673.09491 54.467248,678.31122 54.467294,684.87443 L 54.467294,693.29891 z M 22.826543,684.87443 L 44.27956,684.87443 C 44.116259,681.05407 43.038712,678.13163 41.046914,676.10711 C 39.05505,674.08266 36.557099,673.07042 33.553051,673.07038 C 30.516301,673.07042 27.99386,674.08266 25.98572,676.10711 C 23.977545,678.13163 22.924487,681.05407 22.826543,684.87443 L 22.826543,684.87443 z M 65.536659,714.84988 L 65.536659,664.00917 L 75.773373,664.00917 L 75.773373,714.84988 L 65.536659,714.84988 z M 65.536659,653.72348 L 65.536659,643.48676 L 75.773373,643.48676 L 75.773373,653.72348 L 65.536659,653.72348 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="g5141"
+       transform="matrix(0.506506,0,0,0.506506,-177.1995,439.6572)">
+      <path
+         id="path30859"
+         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="M 141.29386,64.772007 L 226.621,8.5678385 L 310.09117,64.726728 L 226.67891,120.91089 L 141.29386,64.772007 z " />
+      <path
+         id="path30855"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 545.76835,224.85743 C 544.55054,231.75847 539.49988,232.6089 535.6799,236.42888 C 543.52397,236.41433 556.28207,236.32762 556.3103,235.60249 L 556.72355,224.98944 L 545.76835,224.85743 z " />
+      <path
+         id="path29926"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 68.158738,321.23081 C 68.455695,367.59067 134.85842,367.59152 134.85842,321.64768" />
+      <path
+         id="path30815"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 205.72683,321.21721 C 206.02379,367.57707 272.42651,367.57792 272.42651,321.63408" />
+      <path
+         id="path30817"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 467.10621,321.21721 C 467.40316,367.57707 533.80589,367.57792 533.80589,321.63408" />
+      <path
+         id="path30819"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 605.09118,321.21721 C 605.38814,367.57707 671.79086,367.57792 671.79086,321.63408" />
+      <path
+         id="path30821"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 142.04948,342.38712 L 197.91046,342.38712 C 195.06734,337.46269 193.77027,332.24227 193.95017,321.54346 L 146.94774,321.54346 C 146.615,332.3914 144.91424,337.4252 142.04948,342.38712 z " />
+      <path
+         id="path30825"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 541.10118,342.49133 L 596.96216,342.49133 C 594.11904,337.5669 592.82197,332.34648 593.00187,321.64767 L 545.99944,321.64767 C 545.6667,332.49561 543.96594,337.52941 541.10118,342.49133 z " />
+      <path
+         id="path30841"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 570.24997,144.88875 C 565.04731,148.56178 560.2466,151.66884 560.2466,154.82898 L 560.30736,283.93097 C 561.52517,290.83201 566.42999,291.97412 570.24997,295.7941 L 546.51516,295.61257 L 546.2191,154.56075 C 546.2191,151.76942 541.27657,148.50142 536.1756,144.89967 L 570.24997,144.88875 z " />
+      <path
+         id="path30827"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 34.77654,124.52695 L 704.03682,124.52695 L 704.03682,145.63848 L 34.954125,145.63848 L 34.77654,124.52695 z " />
+      <path
+         id="path30829"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 405.02462,144.77233 C 410.22728,148.44536 415.02799,151.55242 415.02799,154.71256 L 414.96723,224.96752 C 413.74942,231.86856 408.8446,233.01067 405.02462,236.83065 L 439.09899,236.83065 C 435.27035,233.00201 430.20446,232.09446 429.0714,225.13748 L 429.05549,154.44433 C 429.05549,151.653 433.99802,148.385 439.09899,144.78325 L 405.02462,144.77233 z " />
+      <path
+         id="path30833"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 273.9892,144.66674 C 279.19186,148.33977 283.99257,151.44683 283.99257,154.60697 L 283.93181,224.86193 C 282.714,231.76297 277.80918,232.90508 273.9892,236.72506 L 308.06357,236.72506 C 304.23493,232.89642 299.16904,231.98887 298.03598,225.03189 L 298.02007,154.33874 C 298.02007,151.54741 302.9626,148.27941 308.06357,144.67766 L 273.9892,144.66674 z " />
+      <path
+         id="path30839"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 143.85545,144.88875 C 149.05811,148.56178 153.85882,151.66884 153.85882,154.82898 L 153.79806,283.93097 C 152.58025,290.83201 147.67543,291.97412 143.85545,295.7941 L 167.59026,295.61257 L 167.88632,154.56075 C 167.88632,151.76942 172.82885,148.50142 177.92982,144.89967 L 143.85545,144.88875 z " />
+      <path
+         id="path30845"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 628.05988,144.88875 C 633.26254,148.56178 638.06325,151.66884 638.06325,154.82898 L 638.00249,283.93097 C 636.78468,290.83201 631.87986,291.97412 628.05988,295.7941 L 651.79469,295.61257 L 651.64888,144.96967 L 628.05988,144.88875 z " />
+      <path
+         id="path30849"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 112.14105,144.77017 C 106.93839,148.4432 102.13768,151.55026 102.13768,154.7104 L 102.19844,283.81239 C 103.41625,290.71343 108.32107,291.85554 112.14105,295.67552 L 88.406239,295.67178 L 88.552049,144.85109 L 112.14105,144.77017 z " />
+      <path
+         id="path30853"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 48.471006,144.5257 L 3.2183455,234.56804 L 3.2183455,289.1964 C 3.2183455,299.06206 14.853723,309.33876 23.735298,309.31106 L 716.48416,309.31106 C 725.18984,309.31106 737.00111,297.13026 737.00111,289.1964 L 737.00111,233.67994 L 691.06759,144.17503 L 677.91563,144.17503 L 708.84059,205.11712 C 714.11626,225.00611 697.80765,233.59281 689.53052,236.50035 L 650.58941,236.33987 L 650.91037,295.63527 L 547.11655,295.63527 L 547.11655,236.33769 L 166.95167,236.33769 L 166.95167,295.55394 L 89.065096,295.55394 L 89.065096,236.41685 L 49.884355,236.41685 C 40.999758,236.41685 25.997947,225.75364 31.37669,205.6799 L 61.478753,144.5257 L 48.471006,144.5257 z " />
+      <path
+         id="path30857"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 168.36959,224.926 C 169.5874,231.82704 174.63806,232.67747 178.45804,236.49745 C 170.61397,236.4829 157.85587,236.39619 157.82764,235.67106 L 157.41439,225.05801 L 168.36959,224.926 z " />
+      <path
+         id="path31750"
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 298.81034,124.9591 L 291.66677,117.46706 L 159.42359,117.46706 L 153.32543,124.78486 L 298.81034,124.9591 z " />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1024-17.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1024-17.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1024-17.svg	(revision 21967)
@@ -0,0 +1,90 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1024-17.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="74.251847"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5102"
+     transform="translate(195.6775,-220.9685)">
+    <path
+       id="text5085"
+       d="M -11.044724,533.02237 L -11.044724,490.01838 L -16.187571,490.01838 L -16.187571,482.18166 L -11.044724,482.18166 L -11.044724,475.47147 C -11.044733,470.73684 -9.7386142,467.25114 -7.126365,465.01434 C -4.5141403,462.77769 -1.2161912,461.65932 2.7674922,461.65925 L 9.3797235,461.65925 L 9.3797235,471.25923 L 3.6001435,471.25923 C 0.62870107,471.25929 -0.85700867,472.66337 -0.85699016,475.47147 L -0.85699016,482.18166 L 9.3797235,482.18166 L 9.3797235,490.01838 L -0.85699016,490.01838 L -0.85699016,533.02237 L -11.044724,533.02237 z M 15.159303,533.02237 L 15.159303,482.18166 L 25.396017,482.18166 L 25.396017,487.61838 L 25.591935,487.61838 C 28.759255,483.60211 33.167405,481.59395 38.816397,481.5939 C 42.538805,481.59395 46.081651,482.90007 49.444947,485.51226 L 42.049044,494.32857 C 39.828609,492.66331 37.575554,491.83066 35.289874,491.83062 C 32.775569,491.83066 30.498025,492.67147 28.457235,494.35306 C 26.416405,496.03473 25.396,498.73676 25.396017,502.45917 L 25.396017,533.02237 L 15.159303,533.02237 z M 93.526492,511.47139 L 61.885741,511.47139 C 61.885727,515.65099 63.020417,518.78568 65.289816,520.87545 C 67.559179,522.96526 70.457129,524.01015 73.983676,524.01014 C 78.195881,524.01015 81.918319,522.3775 85.150999,519.11219 L 92.546903,525.43055 C 90.032579,528.36932 87.199935,530.46727 84.048961,531.72441 C 80.897914,532.98155 77.608128,533.61012 74.179594,533.61012 C 68.955093,533.61012 63.893884,531.92033 58.995951,528.54074 C 54.097996,525.16117 51.649023,518.2469 51.649028,507.79793 C 51.649023,497.90411 53.910241,491.06331 58.432687,487.27552 C 62.955111,483.48783 67.681627,481.59395 72.61225,481.5939 C 78.195881,481.59395 83.077499,483.52864 87.257118,487.39797 C 91.436657,491.26739 93.526446,496.4837 93.526492,503.04692 L 93.526492,511.47139 z M 61.885741,503.04692 L 83.338758,503.04692 C 83.175458,499.22655 82.09791,496.30411 80.106112,494.27959 C 78.114249,492.25515 75.616297,491.2429 72.61225,491.24286 C 69.575499,491.2429 67.053058,492.25515 65.044918,494.27959 C 63.036744,496.30411 61.983686,499.22655 61.885741,503.04692 L 61.885741,503.04692 z M 104.59586,533.02237 L 104.59586,482.18166 L 114.83257,482.18166 L 114.83257,533.02237 L 104.59586,533.02237 z M 104.59586,471.89596 L 104.59586,461.65925 L 114.83257,461.65925 L 114.83257,471.89596 L 104.59586,471.89596 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <g
+       id="layer1"
+       transform="matrix(0.473007,0,0,0.473007,-68.9293,257.4783)">
+      <g
+         id="g4548"
+         transform="translate(10.1636,8.029761)">
+        <path
+           id="path1882"
+           style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+           d="M 295.23238,14.905561 C 279.95549,17.514001 272.29797,24.966621 266.23238,33.436811 L 248.45113,141.12431 L 37.388633,141.12431 C 14.754659,144.54201 19.232383,154.82662 19.232383,163.09306 L 36.388633,268.15556 L 51.513633,268.15556 C 63.437389,228.50231 144.25279,229.9376 156.82613,268.15556 L 247.51363,268.15556 C 243.13571,198.86951 342.7846,101.24363 443.48238,196.40556 L 443.48238,139.49931 L 443.73238,139.49931 L 443.73238,14.905561 L 295.23238,14.905561 z M 289.23238,42.499311 L 399.60738,42.499311 L 399.91988,139.87431 L 270.07613,140.93681 L 286.01363,47.999311 C 286.56907,46.102541 286.84967,44.193071 289.23238,42.499311 z " />
+        <path
+           id="path1887"
+           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:50;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+           transform="translate(-230.0275,-650.8975)"
+           d="M 665.82779,917.76086 C 665.82779,960.38146 631.27697,994.93228 588.65637,994.93228 C 546.03577,994.93228 511.48495,960.38146 511.48495,917.76086 C 511.48495,875.14026 546.03577,840.58944 588.65637,840.58944 C 631.27697,840.58944 665.82779,875.14026 665.82779,917.76086 z " />
+        <path
+           id="path2776"
+           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:50;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+           transform="matrix(0.591604,0,0,0.591604,-244.0191,-234.3611)"
+           d="M 665.82779,917.76086 C 665.82779,960.38146 631.27697,994.93228 588.65637,994.93228 C 546.03577,994.93228 511.48495,960.38146 511.48495,917.76086 C 511.48495,875.14026 546.03577,840.58944 588.65637,840.58944 C 631.27697,840.58944 665.82779,875.14026 665.82779,917.76086 z " />
+      </g>
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-30.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-30.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-30.svg	(revision 21967)
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1026-30.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="153.85164"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5066"
+     transform="translate(3.910219,-222.7929)">
+    <path
+       id="text1982"
+       d="M 180.72256,518.83249 L 180.72256,475.82849 L 175.57971,475.82849 L 175.57971,467.99178 L 180.72256,467.99178 L 180.72256,461.28159 C 180.72255,456.54696 182.02867,453.06126 184.64092,450.82446 C 187.25314,448.5878 190.55109,447.46944 194.53478,447.46937 L 201.14701,447.46937 L 201.14701,457.06935 L 195.36743,457.06935 C 192.39599,457.06941 190.91028,458.47349 190.91029,461.28159 L 190.91029,467.99178 L 201.14701,467.99178 L 201.14701,475.82849 L 190.91029,475.82849 L 190.91029,518.83249 L 180.72256,518.83249 z M 206.92659,518.83249 L 206.92659,467.99178 L 217.1633,467.99178 L 217.1633,473.4285 L 217.35922,473.4285 C 220.52654,469.41223 224.93469,467.40407 230.58368,467.40402 C 234.30609,467.40407 237.84894,468.71019 241.21223,471.32238 L 233.81633,480.13869 C 231.59589,478.47343 229.34284,477.64078 227.05716,477.64074 C 224.54285,477.64078 222.26531,478.48159 220.22452,480.16318 C 218.18369,481.84485 217.16328,484.54688 217.1633,488.26929 L 217.1633,518.83249 L 206.92659,518.83249 z M 285.29378,497.28151 L 253.65303,497.28151 C 253.65301,501.46111 254.7877,504.5958 257.0571,506.68557 C 259.32646,508.77538 262.22441,509.82027 265.75096,509.82026 C 269.96317,509.82027 273.6856,508.18762 276.91828,504.92231 L 284.31419,511.24067 C 281.79986,514.17944 278.96722,516.27739 275.81625,517.53453 C 272.6652,518.79167 269.37541,519.42024 265.94688,519.42024 C 260.72238,519.42024 255.66117,517.73045 250.76324,514.35086 C 245.86528,510.97129 243.41631,504.05702 243.41631,493.60805 C 243.41631,483.71423 245.67753,476.87343 250.19997,473.08564 C 254.7224,469.29795 259.44891,467.40407 264.37953,467.40402 C 269.96317,467.40407 274.84478,469.33876 279.0244,473.20809 C 283.20394,477.07751 285.29373,482.29382 285.29378,488.85704 L 285.29378,497.28151 z M 253.65303,488.85704 L 275.10604,488.85704 C 274.94274,485.03667 273.86519,482.11423 271.8734,480.08971 C 269.88153,478.06527 267.38358,477.05302 264.37953,477.05298 C 261.34278,477.05302 258.82034,478.06527 256.8122,480.08971 C 254.80403,482.11423 253.75097,485.03667 253.65303,488.85704 L 253.65303,488.85704 z M 296.36314,518.83249 L 296.36314,467.99178 L 306.59986,467.99178 L 306.59986,518.83249 L 296.36314,518.83249 z M 296.36314,457.70608 L 296.36314,447.46937 L 306.59986,447.46937 L 306.59986,457.70608 L 296.36314,457.70608 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1886"
+       d="M 110.78646,411.23993 L 110.78646,303.13927 L 76.581732,303.13927 L 76.581732,286.33694 L 163.93667,286.33694 L 163.93667,303.13927 L 129.73194,303.13927 L 129.73194,411.23993 L 110.78646,411.23993 z M 166.19385,411.15421 L 211.80016,286.16549 L 227.40231,286.16549 L 273.00862,411.15421 L 253.12016,411.15421 L 243.51883,382.9503 L 196.11227,382.9503 L 186.16804,411.15421 L 166.19385,411.15421 z M 201.68447,366.23371 L 237.8609,366.23371 C 235.2319,358.51841 233.16019,352.47472 231.64576,348.10263 C 230.1312,343.73066 228.81673,339.8587 227.70236,336.48674 C 226.58786,333.11492 225.45913,329.68588 224.31617,326.1996 C 223.1731,322.71349 221.65861,317.99856 219.77269,312.05479 C 217.77236,318.22716 216.17214,323.15641 214.97202,326.84254 C 213.77181,330.52885 212.61451,334.08648 211.50011,337.51545 C 210.38563,340.94457 209.09974,344.77366 207.64244,349.00275 C 206.18505,353.23197 204.19907,358.97561 201.68447,366.23371 L 201.68447,366.23371 z M 351.99071,411.23993 L 324.64407,364.77636 L 297.2117,411.23993 L 275.86589,411.23993 L 314.09975,347.2025 L 278.26622,286.33694 L 299.69776,286.33694 L 324.64407,329.62864 L 349.50465,286.33694 L 370.93618,286.33694 L 335.10266,347.2025 L 373.42224,411.23993 L 351.99071,411.23993 z M 386.65236,411.23993 L 386.65236,286.33694 L 405.59783,286.33694 L 405.59783,411.23993 L 386.65236,411.23993 z "
+       style="font-size:175.56713867px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;letter-spacing:2px;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-31.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-31.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-31.svg	(revision 21967)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="matrix(1.044287,0,0,1.044287,198.2878,-460.0883)"
+     id="g2404">
+    <path
+       d="M -10.809143,647.00423 L -10.809143,607.43878 L -15.540774,607.43878 L -15.540774,600.22867 L -10.809143,600.22867 L -10.809143,594.05502 C -10.80915,589.69897 -9.6074673,586.49198 -7.2040901,584.43404 C -4.8007354,582.37622 -1.7664859,581.34728 1.8986675,581.34721 L 7.9821937,581.34721 L 7.9821937,590.17959 L 2.6647412,590.17959 C -0.069108711,590.17965 -1.4360231,591.47146 -1.4360061,594.05502 L -1.4360061,600.22867 L 7.9821937,600.22867 L 7.9821937,607.43878 L -1.4360061,607.43878 L -1.4360061,647.00423 L -10.809143,647.00423 z M 13.299646,647.00423 L 13.299646,600.22867 L 22.717846,600.22867 L 22.717846,605.23068 L 22.898098,605.23068 C 25.812164,601.53555 29.867844,599.68796 35.065151,599.68792 C 38.489919,599.68796 41.749484,600.88965 44.843856,603.29297 L 38.039319,611.40434 C 35.996427,609.87223 33.923524,609.10615 31.820603,609.10612 C 29.507339,609.10615 27.411904,609.87974 25.534293,611.42687 C 23.656645,612.97407 22.71783,615.46005 22.717846,618.88482 L 22.717846,647.00423 L 13.299646,647.00423 z M 85.400699,627.17644 L 56.2899,627.17644 C 56.289887,631.02185 57.333849,633.90589 59.42179,635.82857 C 61.509697,637.75127 64.175932,638.71262 67.4205,638.71261 C 71.295903,638.71262 74.7207,637.21051 77.6949,634.20629 L 84.499436,640.01944 C 82.186155,642.72323 79.580005,644.65344 76.680979,645.81006 C 73.781885,646.96668 70.755146,647.54499 67.600753,647.54499 C 62.793996,647.54499 58.137475,645.99031 53.631174,642.88095 C 49.124852,639.7716 46.871697,633.41019 46.871701,623.7967 C 46.871697,614.69398 48.95211,608.40017 53.112948,604.91524 C 57.273765,601.4304 61.622355,599.68796 66.158732,599.68792 C 71.295903,599.68796 75.787193,601.46796 79.632615,605.0279 C 83.477964,608.58793 85.400657,613.38715 85.400699,619.42558 L 85.400699,627.17644 z M 56.2899,619.42558 L 76.027563,619.42558 C 75.87732,615.91068 74.885931,613.22192 73.053395,611.35927 C 71.220798,609.4967 68.922579,608.5654 66.158732,608.56536 C 63.364796,608.5654 61.044045,609.4967 59.196474,611.35927 C 57.34887,613.22192 56.380013,615.91068 56.2899,619.42558 L 56.2899,619.42558 z M 95.584969,647.00423 L 95.584969,600.22867 L 105.00317,600.22867 L 105.00317,647.00423 L 95.584969,647.00423 z M 95.584969,590.76541 L 95.584969,581.34721 L 105.00317,581.34721 L 105.00317,590.76541 L 95.584969,590.76541 z "
+       style="font-size:92.28934479px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       id="text1982" />
+    <path
+       d="M -63.569464,556.27539 L -63.569464,492.15752 L -54.372048,492.15752 L -35.977218,533.96396 L -17.978448,492.15752 L -8.7810323,492.15752 L -8.7810323,556.27539 L -18.506529,556.27539 L -18.506529,516.27323 L -18.682556,516.27323 L -32.104622,547.12198 L -40.201868,547.12198 L -53.623933,516.27323 L -53.843967,516.27323 L -53.843967,556.27539 L -63.569464,556.27539 z M 1.6925766,533.39187 C 1.6925728,528.49248 2.0739644,524.83992 2.8367527,522.43418 C 3.599531,520.02852 4.8610572,517.85752 6.6213351,515.92118 C 7.8828526,514.54234 9.6211183,513.22214 11.836138,511.96057 C 14.051129,510.69909 16.948239,510.06833 20.527475,510.06828 C 24.047991,510.06833 26.923097,510.69909 29.152803,511.96057 C 31.382446,513.22214 33.128046,514.54234 34.389608,515.92118 C 36.149841,517.85752 37.411367,520.02852 38.174191,522.43418 C 38.936934,524.83992 39.318326,528.49248 39.318367,533.39187 C 39.318326,538.37932 38.936934,542.07589 38.174191,544.48158 C 37.411367,546.88729 36.149841,549.05829 34.389608,550.99458 C 33.128046,552.4028 31.382446,553.723 29.152803,554.95519 C 26.923097,556.18738 24.047991,556.80347 20.527475,556.80347 C 16.948239,556.80347 14.051129,556.18738 11.836138,554.95519 C 9.6211183,553.723 7.8828526,552.4028 6.6213351,550.99458 C 4.8610572,549.05829 3.599531,546.88729 2.8367527,544.48158 C 2.0739644,542.07589 1.6925728,538.37932 1.6925766,533.39187 L 1.6925766,533.39187 z M 30.164958,533.47988 C 30.164926,530.16473 29.996234,527.83238 29.65888,526.48281 C 29.321464,525.1333 28.742042,523.84243 27.920613,522.61021 C 26.307003,520.38057 23.842626,519.26573 20.527475,519.2657 C 17.153603,519.26573 14.689227,520.38057 13.134337,522.61021 C 12.254188,523.84243 11.660097,525.1333 11.352063,526.48281 C 11.044003,527.83238 10.889979,530.13539 10.889992,533.39187 C 10.889979,536.7364 11.044003,539.09076 11.352063,540.45496 C 11.660097,541.81918 12.254188,543.10271 13.134337,544.30555 C 14.689227,546.53524 17.153603,547.65007 20.527475,547.65006 C 23.842626,547.65007 26.307003,546.53524 27.920613,544.30555 C 28.742042,543.10271 29.321464,541.82652 29.65888,540.47696 C 29.996234,539.12744 30.164926,536.79508 30.164958,533.47988 L 30.164958,533.47988 z M 50.45208,556.27539 L 50.45208,517.63744 L 45.831369,517.63744 L 45.831369,510.59636 L 50.45208,510.59636 L 50.45208,504.56743 C 50.452073,500.3135 51.625586,497.18169 53.972622,495.17199 C 56.319637,493.16241 59.282756,492.15759 62.86199,492.15752 L 68.802904,492.15752 L 68.802904,500.78285 L 63.610105,500.78285 C 60.940343,500.78291 59.605472,502.04443 59.605489,504.56743 L 59.605489,510.59636 L 68.802904,510.59636 L 68.802904,517.63744 L 59.605489,517.63744 L 59.605489,556.27539 L 50.45208,556.27539 z M 97.97939,556.27539 L 97.97939,552.22677 L 97.759356,552.22677 C 95.911043,555.27791 92.155803,556.80347 86.493622,556.80347 C 81.388823,556.80347 77.428218,555.47594 74.611794,552.82086 C 71.795356,550.16579 70.387141,546.84328 70.387143,542.85333 C 70.387141,539.24479 71.633998,536.09097 74.127719,533.39187 C 76.621428,530.69281 80.332662,529.34327 85.261433,529.34325 L 97.97939,529.34325 L 97.97939,524.59051 C 97.97936,520.68862 94.854882,518.73765 88.605947,518.73761 C 84.263929,518.73765 81.374154,519.8965 79.936613,522.21415 L 72.719502,516.75731 C 75.91732,512.298 81.051438,510.06833 88.121873,510.06828 C 93.754714,510.06833 98.331414,511.16849 101.85199,513.36879 C 105.37249,515.56917 107.13276,519.48577 107.1328,525.1186 L 107.1328,556.27539 L 97.97939,556.27539 z M 97.97939,540.25693 L 97.97939,536.91241 L 86.977697,536.91241 C 81.667532,536.91243 79.01246,538.74604 79.012471,542.41326 C 79.01246,543.96818 79.679895,545.31772 81.014779,546.46188 C 82.349637,547.60607 84.571976,548.17815 87.681805,548.17814 C 91.495702,548.17815 94.165443,547.75275 95.691038,546.90195 C 97.216576,546.05116 97.97936,543.83616 97.97939,540.25693 L 97.97939,540.25693 z M 113.99786,548.66222 L 120.42285,542.32524 C 124.41279,546.22719 129.20952,548.17815 134.81307,548.17814 C 137.42411,548.17815 139.58044,547.68674 141.28206,546.70392 C 142.98363,545.72111 143.83442,544.26155 143.83445,542.32524 C 143.83442,539.65552 141.97147,538.15929 138.24559,537.83655 L 130.14835,537.08844 C 126.36375,536.79508 123.22461,535.54822 120.7309,533.34786 C 118.23718,531.14755 116.99032,528.08175 116.99032,524.15045 C 116.99032,519.5151 118.61857,516.00923 121.87507,513.63283 C 125.13156,511.25651 129.18018,510.06833 134.02094,510.06828 C 138.01087,510.06833 141.42872,510.63308 144.27452,511.76254 C 147.12026,512.89209 149.67265,514.39565 151.9317,516.27323 L 146.25483,522.96226 C 144.43585,521.73011 142.55823,520.71795 140.62196,519.9258 C 138.68564,519.13371 136.4853,518.73765 134.02094,518.73761 C 131.08714,518.73765 129.04816,519.2584 127.904,520.29985 C 126.75981,521.34138 126.18773,522.65425 126.18774,524.23846 C 126.18773,525.23598 126.61312,526.16012 127.46393,527.01089 C 128.31472,527.86171 129.89896,528.37513 132.21667,528.55112 L 139.78583,529.07921 C 144.50919,529.40195 147.89771,530.86151 149.9514,533.45788 C 152.00501,536.0543 153.03183,539.15677 153.03187,542.76531 C 153.03183,547.25401 151.19822,550.71587 147.53102,553.15091 C 143.86376,555.58595 139.38974,556.80347 134.10896,556.80347 C 126.51044,556.80347 119.80675,554.08972 113.99786,548.66222 L 113.99786,548.66222 z "
+       style="font-size:90.12586975px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       id="text2056" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-32.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-32.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-32.svg	(revision 21967)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1026-32.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="170.28486"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5038"
+     transform="translate(352.7496,-197.3609)">
+    <path
+       id="text5021"
+       d="M -168.11683,508.94211 L -168.11683,465.93811 L -173.25967,465.93811 L -173.25967,458.1014 L -168.11683,458.1014 L -168.11683,451.39121 C -168.11683,446.65658 -166.81072,443.17088 -164.19847,440.93408 C -161.58624,438.69742 -158.28829,437.57906 -154.30461,437.57899 L -147.69238,437.57899 L -147.69238,447.17897 L -153.47196,447.17897 C -156.4434,447.17903 -157.92911,448.58311 -157.92909,451.39121 L -157.92909,458.1014 L -147.69238,458.1014 L -147.69238,465.93811 L -157.92909,465.93811 L -157.92909,508.94211 L -168.11683,508.94211 z M -141.9128,508.94211 L -141.9128,458.1014 L -131.67608,458.1014 L -131.67608,463.53812 L -131.48017,463.53812 C -128.31285,459.52185 -123.9047,457.51369 -118.2557,457.51364 C -114.5333,457.51369 -110.99045,458.81981 -107.62715,461.432 L -115.02306,470.24831 C -117.24349,468.58305 -119.49655,467.7504 -121.78223,467.75036 C -124.29653,467.7504 -126.57408,468.59121 -128.61487,470.2728 C -130.6557,471.95446 -131.6761,474.6565 -131.67608,478.3789 L -131.67608,508.94211 L -141.9128,508.94211 z M -63.545609,487.39113 L -95.18636,487.39113 C -95.186375,491.57073 -94.051684,494.70542 -91.782286,496.79519 C -89.512923,498.88499 -86.614972,499.92989 -83.088426,499.92988 C -78.876221,499.92989 -75.153783,498.29724 -71.921102,495.03193 L -64.525199,501.35029 C -67.039522,504.28906 -69.872166,506.38701 -73.023141,507.64415 C -76.174188,508.90129 -79.463974,509.52986 -82.892508,509.52986 C -88.117009,509.52986 -93.178218,507.84007 -98.07615,504.46048 C -102.97411,501.08091 -105.42308,494.16664 -105.42307,483.71767 C -105.42308,473.82385 -103.16186,466.98305 -98.639414,463.19526 C -94.11699,459.40756 -89.390474,457.51369 -84.459852,457.51364 C -78.876221,457.51369 -73.994603,459.44838 -69.814984,463.31771 C -65.635445,467.18713 -63.545655,472.40344 -63.545609,478.96666 L -63.545609,487.39113 z M -95.18636,478.96666 L -73.733343,478.96666 C -73.896644,475.14629 -74.974192,472.22385 -76.96599,470.19933 C -78.957853,468.17488 -81.455805,467.16264 -84.459852,467.1626 C -87.496602,467.16264 -90.019044,468.17488 -92.027183,470.19933 C -94.035358,472.22385 -95.088416,475.14629 -95.18636,478.96666 L -95.18636,478.96666 z M -52.476244,508.94211 L -52.476244,458.1014 L -42.239531,458.1014 L -42.239531,508.94211 L -52.476244,508.94211 z M -52.476244,447.8157 L -52.476244,437.57899 L -42.239531,437.57899 L -42.239531,447.8157 L -52.476244,447.8157 z "
+       style="font-size:100.30999756px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1927"
+       d="M -252.0146,316.20346 L -252.0146,245.19194 L -241.24346,245.19194 L -241.24346,306.06592 L -206.59062,306.06592 L -206.59062,316.20346 L -252.0146,316.20346 z M -197.03793,316.20346 L -197.03793,265.61323 L -186.85166,265.61323 L -186.85166,316.20346 L -197.03793,316.20346 z M -197.03793,255.37822 L -197.03793,245.19194 L -186.85166,245.19194 L -186.85166,255.37822 L -197.03793,255.37822 z M -173.35118,316.20346 L -173.35118,265.61323 L -163.1649,265.61323 L -163.1649,271.02317 L -162.96994,271.02317 C -159.81823,267.02669 -155.4318,265.02843 -149.81064,265.02838 C -145.87912,265.02843 -142.08567,266.52306 -138.43027,269.51229 C -134.77495,272.50161 -132.94727,276.85555 -132.94723,282.57412 L -132.94723,316.20346 L -143.13351,316.20346 L -143.13351,286.08327 C -143.13354,282.67163 -144.08394,280.00728 -145.98469,278.09021 C -147.88551,276.17321 -150.24931,275.2147 -153.07609,275.21465 C -156.00041,275.2147 -158.41295,276.17321 -160.31371,278.09021 C -162.21452,280.00728 -163.16491,282.67163 -163.1649,286.08327 L -163.1649,316.20346 L -173.35118,316.20346 z M -119.44675,316.20346 L -119.44675,265.61323 L -109.26047,265.61323 L -109.26047,316.20346 L -119.44675,316.20346 z M -119.44675,255.37822 L -119.44675,245.19194 L -109.26047,245.19194 L -109.26047,255.37822 L -119.44675,255.37822 z M -56.574511,294.75866 L -88.059374,294.75866 C -88.059388,298.91767 -86.930288,302.03691 -84.67207,304.11639 C -82.413888,306.1959 -79.530215,307.23565 -76.021044,307.23564 C -71.829591,307.23565 -68.125493,305.61104 -64.908739,302.36182 L -57.549274,308.64904 C -60.05121,311.57334 -62.869898,313.66096 -66.005348,314.9119 C -69.140871,316.16285 -72.414448,316.78832 -75.826091,316.78832 C -81.024851,316.78832 -86.061125,315.10685 -90.934926,311.74392 C -95.80875,308.38099 -98.245657,301.50079 -98.245653,291.1033 C -98.245657,281.25822 -95.99558,274.45113 -91.495415,270.682 C -86.995272,266.91297 -82.292043,265.02843 -77.385713,265.02838 C -71.829591,265.02843 -66.972024,266.95358 -62.812997,270.80385 C -58.65405,274.65421 -56.574556,279.84482 -56.574511,286.3757 L -56.574511,294.75866 z M -88.059374,286.3757 L -66.712052,286.3757 C -66.874548,282.57415 -67.946787,279.66611 -69.928771,277.65156 C -71.910821,275.63709 -74.396466,274.62984 -77.385713,274.6298 C -80.407502,274.62984 -82.917515,275.63709 -84.915761,277.65156 C -86.914042,279.66611 -87.961912,282.57415 -88.059374,286.3757 L -88.059374,286.3757 z M -45.852108,316.20346 L -45.852108,265.61323 L -35.665828,265.61323 L -35.665828,271.02317 L -35.470876,271.02317 C -32.31916,267.02669 -27.932729,265.02843 -22.311568,265.02838 C -18.380056,265.02843 -14.586605,266.52306 -10.931203,269.51229 C -7.2758851,272.50161 -5.4482053,276.85555 -5.4481582,282.57412 L -5.4481582,316.20346 L -15.634437,316.20346 L -15.634437,286.08327 C -15.634474,282.67163 -16.584868,280.00728 -18.485621,278.09021 C -20.386442,276.17321 -22.750241,275.2147 -25.577026,275.21465 C -28.50134,275.2147 -30.913878,276.17321 -32.814645,278.09021 C -34.715452,280.00728 -35.665845,282.67163 -35.665828,286.08327 L -35.665828,316.20346 L -45.852108,316.20346 z M 6.4439458,293.68642 L 6.4439458,283.50014 L 36.515402,283.50014 L 36.515402,293.68642 L 6.4439458,293.68642 z "
+       style="font-size:99.81578827px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1931"
+       d="M -254.03756,412.7367 L -272.55811,362.14636 L -261.78695,362.14636 L -249.94355,397.57909 L -249.74859,397.57909 L -237.85645,362.14636 L -227.08529,362.14636 L -245.65458,412.7367 L -254.03756,412.7367 z M -181.95364,391.29185 L -213.43857,391.29185 C -213.43859,395.45087 -212.30948,398.57012 -210.05126,400.6496 C -207.79307,402.72911 -204.9094,403.76886 -201.40022,403.76885 C -197.20875,403.76886 -193.50465,402.14425 -190.28789,398.89502 L -182.92841,405.18226 C -185.43035,408.10656 -188.24904,410.19418 -191.3845,411.44513 C -194.52003,412.69608 -197.79361,413.32155 -201.20526,413.32156 C -206.40403,413.32155 -211.44032,411.64009 -216.31413,408.27714 C -221.18797,404.91421 -223.62488,398.034 -223.62487,387.63648 C -223.62488,377.79138 -221.3748,370.98428 -216.87462,367.21514 C -212.37447,363.4461 -207.67123,361.56155 -202.76489,361.5615 C -197.20875,361.56155 -192.35118,363.48671 -188.19214,367.33699 C -184.03319,371.18735 -181.95369,376.37797 -181.95364,382.90887 L -181.95364,391.29185 z M -213.43857,382.90887 L -192.0912,382.90887 C -192.2537,379.10731 -193.32594,376.19927 -195.30793,374.18471 C -197.28999,372.17024 -199.77564,371.16298 -202.76489,371.16294 C -205.78668,371.16298 -208.2967,372.17024 -210.29495,374.18471 C -212.29324,376.19927 -213.34111,379.10731 -213.43857,382.90887 L -213.43857,382.90887 z M -171.23122,412.7367 L -171.23122,362.14636 L -161.04492,362.14636 L -161.04492,367.55631 L -160.84997,367.55631 C -157.69824,363.55982 -153.3118,361.56155 -147.69063,361.5615 C -143.98655,361.56155 -140.46116,362.86124 -137.11442,365.46056 L -144.4739,374.23345 C -146.6834,372.57639 -148.92536,371.74784 -151.19979,371.7478 C -153.70171,371.74784 -155.96804,372.58451 -157.99878,374.25782 C -160.02956,375.93121 -161.04494,378.61993 -161.04492,382.32401 L -161.04492,412.7367 L -171.23122,412.7367 z M -132.43554,412.7367 L -132.43554,341.72502 L -122.24924,341.72502 L -122.24924,385.93064 L -122.05429,385.93064 L -102.60771,362.14636 L -90.423143,362.14636 L -107.87145,381.9341 L -88.034968,412.7367 L -100.8044,412.7367 L -114.25616,389.09863 L -122.24924,398.21269 L -122.24924,412.7367 L -132.43554,412.7367 z M -41.392435,391.29185 L -72.877365,391.29185 C -72.87738,395.45087 -71.748277,398.57012 -69.490055,400.6496 C -67.231868,402.72911 -64.348189,403.76886 -60.83901,403.76885 C -56.647548,403.76886 -52.943442,402.14425 -49.726681,398.89502 L -42.367201,405.18226 C -44.869142,408.10656 -47.687836,410.19418 -50.823293,411.44513 C -53.958822,412.69608 -57.232407,413.32155 -60.644057,413.32156 C -65.842828,413.32155 -70.879112,411.64009 -75.752924,408.27714 C -80.626759,404.91421 -83.063671,398.034 -83.063666,387.63648 C -83.063671,377.79138 -80.813589,370.98428 -76.313414,367.21514 C -71.813262,363.4461 -67.110022,361.56155 -62.203682,361.5615 C -56.647548,361.56155 -51.789971,363.48671 -47.630935,367.33699 C -43.471979,371.18735 -41.392481,376.37797 -41.392435,382.90887 L -41.392435,391.29185 z M -72.877365,382.90887 L -51.529998,382.90887 C -51.692494,379.10731 -52.764735,376.19927 -54.746724,374.18471 C -56.728778,372.17024 -59.214428,371.16298 -62.203682,371.16294 C -65.225477,371.16298 -67.735496,372.17024 -69.733746,374.18471 C -71.732031,376.19927 -72.779903,379.10731 -72.877365,382.90887 L -72.877365,382.90887 z M -30.670009,412.7367 L -30.670009,341.72502 L -20.483708,341.72502 L -20.483708,367.55631 L -20.288755,367.55631 C -17.137033,363.55982 -12.750592,361.56155 -7.1294189,361.5615 C -3.1978983,361.56155 0.59556087,363.05619 4.25097,366.04542 C 7.9062959,369.03475 9.7339796,373.3887 9.7340267,379.10728 L 9.7340267,412.7367 L -0.45227425,412.7367 L -0.45227425,382.61644 C -0.45231115,379.20479 -1.4027067,376.54043 -3.3034638,374.62336 C -5.2042889,372.70636 -7.5680932,371.74784 -10.394884,371.7478 C -13.319205,371.74784 -15.731747,372.70636 -17.632519,374.62336 C -19.53333,376.54043 -20.483725,379.20479 -20.483708,382.61644 L -20.483708,412.7367 L -30.670009,412.7367 z M 22.942112,412.7367 L 22.942112,362.14636 L 33.128413,362.14636 L 33.128413,367.55631 L 33.323366,367.55631 C 36.475089,363.55982 40.86153,361.56155 46.482703,361.5615 C 50.186778,361.56155 53.712177,362.86124 57.05891,365.46056 L 49.699429,374.23345 C 47.489929,372.57639 45.247971,371.74784 42.973546,371.7478 C 40.471624,371.74784 38.205296,372.58451 36.174556,374.25782 C 34.143776,375.93121 33.128396,378.61993 33.128413,382.32401 L 33.128413,412.7367 L 22.942112,412.7367 z "
+       style="font-size:99.81600189px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-33.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-33.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-33.svg	(revision 21967)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1026-33.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="191.38167"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g5002"
+     transform="translate(239.6125,-408.6088)">
+    <path
+       id="text1982"
+       d="M -49.386346,713.78852 L -49.386346,674.7691 L -54.052678,674.7691 L -54.052678,667.6585 L -49.386346,667.6585 L -49.386346,661.57004 C -49.386354,657.27411 -48.201255,654.11138 -45.831046,652.08184 C -43.460859,650.05242 -40.468484,649.03767 -36.853912,649.03761 L -30.854342,649.03761 L -30.854342,657.7481 L -36.098411,657.7481 C -38.794532,657.74815 -40.142582,659.02213 -40.142565,661.57004 L -40.142565,667.6585 L -30.854342,667.6585 L -30.854342,674.7691 L -40.142565,674.7691 L -40.142565,713.78852 L -49.386346,713.78852 z M -25.610274,713.78852 L -25.610274,667.6585 L -16.322051,667.6585 L -16.322051,672.59148 L -16.144286,672.59148 C -13.270437,668.94734 -9.2707279,667.12525 -4.1451472,667.1252 C -0.76764258,667.12525 2.4469384,668.31035 5.4986055,670.6805 L -1.2120242,678.67993 C -3.226723,677.16896 -5.2710188,676.41346 -7.3449176,676.41342 C -9.6262576,676.41346 -11.692774,677.17637 -13.544473,678.70215 C -15.396208,680.228 -16.322067,682.67967 -16.322051,686.05718 L -16.322051,713.78852 L -25.610274,713.78852 z M 45.495737,694.23437 L 16.786685,694.23437 C 16.786672,698.0267 17.816226,700.87094 19.875352,702.76709 C 21.934445,704.66326 24.563884,705.61134 27.763675,705.61133 C 31.585595,705.61134 34.963127,704.12996 37.896282,701.1672 L 44.606911,706.90013 C 42.325555,709.56661 39.755371,711.47017 36.896353,712.61083 C 34.037269,713.75149 31.052301,714.32182 27.94144,714.32182 C 23.20102,714.32182 18.608761,712.78859 14.164651,709.72215 C 9.7205189,706.65571 7.4984583,700.38209 7.4984621,690.90127 C 7.4984583,681.92417 9.5501609,675.71722 13.653576,672.28039 C 17.756971,668.84364 22.045548,667.12525 26.51932,667.1252 C 31.585595,667.12525 36.014903,668.88068 39.807256,672.39149 C 43.599536,675.90239 45.495695,680.63538 45.495737,686.59047 L 45.495737,694.23437 z M 16.786685,686.59047 L 36.251955,686.59047 C 36.103785,683.12408 35.126079,680.47243 33.318832,678.63549 C 31.511527,676.79862 29.245025,675.88017 26.51932,675.88013 C 23.763942,675.88017 21.47522,676.79862 19.653146,678.63549 C 17.83104,680.47243 16.875554,683.12408 16.786685,686.59047 L 16.786685,686.59047 z M 55.539457,713.78852 L 55.539457,667.6585 L 64.827679,667.6585 L 64.827679,713.78852 L 55.539457,713.78852 z M 55.539457,658.32583 L 55.539457,649.03761 L 64.827679,649.03761 L 64.827679,658.32583 L 55.539457,658.32583 z "
+       style="font-size:91.01569366px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1947"
+       d="M -145.44663,527.64686 L -145.44663,462.89573 L -104.02724,462.89573 L -104.02724,472.18398 L -135.62508,472.18398 L -135.62508,490.62717 L -108.69359,490.62717 L -108.69359,499.38212 L -135.62508,499.38212 L -135.62508,518.40305 L -104.02724,518.40305 L -104.02724,527.64686 L -145.44663,527.64686 z M -95.316727,527.64686 L -95.316727,481.51668 L -86.028473,481.51668 L -86.028473,527.64686 L -95.316727,527.64686 z M -95.316727,472.18398 L -95.316727,462.89573 L -86.028473,462.89573 L -86.028473,472.18398 L -95.316727,472.18398 z M -73.718206,527.64686 L -73.718206,481.51668 L -64.429952,481.51668 L -64.429952,486.44968 L -64.252186,486.44968 C -61.378327,482.80552 -57.378605,480.98343 -52.253007,480.98338 C -48.668098,480.98343 -45.209079,482.3463 -41.875939,485.07199 C -38.542874,487.79777 -36.876323,491.76787 -36.87628,496.98229 L -36.87628,527.64686 L -46.164534,527.64686 L -46.164534,500.18207 C -46.164568,497.0712 -47.031174,494.64174 -48.764356,492.89368 C -50.497601,491.14569 -52.653007,490.27167 -55.230581,490.27164 C -57.897087,490.27167 -60.096935,491.14569 -61.83013,492.89368 C -63.563361,494.64174 -64.429967,497.0712 -64.429952,500.18207 L -64.429952,527.64686 L -73.718206,527.64686 z M -29.943416,519.9585 L -23.454971,513.55893 C -19.425628,517.49941 -14.58152,519.46965 -8.922631,519.46964 C -6.2857989,519.46965 -4.1081722,518.97339 -2.3897444,517.98085 C -0.67137364,516.98834 0.18782601,515.51437 0.18785712,513.55893 C 0.18782601,510.86284 -1.6935249,509.35183 -5.4562014,509.02591 L -13.63342,508.27041 C -17.455394,507.97415 -20.625545,506.71498 -23.143881,504.49289 C -25.662232,502.27084 -26.921404,499.17476 -26.9214,495.20463 C -26.921404,490.52351 -25.277074,486.98301 -21.988404,484.58314 C -18.699753,482.18335 -14.611147,480.98343 -9.7225763,480.98338 C -5.6932475,480.98343 -2.2416351,481.55376 0.63227118,482.69438 C 3.5061143,483.83508 6.0837133,485.3535 8.3650758,487.24962 L 2.6321344,494.00471 C 0.79519128,492.76039 -1.1009735,491.73824 -3.0563655,490.93826 C -5.0118133,490.13835 -7.2338813,489.73838 -9.7225763,489.73834 C -12.685355,489.73838 -14.744471,490.26427 -15.899932,491.31601 C -17.055422,492.36782 -17.63316,493.69366 -17.633147,495.29352 C -17.63316,496.30088 -17.20356,497.23415 -16.344346,498.09332 C -15.485161,498.95255 -13.885272,499.47104 -11.544674,499.64877 L -3.9007522,500.18207 C 0.86926022,500.508 4.291245,501.98197 6.3652125,504.60399 C 8.4391054,507.22605 9.4760705,510.35917 9.4761109,514.00335 C 9.4760705,518.53638 7.6243471,522.03243 3.9209352,524.49152 C 0.21745359,526.95061 -4.3007515,528.18015 -9.6336935,528.18016 C -17.307257,528.18015 -24.077157,525.4396 -29.943416,519.9585 L -29.943416,519.9585 z M 43.118258,527.64686 L 43.118258,523.55825 L 42.896051,523.55825 C 41.029484,526.63952 37.237155,528.18015 31.519052,528.18016 C 26.363835,528.18015 22.364112,526.83951 19.519872,524.15821 C 16.675618,521.47692 15.253495,518.12159 15.253497,514.09223 C 15.253495,510.44805 16.512667,507.26309 19.031017,504.53733 C 21.549354,501.81161 25.297242,500.44875 30.274692,500.44872 L 43.118258,500.44872 L 43.118258,495.64905 C 43.118228,491.70861 39.962892,489.73838 33.652239,489.73834 C 29.267337,489.73838 26.349021,490.90867 24.897282,493.24921 L 17.608892,487.73848 C 20.838292,483.23512 26.023118,480.98343 33.163384,480.98338 C 38.851858,480.98343 43.473759,482.09446 47.029102,484.31649 C 50.584377,486.5386 52.362031,490.49388 52.362071,496.18234 L 52.362071,527.64686 L 43.118258,527.64686 z M 43.118258,511.47019 L 43.118258,508.09264 L 32.007907,508.09264 C 26.645297,508.09266 23.964001,509.94438 23.964013,513.64782 C 23.964001,515.21809 24.638029,516.58096 25.986097,517.73642 C 27.334138,518.89191 29.578427,519.46965 32.71897,519.46964 C 36.570534,519.46965 39.266644,519.04005 40.807305,518.18084 C 42.347911,517.32165 43.118228,515.08477 43.118258,511.47019 L 43.118258,511.47019 z M 64.938985,481.51668 L 64.938985,467.51764 L 74.227239,467.51764 L 74.227239,481.51668 L 80.982332,481.51668 L 80.982332,488.6273 L 74.227239,488.6273 L 74.227239,515.46991 C 74.227223,517.78088 75.323443,518.93635 77.515903,518.93634 L 80.982332,518.93634 L 80.982332,527.64686 L 76.138219,527.64686 C 72.908796,527.64686 70.234907,526.66915 68.116545,524.71373 C 65.998164,522.75831 64.938978,519.9585 64.938985,516.3143 L 64.938985,488.6273 L 60.317079,488.6273 L 60.317079,481.51668 L 64.938985,481.51668 z M 86.626394,527.64686 L 86.626394,520.31403 L 109.73592,489.73834 L 87.915195,489.73834 L 87.915195,481.51668 L 121.02404,481.51668 L 121.02404,488.89395 L 97.914511,518.93634 L 121.02404,518.93634 L 121.02404,527.64686 L 86.626394,527.64686 z M 128.80127,507.11493 L 128.80127,497.82668 L 156.22162,497.82668 L 156.22162,507.11493 L 128.80127,507.11493 z "
+       style="font-size:91.01599884px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1951"
+       d="M -177.93328,618.75813 L -177.93328,579.73857 L -182.59962,579.73857 L -182.59962,572.62795 L -177.93328,572.62795 L -177.93328,566.53947 C -177.93328,562.24353 -176.74818,559.08078 -174.37796,557.05123 C -172.00777,555.02181 -169.01539,554.00706 -165.4008,554.007 L -159.40121,554.007 L -159.40121,562.71751 L -164.6453,562.71751 C -167.34143,562.71757 -168.68948,563.99155 -168.68947,566.53947 L -168.68947,572.62795 L -159.40121,572.62795 L -159.40121,579.73857 L -168.68947,579.73857 L -168.68947,618.75813 L -177.93328,618.75813 z M -129.93656,618.75813 L -129.93656,614.66952 L -130.15877,614.66952 C -132.02533,617.75079 -135.81766,619.29142 -141.53577,619.29142 C -146.69098,619.29142 -150.69071,617.95077 -153.53495,615.26948 C -156.3792,612.58818 -157.80132,609.23286 -157.80132,605.2035 C -157.80132,601.55932 -156.54215,598.37435 -154.0238,595.64859 C -151.50546,592.92288 -147.75758,591.56001 -142.78013,591.55999 L -129.93656,591.55999 L -129.93656,586.76031 C -129.93659,582.81988 -133.09193,580.84964 -139.40258,580.84961 C -143.78748,580.84964 -146.7058,582.01993 -148.15754,584.36048 L -155.44593,578.84974 C -152.21653,574.34639 -147.0317,572.0947 -139.89143,572.09465 C -134.20296,572.0947 -129.58106,573.20573 -126.02572,575.42775 C -122.47044,577.64987 -120.69279,581.60515 -120.69275,587.29361 L -120.69275,618.75813 L -129.93656,618.75813 z M -129.93656,602.58145 L -129.93656,599.20391 L -141.04691,599.20391 C -146.40952,599.20393 -149.09082,601.05565 -149.09081,604.75908 C -149.09082,606.32936 -148.41679,607.69223 -147.06872,608.84769 C -145.72068,610.00318 -143.47639,610.58091 -140.33585,610.58091 C -136.48428,610.58091 -133.78817,610.15132 -132.24751,609.29211 C -130.70691,608.43292 -129.93659,606.19603 -129.93656,602.58145 L -129.93656,602.58145 z M -108.64913,618.75813 L -108.64913,554.007 L -99.360873,554.007 L -99.360873,577.56094 L -99.183107,577.56094 C -96.309248,573.91679 -92.309526,572.0947 -87.183928,572.09465 C -83.599019,572.0947 -80.139999,573.45756 -76.806859,576.18326 C -73.473795,578.90904 -71.807244,582.87913 -71.807201,588.09356 L -71.807201,618.75813 L -81.095455,618.75813 L -81.095455,591.29334 C -81.095489,588.18247 -81.962095,585.75301 -83.695277,584.00495 C -85.428521,582.25695 -87.583927,581.38294 -90.161502,581.3829 C -92.828008,581.38294 -95.027855,582.25695 -96.761051,584.00495 C -98.494282,585.75301 -99.360888,588.18247 -99.360873,591.29334 L -99.360873,618.75813 L -108.64913,618.75813 z M -59.763583,618.75813 L -59.763583,572.62795 L -50.475329,572.62795 L -50.475329,577.56094 L -50.297563,577.56094 C -47.423704,573.91679 -43.423982,572.0947 -38.298384,572.09465 C -34.920868,572.0947 -31.706276,573.2798 -28.654599,575.64996 L -35.365251,583.64941 C -37.379957,582.13844 -39.424259,581.38294 -41.498165,581.3829 C -43.779513,581.38294 -45.846036,582.14585 -47.697741,583.67164 C -49.549483,585.19749 -50.475344,587.64917 -50.475329,591.02669 L -50.475329,618.75813 L -59.763583,618.75813 z M -27.410232,618.75813 L -27.410232,611.42529 L -4.3007012,580.84961 L -26.121431,580.84961 L -26.121431,572.62795 L 6.9874158,572.62795 L 6.9874158,580.00522 L -16.122115,610.04761 L 6.9874158,610.04761 L 6.9874158,618.75813 L -27.410232,618.75813 z M 51.695457,599.20391 L 22.986309,599.20391 C 22.986296,602.99626 24.015854,605.8405 26.074986,607.73666 C 28.134087,609.63283 30.763534,610.58091 33.963336,610.58091 C 37.785269,610.58091 41.162812,609.09954 44.095976,606.13677 L 50.806629,611.86971 C 48.525265,614.5362 45.955072,616.43977 43.096045,617.58043 C 40.236951,618.72109 37.251973,619.29142 34.141102,619.29142 C 29.400665,619.29142 24.808391,617.75819 20.364266,614.69174 C 15.920119,611.62529 13.698051,605.35165 13.698055,595.8708 C 13.698051,586.89367 15.749761,580.68669 19.85319,577.24985 C 23.956599,573.8131 28.24519,572.0947 32.718977,572.09465 C 37.785269,572.0947 42.214591,573.85013 46.006957,577.36096 C 49.79925,580.87186 51.695415,585.60487 51.695457,591.55999 L 51.695457,599.20391 z M 22.986309,591.55999 L 42.451644,591.55999 C 42.303474,588.09359 41.325764,585.44192 39.518512,583.60497 C 37.7112,581.7681 35.444691,580.84964 32.718977,580.84961 C 29.963589,580.84964 27.674859,581.7681 25.852779,583.60497 C 24.030668,585.44192 23.075178,588.09359 22.986309,591.55999 L 22.986309,591.55999 z M 61.472577,603.29252 L 61.472577,572.62795 L 70.760831,572.62795 L 70.760831,600.13718 C 70.760816,603.27772 71.627422,605.71459 73.360654,607.44779 C 75.093849,609.18101 77.293696,610.04762 79.960202,610.04761 C 82.537777,610.04762 84.693183,609.18101 86.426427,607.44779 C 88.159609,605.71459 89.026215,603.27772 89.026249,600.13718 L 89.026249,572.62795 L 98.314503,572.62795 L 98.314503,618.75813 L 89.026249,618.75813 L 89.026249,613.86957 L 88.848483,613.86957 C 85.974575,617.48414 82.00448,619.29142 76.938187,619.29142 C 73.293973,619.29142 69.805327,617.93596 66.472236,615.22503 C 63.139122,612.51411 61.472571,608.53661 61.472577,603.29252 L 61.472577,603.29252 z M 136.26746,618.71368 L 136.26746,613.95845 C 133.03802,617.51377 129.06793,619.29142 124.35716,619.29142 C 121.33513,619.29142 118.80938,618.69146 116.7799,617.49155 C 114.7504,616.29163 113.21718,615.02505 112.18022,613.69181 C 110.84697,611.97341 109.93592,610.15132 109.44707,608.22551 C 108.95821,606.29973 108.71378,602.13706 108.71379,595.73748 C 108.71378,589.33794 108.95821,585.17527 109.44707,583.24944 C 109.93592,581.32369 110.84697,579.48678 112.18022,577.73871 C 113.21718,576.43514 114.7504,575.16856 116.7799,573.93897 C 118.80938,572.70947 121.33513,572.0947 124.35716,572.09465 C 128.86054,572.0947 132.83063,573.91679 136.26746,577.56094 L 136.26746,572.62795 L 145.55571,572.62795 L 145.55571,617.69153 C 145.55567,624.62439 143.53359,629.73514 139.48946,633.02382 C 135.44526,636.31246 130.80114,637.95679 125.55708,637.95681 C 122.5943,637.95679 119.6908,637.24573 116.84657,635.82363 C 114.00231,634.40148 111.55803,632.53495 109.51373,630.22401 L 116.71324,624.49107 C 117.83908,625.61691 119.17973,626.59462 120.73519,627.4242 C 122.29062,628.25376 123.95717,628.66855 125.73485,628.66856 C 128.81609,628.66855 131.34184,627.80935 133.31211,626.09096 C 135.28231,624.37255 136.26743,621.91346 136.26746,618.71368 L 136.26746,618.71368 z M 118.00204,595.73748 C 118.00203,599.44095 118.09832,601.90004 118.29091,603.11475 C 118.48348,604.3295 118.99455,605.45534 119.82414,606.4923 C 120.4463,607.32188 121.36476,608.12183 122.57951,608.89213 C 123.79422,609.66246 125.33485,610.04762 127.20141,610.04761 C 129.00867,610.04762 130.51227,609.66246 131.71222,608.89213 C 132.91211,608.12183 133.83797,607.32188 134.4898,606.4923 C 135.28972,605.45534 135.78598,604.3295 135.97859,603.11475 C 136.17114,601.90004 136.26743,599.44095 136.26746,595.73748 C 136.26743,592.03405 136.17114,589.57496 135.97859,588.3602 C 135.78598,587.1455 135.28972,586.00484 134.4898,584.93822 C 133.83797,584.13831 132.91211,583.34577 131.71222,582.5606 C 130.51227,581.77551 129.00867,581.38294 127.20141,581.3829 C 125.33485,581.38294 123.79422,581.77551 122.57951,582.5606 C 121.36476,583.34577 120.4463,584.13831 119.82414,584.93822 C 118.99455,586.00484 118.48348,587.1455 118.29091,588.3602 C 118.09832,589.57496 118.00203,592.03405 118.00204,595.73748 L 118.00204,595.73748 z M 193.37466,599.20391 L 164.66551,599.20391 C 164.66549,602.99626 165.69505,605.8405 167.75419,607.73666 C 169.81329,609.63283 172.44273,610.58091 175.64254,610.58091 C 179.46447,610.58091 182.84201,609.09954 185.77518,606.13677 L 192.48583,611.86971 C 190.20446,614.5362 187.63427,616.43977 184.77524,617.58043 C 181.91615,618.72109 178.93117,619.29142 175.8203,619.29142 C 171.07986,619.29142 166.48759,617.75819 162.04347,614.69174 C 157.59932,611.62529 155.37725,605.35165 155.37725,595.8708 C 155.37725,586.89367 157.42896,580.68669 161.53239,577.24985 C 165.6358,573.8131 169.92439,572.0947 174.39818,572.09465 C 179.46447,572.0947 183.89379,573.85013 187.68616,577.36096 C 191.47845,580.87186 193.37461,585.60487 193.37466,591.55999 L 193.37466,599.20391 z M 164.66551,591.55999 L 184.13084,591.55999 C 183.98267,588.09359 183.00496,585.44192 181.19771,583.60497 C 179.3904,581.7681 177.12389,580.84964 174.39818,580.84961 C 171.64279,580.84964 169.35406,581.7681 167.53198,583.60497 C 165.70987,585.44192 164.75438,588.09359 164.66551,591.55999 L 164.66551,591.55999 z "
+       style="font-size:91.01599884px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-34.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-34.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-34.svg	(revision 21967)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1026-34.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="56.694665"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g4967"
+     transform="translate(258.4687,-263.4318)">
+    <path
+       id="text4949"
+       d="M -68.242547,568.32655 L -68.242547,529.30712 L -72.908879,529.30712 L -72.908879,522.19652 L -68.242547,522.19652 L -68.242547,516.10807 C -68.242554,511.81214 -67.057455,508.6494 -64.687246,506.61986 C -62.317059,504.59044 -59.324684,503.5757 -55.710112,503.57563 L -49.710543,503.57563 L -49.710543,512.28612 L -54.954611,512.28612 C -57.650732,512.28618 -58.998782,513.56016 -58.998765,516.10807 L -58.998765,522.19652 L -49.710543,522.19652 L -49.710543,529.30712 L -58.998765,529.30712 L -58.998765,568.32655 L -68.242547,568.32655 z M -44.466474,568.32655 L -44.466474,522.19652 L -35.178252,522.19652 L -35.178252,527.1295 L -35.000487,527.1295 C -32.126637,523.48536 -28.126928,521.66327 -23.001347,521.66323 C -19.623843,521.66327 -16.409262,522.84837 -13.357595,525.21853 L -20.068224,533.21795 C -22.082923,531.70699 -24.127219,530.95149 -26.201118,530.95145 C -28.482458,530.95149 -30.548974,531.71439 -32.400673,533.24017 C -34.252408,534.76602 -35.178267,537.2177 -35.178252,540.5952 L -35.178252,568.32655 L -44.466474,568.32655 z M 26.639536,548.77239 L -2.0695155,548.77239 C -2.0695286,552.56473 -1.0399738,555.40897 1.0191519,557.30511 C 3.0782452,559.20128 5.7076836,560.14936 8.9074749,560.14935 C 12.729395,560.14936 16.106927,558.66799 19.040081,555.70523 L 25.750711,561.43815 C 23.469355,564.10463 20.899171,566.0082 18.040153,567.14885 C 15.181069,568.28951 12.196101,568.85984 9.08524,568.85984 C 4.3448197,568.85984 -0.24743888,567.32662 -4.6915496,564.26017 C -9.1356813,561.19373 -11.357742,554.92011 -11.357738,545.4393 C -11.357742,536.4622 -9.3060393,530.25524 -5.2026241,526.81841 C -1.0992288,523.38167 3.1893482,521.66327 7.6631197,521.66323 C 12.729395,521.66327 17.158703,523.4187 20.951055,526.92952 C 24.743336,530.44041 26.639495,535.1734 26.639536,541.1285 L 26.639536,548.77239 z M -2.0695155,541.1285 L 17.395755,541.1285 C 17.247585,537.66211 16.269878,535.01045 14.462632,533.17351 C 12.655326,531.33664 10.388825,530.41819 7.6631197,530.41815 C 4.9077417,530.41819 2.6190193,531.33664 0.79694558,533.17351 C -1.0251601,535.01045 -1.9806462,537.66211 -2.0695155,541.1285 L -2.0695155,541.1285 z M 36.683257,568.32655 L 36.683257,522.19652 L 45.971479,522.19652 L 45.971479,568.32655 L 36.683257,568.32655 z M 36.683257,512.86386 L 36.683257,503.57563 L 45.971479,503.57563 L 45.971479,512.86386 L 36.683257,512.86386 z "
+       style="font-size:91.01569366px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1965"
+       d="M -190.61215,382.75483 L -190.61215,318.0037 L -180.7906,318.0037 L -180.7906,351.3792 L -180.56839,351.3792 L -153.94799,318.0037 L -142.2599,318.0037 L -163.01403,343.55751 L -140.08227,382.75483 L -151.72592,382.75483 L -169.4136,351.11255 L -180.7906,363.02285 L -180.7906,382.75483 L -190.61215,382.75483 z M -133.9938,382.75483 L -133.9938,336.62465 L -124.70554,336.62465 L -124.70554,341.55765 L -124.52778,341.55765 C -121.65392,337.9135 -117.65419,336.0914 -112.5286,336.09135 C -109.15108,336.0914 -105.93649,337.2765 -102.88481,339.64667 L -109.59546,347.64612 C -111.61017,346.13515 -113.65447,345.37964 -115.72838,345.37961 C -118.00972,345.37964 -120.07625,346.14255 -121.92795,347.66834 C -123.77969,349.19419 -124.70556,351.64588 -124.70554,355.02339 L -124.70554,382.75483 L -133.9938,382.75483 z M -74.39787,382.75483 L -74.39787,378.66622 L -74.620077,378.66622 C -76.486645,381.74749 -80.278974,383.28813 -85.997077,383.28813 C -91.152294,383.28813 -95.152016,381.94748 -97.996257,379.26618 C -100.84051,376.58489 -102.26263,373.22956 -102.26263,369.2002 C -102.26263,365.55602 -101.00346,362.37106 -98.485112,359.6453 C -95.966775,356.91958 -92.218887,355.55672 -87.241437,355.55669 L -74.39787,355.55669 L -74.39787,350.75702 C -74.397901,346.81658 -77.553237,344.84635 -83.86389,344.84631 C -88.248792,344.84635 -91.167108,346.01664 -92.618847,348.35718 L -99.907237,342.84645 C -96.677836,338.3431 -91.493011,336.0914 -84.352745,336.09135 C -78.664271,336.0914 -74.04237,337.20243 -70.487027,339.42446 C -66.931752,341.64657 -65.154098,345.60185 -65.154058,351.29031 L -65.154058,382.75483 L -74.39787,382.75483 z M -74.39787,366.57816 L -74.39787,363.20061 L -85.508222,363.20061 C -90.870832,363.20063 -93.552127,365.05235 -93.552116,368.75579 C -93.552127,370.32606 -92.8781,371.68893 -91.530032,372.8444 C -90.181991,373.99988 -87.937702,374.57762 -84.797159,374.57761 C -80.945595,374.57762 -78.249485,374.14802 -76.708823,373.28881 C -75.168218,372.42962 -74.397901,370.19274 -74.39787,366.57816 L -74.39787,366.57816 z M -53.110441,382.75483 L -53.110441,336.62465 L -43.822187,336.62465 L -43.822187,341.55765 L -43.644421,341.55765 C -40.770562,337.9135 -36.77084,336.0914 -31.645242,336.09135 C -28.060333,336.0914 -24.601314,337.45427 -21.268174,340.17996 C -17.935109,342.90574 -16.268558,346.87584 -16.268516,352.09026 L -16.268516,382.75483 L -25.556769,382.75483 L -25.556769,355.29004 C -25.556803,352.17917 -26.423409,349.74971 -28.156592,348.00165 C -29.889836,346.25366 -32.045242,345.37964 -34.622816,345.37961 C -37.289322,345.37964 -39.48917,346.25366 -41.222365,348.00165 C -42.955596,349.74971 -43.822202,352.17917 -43.822187,355.29004 L -43.822187,382.75483 L -53.110441,382.75483 z M -4.224897,382.75483 L -4.224897,318.0037 L 5.0633568,318.0037 L 5.0633568,358.31206 L 5.2411224,358.31206 L 22.973243,336.62465 L 34.083595,336.62465 L 18.173571,354.66786 L 36.261224,382.75483 L 24.617575,382.75483 L 12.351747,361.20075 L 5.0633568,369.51129 L 5.0633568,382.75483 L -4.224897,382.75483 z M 78.791653,363.20061 L 50.082505,363.20061 C 50.082492,366.99296 51.11205,369.83721 53.171183,371.73336 C 55.230283,373.62954 57.85973,374.57762 61.059532,374.57761 C 64.881465,374.57762 68.259009,373.09624 71.192173,370.13347 L 77.902825,375.86641 C 75.621461,378.5329 73.051269,380.43647 70.192241,381.57713 C 67.333147,382.7178 64.348169,383.28813 61.237298,383.28813 C 56.496862,383.28813 51.904588,381.7549 47.460462,378.68844 C 43.016315,375.62199 40.794247,369.34835 40.794251,359.86751 C 40.794247,350.89037 42.845957,344.6834 46.949386,341.24656 C 51.052795,337.8098 55.341386,336.0914 59.815173,336.09135 C 64.881465,336.0914 69.310787,337.84683 73.103153,341.35766 C 76.895446,344.86857 78.791611,349.60157 78.791653,355.55669 L 78.791653,363.20061 z M 50.082505,355.55669 L 69.547841,355.55669 C 69.39967,352.09029 68.42196,349.43862 66.614708,347.60168 C 64.807396,345.7648 62.540887,344.84635 59.815173,344.84631 C 57.059785,344.84635 54.771055,345.7648 52.948976,347.60168 C 51.126864,349.43862 50.171374,352.09029 50.082505,355.55669 L 50.082505,355.55669 z M 88.568774,382.75483 L 88.568774,336.62465 L 97.857027,336.62465 L 97.857027,341.55765 L 98.034793,341.55765 C 100.90865,337.9135 104.90837,336.0914 110.03397,336.09135 C 113.61888,336.0914 117.0779,337.45427 120.41104,340.17996 C 123.7441,342.90574 125.41066,346.87584 125.4107,352.09026 L 125.4107,382.75483 L 116.12245,382.75483 L 116.12245,355.29004 C 116.12241,352.17917 115.2558,349.74971 113.52262,348.00165 C 111.78938,346.25366 109.63397,345.37964 107.0564,345.37961 C 104.38989,345.37964 102.19004,346.25366 100.45685,348.00165 C 98.723619,349.74971 97.857012,352.17917 97.857027,355.29004 L 97.857027,382.75483 L 88.568774,382.75483 z M 136.25438,362.2229 L 136.25438,352.93465 L 163.67473,352.93465 L 163.67473,362.2229 L 136.25438,362.2229 z "
+       style="font-size:91.01599884px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1969"
+       d="M -196.78948,473.79612 L -196.78948,434.77657 L -201.45583,434.77657 L -201.45583,427.66594 L -196.78948,427.66594 L -196.78948,421.57747 C -196.78949,417.28152 -195.60438,414.11878 -193.23417,412.08923 C -190.86397,410.0598 -187.87159,409.04506 -184.257,409.04499 L -178.25741,409.04499 L -178.25741,417.75551 L -183.5015,417.75551 C -186.19763,417.75556 -187.54568,419.02955 -187.54567,421.57747 L -187.54567,427.66594 L -178.25741,427.66594 L -178.25741,434.77657 L -187.54567,434.77657 L -187.54567,473.79612 L -196.78948,473.79612 z M -148.79276,473.79612 L -148.79276,469.70751 L -149.01497,469.70751 C -150.88154,472.78878 -154.67386,474.32942 -160.39197,474.32942 C -165.54718,474.32942 -169.54691,472.98877 -172.39115,470.30747 C -175.2354,467.62618 -176.65752,464.27085 -176.65752,460.24149 C -176.65752,456.59731 -175.39835,453.41235 -172.88,450.68659 C -170.36167,447.96088 -166.61378,446.59801 -161.63633,446.59798 L -148.79276,446.59798 L -148.79276,441.79831 C -148.79279,437.85787 -151.94813,435.88764 -158.25878,435.8876 C -162.64368,435.88764 -165.562,437.05793 -167.01374,439.39847 L -174.30213,433.88774 C -171.07273,429.38439 -165.8879,427.13269 -158.74764,427.13264 C -153.05916,427.13269 -148.43726,428.24372 -144.88192,430.46575 C -141.32664,432.68786 -139.54899,436.64314 -139.54895,442.3316 L -139.54895,473.79612 L -148.79276,473.79612 z M -148.79276,457.61945 L -148.79276,454.2419 L -159.90311,454.2419 C -165.26572,454.24192 -167.94702,456.09364 -167.94701,459.79708 C -167.94702,461.36735 -167.27299,462.73022 -165.92492,463.88569 C -164.57688,465.04117 -162.33259,465.61891 -159.19205,465.6189 C -155.34049,465.61891 -152.64438,465.18931 -151.10371,464.3301 C -149.56311,463.47091 -148.79279,461.23403 -148.79276,457.61945 L -148.79276,457.61945 z M -127.50533,473.79612 L -127.50533,409.04499 L -118.21707,409.04499 L -118.21707,432.59894 L -118.03931,432.59894 C -115.16545,428.95479 -111.16573,427.13269 -106.04013,427.13264 C -102.45522,427.13269 -98.996201,428.49556 -95.663061,431.22125 C -92.329996,433.94703 -90.663445,437.91713 -90.663402,443.13155 L -90.663402,473.79612 L -99.951656,473.79612 L -99.951656,446.33133 C -99.95169,443.22046 -100.8183,440.791 -102.55148,439.04294 C -104.28472,437.29495 -106.44013,436.42094 -109.0177,436.4209 C -111.68421,436.42094 -113.88406,437.29495 -115.61725,439.04294 C -117.35048,440.791 -118.21709,443.22046 -118.21707,446.33133 L -118.21707,473.79612 L -127.50533,473.79612 z M -78.619784,473.79612 L -78.619784,427.66594 L -69.33153,427.66594 L -69.33153,432.59894 L -69.153765,432.59894 C -66.279905,428.95479 -62.280183,427.13269 -57.154585,427.13264 C -53.777069,427.13269 -50.562477,428.31779 -47.5108,430.68796 L -54.221452,438.68741 C -56.236158,437.17644 -58.28046,436.42094 -60.354366,436.4209 C -62.635714,436.42094 -64.702237,437.18385 -66.553942,438.70963 C -68.405684,440.23549 -69.331546,442.68717 -69.33153,446.06468 L -69.33153,473.79612 L -78.619784,473.79612 z M -46.266433,473.79612 L -46.266433,466.46329 L -23.156902,435.8876 L -44.977633,435.8876 L -44.977633,427.66594 L -11.868785,427.66594 L -11.868785,435.04321 L -34.978316,465.0856 L -11.868785,465.0856 L -11.868785,473.79612 L -46.266433,473.79612 z M 32.839256,454.2419 L 4.1301075,454.2419 C 4.1300944,458.03425 5.1596526,460.8785 7.2187852,462.77465 C 9.2778854,464.67083 11.907333,465.61891 15.107135,465.6189 C 18.929068,465.61891 22.306611,464.13753 25.239775,461.17476 L 31.950428,466.9077 C 29.669063,469.57419 27.098871,471.47776 24.239844,472.61842 C 21.380749,473.75909 18.395771,474.32942 15.2849,474.32942 C 10.544464,474.32942 5.9521902,472.79619 1.5080646,469.72973 C -2.936082,466.66328 -5.1581501,460.38964 -5.1581462,450.9088 C -5.1581501,441.93166 -3.1064406,435.72469 0.99698845,432.28785 C 5.1003975,428.85109 9.3889889,427.13269 13.862775,427.13264 C 18.929068,427.13269 23.35839,428.88812 27.150756,432.39895 C 30.943049,435.90986 32.839214,440.64286 32.839256,446.59798 L 32.839256,454.2419 z M 4.1301075,446.59798 L 23.595443,446.59798 C 23.447273,443.13158 22.469563,440.47991 20.66231,438.64297 C 18.854999,436.80609 16.588489,435.88764 13.862775,435.8876 C 11.107388,435.88764 8.818658,436.80609 6.9965782,438.64297 C 5.1744664,440.47991 4.2189772,443.13158 4.1301075,446.59798 L 4.1301075,446.59798 z M 42.616376,458.33051 L 42.616376,427.66594 L 51.90463,427.66594 L 51.90463,455.17517 C 51.904615,458.31571 52.771221,460.75258 54.504452,462.48578 C 56.237647,464.21901 58.437495,465.08561 61.104001,465.0856 C 63.681575,465.08561 65.836981,464.21901 67.570226,462.48578 C 69.303408,460.75258 70.170014,458.31571 70.170048,455.17517 L 70.170048,427.66594 L 79.458302,427.66594 L 79.458302,473.79612 L 70.170048,473.79612 L 70.170048,468.90757 L 69.992282,468.90757 C 67.118374,472.52213 63.148279,474.32942 58.081985,474.32942 C 54.437772,474.32942 50.949125,472.97395 47.616034,470.26303 C 44.282921,467.55211 42.61637,463.57461 42.616376,458.33051 L 42.616376,458.33051 z M 117.41126,473.75168 L 117.41126,468.99645 C 114.18182,472.55176 110.21173,474.32942 105.50096,474.32942 C 102.47893,474.32942 99.95318,473.72946 97.923703,472.52954 C 95.894202,471.32962 94.360975,470.06305 93.324018,468.7298 C 91.990769,467.01141 91.079721,465.18931 90.590871,463.26351 C 90.102011,461.33772 89.857584,457.17505 89.857588,450.77547 C 89.857584,444.37594 90.102011,440.21326 90.590871,438.28744 C 91.079721,436.36168 91.990769,434.52477 93.324018,432.7767 C 94.360975,431.47313 95.894202,430.20655 97.923703,428.97696 C 99.95318,427.74746 102.47893,427.13269 105.50096,427.13264 C 110.00433,427.13269 113.97443,428.95479 117.41126,432.59894 L 117.41126,427.66594 L 126.69951,427.66594 L 126.69951,472.72953 C 126.69947,479.66238 124.67739,484.77314 120.63326,488.06181 C 116.58906,491.35046 111.94494,492.99479 106.70088,492.99481 C 103.7381,492.99479 100.8346,492.28373 97.990365,490.86162 C 95.146106,489.43948 92.701831,487.57294 90.657533,485.262 L 97.857041,479.52906 C 98.982877,480.6549 100.32352,481.63261 101.87899,482.46219 C 103.43442,483.29176 105.10097,483.70654 106.87865,483.70655 C 109.95989,483.70654 112.48564,482.84734 114.45591,481.12895 C 116.42611,479.41055 117.41123,476.95146 117.41126,473.75168 L 117.41126,473.75168 z M 99.145842,450.77547 C 99.145828,454.47894 99.242118,456.93803 99.434711,458.15275 C 99.627276,459.36749 100.13835,460.49334 100.96794,461.53029 C 101.5901,462.35988 102.50856,463.15982 103.72331,463.93013 C 104.93802,464.70045 106.47865,465.08561 108.34521,465.0856 C 110.15247,465.08561 111.65607,464.70045 112.85602,463.93013 C 114.0559,463.15982 114.98177,462.35988 115.6336,461.53029 C 116.43352,460.49334 116.92978,459.36749 117.12239,458.15275 C 117.31494,456.93803 117.41123,454.47894 117.41126,450.77547 C 117.41123,447.07205 117.31494,444.61296 117.12239,443.3982 C 116.92978,442.1835 116.43352,441.04284 115.6336,439.97621 C 114.98177,439.1763 114.0559,438.38376 112.85602,437.59859 C 111.65607,436.8135 110.15247,436.42094 108.34521,436.4209 C 106.47865,436.42094 104.93802,436.8135 103.72331,437.59859 C 102.50856,438.38376 101.5901,439.1763 100.96794,439.97621 C 100.13835,441.04284 99.627276,442.1835 99.434711,443.3982 C 99.242118,444.61296 99.145828,447.07205 99.145842,450.77547 L 99.145842,450.77547 z M 174.51845,454.2419 L 145.80931,454.2419 C 145.80929,458.03425 146.83885,460.8785 148.89798,462.77465 C 150.95708,464.67083 153.58653,465.61891 156.78633,465.6189 C 160.60827,465.61891 163.98581,464.13753 166.91897,461.17476 L 173.62963,466.9077 C 171.34826,469.57419 168.77807,471.47776 165.91904,472.61842 C 163.05995,473.75909 160.07497,474.32942 156.9641,474.32942 C 152.22366,474.32942 147.63139,472.79619 143.18726,469.72973 C 138.74312,466.66328 136.52105,460.38964 136.52105,450.9088 C 136.52105,441.93166 138.57276,435.72469 142.67619,432.28785 C 146.7796,428.85109 151.06819,427.13269 155.54197,427.13264 C 160.60827,427.13269 165.03759,428.88812 168.82995,432.39895 C 172.62225,435.90986 174.51841,440.64286 174.51845,446.59798 L 174.51845,454.2419 z M 145.80931,446.59798 L 165.27464,446.59798 C 165.12647,443.13158 164.14876,440.47991 162.34151,438.64297 C 160.5342,436.80609 158.26769,435.88764 155.54197,435.8876 C 152.78659,435.88764 150.49786,436.80609 148.67578,438.64297 C 146.85367,440.47991 145.89818,443.13158 145.80931,446.59798 L 145.80931,446.59798 z "
+       style="font-size:91.01599884px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-35.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-35.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-35.svg	(revision 21967)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1026-35.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="191.38167"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g4039"
+     transform="translate(55.09133,-395.1993)">
+    <path
+       style="font-size:101.63775635px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       d="M 129.01275,706.92426 L 129.01275,663.35104 L 123.80183,663.35104 L 123.80183,655.41059 L 129.01275,655.41059 L 129.01275,648.61158 C 129.01274,643.81429 130.33615,640.28245 132.98297,638.01605 C 135.62978,635.74978 138.97138,634.61661 143.00779,634.61654 L 149.70755,634.61654 L 149.70755,644.34359 L 143.85147,644.34359 C 140.84069,644.34365 139.33532,645.76632 139.33533,648.61158 L 139.33533,655.41059 L 149.70755,655.41059 L 149.70755,663.35104 L 139.33533,663.35104 L 139.33533,706.92426 L 129.01275,706.92426 z M 155.56363,706.92426 L 155.56363,655.41059 L 165.93584,655.41059 L 165.93584,660.91928 L 166.13435,660.91928 C 169.3436,656.84985 173.8101,654.81511 179.53386,654.81506 C 183.30554,654.81511 186.89528,656.13852 190.3031,658.78529 L 182.8093,667.71829 C 180.55947,666.03099 178.27659,665.18731 175.96066,665.18727 C 173.41307,665.18731 171.10538,666.03926 169.03758,667.74311 C 166.96974,669.44703 165.93582,672.18483 165.93584,675.95651 L 165.93584,706.92426 L 155.56363,706.92426 z M 234.96813,685.08802 L 202.90856,685.08802 C 202.90855,689.32295 204.05826,692.49913 206.3577,694.61656 C 208.6571,696.73403 211.59341,697.79275 215.16663,697.79274 C 219.43459,697.79275 223.2063,696.13849 226.48177,692.82996 L 233.97557,699.23195 C 231.42797,702.20962 228.55783,704.33535 225.36515,705.60912 C 222.17239,706.88291 218.83906,707.51979 215.36514,707.5198 C 210.07149,707.51979 204.94329,705.80764 199.98052,702.38332 C 195.01773,698.95901 192.53635,691.95322 192.53635,681.36594 C 192.53635,671.34116 194.82749,664.40981 199.4098,660.57189 C 203.99209,656.73405 208.78117,654.81511 213.77705,654.81506 C 219.43459,654.81511 224.38083,656.77541 228.61577,660.69596 C 232.85063,664.6166 234.96808,669.90195 234.96813,676.55204 L 234.96813,685.08802 z M 202.90856,676.55204 L 224.64554,676.55204 C 224.48008,672.68111 223.38827,669.71998 221.37011,667.66866 C 219.35188,665.61742 216.82086,664.59178 213.77705,664.59174 C 210.70011,664.59178 208.14428,665.61742 206.10956,667.66866 C 204.0748,669.71998 203.0078,672.68111 202.90856,676.55204 L 202.90856,676.55204 z M 246.18401,706.92426 L 246.18401,655.41059 L 256.55623,655.41059 L 256.55623,706.92426 L 246.18401,706.92426 z M 246.18401,644.98875 L 246.18401,634.61654 L 256.55623,634.61654 L 256.55623,644.98875 L 246.18401,644.98875 z "
+       id="text1982" />
+    <path
+       style="font-size:100.74059296px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       d="M 48.847317,514.54827 L 48.847317,442.87882 L 59.71825,442.87882 L 59.71825,504.31681 L 94.692157,504.31681 L 94.692157,514.54827 L 48.847317,514.54827 z M 104.33335,514.54827 L 104.33335,463.48932 L 114.614,463.48932 L 114.614,514.54827 L 104.33335,514.54827 z M 104.33335,453.15948 L 104.33335,442.87882 L 114.614,442.87882 L 114.614,453.15948 L 104.33335,453.15948 z M 167.78811,492.90479 L 136.01154,492.90479 C 136.01152,497.10233 137.15108,500.25047 139.43022,502.34922 C 141.70933,504.44799 144.61972,505.49737 148.1614,505.49736 C 152.39169,505.49737 156.13011,503.85771 159.37667,500.57839 L 166.80432,506.92386 C 164.2792,509.87525 161.4344,511.98221 158.2699,513.24475 C 155.10532,514.50728 151.80141,515.13855 148.35816,515.13855 C 143.11124,515.13855 138.0283,513.44151 133.10934,510.04741 C 128.19036,506.65333 125.73088,499.70938 125.73088,489.21556 C 125.73088,479.27926 128.0018,472.4091 132.54366,468.60505 C 137.0855,464.8011 141.8323,462.8991 146.78409,462.89904 C 152.39169,462.8991 157.29426,464.84209 161.49182,468.72803 C 165.6893,472.61406 167.78806,477.85276 167.78811,484.44415 L 167.78811,492.90479 z M 136.01154,484.44415 L 157.55664,484.44415 C 157.39264,480.60739 156.31047,477.6724 154.31012,475.63919 C 152.30971,473.60605 149.80103,472.58947 146.78409,472.58942 C 143.7343,472.58947 141.20104,473.60605 139.18428,475.63919 C 137.16748,477.6724 136.1099,480.60739 136.01154,484.44415 L 136.01154,484.44415 z M 180.23311,514.54827 L 180.23311,471.35968 L 175.06819,471.35968 L 175.06819,463.48932 L 180.23311,463.48932 L 180.23311,456.75033 C 180.2331,451.99538 181.54483,448.49471 184.16829,446.24832 C 186.79173,444.00206 190.10384,442.87889 194.10462,442.87882 L 200.74523,442.87882 L 200.74523,452.52001 L 194.94085,452.52001 C 191.95665,452.52007 190.46456,453.93018 190.46458,456.75033 L 190.46458,463.48932 L 200.74523,463.48932 L 200.74523,471.35968 L 190.46458,471.35968 L 190.46458,514.54827 L 180.23311,514.54827 z M 246.09818,492.90479 L 214.3216,492.90479 C 214.32159,497.10233 215.46115,500.25047 217.74029,502.34922 C 220.0194,504.44799 222.92979,505.49737 226.47147,505.49736 C 230.70176,505.49737 234.44017,503.85771 237.68673,500.57839 L 245.11438,506.92386 C 242.58927,509.87525 239.74446,511.98221 236.57996,513.24475 C 233.41539,514.50728 230.11148,515.13855 226.66823,515.13855 C 221.4213,515.13855 216.33837,513.44151 211.41941,510.04741 C 206.50043,506.65333 204.04094,499.70938 204.04095,489.21556 C 204.04094,479.27926 206.31187,472.4091 210.85373,468.60505 C 215.39556,464.8011 220.14237,462.8991 225.09416,462.89904 C 230.70176,462.8991 235.60433,464.84209 239.80189,468.72803 C 243.99937,472.61406 246.09813,477.85276 246.09818,484.44415 L 246.09818,492.90479 z M 214.3216,484.44415 L 235.86671,484.44415 C 235.70271,480.60739 234.62054,477.6724 232.62019,475.63919 C 230.61977,473.60605 228.1111,472.58947 225.09416,472.58942 C 222.04437,472.58947 219.5111,473.60605 217.49434,475.63919 C 215.47755,477.6724 214.41997,480.60739 214.3216,484.44415 L 214.3216,484.44415 z M 256.91992,514.54827 L 256.91992,463.48932 L 267.20058,463.48932 L 267.20058,468.94938 L 267.39734,468.94938 C 270.57826,464.91587 275.00533,462.8991 280.67857,462.89904 C 284.41696,462.8991 287.97501,464.21082 291.35274,466.83422 L 283.92509,475.68838 C 281.69513,474.01597 279.4324,473.17974 277.13691,473.1797 C 274.61181,473.17974 272.32449,474.02417 270.27494,475.71297 C 268.22535,477.40186 267.20056,480.11549 267.20058,483.85387 L 267.20058,514.54827 L 256.91992,514.54827 z M 294.74685,491.82261 L 294.74685,481.54196 L 325.09692,481.54196 L 325.09692,491.82261 L 294.74685,491.82261 z "
+       id="text1983" />
+    <path
+       style="font-size:100.73999786px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       d="M 42.266536,611.05261 L 23.574545,559.99396 L 34.445413,559.99396 L 46.39845,595.75469 L 46.595208,595.75469 L 58.597434,559.99396 L 69.468303,559.99396 L 50.727122,611.05261 L 42.266536,611.05261 z M 115.01774,589.40925 L 83.241352,589.40925 C 83.241337,593.60677 84.380892,596.75489 86.660019,598.85362 C 88.93911,600.95238 91.849483,602.00176 95.391146,602.00175 C 99.621408,602.00176 103.3598,600.36211 106.60634,597.0828 L 114.03395,603.42824 C 111.50885,606.37961 108.66406,608.48656 105.49958,609.74909 C 102.33502,611.01162 99.031136,611.64288 95.587904,611.64288 C 90.341008,611.64288 85.258103,609.94585 80.339174,606.55177 C 75.420222,603.15771 72.960752,596.2138 72.960756,585.72004 C 72.960752,575.78381 75.231663,568.91369 79.773495,565.10966 C 84.315306,561.30572 89.062083,559.40373 94.013842,559.40368 C 99.621408,559.40373 104.52395,561.34672 108.72149,565.23263 C 112.91894,569.11864 115.01769,574.35731 115.01774,580.94866 L 115.01774,589.40925 z M 83.241352,580.94866 L 104.78633,580.94866 C 104.62233,577.11192 103.54016,574.17695 101.53983,572.14375 C 99.539426,570.11063 97.030767,569.09405 94.013842,569.094 C 90.964074,569.09405 88.430819,570.11063 86.414071,572.14375 C 84.397288,574.17695 83.339716,577.11192 83.241352,580.94866 L 83.241352,580.94866 z M 125.83942,611.05261 L 125.83942,559.99396 L 136.12002,559.99396 L 136.12002,565.45399 L 136.31677,565.45399 C 139.49767,561.4205 143.92472,559.40373 149.59793,559.40368 C 153.33629,559.40373 156.89432,560.71545 160.27204,563.33884 L 152.84443,572.19294 C 150.61448,570.52054 148.35176,569.68432 146.05629,569.68428 C 143.5312,569.68432 141.2439,570.52874 139.19436,572.21754 C 137.14478,573.90641 136.12,576.62003 136.12002,580.35839 L 136.12002,611.05261 L 125.83942,611.05261 z M 164.99422,611.05261 L 164.99422,539.38358 L 175.27482,539.38358 L 175.27482,583.99841 L 175.47157,583.99841 L 195.09817,559.99396 L 207.39553,559.99396 L 189.78571,579.96487 L 209.80581,611.05261 L 196.91818,611.05261 L 183.34189,587.19572 L 175.27482,596.39415 L 175.27482,611.05261 L 164.99422,611.05261 z M 256.88011,589.40925 L 225.10373,589.40925 C 225.10371,593.60677 226.24327,596.75489 228.52239,598.85362 C 230.80148,600.95238 233.71186,602.00176 237.25352,602.00175 C 241.48378,602.00176 245.22218,600.36211 248.46871,597.0828 L 255.89632,603.42824 C 253.37122,606.37961 250.52643,608.48656 247.36195,609.74909 C 244.1974,611.01162 240.89351,611.64288 237.45028,611.64288 C 232.20338,611.64288 227.12048,609.94585 222.20155,606.55177 C 217.2826,603.15771 214.82313,596.2138 214.82313,585.72004 C 214.82313,575.78381 217.09404,568.91369 221.63587,565.10966 C 226.17768,561.30572 230.92446,559.40373 235.87622,559.40368 C 241.48378,559.40373 246.38633,561.34672 250.58386,565.23263 C 254.78132,569.11864 256.88006,574.35731 256.88011,580.94866 L 256.88011,589.40925 z M 225.10373,580.94866 L 246.64871,580.94866 C 246.4847,577.11192 245.40254,574.17695 243.4022,572.14375 C 241.4018,570.11063 238.89314,569.09405 235.87622,569.094 C 232.82645,569.09405 230.29319,570.11063 228.27644,572.14375 C 226.25966,574.17695 225.20209,577.11192 225.10373,580.94866 L 225.10373,580.94866 z M 267.7018,611.05261 L 267.7018,539.38358 L 277.9824,539.38358 L 277.9824,565.45399 L 278.17916,565.45399 C 281.36005,561.4205 285.7871,559.40373 291.46031,559.40368 C 295.42822,559.40373 299.2568,560.91221 302.94604,563.92911 C 306.63521,566.94611 308.47981,571.34036 308.47986,577.11189 L 308.47986,611.05261 L 298.19926,611.05261 L 298.19926,580.65353 C 298.19923,577.2103 297.24003,574.52128 295.32168,572.58646 C 293.40326,570.65171 291.01757,569.68432 288.16461,569.68428 C 285.21322,569.68432 282.77835,570.65171 280.85998,572.58646 C 278.94157,574.52128 277.98238,577.2103 277.9824,580.65353 L 277.9824,611.05261 L 267.7018,611.05261 z M 321.81019,611.05261 L 321.81019,559.99396 L 332.09078,559.99396 L 332.09078,565.45399 L 332.28754,565.45399 C 335.46844,561.4205 339.89548,559.40373 345.56869,559.40368 C 349.30705,559.40373 352.86509,560.71545 356.2428,563.33884 L 348.81519,572.19294 C 346.58524,570.52054 344.32253,569.68432 342.02705,569.68428 C 339.50197,569.68432 337.21466,570.52874 335.16512,572.21754 C 333.11554,573.90641 332.09076,576.62003 332.09078,580.35839 L 332.09078,611.05261 L 321.81019,611.05261 z "
+       id="text1987" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-36.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-36.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-36.svg	(revision 21967)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1026-36.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="56.694665"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g4007"
+     transform="translate(178.0324,-330.0984)">
+    <path
+       id="text2001"
+       style="font-size:94.86149597px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M -43.60527,449.35091 L -70.54561,449.35091 L -70.54561,386.07904 L -61.53365,386.07904 L -61.53365,440.24342 L -43.60527,440.24342 L -43.60527,449.35091 z M -37.39851,444.609 C -37.8424,443.8486 -38.12755,443.01003 -38.25396,442.09329 C -38.38038,441.17657 -38.44358,440.14886 -38.44358,439.01018 L -38.44358,433.88902 C -38.44358,430.5367 -37.6055,428.03836 -35.92932,426.39401 C -34.25316,424.74971 -32.73525,423.62744 -31.37558,423.0272 C -30.01593,422.427 -28.38753,422.12689 -26.49036,422.12687 L -20.41967,422.12687 L -20.41967,418.23606 C -20.41969,417.35024 -20.46697,416.62313 -20.56152,416.05472 C -20.65611,415.48638 -21.05127,414.75927 -21.747,413.87338 C -22.44277,412.98757 -23.39183,412.54464 -24.59417,412.54461 C -25.85831,412.54464 -26.9333,412.95572 -27.81914,413.77785 C -28.70501,414.60005 -29.2425,415.67504 -29.43162,417.00282 L -38.44358,417.00282 C -38.44358,413.33593 -37.13121,410.19009 -34.50646,407.5653 C -31.88172,404.9406 -28.70404,403.62823 -24.97341,403.62818 C -21.30457,403.62823 -18.11049,404.92468 -15.39115,407.51754 C -12.67186,410.11048 -11.31221,413.27224 -11.31217,417.00282 L -11.31217,449.35091 L -20.41967,449.35091 L -20.41967,444.79717 C -21.3673,446.37781 -22.55278,447.62698 -23.9761,448.54467 C -25.39947,449.46237 -26.99699,449.92122 -28.76868,449.92122 C -32.75213,449.92122 -35.62874,448.15048 -37.39851,444.609 L -37.39851,444.609 z M -29.33609,433.79349 L -29.33609,436.06891 C -29.3361,437.27129 -28.9091,438.36268 -28.05508,439.34309 C -27.20108,440.32352 -26.0793,440.81373 -24.68971,440.81373 C -23.92932,440.81373 -23.21716,440.62412 -22.55324,440.24487 C -21.88935,439.86564 -21.3837,439.34407 -21.03629,438.68015 C -20.68892,438.01626 -20.4993,437.16225 -20.46743,436.11813 C -20.43561,435.07403 -20.41969,434.331 -20.41967,433.88902 L -20.41967,429.52345 L -23.8357,429.52345 C -25.48004,429.52347 -26.80786,429.83998 -27.81914,430.47299 C -28.83045,431.10603 -29.3361,432.21287 -29.33609,433.79349 L -29.33609,433.79349 z M 22.29812,408.27457 C 22.80566,409.03501 23.15402,409.95271 23.34319,411.02765 C 23.53229,412.10268 23.62686,413.17767 23.62689,414.25262 L 23.62689,449.35091 L 14.5194,449.35091 L 14.5194,417.57312 C 14.51938,414.22081 13.03331,412.54464 10.06119,412.54461 C 8.73336,412.54464 7.65837,413.05077 6.83622,414.063 C 6.01405,415.0753 5.60297,416.24534 5.60298,417.57312 L 5.60298,449.35091 L -3.50451,449.35091 L -3.50451,404.19559 L 5.60298,404.19559 L 5.60298,408.56116 C 7.62749,405.27255 10.44234,403.62823 14.04753,403.62818 C 17.71443,403.62823 20.46462,405.17702 22.29812,408.27457 L 22.29812,408.27457 z M 49.34846,449.35091 L 49.34846,444.70163 C 48.46259,446.22052 47.29255,447.47017 45.83834,448.45059 C 44.3841,449.43101 42.77113,449.92122 40.99944,449.92122 C 36.88861,449.92122 34.29571,448.79846 33.22073,446.55295 C 32.14574,444.30744 31.56096,442.69448 31.4664,441.71405 C 31.37182,440.73364 31.32454,439.42127 31.32454,437.77693 L 31.32454,413.39861 C 31.32454,410.67934 32.24127,408.3711 34.07474,406.47391 C 35.90819,404.5768 38.21643,403.62823 40.99944,403.62818 C 42.70744,403.62823 44.30449,404.07067 45.79057,404.95551 C 47.27662,405.84044 48.46259,407.01048 49.34846,408.46563 L 49.34846,386.07904 L 58.45595,386.07904 L 58.45595,449.35091 L 49.34846,449.35091 z M 48.68262,414.72739 C 47.79868,413.20855 46.50271,412.44911 44.79471,412.44907 C 43.90884,412.44911 43.1026,412.68649 42.37599,413.16123 C 41.64934,413.63603 41.15913,414.20537 40.90536,414.86924 C 40.65155,415.53319 40.50922,416.22894 40.47835,416.9565 C 40.44746,417.68413 40.43202,418.23706 40.43203,418.6153 L 40.43203,434.83567 C 40.43202,435.46871 40.44746,436.10174 40.47835,436.73475 C 40.50922,437.36779 40.80933,438.18995 41.37868,439.20124 C 41.948,440.21255 43.11853,440.7182 44.89025,440.71819 C 46.72369,440.7182 47.92509,440.21255 48.49445,439.20124 C 49.06377,438.18995 49.34844,437.17769 49.34846,436.16445 L 49.34846,434.83567 L 49.34846,418.6153 C 49.34844,417.98231 49.33251,417.33384 49.30069,416.6699 C 49.26883,416.00603 49.0628,415.35852 48.68262,414.72739 L 48.68262,414.72739 z M 91.58279,449.35091 L 86.46163,422.21951 L 81.33758,449.35091 L 73.46623,449.35091 L 62.65073,404.19559 L 72.23299,404.19559 L 77.92445,432.27654 L 83.0456,404.19559 L 89.6866,404.19559 L 94.90329,432.27654 L 100.50211,404.19559 L 110.08147,404.19559 L 99.3615,449.35091 L 91.58279,449.35091 z M 114.2415,449.35091 L 114.2415,404.19559 L 123.34899,404.19559 L 123.34899,449.35091 L 114.2415,449.35091 z M 114.2415,394.99546 L 114.2415,386.07904 L 123.34899,386.07904 L 123.34899,394.99546 L 114.2415,394.99546 z M 152.15657,403.62818 L 152.15657,412.92384 C 151.71459,412.79843 151.27214,412.70386 150.82924,412.64014 C 150.38629,412.57649 149.97473,412.54464 149.59455,412.54461 C 146.62239,412.54464 144.346,413.55642 142.76538,415.57995 C 141.18472,417.60355 140.39441,420.03868 140.39442,422.88534 L 140.39442,449.35091 L 131.28693,449.35091 L 131.28693,404.19559 L 140.39442,404.19559 L 140.39442,409.03593 C 141.97504,407.07513 143.91948,405.68363 146.22773,404.86143 C 148.53594,404.03931 150.51222,403.62823 152.15657,403.62818 L 152.15657,403.62818 z M 171.34715,440.71819 L 173.43441,440.71819 L 173.43441,449.35091 L 170.58868,449.35091 C 168.88065,449.35091 167.36273,449.17722 166.03493,448.82982 C 164.70711,448.48243 163.41066,447.77076 162.14558,446.6948 C 160.88048,445.61885 159.99511,444.43289 159.48947,443.13692 C 158.98381,441.84096 158.73099,440.2444 158.73099,438.34723 L 158.73099,411.31136 L 154.27278,411.31136 L 154.27278,404.19559 L 158.73099,404.19559 L 158.73099,390.53725 L 167.83848,390.53725 L 167.83848,404.19559 L 173.43441,404.19559 L 173.43441,411.31136 L 167.83848,411.31136 L 167.83848,436.73475 C 167.83847,438.25171 168.04401,439.29486 168.45511,439.86418 C 168.86617,440.43353 169.83019,440.7182 171.34715,440.71819 L 171.34715,440.71819 z M 181.0539,428.95604 L 181.0539,419.94408 L 208.08977,419.94408 L 208.08977,428.95604 L 181.0539,428.95604 z " />
+    <path
+       id="path3999"
+       style="font-size:94.86100006px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M -88.281728,533.99694 C -86.89025,533.99694 -85.688856,533.5545 -84.677543,532.66961 C -83.666268,531.78474 -83.160621,530.64655 -83.160601,529.25504 C -83.160621,527.61074 -83.58714,526.39342 -84.440159,525.60309 C -85.293216,524.81279 -86.637426,524.10113 -88.472794,523.46808 L -90.273439,522.80514 C -92.170593,522.10845 -93.751705,521.42814 -95.016778,520.76422 C -96.281869,520.10034 -97.641519,518.89895 -99.095732,517.16004 C -100.54995,515.42118 -101.27706,512.90742 -101.27706,509.61875 C -101.27706,505.88819 -99.980619,502.72645 -97.387724,500.13352 C -94.794843,497.54067 -91.601258,496.24423 -87.80696,496.24418 C -84.329206,496.24423 -81.388927,497.57203 -78.986115,500.2276 C -76.58335,502.88325 -75.38196,505.88722 -75.38193,509.23951 L -83.728007,509.23951 C -83.728027,507.91174 -84.155028,506.82084 -85.009012,505.9668 C -85.863034,505.11283 -86.985782,504.68583 -88.377261,504.68579 C -89.641394,504.68583 -90.684532,505.16011 -91.506678,506.10865 C -92.328849,507.05725 -92.739928,508.19544 -92.739917,509.52322 C -92.739928,510.91474 -92.328849,511.99021 -91.506678,512.74961 C -90.684532,513.50908 -89.483138,514.17346 -87.902493,514.74277 L -84.961246,515.68941 C -83.253259,516.32246 -81.909531,516.92364 -80.930059,517.49295 C -79.950632,518.06231 -78.9707,518.91583 -77.990259,520.05352 C -77.00987,521.19124 -76.20315,522.51905 -75.5701,524.03694 C -74.9371,525.55486 -74.62059,527.16782 -74.62056,528.87581 C -74.62059,532.54466 -75.93296,535.75416 -78.557665,538.50434 C -81.182423,541.25452 -84.329206,542.62961 -87.998025,542.62961 C -90.211694,542.62961 -92.440786,542.02891 -94.685309,540.82752 C -96.92985,539.62613 -98.668735,537.99773 -99.901969,535.94233 C -101.13521,533.88694 -101.75183,531.56328 -101.75183,528.97134 L -93.310218,528.97134 C -93.310229,530.36285 -92.820021,531.54832 -91.839595,532.52776 C -90.859192,533.50722 -89.673238,533.99694 -88.281728,533.99694 L -88.281728,533.99694 z M -42.17132,528.97134 C -42.17135,532.70195 -43.531,535.89553 -46.25027,538.55211 C -48.9696,541.20869 -52.19551,542.53697 -55.92801,542.53697 C -57.95062,542.53697 -59.95825,542.01492 -61.95091,540.97082 C -63.9436,539.92672 -65.44558,538.67756 -66.45687,537.22333 C -67.46817,535.76912 -68.17935,534.28306 -68.59043,532.76514 C -69.00151,531.24725 -69.20705,529.69798 -69.20705,528.11734 L -69.20705,510.47275 C -69.20705,506.74219 -67.92653,503.43812 -65.36548,500.56052 C -62.80444,497.683 -59.62678,496.24423 -55.83248,496.24418 C -51.91084,496.24423 -48.65357,497.63524 -46.06065,500.41722 C -43.46779,503.19928 -42.17135,506.55112 -42.17132,510.47275 L -51.18323,510.47275 C -51.18325,509.08129 -51.57841,507.84805 -52.3687,506.77303 C -53.15903,505.69809 -54.24994,505.1606 -55.64142,505.16056 C -56.46359,505.1606 -57.17526,505.33429 -57.77643,505.68165 C -58.37762,506.02907 -58.91511,506.56656 -59.3889,507.29412 C -59.86272,508.02175 -60.09962,509.08129 -60.0996,510.47275 L -60.0996,528.11734 C -60.09962,529.76167 -59.75174,531.05811 -59.05598,532.00667 C -58.36025,532.95525 -57.19118,533.42954 -55.54878,533.42953 C -54.21906,533.42954 -53.15903,532.93933 -52.3687,531.95891 C -51.57841,530.9785 -51.18325,529.79255 -51.18323,528.40104 L -42.17132,528.40104 L -42.17132,528.97134 z M -18.00736,496.24418 C -16.36306,496.24423 -14.81331,496.68667 -13.3581,497.57151 C -11.90295,498.45643 -10.85932,499.48413 -10.22724,500.6546 C -9.59521,501.82516 -9.20005,502.8215 -9.04176,503.64362 C -8.88354,504.46581 -8.80441,505.5408 -8.80438,506.86857 L -8.80438,541.96667 L -17.91182,541.96667 L -17.91182,510.28169 C -17.91184,508.76478 -18.25972,507.53202 -18.95544,506.58342 C -19.65121,505.63488 -20.75756,505.1606 -22.27448,505.16056 C -23.6023,505.1606 -24.69321,505.68216 -25.5472,506.72527 C -26.40121,507.76844 -26.82821,508.95391 -26.8282,510.28169 L -26.8282,541.96667 L -35.93564,541.96667 L -35.93564,478.69513 L -26.8282,478.69513 L -26.8282,501.17714 C -24.74194,497.88854 -21.80166,496.24423 -18.00736,496.24418 L -18.00736,496.24418 z M -0.44672,537.22478 C -0.89062,536.46439 -1.17577,535.62582 -1.30217,534.70909 C -1.42859,533.79237 -1.4918,532.76467 -1.49179,531.62599 L -1.49179,526.50486 C -1.4918,523.15256 -0.65371,520.65423 1.02245,519.00989 C 2.69861,517.3656 4.21651,516.24333 5.57617,515.64309 C 6.93581,515.0429 8.56421,514.7428 10.46137,514.74277 L 16.53203,514.74277 L 16.53203,510.85199 C 16.53201,509.96617 16.48472,509.23906 16.39018,508.67066 C 16.29559,508.10232 15.90043,507.37521 15.20471,506.48933 C 14.50894,505.60352 13.55989,505.1606 12.35754,505.16056 C 11.09341,505.1606 10.01843,505.57168 9.13259,506.3938 C 8.24673,507.21599 7.70924,508.29097 7.52012,509.61875 L -1.49179,509.61875 C -1.4918,505.95188 -0.17943,502.80606 2.44531,500.18128 C 5.07004,497.55659 8.2477,496.24423 11.97831,496.24418 C 15.64713,496.24423 18.84119,497.54067 21.56052,500.13352 C 24.27979,502.72645 25.63944,505.88819 25.63947,509.61875 L 25.63947,541.96667 L 16.53203,541.96667 L 16.53203,537.41295 C 15.5844,538.99359 14.39893,540.24275 12.97561,541.16044 C 11.55225,542.07813 9.95474,542.53697 8.18306,542.53697 C 4.19963,542.53697 1.32304,540.76624 -0.44672,537.22478 L -0.44672,537.22478 z M 7.61565,526.40933 L 7.61565,528.68474 C 7.61564,529.88712 8.04264,530.9785 8.89666,531.95891 C 9.75065,532.93933 10.87243,533.42954 12.26201,533.42953 C 13.02239,533.42954 13.73455,533.23992 14.39847,532.86068 C 15.06235,532.48145 15.568,531.95988 15.91541,531.29597 C 16.26278,530.63208 16.4524,529.77807 16.48426,528.73396 C 16.51609,527.68987 16.53201,526.94684 16.53203,526.50486 L 16.53203,522.13931 L 13.11601,522.13931 C 11.47168,522.13933 10.14387,522.45584 9.13259,523.08885 C 8.12129,523.72189 7.61564,524.82872 7.61565,526.40933 L 7.61565,526.40933 z M 35.53434,541.96667 L 35.53434,504.02285 L 31.07616,504.02285 L 31.07616,496.81159 L 35.53434,496.81159 L 35.53434,490.55275 C 35.53434,487.01135 36.4197,484.38661 38.19044,482.67855 C 39.96116,480.9706 41.60548,479.8797 43.1234,479.40583 C 44.64129,478.93209 46.31793,478.69519 48.15334,478.69513 L 51.28275,478.69513 L 51.28275,487.0412 L 47.96227,487.0412 C 45.7486,487.04126 44.64177,488.21177 44.64179,490.55275 L 44.64179,496.81159 L 51.28275,496.81159 L 51.28275,504.02285 L 44.64179,504.02285 L 44.64179,541.96667 L 35.53434,541.96667 z M 69.34131,533.334 L 71.42856,533.334 L 71.42856,541.96667 L 68.58284,541.96667 C 66.87482,541.96667 65.35692,541.79298 64.02912,541.44559 C 62.7013,541.0982 61.40486,540.38653 60.13979,539.31058 C 58.8747,538.23463 57.98933,537.04868 57.48369,535.75271 C 56.97804,534.45676 56.72521,532.8602 56.72522,530.96305 L 56.72522,503.92732 L 52.26703,503.92732 L 52.26703,496.81159 L 56.72522,496.81159 L 56.72522,483.15332 L 65.83266,483.15332 L 65.83266,496.81159 L 71.42856,496.81159 L 71.42856,503.92732 L 65.83266,503.92732 L 65.83266,529.35058 C 65.83265,530.86753 66.03819,531.91067 66.44928,532.47999 C 66.86035,533.04934 67.82436,533.33401 69.34131,533.334 L 69.34131,533.334 z M 87.30145,478.69513 L 87.30145,528.97134 C 87.30143,530.4883 87.55426,531.59464 88.05992,532.29038 C 88.56555,532.98613 89.57781,533.33401 91.0967,533.334 L 91.75963,533.334 L 91.75963,541.96667 L 89.76792,541.96667 C 88.31273,541.96667 86.95308,541.80842 85.68897,541.49191 C 84.42484,541.17539 83.16024,540.52741 81.89517,539.54796 C 80.63008,538.56851 79.69695,537.30391 79.09577,535.75416 C 78.49459,534.20441 78.194,532.54369 78.194,530.77199 L 78.194,478.69513 L 87.30145,478.69513 z M 97.27736,541.96667 L 97.27736,496.81159 L 106.3848,496.81159 L 106.3848,541.96667 L 97.27736,541.96667 z M 97.27736,487.61151 L 97.27736,478.69513 L 106.3848,478.69513 L 106.3848,487.61151 L 97.27736,487.61151 z M 140.69549,528.97134 C 140.69546,532.70195 139.33581,535.89553 136.61653,538.55211 C 133.89721,541.20869 130.6713,542.53697 126.93879,542.53697 C 124.91619,542.53697 122.90856,542.01492 120.91589,540.97082 C 118.92321,539.92672 117.42123,538.67756 116.40994,537.22333 C 115.39864,535.76912 114.68745,534.28306 114.27638,532.76514 C 113.86529,531.24725 113.65975,529.69798 113.65976,528.11734 L 113.65976,510.47275 C 113.65975,506.74219 114.94027,503.43812 117.50133,500.56052 C 120.06236,497.683 123.24002,496.24423 127.03432,496.24418 C 130.95596,496.24423 134.21324,497.63524 136.80615,500.41722 C 139.39901,503.19928 140.69546,506.55112 140.69549,510.47275 L 131.68358,510.47275 C 131.68356,509.08129 131.2884,507.84805 130.4981,506.77303 C 129.70777,505.69809 128.61687,505.1606 127.22539,505.16056 C 126.40321,505.1606 125.69154,505.33429 125.09038,505.68165 C 124.48918,506.02907 123.95169,506.56656 123.4779,507.29412 C 123.00409,508.02175 122.76719,509.08129 122.7672,510.47275 L 122.7672,528.11734 C 122.76719,529.76167 123.11506,531.05811 123.81082,532.00667 C 124.50655,532.95525 125.67562,533.42954 127.31803,533.42953 C 128.64774,533.42954 129.70777,532.93933 130.4981,531.95891 C 131.2884,530.9785 131.68356,529.79255 131.68358,528.40104 L 140.69549,528.40104 L 140.69549,528.97134 z M 164.85946,496.24418 C 166.50375,496.24423 168.0535,496.68667 169.50871,497.57151 C 170.96387,498.45643 172.00749,499.48413 172.63958,500.6546 C 173.27161,501.82516 173.66676,502.8215 173.82505,503.64362 C 173.98328,504.46581 174.0624,505.5408 174.06243,506.86857 L 174.06243,541.96667 L 164.95499,541.96667 L 164.95499,510.28169 C 164.95497,508.76478 164.6071,507.53202 163.91137,506.58342 C 163.2156,505.63488 162.10926,505.1606 160.59233,505.16056 C 159.26451,505.1606 158.17361,505.68216 157.31962,506.72527 C 156.4656,507.76844 156.0386,508.95391 156.03861,510.28169 L 156.03861,541.96667 L 146.93117,541.96667 L 146.93117,478.69513 L 156.03861,478.69513 L 156.03861,501.17714 C 158.12488,497.88854 161.06515,496.24423 164.85946,496.24418 L 164.85946,496.24418 z M 194.74958,533.334 C 196.0793,533.33401 197.15477,532.92293 197.97598,532.10076 C 198.79715,531.27861 199.30328,530.20363 199.49437,528.87581 L 208.50628,528.87581 L 208.50628,529.91798 C 208.50625,531.30949 208.20566,532.70098 207.60451,534.09247 C 207.0033,535.48397 205.75414,537.23926 203.85702,539.35834 C 201.95986,541.47743 198.98774,542.53697 194.94065,542.53697 C 192.34678,542.53697 189.95895,541.84123 187.77715,540.44973 C 185.59533,539.05824 184.09335,537.52441 183.27119,535.84824 C 182.44903,534.17209 181.92746,532.65418 181.70648,531.29452 C 181.4855,529.93488 181.37501,528.59115 181.37501,527.26333 L 181.37501,510.09352 C 181.37501,506.36295 182.71874,503.12209 185.4062,500.3709 C 188.09365,497.6198 191.30364,496.24423 195.03618,496.24418 C 198.89413,496.24423 202.10364,497.58795 204.66471,500.27537 C 207.22573,502.96287 208.50625,506.23558 208.50628,510.09352 L 208.50628,522.61408 L 190.48246,522.61408 L 190.48246,529.35058 C 190.48245,530.2982 190.94081,531.199 191.85755,532.05299 C 192.77426,532.90701 193.73827,533.33401 194.74958,533.334 L 194.74958,533.334 z M 194.94065,505.16056 C 193.73827,505.1606 192.69465,505.57168 191.80978,506.3938 C 190.92489,507.21599 190.48245,508.67021 190.48246,510.75645 L 190.48246,515.21464 L 199.39884,515.21464 L 199.39884,510.75645 C 199.39881,509.11217 199.05094,507.76844 198.35521,506.72527 C 197.65945,505.68216 196.52126,505.1606 194.94065,505.16056 L 194.94065,505.16056 z M 236.53787,496.24418 L 236.53787,505.53979 C 236.09589,505.41438 235.65345,505.31982 235.21055,505.25609 C 234.7676,505.19244 234.35604,505.1606 233.97586,505.16056 C 231.00372,505.1606 228.72734,506.17237 227.14673,508.19589 C 225.56608,510.21948 224.77577,512.65459 224.77578,515.50124 L 224.77578,541.96667 L 215.66834,541.96667 L 215.66834,496.81159 L 224.77578,496.81159 L 224.77578,501.65191 C 226.3564,499.69112 228.30082,498.29962 230.60906,497.47742 C 232.91726,496.65531 234.89353,496.24423 236.53787,496.24418 L 236.53787,496.24418 z " />
+    <path
+       id="path4001"
+       style="font-size:94.86100006px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M -97.402092,633.54754 L -110.30189,570.276 L -100.81811,570.276 L -93.511308,614.19495 L -86.019235,570.276 L -76.43702,570.276 L -89.62342,633.54754 L -97.402092,633.54754 z M -59.25563,624.91487 C -57.92591,624.91488 -56.85044,624.5038 -56.02923,623.68163 C -55.20806,622.85948 -54.70193,621.7845 -54.51084,620.45668 L -45.49893,620.45668 L -45.49893,621.49885 C -45.49896,622.89036 -45.79955,624.28185 -46.4007,625.67334 C -47.00191,627.06484 -48.25107,628.82013 -50.14818,630.93921 C -52.04535,633.0583 -55.01747,634.11785 -59.06456,634.11785 C -61.65843,634.11785 -64.04626,633.4221 -66.22806,632.0306 C -68.40988,630.63911 -69.91186,629.10528 -70.73402,627.42911 C -71.55618,625.75296 -72.07775,624.23505 -72.29872,622.87539 C -72.51971,621.51575 -72.6302,620.17203 -72.63019,618.84421 L -72.63019,601.67439 C -72.6302,597.94383 -71.28647,594.70296 -68.59901,591.95177 C -65.91156,589.20067 -62.70157,587.8251 -58.96903,587.82505 C -55.11108,587.8251 -51.90157,589.16883 -49.3405,591.85624 C -46.77948,594.54374 -45.49896,597.81645 -45.49893,601.67439 L -45.49893,614.19495 L -63.52275,614.19495 L -63.52275,620.93145 C -63.52276,621.87907 -63.0644,622.77987 -62.14766,623.63386 C -61.23095,624.48788 -60.26694,624.91488 -59.25563,624.91487 L -59.25563,624.91487 z M -59.06456,596.74143 C -60.26694,596.74147 -61.31056,597.15255 -62.19543,597.97467 C -63.08032,598.79686 -63.52276,600.25108 -63.52275,602.33733 L -63.52275,606.79552 L -54.60637,606.79552 L -54.60637,602.33733 C -54.60639,600.69304 -54.95427,599.34931 -55.64999,598.30614 C -56.34576,597.26304 -57.48395,596.74147 -59.06456,596.74143 L -59.06456,596.74143 z M -17.46734,587.82505 L -17.46734,597.12067 C -17.90932,596.99526 -18.35176,596.90069 -18.79466,596.83696 C -19.23761,596.77331 -19.64917,596.74147 -20.02935,596.74143 C -23.0015,596.74147 -25.27787,597.75324 -26.85849,599.77676 C -28.43913,601.80035 -29.22945,604.23546 -29.22943,607.08211 L -29.22943,633.54754 L -38.33688,633.54754 L -38.33688,588.39246 L -29.22943,588.39246 L -29.22943,593.23278 C -27.64882,591.27199 -25.70439,589.88049 -23.39615,589.05829 C -21.08795,588.23618 -19.11168,587.8251 -17.46734,587.82505 L -17.46734,587.82505 z M -11.84249,633.54754 L -11.84249,570.276 L -2.73505,570.276 L -2.73505,607.93612 L 8.64781,588.39246 L 17.65972,588.39246 L 6.9398,606.32364 L 19.8425,633.54754 L 9.69288,633.54754 L 1.81867,614.29048 L -2.73505,621.02698 L -2.73505,633.54754 L -11.84249,633.54754 z M 36.9023,624.91487 C 38.23202,624.91488 39.30748,624.5038 40.1287,623.68163 C 40.94987,622.85948 41.456,621.7845 41.64709,620.45668 L 50.659,620.45668 L 50.659,621.49885 C 50.65897,622.89036 50.35838,624.28185 49.75723,625.67334 C 49.15602,627.06484 47.90686,628.82013 46.00974,630.93921 C 44.11257,633.0583 41.14045,634.11785 37.09336,634.11785 C 34.49949,634.11785 32.11166,633.4221 29.92986,632.0306 C 27.74805,630.63911 26.24606,629.10528 25.42391,627.42911 C 24.60174,625.75296 24.08018,624.23505 23.8592,622.87539 C 23.63822,621.51575 23.52773,620.17203 23.52773,618.84421 L 23.52773,601.67439 C 23.52773,597.94383 24.87146,594.70296 27.55892,591.95177 C 30.24637,589.20067 33.45636,587.8251 37.1889,587.82505 C 41.04685,587.8251 44.25636,589.16883 46.81743,591.85624 C 49.37844,594.54374 50.65897,597.81645 50.659,601.67439 L 50.659,614.19495 L 32.63517,614.19495 L 32.63517,620.93145 C 32.63516,621.87907 33.09353,622.77987 34.01026,623.63386 C 34.92698,624.48788 35.89099,624.91488 36.9023,624.91487 L 36.9023,624.91487 z M 37.09336,596.74143 C 35.89099,596.74147 34.84737,597.15255 33.9625,597.97467 C 33.0776,598.79686 32.63516,600.25108 32.63517,602.33733 L 32.63517,606.79552 L 41.55155,606.79552 L 41.55155,602.33733 C 41.55153,600.69304 41.20366,599.34931 40.50793,598.30614 C 39.81216,597.26304 38.67398,596.74147 37.09336,596.74143 L 37.09336,596.74143 z M 75.74934,587.82505 C 77.39364,587.8251 78.94339,588.26754 80.3986,589.15238 C 81.85375,590.0373 82.89737,591.065 83.52946,592.23548 C 84.16149,593.40603 84.55665,594.40237 84.71493,595.22449 C 84.87316,596.04669 84.95229,597.12167 84.95232,598.44944 L 84.95232,633.54754 L 75.84487,633.54754 L 75.84487,601.86256 C 75.84485,600.34565 75.49698,599.11289 74.80125,598.16429 C 74.10549,597.21575 72.99914,596.74147 71.48222,596.74143 C 70.15439,596.74147 69.06349,597.26304 68.2095,598.30614 C 67.35548,599.34931 66.92848,600.53478 66.9285,601.86256 L 66.9285,633.54754 L 57.82105,633.54754 L 57.82105,570.276 L 66.9285,570.276 L 66.9285,592.75801 C 69.01476,589.46942 71.95504,587.8251 75.74934,587.82505 L 75.74934,587.82505 z M 113.89291,587.82505 L 113.89291,597.12067 C 113.45092,596.99526 113.00848,596.90069 112.56558,596.83696 C 112.12263,596.77331 111.71107,596.74147 111.33089,596.74143 C 108.35875,596.74147 106.08237,597.75324 104.50176,599.77676 C 102.92111,601.80035 102.1308,604.23546 102.13081,607.08211 L 102.13081,633.54754 L 93.02337,633.54754 L 93.02337,588.39246 L 102.13081,588.39246 L 102.13081,593.23278 C 103.71143,591.27199 105.65585,589.88049 107.96409,589.05829 C 110.27229,588.23618 112.24856,587.8251 113.89291,587.82505 L 113.89291,587.82505 z M 154.85904,633.54754 L 154.85904,595.60372 L 150.40085,595.60372 L 150.40085,588.39246 L 154.85904,588.39246 L 154.85904,582.13362 C 154.85904,578.59222 155.7444,575.96748 157.51514,574.25942 C 159.28586,572.55147 160.93018,571.46057 162.4481,570.9867 C 163.96599,570.51296 165.64263,570.27606 167.47803,570.276 L 170.60745,570.276 L 170.60745,578.62208 L 167.28697,578.62208 C 165.0733,578.62213 163.96647,579.79265 163.96649,582.13362 L 163.96649,588.39246 L 170.60745,588.39246 L 170.60745,595.60372 L 163.96649,595.60372 L 163.96649,633.54754 L 154.85904,633.54754 z M 195.9699,587.82505 L 195.9699,597.12067 C 195.52792,596.99526 195.08548,596.90069 194.64258,596.83696 C 194.19963,596.77331 193.78807,596.74147 193.40789,596.74143 C 190.43574,596.74147 188.15937,597.75324 186.57875,599.77676 C 184.99811,601.80035 184.2078,604.23546 184.20781,607.08211 L 184.20781,633.54754 L 175.10037,633.54754 L 175.10037,588.39246 L 184.20781,588.39246 L 184.20781,593.23278 C 185.78842,591.27199 187.73285,589.88049 190.04109,589.05829 C 192.34929,588.23618 194.32556,587.8251 195.9699,587.82505 L 195.9699,587.82505 z M 214.21085,624.91487 C 215.54057,624.91488 216.61603,624.5038 217.43724,623.68163 C 218.25842,622.85948 218.76455,621.7845 218.95563,620.45668 L 227.96754,620.45668 L 227.96754,621.49885 C 227.96751,622.89036 227.66692,624.28185 227.06577,625.67334 C 226.46456,627.06484 225.2154,628.82013 223.31829,630.93921 C 221.42112,633.0583 218.449,634.11785 214.40191,634.11785 C 211.80804,634.11785 209.42021,633.4221 207.23841,632.0306 C 205.05659,630.63911 203.55461,629.10528 202.73246,627.42911 C 201.91029,625.75296 201.38872,624.23505 201.16775,622.87539 C 200.94677,621.51575 200.83628,620.17203 200.83628,618.84421 L 200.83628,601.67439 C 200.83628,597.94383 202.18,594.70296 204.86747,591.95177 C 207.55491,589.20067 210.7649,587.8251 214.49744,587.82505 C 218.3554,587.8251 221.5649,589.16883 224.12597,591.85624 C 226.68699,594.54374 227.96751,597.81645 227.96754,601.67439 L 227.96754,614.19495 L 209.94372,614.19495 L 209.94372,620.93145 C 209.94371,621.87907 210.40207,622.77987 211.31881,623.63386 C 212.23553,624.48788 213.19954,624.91488 214.21085,624.91487 L 214.21085,624.91487 z M 214.40191,596.74143 C 213.19954,596.74147 212.15592,597.15255 211.27105,597.97467 C 210.38615,598.79686 209.94371,600.25108 209.94372,602.33733 L 209.94372,606.79552 L 218.8601,606.79552 L 218.8601,602.33733 C 218.86008,600.69304 218.51221,599.34931 217.81648,598.30614 C 217.12071,597.26304 215.98252,596.74147 214.40191,596.74143 L 214.40191,596.74143 z M 235.1296,633.54754 L 235.1296,588.39246 L 244.23704,588.39246 L 244.23704,633.54754 L 235.1296,633.54754 z M 235.1296,579.19238 L 235.1296,570.276 L 244.23704,570.276 L 244.23704,579.19238 L 235.1296,579.19238 z " />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-37.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-37.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-37.svg	(revision 21967)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1026-37.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="74.730949"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g3981"
+     transform="translate(-196.4117,-340.0425)">
+    <path
+       id="text2023"
+       style="font-size:94.05919647px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M 298.16712,459.38275 L 298.16712,396.646 L 324.87961,396.646 L 324.87961,405.11098 L 307.00813,405.11098 L 307.00813,423.9211 L 322.71528,423.9211 L 322.71528,432.29423 L 307.00813,432.29423 L 307.00813,459.38275 L 298.16712,459.38275 z M 334.02202,419.21929 C 335.3386,417.58891 336.89056,416.31921 338.67791,415.41019 C 340.46523,414.50126 342.39322,414.04677 344.46188,414.04672 C 346.78119,414.04677 348.83453,414.47016 350.62189,415.3169 C 352.4092,416.16373 354.08698,417.62144 355.65524,419.69004 C 357.22343,421.75873 358.00755,424.45504 358.00758,427.779 L 358.00758,445.65047 C 358.00755,449.03571 357.25501,451.74734 355.74996,453.78535 C 354.24486,455.82338 352.55177,457.36003 350.67068,458.39531 C 348.78956,459.43059 346.87687,459.94823 344.93264,459.94823 C 342.2363,459.94823 339.77489,459.27415 337.54838,457.92599 C 335.32185,456.57784 333.7852,455.07276 332.93842,453.41076 C 332.09163,451.74877 331.57447,450.36904 331.38694,449.27156 C 331.1994,448.1741 331.10563,446.96707 331.10564,445.65047 L 331.10564,427.779 C 331.10563,424.39189 332.07776,421.53866 334.02202,419.21929 L 334.02202,419.21929 z M 344.64846,422.79301 C 343.27063,422.79305 342.17411,423.26332 341.35891,424.20384 C 340.54369,425.14443 340.13609,426.33615 340.1361,427.779 L 340.1361,445.65047 C 340.13609,447.09337 340.5279,448.33197 341.31155,449.36628 C 342.09517,450.40061 343.20748,450.91777 344.64846,450.91777 C 346.5927,450.91777 347.8002,450.35325 348.27098,449.2242 C 348.74171,448.09516 348.97709,446.84077 348.97711,445.46102 L 348.97711,427.779 C 348.97709,426.3993 348.58527,425.22337 347.80166,424.2512 C 347.01801,423.27911 345.96694,422.79305 344.64846,422.79301 L 344.64846,422.79301 z M 385.89121,414.04672 L 385.89121,423.26377 C 385.45297,423.13941 385.01426,423.04565 384.57511,422.98246 C 384.1359,422.91935 383.72782,422.88777 383.35086,422.88774 C 380.40383,422.88777 378.1467,423.891 376.57944,425.89741 C 375.01216,427.90389 374.22853,430.31842 374.22854,433.14101 L 374.22854,459.38275 L 365.19808,459.38275 L 365.19808,414.60933 L 374.22854,414.60933 L 374.22854,419.40874 C 375.79579,417.46452 377.72378,416.08479 380.01251,415.26954 C 382.30121,414.45437 384.26077,414.04677 385.89121,414.04672 L 385.89121,414.04672 z M 402.94461,451.48038 C 404.32433,451.48038 405.51557,451.04168 406.51833,450.16427 C 407.52106,449.28688 408.02243,448.15831 408.02245,446.77856 C 408.02243,445.14816 407.59952,443.94113 406.75371,443.15748 C 405.90786,442.37386 404.57501,441.66821 402.75516,441.04052 L 400.96973,440.38318 C 399.08861,439.69238 397.52087,439.01782 396.26649,438.35951 C 395.01209,437.70124 393.66393,436.51 392.22201,434.78579 C 390.78008,433.06162 390.05912,430.56911 390.05912,427.30824 C 390.05912,423.60921 391.3446,420.4742 393.91558,417.90318 C 396.48655,415.33225 399.65314,414.04677 403.41536,414.04672 C 406.86372,414.04677 409.77915,415.36335 412.16165,417.99647 C 414.54411,420.62968 415.73535,423.60826 415.73537,426.93221 L 407.45984,426.93221 C 407.45982,425.61566 407.03643,424.53398 406.18966,423.68716 C 405.34286,422.84041 404.2296,422.41702 402.84988,422.41698 C 401.59644,422.41702 400.56212,422.88729 399.74692,423.82781 C 398.9317,424.7684 398.52409,425.89697 398.5241,427.21352 C 398.52409,428.59328 398.9317,429.65966 399.74692,430.41264 C 400.56212,431.16569 401.75335,431.82446 403.32064,432.38895 L 406.23703,433.32759 C 407.93058,433.95529 409.26295,434.55139 410.23414,435.11589 C 411.20529,435.68044 412.17694,436.52674 413.14909,437.65481 C 414.12119,438.78292 414.92109,440.0995 415.54879,441.60456 C 416.17644,443.10966 416.49028,444.70898 416.4903,446.40253 C 416.49028,450.04037 415.189,453.22275 412.58648,455.94968 C 409.98391,458.67662 406.86372,460.04008 403.22591,460.04008 C 401.03096,460.04008 398.82071,459.44446 396.59515,458.25322 C 394.36958,457.06199 392.6454,455.44735 391.42259,453.40932 C 390.19977,451.37131 389.58836,449.06729 389.58836,446.49726 L 397.95862,446.49726 C 397.95861,447.877 398.44468,449.05246 399.41682,450.02362 C 400.38893,450.9948 401.56486,451.48038 402.94461,451.48038 L 402.94461,451.48038 z M 435.96637,450.82304 L 438.03597,450.82304 L 438.03597,459.38275 L 435.21431,459.38275 C 433.52072,459.38275 432.01565,459.21052 430.69908,458.86607 C 429.38248,458.52161 428.09699,457.81596 426.84261,456.7491 C 425.58822,455.68225 424.71034,454.50632 424.20897,453.22131 C 423.70759,451.93631 423.4569,450.35325 423.45691,448.47214 L 423.45691,421.66492 L 419.0364,421.66492 L 419.0364,414.60933 L 423.45691,414.60933 L 423.45691,401.06651 L 432.48737,401.06651 L 432.48737,414.60933 L 438.03597,414.60933 L 438.03597,421.66492 L 432.48737,421.66492 L 432.48737,446.87329 C 432.48736,448.37742 432.69116,449.41174 433.09878,449.97626 C 433.50637,450.54079 434.46223,450.82305 435.96637,450.82304 L 435.96637,450.82304 z M 469.85787,459.38275 L 464.78003,432.48081 L 459.69932,459.38275 L 451.89454,459.38275 L 441.1705,414.60933 L 450.67172,414.60933 L 456.31505,442.45278 L 461.39289,414.60933 L 467.97772,414.60933 L 473.15029,442.45278 L 478.70175,414.60933 L 488.2001,414.60933 L 477.57079,459.38275 L 469.85787,459.38275 z M 492.32496,459.38275 L 492.32496,414.60933 L 501.35542,414.60933 L 501.35542,459.38275 L 492.32496,459.38275 z M 492.32496,405.48701 L 492.32496,396.646 L 501.35542,396.646 L 501.35542,405.48701 L 492.32496,405.48701 z M 529.91936,414.04672 L 529.91936,423.26377 C 529.48111,423.13941 529.04241,423.04565 528.60325,422.98246 C 528.16405,422.91935 527.75597,422.88777 527.379,422.88774 C 524.43198,422.88777 522.17484,423.891 520.60759,425.89741 C 519.04031,427.90389 518.25667,430.31842 518.25668,433.14101 L 518.25668,459.38275 L 509.22622,459.38275 L 509.22622,414.60933 L 518.25668,414.60933 L 518.25668,419.40874 C 519.82394,417.46452 521.75193,416.08479 524.04066,415.26954 C 526.32935,414.45437 528.28891,414.04677 529.91936,414.04672 L 529.91936,414.04672 z M 548.94764,450.82304 L 551.01724,450.82304 L 551.01724,459.38275 L 548.19558,459.38275 C 546.50199,459.38275 544.99692,459.21052 543.68035,458.86607 C 542.36375,458.52161 541.07826,457.81596 539.82388,456.7491 C 538.56949,455.68225 537.6916,454.50632 537.19024,453.22131 C 536.68886,451.93631 536.43817,450.35325 536.43818,448.47214 L 536.43818,421.66492 L 532.01767,421.66492 L 532.01767,414.60933 L 536.43818,414.60933 L 536.43818,401.06651 L 545.46864,401.06651 L 545.46864,414.60933 L 551.01724,414.60933 L 551.01724,421.66492 L 545.46864,421.66492 L 545.46864,446.87329 C 545.46863,448.37742 545.67243,449.41174 546.08005,449.97626 C 546.48764,450.54079 547.4435,450.82305 548.94764,450.82304 L 548.94764,450.82304 z M 558.57227,439.16037 L 558.57227,430.22463 L 585.37949,430.22463 L 585.37949,439.16037 L 558.57227,439.16037 z " />
+    <path
+       id="text2005"
+       style="font-size:94.05899811px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M 287.46234,543.42329 C 288.84205,543.4233 290.03329,542.9846 291.03605,542.10719 C 292.03878,541.2298 292.54015,540.10123 292.54017,538.72149 C 292.54015,537.09109 292.11724,535.88407 291.27143,535.10042 C 290.42558,534.3168 289.09274,533.61115 287.27289,532.98346 L 285.48747,532.32612 C 283.60635,531.63532 282.03861,530.96077 280.78423,530.30245 C 279.52983,529.64419 278.18168,528.45295 276.73976,526.72874 C 275.29784,525.00458 274.57687,522.51207 274.57688,519.25121 C 274.57687,515.55219 275.86236,512.41718 278.43333,509.84617 C 281.00429,507.27525 284.17087,505.98976 287.93309,505.98972 C 291.38144,505.98976 294.29687,507.30634 296.67936,509.93946 C 299.06181,512.57266 300.25305,515.55123 300.25308,518.87518 L 291.97756,518.87518 C 291.97754,517.55863 291.55415,516.47695 290.70739,515.63013 C 289.86058,514.78339 288.74733,514.36 287.36761,514.35996 C 286.11417,514.36 285.07985,514.83027 284.26465,515.77079 C 283.44943,516.71137 283.04183,517.83994 283.04184,519.15649 C 283.04183,520.53625 283.44943,521.60262 284.26465,522.35561 C 285.07985,523.10865 286.27109,523.76742 287.83837,524.33191 L 290.75475,525.27055 C 292.4483,525.89825 293.78066,526.49435 294.75185,527.05884 C 295.723,527.62339 296.69465,528.46969 297.6668,529.59776 C 298.6389,530.72587 299.4388,532.04245 300.0665,533.5475 C 300.69414,535.05259 301.00798,536.65191 301.00801,538.34546 C 301.00798,541.98329 299.70671,545.16567 297.10419,547.89259 C 294.50162,550.61952 291.38144,551.98298 287.74364,551.98298 C 285.54869,551.98298 283.33844,551.38737 281.1129,550.19613 C 278.88733,549.00489 277.16315,547.39026 275.94034,545.35224 C 274.71753,543.31423 274.10612,541.01021 274.10612,538.44019 L 282.47636,538.44019 C 282.47635,539.81993 282.96242,540.99538 283.93455,541.96654 C 284.90667,542.93772 286.08259,543.4233 287.46234,543.42329 L 287.46234,543.42329 z M 333.18291,538.44019 C 333.18288,542.13925 331.83473,545.30584 329.13844,547.93995 C 326.44211,550.57407 323.24347,551.89113 319.54252,551.89113 C 317.53702,551.89113 315.54636,551.37349 313.57054,550.33822 C 311.59471,549.30294 310.10542,548.06434 309.10268,546.62241 C 308.09993,545.1805 307.39476,543.707 306.98716,542.20192 C 306.57955,540.69685 306.37575,539.16068 306.37575,537.5934 L 306.37575,520.09799 C 306.37575,516.39897 307.64544,513.12283 310.18484,510.26956 C 312.72423,507.41638 315.87502,505.98976 319.63724,505.98972 C 323.52573,505.98976 326.75547,507.36902 329.32646,510.12748 C 331.8974,512.88602 333.18288,516.20952 333.18291,520.09799 L 324.24719,520.09799 C 324.24717,518.7183 323.85535,517.49548 323.07174,516.42956 C 322.28809,515.3637 321.20641,514.83075 319.82669,514.83071 C 319.01147,514.83075 318.30582,515.00298 317.70974,515.3474 C 317.11362,515.69189 316.58068,516.22483 316.11089,516.94624 C 315.64108,517.66771 315.40618,518.7183 315.4062,520.09799 L 315.4062,537.5934 C 315.40618,539.22383 315.75112,540.50932 316.441,541.44986 C 317.13085,542.39042 318.29003,542.86069 319.91855,542.86069 C 321.23703,542.86069 322.28809,542.37463 323.07174,541.4025 C 323.85535,540.43038 324.24717,539.25445 324.24719,537.87471 L 333.18291,537.87471 L 333.18291,538.44019 z M 357.14258,505.98972 C 358.77297,505.98976 360.30962,506.42846 361.75253,507.30582 C 363.19538,508.18327 364.23018,509.20228 364.85692,510.36285 C 365.48361,511.52351 365.87542,512.51143 366.03237,513.3266 C 366.18926,514.14184 366.26772,515.20774 366.26775,516.52428 L 366.26775,551.32565 L 357.2373,551.32565 L 357.2373,519.90854 C 357.23728,518.40446 356.89235,517.18213 356.20251,516.24154 C 355.51262,515.30103 354.41563,514.83075 352.91153,514.83071 C 351.59493,514.83075 350.51325,515.34791 349.66648,516.38219 C 348.81969,517.41655 348.3963,518.592 348.39631,519.90854 L 348.39631,551.32565 L 339.36587,551.32565 L 339.36587,488.58903 L 348.39631,488.58903 L 348.39631,510.88097 C 350.46493,507.62018 353.38035,505.98976 357.14258,505.98972 L 357.14258,505.98972 z M 374.55474,546.62385 C 374.1146,545.86988 373.83187,545.03841 373.70653,544.12943 C 373.58118,543.22046 373.51851,542.20145 373.51851,541.07239 L 373.51851,535.99456 C 373.51851,532.6706 374.3495,530.1934 376.0115,528.56296 C 377.67348,526.93257 379.17856,525.81979 380.52672,525.22462 C 381.87487,524.62951 383.48949,524.33194 385.37061,524.33191 L 391.38995,524.33191 L 391.38995,520.47402 C 391.38993,519.5957 391.34305,518.87474 391.2493,518.31114 C 391.15551,517.74761 390.76369,517.02664 390.07385,516.14825 C 389.38396,515.26993 388.44293,514.83075 387.25076,514.83071 C 385.99731,514.83075 384.93142,515.23835 384.05307,516.05353 C 383.1747,516.86877 382.64175,517.93466 382.45423,519.25121 L 373.51851,519.25121 C 373.51851,515.61534 374.81978,512.49612 377.42233,509.89353 C 380.02486,507.29104 383.17566,505.98976 386.87473,505.98972 C 390.51253,505.98976 393.67959,507.27525 396.37593,509.84617 C 399.07221,512.41718 400.42037,515.55219 400.4204,519.25121 L 400.4204,551.32565 L 391.38995,551.32565 L 391.38995,546.81043 C 390.45034,548.3777 389.27489,549.6163 387.8636,550.52623 C 386.45228,551.43616 384.86827,551.89113 383.11156,551.89113 C 379.16181,551.89113 376.30954,550.13537 374.55474,546.62385 L 374.55474,546.62385 z M 382.54896,535.89984 L 382.54896,538.15601 C 382.54894,539.34822 382.97234,540.43038 383.81913,541.4025 C 384.6659,542.37463 385.7782,542.86069 387.15603,542.86069 C 387.90999,542.86069 388.61612,542.67268 389.27443,542.29664 C 389.9327,541.92062 390.43407,541.40346 390.77854,540.74516 C 391.12298,540.08688 391.31099,539.2401 391.34259,538.20481 C 391.37414,537.16955 391.38993,536.4328 391.38995,535.99456 L 391.38995,531.66592 L 388.00282,531.66592 C 386.37238,531.66594 385.0558,531.97978 384.05307,532.60743 C 383.05032,533.23512 382.54894,534.33259 382.54896,535.89984 L 382.54896,535.89984 z M 410.2316,551.32565 L 410.2316,513.70263 L 405.8111,513.70263 L 405.8111,506.55233 L 410.2316,506.55233 L 410.2316,500.34641 C 410.2316,496.83494 411.10948,494.2324 412.86524,492.53878 C 414.62099,490.84527 416.25141,489.76359 417.75649,489.29373 C 419.26155,488.824 420.92402,488.5891 422.74391,488.58903 L 425.84687,488.58903 L 425.84687,496.86455 L 422.55446,496.86455 C 420.3595,496.8646 419.26203,498.02522 419.26205,500.34641 L 419.26205,506.55233 L 425.84687,506.55233 L 425.84687,513.70263 L 419.26205,513.70263 L 419.26205,551.32565 L 410.2316,551.32565 z M 443.75275,542.76596 L 445.82234,542.76596 L 445.82234,551.32565 L 443.00069,551.32565 C 441.30711,551.32565 439.80203,551.15342 438.48547,550.80897 C 437.16887,550.46452 435.88339,549.75886 434.62901,548.69201 C 433.37462,547.62516 432.49674,546.44923 431.99537,545.16422 C 431.49399,543.87923 431.24331,542.29617 431.24331,540.41506 L 431.24331,513.6079 L 426.82282,513.6079 L 426.82282,506.55233 L 431.24331,506.55233 L 431.24331,493.00953 L 440.27376,493.00953 L 440.27376,506.55233 L 445.82234,506.55233 L 445.82234,513.6079 L 440.27376,513.6079 L 440.27376,538.81622 C 440.27374,540.32035 440.47755,541.35466 440.88516,541.91918 C 441.29275,542.48371 442.24861,542.76597 443.75275,542.76596 L 443.75275,542.76596 z M 461.56104,488.58903 L 461.56104,538.44019 C 461.56103,539.94432 461.81171,541.04131 462.3131,541.73116 C 462.81446,542.42104 463.81816,542.76597 465.3242,542.76596 L 465.98154,542.76596 L 465.98154,551.32565 L 464.00667,551.32565 C 462.56377,551.32565 461.21562,551.16873 459.9622,550.8549 C 458.70876,550.54106 457.45485,549.89856 456.20047,548.92739 C 454.94607,547.95622 454.02083,546.70231 453.42474,545.16566 C 452.82864,543.62902 452.53059,541.98234 452.5306,540.22561 L 452.5306,488.58903 L 461.56104,488.58903 z M 471.45262,551.32565 L 471.45262,506.55233 L 480.48307,506.55233 L 480.48307,551.32565 L 471.45262,551.32565 z M 471.45262,497.43003 L 471.45262,488.58903 L 480.48307,488.58903 L 480.48307,497.43003 L 471.45262,497.43003 z M 514.50368,538.44019 C 514.50365,542.13925 513.15549,545.30584 510.45921,547.93995 C 507.76287,550.57407 504.56424,551.89113 500.86329,551.89113 C 498.85778,551.89113 496.86712,551.37349 494.89131,550.33822 C 492.91547,549.30294 491.42619,548.06434 490.42345,546.62241 C 489.4207,545.1805 488.71553,543.707 488.30793,542.20192 C 487.90032,540.69685 487.69652,539.16068 487.69652,537.5934 L 487.69652,520.09799 C 487.69652,516.39897 488.96621,513.12283 491.50561,510.26956 C 494.04499,507.41638 497.19579,505.98976 500.95801,505.98972 C 504.8465,505.98976 508.07623,507.36902 510.64722,510.12748 C 513.21816,512.88602 514.50365,516.20952 514.50368,520.09799 L 505.56796,520.09799 C 505.56794,518.7183 505.17612,517.49548 504.39251,516.42956 C 503.60885,515.3637 502.52717,514.83075 501.14746,514.83071 C 500.33224,514.83075 499.62658,515.00298 499.0305,515.3474 C 498.43439,515.69189 497.90144,516.22483 497.43166,516.94624 C 496.96185,517.66771 496.72695,518.7183 496.72696,520.09799 L 496.72696,537.5934 C 496.72695,539.22383 497.07188,540.50932 497.76176,541.44986 C 498.45161,542.39042 499.6108,542.86069 501.23932,542.86069 C 502.55779,542.86069 503.60885,542.37463 504.39251,541.4025 C 505.17612,540.43038 505.56794,539.25445 505.56796,537.87471 L 514.50368,537.87471 L 514.50368,538.44019 z M 538.46335,505.98972 C 540.09374,505.98976 541.63039,506.42846 543.07329,507.30582 C 544.51615,508.18327 545.55094,509.20228 546.17769,510.36285 C 546.80437,511.52351 547.19619,512.51143 547.35314,513.3266 C 547.51003,514.14184 547.58848,515.20774 547.58852,516.52428 L 547.58852,551.32565 L 538.55807,551.32565 L 538.55807,519.90854 C 538.55805,518.40446 538.21312,517.18213 537.52327,516.24154 C 536.83339,515.30103 535.7364,514.83075 534.2323,514.83071 C 532.9157,514.83075 531.83402,515.34791 530.98725,516.38219 C 530.14045,517.41655 529.71706,518.592 529.71708,519.90854 L 529.71708,551.32565 L 520.68663,551.32565 L 520.68663,488.58903 L 529.71708,488.58903 L 529.71708,510.88097 C 531.7857,507.62018 534.70112,505.98976 538.46335,505.98972 L 538.46335,505.98972 z M 568.10077,542.76596 C 569.41925,542.76597 570.48562,542.35837 571.29989,541.54315 C 572.11412,540.72795 572.61598,539.66206 572.80545,538.34546 L 581.74117,538.34546 L 581.74117,539.37883 C 581.74114,540.75857 581.44309,542.1383 580.84702,543.51802 C 580.25089,544.89776 579.01229,546.63821 577.13122,548.73937 C 575.25009,550.84054 572.3031,551.89113 568.29022,551.89113 C 565.71828,551.89113 563.35064,551.20126 561.18729,549.82153 C 559.02392,548.44181 557.53463,546.92095 556.71943,545.25895 C 555.90422,543.59696 555.38706,542.09189 555.16795,540.74373 C 554.94883,539.39558 554.83928,538.06322 554.83928,536.74662 L 554.83928,519.72197 C 554.83928,516.02294 556.17165,512.80948 558.83639,510.08155 C 561.50111,507.35371 564.68397,505.98976 568.38495,505.98972 C 572.21028,505.98976 575.39266,507.32213 577.93207,509.98682 C 580.47144,512.6516 581.74114,515.89664 581.74117,519.72197 L 581.74117,532.13667 L 563.86973,532.13667 L 563.86973,538.81622 C 563.86971,539.75582 564.3242,540.64901 565.23319,541.49579 C 566.14215,542.34258 567.09801,542.76597 568.10077,542.76596 L 568.10077,542.76596 z M 568.29022,514.83071 C 567.09801,514.83075 566.06322,515.23835 565.18583,516.05353 C 564.30841,516.86877 563.86971,518.31069 563.86973,520.3793 L 563.86973,524.7998 L 572.71072,524.7998 L 572.71072,520.3793 C 572.7107,518.74891 572.36577,517.41655 571.67592,516.38219 C 570.98604,515.34791 569.85747,514.83075 568.29022,514.83071 L 568.29022,514.83071 z M 609.53575,505.98972 L 609.53575,515.20674 C 609.0975,515.08239 608.6588,514.98862 608.21964,514.92544 C 607.78044,514.86233 607.37236,514.83075 606.9954,514.83071 C 604.04838,514.83075 601.79125,515.83397 600.224,517.84038 C 598.65672,519.84686 597.87308,522.26139 597.8731,525.08397 L 597.8731,551.32565 L 588.84265,551.32565 L 588.84265,506.55233 L 597.8731,506.55233 L 597.8731,511.35172 C 599.44035,509.40751 601.36834,508.02778 603.65706,507.21253 C 605.94575,506.39737 607.90531,505.98976 609.53575,505.98972 L 609.53575,505.98972 z " />
+    <path
+       id="text2009"
+       style="font-size:94.05899811px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M 278.43166,642.87356 L 265.64092,580.13695 L 275.04453,580.13695 L 282.28955,623.68459 L 289.71828,580.13695 L 299.21948,580.13695 L 286.14457,642.87356 L 278.43166,642.87356 z M 316.25562,634.31387 C 317.57409,634.31388 318.64047,633.90628 319.45474,633.09106 C 320.26897,632.27586 320.77082,631.20997 320.96029,629.89338 L 329.89601,629.89338 L 329.89601,630.92674 C 329.89598,632.30648 329.59793,633.68621 329.00186,635.06593 C 328.40574,636.44567 327.16714,638.18612 325.28606,640.28729 C 323.40494,642.38846 320.45794,643.43904 316.44507,643.43904 C 313.87313,643.43904 311.50549,642.74918 309.34213,641.36945 C 307.17876,639.98972 305.68948,638.46886 304.87427,636.80686 C 304.05906,635.14488 303.5419,633.6398 303.32279,632.29164 C 303.10368,630.9435 302.99412,629.61113 302.99413,628.29453 L 302.99413,611.26988 C 302.99412,607.57086 304.32649,604.35739 306.99123,601.62946 C 309.65596,598.90162 312.83881,597.53768 316.53979,597.53763 C 320.36513,597.53768 323.5475,598.87004 326.08692,601.53474 C 328.62628,604.19951 329.89598,607.44456 329.89601,611.26988 L 329.89601,623.68459 L 312.02457,623.68459 L 312.02457,630.36413 C 312.02456,631.30374 312.47905,632.19692 313.38804,633.0437 C 314.297,633.89049 315.25286,634.31388 316.25562,634.31387 L 316.25562,634.31387 z M 316.44507,606.37863 C 315.25286,606.37866 314.21806,606.78627 313.34067,607.60144 C 312.46326,608.41668 312.02456,609.8586 312.02457,611.92721 L 312.02457,616.34771 L 320.86557,616.34771 L 320.86557,611.92721 C 320.86554,610.29683 320.52061,608.96446 319.83077,607.93011 C 319.14088,606.89582 318.01232,606.37866 316.44507,606.37863 L 316.44507,606.37863 z M 357.6906,597.53763 L 357.6906,606.75466 C 357.25236,606.63031 356.81366,606.53654 356.3745,606.47335 C 355.9353,606.41024 355.52722,606.37866 355.15025,606.37863 C 352.20323,606.37866 349.9461,607.38189 348.37885,609.3883 C 346.81157,611.39477 346.02794,613.8093 346.02795,616.63188 L 346.02795,642.87356 L 336.99751,642.87356 L 336.99751,598.10024 L 346.02795,598.10024 L 346.02795,602.89964 C 347.59521,600.95543 349.52319,599.5757 351.81192,598.76044 C 354.1006,597.94528 356.06016,597.53768 357.6906,597.53763 L 357.6906,597.53763 z M 363.26789,642.87356 L 363.26789,580.13695 L 372.29834,580.13695 L 372.29834,617.47867 L 383.58496,598.10024 L 392.52068,598.10024 L 381.89139,615.87983 L 394.685,642.87356 L 384.62119,642.87356 L 376.81356,623.77931 L 372.29834,630.45886 L 372.29834,642.87356 L 363.26789,642.87356 z M 411.60057,634.31387 C 412.91905,634.31388 413.98542,633.90628 414.79969,633.09106 C 415.61392,632.27586 416.11577,631.20997 416.30524,629.89338 L 425.24096,629.89338 L 425.24096,630.92674 C 425.24093,632.30648 424.94288,633.68621 424.34682,635.06593 C 423.75069,636.44567 422.51209,638.18612 420.63101,640.28729 C 418.74989,642.38846 415.80289,643.43904 411.79002,643.43904 C 409.21808,643.43904 406.85044,642.74918 404.68708,641.36945 C 402.52371,639.98972 401.03443,638.46886 400.21922,636.80686 C 399.40401,635.14488 398.88685,633.6398 398.66774,632.29164 C 398.44863,630.9435 398.33907,629.61113 398.33908,628.29453 L 398.33908,611.26988 C 398.33907,607.57086 399.67144,604.35739 402.33618,601.62946 C 405.00091,598.90162 408.18376,597.53768 411.88474,597.53763 C 415.71008,597.53768 418.89245,598.87004 421.43187,601.53474 C 423.97124,604.19951 425.24093,607.44456 425.24096,611.26988 L 425.24096,623.68459 L 407.36952,623.68459 L 407.36952,630.36413 C 407.36951,631.30374 407.824,632.19692 408.73299,633.0437 C 409.64195,633.89049 410.59781,634.31388 411.60057,634.31387 L 411.60057,634.31387 z M 411.79002,606.37863 C 410.59781,606.37866 409.56301,606.78627 408.68562,607.60144 C 407.80821,608.41668 407.36951,609.8586 407.36952,611.92721 L 407.36952,616.34771 L 416.21052,616.34771 L 416.21052,611.92721 C 416.2105,610.29683 415.86556,608.96446 415.17572,607.93011 C 414.48583,606.89582 413.35727,606.37866 411.79002,606.37863 L 411.79002,606.37863 z M 450.11918,597.53763 C 451.74957,597.53768 453.28622,597.97638 454.72913,598.85373 C 456.17198,599.73118 457.20678,600.75019 457.83352,601.91077 C 458.46021,603.07143 458.85202,604.05934 459.00897,604.87451 C 459.16586,605.68975 459.24432,606.75565 459.24435,608.07219 L 459.24435,642.87356 L 450.2139,642.87356 L 450.2139,611.45646 C 450.21388,609.95237 449.86895,608.73004 449.1791,607.78945 C 448.48922,606.84894 447.39223,606.37866 445.88813,606.37863 C 444.57153,606.37866 443.48985,606.89582 442.64308,607.93011 C 441.79629,608.96446 441.3729,610.13991 441.37291,611.45646 L 441.37291,642.87356 L 432.34246,642.87356 L 432.34246,580.13695 L 441.37291,580.13695 L 441.37291,602.42888 C 443.44153,599.16809 446.35695,597.53768 450.11918,597.53763 L 450.11918,597.53763 z M 487.94027,597.53763 L 487.94027,606.75466 C 487.50202,606.63031 487.06332,606.53654 486.62416,606.47335 C 486.18496,606.41024 485.77688,606.37866 485.39992,606.37863 C 482.4529,606.37866 480.19577,607.38189 478.62852,609.3883 C 477.06124,611.39477 476.2776,613.8093 476.27762,616.63188 L 476.27762,642.87356 L 467.24717,642.87356 L 467.24717,598.10024 L 476.27762,598.10024 L 476.27762,602.89964 C 477.84487,600.95543 479.77286,599.5757 482.06158,598.76044 C 484.35027,597.94528 486.30983,597.53768 487.94027,597.53763 L 487.94027,597.53763 z M 528.56006,642.87356 L 528.56006,605.25054 L 524.13956,605.25054 L 524.13956,598.10024 L 528.56006,598.10024 L 528.56006,591.89432 C 528.56005,588.38286 529.43793,585.78031 531.1937,584.08669 C 532.94945,582.39318 534.57986,581.3115 536.08495,580.84164 C 537.59001,580.37191 539.25248,580.13701 541.07236,580.13695 L 544.17532,580.13695 L 544.17532,588.41246 L 540.88291,588.41246 C 538.68796,588.41252 537.59049,589.57314 537.5905,591.89432 L 537.5905,598.10024 L 544.17532,598.10024 L 544.17532,605.25054 L 537.5905,605.25054 L 537.5905,642.87356 L 528.56006,642.87356 z M 569.32335,597.53763 L 569.32335,606.75466 C 568.88511,606.63031 568.44641,606.53654 568.00725,606.47335 C 567.56805,606.41024 567.15997,606.37866 566.783,606.37863 C 563.83599,606.37866 561.57886,607.38189 560.01161,609.3883 C 558.44432,611.39477 557.66069,613.8093 557.6607,616.63188 L 557.6607,642.87356 L 548.63026,642.87356 L 548.63026,598.10024 L 557.6607,598.10024 L 557.6607,602.89964 C 559.22796,600.95543 561.15594,599.5757 563.44467,598.76044 C 565.73335,597.94528 567.69291,597.53768 569.32335,597.53763 L 569.32335,597.53763 z M 587.41008,634.31387 C 588.72856,634.31388 589.79493,633.90628 590.6092,633.09106 C 591.42343,632.27586 591.92528,631.20997 592.11475,629.89338 L 601.05047,629.89338 L 601.05047,630.92674 C 601.05044,632.30648 600.75239,633.68621 600.15632,635.06593 C 599.5602,636.44567 598.3216,638.18612 596.44052,640.28729 C 594.5594,642.38846 591.6124,643.43904 587.59953,643.43904 C 585.02759,643.43904 582.65995,642.74918 580.49659,641.36945 C 578.33322,639.98972 576.84394,638.46886 576.02873,636.80686 C 575.21352,635.14488 574.69636,633.6398 574.47725,632.29164 C 574.25814,630.9435 574.14858,629.61113 574.14859,628.29453 L 574.14859,611.26988 C 574.14858,607.57086 575.48095,604.35739 578.14569,601.62946 C 580.81042,598.90162 583.99327,597.53768 587.69425,597.53763 C 591.51959,597.53768 594.70196,598.87004 597.24138,601.53474 C 599.78074,604.19951 601.05044,607.44456 601.05047,611.26988 L 601.05047,623.68459 L 583.17903,623.68459 L 583.17903,630.36413 C 583.17902,631.30374 583.63351,632.19692 584.5425,633.0437 C 585.45146,633.89049 586.40732,634.31388 587.41008,634.31387 L 587.41008,634.31387 z M 587.59953,606.37863 C 586.40732,606.37866 585.37252,606.78627 584.49513,607.60144 C 583.61772,608.41668 583.17902,609.8586 583.17903,611.92721 L 583.17903,616.34771 L 592.02003,616.34771 L 592.02003,611.92721 C 592.02,610.29683 591.67507,608.96446 590.98523,607.93011 C 590.29534,606.89582 589.16678,606.37866 587.59953,606.37863 L 587.59953,606.37863 z M 608.15196,642.87356 L 608.15196,598.10024 L 617.1824,598.10024 L 617.1824,642.87356 L 608.15196,642.87356 z M 608.15196,588.97794 L 608.15196,580.13695 L 617.1824,580.13695 L 617.1824,588.97794 L 608.15196,588.97794 z " />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-38.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-38.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-38.svg	(revision 21967)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1026-38.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="83.429599"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g3957"
+     transform="translate(114.6911,-384.6562)">
+    <path
+       id="text1874"
+       style="font-size:96.77400208px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M -29.025092,688.15074 L -42.185033,623.60324 L -32.509996,623.60324 L -25.055846,668.40788 L -17.412684,623.60324 L -7.63723,623.60324 L -21.089553,688.15074 L -29.025092,688.15074 z M 9.89065,679.34398 C 11.24719,679.34399 12.34434,678.92462 13.18211,678.08587 C 14.01985,677.24714 14.53618,676.15048 14.73112,674.79588 L 23.92477,674.79588 L 23.92477,675.85907 C 23.92474,677.27864 23.61809,678.6982 23.00482,680.11775 C 22.39148,681.53731 21.11713,683.328 19.18176,685.48981 C 17.24633,687.65163 14.21427,688.73254 10.08557,688.73255 C 7.43939,688.73254 5.00341,688.02277 2.77761,686.60321 C 0.55179,685.18366 -0.98048,683.6189 -1.81922,681.90893 C -2.65796,680.19897 -3.19005,678.65045 -3.41548,677.26337 C -3.64092,675.87631 -3.75364,674.50549 -3.75363,673.15089 L -3.75363,655.63482 C -3.75364,651.82903 -2.38281,648.5228 0.35885,645.71613 C 3.10049,642.90955 6.37522,641.50624 10.18303,641.50619 C 14.11878,641.50624 17.39301,642.87707 20.00573,645.61868 C 22.6184,648.36037 23.92474,651.69908 23.92477,655.63482 L 23.92477,668.40788 L 5.53747,668.40788 L 5.53747,675.28023 C 5.53746,676.24695 6.00507,677.16592 6.9403,678.03714 C 7.8755,678.90837 8.85895,679.34399 9.89065,679.34398 L 9.89065,679.34398 z M 10.08557,650.60238 C 8.85895,650.60242 7.79428,651.02179 6.89157,651.86049 C 5.98883,652.69927 5.53746,654.18281 5.53747,656.31113 L 5.53747,660.85922 L 14.63366,660.85922 L 14.63366,656.31113 C 14.63364,654.63368 14.27875,653.26286 13.569,652.19865 C 12.8592,651.13451 11.69806,650.60242 10.08557,650.60238 L 10.08557,650.60238 z M 52.52166,641.50619 L 52.52166,650.98927 C 52.07076,650.86133 51.6194,650.76485 51.16757,650.69984 C 50.71569,650.63491 50.29582,650.60242 49.90798,650.60238 C 46.8759,650.60242 44.55361,651.6346 42.94113,653.69893 C 41.3286,655.76332 40.52235,658.24754 40.52237,661.1516 L 40.52237,688.15074 L 31.23126,688.15074 L 31.23126,642.08504 L 40.52237,642.08504 L 40.52237,647.02297 C 42.13486,645.02264 44.11849,643.60309 46.47328,642.7643 C 48.82803,641.92561 50.84415,641.50624 52.52166,641.50619 L 52.52166,641.50619 z M 58.25993,688.15074 L 58.25993,623.60324 L 67.55104,623.60324 L 67.55104,662.02283 L 79.16344,642.08504 L 88.35709,642.08504 L 77.42099,660.37783 L 90.58389,688.15074 L 80.22959,688.15074 L 72.19659,668.50534 L 67.55104,675.37769 L 67.55104,688.15074 L 58.25993,688.15074 z M 107.98773,679.34398 C 109.34427,679.34399 110.44142,678.92462 111.27919,678.08587 C 112.11693,677.24714 112.63326,676.15048 112.8282,674.79588 L 122.02185,674.79588 L 122.02185,675.85907 C 122.02182,677.27864 121.71517,678.6982 121.1019,680.11775 C 120.48856,681.53731 119.21421,683.328 117.27884,685.48981 C 115.34341,687.65163 112.31135,688.73254 108.18265,688.73255 C 105.53647,688.73254 103.10049,688.02277 100.87469,686.60321 C 98.64887,685.18366 97.1166,683.6189 96.27786,681.90893 C 95.43912,680.19897 94.90703,678.65045 94.6816,677.26337 C 94.45616,675.87631 94.34344,674.50549 94.34345,673.15089 L 94.34345,655.63482 C 94.34344,651.82903 95.71427,648.5228 98.45593,645.71613 C 101.19757,642.90955 104.4723,641.50624 108.28011,641.50619 C 112.21586,641.50624 115.49009,642.87707 118.10281,645.61868 C 120.71548,648.36037 122.02182,651.69908 122.02185,655.63482 L 122.02185,668.40788 L 103.63455,668.40788 L 103.63455,675.28023 C 103.63454,676.24695 104.10215,677.16592 105.03738,678.03714 C 105.97258,678.90837 106.95603,679.34399 107.98773,679.34398 L 107.98773,679.34398 z M 108.18265,650.60238 C 106.95603,650.60242 105.89136,651.02179 104.98865,651.86049 C 104.08591,652.69927 103.63454,654.18281 103.63455,656.31113 L 103.63455,660.85922 L 112.73074,660.85922 L 112.73074,656.31113 C 112.73072,654.63368 112.37583,653.26286 111.66608,652.19865 C 110.95628,651.13451 109.79514,650.60242 108.18265,650.60238 L 108.18265,650.60238 z M 147.61817,641.50619 C 149.29563,641.50624 150.87663,641.9576 152.36119,642.86029 C 153.84569,643.76306 154.91035,644.81148 155.55519,646.00556 C 156.19996,647.19972 156.60309,648.21615 156.76457,649.05485 C 156.92598,649.89363 157.00671,650.99029 157.00674,652.34484 L 157.00674,688.15074 L 147.71563,688.15074 L 147.71563,655.82679 C 147.71561,654.27929 147.36072,653.02167 146.65096,652.05393 C 145.94116,651.08627 144.81251,650.60242 143.265,650.60238 C 141.9104,650.60242 140.79749,651.13451 139.92628,652.19865 C 139.05504,653.26286 138.61943,654.47224 138.61944,655.82679 L 138.61944,688.15074 L 129.32833,688.15074 L 129.32833,623.60324 L 138.61944,623.60324 L 138.61944,646.53863 C 140.74778,643.18372 143.74735,641.50624 147.61817,641.50619 L 147.61817,641.50619 z M 186.53096,641.50619 L 186.53096,650.98927 C 186.08007,650.86133 185.6287,650.76485 185.17687,650.69984 C 184.72499,650.63491 184.30513,650.60242 183.91729,650.60238 C 180.8852,650.60242 178.56292,651.6346 176.95043,653.69893 C 175.33791,655.76332 174.53166,658.24754 174.53167,661.1516 L 174.53167,688.15074 L 165.24057,688.15074 L 165.24057,642.08504 L 174.53167,642.08504 L 174.53167,647.02297 C 176.14417,645.02264 178.1278,643.60309 180.48259,642.7643 C 182.83734,641.92561 184.85346,641.50624 186.53096,641.50619 L 186.53096,641.50619 z M 211.31218,688.15074 L 211.31218,649.44173 L 206.76408,649.44173 L 206.76408,642.08504 L 211.31218,642.08504 L 211.31218,635.69999 C 211.31217,632.08717 212.21539,629.4095 214.02184,627.66699 C 215.82827,625.9246 217.50574,624.8117 219.05427,624.32828 C 220.60278,623.84498 222.31323,623.6033 224.18565,623.60324 L 227.37817,623.60324 L 227.37817,632.11763 L 223.99073,632.11763 C 221.73242,632.11768 220.60327,633.3118 220.60328,635.69999 L 220.60328,642.08504 L 227.37817,642.08504 L 227.37817,649.44173 L 220.60328,649.44173 L 220.60328,688.15074 L 211.31218,688.15074 z M 253.25211,641.50619 L 253.25211,650.98927 C 252.80121,650.86133 252.34985,650.76485 251.89802,650.69984 C 251.44614,650.63491 251.02628,650.60242 250.63843,650.60238 C 247.60635,650.60242 245.28407,651.6346 243.67158,653.69893 C 242.05906,655.76332 241.25281,658.24754 241.25282,661.1516 L 241.25282,688.15074 L 231.96171,688.15074 L 231.96171,642.08504 L 241.25282,642.08504 L 241.25282,647.02297 C 242.86531,645.02264 244.84895,643.60309 247.20374,642.7643 C 249.55848,641.92561 251.57461,641.50624 253.25211,641.50619 L 253.25211,641.50619 z M 271.86088,679.34398 C 273.21742,679.34399 274.31457,678.92462 275.15235,678.08587 C 275.99008,677.24714 276.50642,676.15048 276.70136,674.79588 L 285.89501,674.79588 L 285.89501,675.85907 C 285.89497,677.27864 285.58832,678.6982 284.97505,680.11775 C 284.36172,681.53731 283.08737,683.328 281.15199,685.48981 C 279.21657,687.65163 276.18451,688.73254 272.0558,688.73255 C 269.40962,688.73254 266.97364,688.02277 264.74784,686.60321 C 262.52202,685.18366 260.98975,683.6189 260.15102,681.90893 C 259.31227,680.19897 258.78019,678.65045 258.55475,677.26337 C 258.32932,675.87631 258.2166,674.50549 258.2166,673.15089 L 258.2166,655.63482 C 258.2166,651.82903 259.58742,648.5228 262.32908,645.71613 C 265.07073,642.90955 268.34545,641.50624 272.15326,641.50619 C 276.08902,641.50624 279.36325,642.87707 281.97597,645.61868 C 284.58863,648.36037 285.89497,651.69908 285.89501,655.63482 L 285.89501,668.40788 L 267.50771,668.40788 L 267.50771,675.28023 C 267.5077,676.24695 267.9753,677.16592 268.91053,678.03714 C 269.84573,678.90837 270.82918,679.34399 271.86088,679.34398 L 271.86088,679.34398 z M 272.0558,650.60238 C 270.82918,650.60242 269.76451,651.02179 268.8618,651.86049 C 267.95906,652.69927 267.5077,654.18281 267.50771,656.31113 L 267.50771,660.85922 L 276.6039,660.85922 L 276.6039,656.31113 C 276.60388,654.63368 276.24899,653.26286 275.53923,652.19865 C 274.82943,651.13451 273.66829,650.60242 272.0558,650.60238 L 272.0558,650.60238 z M 293.20149,688.15074 L 293.20149,642.08504 L 302.4926,642.08504 L 302.4926,688.15074 L 293.20149,688.15074 z M 293.20149,632.69943 L 293.20149,623.60324 L 302.4926,623.60324 L 302.4926,632.69943 L 293.20149,632.69943 z " />
+    <path
+       id="text1880"
+       style="font-size:96.77400208px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M -49.432413,595.7366 L -49.432413,557.02759 L -53.980507,557.02759 L -53.980507,549.6709 L -49.432413,549.6709 L -49.432413,543.28585 C -49.432419,539.67303 -48.5292,536.99536 -46.722752,535.25285 C -44.916323,533.51046 -43.238846,532.39756 -41.690315,531.91414 C -40.141813,531.43084 -38.431357,531.18917 -36.558942,531.1891 L -33.366416,531.1891 L -33.366416,539.70349 L -36.753861,539.70349 C -39.012174,539.70354 -40.141321,540.89766 -40.141305,543.28585 L -40.141305,549.6709 L -33.366416,549.6709 L -33.366416,557.02759 L -40.141305,557.02759 L -40.141305,595.7366 L -49.432413,595.7366 z M -26.458629,554.41392 C -25.104053,552.73648 -23.507299,551.43014 -21.668363,550.49488 C -19.82945,549.55971 -17.845813,549.0921 -15.717447,549.09206 C -13.33119,549.0921 -11.2186,549.52771 -9.37965,550.39889 C -7.54075,551.27016 -5.81454,552.76995 -4.20102,554.89826 C -2.58756,557.02665 -1.78082,559.80079 -1.78079,563.22068 L -1.78079,581.60798 C -1.78082,585.09092 -2.55508,587.88081 -4.10356,589.97765 C -5.65211,592.07451 -7.39407,593.65551 -9.32944,594.72067 C -11.26486,595.78583 -13.23275,596.31841 -15.233105,596.31841 C -18.00726,596.31841 -20.53972,595.62487 -22.83049,594.2378 C -25.121281,592.85073 -26.702283,591.30222 -27.573503,589.59225 C -28.444733,587.88229 -28.97682,586.46273 -29.169766,585.33358 C -29.362719,584.20444 -29.459194,582.96258 -29.45919,581.60798 L -29.45919,563.22068 C -29.459194,559.73581 -28.459008,556.80023 -26.458629,554.41392 L -26.458629,554.41392 z M -15.525482,558.09079 C -16.943086,558.09082 -18.071249,558.57467 -18.909974,559.54234 C -19.748726,560.51007 -20.168095,561.73619 -20.168083,563.22068 L -20.168083,581.60798 C -20.168095,583.09252 -19.764969,584.36687 -18.958703,585.43104 C -18.152465,586.49522 -17.008059,587.02731 -15.525482,587.0273 C -13.52513,587.02731 -12.28277,586.44649 -11.79841,585.28485 C -11.31409,584.12322 -11.07192,582.83263 -11.07189,581.41306 L -11.07189,563.22068 C -11.07192,561.80116 -11.47504,560.59129 -12.28127,559.59107 C -13.08755,558.59092 -14.16895,558.09082 -15.525482,558.09079 L -15.525482,558.09079 z M 26.90765,549.09206 L 26.90765,558.57513 C 26.45676,558.44719 26.00539,558.35071 25.55356,558.2857 C 25.10168,558.22077 24.68182,558.18828 24.29398,558.18824 C 21.26189,558.18828 18.93961,559.22046 17.32712,561.28479 C 15.7146,563.34918 14.90835,565.8334 14.90836,568.73746 L 14.90836,595.7366 L 5.61725,595.7366 L 5.61725,549.6709 L 14.90836,549.6709 L 14.90836,554.60883 C 16.52085,552.6085 18.50449,551.18895 20.85928,550.35016 C 23.21403,549.51147 25.23015,549.0921 26.90765,549.09206 L 26.90765,549.09206 z M 44.45325,587.60615 C 45.87279,587.60616 47.09841,587.15479 48.13012,586.25206 C 49.16179,585.34934 49.67763,584.1882 49.67765,582.76863 C 49.67763,581.09116 49.24251,579.8493 48.37229,579.04303 C 47.50203,578.23679 46.13071,577.51077 44.25833,576.86497 L 42.42138,576.18866 C 40.48596,575.47792 38.87297,574.78389 37.58238,574.10658 C 36.29178,573.42931 34.90471,572.20368 33.42117,570.42971 C 31.93762,568.65578 31.19585,566.09133 31.19585,562.73634 C 31.19585,558.93055 32.51844,555.70504 35.16362,553.05982 C 37.80879,550.41469 41.06678,549.0921 44.93759,549.09206 C 48.48548,549.0921 51.48506,550.44668 53.93632,553.15581 C 56.38754,555.86502 57.61316,558.92956 57.61319,562.34946 L 49.09881,562.34946 C 49.09878,560.99491 48.66317,559.882 47.79197,559.01074 C 46.92072,558.13955 45.77533,557.70394 44.35579,557.7039 C 43.06617,557.70394 42.00199,558.18779 41.16327,559.15545 C 40.32451,560.12319 39.90515,561.28433 39.90516,562.63888 C 39.90515,564.05847 40.32451,565.15562 41.16327,565.93034 C 42.00199,566.70512 43.22761,567.38291 44.84013,567.96369 L 47.8407,568.92943 C 49.58313,569.57524 50.95395,570.18855 51.95318,570.76934 C 52.95236,571.35018 53.95205,572.22091 54.95226,573.38154 C 55.95242,574.54221 56.77541,575.89679 57.42123,577.44529 C 58.06699,578.99383 58.38988,580.63931 58.38991,582.38174 C 58.38988,586.12458 57.05105,589.39881 54.37341,592.20445 C 51.69572,595.01009 48.48548,596.41291 44.74268,596.41291 C 42.48437,596.41291 40.21032,595.8001 37.92053,594.57448 C 35.63073,593.34886 33.85678,591.68762 32.59867,589.59077 C 31.34056,587.49393 30.71151,585.12341 30.71151,582.4792 L 39.32336,582.4792 C 39.32334,583.89877 39.82344,585.10815 40.82364,586.10734 C 41.82381,587.10655 43.03368,587.60616 44.45325,587.60615 L 44.45325,587.60615 z M 78.42811,586.92984 L 80.55745,586.92984 L 80.55745,595.7366 L 77.65435,595.7366 C 75.91188,595.7366 74.36336,595.55941 73.00879,595.20501 C 71.6542,594.85061 70.33161,594.12459 69.04102,593.02694 C 67.75042,591.9293 66.8472,590.71943 66.33136,589.39733 C 65.81551,588.07524 65.55759,586.44649 65.5576,584.51108 L 65.5576,556.93014 L 61.0095,556.93014 L 61.0095,549.6709 L 65.5576,549.6709 L 65.5576,535.7372 L 74.8487,535.7372 L 74.8487,549.6709 L 80.55745,549.6709 L 80.55745,556.93014 L 74.8487,556.93014 L 74.8487,582.86609 C 74.84869,584.41363 75.05837,585.47781 75.47776,586.05861 C 75.89711,586.63944 76.88056,586.92985 78.42811,586.92984 L 78.42811,586.92984 z M 113.29782,595.7366 L 108.07342,568.0582 L 102.84606,595.7366 L 94.81602,595.7366 L 83.78246,549.6709 L 93.55791,549.6709 L 99.36411,578.31799 L 104.58851,549.6709 L 111.3634,549.6709 L 116.68526,578.31799 L 122.39696,549.6709 L 132.16946,549.6709 L 121.23336,595.7366 L 113.29782,595.7366 z M 136.41337,595.7366 L 136.41337,549.6709 L 145.70447,549.6709 L 145.70447,595.7366 L 136.41337,595.7366 z M 136.41337,540.28529 L 136.41337,531.1891 L 145.70447,531.1891 L 145.70447,540.28529 L 136.41337,540.28529 z M 175.09285,549.09206 L 175.09285,558.57513 C 174.64195,558.44719 174.19059,558.35071 173.73876,558.2857 C 173.28688,558.22077 172.86702,558.18828 172.47917,558.18824 C 169.44709,558.18828 167.12481,559.22046 165.51232,561.28479 C 163.8998,563.34918 163.09354,565.8334 163.09356,568.73746 L 163.09356,595.7366 L 153.80245,595.7366 L 153.80245,549.6709 L 163.09356,549.6709 L 163.09356,554.60883 C 164.70605,552.6085 166.68969,551.18895 169.04447,550.35016 C 171.39922,549.51147 173.41535,549.0921 175.09285,549.09206 L 175.09285,549.09206 z M 194.67032,586.92984 L 196.79966,586.92984 L 196.79966,595.7366 L 193.89656,595.7366 C 192.15409,595.7366 190.60557,595.55941 189.251,595.20501 C 187.89641,594.85061 186.57382,594.12459 185.28323,593.02694 C 183.99263,591.9293 183.08941,590.71943 182.57357,589.39733 C 182.05772,588.07524 181.7998,586.44649 181.79981,584.51108 L 181.79981,556.93014 L 177.25171,556.93014 L 177.25171,549.6709 L 181.79981,549.6709 L 181.79981,535.7372 L 191.09091,535.7372 L 191.09091,549.6709 L 196.79966,549.6709 L 196.79966,556.93014 L 191.09091,556.93014 L 191.09091,582.86609 C 191.0909,584.41363 191.30058,585.47781 191.71997,586.05861 C 192.13932,586.63944 193.12277,586.92985 194.67032,586.92984 L 194.67032,586.92984 z M 215.50887,587.60615 C 216.92841,587.60616 218.15403,587.15479 219.18574,586.25206 C 220.21741,585.34934 220.73325,584.1882 220.73327,582.76863 C 220.73325,581.09116 220.29813,579.8493 219.42791,579.04303 C 218.55765,578.23679 217.18633,577.51077 215.31395,576.86497 L 213.47699,576.18866 C 211.54158,575.47792 209.92858,574.78389 208.638,574.10658 C 207.34739,573.42931 205.96033,572.20368 204.47679,570.42971 C 202.99324,568.65578 202.25147,566.09133 202.25147,562.73634 C 202.25147,558.93055 203.57406,555.70504 206.21924,553.05982 C 208.86441,550.41469 212.1224,549.0921 215.99321,549.09206 C 219.5411,549.0921 222.54067,550.44668 224.99194,553.15581 C 227.44316,555.86502 228.66878,558.92956 228.66881,562.34946 L 220.15442,562.34946 C 220.1544,560.99491 219.71879,559.882 218.84758,559.01074 C 217.97634,558.13955 216.83095,557.70394 215.41141,557.7039 C 214.12178,557.70394 213.05761,558.18779 212.21888,559.15545 C 211.38013,560.12319 210.96076,561.28433 210.96078,562.63888 C 210.96076,564.05847 211.38013,565.15562 212.21888,565.93034 C 213.05761,566.70512 214.28323,567.38291 215.89575,567.96369 L 218.89631,568.92943 C 220.63875,569.57524 222.00957,570.18855 223.0088,570.76934 C 224.00797,571.35018 225.00767,572.22091 226.00788,573.38154 C 227.00804,574.54221 227.83103,575.89679 228.47685,577.44529 C 229.12261,578.99383 229.4455,580.63931 229.44553,582.38174 C 229.4455,586.12458 228.10667,589.39881 225.42903,592.20445 C 222.75134,595.01009 219.5411,596.41291 215.79829,596.41291 C 213.53998,596.41291 211.26594,595.8001 208.97615,594.57448 C 206.68635,593.34886 204.91239,591.68762 203.65429,589.59077 C 202.39618,587.49393 201.76712,585.12341 201.76713,582.4792 L 210.37897,582.4792 C 210.37896,583.89877 210.87906,585.10815 211.87925,586.10734 C 212.87943,587.10655 214.0893,587.60616 215.50887,587.60615 L 215.50887,587.60615 z M 262.54917,582.4792 C 262.54914,586.28504 261.16207,589.54303 258.38796,592.25318 C 255.6138,594.96333 252.32283,596.31841 248.51505,596.31841 C 246.45166,596.31841 244.40354,595.78583 242.3707,594.72067 C 240.33783,593.65551 238.80555,592.38116 237.77387,590.89761 C 236.74218,589.41407 236.01665,587.89804 235.59728,586.34951 C 235.17791,584.80101 234.96823,583.2205 234.96823,581.60798 L 234.96823,563.60756 C 234.96823,559.80177 236.27457,556.43107 238.88727,553.49544 C 241.49995,550.55989 244.7417,549.0921 248.61251,549.09206 C 252.61324,549.0921 255.9362,550.51117 258.5814,553.34925 C 261.22655,556.18742 262.54914,559.60685 262.54917,563.60756 L 253.35553,563.60756 C 253.3555,562.18804 252.95238,560.92993 252.14615,559.83324 C 251.33987,558.73661 250.22697,558.18828 248.80743,558.18824 C 247.96868,558.18828 247.24265,558.36548 246.62937,558.71984 C 246.01605,559.07427 245.46772,559.6226 244.98437,560.36483 C 244.501,561.10713 244.25932,562.18804 244.25934,563.60756 L 244.25934,581.60798 C 244.25932,583.28547 244.61421,584.60806 245.324,585.57575 C 246.03377,586.54346 247.22641,587.02731 248.90194,587.0273 C 250.25847,587.02731 251.33987,586.52721 252.14615,585.52702 C 252.95238,584.52684 253.3555,583.31697 253.35553,581.8974 L 262.54917,581.8974 L 262.54917,582.4792 z M 287.20043,549.09206 C 288.87788,549.0921 290.45888,549.54347 291.94344,550.44615 C 293.42794,551.34892 294.49261,552.39734 295.13744,553.59142 C 295.78222,554.78558 296.18534,555.80201 296.34682,556.64071 C 296.50824,557.47949 296.58896,558.57615 296.58899,559.9307 L 296.58899,595.7366 L 287.29789,595.7366 L 287.29789,563.41265 C 287.29786,561.86515 286.94297,560.60753 286.23322,559.6398 C 285.52342,558.67213 284.39476,558.18828 282.84725,558.18824 C 281.49265,558.18828 280.37975,558.72037 279.50854,559.78451 C 278.6373,560.84872 278.20168,562.0581 278.2017,563.41265 L 278.2017,595.7366 L 268.91059,595.7366 L 268.91059,531.1891 L 278.2017,531.1891 L 278.2017,554.12449 C 280.33003,550.76958 283.32961,549.0921 287.20043,549.09206 L 287.20043,549.09206 z M 305.40462,595.7366 L 305.40462,586.54296 L 314.59827,586.54296 L 314.59827,595.7366 L 305.40462,595.7366 z " />
+    <path
+       id="text1886"
+       style="font-size:96.77368927px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M 11.1449,505.12715 L -16.338493,505.12715 L -16.338493,440.57986 L -7.14487,440.57986 L -7.14487,495.83608 L 11.1449,495.83608 L 11.1449,505.12715 z M 17.47678,500.28965 C 17.02393,499.51392 16.73304,498.65845 16.60408,497.72323 C 16.47511,496.78803 16.41063,495.73961 16.41064,494.57797 L 16.41064,489.35359 C 16.41063,485.93369 17.26561,483.38499 18.97558,481.70749 C 20.68553,480.03005 22.23404,478.88515 23.62112,478.27281 C 25.00817,477.66052 26.6694,477.35436 28.60481,477.35433 L 34.79787,477.35433 L 34.79787,473.3851 C 34.79785,472.48142 34.74962,471.73965 34.65316,471.15979 C 34.55667,470.57999 34.15354,469.83822 33.44379,468.93448 C 32.73399,468.03081 31.7658,467.57895 30.53922,467.57891 C 29.24959,467.57895 28.15294,467.99832 27.24924,468.83702 C 26.34552,469.67579 25.79719,470.77245 25.60426,472.12699 L 16.41064,472.12699 C 16.41063,468.38619 17.74946,465.17694 20.42712,462.49924 C 23.10477,459.82163 26.3465,458.4828 30.15234,458.48276 C 33.89513,458.4828 37.1536,459.80539 39.92775,462.45051 C 42.70186,465.09572 44.08892,468.32121 44.08895,472.12699 L 44.08895,505.12715 L 34.79787,505.12715 L 34.79787,500.48161 C 33.83114,502.09412 32.62177,503.36847 31.16975,504.30466 C 29.71769,505.24086 28.08796,505.70895 26.28056,505.70895 C 22.21681,505.70895 19.28222,503.90252 17.47678,500.28965 L 17.47678,500.28965 z M 25.70171,489.25613 L 25.70171,491.57742 C 25.7017,492.80403 26.13731,493.91743 27.00855,494.9176 C 27.87976,495.91779 29.02416,496.41788 30.44176,496.41788 C 31.21747,496.41788 31.94398,496.22444 32.62129,495.83755 C 33.29856,495.45068 33.81441,494.91859 34.16882,494.24129 C 34.5232,493.56402 34.71664,492.69279 34.74914,491.62763 C 34.78161,490.56248 34.79785,489.80447 34.79787,489.35359 L 34.79787,484.90001 L 31.31298,484.90001 C 29.63549,484.90003 28.28091,485.22293 27.24924,485.86869 C 26.21754,486.5145 25.7017,487.64364 25.70171,489.25613 L 25.70171,489.25613 z M 78.37675,463.2228 C 78.89453,463.99857 79.24991,464.93477 79.44289,466.03139 C 79.63581,467.12808 79.73228,468.22474 79.73231,469.32136 L 79.73231,505.12715 L 70.44124,505.12715 L 70.44124,472.70879 C 70.44121,469.28891 68.92519,467.57895 65.89316,467.57891 C 64.53856,467.57895 63.4419,468.09529 62.60318,469.12792 C 61.76443,470.16062 61.34506,471.35425 61.34508,472.70879 L 61.34508,505.12715 L 52.054,505.12715 L 52.054,459.0616 L 61.34508,459.0616 L 61.34508,463.51518 C 63.4104,460.16027 66.28199,458.4828 69.95985,458.48276 C 73.70067,458.4828 76.5063,460.06282 78.37675,463.2228 L 78.37675,463.2228 z M 105.97237,505.12715 L 105.97237,500.38416 C 105.06864,501.93366 103.87502,503.2085 102.3915,504.20868 C 100.90794,505.20886 99.26246,505.70895 97.45506,505.70895 C 93.26136,505.70895 90.61619,504.56357 89.51954,502.27279 C 88.42288,499.98202 87.82631,498.33654 87.72984,497.33635 C 87.63337,496.33618 87.58513,494.99735 87.58513,493.31987 L 87.58513,468.45014 C 87.58513,465.67605 88.52034,463.32128 90.39077,461.38585 C 92.26118,459.4505 94.61594,458.4828 97.45506,458.48276 C 99.19749,458.4828 100.82672,458.93416 102.34277,459.83684 C 103.85877,460.73961 105.06864,461.93324 105.97237,463.41772 L 105.97237,440.57986 L 115.26345,440.57986 L 115.26345,505.12715 L 105.97237,505.12715 z M 105.29311,469.8057 C 104.39135,468.25624 103.06926,467.48149 101.32683,467.48146 C 100.42311,467.48149 99.60061,467.72366 98.85935,468.20797 C 98.11806,468.69235 97.61797,469.27316 97.35907,469.95041 C 97.10016,470.62774 96.95495,471.33751 96.92346,472.07974 C 96.89195,472.82204 96.8762,473.38612 96.87621,473.77198 L 96.87621,490.31931 C 96.8762,490.96512 96.89195,491.6109 96.92346,492.25668 C 96.95495,492.90248 97.26111,493.74121 97.84194,494.77289 C 98.42274,495.80458 99.61686,496.32043 101.42429,496.32042 C 103.29469,496.32043 104.52031,495.80458 105.10115,494.77289 C 105.68194,493.74121 105.97235,492.70854 105.97237,491.67488 L 105.97237,490.31931 L 105.97237,473.77198 C 105.97235,473.12623 105.9561,472.46469 105.92364,471.78737 C 105.89113,471.11011 105.68096,470.44956 105.29311,469.8057 L 105.29311,469.8057 z M 124.09086,484.32116 L 124.09086,475.12755 L 151.67171,475.12755 L 151.67171,484.32116 L 124.09086,484.32116 z M 196.13953,505.12715 L 196.13953,500.48161 C 195.04285,502.15909 193.83298,503.44968 192.50992,504.35339 C 191.18683,505.2571 189.59008,505.70895 187.71967,505.70895 C 185.84924,505.70895 184.09153,505.19262 182.44656,504.15995 C 180.80156,503.12728 179.65618,501.9499 179.01039,500.6278 C 178.3646,499.30572 177.99347,498.2253 177.897,497.38656 C 177.80052,496.54783 177.75228,495.32123 177.75229,493.70675 L 177.75229,459.0616 L 187.04337,459.0616 L 187.04337,490.22481 C 187.04335,490.93361 187.0596,491.65914 187.0921,492.40139 C 187.12457,493.14366 187.47946,493.99864 188.15676,494.96633 C 188.83403,495.93404 190.01141,496.41788 191.6889,496.41788 C 192.52762,496.41788 193.30139,496.19196 194.0102,495.74009 C 194.71897,495.28825 195.21857,494.75616 195.509,494.14384 C 195.79938,493.53153 195.97707,492.87048 196.04207,492.1607 C 196.10702,491.45093 196.1395,490.80564 196.13953,490.22481 L 196.13953,459.0616 L 205.4306,459.0616 L 205.4306,505.12715 L 196.13953,505.12715 z M 239.79223,463.2228 C 240.31001,463.99857 240.66539,464.93477 240.85837,466.03139 C 241.05129,467.12808 241.14776,468.22474 241.14779,469.32136 L 241.14779,505.12715 L 231.85672,505.12715 L 231.85672,472.70879 C 231.8567,469.28891 230.34067,467.57895 227.30864,467.57891 C 225.95404,467.57895 224.85738,468.09529 224.01866,469.12792 C 223.17991,470.16062 222.76054,471.35425 222.76056,472.70879 L 222.76056,505.12715 L 213.46948,505.12715 L 213.46948,459.0616 L 222.76056,459.0616 L 222.76056,463.51518 C 224.82588,460.16027 227.69747,458.4828 231.37533,458.48276 C 235.11615,458.4828 237.92178,460.06282 239.79223,463.2228 L 239.79223,463.2228 z M 267.38785,505.12715 L 267.38785,500.38416 C 266.48412,501.93366 265.2905,503.2085 263.80698,504.20868 C 262.32342,505.20886 260.67794,505.70895 258.87054,505.70895 C 254.67684,505.70895 252.03168,504.56357 250.93503,502.27279 C 249.83836,499.98202 249.2418,498.33654 249.14533,497.33635 C 249.04885,496.33618 249.00061,494.99735 249.00061,493.31987 L 249.00061,468.45014 C 249.00061,465.67605 249.93582,463.32128 251.80625,461.38585 C 253.67666,459.4505 256.03142,458.4828 258.87054,458.48276 C 260.61297,458.4828 262.2422,458.93416 263.75825,459.83684 C 265.27425,460.73961 266.48412,461.93324 267.38785,463.41772 L 267.38785,440.57986 L 276.67893,440.57986 L 276.67893,505.12715 L 267.38785,505.12715 z M 266.70859,469.8057 C 265.80683,468.25624 264.48474,467.48149 262.74231,467.48146 C 261.83859,467.48149 261.01609,467.72366 260.27483,468.20797 C 259.53354,468.69235 259.03345,469.27316 258.77456,469.95041 C 258.51564,470.62774 258.37043,471.33751 258.33894,472.07974 C 258.30743,472.82204 258.29168,473.38612 258.29169,473.77198 L 258.29169,490.31931 C 258.29168,490.96512 258.30743,491.6109 258.33894,492.25668 C 258.37043,492.90248 258.67659,493.74121 259.25742,494.77289 C 259.83822,495.80458 261.03234,496.32043 262.83977,496.32042 C 264.71017,496.32043 265.93579,495.80458 266.51663,494.77289 C 267.09742,493.74121 267.38783,492.70854 267.38785,491.67488 L 267.38785,490.31931 L 267.38785,473.77198 C 267.38783,473.12623 267.37159,472.46469 267.33912,471.78737 C 267.30661,471.11011 267.09644,470.44956 266.70859,469.8057 L 266.70859,469.8057 z " />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1026-39.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1026-39.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1026-39.svg	(revision 21967)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="translate(239.8387,-361.3143)"
+     id="g2430">
+    <path
+       d="M -136.70895,402.37814 C -135.31688,402.37819 -133.92479,402.69031 -132.53268,403.31451 C -131.14061,403.93879 -129.67635,405.01913 -128.1399,406.55551 C -126.60349,408.09199 -125.83528,410.46843 -125.83525,413.68485 L -125.83525,417.35778 C -125.83528,421.00802 -127.27573,423.60097 -130.1566,425.13664 C -127.27573,426.81743 -125.83528,429.48292 -125.83525,433.13311 L -125.83525,438.7513 C -125.83528,442.11137 -126.91561,444.89592 -129.07626,447.10494 C -131.23695,449.31397 -134.0215,450.41849 -137.42991,450.41849 L -148.01787,450.41849 L -148.01787,402.37814 L -136.70895,402.37814 z M -132.60521,416.63902 L -132.60521,413.68485 C -132.60523,412.19755 -133.03715,411.0216 -133.90096,410.157 C -134.7648,409.29248 -135.91694,408.8602 -137.35737,408.86016 L -141.2479,408.86016 L -141.2479,422.11214 L -137.14197,422.11214 C -135.55793,422.11217 -134.40579,421.62017 -133.68555,420.63615 C -132.96534,419.6522 -132.60523,418.31982 -132.60521,416.63902 L -132.60521,416.63902 z M -132.60521,438.7513 L -132.60521,433.13311 C -132.60523,431.59596 -133.02542,430.38338 -133.86579,429.49535 C -134.70619,428.60737 -135.87005,428.16336 -137.35737,428.16334 L -141.2479,428.16334 L -141.2479,443.57599 L -137.28704,443.57599 C -135.8935,443.576 -134.7648,443.11991 -133.90096,442.20771 C -133.03715,441.29553 -132.60523,440.1434 -132.60521,438.7513 L -132.60521,438.7513 z M -110.18082,443.86393 C -109.1712,443.86394 -108.35463,443.55182 -107.7311,442.92757 C -107.10761,442.30333 -106.72332,441.48713 -106.57823,440.47895 L -99.73573,440.47895 L -99.73573,441.27025 C -99.73576,442.32678 -99.96399,443.3833 -100.42042,444.43982 C -100.8769,445.49635 -101.82536,446.82909 -103.26578,448.43805 C -104.70625,450.04702 -106.9629,450.8515 -110.03575,450.8515 C -112.0052,450.8515 -113.81821,450.32324 -115.47479,449.26672 C -117.13139,448.21019 -118.2718,447.0456 -118.89604,445.77293 C -119.52029,444.50027 -119.9163,443.34777 -120.08408,442.31542 C -120.25187,441.28308 -120.33576,440.26282 -120.33576,439.25465 L -120.33576,426.21808 C -120.33576,423.38556 -119.31551,420.92486 -117.27499,418.83596 C -115.23448,416.74712 -112.79723,415.70269 -109.96321,415.70265 C -107.03397,415.70269 -104.59708,416.72295 -102.65253,418.76342 C -100.70802,420.80397 -99.73576,423.28885 -99.73573,426.21808 L -99.73573,435.7246 L -113.42073,435.7246 L -113.42073,440.83943 C -113.42074,441.55893 -113.07271,442.24289 -112.37666,442.8913 C -111.68062,443.53973 -110.94868,443.86394 -110.18082,443.86393 L -110.18082,443.86393 z M -110.03575,422.47262 C -110.94868,422.47264 -111.74107,422.78477 -112.41293,423.40898 C -113.0848,424.03325 -113.42074,425.1374 -113.42073,426.72143 L -113.42073,430.10641 L -106.65077,430.10641 L -106.65077,426.72143 C -106.65078,425.47296 -106.91491,424.45271 -107.44316,423.66066 C -107.97144,422.86866 -108.83563,422.47264 -110.03575,422.47262 L -110.03575,422.47262 z M -83.99777,443.86393 L -82.41298,443.86393 L -82.41298,450.41849 L -84.57366,450.41849 C -85.87051,450.41849 -87.02302,450.28661 -88.03117,450.02284 C -89.03935,449.75908 -90.0237,449.21873 -90.98424,448.40179 C -91.94479,447.58485 -92.61702,446.68439 -93.00094,445.7004 C -93.38487,444.71641 -93.57683,443.5042 -93.57683,442.06374 L -93.57683,421.53625 L -96.96181,421.53625 L -96.96181,416.13347 L -93.57683,416.13347 L -93.57683,405.76312 L -86.66179,405.76312 L -86.66179,416.13347 L -82.41298,416.13347 L -82.41298,421.53625 L -86.66179,421.53625 L -86.66179,440.83943 C -86.6618,441.99121 -86.50574,442.78324 -86.19361,443.21551 C -85.8815,443.6478 -85.14955,443.86394 -83.99777,443.86393 L -83.99777,443.86393 z M -61.4305,415.70265 L -61.4305,422.76056 C -61.76609,422.66534 -62.10202,422.59354 -62.4383,422.54515 C -62.77462,422.49682 -63.08711,422.47264 -63.37577,422.47262 C -65.63244,422.47264 -67.36083,423.24086 -68.56094,424.77726 C -69.76108,426.31371 -70.36115,428.16263 -70.36114,430.32401 L -70.36114,450.41849 L -77.27617,450.41849 L -77.27617,416.13347 L -70.36114,416.13347 L -70.36114,419.80859 C -69.16102,418.31982 -67.68467,417.2633 -65.93209,416.63902 C -64.17953,416.01481 -62.67901,415.70269 -61.4305,415.70265 L -61.4305,415.70265 z M -57.15971,450.41849 L -57.15971,416.13347 L -50.24468,416.13347 L -50.24468,450.41849 L -57.15971,450.41849 z M -57.15971,409.1481 L -57.15971,402.37814 L -50.24468,402.37814 L -50.24468,409.1481 L -57.15971,409.1481 z M -34.6386,443.86393 C -33.62898,443.86394 -32.81241,443.55182 -32.18889,442.92757 C -31.56539,442.30333 -31.1811,441.48713 -31.03602,440.47895 L -24.19352,440.47895 L -24.19352,441.27025 C -24.19354,442.32678 -24.42177,443.3833 -24.87821,444.43982 C -25.33469,445.49635 -26.28314,446.82909 -27.72357,448.43805 C -29.16404,450.04702 -31.42069,450.8515 -34.49353,450.8515 C -36.46299,450.8515 -38.276,450.32324 -39.93258,449.26672 C -41.58918,448.21019 -42.72959,447.0456 -43.35383,445.77293 C -43.97808,444.50027 -44.37409,443.34777 -44.54187,442.31542 C -44.70966,441.28308 -44.79355,440.26282 -44.79354,439.25465 L -44.79354,426.21808 C -44.79355,423.38556 -43.77329,420.92486 -41.73278,418.83596 C -39.69227,416.74712 -37.25501,415.70269 -34.421,415.70265 C -31.49176,415.70269 -29.05487,416.72295 -27.11032,418.76342 C -25.16581,420.80397 -24.19354,423.28885 -24.19352,426.21808 L -24.19352,435.7246 L -37.87851,435.7246 L -37.87851,440.83943 C -37.87852,441.55893 -37.5305,442.24289 -36.83444,442.8913 C -36.13841,443.53973 -35.40646,443.86394 -34.6386,443.86393 L -34.6386,443.86393 z M -34.49353,422.47262 C -35.40646,422.47264 -36.19886,422.78477 -36.87071,423.40898 C -37.54259,424.03325 -37.87852,425.1374 -37.87851,426.72143 L -37.87851,430.10641 L -31.10855,430.10641 L -31.10855,426.72143 C -31.10857,425.47296 -31.3727,424.45271 -31.90095,423.66066 C -32.42922,422.86866 -33.29342,422.47264 -34.49353,422.47262 L -34.49353,422.47262 z M -5.35853,415.70265 C -2.52601,415.70269 -0.67746,416.435 0.18713,417.8996 C 1.05167,419.36425 1.55612,420.51676 1.70048,421.35711 C 1.84479,422.19752 1.91696,422.95328 1.91698,423.62439 L 1.91698,442.42422 C 1.91696,443.62436 1.8327,444.63252 1.66421,445.44872 C 1.49567,446.26493 0.89524,447.36944 -0.13708,448.76227 C -1.16945,450.15509 -2.93411,450.8515 -5.43106,450.8515 C -6.77481,450.8515 -7.98703,450.50311 -9.06772,449.80633 C -10.14843,449.10956 -11.04853,448.1611 -11.76801,446.96097 L -11.76801,450.41849 L -18.68304,450.41849 L -18.68304,402.37814 L -11.76801,402.37814 L -11.76801,419.44811 C -10.23232,416.95117 -8.09583,415.70269 -5.35853,415.70265 L -5.35853,415.70265 z M -8.45556,422.47262 C -9.41539,422.47264 -10.20741,422.85693 -10.83164,423.62549 C -11.4559,424.39409 -11.76802,425.28247 -11.76801,426.29061 L -11.76801,439.83053 C -11.76802,440.93542 -11.56397,441.89597 -11.15586,442.71216 C -10.74776,443.52837 -9.84767,443.93648 -8.45556,443.93647 C -7.44741,443.93648 -6.61912,443.63644 -5.97068,443.03637 C -5.32228,442.43632 -4.99807,441.75163 -4.99805,440.98231 L -4.99805,426.29061 C -4.99807,425.18575 -5.31019,424.2732 -5.93441,423.55295 C -6.55867,422.83276 -7.39905,422.47264 -8.45556,422.47262 L -8.45556,422.47262 z M 16.47901,444.36729 C 17.53552,444.36729 18.4477,444.03136 19.21557,443.35948 C 19.9834,442.68763 20.36732,441.82343 20.36734,440.7669 C 20.36732,439.51842 20.04348,438.59415 19.39581,437.99407 C 18.7481,437.39402 17.72748,436.85367 16.33394,436.37302 L 14.96676,435.86967 C 13.5263,435.34069 12.3258,434.82415 11.36527,434.32005 C 10.40472,433.81598 9.37238,432.9038 8.26823,431.58349 C 7.16408,430.26322 6.61201,428.35459 6.61201,425.8576 C 6.61201,423.02508 7.59636,420.62446 9.56508,418.65572 C 11.53378,416.68704 13.95858,415.70269 16.83949,415.70265 C 19.48005,415.70269 21.71252,416.71086 23.53691,418.72716 C 25.36126,420.74352 26.27345,423.02435 26.27347,425.56965 L 19.93652,425.56965 C 19.93651,424.56151 19.6123,423.73322 18.96389,423.08477 C 18.31546,422.43638 17.46298,422.11217 16.40647,422.11214 C 15.44665,422.11217 14.65463,422.47228 14.03039,423.19247 C 13.40614,423.91272 13.09402,424.77692 13.09403,425.78506 C 13.09402,426.84161 13.40614,427.65818 14.03039,428.23478 C 14.65463,428.81142 15.56681,429.31587 16.76695,429.74813 L 19.00016,430.46689 C 20.29699,430.94754 21.31724,431.404 22.06093,431.83626 C 22.80458,432.26856 23.54862,432.91662 24.29304,433.78043 C 25.03742,434.64427 25.64994,435.65244 26.1306,436.80493 C 26.61121,437.95745 26.85153,439.18212 26.85156,440.47895 C 26.85153,443.26461 25.85509,445.7015 23.86222,447.78963 C 21.86932,449.87777 19.48005,450.92184 16.69442,450.92184 C 15.01364,450.92184 13.32115,450.46575 11.61694,449.55356 C 9.91273,448.64137 8.59244,447.40498 7.65608,445.84437 C 6.71971,444.28377 6.25153,442.51948 6.25153,440.55149 L 12.66101,440.55149 C 12.66101,441.60802 13.03321,442.50812 13.77762,443.25178 C 14.52201,443.99546 15.42247,444.36729 16.47901,444.36729 L 16.47901,444.36729 z M 32.11365,434.9333 L 32.11365,428.0908 L 52.64114,428.0908 L 52.64114,434.9333 L 32.11365,434.9333 z M 98.39773,450.41849 L 98.39773,446.96097 C 97.58151,448.20946 96.68105,449.17 95.69634,449.8426 C 94.71161,450.5152 93.5232,450.8515 92.13112,450.8515 C 90.73902,450.8515 89.43082,450.46721 88.20652,449.69863 C 86.98221,448.93005 86.12974,448.05377 85.64911,447.06978 C 85.16846,446.08579 84.89224,445.28168 84.82045,444.65743 C 84.74864,444.03319 84.71274,443.12027 84.71274,441.91867 L 84.71274,416.13347 L 91.62777,416.13347 L 91.62777,439.32718 C 91.62776,439.85472 91.63985,440.39471 91.66404,440.94714 C 91.68821,441.49959 91.95234,442.13592 92.45643,442.85613 C 92.96051,443.57636 93.83679,443.93648 95.08529,443.93647 C 95.70952,443.93648 96.2854,443.76833 96.81295,443.43202 C 97.34046,443.09573 97.7123,442.69971 97.92845,442.24398 C 98.14458,441.78826 98.27683,441.29627 98.3252,440.768 C 98.37354,440.23974 98.39772,439.75947 98.39773,439.32718 L 98.39773,416.13347 L 105.31277,416.13347 L 105.31277,450.41849 L 98.39773,450.41849 z M 130.88694,419.23051 C 131.27231,419.80789 131.53681,420.50467 131.68044,421.32084 C 131.82402,422.13708 131.89582,422.95328 131.89584,423.76946 L 131.89584,450.41849 L 124.98081,450.41849 L 124.98081,426.29061 C 124.9808,423.74531 123.85247,422.47264 121.59583,422.47262 C 120.58765,422.47264 119.77145,422.85693 119.14722,423.62549 C 118.52296,424.39409 118.21084,425.28247 118.21085,426.29061 L 118.21085,450.41849 L 111.29582,450.41849 L 111.29582,416.13347 L 118.21085,416.13347 L 118.21085,419.44811 C 119.748,416.95117 121.88523,415.70269 124.62253,415.70265 C 127.4067,415.70269 129.49483,416.87864 130.88694,419.23051 L 130.88694,419.23051 z M 151.42543,450.41849 L 151.42543,446.88844 C 150.75282,448.04168 149.86444,448.9905 148.76031,449.7349 C 147.65615,450.4793 146.43148,450.8515 145.08629,450.8515 C 141.96507,450.8515 139.99636,449.99903 139.18016,448.29408 C 138.36395,446.58914 137.91994,445.36447 137.84815,444.62006 C 137.77634,443.87566 137.74044,442.87922 137.74044,441.63073 L 137.74044,423.12104 C 137.74044,421.05638 138.43648,419.30381 139.82858,417.86333 C 141.22066,416.42291 142.97323,415.70269 145.08629,415.70265 C 146.38312,415.70269 147.5957,416.03862 148.72404,416.71046 C 149.85236,417.38236 150.75282,418.27073 151.42543,419.37558 L 151.42543,402.37814 L 158.34047,402.37814 L 158.34047,450.41849 L 151.42543,450.41849 z M 150.91989,424.12994 C 150.24874,422.97673 149.26475,422.40011 147.96792,422.40008 C 147.29531,422.40011 146.68315,422.58035 146.13146,422.9408 C 145.57974,423.3013 145.20754,423.73358 145.01485,424.23764 C 144.82215,424.74175 144.71408,425.27001 144.69064,425.82243 C 144.66719,426.37489 144.65546,426.79472 144.65547,427.08191 L 144.65547,439.39752 C 144.65546,439.87817 144.66719,440.3588 144.69064,440.83943 C 144.71408,441.32008 144.94194,441.94432 145.37423,442.71216 C 145.8065,443.48002 146.69524,443.86394 148.04045,443.86393 C 149.43253,443.86394 150.34472,443.48002 150.77701,442.71216 C 151.20928,441.94432 151.42542,441.17574 151.42543,440.40642 L 151.42543,439.39752 L 151.42543,427.08191 C 151.42542,426.60129 151.41333,426.10893 151.38917,425.60482 C 151.36497,425.10076 151.20854,424.60914 150.91989,424.12994 L 150.91989,424.12994 z "
+       style="font-size:72.02535248px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       id="text2092" />
+    <path
+       d="M -185.35723,518.07518 L -195.15164,470.03507 L -187.9509,470.03507 L -182.40308,503.38136 L -176.71458,470.03507 L -169.4391,470.03507 L -179.45112,518.07518 L -185.35723,518.07518 z M -156.3938,511.52066 C -155.38419,511.52067 -154.56762,511.20855 -153.9441,510.5843 C -153.32061,509.96007 -152.93632,509.14387 -152.79123,508.1357 L -145.94877,508.1357 L -145.94877,508.92699 C -145.94879,509.98351 -146.17702,511.04003 -146.63346,512.09654 C -147.08994,513.15307 -148.03839,514.4858 -149.47881,516.09476 C -150.91927,517.70371 -153.17591,518.50819 -156.24873,518.50819 C -158.21818,518.50819 -160.03118,517.97993 -161.68776,516.92341 C -163.34434,515.8669 -164.48475,514.70231 -165.10899,513.42965 C -165.73323,512.15699 -166.12924,511.0045 -166.29702,509.97215 C -166.46481,508.93982 -166.5487,507.91957 -166.5487,506.91139 L -166.5487,493.87489 C -166.5487,491.04239 -165.52845,488.5817 -163.48794,486.49281 C -161.44745,484.40398 -159.0102,483.35955 -156.1762,483.35952 C -153.24697,483.35955 -150.8101,484.3798 -148.86556,486.42027 C -146.92106,488.4608 -145.94879,490.94567 -145.94877,493.87489 L -145.94877,503.38136 L -159.6337,503.38136 L -159.6337,508.49617 C -159.63371,509.21567 -159.28569,509.89962 -158.58963,510.54803 C -157.8936,511.19646 -157.16166,511.52067 -156.3938,511.52066 L -156.3938,511.52066 z M -156.24873,490.12945 C -157.16166,490.12947 -157.95405,490.44159 -158.6259,491.06581 C -159.29778,491.69007 -159.63371,492.79421 -159.6337,494.37823 L -159.6337,497.7632 L -152.86377,497.7632 L -152.86377,494.37823 C -152.86379,493.12978 -153.12792,492.10953 -153.65616,491.31748 C -154.18443,490.52548 -155.04862,490.12947 -156.24873,490.12945 L -156.24873,490.12945 z M -124.66526,483.35952 L -124.66526,490.41739 C -125.00085,490.32217 -125.33678,490.25036 -125.67306,490.20198 C -126.00937,490.15365 -126.32186,490.12947 -126.61052,490.12945 C -128.86718,490.12947 -130.59556,490.89768 -131.79567,492.43408 C -132.9958,493.97052 -133.59586,495.81943 -133.59585,497.9808 L -133.59585,518.07518 L -140.51085,518.07518 L -140.51085,483.79033 L -133.59585,483.79033 L -133.59585,487.46543 C -132.39574,485.97667 -130.9194,484.92015 -129.16683,484.29588 C -127.41428,483.67167 -125.91376,483.35955 -124.66526,483.35952 L -124.66526,483.35952 z M -111.60677,512.02401 C -110.55026,512.02401 -109.63808,511.68808 -108.87022,511.01621 C -108.10239,510.34436 -107.71847,509.48017 -107.71846,508.42364 C -107.71847,507.17517 -108.04231,506.2509 -108.68998,505.65082 C -109.33768,505.05078 -110.3583,504.51043 -111.75184,504.02978 L -113.11901,503.52643 C -114.55946,502.99745 -115.75995,502.48092 -116.72048,501.97682 C -117.68103,501.47275 -118.71337,500.56057 -119.8175,499.24027 C -120.92165,497.92001 -121.47372,496.01139 -121.47372,493.51441 C -121.47372,490.68191 -120.48937,488.2813 -118.52067,486.31257 C -116.55197,484.3439 -114.12718,483.35955 -111.24629,483.35952 C -108.60574,483.35955 -106.37328,484.36771 -104.5489,486.384 C -102.72456,488.40036 -101.81238,490.68118 -101.81235,493.22647 L -108.14927,493.22647 C -108.14929,492.21833 -108.47349,491.39004 -109.1219,490.7416 C -109.77033,490.09321 -110.6228,489.769 -111.6793,489.76897 C -112.63912,489.769 -113.43114,490.12911 -114.05537,490.8493 C -114.67962,491.56955 -114.99174,492.43374 -114.99173,493.44187 C -114.99174,494.49842 -114.67962,495.31498 -114.05537,495.89158 C -113.43114,496.46822 -112.51896,496.97266 -111.31883,497.40492 L -109.08563,498.12368 C -107.78881,498.60433 -106.76856,499.06079 -106.02488,499.49305 C -105.28123,499.92534 -104.5372,500.5734 -103.79278,501.4372 C -103.0484,502.30104 -102.43588,503.30921 -101.95523,504.46169 C -101.47461,505.6142 -101.23429,506.83887 -101.23427,508.1357 C -101.23429,510.92134 -102.23073,513.35822 -104.22359,515.44634 C -106.21649,517.53447 -108.60574,518.57853 -111.39136,518.57853 C -113.07213,518.57853 -114.76461,518.12244 -116.46881,517.21026 C -118.17302,516.29808 -119.4933,515.06169 -120.42966,513.50108 C -121.36602,511.94049 -121.8342,510.17621 -121.8342,508.20823 L -115.42474,508.20823 C -115.42475,509.26476 -115.05255,510.16485 -114.30815,510.90851 C -113.56376,511.65218 -112.6633,512.02401 -111.60677,512.02401 L -111.60677,512.02401 z M -94.89077,487.32036 C -93.88261,486.07192 -92.69421,485.09966 -91.32556,484.40358 C -89.95693,483.70757 -88.48059,483.35955 -86.89654,483.35952 C -85.12054,483.35955 -83.54822,483.68376 -82.17957,484.33214 C -80.81095,484.9806 -79.5262,486.09683 -78.32532,487.68084 C -77.12449,489.26492 -76.52406,491.3296 -76.52404,493.87489 L -76.52404,507.55981 C -76.52406,510.15203 -77.10031,512.22843 -78.25279,513.78903 C -79.40531,515.34963 -80.70178,516.52631 -82.1422,517.31906 C -83.58266,518.11181 -85.04728,518.50819 -86.53606,518.50819 C -88.60075,518.50819 -90.48556,517.99202 -92.19049,516.95968 C -93.89543,515.92734 -95.07211,514.77484 -95.72052,513.50218 C -96.36894,512.22953 -96.76496,511.17301 -96.90856,510.33263 C -97.05216,509.49225 -97.12397,508.56798 -97.12396,507.55981 L -97.12396,493.87489 C -97.12397,491.28124 -96.37957,489.0964 -94.89077,487.32036 L -94.89077,487.32036 z M -86.75366,490.05691 C -87.80873,490.05694 -88.64838,490.41705 -89.27261,491.13724 C -89.89686,491.85749 -90.20897,492.77004 -90.20897,493.87489 L -90.20897,507.55981 C -90.20897,508.6647 -89.90894,509.61315 -89.30887,510.40516 C -88.70882,511.19719 -87.85709,511.5932 -86.75366,511.59319 C -85.26488,511.5932 -84.34024,511.16092 -83.97975,510.29636 C -83.61929,509.43181 -83.43905,508.47127 -83.43904,507.41474 L -83.43904,493.87489 C -83.43905,492.81839 -83.73908,491.91793 -84.33913,491.17351 C -84.93921,490.42914 -85.74405,490.05694 -86.75366,490.05691 L -86.75366,490.05691 z M -55.17239,483.35952 L -55.17239,490.41739 C -55.50797,490.32217 -55.8439,490.25036 -56.18018,490.20198 C -56.5165,490.15365 -56.82899,490.12947 -57.11764,490.12945 C -59.3743,490.12947 -61.10268,490.89768 -62.30279,492.43408 C -63.50293,493.97052 -64.10299,495.81943 -64.10298,497.9808 L -64.10298,518.07518 L -71.01798,518.07518 L -71.01798,483.79033 L -64.10298,483.79033 L -64.10298,487.46543 C -62.90287,485.97667 -61.42653,484.92015 -59.67395,484.29588 C -57.92141,483.67167 -56.42089,483.35955 -55.17239,483.35952 L -55.17239,483.35952 z M -32.38982,527.51132 C -33.35111,528.95175 -34.57577,530.09216 -36.06382,530.93255 C -37.5519,531.77292 -39.13631,532.1931 -40.81706,532.19312 C -43.74631,532.1931 -46.25535,531.19667 -48.34421,529.2038 C -50.43307,527.21091 -51.4775,524.72568 -51.4775,521.74809 L -44.5625,521.74809 C -44.56251,522.70935 -44.25039,523.52592 -43.62614,524.19779 C -43.00191,524.86965 -42.18571,525.20558 -41.17753,525.20559 C -39.73711,525.20558 -38.68059,524.55716 -38.00798,523.26033 C -37.81603,522.78116 -37.72005,522.01331 -37.72004,520.9568 L -37.72004,514.54515 C -38.39265,515.69838 -39.3052,516.6472 -40.45768,517.39159 C -41.61019,518.13599 -42.83486,518.50819 -44.13169,518.50819 C -45.52378,518.50819 -46.80779,518.13599 -47.98373,517.39159 C -49.15968,516.6472 -50.00006,515.79473 -50.50487,514.83419 C -51.00969,513.87365 -51.29799,513.10544 -51.36979,512.52955 C -51.4416,511.95368 -51.4775,511.06494 -51.4775,509.86335 L -51.4775,490.8504 C -51.4775,489.98587 -51.36943,489.19348 -51.15329,488.47323 C -50.93715,487.75304 -50.33672,486.70861 -49.352,485.33994 C -48.36729,483.97134 -46.65063,483.28702 -44.20202,483.28698 C -42.90666,483.28702 -41.70654,483.61123 -40.60165,484.25961 C -39.49679,484.90806 -38.53625,485.80815 -37.72004,486.95989 L -37.72004,483.79033 L -30.80504,483.79033 L -30.80504,520.9568 C -30.80506,522.30052 -30.91313,523.48855 -31.12925,524.5209 C -31.34541,525.55323 -31.7656,526.55004 -32.38982,527.51132 L -32.38982,527.51132 z M -38.36845,491.42628 C -39.08942,490.46504 -40.02578,489.9844 -41.17753,489.98438 C -42.52274,489.9844 -43.39939,490.38078 -43.80748,491.17351 C -44.21559,491.96629 -44.44345,492.56672 -44.49106,492.97479 C -44.5387,493.38292 -44.56251,493.80311 -44.5625,494.23536 L -44.5625,507.27187 C -44.56251,507.94448 -44.52661,508.48483 -44.4548,508.89292 C -44.383,509.30103 -44.10678,509.84101 -43.62614,510.51286 C -43.14551,511.18473 -42.28169,511.52067 -41.03466,511.52066 C -39.54588,511.52067 -38.63333,511.10048 -38.29702,510.26009 C -37.96074,509.41972 -37.79259,508.78339 -37.79257,508.3511 C -37.79259,507.91883 -37.76841,507.55909 -37.72004,507.27187 L -37.72004,494.23536 C -37.72005,493.56279 -37.75632,493.03453 -37.82884,492.65058 C -37.90139,492.26669 -38.08126,491.85859 -38.36845,491.42628 L -38.36845,491.42628 z M -10.97882,518.07518 L -10.97882,514.61768 C -11.79504,515.86616 -12.6955,516.8267 -13.6802,517.4993 C -14.66493,518.17189 -15.85333,518.50819 -17.2454,518.50819 C -18.6375,518.50819 -19.94569,518.1239 -21.16998,517.35533 C -22.39429,516.58675 -23.24676,515.71047 -23.72739,514.72648 C -24.20803,513.7425 -24.48425,512.93839 -24.55605,512.31415 C -24.62785,511.68991 -24.66375,510.777 -24.66375,509.5754 L -24.66375,483.79033 L -17.74875,483.79033 L -17.74875,506.98393 C -17.74876,507.51147 -17.73667,508.05145 -17.71248,508.60388 C -17.68832,509.15632 -17.42419,509.79265 -16.92009,510.51286 C -16.41602,511.23309 -15.53974,511.5932 -14.29125,511.59319 C -13.66703,511.5932 -13.09114,511.42505 -12.5636,511.08875 C -12.03609,510.75246 -11.66426,510.35644 -11.4481,509.90071 C -11.23198,509.445 -11.09973,508.95301 -11.05136,508.42474 C -11.00302,507.89649 -10.97884,507.41622 -10.97882,506.98393 L -10.97882,483.79033 L -4.06383,483.79033 L -4.06383,518.07518 L -10.97882,518.07518 z M 21.51024,486.88735 C 21.8956,487.46473 22.1601,488.16151 22.30373,488.97768 C 22.44731,489.79391 22.51911,490.61011 22.51913,491.42628 L 22.51913,518.07518 L 15.60413,518.07518 L 15.60413,493.94742 C 15.60412,491.40213 14.4758,490.12947 12.21917,490.12945 C 11.211,490.12947 10.3948,490.51376 9.77057,491.28231 C 9.14632,492.05091 8.8342,492.93928 8.83421,493.94742 L 8.83421,518.07518 L 1.91921,518.07518 L 1.91921,483.79033 L 8.83421,483.79033 L 8.83421,487.10496 C 10.37135,484.60803 12.50856,483.35955 15.24586,483.35952 C 18.03001,483.35955 20.11813,484.5355 21.51024,486.88735 L 21.51024,486.88735 z M 47.0909,527.51132 C 46.1296,528.95175 44.90494,530.09216 43.41689,530.93255 C 41.92881,531.77292 40.3444,532.1931 38.66366,532.19312 C 35.73441,532.1931 33.22536,531.19667 31.13651,529.2038 C 29.04764,527.21091 28.00321,524.72568 28.00322,521.74809 L 34.91821,521.74809 C 34.9182,522.70935 35.23032,523.52592 35.85457,524.19779 C 36.4788,524.86965 37.295,525.20558 38.30318,525.20559 C 39.74361,525.20558 40.80012,524.55716 41.47274,523.26033 C 41.66468,522.78116 41.76066,522.01331 41.76068,520.9568 L 41.76068,514.54515 C 41.08807,515.69838 40.17552,516.6472 39.02303,517.39159 C 37.87052,518.13599 36.64585,518.50819 35.34903,518.50819 C 33.95693,518.50819 32.67292,518.13599 31.49698,517.39159 C 30.32103,516.6472 29.48065,515.79473 28.97584,514.83419 C 28.47103,513.87365 28.18272,513.10544 28.11092,512.52955 C 28.03911,511.95368 28.00321,511.06494 28.00322,509.86335 L 28.00322,490.8504 C 28.00321,489.98587 28.11128,489.19348 28.32743,488.47323 C 28.54356,487.75304 29.14399,486.70861 30.12871,485.33994 C 31.11342,483.97134 32.83008,483.28702 35.27869,483.28698 C 36.57405,483.28702 37.77417,483.61123 38.87906,484.25961 C 39.98392,484.90806 40.94446,485.80815 41.76068,486.95989 L 41.76068,483.79033 L 48.67568,483.79033 L 48.67568,520.9568 C 48.67565,522.30052 48.56758,523.48855 48.35147,524.5209 C 48.1353,525.55323 47.71511,526.55004 47.0909,527.51132 L 47.0909,527.51132 z M 41.11226,491.42628 C 40.39129,490.46504 39.45493,489.9844 38.30318,489.98438 C 36.95797,489.9844 36.08133,490.38078 35.67324,491.17351 C 35.26513,491.96629 35.03726,492.56672 34.98965,492.97479 C 34.94202,493.38292 34.9182,493.80311 34.91821,494.23536 L 34.91821,507.27187 C 34.9182,507.94448 34.95411,508.48483 35.02592,508.89292 C 35.09771,509.30103 35.37393,509.84101 35.85457,510.51286 C 36.3352,511.18473 37.19902,511.52067 38.44605,511.52066 C 39.93483,511.52067 40.84738,511.10048 41.18369,510.26009 C 41.51998,509.41972 41.68813,508.78339 41.68814,508.3511 C 41.68813,507.91883 41.7123,507.55909 41.76068,507.27187 L 41.76068,494.23536 C 41.76066,493.56279 41.72439,493.03453 41.65187,492.65058 C 41.57932,492.26669 41.39945,491.85859 41.11226,491.42628 L 41.11226,491.42628 z M 63.53215,512.02401 C 64.58865,512.02401 65.50083,511.68808 66.26869,511.01621 C 67.03652,510.34436 67.42044,509.48017 67.42046,508.42364 C 67.42044,507.17517 67.0966,506.2509 66.44893,505.65082 C 65.80123,505.05078 64.78061,504.51043 63.38708,504.02978 L 62.0199,503.52643 C 60.57945,502.99745 59.37896,502.48092 58.41843,501.97682 C 57.45789,501.47275 56.42555,500.56057 55.32141,499.24027 C 54.21727,497.92001 53.66519,496.01139 53.6652,493.51441 C 53.66519,490.68191 54.64954,488.2813 56.61825,486.31257 C 58.58694,484.3439 61.01173,483.35955 63.89262,483.35952 C 66.53317,483.35955 68.76564,484.36771 70.59002,486.384 C 72.41436,488.40036 73.32654,490.68118 73.32656,493.22647 L 66.98965,493.22647 C 66.98963,492.21833 66.66542,491.39004 66.01702,490.7416 C 65.36859,490.09321 64.51612,489.769 63.45961,489.76897 C 62.4998,489.769 61.70777,490.12911 61.08354,490.8493 C 60.45929,491.56955 60.14717,492.43374 60.14718,493.44187 C 60.14717,494.49842 60.45929,495.31498 61.08354,495.89158 C 61.70777,496.46822 62.61995,496.97266 63.82009,497.40492 L 66.05329,498.12368 C 67.35011,498.60433 68.37036,499.06079 69.11404,499.49305 C 69.85769,499.92534 70.60172,500.5734 71.34614,501.4372 C 72.09052,502.30104 72.70303,503.30921 73.18369,504.46169 C 73.6643,505.6142 73.90462,506.83887 73.90464,508.1357 C 73.90462,510.92134 72.90818,513.35822 70.91533,515.44634 C 68.92243,517.53447 66.53317,518.57853 63.74755,518.57853 C 62.06678,518.57853 60.3743,518.12244 58.67011,517.21026 C 56.9659,516.29808 55.64562,515.06169 54.70926,513.50108 C 53.7729,511.94049 53.30472,510.17621 53.30472,508.20823 L 59.71417,508.20823 C 59.71416,509.26476 60.08636,510.16485 60.83077,510.90851 C 61.57516,511.65218 62.47562,512.02401 63.53215,512.02401 L 63.53215,512.02401 z M 91.98781,518.07518 L 91.98781,514.54515 C 91.3152,515.69838 90.42683,516.6472 89.3227,517.39159 C 88.21855,518.13599 86.99388,518.50819 85.6487,518.50819 C 82.52749,518.50819 80.55879,517.65572 79.7426,515.95079 C 78.92639,514.24585 78.48239,513.02119 78.41059,512.27678 C 78.33878,511.53239 78.30288,510.53595 78.30289,509.28746 L 78.30289,490.77786 C 78.30288,488.71321 78.99893,486.96065 80.39101,485.52018 C 81.78309,484.07977 83.53565,483.35955 85.6487,483.35952 C 86.94552,483.35955 88.1581,483.69548 89.28644,484.36731 C 90.41474,485.03921 91.3152,485.92758 91.98781,487.03242 L 91.98781,470.03507 L 98.90281,470.03507 L 98.90281,518.07518 L 91.98781,518.07518 z M 91.48227,491.78676 C 90.81112,490.63355 89.82714,490.05694 88.53031,490.05691 C 87.8577,490.05694 87.24555,490.23718 86.69386,490.59763 C 86.14215,490.95813 85.76995,491.39041 85.57726,491.89446 C 85.38456,492.39857 85.27649,492.92683 85.25305,493.47924 C 85.2296,494.0317 85.21787,494.45153 85.21788,494.73871 L 85.21788,507.05427 C 85.21787,507.53491 85.2296,508.01555 85.25305,508.49617 C 85.27649,508.97682 85.50435,509.60106 85.93664,510.36889 C 86.36891,511.13674 87.25764,511.52067 88.60285,511.52066 C 89.99492,511.52067 90.9071,511.13674 91.33939,510.36889 C 91.77166,509.60106 91.9878,508.83248 91.98781,508.06316 L 91.98781,507.05427 L 91.98781,494.73871 C 91.9878,494.2581 91.97571,493.76574 91.95155,493.26164 C 91.92735,492.75758 91.77092,492.26595 91.48227,491.78676 L 91.48227,491.78676 z M 104.82432,518.07518 L 104.82432,483.79033 L 111.73932,483.79033 L 111.73932,518.07518 L 104.82432,518.07518 z M 104.82432,476.805 L 104.82432,470.03507 L 111.73932,470.03507 L 111.73932,476.805 L 104.82432,476.805 z M 127.34532,511.52066 C 128.35493,511.52067 129.1715,511.20855 129.79502,510.5843 C 130.41851,509.96007 130.8028,509.14387 130.94789,508.1357 L 137.79035,508.1357 L 137.79035,508.92699 C 137.79033,509.98351 137.5621,511.04003 137.10566,512.09654 C 136.64919,513.15307 135.70074,514.4858 134.26032,516.09476 C 132.81986,517.70371 130.56322,518.50819 127.49039,518.50819 C 125.52094,518.50819 123.70794,517.97993 122.05137,516.92341 C 120.39478,515.8669 119.25437,514.70231 118.63014,513.42965 C 118.00589,512.15699 117.60988,511.0045 117.4421,509.97215 C 117.27432,508.93982 117.19042,507.91957 117.19043,506.91139 L 117.19043,493.87489 C 117.19042,491.04239 118.21067,488.5817 120.25118,486.49281 C 122.29168,484.40398 124.72892,483.35955 127.56292,483.35952 C 130.49215,483.35955 132.92903,484.3798 134.87357,486.42027 C 136.81807,488.4608 137.79033,490.94567 137.79035,493.87489 L 137.79035,503.38136 L 124.10542,503.38136 L 124.10542,508.49617 C 124.10541,509.21567 124.45344,509.89962 125.14949,510.54803 C 125.84552,511.19646 126.57746,511.52067 127.34532,511.52066 L 127.34532,511.52066 z M 127.49039,490.12945 C 126.57746,490.12947 125.78507,490.44159 125.11322,491.06581 C 124.44135,491.69007 124.10541,492.79421 124.10542,494.37823 L 124.10542,497.7632 L 130.87535,497.7632 L 130.87535,494.37823 C 130.87534,493.12978 130.61121,492.10953 130.08296,491.31748 C 129.55469,490.52548 128.6905,490.12947 127.49039,490.12945 L 127.49039,490.12945 z M 162.74675,486.88735 C 163.13211,487.46473 163.39661,488.16151 163.54024,488.97768 C 163.68382,489.79391 163.75562,490.61011 163.75564,491.42628 L 163.75564,518.07518 L 156.84065,518.07518 L 156.84065,493.94742 C 156.84063,491.40213 155.71231,490.12947 153.45568,490.12945 C 152.44751,490.12947 151.63131,490.51376 151.00708,491.28231 C 150.38283,492.05091 150.07071,492.93928 150.07072,493.94742 L 150.07072,518.07518 L 143.15572,518.07518 L 143.15572,483.79033 L 150.07072,483.79033 L 150.07072,487.10496 C 151.60786,484.60803 153.74508,483.35955 156.48237,483.35952 C 159.26652,483.35955 161.35464,484.5355 162.74675,486.88735 L 162.74675,486.88735 z M 178.60334,512.02401 C 179.65985,512.02401 180.57203,511.68808 181.33989,511.01621 C 182.10772,510.34436 182.49164,509.48017 182.49166,508.42364 C 182.49164,507.17517 182.1678,506.2509 181.52013,505.65082 C 180.87243,505.05078 179.85181,504.51043 178.45827,504.02978 L 177.0911,503.52643 C 175.65065,502.99745 174.45016,502.48092 173.48963,501.97682 C 172.52909,501.47275 171.49675,500.56057 170.39261,499.24027 C 169.28846,497.92001 168.73639,496.01139 168.73639,493.51441 C 168.73639,490.68191 169.72074,488.2813 171.68945,486.31257 C 173.65814,484.3439 176.08293,483.35955 178.96382,483.35952 C 181.60437,483.35955 183.83683,484.36771 185.66121,486.384 C 187.48556,488.40036 188.39774,490.68118 188.39776,493.22647 L 182.06084,493.22647 C 182.06083,492.21833 181.73662,491.39004 181.08822,490.7416 C 180.43978,490.09321 179.58732,489.769 178.53081,489.76897 C 177.57099,489.769 176.77897,490.12911 176.15474,490.8493 C 175.53049,491.56955 175.21837,492.43374 175.21838,493.44187 C 175.21837,494.49842 175.53049,495.31498 176.15474,495.89158 C 176.77897,496.46822 177.69115,496.97266 178.89129,497.40492 L 181.12448,498.12368 C 182.4213,498.60433 183.44156,499.06079 184.18524,499.49305 C 184.92889,499.92534 185.67292,500.5734 186.41734,501.4372 C 187.16171,502.30104 187.77423,503.30921 188.25489,504.46169 C 188.7355,505.6142 188.97582,506.83887 188.97584,508.1357 C 188.97582,510.92134 187.97938,513.35822 185.98652,515.44634 C 183.99363,517.53447 181.60437,518.57853 178.81875,518.57853 C 177.13798,518.57853 175.4455,518.12244 173.74131,517.21026 C 172.0371,516.29808 170.71681,515.06169 169.78046,513.50108 C 168.8441,511.94049 168.37592,510.17621 168.37592,508.20823 L 174.78537,508.20823 C 174.78536,509.26476 175.15756,510.16485 175.90197,510.90851 C 176.64636,511.65218 177.54681,512.02401 178.60334,512.02401 L 178.60334,512.02401 z M 203.88945,511.52066 L 205.47423,511.52066 L 205.47423,518.07518 L 203.31357,518.07518 C 202.01672,518.07518 200.86422,517.9433 199.85607,517.67954 C 198.8479,517.41577 197.86355,516.87542 196.90302,516.05849 C 195.94248,515.24156 195.27025,514.3411 194.88633,513.35711 C 194.5024,512.37313 194.31044,511.16092 194.31044,509.72047 L 194.31044,489.19309 L 190.92548,489.19309 L 190.92548,483.79033 L 194.31044,483.79033 L 194.31044,473.42003 L 201.22544,473.42003 L 201.22544,483.79033 L 205.47423,483.79033 L 205.47423,489.19309 L 201.22544,489.19309 L 201.22544,508.49617 C 201.22543,509.64795 201.38149,510.43997 201.69362,510.87224 C 202.00573,511.30453 202.73767,511.52067 203.88945,511.52066 L 203.88945,511.52066 z "
+       style="font-size:72.02500153px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       id="text2100" />
+    <path
+       d="M -38.18382,589.82838 L -38.18382,558.95048 L -41.87651,558.95048 L -41.87651,553.32352 L -38.18382,553.32352 L -38.18382,548.50544 C -38.18383,545.10587 -37.24601,542.60305 -35.37035,540.99698 C -33.49471,539.391 -31.1267,538.58799 -28.26632,538.58794 L -23.51858,538.58794 L -23.51858,545.48096 L -27.66846,545.48096 C -29.80202,545.481 -30.8688,546.48916 -30.86879,548.50544 L -30.86879,553.32352 L -23.51858,553.32352 L -23.51858,558.95048 L -30.86879,558.95048 L -30.86879,589.82838 L -38.18382,589.82838 z M -19.3687,589.82838 L -19.3687,553.32352 L -12.01849,553.32352 L -12.01849,557.22722 L -11.87782,557.22722 C -9.60361,554.34344 -6.43845,552.90154 -2.38234,552.9015 C 0.29044,552.90154 2.83429,553.83936 5.24922,555.71498 L -0.06122,562.0453 C -1.65554,560.8496 -3.27329,560.25174 -4.91446,560.25171 C -6.7198,560.25174 -8.35513,560.85546 -9.82046,562.06288 C -11.28583,563.27036 -12.0185,565.21049 -12.01849,567.88326 L -12.01849,589.82838 L -19.3687,589.82838 z M 36.90083,574.35426 L 14.18201,574.35426 C 14.182,577.35532 14.99673,579.60609 16.62622,581.1066 C 18.25567,582.60713 20.33647,583.35739 22.86862,583.35739 C 25.89308,583.35739 28.56588,582.18511 30.88703,579.84054 L 36.19746,584.37727 C 34.39212,586.48738 32.35821,587.99376 30.09574,588.89642 C 27.83321,589.79908 25.47106,590.2504 23.00929,590.2504 C 19.25797,590.2504 15.6239,589.03709 12.10707,586.61047 C 8.59022,584.18385 6.8318,579.21924 6.8318,571.71663 C 6.8318,564.61262 8.45541,559.70077 11.70263,556.98104 C 14.94984,554.26138 18.3436,552.90154 21.8839,552.9015 C 25.89308,552.90154 29.3982,554.29069 32.39927,557.06896 C 35.40028,559.8473 36.9008,563.59274 36.90083,568.30529 L 36.90083,574.35426 z M 14.18201,568.30529 L 29.58579,568.30529 C 29.46854,565.56217 28.69483,563.46379 27.26468,562.01013 C 25.83447,560.55653 24.04088,559.82972 21.8839,559.82969 C 19.70344,559.82972 17.89227,560.55653 16.45037,562.01013 C 15.00846,563.46379 14.25234,565.56217 14.18201,568.30529 L 14.18201,568.30529 z M 44.8489,589.82838 L 44.8489,553.32352 L 52.19911,553.32352 L 52.19911,589.82838 L 44.8489,589.82838 z M 44.8489,545.93815 L 44.8489,538.58794 L 52.19911,538.58794 L 52.19911,545.93815 L 44.8489,545.93815 z "
+       style="font-size:72.02500153px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       id="text1889" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1028-30.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1028-30.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1028-30.svg	(revision 21967)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1028-30.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="-30.613024"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g3933"
+     transform="translate(168.2284,-428.3237)">
+    <path
+       id="text2064"
+       style="font-size:103.73000336px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M -71.156515,640.08645 L -71.156515,598.59508 L -76.031521,598.59508 L -76.031521,590.7096 L -71.156515,590.7096 L -71.156515,583.86559 C -71.156521,579.99308 -70.18838,577.12295 -68.252087,575.25519 C -66.31581,573.38756 -64.51776,572.19466 -62.85792,571.6765 C -61.19812,571.15846 -59.36472,570.89941 -57.35771,570.89934 L -53.93571,570.89934 L -53.93571,580.02574 L -57.56664,580.02574 C -59.98728,580.0258 -61.19759,581.30575 -61.19757,583.86559 L -61.19757,590.7096 L -53.93571,590.7096 L -53.93571,598.59508 L -61.19757,598.59508 L -61.19757,640.08645 L -71.156515,640.08645 z M -48.70933,634.90121 C -49.19472,634.06972 -49.50653,633.15276 -49.64476,632.15032 C -49.78299,631.14789 -49.85211,630.0241 -49.8521,628.77896 L -49.8521,623.17904 C -49.85211,619.51331 -48.93567,616.78141 -47.10279,614.98333 C -45.26992,613.1853 -43.6101,611.95811 -42.12332,611.30175 C -40.63656,610.64545 -38.85592,610.31728 -36.78139,610.31725 L -30.14315,610.31725 L -30.14315,606.0627 C -30.14317,605.09407 -30.19488,604.29898 -30.29826,603.67743 C -30.4017,603.05596 -30.8338,602.26087 -31.59457,601.29216 C -32.35539,600.32353 -33.39317,599.83919 -34.70793,599.83915 C -36.09025,599.83919 -37.26574,600.28871 -38.23439,601.18769 C -39.20308,602.08676 -39.79082,603.26225 -39.99763,604.71416 L -49.8521,604.71416 C -49.85211,600.70445 -48.41704,597.26452 -45.5469,594.39434 C -42.67678,591.52426 -39.20202,590.08919 -35.12262,590.08914 C -31.11079,590.08919 -27.61809,591.50685 -24.64452,594.34211 C -21.67101,597.17746 -20.18424,600.63481 -20.18421,604.71416 L -20.18421,640.08645 L -30.14315,640.08645 L -30.14315,635.10697 C -31.17937,636.83539 -32.47568,638.20134 -34.03208,639.20483 C -35.58851,640.20832 -37.33538,640.71007 -39.27271,640.71007 C -43.62857,640.71007 -46.7741,638.77378 -48.70933,634.90121 L -48.70933,634.90121 z M -39.89316,623.07457 L -39.89316,625.56273 C -39.89318,626.87751 -39.42625,628.07094 -38.49239,629.14301 C -37.55856,630.2151 -36.33189,630.75113 -34.81239,630.75112 C -33.98092,630.75113 -33.20218,630.54379 -32.47619,630.12909 C -31.75024,629.71441 -31.19731,629.14407 -30.81742,628.41809 C -30.43757,627.69212 -30.23023,626.75828 -30.19538,625.61654 C -30.16058,624.47483 -30.14317,623.66233 -30.14315,623.17904 L -30.14315,618.40533 L -33.87854,618.40533 C -35.67662,618.40535 -37.12856,618.75146 -38.23439,619.44364 C -39.34025,620.13587 -39.89318,621.34618 -39.89316,623.07457 L -39.89316,623.07457 z M 8.06234,590.08914 C 9.86037,590.08919 11.55501,590.573 13.14627,591.54056 C 14.73748,592.50823 15.87867,593.63201 16.56986,594.91191 C 17.26098,596.19191 17.69308,597.2814 17.86617,598.18039 C 18.03919,599.07945 18.12571,600.25494 18.12575,601.70685 L 18.12575,640.08645 L 8.1668,640.08645 L 8.1668,605.43908 C 8.16678,603.78035 7.78638,602.43234 7.02561,601.39504 C 6.26479,600.35782 5.05501,599.83919 3.39626,599.83915 C 1.94429,599.83919 0.7514,600.40953 -0.18244,601.55015 C -1.1163,602.69086 -1.58322,603.98717 -1.58321,605.43908 L -1.58321,640.08645 L -11.54215,640.08645 L -11.54215,570.89934 L -1.58321,570.89934 L -1.58321,595.4833 C 0.69811,591.88724 3.91329,590.08919 8.06234,590.08914 L 8.06234,590.08914 z M 49.77213,590.08914 L 49.77213,600.25385 C 49.28882,600.11671 48.80502,600.0133 48.32071,599.94362 C 47.83635,599.87402 47.38631,599.83919 46.97059,599.83915 C 43.72056,599.83919 41.23135,600.94557 39.50296,603.15827 C 37.77454,605.37105 36.91033,608.03384 36.91034,611.14664 L 36.91034,640.08645 L 26.9514,640.08645 L 26.9514,590.7096 L 36.91034,590.7096 L 36.91034,596.00246 C 38.63874,593.85835 40.76496,592.33676 43.28901,591.43768 C 45.81301,590.5387 47.97405,590.08919 49.77213,590.08914 L 49.77213,590.08914 z M 53.84941,640.08645 L 53.84941,631.89074 L 69.7185,599.21553 L 54.98902,599.21553 L 54.98902,590.7096 L 80.82022,590.7096 L 80.82022,597.86699 L 64.94796,630.64666 L 80.82022,630.64666 L 80.82022,640.08645 L 53.84941,640.08645 z M 101.32374,630.64666 C 102.77778,630.64667 103.9538,630.19716 104.85179,629.29812 C 105.74974,628.3991 106.30319,627.22362 106.51214,625.77165 L 116.36662,625.77165 L 116.36662,626.91127 C 116.36659,628.43287 116.03789,629.95446 115.38054,631.47604 C 114.72312,632.99764 113.35717,634.91704 111.28269,637.23425 C 109.20814,639.55146 105.95814,640.71007 101.53267,640.71007 C 98.69629,640.71007 96.08521,639.94927 93.69942,638.42768 C 91.31362,636.90609 89.67121,635.22885 88.77219,633.39597 C 87.87315,631.56311 87.30282,629.90328 87.06119,628.4165 C 86.81954,626.92975 86.69872,625.46039 86.69873,624.00842 L 86.69873,605.23332 C 86.69872,601.15397 88.16808,597.61009 91.10681,594.60169 C 94.04552,591.59337 97.55562,590.08919 101.63714,590.08914 C 105.85579,590.08919 109.36537,591.55855 112.16588,594.49722 C 114.96634,597.43599 116.36659,601.01468 116.36662,605.23332 L 116.36662,618.92449 L 96.65767,618.92449 L 96.65767,626.29081 C 96.65765,627.32703 97.15887,628.31205 98.16132,629.24589 C 99.16374,630.17975 100.21788,630.64667 101.32374,630.64666 L 101.32374,630.64666 z M 101.53267,599.83915 C 100.21788,599.83919 99.07669,600.28871 98.10909,601.18769 C 97.14146,602.08676 96.65765,603.67694 96.65767,605.95824 L 96.65767,610.83324 L 106.40768,610.83324 L 106.40768,605.95824 C 106.40766,604.16022 106.02726,602.69086 105.26648,601.55015 C 104.50567,600.40953 103.26106,599.83919 101.53267,599.83915 L 101.53267,599.83915 z M 144.01171,640.08645 L 144.01171,635.10697 C 142.8362,636.90503 141.53936,638.28839 140.1212,639.25706 C 138.703,640.22573 136.99147,640.71007 134.98662,640.71007 C 132.98173,640.71007 131.09768,640.15662 129.33446,639.04972 C 127.57122,637.94282 126.3435,636.6808 125.6513,635.26367 C 124.95908,633.84655 124.56127,632.68847 124.45787,631.78944 C 124.35446,630.89042 124.30275,629.57565 124.30276,627.84511 L 124.30276,590.7096 L 134.2617,590.7096 L 134.2617,624.11289 C 134.26168,624.87264 134.27909,625.65032 134.31393,626.44592 C 134.34874,627.24156 134.72913,628.15799 135.45512,629.19524 C 136.18108,630.23251 137.4431,630.75113 139.24117,630.75112 C 140.14017,630.75113 140.96956,630.50897 141.72932,630.02462 C 142.48904,629.5403 143.02455,628.96996 143.33586,628.31362 C 143.64711,627.6573 143.83758,626.94874 143.90724,626.18793 C 143.97686,625.42715 144.01168,624.73547 144.01171,624.11289 L 144.01171,590.7096 L 153.97065,590.7096 L 153.97065,640.08645 L 144.01171,640.08645 z M 189.35242,653.67632 C 187.96798,655.75082 186.20422,657.39323 184.06114,658.60356 C 181.91801,659.81385 179.63615,660.419 177.21556,660.41902 C 172.99687,660.419 169.38335,658.98393 166.375,656.11382 C 163.36663,653.24367 161.86245,649.66445 161.86245,645.37614 L 171.82139,645.37614 C 171.82138,646.76055 172.27089,647.93657 173.16993,648.90419 C 174.06895,649.8718 175.24443,650.3556 176.6964,650.35561 C 178.77089,650.3556 180.29249,649.42176 181.26118,647.55407 C 181.53762,646.86396 181.67585,645.75812 181.67587,644.23653 L 181.67587,635.00251 C 180.70718,636.66339 179.39293,638.02987 177.73313,639.10195 C 176.07329,640.17403 174.30953,640.71007 172.44185,640.71007 C 170.43696,640.71007 168.58773,640.17403 166.89415,639.10195 C 165.20056,638.02987 163.99025,636.80215 163.26322,635.41879 C 162.53619,634.03543 162.12097,632.92906 162.01757,632.09967 C 161.91415,631.27029 161.86245,629.99034 161.86245,628.25981 L 161.86245,600.87747 C 161.86245,599.63238 162.01809,598.49118 162.32938,597.45388 C 162.64065,596.41667 163.50539,594.91249 164.92358,592.94134 C 166.34175,590.97028 168.81407,589.98473 172.34055,589.98468 C 174.20612,589.98473 175.93453,590.45165 177.52578,591.38545 C 179.117,592.31935 180.50036,593.61565 181.67587,595.27437 L 181.67587,590.7096 L 191.63481,590.7096 L 191.63481,644.23653 C 191.63478,646.17176 191.47914,647.88275 191.16789,649.36953 C 190.85657,650.85629 190.25142,652.29189 189.35242,653.67632 L 189.35242,653.67632 z M 180.74202,601.70685 C 179.70369,600.32247 178.35515,599.63027 176.6964,599.63022 C 174.75904,599.63027 173.4965,600.20113 172.90877,601.34281 C 172.32101,602.48457 171.99285,603.3493 171.92428,603.93701 C 171.85567,604.52479 171.82138,605.12994 171.82139,605.75247 L 171.82139,624.52758 C 171.82138,625.49626 171.87308,626.27447 171.97651,626.8622 C 172.0799,627.44996 172.47771,628.22764 173.16993,629.19524 C 173.86213,630.16286 175.1062,630.64667 176.90216,630.64666 C 179.0463,630.64667 180.36055,630.04152 180.8449,628.8312 C 181.32922,627.6209 181.57138,626.70446 181.57141,626.08188 C 181.57138,625.45933 181.6062,624.94123 181.67587,624.52758 L 181.67587,605.75247 C 181.67585,604.78384 181.62361,604.02304 181.51917,603.47008 C 181.41469,602.9172 181.15564,602.32945 180.74202,601.70685 L 180.74202,601.70685 z M 214.17064,630.64666 C 215.62468,630.64667 216.80069,630.19716 217.69869,629.29812 C 218.59664,628.3991 219.15008,627.22362 219.35904,625.77165 L 229.21351,625.77165 L 229.21351,626.91127 C 229.21348,628.43287 228.88479,629.95446 228.22743,631.47604 C 227.57001,632.99764 226.20406,634.91704 224.12958,637.23425 C 222.05504,639.55146 218.80504,640.71007 214.37957,640.71007 C 211.54318,640.71007 208.9321,639.94927 206.54632,638.42768 C 204.16051,636.90609 202.5181,635.22885 201.61908,633.39597 C 200.72005,631.56311 200.14971,629.90328 199.90808,628.4165 C 199.66643,626.92975 199.54562,625.46039 199.54562,624.00842 L 199.54562,605.23332 C 199.54562,601.15397 201.01497,597.61009 203.9537,594.60169 C 206.89241,591.59337 210.40252,590.08919 214.48403,590.08914 C 218.70268,590.08919 222.21226,591.55855 225.01278,594.49722 C 227.81324,597.43599 229.21348,601.01468 229.21351,605.23332 L 229.21351,618.92449 L 209.50456,618.92449 L 209.50456,626.29081 C 209.50455,627.32703 210.00576,628.31205 211.00821,629.24589 C 212.01063,630.17975 213.06477,630.64667 214.17064,630.64666 L 214.17064,630.64666 z M 214.37957,599.83915 C 213.06477,599.83919 211.92358,600.28871 210.95598,601.18769 C 209.98835,602.08676 209.50455,603.67694 209.50456,605.95824 L 209.50456,610.83324 L 219.25457,610.83324 L 219.25457,605.95824 C 219.25455,604.16022 218.87415,602.69086 218.11338,601.55015 C 217.35256,600.40953 216.10796,599.83919 214.37957,599.83915 L 214.37957,599.83915 z " />
+    <path
+       id="text1982"
+       style="font-size:103.73000336px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       d="M 13.96863,739.91795 L 13.96863,695.44776 L 8.65044,695.44776 L 8.65044,687.34385 L 13.96863,687.34385 L 13.96863,680.40488 C 13.96862,675.50884 15.31927,671.90429 18.02058,669.59123 C 20.72187,667.27832 24.13226,666.12182 28.25177,666.12175 L 35.08944,666.12175 L 35.08944,676.04903 L 29.11281,676.04903 C 26.04006,676.0491 24.50369,677.50105 24.50371,680.40488 L 24.50371,687.34385 L 35.08944,687.34385 L 35.08944,695.44776 L 24.50371,695.44776 L 24.50371,739.91795 L 13.96863,739.91795 z M 41.06607,739.91795 L 41.06607,687.34385 L 51.6518,687.34385 L 51.6518,692.96594 L 51.85439,692.96594 C 55.1297,688.81274 59.68814,686.73611 65.52974,686.73606 C 69.37906,686.73611 73.04269,688.08676 76.52066,690.78801 L 68.8726,699.90491 C 66.57646,698.18287 64.24659,697.32183 61.88298,697.32179 C 59.28295,697.32183 56.92775,698.19131 54.81738,699.93023 C 52.70697,701.66924 51.65178,704.46339 51.6518,708.31271 L 51.6518,739.91795 L 41.06607,739.91795 z M 122.10513,717.63221 L 89.38561,717.63221 C 89.38559,721.95431 90.55897,725.19587 92.90574,727.35689 C 95.25248,729.51795 98.24923,730.59846 101.89601,730.59846 C 106.25183,730.59846 110.10118,728.91015 113.44408,725.53351 L 121.09214,732.06729 C 118.4921,735.10626 115.56287,737.27574 112.30447,738.57574 C 109.04599,739.87574 105.64404,740.52574 102.09861,740.52574 C 96.69599,740.52574 91.46222,738.77834 86.39729,735.28353 C 81.33234,731.78872 78.79988,724.63872 78.79988,713.8335 C 78.79988,703.60235 81.13819,696.52833 85.81482,692.61139 C 90.49144,688.69456 95.3791,686.73611 100.47783,686.73606 C 106.25183,686.73611 111.29989,688.73676 115.62201,692.73802 C 119.94404,696.73936 122.10508,702.13352 122.10513,708.92051 L 122.10513,717.63221 z M 89.38561,708.92051 L 111.57005,708.92051 C 111.40118,704.96989 110.2869,701.94781 108.22719,699.85426 C 106.16742,697.76079 103.5843,696.71404 100.47783,696.714 C 97.33754,696.71404 94.7291,697.76079 92.6525,699.85426 C 90.57585,701.94781 89.48689,704.96989 89.38561,708.92051 L 89.38561,708.92051 z M 133.5519,739.91795 L 133.5519,687.34385 L 144.13763,687.34385 L 144.13763,739.91795 L 133.5519,739.91795 z M 133.5519,676.70748 L 133.5519,666.12175 L 144.13763,666.12175 L 144.13763,676.70748 L 133.5519,676.70748 z " />
+    <path
+       id="text2060"
+       style="font-size:103.73213959px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       d="M -86.588796,476.12162 C -84.583906,476.12169 -82.578994,476.57121 -80.574054,477.47019 C -78.56917,478.3693 -76.460319,479.92522 -74.247495,482.13795 C -72.034739,484.3508 -70.928345,487.77339 -70.928307,492.40574 L -70.928307,497.69555 C -70.928345,502.95269 -73.002901,506.6871 -77.151982,508.8988 C -73.002901,511.3195 -70.928345,515.15838 -70.928307,520.41545 L -70.928307,528.50686 C -70.928345,533.3461 -72.484262,537.35645 -75.596064,540.53792 C -78.707931,543.71941 -82.718282,545.31015 -87.62713,545.31015 L -102.87608,545.31015 L -102.87608,476.12162 L -86.588796,476.12162 z M -80.678521,496.66038 L -80.678521,492.40574 C -80.678548,490.26371 -81.300599,488.57008 -82.544673,487.32487 C -83.7888,486.07977 -85.448128,485.45719 -87.522664,485.45713 L -93.125871,485.45713 L -93.125871,504.54286 L -87.21243,504.54286 C -84.931072,504.5429 -83.271744,503.83432 -82.234439,502.41712 C -81.197187,501.00001 -80.678548,499.0811 -80.678521,496.66038 L -80.678521,496.66038 z M -80.678521,528.50686 L -80.678521,520.41545 C -80.678548,518.20163 -81.283715,516.45524 -82.494023,515.17629 C -83.704382,513.8974 -85.380594,513.25793 -87.522664,513.2579 L -93.125871,513.2579 L -93.125871,535.45547 L -87.421363,535.45547 C -85.414361,535.45548 -83.7888,534.7986 -82.544673,533.48485 C -81.300599,532.17111 -80.678548,530.51179 -80.678521,528.50686 L -80.678521,528.50686 z M -61.86504,540.12481 C -62.35045,539.2933 -62.66226,538.37632 -62.80049,537.37385 C -62.93873,536.37141 -63.00785,535.2476 -63.00784,534.00243 L -63.00784,528.40239 C -63.00785,524.73658 -62.09139,522.00463 -60.25847,520.20651 C -58.42557,518.40845 -56.76571,517.18123 -55.2789,516.52486 C -53.79211,515.86854 -52.01143,515.54037 -49.93686,515.54034 L -43.29848,515.54034 L -43.29848,511.2857 C -43.29851,510.31705 -43.35021,509.52194 -43.4536,508.90038 C -43.55703,508.27889 -43.98915,507.48379 -44.74994,506.51506 C -45.51077,505.54641 -46.54857,505.06207 -47.86336,505.06203 C -49.24571,505.06207 -50.42122,505.51159 -51.38989,506.41059 C -52.3586,507.30968 -52.94635,508.48519 -53.15316,509.93713 L -63.00784,509.93713 C -63.00785,505.92734 -61.57275,502.48734 -58.70255,499.6171 C -55.83237,496.74696 -52.35754,495.31186 -48.27806,495.31181 C -44.26614,495.31186 -40.77337,496.72955 -37.79974,499.56487 C -34.82617,502.40028 -33.33937,505.8577 -33.33934,509.93713 L -33.33934,545.31015 L -43.29848,545.31015 L -43.29848,540.33057 C -44.33473,542.05902 -45.63106,543.425 -47.18749,544.42851 C -48.74395,545.43202 -50.49086,545.93378 -52.42823,545.93378 C -56.78418,545.93378 -59.92978,543.99746 -61.86504,540.12481 L -61.86504,540.12481 z M -53.0487,528.29792 L -53.0487,530.78613 C -53.04871,532.10094 -52.58178,533.29439 -51.64789,534.36648 C -50.71404,535.43859 -49.48735,535.97464 -47.96782,535.97463 C -47.13633,535.97464 -46.35758,535.76729 -45.63157,535.35258 C -44.9056,534.93789 -44.35267,534.36755 -43.97277,533.64155 C -43.59291,532.91557 -43.38556,531.9817 -43.35072,530.83994 C -43.31592,529.69821 -43.29851,528.8857 -43.29848,528.40239 L -43.29848,523.62858 L -47.03395,523.62858 C -48.83206,523.62861 -50.28404,523.97472 -51.38989,524.66692 C -52.49578,525.35916 -53.04871,526.5695 -53.0487,528.29792 L -53.0487,528.29792 z M -4.88328,545.31015 L -4.88328,540.33057 C -6.05881,542.12867 -7.35567,543.51206 -8.77386,544.48075 C -10.1921,545.44944 -11.90366,545.93378 -13.90856,545.93378 C -15.91348,545.93378 -17.79757,545.38032 -19.56083,544.2734 C -21.32411,543.16647 -22.55185,541.90443 -23.24407,540.48727 C -23.9363,539.07012 -24.33411,537.91202 -24.43752,537.01297 C -24.54094,536.11393 -24.59264,534.79913 -24.59264,533.06856 L -24.59264,495.93228 L -14.63349,495.93228 L -14.63349,529.33626 C -14.6335,530.09603 -14.61609,530.87373 -14.58126,531.66935 C -14.54645,532.46499 -14.16604,533.38145 -13.44004,534.41872 C -12.71406,535.456 -11.45203,535.97464 -9.65392,535.97463 C -8.75489,535.97464 -7.92549,535.73247 -7.16571,535.24812 C -6.40598,534.76378 -5.87046,534.19344 -5.55914,533.53708 C -5.24788,532.88075 -5.05741,532.17217 -4.98774,531.41134 C -4.91812,530.65055 -4.8833,529.95885 -4.88328,529.33626 L -4.88328,495.93228 L 5.07587,495.93228 L 5.07587,545.31015 L -4.88328,545.31015 z M 26.45353,536.5951 C 27.97514,536.59511 29.28889,536.11129 30.39477,535.14365 C 31.50062,534.17603 32.05355,532.9314 32.05358,531.40976 C 32.05355,529.61169 31.58715,528.28053 30.65436,527.41629 C 29.72152,526.55208 28.25161,525.77386 26.2446,525.08162 L 24.27557,524.35668 C 22.20099,523.59484 20.47202,522.85091 19.08864,522.1249 C 17.70524,521.39893 16.21844,520.08519 14.62824,518.18366 C 13.03802,516.28219 12.24291,513.53335 12.24292,509.93713 C 12.24291,505.8577 13.6606,502.40028 16.49597,499.56487 C 19.33133,496.72955 22.82357,495.31186 26.9727,495.31181 C 30.77569,495.31186 33.99093,496.76384 36.61845,499.66775 C 39.24591,502.57176 40.55966,505.85664 40.55969,509.52243 L 31.43311,509.52243 C 31.43309,508.07049 30.96615,506.87757 30.03231,505.94366 C 29.09842,505.00983 27.87067,504.5429 26.34907,504.54286 C 24.96672,504.5429 23.82603,505.06154 22.927,506.09878 C 22.02794,507.1361 21.57842,508.38072 21.57843,509.83267 C 21.57842,511.35432 22.02794,512.53036 22.927,513.36079 C 23.82603,514.19128 25.13977,514.91779 26.86824,515.54034 L 30.08454,516.57551 C 31.95225,517.26776 33.42164,517.92516 34.49271,518.54771 C 35.56373,519.17031 36.6353,520.10366 37.70743,521.34773 C 38.77951,522.59186 39.66167,524.04383 40.35392,525.70367 C 41.04611,527.36355 41.39222,529.12734 41.39225,530.99506 C 41.39222,535.00701 39.95713,538.51666 37.08697,541.52403 C 34.21675,544.5314 30.77569,546.03508 26.76377,546.03508 C 24.34308,546.03508 21.90553,545.37821 19.45111,544.06446 C 16.99666,542.75072 15.09516,540.97004 13.7466,538.72242 C 12.39803,536.47482 11.72375,533.93385 11.72375,531.09953 L 20.95479,531.09953 C 20.95478,532.62116 21.49083,533.9175 22.56295,534.98853 C 23.63503,536.05959 24.9319,536.59511 26.45353,536.5951 L 26.45353,536.5951 z M 62.87122,535.87017 L 65.15366,535.87017 L 65.15366,545.31015 L 62.04182,545.31015 C 60.17407,545.31015 58.51421,545.12021 57.06225,544.74033 C 55.61025,544.36045 54.19257,543.58223 52.80919,542.40566 C 51.42579,541.2291 50.45763,539.93223 49.9047,538.51507 C 49.35176,537.09792 49.0753,535.35207 49.0753,533.2775 L 49.0753,503.71346 L 44.20019,503.71346 L 44.20019,495.93228 L 49.0753,495.93228 L 49.0753,480.99673 L 59.03445,480.99673 L 59.03445,495.93228 L 65.15366,495.93228 L 65.15366,503.71346 L 59.03445,503.71346 L 59.03445,531.51423 C 59.03443,533.17304 59.25919,534.31373 59.70873,534.9363 C 60.15824,535.55889 61.2124,535.87018 62.87122,535.87017 L 62.87122,535.87017 z M 86.3477,535.87017 C 87.80177,535.87018 88.97781,535.42065 89.87582,534.5216 C 90.77379,533.62257 91.32725,532.44705 91.53621,530.99506 L 101.39089,530.99506 L 101.39089,532.1347 C 101.39085,533.65633 101.06215,535.17795 100.40479,536.69957 C 99.74735,538.2212 98.38138,540.14064 96.30685,542.45789 C 94.23226,544.77515 90.9822,545.93378 86.55664,545.93378 C 83.72019,545.93378 81.10906,545.17297 78.72323,543.65134 C 76.33737,542.12972 74.69492,540.45246 73.79589,538.61954 C 72.89683,536.78663 72.32649,535.12678 72.08485,533.63996 C 71.8432,532.15318 71.72238,530.68379 71.72238,529.23179 L 71.72238,510.4563 C 71.72238,506.37687 73.19177,502.83292 76.13055,499.82445 C 79.06933,496.81607 82.5795,495.31186 86.6611,495.31181 C 90.87984,495.31186 94.38949,496.78125 97.19007,499.71999 C 99.99058,502.65881 101.39085,506.23758 101.39089,510.4563 L 101.39089,524.14775 L 81.68153,524.14775 L 81.68153,531.51423 C 81.68151,532.55046 82.18274,533.53551 83.18521,534.46937 C 84.18765,535.40324 85.24182,535.87018 86.3477,535.87017 L 86.3477,535.87017 z M 86.55664,505.06203 C 85.24182,505.06207 84.1006,505.51159 83.13298,506.41059 C 82.16533,507.30968 81.68151,508.89989 81.68153,511.18124 L 81.68153,516.05634 L 91.43174,516.05634 L 91.43174,511.18124 C 91.43172,509.38318 91.05131,507.91379 90.29052,506.77306 C 89.52969,505.63241 88.28506,505.06207 86.55664,505.06203 L 86.55664,505.06203 z M 119.18186,476.12162 L 119.18186,531.09953 C 119.18184,532.75834 119.45831,533.96815 120.01126,534.72895 C 120.56418,535.48977 121.6711,535.87018 123.33203,535.87017 L 124.05697,535.87017 L 124.05697,545.31015 L 121.879,545.31015 C 120.28771,545.31015 118.80091,545.13709 117.41859,544.79098 C 116.03624,544.44487 114.65338,543.73629 113.27,542.66524 C 111.8866,541.5942 110.86621,540.21134 110.20881,538.51665 C 109.55141,536.82198 109.22271,535.00595 109.22271,533.06856 L 109.22271,476.12162 L 119.18186,476.12162 z M 140.04985,476.12162 L 140.04985,531.09953 C 140.04984,532.75834 140.32631,533.96815 140.87926,534.72895 C 141.43217,535.48977 142.5391,535.87018 144.20003,535.87017 L 144.92496,535.87017 L 144.92496,545.31015 L 142.74699,545.31015 C 141.15571,545.31015 139.66891,545.13709 138.28659,544.79098 C 136.90424,544.44487 135.52138,543.73629 134.138,542.66524 C 132.7546,541.5942 131.7342,540.21134 131.07681,538.51665 C 130.4194,536.82198 130.0907,535.00595 130.09071,533.06856 L 130.09071,476.12162 L 140.04985,476.12162 z M 164.75461,535.87017 C 166.20868,535.87018 167.38472,535.42065 168.28273,534.5216 C 169.1807,533.62257 169.73416,532.44705 169.94311,530.99506 L 179.79779,530.99506 L 179.79779,532.1347 C 179.79776,533.65633 179.46906,535.17795 178.81169,536.69957 C 178.15426,538.2212 176.78828,540.14064 174.71375,542.45789 C 172.63917,544.77515 169.3891,545.93378 164.96354,545.93378 C 162.1271,545.93378 159.51597,545.17297 157.13013,543.65134 C 154.74428,542.12972 153.10183,540.45246 152.20279,538.61954 C 151.30374,536.78663 150.7334,535.12678 150.49176,533.63996 C 150.25011,532.15318 150.12928,530.68379 150.12929,529.23179 L 150.12929,510.4563 C 150.12928,506.37687 151.59867,502.83292 154.53746,499.82445 C 157.47623,496.81607 160.98641,495.31186 165.06801,495.31181 C 169.28675,495.31186 172.7964,496.78125 175.59697,499.71999 C 178.39749,502.65881 179.79776,506.23758 179.79779,510.4563 L 179.79779,524.14775 L 160.08843,524.14775 L 160.08843,531.51423 C 160.08842,532.55046 160.58965,533.53551 161.59212,534.46937 C 162.59456,535.40324 163.64872,535.87018 164.75461,535.87017 L 164.75461,535.87017 z M 164.96354,505.06203 C 163.64872,505.06207 162.50751,505.51159 161.53989,506.41059 C 160.57224,507.30968 160.08842,508.89989 160.08843,511.18124 L 160.08843,516.05634 L 169.83865,516.05634 L 169.83865,511.18124 C 169.83862,509.38318 169.45822,507.91379 168.69743,506.77306 C 167.9366,505.63241 166.69197,505.06207 164.96354,505.06203 L 164.96354,505.06203 z M 215.74062,500.39269 C 216.29563,501.22424 216.67657,502.22775 216.88342,503.40322 C 217.09021,504.57878 217.19362,505.75429 217.19366,506.92976 L 217.19366,545.31015 L 207.23451,545.31015 L 207.23451,510.56077 C 207.23449,506.89498 205.60945,505.06207 202.3594,505.06203 C 200.90741,505.06207 199.7319,505.61553 198.83287,506.72241 C 197.93381,507.82937 197.48428,509.10882 197.4843,510.56077 L 197.4843,545.31015 L 187.52515,545.31015 L 187.52515,495.93228 L 197.4843,495.93228 L 197.4843,500.70609 C 199.69813,497.10995 202.7762,495.31186 206.71851,495.31181 C 210.72831,495.31186 213.73568,497.00549 215.74062,500.39269 L 215.74062,500.39269 z M 226.85523,523.00812 L 226.85523,513.15344 L 256.41927,513.15344 L 256.41927,523.00812 L 226.85523,523.00812 z " />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1028-34.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1028-34.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1028-34.svg	(revision 21967)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="490"
+   height="360"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zusatzzeichen 1028-34.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.74246212"
+     inkscape:cx="245"
+     inkscape:cy="104.07398"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2"
+     showguides="true"
+     inkscape:guide-bbox="true" />
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.6190618 C 20.35689,4.6190483 9.96875,14.244672 9.96875,42.683954 L 9.65625,317.31604 C 9.65625,345.75531 20.04439,355.38094 38.46875,355.38094 L 451.21875,355.33878 C 469.64311,355.33878 480.03124,345.71316 480.03125,317.27389 L 480.34375,42.726108 C 480.34375,14.286826 469.95561,4.6612021 451.53125,4.6612156 L 38.78125,4.6190618 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,19.074797 L 36.79782,19.117707 C 28.375505,19.117707 23.425891,27.356247 23.425891,39.539027 L 23.425891,320.50387 C 23.425891,332.68661 28.375515,340.9252 36.79782,340.9252 L 453.20218,340.88229 C 461.62449,340.88228 466.57411,332.64373 466.57411,320.46097 L 466.57411,39.496127 C 466.57411,27.313347 461.65573,19.074797 453.23342,19.074797 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     id="g3877"
+     transform="translate(1.216565,-381.0272)">
+    <path
+       id="text1982"
+       d="M 180.03386,696.04556 L 180.03386,650.63207 L 174.60286,650.63207 L 174.60286,642.35627 L 180.03386,642.35627 L 180.03386,635.27011 C 180.03385,630.27021 181.41315,626.5892 184.17176,624.22708 C 186.93035,621.8651 190.41308,620.68407 194.61996,620.684 L 201.60268,620.684 L 201.60268,630.82186 L 195.49927,630.82186 C 192.36134,630.82193 190.79238,632.30467 190.7924,635.27011 L 190.7924,642.35627 L 201.60268,642.35627 L 201.60268,650.63207 L 190.7924,650.63207 L 190.7924,696.04556 L 180.03386,696.04556 z M 207.70608,696.04556 L 207.70608,642.35627 L 218.51635,642.35627 L 218.51635,648.09761 L 218.72325,648.09761 C 222.06803,643.85631 226.72317,641.73563 232.68867,641.73558 C 236.61965,641.73563 240.361,643.11493 243.91274,645.87348 L 236.10244,655.18377 C 233.7576,653.4252 231.37831,652.5459 228.96456,652.54585 C 226.30938,652.5459 223.90423,653.43382 221.74909,655.20963 C 219.59391,656.98552 218.51634,659.83894 218.51635,663.76991 L 218.51635,696.04556 L 207.70608,696.04556 z M 290.46415,673.28709 L 257.05058,673.28709 C 257.05057,677.70087 258.24883,681.01119 260.64539,683.21806 C 263.0419,685.42495 266.10222,686.52839 269.82636,686.52838 C 274.27457,686.52839 278.20558,684.80427 281.61938,681.356 L 289.42968,688.02837 C 286.77448,691.1318 283.78312,693.3473 280.4556,694.67488 C 277.128,696.00246 273.65389,696.66624 270.03325,696.66624 C 264.51603,696.66624 259.17124,694.88178 253.99888,691.31283 C 248.82649,687.7439 246.24031,680.44223 246.24031,669.40781 C 246.24031,658.95964 248.62822,651.73556 253.40406,647.73554 C 258.17987,643.73562 263.17121,641.73563 268.37809,641.73558 C 274.27457,641.73563 279.42971,643.77872 283.84351,647.86485 C 288.25722,651.95107 290.4641,657.45965 290.46415,664.3906 L 290.46415,673.28709 z M 257.05058,664.3906 L 279.7056,664.3906 C 279.53315,660.35618 278.39523,657.27 276.29183,655.13204 C 274.18837,652.99417 271.55046,651.92521 268.37809,651.92517 C 265.1712,651.92521 262.50742,652.99417 260.38677,655.13204 C 258.26608,657.27 257.15402,660.35618 257.05058,664.3906 L 257.05058,664.3906 z M 302.15372,696.04556 L 302.15372,642.35627 L 312.964,642.35627 L 312.964,696.04556 L 302.15372,696.04556 z M 302.15372,631.49427 L 302.15372,620.684 L 312.964,620.684 L 312.964,631.49427 L 302.15372,631.49427 z "
+       style="font-size:105.93032074px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1888"
+       d="M 125.02597,500.74942 L 125.02597,425.38808 L 173.2324,425.38808 L 173.2324,436.19832 L 136.45689,436.19832 L 136.45689,458.38776 L 167.80142,458.38776 L 167.80142,468.57732 L 136.45689,468.57732 L 136.45689,500.74942 L 125.02597,500.74942 z M 209.18032,500.74942 L 209.18032,495.99084 L 208.9217,495.99084 C 206.74928,499.57702 202.33553,501.3701 195.68045,501.3701 C 189.6805,501.3701 185.02537,499.80977 181.71507,496.68911 C 178.40476,493.56846 176.7496,489.66333 176.7496,484.97371 C 176.7496,480.73239 178.2151,477.02553 181.14611,473.85313 C 184.07711,470.68077 188.43913,469.09458 194.23219,469.09455 L 209.18032,469.09455 L 209.18032,463.5084 C 209.18029,458.92228 205.50791,456.6292 198.16319,456.62916 C 193.05977,456.6292 189.66325,457.99126 187.97363,460.71532 L 179.49096,454.30159 C 183.24953,449.06032 189.28395,446.43966 197.59423,446.4396 C 204.21482,446.43966 209.59407,447.73275 213.732,450.31887 C 217.86985,452.9051 219.93879,457.5085 219.93884,464.12908 L 219.93884,500.74942 L 209.18032,500.74942 z M 209.18032,481.92201 L 209.18032,477.99102 L 196.24941,477.99102 C 190.00808,477.99104 186.88742,480.14619 186.88744,484.45647 C 186.88742,486.28405 187.6719,487.87024 189.24086,489.21505 C 190.80979,490.55987 193.42184,491.23228 197.07699,491.23227 C 201.55968,491.23228 204.69758,490.73228 206.49069,489.73228 C 208.28374,488.7323 209.18029,486.12888 209.18032,481.92201 L 209.18032,481.92201 z M 204.05968,438.73278 L 204.05968,427.30186 L 215.4906,427.30186 L 215.4906,438.73278 L 204.05968,438.73278 z M 185.43917,438.73278 L 185.43917,427.30186 L 196.8701,427.30186 L 196.8701,438.73278 L 185.43917,438.73278 z M 233.95594,500.74942 L 233.95594,425.38808 L 244.76618,425.38808 L 244.76618,452.80161 L 244.97307,452.80161 C 248.31785,448.56032 252.97297,446.43966 258.93845,446.4396 C 263.11079,446.43966 267.13661,448.02585 271.01592,451.19818 C 274.89515,454.37061 276.83478,458.99125 276.83483,465.06011 L 276.83483,500.74942 L 266.02459,500.74942 L 266.02459,468.78421 C 266.02455,465.16359 265.01594,462.33604 262.99876,460.30154 C 260.9815,458.26712 258.47291,457.24988 255.47297,457.24984 C 252.36953,457.24988 249.80921,458.26712 247.79201,460.30154 C 245.77477,462.33604 244.76616,465.16359 244.76618,468.78421 L 244.76618,500.74942 L 233.95594,500.74942 z M 290.85193,500.74942 L 290.85193,447.06029 L 301.66217,447.06029 L 301.66217,452.80161 L 301.86907,452.80161 C 305.21384,448.56032 309.86896,446.43966 315.83445,446.4396 C 319.76541,446.43966 323.50675,447.81895 327.05848,450.57749 L 319.24821,459.88775 C 316.90337,458.12919 314.52409,457.24988 312.11035,457.24984 C 309.45517,457.24988 307.05003,458.13781 304.8949,459.91361 C 302.73973,461.68949 301.66216,464.54291 301.66217,468.47387 L 301.66217,500.74942 L 290.85193,500.74942 z M 330.62741,476.8531 L 330.62741,466.04286 L 362.54089,466.04286 L 362.54089,476.8531 L 330.62741,476.8531 z "
+       style="font-size:105.93000031px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+    <path
+       id="text1892"
+       d="M 50.13016,595.53512 L 50.13016,520.17379 L 60.940399,520.17379 L 60.940399,547.58731 C 62.94036,545.69083 65.052406,544.15636 67.276544,542.98391 C 69.500634,541.81156 72.009228,541.22536 74.802333,541.22531 C 78.078128,541.22536 80.905684,541.88915 83.285009,543.21667 C 85.664253,544.54429 87.629749,546.20807 89.181503,548.208 C 90.664199,550.13906 91.672809,552.38903 92.207335,554.95793 C 92.741763,557.52691 93.009002,562.08721 93.009052,568.63883 C 93.009002,575.25948 92.741763,579.8715 92.207335,582.4749 C 91.672809,585.07834 90.664199,587.32831 89.181503,589.22484 C 87.629749,591.25931 85.664253,592.92308 83.285009,594.21617 C 80.905684,595.50926 78.078128,596.1558 74.802333,596.15581 C 69.285119,596.1558 64.664479,594.08686 60.940399,589.94897 L 60.940399,595.53512 L 50.13016,595.53512 z M 71.543744,552.03555 C 66.474805,552.03559 63.440354,553.84592 62.440385,557.46653 C 61.440376,561.08722 60.940381,564.81131 60.940399,568.63883 C 60.940381,572.56985 61.440376,576.34567 62.440385,579.96631 C 63.440354,583.58697 66.474805,585.3973 71.543744,585.39729 C 76.612626,585.3973 79.655697,583.65594 80.672965,580.1732 C 81.690158,576.6905 82.198773,572.84571 82.198812,568.63883 C 82.198773,564.53546 81.690158,560.74239 80.672965,557.25963 C 79.655697,553.77695 76.612626,552.03559 71.543744,552.03555 L 71.543744,552.03555 z M 146.74991,572.77672 L 113.33644,572.77672 C 113.33643,577.19049 114.53469,580.5008 116.93123,582.70766 C 119.32774,584.91455 122.38805,586.01798 126.11218,586.01797 C 130.56038,586.01798 134.49137,584.29386 137.90517,580.84561 L 145.71544,587.51796 C 143.06024,590.62138 140.0689,592.83688 136.74138,594.16445 C 133.4138,595.49202 129.9397,596.1558 126.31907,596.15581 C 120.80186,596.1558 115.45709,594.37134 110.28475,590.80241 C 105.11238,587.23349 102.5262,579.93184 102.5262,568.89745 C 102.5262,558.44931 104.9141,551.22525 109.68992,547.22525 C 114.46572,543.22534 119.45705,541.22536 124.66392,541.22531 C 130.56038,541.22536 135.7155,543.26844 140.12928,547.35456 C 144.54299,551.44077 146.74986,556.94933 146.74991,563.88026 L 146.74991,572.77672 z M 113.33644,563.88026 L 135.99139,563.88026 C 135.81894,559.84585 134.68102,556.75968 132.57763,554.62173 C 130.47417,552.48386 127.83627,551.41491 124.66392,551.41486 C 121.45703,551.41491 118.79326,552.48386 116.67262,554.62173 C 114.55193,556.75968 113.43987,559.84585 113.33644,563.88026 L 113.33644,563.88026 z M 158.12911,595.53512 L 158.12911,541.84599 L 168.93935,541.84599 L 168.93935,547.58731 L 169.14624,547.58731 C 172.49101,543.34603 177.14614,541.22536 183.11162,541.22531 C 187.28396,541.22536 191.30978,542.81155 195.18909,545.98388 C 199.06831,549.15631 201.00795,553.77695 201.008,559.84582 L 201.008,595.53512 L 190.19776,595.53512 L 190.19776,563.56992 C 190.19772,559.9493 189.18911,557.12174 187.17193,555.08724 C 185.15467,553.05282 182.64608,552.03559 179.64614,552.03555 C 176.54269,552.03559 173.98238,553.05282 171.96518,555.08724 C 169.94794,557.12174 168.93933,559.9493 168.93935,563.56992 L 168.93935,595.53512 L 158.12911,595.53512 z M 215.0251,577.5353 L 215.0251,541.84599 L 225.83534,541.84599 L 225.83534,573.86292 C 225.83532,577.51807 226.84393,580.35425 228.86118,582.37146 C 230.87837,584.38869 233.43869,585.3973 236.54213,585.39729 C 239.54207,585.3973 242.05067,584.38869 244.06792,582.37146 C 246.08511,580.35425 247.09372,577.51807 247.09376,573.86292 L 247.09376,541.84599 L 257.90399,541.84599 L 257.90399,595.53512 L 247.09376,595.53512 L 247.09376,589.84552 L 246.88686,589.84552 C 243.54203,594.05238 238.92139,596.1558 233.02493,596.15581 C 228.78357,596.1558 224.72327,594.57824 220.84401,591.42309 C 216.96473,588.26796 215.0251,583.6387 215.0251,577.5353 L 215.0251,577.5353 z M 272.54178,541.84599 L 272.54178,525.55305 L 283.35202,525.55305 L 283.35202,541.84599 L 291.21401,541.84599 L 291.21401,550.12177 L 283.35202,550.12177 L 283.35202,581.36285 C 283.352,584.05249 284.62785,585.3973 287.17957,585.39729 L 291.21401,585.39729 L 291.21401,595.53512 L 285.57614,595.53512 C 281.81754,595.53512 278.7055,594.3972 276.24002,592.12136 C 273.77452,589.84553 272.54178,586.58694 272.54178,582.3456 L 272.54178,550.12177 L 267.16253,550.12177 L 267.16253,541.84599 L 272.54178,541.84599 z M 297.78292,595.53512 L 297.78292,587.00072 L 324.67921,551.41486 L 299.28291,551.41486 L 299.28291,541.84599 L 337.81701,541.84599 L 337.81701,550.43211 L 310.92072,585.39729 L 337.81701,585.39729 L 337.81701,595.53512 L 297.78292,595.53512 z M 389.85097,572.77672 L 356.4375,572.77672 C 356.43749,577.19049 357.63575,580.5008 360.0323,582.70766 C 362.4288,584.91455 365.48912,586.01798 369.21324,586.01797 C 373.66144,586.01798 377.59243,584.29386 381.00623,580.84561 L 388.8165,587.51796 C 386.16131,590.62138 383.16996,592.83688 379.84245,594.16445 C 376.51486,595.49202 373.04076,596.1558 369.42014,596.15581 C 363.90293,596.1558 358.55816,594.37134 353.38581,590.80241 C 348.21344,587.23349 345.62726,579.93184 345.62726,568.89745 C 345.62726,558.44931 348.01517,551.22525 352.79099,547.22525 C 357.56679,543.22534 362.55811,541.22536 367.76498,541.22531 C 373.66144,541.22536 378.81656,543.26844 383.23035,547.35456 C 387.64405,551.44077 389.85092,556.94933 389.85097,563.88026 L 389.85097,572.77672 z M 356.4375,563.88026 L 379.09245,563.88026 C 378.92001,559.84585 377.78209,556.75968 375.6787,554.62173 C 373.57524,552.48386 370.93733,551.41491 367.76498,551.41486 C 364.55809,551.41491 361.89433,552.48386 359.77368,554.62173 C 357.65299,556.75968 356.54094,559.84585 356.4375,563.88026 L 356.4375,563.88026 z M 401.23017,595.53512 L 401.23017,541.84599 L 412.04041,541.84599 L 412.04041,547.58731 L 412.2473,547.58731 C 415.59207,543.34603 420.2472,541.22536 426.21268,541.22531 C 430.14364,541.22536 433.88498,542.60466 437.43671,545.3632 L 429.62644,554.67345 C 427.2816,552.91489 424.90232,552.03559 422.48858,552.03555 C 419.83341,552.03559 417.42826,552.92351 415.27313,554.69931 C 413.11796,556.4752 412.04039,559.32862 412.04041,563.25958 L 412.04041,595.53512 L 401.23017,595.53512 z "
+       style="font-size:105.93000031px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1040-30.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1040-30.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1040-30.svg	(revision 21967)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 80.239381,108.66835 L 80.239381,158.97358 L 204.11877,158.97358 L 204.11877,108.66835 L 80.239381,108.66835 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path20922" />
+  <g
+     transform="translate(-192.5815,-288.6836)"
+     id="g1902">
+    <path
+       d="M 290.54615,464.36091 L 290.54615,395.39369 L 278.99581,403.8193 L 278.99581,391.48778 L 290.54615,383.06218 L 302.20808,383.06218 L 302.20808,464.36091 L 290.54615,464.36091 z M 330.49803,426.69678 L 352.31533,383.06218 L 365.31644,383.06218 L 348.18623,417.43419 L 348.40942,417.43419 C 350.23215,416.72745 352.2967,416.37406 354.60308,416.37401 C 359.73653,416.37406 364.25622,418.17822 368.16217,421.78649 C 372.06803,425.39485 374.02098,431.14211 374.02104,439.02829 C 374.02098,448.3653 371.52864,455.03324 366.54401,459.03214 C 361.55928,463.03105 356.05381,465.0305 350.02759,465.0305 C 344.3361,465.0305 339.13752,462.82645 334.43184,458.41835 C 329.72614,454.01026 327.3733,447.97471 327.37331,440.31166 C 327.3733,435.40141 328.41488,430.86311 330.49803,426.69678 L 330.49803,426.69678 z M 350.69717,426.69678 C 347.46082,426.69681 344.70809,427.78489 342.43896,429.961 C 340.16979,432.13718 339.03522,435.4944 339.03524,440.03267 C 339.03522,448.96048 342.92253,453.42438 350.69717,453.42436 C 353.37548,453.42438 355.98872,452.4107 358.53689,450.38333 C 361.08499,448.356 362.35906,444.90578 362.3591,440.03267 C 362.35906,435.4944 361.21519,432.13718 358.92748,429.961 C 356.6397,427.78489 353.89627,426.69681 350.69717,426.69678 L 350.69717,426.69678 z M 384.2322,438.5819 L 384.2322,426.91997 L 418.66001,426.91997 L 418.66001,438.5819 L 384.2322,438.5819 z M 446.78257,464.36091 L 446.78257,395.39369 L 435.23223,403.8193 L 435.23223,391.48778 L 446.78257,383.06218 L 458.4445,383.06218 L 458.4445,464.36091 L 446.78257,464.36091 z M 495.27166,405.66066 C 495.27165,409.49223 496.47132,412.39376 498.87068,414.36526 C 501.27,416.33686 503.95764,417.32264 506.93359,417.32259 C 509.9095,417.32264 512.59713,416.33686 514.99651,414.36526 C 517.39582,412.39376 518.59549,409.49223 518.59553,405.66066 C 518.59549,401.86641 517.39582,398.97418 514.99651,396.98396 C 512.59713,394.99387 509.9095,393.9988 506.93359,393.99873 C 503.95764,393.9988 501.27,394.99387 498.87068,396.98396 C 496.47132,398.97418 495.27165,401.86641 495.27166,405.66066 L 495.27166,405.66066 z M 482.15896,440.64646 C 482.15896,432.72307 485.35808,426.62242 491.75634,422.34448 C 489.33839,420.18697 487.37613,417.79693 485.86958,415.17434 C 484.36301,412.55185 483.60972,409.45503 483.60973,405.88385 C 483.60972,399.33687 485.85097,393.7756 490.33347,389.20004 C 494.81596,384.62462 500.34932,382.33688 506.93359,382.33679 C 513.51781,382.33688 519.05118,384.62462 523.53371,389.20004 C 528.01616,393.7756 530.25741,399.33687 530.25746,405.88385 C 530.25741,409.45503 529.49483,412.55185 527.96971,415.17434 C 526.4445,417.79693 524.51015,420.18697 522.16664,422.34448 C 528.52765,426.65962 531.70817,432.76027 531.70823,440.64646 C 531.70817,447.86311 529.26233,453.73127 524.37069,458.25095 C 519.47897,462.77065 513.66661,465.0305 506.93359,465.0305 C 500.16333,465.0305 494.34167,462.77065 489.46859,458.25095 C 484.5955,453.73127 482.15896,447.86311 482.15896,440.64646 L 482.15896,440.64646 z M 493.82089,440.53486 C 493.82088,444.25479 495.13215,447.33302 497.7547,449.76955 C 500.37722,452.2061 503.43685,453.42438 506.93359,453.42436 C 510.39308,453.42438 513.45271,452.2061 516.11248,449.76955 C 518.77218,447.33302 520.10205,444.25479 520.10209,440.53486 C 520.10205,436.81497 518.77218,433.72745 516.11248,431.27227 C 513.45271,428.81716 510.39308,427.58959 506.93359,427.58956 C 503.43685,427.58959 500.37722,428.81716 497.7547,431.27227 C 495.13215,433.72745 493.82088,436.81497 493.82089,440.53486 L 493.82089,440.53486 z "
+       style="font-size:114.27577972px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       id="text1889" />
+    <path
+       d="M 585.21777,408.72413 C 587.1741,408.72419 589.01793,409.25059 590.74929,410.30334 C 592.48058,411.35619 593.72225,412.57891 594.47428,413.9715 C 595.22625,415.36418 595.69639,416.54959 595.88472,417.52772 C 596.07297,418.50594 596.16711,419.78492 596.16715,421.36465 L 596.16715,463.12314 L 585.33143,463.12314 L 585.33143,425.42546 C 585.33141,423.6207 584.91752,422.15401 584.08977,421.02539 C 583.26197,419.89686 581.94568,419.33257 580.1409,419.33252 C 578.5611,419.33257 577.26318,419.95311 576.24714,421.19416 C 575.23106,422.43529 574.72302,423.84572 574.72304,425.42546 L 574.72304,463.12314 L 563.88733,463.12314 L 563.88733,387.84489 L 574.72304,387.84489 L 574.72304,414.59319 C 577.2052,410.68054 580.70344,408.72419 585.21777,408.72413 L 585.21777,408.72413 z "
+       style="font-size:112.86226654px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       id="text1965" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1042-33.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1042-33.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1042-33.svg	(revision 21967)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 80.239381,108.66835 L 80.239381,158.97358 L 204.11877,158.97358 L 204.11877,108.66835 L 80.239381,108.66835 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path20922" />
+  <g
+     transform="translate(225.6776,-380.788)"
+     id="g2856">
+    <path
+       d="M -89.590927,597.38794 L -89.590927,537.1046 L -99.691687,544.65178 L -99.691687,533.91506 L -89.590927,526.47171 L -79.493412,526.47171 L -79.493412,597.38794 L -89.590927,597.38794 z M -36.264233,561.13163 C -35.697525,562.05316 -35.325466,563.0455 -35.148056,564.10864 C -34.970712,565.17186 -34.882024,566.48326 -34.88199,568.04285 L -34.88199,581.65113 C -34.882024,583.42492 -35.041555,585.03807 -35.360584,586.4906 C -35.679679,587.94316 -36.742859,590.12252 -38.550127,593.02868 C -40.357454,595.93485 -43.84821,597.60101 -49.022405,598.02715 C -52.213046,598.02715 -55.084065,597.33602 -57.635469,595.95378 C -60.186896,594.57154 -61.976888,592.90539 -63.005453,590.95532 C -64.034028,589.00526 -64.672152,587.3748 -64.919827,586.06393 C -65.16751,584.75308 -65.291349,583.28215 -65.291346,581.65113 L -65.291346,570.48935 C -65.291349,568.92976 -65.255657,567.81304 -65.184271,567.1392 C -65.112891,566.46541 -64.865212,565.56176 -64.441234,564.42825 L -50.404649,526.47171 L -38.921645,526.47171 L -50.404649,556.24186 C -48.987815,555.74438 -47.463887,555.49562 -45.832862,555.49558 L -44.87892,555.49558 C -41.050198,555.99314 -38.178638,557.87182 -36.264233,561.13163 L -36.264233,561.13163 z M -45.939938,566.4497 C -47.004222,565.03071 -48.422155,564.3212 -50.193743,564.32117 C -51.115256,564.3212 -51.983754,564.60458 -52.79924,565.17128 C -53.614756,565.73806 -54.199343,566.41133 -54.553002,567.19111 C -54.906688,567.97095 -55.083524,569.07036 -55.08351,570.48935 L -55.08351,581.65113 C -55.083524,583.21076 -54.658468,584.66385 -53.808342,586.01039 C -52.958246,587.35695 -51.505702,587.92423 -49.450706,587.71224 C -47.607736,587.71224 -46.40233,587.09197 -45.834485,585.8514 C -45.266685,584.61085 -44.982774,583.21076 -44.98275,581.65113 L -44.98275,570.48935 C -44.982774,569.56788 -45.036311,568.80592 -45.143363,568.20346 C -45.250461,567.60106 -45.515986,567.01647 -45.939938,566.4497 L -45.939938,566.4497 z M -25.680012,574.52901 L -25.680012,564.42825 L 4.6222692,564.42825 L 4.6222692,574.52901 L -25.680012,574.52901 z M 26.283905,597.38794 L 26.283905,537.1046 L 16.183145,544.65178 L 16.183145,533.91506 L 26.283905,526.47171 L 36.381421,526.47171 L 36.381421,597.38794 L 26.283905,597.38794 z M 80.992846,582.82247 C 80.992812,584.94884 80.461222,587.18174 79.398074,589.52116 C 78.334863,591.86059 76.597867,593.86311 74.187082,595.52872 C 71.776243,597.19434 69.153985,598.02715 66.320299,598.02715 C 63.272426,598.02715 60.47225,597.24734 57.919763,595.68772 C 55.367256,594.1281 53.63026,592.3738 52.70877,590.42481 C 51.78727,588.47583 51.22053,586.86322 51.008546,585.58695 C 50.796555,584.31072 50.690562,582.99878 50.690565,581.65113 L 50.690565,569.21094 C 50.690562,567.29876 51.133463,565.58069 52.019271,564.05673 C 52.90507,562.53283 54.163472,561.16844 55.794483,559.96354 C 52.391866,557.41108 50.690562,553.90247 50.690565,549.43772 L 50.690565,539.86909 C 50.690562,538.52152 50.956087,537.15658 51.48714,535.77428 C 52.018185,534.39209 53.293893,532.38957 55.314267,529.76671 C 57.334625,527.14398 60.931916,525.83258 66.106149,525.83251 C 68.091886,525.83258 69.970568,526.24033 71.742198,527.05576 C 73.51378,527.87133 75.498454,529.43095 77.696228,531.73462 C 79.893941,534.03842 80.992812,537.13927 80.992846,541.03718 L 80.992846,550.18076 C 80.992812,554.29292 79.291508,557.55384 75.888928,559.96354 C 79.291508,562.30192 80.992812,565.63315 80.992846,569.95722 L 80.992846,582.82247 z M 65.895243,535.93327 C 64.406989,535.93333 63.166432,536.42977 62.173569,537.42258 C 61.180676,538.41552 60.684237,539.62039 60.68425,541.03718 L 60.68425,550.18076 C 60.684237,551.81181 61.127139,553.21189 62.012956,554.38102 C 62.898745,555.55024 64.157147,556.13483 65.788168,556.13479 C 67.559756,556.13483 68.853309,555.58539 69.668833,554.48648 C 70.484312,553.38765 70.892062,551.95241 70.892086,550.18076 L 70.892086,541.03718 C 70.892062,539.68961 70.413469,538.50205 69.456305,537.4745 C 68.499096,536.44707 67.312077,535.93333 65.895243,535.93327 L 65.895243,535.93327 z M 65.895243,563.78904 C 64.335606,563.78907 63.077203,564.30336 62.120031,565.3319 C 61.16283,566.3605 60.684237,567.65351 60.68425,569.21094 L 60.68425,581.65113 C 60.684237,583.49414 61.109293,584.98291 61.959419,586.11746 C 62.809515,587.25204 64.191757,587.81932 66.106149,587.81931 C 67.94912,587.81932 69.207522,587.21689 69.881361,586.01201 C 70.555154,584.80716 70.892062,583.35353 70.892086,581.65113 L 70.892086,569.21094 C 70.892062,567.65351 70.449161,566.3605 69.56338,565.3319 C 68.677555,564.30336 67.454844,563.78907 65.895243,563.78904 L 65.895243,563.78904 z M 128.02157,546.1411 C 129.86453,546.14115 131.60153,546.63705 133.23256,547.6288 C 134.86354,548.62064 136.03325,549.77251 136.74171,551.08441 C 137.4501,552.39639 137.893,553.51311 138.07041,554.43456 C 138.24776,555.3561 138.33645,556.56096 138.33648,558.04916 L 138.33648,597.38794 L 128.12864,597.38794 L 128.12864,561.87467 C 128.12862,560.17448 127.73872,558.79278 126.95893,557.72956 C 126.1791,556.66642 124.93908,556.13483 123.23888,556.13479 C 121.75062,556.13483 120.52791,556.71941 119.57074,557.88855 C 118.61354,559.05776 118.13495,560.38647 118.13496,561.87467 L 118.13496,597.38794 L 107.92712,597.38794 L 107.92712,526.47171 L 118.13496,526.47171 L 118.13496,551.67008 C 120.47329,547.98414 123.76883,546.14115 128.02157,546.1411 L 128.02157,546.1411 z "
+       style="font-size:106.32242584px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Engschrift"
+       id="text2844" />
+    <path
+       d="M -102.81994,502.12739 L -102.81994,433.54882 L -92.982661,433.54882 L -73.308095,478.26374 L -54.057144,433.54882 L -44.219862,433.54882 L -44.219862,502.12739 L -54.621964,502.12739 L -54.621964,459.34227 L -54.810238,459.34227 L -69.166081,492.33718 L -77.826655,492.33718 L -92.182499,459.34227 L -92.417841,459.34227 L -92.417841,502.12739 L -102.81994,502.12739 z M -33.017595,477.65185 C -33.017599,472.41161 -32.609674,468.50494 -31.793818,465.93184 C -30.977973,463.35881 -29.628682,461.03677 -27.745941,458.96572 C -26.396659,457.49096 -24.537462,456.07891 -22.168343,454.72957 C -19.799253,453.38033 -16.700591,452.70568 -12.872346,452.70563 C -9.1069065,452.70568 -6.0317781,453.38033 -3.6469513,454.72957 C -1.2621912,456.07891 0.60485101,457.49096 1.9541811,458.96572 C 3.8368737,461.03677 5.1861647,463.35881 6.0020582,465.93184 C 6.8178655,468.50494 7.2257907,472.41161 7.225835,477.65185 C 7.2257907,482.98629 6.8178655,486.94002 6.0020582,489.51308 C 5.1861647,492.08615 3.8368737,494.40819 1.9541811,496.47919 C 0.60485101,497.98538 -1.2621912,499.39743 -3.6469513,500.71534 C -6.0317781,502.03325 -9.1069065,502.69221 -12.872346,502.69221 C -16.700591,502.69221 -19.799253,502.03325 -22.168343,500.71534 C -24.537462,499.39743 -26.396659,497.98538 -27.745941,496.47919 C -29.628682,494.40819 -30.977973,492.08615 -31.793818,489.51308 C -32.609674,486.94002 -33.017599,482.98629 -33.017595,477.65185 L -33.017595,477.65185 z M -2.5643795,477.74599 C -2.564414,474.2002 -2.7448424,471.70558 -3.1056654,470.26213 C -3.4665562,468.81873 -4.0862887,467.43806 -4.9648648,466.12011 C -6.6907342,463.73535 -9.3265586,462.54296 -12.872346,462.54292 C -16.480939,462.54296 -19.116763,463.73535 -20.779827,466.12011 C -21.721209,467.43806 -22.356631,468.81873 -22.686094,470.26213 C -23.015587,471.70558 -23.180326,474.16883 -23.180312,477.65185 C -23.180326,481.22907 -23.015587,483.74722 -22.686094,485.20632 C -22.356631,486.66546 -21.721209,488.03828 -20.779827,489.3248 C -19.116763,491.70961 -16.480939,492.90201 -12.872346,492.902 C -9.3265586,492.90201 -6.6907342,491.70961 -4.9648648,489.3248 C -4.0862887,488.03828 -3.4665562,486.6733 -3.1056654,485.22986 C -2.7448424,483.78645 -2.564414,481.29183 -2.5643795,477.74599 L -2.5643795,477.74599 z M 16.310028,480.38182 L 16.310028,470.54454 L 45.351193,470.54454 L 45.351193,480.38182 L 16.310028,480.38182 z M 57.588962,502.12739 L 57.588962,433.54882 L 101.45665,433.54882 L 101.45665,443.3861 L 67.991065,443.3861 L 67.991065,463.57842 L 96.514478,463.57842 L 96.514478,472.85088 L 67.991065,472.85088 L 67.991065,502.12739 L 57.588962,502.12739 z M 108.51691,502.12739 L 108.51691,453.27045 L 118.35419,453.27045 L 118.35419,458.49504 L 118.54246,458.49504 C 121.5862,454.63548 125.82234,452.70568 131.25092,452.70563 C 134.82808,452.70568 138.23268,453.96084 141.46475,456.4711 L 134.35743,464.9434 C 132.22363,463.34312 130.05849,462.54296 127.862,462.54292 C 125.4458,462.54296 123.25712,463.35096 121.29596,464.96694 C 119.33476,466.58299 118.35418,469.17959 118.35419,472.75675 L 118.35419,502.12739 L 108.51691,502.12739 z "
+       style="font-size:96.39595795px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       id="text4001" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1044-10.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1044-10.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1044-10.svg	(revision 21967)
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 80.239381,108.66835 L 80.239381,158.97358 L 204.11877,158.97358 L 204.11877,108.66835 L 80.239381,108.66835 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path20922" />
+  <g
+     transform="matrix(5.109517,0,0,5.109517,461.8514,-1459.973)"
+     id="g8408">
+    <path
+       d="M -35.212572,318.50098 C -35.211894,322.66083 -38.583928,326.03341 -42.743778,326.03341 C -46.903628,326.03341 -50.275662,322.66083 -50.274984,318.50098 C -50.275662,314.34113 -46.903628,310.96855 -42.743778,310.96855 C -38.583928,310.96855 -35.211894,314.34113 -35.212572,318.50098 L -35.212572,318.50098 z "
+       transform="matrix(1.103775,0,0,1.103775,8.653227,-30.10701)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:1.81196344;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3069" />
+    <path
+       d="M -36.78532,312.21483 C -36.78532,316.98239 -36.78532,314.68153 -36.78532,314.68153"
+       style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.76695538px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path6617" />
+    <path
+       d="M -47.292192,317.15326 C -41.96024,317.15326 -44.051937,317.15326 -44.051937,317.15326"
+       style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.976125px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5730" />
+    <path
+       d="M -44.56103,313.67108 C -39.229078,313.67108 -41.320775,313.67108 -41.320775,313.67108"
+       style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:white;stroke-width:1.976125px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path8406" />
+    <path
+       d="M -55.667836,330.11748 C -54.347105,325.16278 -51.67252,315.22275 -51.515523,314.89338 C -51.186883,314.20393 -51.121917,313.65381 -50.034883,313.60631 L -42.886955,313.69168 L -42.886955,310.66214 L -50.333498,310.66214 C -50.178853,309.98746 -50.383012,309.31278 -49.164921,308.6381 L -42.934292,308.6381 L -42.934292,302.66225 C -42.934292,301.09614 -37.064554,301.09983 -37.064554,302.66225 L -37.064554,314.73308 C -37.064554,315.9654 -38.193966,316.81589 -39.857413,316.81589 L -49.324732,316.81589 L -53.490353,330.16481 C -53.745584,331.11734 -55.667836,330.83456 -55.667836,330.11748 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path6630" />
+    <path
+       d="M -53.443015,298.59131 C -53.442426,300.16032 -54.714197,301.43257 -56.283211,301.43257 C -57.852224,301.43257 -59.123995,300.16032 -59.123406,298.59131 C -59.123995,297.0223 -57.852224,295.75005 -56.283211,295.75005 C -54.714197,295.75005 -53.442426,297.0223 -53.443015,298.59131 z "
+       transform="matrix(1.083333,0,0,1.083333,20.67569,-26.8545)"
+       style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path6632" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1046-11.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1046-11.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1046-11.svg	(revision 21967)
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="matrix(0.424242,0,0,0.424242,100.7972,52.63578)"
+     id="layer1">
+    <path
+       d="M 136.75462,282.03583 C 136.75462,357.06643 75.930301,417.89075 0.8997,417.89075 C -74.130901,417.89075 -134.95522,357.06643 -134.95522,282.03583 C -134.95522,207.00523 -74.130901,146.18091 0.8997,146.18091 C 75.930301,146.18091 136.75462,207.00523 136.75462,282.03583 z "
+       transform="matrix(0.74724,0,0,0.74724,122.5869,48.79482)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:39.38558578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path15475" />
+    <path
+       d="M 648.90867,96.718727 L 435.78671,96.718727 C 427.74779,99.838733 421.99999,104.94437 426.56202,118.9852 L 481.59203,154.61156 C 505.09805,136.98259 529.46933,134.06306 553.79902,130.43653 L 649.54486,130.11844 L 648.90867,96.718727 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12814" />
+    <path
+       d="M 582.93177,285.852 L 361.08955,285.58848 C 314.75731,284.17925 288.28246,245.79634 259.51124,204.2434 C 209.17953,131.55162 201.92686,130.76936 191.60083,97.014213 L 265.47547,97.091396 C 270.39789,98.590741 275.32031,99.325646 280.24273,105.42207 L 324.71097,168.71896 C 328.41656,184.39886 325.34225,197.06215 321.45561,210.49425 C 316.96787,226.00375 334.80258,253.63393 362.62544,252.50687 L 583.4588,239.59683 L 582.93177,285.852 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path13701" />
+    <path
+       d="M 108.60035,251.76407 C 110.39975,246.36586 194.33551,41.815551 194.33551,41.815551 C 204.53449,23.526361 218.83992,13.450051 237.52117,12.125404 L 295.10207,12.125404 L 294.78398,45.941389 L 239.266,45.941389 C 232.48018,45.301217 227.37783,49.579445 223.12595,61.608982 L 139.45372,265.8412 C 131.31921,284.84108 100.39972,278.15819 108.60035,251.76407 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path14588" />
+    <path
+       d="M 136.75462,282.03583 C 136.75462,357.06643 75.930301,417.89075 0.8997,417.89075 C -74.130901,417.89075 -134.95522,357.06643 -134.95522,282.03583 C -134.95522,207.00523 -74.130901,146.18091 0.8997,146.18091 C 75.930301,146.18091 136.75462,207.00523 136.75462,282.03583 z "
+       transform="matrix(0.74724,0,0,0.74724,555.8824,49.18351)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:39.38558578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path17247" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1046-12.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1046-12.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1046-12.svg	(revision 21967)
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="matrix(0.368807,0,0,0.368807,119.3566,43.07082)"
+     id="g3132">
+    <path
+       d="M 438.12826,429.16927 C 375.32987,426.00501 282.92602,437.06422 251.92375,397.77007 C 237.71768,323.00073 197.12299,285.36345 127.4223,284.58694 C 84.626532,201.93866 162.31092,188.98722 215.41306,167.75274 C 218.78636,206.16837 216.71935,246.10015 277.48123,268.52224 C 279.92034,256.63453 284.90432,246.92813 300.84807,246.61583 L 390.66436,246.98094 L 454.19295,197.3264 C 464.45935,213.65423 484.83147,234.57558 484.86193,246.25072 L 581.25015,246.61583 C 588.2694,252.59444 594.22298,268.45864 580.15483,284.22184 C 522.41354,282.46908 417.46802,288.77717 438.12826,429.16927 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path4749" />
+    <path
+       d="M 281.45311,113.13794 L 281.71128,79.094411 L 319.83363,73.920272 L 319.83363,46.902363 L 280.93677,53.36735 C 283.79727,29.02724 299.44705,11.428004 333.92156,6.3312047 C 355.56786,7.8567994 378.26787,9.030436 391.1807,49.520754 C 394.96498,65.581097 392.60623,81.830116 382.63201,95.826685 C 350.34442,78.127222 326.17913,90.209532 304.13403,110.06585 L 281.45311,113.13794 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5636" />
+    <path
+       d="M 215.04795,186.7383 L 328.59619,100.93818 C 343.85852,92.79748 360.69029,91.248459 380.80647,103.49393 C 398.00264,119.11558 427.05087,162.39207 450.17678,191.84979 L 385.55287,240.22646 L 323.48469,153.87868 L 225.27094,229.0907 C 217.71099,215.89572 215.94199,200.40941 215.04795,186.7383 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path6523" />
+    <path
+       d="M 241.70075,414.19989 C 241.70789,460.38118 204.27256,497.8223 158.09128,497.8223 C 111.90999,497.8223 74.474661,460.38118 74.481804,414.19989 C 74.474661,368.0186 111.90999,330.57748 158.09128,330.57748 C 204.27256,330.57748 241.70789,368.0186 241.70075,414.19989 L 241.70075,414.19989 z "
+       transform="matrix(0.974466,0,0,0.974466,-15.37667,-10.08382)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:34.99968338;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path7410" />
+    <path
+       d="M 241.70075,414.19989 C 241.70789,460.38118 204.27256,497.8223 158.09128,497.8223 C 111.90999,497.8223 74.474661,460.38118 74.481804,414.19989 C 74.474661,368.0186 111.90999,330.57748 158.09128,330.57748 C 204.27256,330.57748 241.70789,368.0186 241.70075,414.19989 L 241.70075,414.19989 z "
+       transform="matrix(0.974466,0,0,0.974466,388.6178,-9.97323)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:34.99968338;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path8297" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1048-10.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1048-10.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1048-10.svg	(revision 21967)
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="matrix(0.553662,0,0,0.553662,346.6055,-57.98703)"
+     id="g1919">
+    <path
+       d="M -349.51018,422.04401 C -349.51018,449.77051 -371.98694,472.24727 -399.71344,472.24727 C -427.43994,472.24727 -449.9167,449.77051 -449.9167,422.04401 C -449.9167,394.31752 -427.43994,371.84075 -399.71344,371.84075 C -371.98694,371.84075 -349.51018,394.31752 -349.51018,422.04401 L -349.51018,422.04401 z "
+       style="fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path25345" />
+    <path
+       d="M -239.55303,230.32142 C -236.87961,227.22635 -233.83316,224.5665 -228.21024,224.91253 L 14.65733,224.91253 L 135.36151,320.7517 C 136.69344,323.56683 137.36741,325.72399 137.70533,327.54511 L 138.16406,412.47209 C 135.92053,417.34013 133.28109,421.49554 128.57377,421.92876 L 100.55863,421.92876 C 100.55863,338.89679 -22.19346,338.72721 -22.19346,421.92876 L -337.57475,421.92876 C -337.57475,339.21885 -461.26101,338.9015 -461.26101,421.92876 L -495.43553,421.92876 C -498.34948,420.56574 -500.97116,421.83325 -504.82123,412.04517 L -505.19491,350.97236 C -503.20757,345.41573 -500.72891,343.29839 -498.25583,341.14201 L -320.73121,311.65094 L -239.55303,230.32142 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path24454" />
+    <path
+       d="M 88.86912,422.0229 C 88.86912,449.7494 66.39236,472.22616 38.66586,472.22616 C 10.93936,472.22616 -11.5374,449.7494 -11.5374,422.0229 C -11.5374,394.29641 10.93936,371.81964 38.66586,371.81964 C 66.39236,371.81964 88.86912,394.29641 88.86912,422.0229 L 88.86912,422.0229 z "
+       style="fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path25343" />
+    <path
+       d="M 44.15052,305.12148 L -7.6922,252.9107 C -9.05617,251.75157 -10.12893,250.15564 -12.49981,250.50689 L -102.99788,250.50689 L -102.99788,323.62262 L 51.23653,323.62262 C 58.53486,322.16724 48.93086,312.32067 44.15052,305.12148 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path26236" />
+    <path
+       d="M -295.85961,312.59455 L -235.36384,252.90005 C -233.99987,251.74093 -232.92711,250.145 -230.55623,250.49625 L -122.98595,250.49625 L -122.98595,323.61199 L -291.25231,323.61199 C -297.65794,321.08536 -298.52471,317.25547 -295.85961,312.59455 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path25349" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1048-11.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1048-11.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1048-11.svg	(revision 21967)
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="matrix(0.416497,0,0,0.416497,40.28258,82.68274)"
+     id="layer1">
+    <path
+       d="M 160.58312,199.08511 C 160.58312,226.81161 138.10636,249.28837 110.37986,249.28837 C 82.653362,249.28837 60.176601,226.81161 60.176601,199.08511 C 60.176601,171.35862 82.653362,148.88185 110.37986,148.88185 C 138.10636,148.88185 160.58312,171.35862 160.58312,199.08511 L 160.58312,199.08511 z "
+       style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3194" />
+    <path
+       d="M 270.54027,7.362515 C 273.21369,4.2674527 276.26014,1.6076003 281.88306,1.9536287 L 524.75063,1.9536287 L 645.45481,97.7928 C 646.78674,100.60793 647.46071,102.76509 647.79863,104.58621 L 648.25736,189.51319 C 646.01383,194.38123 643.37439,198.53664 638.66707,198.96986 L 610.65193,198.96986 C 610.65193,115.93789 487.89984,115.76831 487.89984,198.96986 L 172.51855,198.96986 C 172.51855,116.25995 48.832289,115.9426 48.832289,198.96986 L 14.657772,198.96986 C 11.743816,197.60684 9.1221418,198.87435 5.2720693,189.08627 L 4.8983948,128.01346 C 6.8857269,122.45683 9.3643852,120.33949 11.837468,118.18311 L 189.36209,88.692043 L 270.54027,7.362515 z "
+       style="opacity:1;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3196" />
+    <path
+       d="M 598.96242,199.064 C 598.96242,226.7905 576.48566,249.26726 548.75916,249.26726 C 521.03266,249.26726 498.5559,226.7905 498.5559,199.064 C 498.5559,171.33751 521.03266,148.86074 548.75916,148.86074 C 576.48566,148.86074 598.96242,171.33751 598.96242,199.064 L 598.96242,199.064 z "
+       style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3198" />
+    <path
+       d="M 554.24382,82.162579 L 502.4011,29.951795 C 501.03713,28.792673 499.96437,27.196736 497.59349,27.54799 L 407.09542,27.54799 L 407.09542,100.66372 L 561.32983,100.66372 C 568.62816,99.208338 559.02416,89.361769 554.24382,82.162579 z "
+       style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3200" />
+    <path
+       d="M 787.13419,173.56057 L 707.90245,173.56057 L 707.90245,186.47499 L 658.86255,186.47499 L 658.86255,199.56394 L 782.94573,199.56394 C 783.89147,190.82108 783.62571,181.87631 787.13419,173.56057 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path28093" />
+    <path
+       d="M 214.23369,89.635648 L 274.72946,29.941154 C 276.09343,28.782032 277.16619,27.186096 279.53707,27.537349 L 387.10735,27.537349 L 387.10735,100.65309 L 218.84099,100.65309 C 212.43536,98.126456 211.56859,94.296573 214.23369,89.635648 z "
+       style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3203" />
+    <path
+       d="M 893.91893,199.09866 C 893.91893,226.82516 871.44217,249.30192 843.71567,249.30192 C 815.98917,249.30192 793.51241,226.82516 793.51241,199.09866 C 793.51241,171.37217 815.98917,148.8954 843.71567,148.8954 C 871.44217,148.8954 893.91893,171.37217 893.91893,199.09866 L 893.91893,199.09866 z "
+       style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path26315" />
+    <path
+       d="M 708.07697,162.39134 L 708.07697,48.604793 C 710.54619,30.868706 719.63699,29.163014 727.97217,26.615369 L 960.08276,26.615369 C 966.40555,28.250356 974.14601,29.599665 978.05824,47.208639 L 978.05824,162.39134 L 892.19479,162.39134 C 874.56835,126.20501 813.66112,126.0422 794.98756,162.39134 L 708.07697,162.39134 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path26317" />
+    <path
+       d="M 978.1455,173.56057 L 965.66738,199.56394 L 904.2366,199.56394 C 902.40617,190.85015 902.52331,181.85814 897.77939,173.56057 L 978.1455,173.56057 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path27206" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1048-12.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1048-12.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1048-12.svg	(revision 21967)
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 37.10863,487.51009 L 37.10863,541.80186 L 50.66977,541.80186 L 50.66977,488.38108 L 37.10863,487.51009 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5404" />
+  <path
+     d="M 91.06256,486.09351 L 91.06256,540.38528 L 104.6237,540.38528 L 104.6237,486.9645 L 91.06256,486.09351 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5425" />
+  <g
+     transform="matrix(0.342814,0,0,0.342814,73.43973,49.09789)"
+     id="g5452">
+    <path
+       d="M 295.78419,86.816926 L 295.78419,335.08252 L 687.71625,335.4031 C 664.71649,354.19396 650.35734,380.09418 650.54503,414.08813 L 261.47933,413.85667 C 257.75238,281.97351 70.642616,282.42223 66.576854,413.09434 C 38.473995,412.88466 34.575813,406.50199 34.30487,380.61469 L 34.304868,281.61469 C 33.952015,237.37253 28.42681,266.57731 61.177014,182.67997 C 94.875059,93.246445 85.585107,101.51291 116.0648,99.204795 L 295.78419,86.816926 z M 217.93865,233.19966 L 219.48981,127.72046 L 119.43969,133.92512 C 101.20003,135.14704 101.04823,135.26154 94.62105,156.41701 L 69.026832,224.66825 C 60.428592,245.6025 61.79713,251.77115 85.314062,248.71131 L 217.93865,233.19966 z M 966.63494,335.59074 L 966.82552,391.36792 L 902.21802,414.23783 L 845.4914,414.20156 C 845.7223,381.85903 832.28136,354.65711 808.44981,335.54893 L 966.63494,335.59074 z "
+       style="fill:black;fill-rule:evenodd;stroke:none"
+       id="path5439" />
+    <rect
+       width="631.32404"
+       height="301.70154"
+       x="335.82718"
+       y="12.158683"
+       style="fill:black;stroke:none"
+       id="rect5441" />
+    <circle
+       cx="164"
+       cy="412"
+       r="77"
+       style="fill:black;stroke:none"
+       id="circle5443" />
+    <circle
+       cx="748"
+       cy="412"
+       r="77"
+       style="fill:black;stroke:none"
+       id="circle5445" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1048-13.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1048-13.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1048-13.svg	(revision 21967)
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 37.10863,487.51009 L 37.10863,541.80186 L 50.66977,541.80186 L 50.66977,488.38108 L 37.10863,487.51009 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5404" />
+  <path
+     d="M 91.06256,486.09351 L 91.06256,540.38528 L 104.6237,540.38528 L 104.6237,486.9645 L 91.06256,486.09351 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5425" />
+  <g
+     transform="matrix(0.414816,0,0,0.414816,43.76114,79.19138)"
+     id="layer1">
+    <path
+       d="M 948.58272,181.11452 L 948.58272,212.00923 L 904.55776,212.00923 C 901.60557,200.82583 896.46811,190.20899 885.45863,181.11452 L 948.58272,181.11452 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path11867" />
+    <path
+       d="M 187.42838,5.0734714 L 532.683,5.0734714 L 532.683,169.79304 L 187.42838,169.79304 L 187.42838,5.0734714 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path10081" />
+    <path
+       d="M 579.57758,4.9475632 L 948.64201,4.9475632 L 948.64201,169.66713 L 579.57758,169.66713 L 579.57758,4.9475632 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path10968" />
+    <path
+       d="M 900.1042,233.89624 C 900.1042,254.86716 883.10391,271.86745 862.13299,271.86745 C 841.16208,271.86745 824.16179,254.86716 824.16179,233.89624 C 824.16179,212.92532 841.16208,195.92504 862.13299,195.92504 C 883.10391,195.92504 900.1042,212.92532 900.1042,233.89624 z "
+       transform="matrix(1.090164,0,0,1.090164,-86.75925,-32.25117)"
+       style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:34.10599899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path10970" />
+    <path
+       d="M 900.1042,233.89624 C 900.1042,254.86716 883.10391,271.86745 862.13299,271.86745 C 841.16208,271.86745 824.16179,254.86716 824.16179,233.89624 C 824.16179,212.92532 841.16208,195.92504 862.13299,195.92504 C 883.10391,195.92504 900.1042,212.92532 900.1042,233.89624 z "
+       transform="matrix(1.090164,0,0,1.090164,-288.7536,-32.29364)"
+       style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:34.10599899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path10972" />
+    <path
+       d="M 900.1042,233.89624 C 900.1042,254.86716 883.10391,271.86745 862.13299,271.86745 C 841.16208,271.86745 824.16179,254.86716 824.16179,233.89624 C 824.16179,212.92532 841.16208,195.92504 862.13299,195.92504 C 883.10391,195.92504 900.1042,212.92532 900.1042,233.89624 z "
+       transform="matrix(1.090164,0,0,1.090164,-525.918,-32.41613)"
+       style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:34.10599899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path10974" />
+    <path
+       d="M 900.1042,233.89624 C 900.1042,254.86716 883.10391,271.86745 862.13299,271.86745 C 841.16208,271.86745 824.16179,254.86716 824.16179,233.89624 C 824.16179,212.92532 841.16208,195.92504 862.13299,195.92504 C 883.10391,195.92504 900.1042,212.92532 900.1042,233.89624 z "
+       transform="matrix(1.090164,0,0,1.090164,-846.4946,-32.29364)"
+       style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:34.10599899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path10976" />
+    <path
+       d="M 555.58979,180.92026 L 555.58979,211.81497 L 599.61475,211.81497 C 602.56694,200.63157 607.7044,190.01473 618.71388,180.92026 L 555.58979,180.92026 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path10980" />
+    <path
+       d="M 684.37536,181.11451 C 695.46489,190.5657 698.81792,200.8602 702.48185,212.00922 L 801.50106,212.00922 C 804.45325,200.82582 809.59071,190.20898 820.60019,181.11451 L 684.37536,181.11451 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path11871" />
+    <path
+       d="M 532.6833,180.77713 L 532.84234,212.30802 L 498.57982,222.89377 L 466.55091,222.96412 C 468.00842,210.31082 458.55157,189.47039 445.86132,180.93618 L 532.6833,180.77713 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path11875" />
+    <path
+       d="M 164.38292,46.440644 L 60.571013,51.8735 C 56.231301,53.218337 52.575838,55.171397 50.919898,58.901809 L 22.700623,132.93384 L 21.613992,140.70413 L 21.621535,212.97526 C 22.503535,219.59402 26.862349,221.74259 31.897406,223.02171 L 40.397747,223.02171 C 40.397747,154.18672 147.11778,154.36604 147.11778,223.02171 L 361.41037,223.02171 C 359.95286,210.36841 369.40971,189.52798 382.09996,180.99377 L 164.61964,180.96791 L 164.38292,46.440644 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path11879" />
+    <path
+       d="M 122.58432,126.2727 L 122.58432,67.11733 L 62.754174,71.165986 C 60.574695,71.531761 59.010637,72.974522 58.030742,75.439568 L 38.912086,126.2727 C 38.590374,128.0721 37.82559,129.87151 38.912086,131.67091 C 39.608067,133.31708 40.918089,134.14453 42.510892,134.59494 L 122.58432,126.2727 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path11883" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1048-14.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1048-14.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1048-14.svg	(revision 21967)
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 37.10863,487.51009 L 37.10863,541.80186 L 50.66977,541.80186 L 50.66977,488.38108 L 37.10863,487.51009 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5404" />
+  <path
+     d="M 91.06256,486.09351 L 91.06256,540.38528 L 104.6237,540.38528 L 104.6237,486.9645 L 91.06256,486.09351 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5425" />
+  <g
+     transform="translate(215.5998,-306.0631)"
+     id="g3344">
+    <path
+       d="M -77.33636,388.30102 L -130.09554,388.1241 L -149.12126,439.09869 L -149.12126,487.56045 C -149.12126,490.93751 -146.93069,494.02202 -143.01867,494.02202 L -132.24939,494.02202 C -124.07871,461.47157 -92.70245,456.63449 -78.76197,483.97069 L -44.30027,483.97069 C -28.93601,457.99027 6.33961,462.79659 8.11022,493.70411 L 17.80258,493.70411 C 17.80258,480.63082 4.54,457.04749 -10.19755,457.04749 L -77.68504,457.04749 L -77.33636,388.30102 z "
+       style="color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path1999" />
+    <path
+       d="M 116.1717,457.1746 C 101.43415,457.1746 88.17171,480.75756 88.1717,493.83085 L 97.89045,493.83085 C 99.611,463.79714 132.96106,460.39473 143.2342,473.76835 L 143.20295,474.9871 L 152.9217,474.9871 L 152.89045,473.76835 C 163.16359,460.39473 196.51365,463.79714 198.2342,493.83085 L 207.9217,493.83085 C 207.92169,480.75756 194.65925,457.1746 179.9217,457.1746 L 116.1717,457.1746 z "
+       style="color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path2003" />
+    <path
+       d="M 145.22134,493.03462 C 145.22137,504.9363 135.58902,514.5929 123.68738,514.62282 C 111.78574,514.65274 102.10497,505.04469 102.04516,493.14316 C 101.98535,481.24163 111.56906,471.53676 123.4704,471.44705 C 135.37174,471.35735 145.10065,480.91665 145.22025,492.81773"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path2010" />
+    <path
+       d="M 192.85814,493.03462 C 192.85817,504.9363 183.22582,514.5929 171.32418,514.62282 C 159.42254,514.65274 149.74177,505.04469 149.68196,493.14316 C 149.62215,481.24163 159.20586,471.53676 171.1072,471.44705 C 183.00854,471.35735 192.73745,480.91665 192.85705,492.81773"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path2012" />
+    <path
+       d="M -82.52546,493.03462 C -82.52543,504.9363 -92.15778,514.5929 -104.05942,514.62282 C -115.96106,514.65274 -125.64183,505.04469 -125.70164,493.14316 C -125.76145,481.24163 -116.17774,471.53676 -104.2764,471.44705 C -92.37506,471.35735 -82.64615,480.91665 -82.52655,492.81773"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path2014" />
+    <path
+       d="M 2.57844,493.03462 C 2.57847,504.9363 -7.05388,514.5929 -18.95552,514.62282 C -30.85716,514.65274 -40.53793,505.04469 -40.59774,493.14316 C -40.65755,481.24163 -31.07384,471.53676 -19.1725,471.44705 C -7.27116,471.35735 2.45775,480.91665 2.57735,492.81773"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path2016" />
+    <path
+       d="M -54.02803,367.50327 L -54.08942,450.63319 L 207.30979,450.5718 L 207.30979,367.7872 L -54.02803,367.50327 z "
+       style="color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path2018" />
+    <path
+       d="M -97.545,400.0024 L -97.44386,431.30104 L -142.75144,436.09069 L -129.93587,400.10354 L -97.545,400.0024 z "
+       style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path2020" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1048-17.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1048-17.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1048-17.svg	(revision 21967)
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 37.10863,487.51009 L 37.10863,541.80186 L 50.66977,541.80186 L 50.66977,488.38108 L 37.10863,487.51009 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5404" />
+  <path
+     d="M 91.06256,486.09351 L 91.06256,540.38528 L 104.6237,540.38528 L 104.6237,486.9645 L 91.06256,486.09351 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5425" />
+  <g
+     transform="translate(464.4842,93.08128)"
+     id="g3385">
+    <path
+       d="M -350.4152,99.11503 L -328.91882,99.11503 C -328.91882,64.22852 -274.90618,64.33667 -274.90618,99.11503 L -178.06468,99.11503 C -178.06468,64.46823 -124.17913,64.57405 -124.17913,99.11503 L -112.61927,99.11503 L -83.62933,89.32113 L -83.62933,-22.200388 C -83.62933,-24.217088 -85.25544,-25.855147 -87.45053,-25.855147 L -158.45473,-25.855147 L -176.86727,-36.040804 L -322.99228,-36.040804 L -353.54925,-15.277733 C -356.04851,-13.269998 -355.8201,-6.687074 -353.54925,-3.916808 L -342.97183,5.877094 L -270.13668,5.877094 L -270.10521,10.96992 L -299.48691,16.06275 L -322.60052,50.53728 L -354.33276,61.50645 L -354.33276,96.37274 C -354.33276,98.04948 -352.97545,99.11503 -350.4152,99.11503 z "
+       style="color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path2091" />
+    <path
+       d="M -281.07435,99.506798 C -281.07428,110.73759 -290.16361,119.8499 -301.39436,119.87818 C -312.62511,119.90646 -321.76023,110.84004 -321.81672,99.6094 C -321.87321,88.378746 -312.82977,79.220895 -301.59929,79.136193 C -290.36883,79.05149 -281.18829,88.071904 -281.07538,99.302128"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path2085" />
+    <path
+       d="M -131.03175,99.506798 C -131.03168,110.73759 -140.12101,119.8499 -151.35176,119.87818 C -162.58251,119.90646 -171.71763,110.84004 -171.77412,99.6094 C -171.83061,88.378746 -162.78717,79.220895 -151.55669,79.136193 C -140.32623,79.05149 -131.14569,88.071904 -131.03278,99.302128"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path2089" />
+    <path
+       d="M -315.70161,51.76516 L -272.23732,50.2401 C -271.22002,50.2401 -270.2039,49.04746 -270.2039,47.9525 L -270.2039,21.51808 C -270.2039,20.58229 -271.73916,19.73884 -272.74567,19.73884 L -295.62161,19.73884 L -315.44743,47.9525 L -315.70161,51.76516 z "
+       style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path2095" />
+    <path
+       d="M -234.85141,7.021787 L -234.85141,87.12311 C -234.85141,88.28848 -234.06211,89.53916 -232.99291,89.53916 L -188.38893,89.53916 C -187.24879,89.53916 -186.34458,88.5308 -186.34458,86.75141 L -186.34458,7.57934 C -186.34458,6.457247 -187.28046,5.163288 -188.76063,5.163288 L -232.62121,5.163288 C -234.18998,5.187979 -234.85141,6.141607 -234.85141,7.021787 z "
+       style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path2097" />
+    <path
+       d="M -166.66121,6.610992 L -166.66121,35.6558 C -166.66574,36.61701 -166.18837,37.36432 -165.10801,37.36432 L -126.27806,37.36432 C -125.33455,37.36432 -124.56954,36.53925 -124.56954,35.50048 L -124.56954,6.688652 C -124.56954,5.839157 -125.37095,4.980134 -126.35572,4.980134 L -165.10801,4.980134 C -166.0877,4.980134 -166.66121,5.769524 -166.66121,6.610992 z "
+       style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path2099" />
+    <path
+       d="M -313.39076,-24.80339 L -313.39076,-6.969289 C -313.39076,-6.090269 -312.99649,-5.102929 -311.73178,-5.102929 L -272.53823,-5.102929 C -271.5831,-5.102929 -270.98293,-5.986124 -270.98293,-6.969289 L -270.98293,-25.010763 C -270.98293,-25.969075 -272.04234,-26.566063 -272.84929,-26.566063 L -311.52441,-26.566063 C -312.6129,-26.566063 -313.39076,-25.734258 -313.39076,-24.80339 z "
+       style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path1886" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1048-19.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1048-19.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1048-19.svg	(revision 21967)
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 37.10863,487.51009 L 37.10863,541.80186 L 50.66977,541.80186 L 50.66977,488.38108 L 37.10863,487.51009 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5404" />
+  <path
+     d="M 91.06256,486.09351 L 91.06256,540.38528 L 104.6237,540.38528 L 104.6237,486.9645 L 91.06256,486.09351 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5425" />
+  <g
+     transform="matrix(0.497949,0,0,0.497949,60.70423,45.09004)"
+     id="layer1">
+    <path
+       d="M 141.29386,64.772007 L 226.621,8.5678385 L 310.09117,64.726728 L 226.67891,120.91089 L 141.29386,64.772007 z "
+       style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path30859" />
+    <path
+       d="M 545.76835,224.85743 C 544.55054,231.75847 539.49988,232.6089 535.6799,236.42888 C 543.52397,236.41433 556.28207,236.32762 556.3103,235.60249 L 556.72355,224.98944 L 545.76835,224.85743 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30855" />
+    <path
+       d="M 68.158738,321.23081 C 68.455695,367.59067 134.85842,367.59152 134.85842,321.64768"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path29926" />
+    <path
+       d="M 205.72683,321.21721 C 206.02379,367.57707 272.42651,367.57792 272.42651,321.63408"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30815" />
+    <path
+       d="M 467.10621,321.21721 C 467.40316,367.57707 533.80589,367.57792 533.80589,321.63408"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30817" />
+    <path
+       d="M 605.09118,321.21721 C 605.38814,367.57707 671.79086,367.57792 671.79086,321.63408"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30819" />
+    <path
+       d="M 142.04948,342.38712 L 197.91046,342.38712 C 195.06734,337.46269 193.77027,332.24227 193.95017,321.54346 L 146.94774,321.54346 C 146.615,332.3914 144.91424,337.4252 142.04948,342.38712 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30821" />
+    <path
+       d="M 541.10118,342.49133 L 596.96216,342.49133 C 594.11904,337.5669 592.82197,332.34648 593.00187,321.64767 L 545.99944,321.64767 C 545.6667,332.49561 543.96594,337.52941 541.10118,342.49133 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30825" />
+    <path
+       d="M 570.24997,144.88875 C 565.04731,148.56178 560.2466,151.66884 560.2466,154.82898 L 560.30736,283.93097 C 561.52517,290.83201 566.42999,291.97412 570.24997,295.7941 L 546.51516,295.61257 L 546.2191,154.56075 C 546.2191,151.76942 541.27657,148.50142 536.1756,144.89967 L 570.24997,144.88875 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30841" />
+    <path
+       d="M 34.77654,124.52695 L 704.03682,124.52695 L 704.03682,145.63848 L 34.954125,145.63848 L 34.77654,124.52695 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30827" />
+    <path
+       d="M 405.02462,144.77233 C 410.22728,148.44536 415.02799,151.55242 415.02799,154.71256 L 414.96723,224.96752 C 413.74942,231.86856 408.8446,233.01067 405.02462,236.83065 L 439.09899,236.83065 C 435.27035,233.00201 430.20446,232.09446 429.0714,225.13748 L 429.05549,154.44433 C 429.05549,151.653 433.99802,148.385 439.09899,144.78325 L 405.02462,144.77233 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30829" />
+    <path
+       d="M 273.9892,144.66674 C 279.19186,148.33977 283.99257,151.44683 283.99257,154.60697 L 283.93181,224.86193 C 282.714,231.76297 277.80918,232.90508 273.9892,236.72506 L 308.06357,236.72506 C 304.23493,232.89642 299.16904,231.98887 298.03598,225.03189 L 298.02007,154.33874 C 298.02007,151.54741 302.9626,148.27941 308.06357,144.67766 L 273.9892,144.66674 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30833" />
+    <path
+       d="M 143.85545,144.88875 C 149.05811,148.56178 153.85882,151.66884 153.85882,154.82898 L 153.79806,283.93097 C 152.58025,290.83201 147.67543,291.97412 143.85545,295.7941 L 167.59026,295.61257 L 167.88632,154.56075 C 167.88632,151.76942 172.82885,148.50142 177.92982,144.89967 L 143.85545,144.88875 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30839" />
+    <path
+       d="M 628.05988,144.88875 C 633.26254,148.56178 638.06325,151.66884 638.06325,154.82898 L 638.00249,283.93097 C 636.78468,290.83201 631.87986,291.97412 628.05988,295.7941 L 651.79469,295.61257 L 651.64888,144.96967 L 628.05988,144.88875 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30845" />
+    <path
+       d="M 112.14105,144.77017 C 106.93839,148.4432 102.13768,151.55026 102.13768,154.7104 L 102.19844,283.81239 C 103.41625,290.71343 108.32107,291.85554 112.14105,295.67552 L 88.406239,295.67178 L 88.552049,144.85109 L 112.14105,144.77017 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30849" />
+    <path
+       d="M 48.471006,144.5257 L 3.2183455,234.56804 L 3.2183455,289.1964 C 3.2183455,299.06206 14.853723,309.33876 23.735298,309.31106 L 716.48416,309.31106 C 725.18984,309.31106 737.00111,297.13026 737.00111,289.1964 L 737.00111,233.67994 L 691.06759,144.17503 L 677.91563,144.17503 L 708.84059,205.11712 C 714.11626,225.00611 697.80765,233.59281 689.53052,236.50035 L 650.58941,236.33987 L 650.91037,295.63527 L 547.11655,295.63527 L 547.11655,236.33769 L 166.95167,236.33769 L 166.95167,295.55394 L 89.065096,295.55394 L 89.065096,236.41685 L 49.884355,236.41685 C 40.999758,236.41685 25.997947,225.75364 31.37669,205.6799 L 61.478753,144.5257 L 48.471006,144.5257 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30853" />
+    <path
+       d="M 168.36959,224.926 C 169.5874,231.82704 174.63806,232.67747 178.45804,236.49745 C 170.61397,236.4829 157.85587,236.39619 157.82764,235.67106 L 157.41439,225.05801 L 168.36959,224.926 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path30857" />
+    <path
+       d="M 298.81034,124.9591 L 291.66677,117.46706 L 159.42359,117.46706 L 153.32543,124.78486 L 298.81034,124.9591 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path31750" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1049-10.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1049-10.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1049-10.svg	(revision 21967)
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <path
+     d="M 37.10863,487.51009 L 37.10863,541.80186 L 50.66977,541.80186 L 50.66977,488.38108 L 37.10863,487.51009 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5404" />
+  <path
+     d="M 91.06256,486.09351 L 91.06256,540.38528 L 104.6237,540.38528 L 104.6237,486.9645 L 91.06256,486.09351 z "
+     style="color:black;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+     id="path5425" />
+  <g
+     transform="matrix(0.472523,0,0,0.472523,126.8692,40.4954)"
+     id="g3475">
+    <g
+       transform="translate(10.1636,8.029761)"
+       id="g4548">
+      <path
+         d="M 295.23238,14.905561 C 279.95549,17.514001 272.29797,24.966621 266.23238,33.436811 L 248.45113,141.12431 L 37.388633,141.12431 C 14.754659,144.54201 19.232383,154.82662 19.232383,163.09306 L 36.388633,268.15556 L 51.513633,268.15556 C 63.437389,228.50231 144.25279,229.9376 156.82613,268.15556 L 247.51363,268.15556 C 243.13571,198.86951 342.7846,101.24363 443.48238,196.40556 L 443.48238,139.49931 L 443.73238,139.49931 L 443.73238,14.905561 L 295.23238,14.905561 z M 289.23238,42.499311 L 399.60738,42.499311 L 399.91988,139.87431 L 270.07613,140.93681 L 286.01363,47.999311 C 286.56907,46.102541 286.84967,44.193071 289.23238,42.499311 z "
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path1882" />
+      <path
+         d="M 665.82779,917.76086 C 665.82779,960.38146 631.27697,994.93228 588.65637,994.93228 C 546.03577,994.93228 511.48495,960.38146 511.48495,917.76086 C 511.48495,875.14026 546.03577,840.58944 588.65637,840.58944 C 631.27697,840.58944 665.82779,875.14026 665.82779,917.76086 z "
+         transform="translate(-230.0275,-650.8975)"
+         style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:50;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path1887" />
+      <path
+         d="M 665.82779,917.76086 C 665.82779,960.38146 631.27697,994.93228 588.65637,994.93228 C 546.03577,994.93228 511.48495,960.38146 511.48495,917.76086 C 511.48495,875.14026 546.03577,840.58944 588.65637,840.58944 C 631.27697,840.58944 665.82779,875.14026 665.82779,917.76086 z "
+         transform="matrix(0.591604,0,0,0.591604,-244.0191,-234.3611)"
+         style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:50;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path2776" />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1049-12.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1049-12.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1049-12.svg	(revision 21967)
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="translate(23.01927,-484.4661)"
+     id="g3554">
+    <path
+       d="M 290.61109,594.7957 L 219.98933,594.7957 L 198.31334,583.14195 L 198.31334,550.27835 L 337.22612,537.45922 L 337.22612,580.34505 L 290.61109,589.43497 L 290.61109,594.7957 z "
+       style="color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path5534" />
+    <path
+       d="M 65.22745,640.14176 L 383.60806,640.7115 L 383.55474,581.51042 L 292.24262,601.55488 L 159.3898,601.55488 L 65.22745,626.72699 C 59.68041,628.97045 57.84175,640.14176 65.22745,640.14176 z "
+       style="color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path5536" />
+    <path
+       d="M 155.81493,666.86299 C 155.8149,678.17004 146.66376,687.34414 135.35675,687.37251 C 124.04974,687.40088 114.85268,678.27282 114.79591,666.96591 C 114.73914,655.65901 123.84407,646.43905 135.1508,646.35388 C 146.45752,646.26871 155.70032,655.35046 155.81389,666.65693"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1874" />
+    <path
+       d="M 201.97733,666.86299 C 201.9773,678.17004 192.82616,687.34414 181.51915,687.37251 C 170.21214,687.40088 161.01508,678.27282 160.95831,666.96591 C 160.90154,655.65901 170.00647,646.43905 181.3132,646.35388 C 192.61992,646.26871 201.86272,655.35046 201.97629,666.65693"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1876" />
+    <path
+       d="M 247.33033,666.86299 C 247.3303,678.17004 238.17916,687.34414 226.87215,687.37251 C 215.56514,687.40088 206.36808,678.27282 206.31131,666.96591 C 206.25454,655.65901 215.35947,646.43905 226.6662,646.35388 C 237.97292,646.26871 247.21572,655.35046 247.32929,666.65693"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1880" />
+    <path
+       d="M 293.76333,666.86299 C 293.7633,678.17004 284.61216,687.34414 273.30515,687.37251 C 261.99814,687.40088 252.80108,678.27282 252.74431,666.96591 C 252.68754,655.65901 261.79247,646.43905 273.0992,646.35388 C 284.40592,646.26871 293.64872,655.35046 293.76229,666.65693"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3511" />
+    <path
+       d="M 83.75265,646.62921 L 74.19015,647.06671 C 68.86449,660.31481 73.30023,672.43708 87.94015,681.41046 C 104.43763,691.5224 124.26113,701.25982 130.00265,701.41046 L 325.06515,701.47296 C 330.80667,701.32232 350.63018,691.58492 367.12765,681.47296 C 381.76757,672.49958 386.20331,660.34606 380.87765,647.09796 L 371.31515,646.69171 C 374.19279,659.08716 376.6764,667.4533 358.75265,675.94171 C 344.08271,682.88915 328.57628,691.15987 326.1589,691.66046 L 128.9089,691.62921 C 126.49153,691.1286 111.01634,682.82665 96.3464,675.87921 C 78.42265,667.39081 80.87501,659.02466 83.75265,646.62921 z M 60.44859,556.58616 L 60.44859,570.17368 L 193.64743,574.70285 L 193.64743,556.38029 L 60.44859,556.58616 z "
+       style="color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path1890" />
+    <path
+       d="M 339.83623,667.93559 C 339.8362,679.24264 330.68506,688.41674 319.37805,688.44511 C 308.07104,688.47348 298.87398,679.34542 298.81721,668.03851 C 298.76044,656.73161 307.86537,647.51165 319.1721,647.42648 C 330.47882,647.34131 339.72162,656.42306 339.83519,667.72953"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1884" />
+    <path
+       d="M 368.27196,658.40424 C 368.27194,664.84952 363.05558,670.07898 356.61031,670.09515 C 350.16504,670.11133 344.9225,664.90811 344.89014,658.4629 C 344.85778,652.0177 350.04781,646.7621 356.49291,646.71355 C 362.93802,646.665 368.20663,651.84182 368.27137,658.28678"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1886" />
+    <path
+       d="M 110.01126,658.40424 C 110.01124,664.84952 104.79488,670.07898 98.34961,670.09515 C 91.90434,670.11133 86.6618,664.90811 86.62944,658.4629 C 86.59708,652.0177 91.78711,646.7621 98.23221,646.71355 C 104.67732,646.665 109.94593,651.84182 110.01067,658.28678"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1888" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1052-35.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1052-35.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1052-35.svg	(revision 21967)
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="270"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.78125,4.984375 C 20.356889,4.9843748 9.96875,12.12016 9.96875,33.203125 L 9.65625,236.79688 C 9.65625,257.87984 20.044391,265.01563 38.46875,265.01563 L 451.21875,264.98438 C 469.64311,264.98438 480.03124,257.84859 480.03125,236.76563 L 480.34375,33.234375 C 480.34375,12.15141 469.95561,5.0156248 451.53125,5.015625 L 38.78125,4.984375 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.3125,17.796875 L 36.78125,17.828125 C 28.356999,17.828125 23.40625,23.829135 23.40625,32.703125 L 23.40625,237.35938 C 23.406249,246.23335 28.35701,252.23438 36.78125,252.23438 L 453.28125,252.20313 C 461.70549,252.20312 466.65625,246.20211 466.65625,237.32813 L 466.65625,32.671875 C 466.65625,23.797885 461.73674,17.796875 453.3125,17.796875 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="translate(143.5177,-373.1291)"
+     id="g3679">
+    <path
+       d="M -29.96237,471.44013 L -29.96237,431.47131 L 49.11674,431.47131 L 49.11674,451.40802 L 2.08899,570.45595 L -20.23249,570.45595 L 26.89064,451.40802 L -10.02566,451.40802 L -10.02566,471.44013 L -29.96237,471.44013 z "
+       style="font-size:195.36070251px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:center;text-decoration:none;line-height:100%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:middle;color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:DIN 1451 Mittelschrift"
+       id="text3358" />
+    <path
+       d="M 48.69418,584.78687 L 48.69418,550.54151 L 68.63089,550.54151 L 68.63089,570.38283 L 48.69418,584.78687 z "
+       style="font-size:195.36070251px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:center;text-decoration:none;line-height:100%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:middle;color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:DIN 1451 Mittelschrift"
+       id="text3362" />
+    <path
+       d="M 92.05704,519.5662 L 92.05704,459.17295 L 151.53059,459.17295 L 151.53059,475.19096 L 107.15535,475.19096 L 107.15535,500.4059 C 112.26473,496.31845 118.21719,494.27469 125.01274,494.27461 C 129.25351,494.27469 133.12389,495.09219 136.62388,496.72713 C 140.12377,498.36221 142.89563,500.27824 144.93945,502.47522 C 148.00503,505.7964 150.2404,509.4113 151.64555,513.31994 C 153.05057,517.2287 153.75312,523.80706 153.75319,533.05505 C 153.75312,540.56591 153.20385,546.14794 152.1054,549.80114 C 151.00681,553.45439 149.25684,556.81383 146.85548,559.87946 C 144.55618,562.79183 141.33726,565.49982 137.19869,568.00342 C 133.06002,570.50704 128.20608,571.75884 122.63687,571.75884 C 115.43256,571.75884 108.48377,569.53625 101.79047,565.09106 C 95.09713,560.64588 91.16288,553.21169 89.98772,542.78848 L 106.00573,542.78848 C 107.89619,551.4745 113.23552,555.81749 122.02374,555.81748 C 129.84109,555.81749 134.41401,553.13505 135.74251,547.77015 C 137.0709,542.4053 137.73513,537.09151 137.73518,531.82879 C 137.73513,525.64644 136.6877,520.51149 134.59289,516.42391 C 132.49798,512.33644 128.15499,510.29268 121.56389,510.29262 C 115.38147,510.29268 110.57863,513.38387 107.15535,519.5662 L 92.05704,519.5662 z "
+       style="font-size:156.96113586px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:center;text-decoration:none;line-height:100%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:middle;color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:DIN 1451 Mittelschrift"
+       id="text3366" />
+    <path
+       d="M 198.49086,471.73665 L 198.49086,441.68849 L 218.42757,441.68849 L 218.42757,471.73665 L 232.927,471.73665 L 232.927,486.9992 L 218.42757,486.9992 L 218.42757,544.61535 C 218.42754,549.5757 220.78052,552.05586 225.48651,552.05584 L 232.927,552.05584 L 232.927,570.75247 L 222.52939,570.75247 C 215.59761,570.75247 209.85826,568.65387 205.31132,564.45667 C 200.76433,560.25948 198.49085,554.24985 198.49086,546.42778 L 198.49086,486.9992 L 188.5702,486.9992 L 188.5702,471.73665 L 198.49086,471.73665 z "
+       style="font-size:195.36070251px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:center;text-decoration:none;line-height:100%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:middle;color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:DIN 1451 Mittelschrift"
+       id="text3370" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1052-36.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1052-36.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1052-36.svg	(revision 21967)
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="490"
+   height="490"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 38.781255,9.665355 C 20.356895,9.665345 9.968755,19.290965 9.968755,47.730255 L 9.656255,442.26975 C 9.656255,470.70902 20.044395,480.33465 38.468755,480.33465 L 451.21875,480.29249 C 469.6431,480.29249 480.03124,470.66687 480.03125,442.2276 L 480.34375,47.772405 C 480.34375,19.333125 469.9556,9.707495 451.53125,9.707515 L 38.781255,9.665355 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 453.23342,24.769243 L 36.797822,24.812153 C 28.375507,24.812153 23.425893,33.050693 23.425893,45.233473 L 23.425893,444.80943 C 23.425893,456.99217 28.375517,465.23076 36.797822,465.23076 L 453.20218,465.18785 C 461.62449,465.18784 466.57411,456.94929 466.57411,444.76653 L 466.57411,45.190573 C 466.57411,33.007793 461.65573,24.769243 453.23342,24.769243 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="translate(-82.2419,-339.9924)"
+     id="g1905">
+    <path
+       d="M 202.8033,651.98188 C 202.1743,605.61348 199.65815,645.51187 227.60501,576.76802 C 247.82379,530.04018 227.33543,542.62074 331.93391,540.91338 C 425.03014,542.80047 406.24915,529.32129 427.63612,578.92469 C 454.41477,642.45659 452.34797,609.20792 452.16825,650.63396 C 451.17977,696.10375 467.98383,684.42178 327.0814,685.94942 C 187.25731,684.06234 203.79175,695.92402 202.8033,651.98188 z M 231.10959,607.23098 L 250.25004,563.01925 C 253.82119,555.16582 252.68184,556.32514 261.03339,556.27966 L 394.85342,556.26524 C 402.09778,556.29186 401.03498,555.82147 404.01925,562.73525 L 423.0532,606.69181 L 231.10959,607.23098 z M 217.42074,691.02159 L 253.21546,690.94171 C 253.10563,735.88232 256.82988,733.37619 237.31002,733.66574 C 214.06591,733.57588 217.74025,735.92226 217.42074,691.02159 z M 401.75609,691.3411 L 437.61072,691.3411 C 437.37109,736.35159 440.64603,733.27634 420.35736,733.39616 C 399.37975,733.11659 402.04563,736.43147 401.75609,691.3411 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       id="Car" />
+    <path
+       d="M 190.30768,729.18441 C 181.02903,729.20372 174.18448,731.74585 167.45411,734.71566 L 167.14735,750.02816 C 180.39679,745.51715 193.72552,741.07975 215.46195,750.02816 C 228.48004,753.77242 241.35742,757.83586 259.40523,750.02816 C 275.17283,743.76846 291.42359,740.36591 309.98218,750.02816 C 322.3961,754.44907 335.2037,757.84334 352.46835,750.02816 C 360.27048,747.15739 368.09496,745.26554 375.89709,744.87191 C 382.75832,744.84573 390.4969,746.20406 399.78598,750.02816 C 412.80408,753.77242 425.68143,757.83586 443.72925,750.02816 C 457.66069,744.49741 471.99924,741.19712 487.95059,747.168 C 487.95059,747.168 488.76412,732.93914 488.76412,732.93914 C 473.4098,727.43504 459.0164,729.05589 445.18636,734.71566 C 430.13888,739.92898 415.86454,739.59517 402.20171,734.84066 L 402.20171,734.71566 C 401.0585,734.36455 399.95131,734.04771 398.82735,733.71566 C 375.13299,725.8483 363.30339,729.64699 351.81648,734.71566 L 351.81648,734.93441 C 336.99331,738.80693 321.8779,740.1195 308.83183,734.71566 C 291.80446,727.16206 275.97612,728.51484 260.82399,734.71566 C 245.63751,739.97714 231.23349,739.59657 217.45589,734.71566 C 206.19816,730.67782 197.52441,729.16939 190.30768,729.18441 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5597" />
+    <path
+       d="M 188.9727,753.30988 C 179.65692,753.32919 172.78498,755.87132 166.02767,758.84113 L 165.71968,774.15363 C 179.02214,769.64262 192.40422,765.20522 214.22763,774.15363 C 227.29782,777.89789 240.22674,781.96133 258.34677,774.15363 C 274.17747,767.89393 290.49327,764.49138 309.12613,774.15363 C 321.58973,778.57454 334.44858,781.96881 351.78233,774.15363 C 359.61568,771.28286 367.47148,769.39101 375.30483,768.99738 C 382.19352,768.9712 389.96307,770.32953 399.28932,774.15363 C 412.35951,777.89789 425.2884,781.96133 443.40846,774.15363 C 457.33588,768.64652 471.66854,765.35084 487.60152,771.21743 C 487.60152,771.21743 488.26199,756.93676 488.26199,756.93676 C 472.98175,751.58611 458.64816,753.22563 444.87139,758.84113 C 429.7637,764.05445 415.43222,763.72064 401.71472,758.96613 L 401.71472,758.84113 C 400.56694,758.49002 399.45531,758.17318 398.32686,757.84113 C 374.53767,749.97377 362.66073,753.77246 351.12785,758.84113 L 351.12785,759.05988 C 336.24535,762.9324 321.06946,764.24497 307.97117,758.84113 C 290.87565,751.28753 274.98398,752.64031 259.77121,758.84113 C 244.52396,764.10261 230.06229,763.72204 216.22955,758.84113 C 204.92677,754.80329 196.2183,753.29486 188.9727,753.30988 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5633" />
+    <path
+       d="M 289.74471,438.80382 L 289.74471,391.15741 L 296.57937,391.15741 L 296.57937,408.48932 C 297.84383,407.29029 299.17914,406.32014 300.58533,405.57887 C 301.99149,404.83766 303.57752,404.46704 305.34343,404.46701 C 307.41452,404.46704 309.20221,404.88672 310.70652,405.72603 C 312.21077,406.5654 313.45343,407.61731 314.43451,408.88174 C 315.37193,410.10264 316.00961,411.52516 316.34756,413.14932 C 316.68545,414.77353 316.85441,417.65673 316.85444,421.79892 C 316.85441,425.98476 316.68545,428.90066 316.34756,430.54663 C 316.00961,432.19263 315.37193,433.61515 314.43451,434.81421 C 313.45343,436.10048 312.21077,437.15238 310.70652,437.96993 C 309.20221,438.78747 307.41452,439.19624 305.34343,439.19624 C 301.85523,439.19624 298.93388,437.88817 296.57937,435.27203 L 296.57937,438.80382 L 289.74471,438.80382 z M 303.28323,411.30167 C 300.07844,411.3017 298.15994,412.44626 297.52772,414.73535 C 296.89548,417.02449 296.57936,419.37902 296.57937,421.79892 C 296.57936,424.28427 296.89548,426.67149 297.52772,428.9606 C 298.15994,431.24973 300.07844,432.39429 303.28323,432.39428 C 306.48797,432.39429 308.41192,431.29333 309.05508,429.09141 C 309.69819,426.8895 310.01976,424.45868 310.01978,421.79892 C 310.01976,419.20461 309.69819,416.80648 309.05508,414.60454 C 308.41192,412.40265 306.48797,411.3017 303.28323,411.30167 L 303.28323,411.30167 z M 350.83153,424.41506 L 329.70622,424.41506 C 329.70621,427.20562 330.4638,429.29853 331.97899,430.69379 C 333.49415,432.08907 335.429,432.78671 337.78354,432.7867 C 340.59587,432.78671 343.0812,431.69665 345.23953,429.51653 L 350.17749,433.73505 C 348.49878,435.69716 346.60753,437.09788 344.50375,437.93722 C 342.39991,438.77657 340.20345,439.19624 337.91435,439.19624 C 334.42615,439.19624 331.04698,438.06803 327.77681,435.81161 C 324.50664,433.5552 322.87155,428.93881 322.87156,421.96243 C 322.87155,415.35671 324.38128,410.78937 327.40074,408.26041 C 330.42019,405.73151 333.57591,404.46704 336.86789,404.46701 C 340.59587,404.46704 343.85514,405.75876 346.64571,408.34216 C 349.43623,410.92563 350.8315,414.40836 350.83153,418.79037 L 350.83153,424.41506 z M 329.70622,418.79037 L 344.02957,418.79037 C 343.92054,416.23965 343.2011,414.28845 341.87126,412.93676 C 340.54137,411.58511 338.87358,410.90928 336.86789,410.90925 C 334.84037,410.90928 333.15623,411.58511 331.81548,412.93676 C 330.4747,414.28845 329.77161,416.23965 329.70622,418.79037 L 329.70622,418.79037 z M 358.22212,438.80382 L 358.22212,404.85943 L 365.05678,404.85943 L 365.05678,438.80382 L 358.22212,438.80382 z M 358.22212,397.99207 L 358.22212,391.15741 L 365.05678,391.15741 L 365.05678,397.99207 L 358.22212,397.99207 z "
+       style="font-size:66.97312927px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       id="text1944" />
+    <path
+       d="M 210.59909,518.40083 L 210.59909,452.66888 L 220.02803,452.66888 L 249.75854,499.40759 L 249.939,499.40759 L 249.939,452.66888 L 259.95444,452.66888 L 259.95444,518.40083 L 250.52549,518.40083 L 220.79498,471.66212 L 220.56941,471.66212 L 220.56941,518.40083 L 210.59909,518.40083 z M 297.53488,518.40083 L 297.53488,514.25029 L 297.30931,514.25029 C 295.41447,517.37823 291.5647,518.9422 285.75998,518.9422 C 280.52667,518.9422 276.46636,517.58125 273.57904,514.85933 C 270.6917,512.13743 269.24804,508.73128 269.24804,504.64088 C 269.24804,500.9415 270.52628,497.70829 273.08278,494.94125 C 275.63926,492.17424 279.44392,490.79073 284.49677,490.7907 L 297.53488,490.7907 L 297.53488,485.91833 C 297.53485,481.91821 294.33172,479.91813 287.92548,479.91809 C 283.47416,479.91813 280.51163,481.10614 279.0379,483.48214 L 271.63911,477.88793 C 274.91743,473.31637 280.18079,471.03057 287.42922,471.03052 C 293.20386,471.03057 297.89577,472.15843 301.50497,474.41411 C 305.11409,476.66988 306.91868,480.68508 306.91872,486.4597 L 306.91872,518.40083 L 297.53488,518.40083 z M 297.53488,501.97912 L 297.53488,498.55041 L 286.25624,498.55041 C 280.8124,498.55043 278.09049,500.4302 278.0905,504.18973 C 278.09049,505.7838 278.77472,507.16731 280.14321,508.34028 C 281.51167,509.51326 283.78996,510.09975 286.97807,510.09974 C 290.88798,510.09975 293.62493,509.66365 295.18892,508.79142 C 296.75287,507.91922 297.53485,505.64845 297.53488,501.97912 L 297.53488,501.97912 z M 293.06854,464.30845 L 293.06854,454.33812 L 303.03886,454.33812 L 303.03886,464.30845 L 293.06854,464.30845 z M 276.82729,464.30845 L 276.82729,454.33812 L 286.79761,454.33812 L 286.79761,464.30845 L 276.82729,464.30845 z M 313.95659,510.59601 L 320.54332,504.09951 C 324.6337,508.09968 329.55118,510.09975 335.29579,510.09974 C 337.97256,510.09975 340.18317,509.59597 341.92763,508.58841 C 343.67203,507.58086 344.54424,506.08456 344.54428,504.09951 C 344.54424,501.36257 342.6344,499.82868 338.81472,499.49782 L 330.51364,498.73087 C 326.63377,498.43013 323.4156,497.15188 320.85912,494.89613 C 318.30262,492.64043 317.02438,489.49745 317.02438,485.46718 C 317.02438,480.71515 318.69362,477.12103 322.0321,474.6848 C 325.37057,472.24866 329.5211,471.03057 334.48372,471.03052 C 338.57409,471.03057 342.07798,471.60954 344.99542,472.76743 C 347.9128,473.92541 350.52944,475.46683 352.84536,477.39167 L 347.02558,484.24909 C 345.16081,482.98592 343.23592,481.94828 341.25091,481.13618 C 339.26584,480.32416 337.01012,479.91813 334.48372,479.91809 C 331.47607,479.91813 329.38576,480.45198 328.2128,481.51966 C 327.0398,482.58741 326.45332,483.93332 326.45333,485.55741 C 326.45332,486.58004 326.88942,487.52745 327.76165,488.39963 C 328.63385,489.27188 330.25797,489.79821 332.63403,489.97864 L 340.39373,490.52002 C 345.236,490.85088 348.70982,492.34718 350.8152,495.00892 C 352.92051,497.6707 353.97318,500.85127 353.97322,504.55065 C 353.97318,509.15235 352.09341,512.70136 348.3339,515.19769 C 344.57432,517.69403 339.98768,518.9422 334.57395,518.9422 C 326.78416,518.9422 319.91171,516.16014 313.95659,510.59601 L 313.95659,510.59601 z M 358.34934,510.59601 L 364.93607,504.09951 C 369.02644,508.09968 373.94393,510.09975 379.68853,510.09974 C 382.36531,510.09975 384.57592,509.59597 386.32038,508.58841 C 388.06478,507.58086 388.93699,506.08456 388.93702,504.09951 C 388.93699,501.36257 387.02714,499.82868 383.20747,499.49782 L 374.90639,498.73087 C 371.02652,498.43013 367.80835,497.15188 365.25187,494.89613 C 362.69537,492.64043 361.41712,489.49745 361.41713,485.46718 C 361.41712,480.71515 363.08636,477.12103 366.42485,474.6848 C 369.76331,472.24866 373.91385,471.03057 378.87647,471.03052 C 382.96683,471.03057 386.47073,471.60954 389.38817,472.76743 C 392.30554,473.92541 394.92219,475.46683 397.2381,477.39167 L 391.41832,484.24909 C 389.55356,482.98592 387.62867,481.94828 385.64366,481.13618 C 383.65859,480.32416 381.40286,479.91813 378.87647,479.91809 C 375.86881,479.91813 373.77851,480.45198 372.60554,481.51966 C 371.43255,482.58741 370.84606,483.93332 370.84608,485.55741 C 370.84606,486.58004 371.28217,487.52745 372.1544,488.39963 C 373.0266,489.27188 374.65072,489.79821 377.02677,489.97864 L 384.78648,490.52002 C 389.62875,490.85088 393.10257,492.34718 395.20795,495.00892 C 397.31326,497.6707 398.36593,500.85127 398.36597,504.55065 C 398.36593,509.15235 396.48616,512.70136 392.72665,515.19769 C 388.96707,517.69403 384.38042,518.9422 378.9667,518.9422 C 371.1769,518.9422 364.30445,516.16014 358.34934,510.59601 L 358.34934,510.59601 z M 444.20238,498.55041 L 415.05836,498.55041 C 415.05835,502.40021 416.1035,505.28754 418.19383,507.21241 C 420.28412,509.13731 422.95339,510.09975 426.20166,510.09974 C 430.08149,510.09975 433.51019,508.59594 436.48779,505.58829 L 443.30009,511.40807 C 440.98417,514.11495 438.37505,516.04735 435.47271,517.20529 C 432.57031,518.36323 429.54012,518.9422 426.38212,518.9422 C 421.56988,518.9422 416.90805,517.38575 412.3966,514.27284 C 407.88514,511.15994 405.62941,504.79128 405.62942,495.16682 C 405.62941,486.05371 407.7122,479.75271 411.87778,476.26381 C 416.04335,472.77499 420.3969,471.03057 424.93846,471.03052 C 430.08149,471.03057 434.57791,472.81259 438.42772,476.3766 C 442.27745,479.94069 444.20234,484.74538 444.20238,490.7907 L 444.20238,498.55041 z M 415.05836,490.7907 L 434.81855,490.7907 C 434.66813,487.2718 433.67561,484.57996 431.84099,482.71519 C 430.0063,480.8505 427.70546,479.91813 424.93846,479.91809 C 422.14133,479.91813 419.81793,480.8505 417.96825,482.71519 C 416.11854,484.57996 415.14858,487.2718 415.05836,490.7907 L 415.05836,490.7907 z "
+       style="font-size:92.39466095px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+       id="text1948" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_1060-11.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_1060-11.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_1060-11.svg	(revision 21967)
@@ -0,0 +1,81 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="270"
+   height="490"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 265.01563,38.781253 C 265.01563,20.356892 257.87984,9.96875 236.79688,9.96875 L 33.20312,9.65625 C 12.12016,9.65625 4.98437,20.044394 4.98437,38.468753 L 5.01562,451.21875 C 5.01562,469.64311 12.15141,480.03124 33.23437,480.03125 L 236.76563,480.34375 C 257.84859,480.34375 264.98438,469.95561 264.98438,451.53125 L 265.01563,38.781253 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 252.21875,453.28125 L 252.1875,36.750002 C 252.1875,28.325751 246.18649,23.375002 237.3125,23.375002 L 32.656245,23.375002 C 23.782275,23.375001 17.781245,28.325762 17.781245,36.750002 L 17.812495,453.25 C 17.812505,461.67424 23.813515,466.625 32.687495,466.625 L 237.34375,466.625 C 246.21774,466.625 252.21875,461.70549 252.21875,453.28125 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.05090809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3976" />
+  <g
+     transform="translate(415.4301,-151.0867)"
+     id="g3964">
+    <text
+       x="-278.86829"
+       y="285.59491"
+       style="font-size:80.97670746px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:center;text-decoration:none;line-height:100%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:middle;color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:DIN 1451 Mittelschrift"
+       id="text3938"
+       xml:space="preserve"><tspan
+         x="-278.86829"
+         y="285.59491"
+         id="tspan2011">auch</tspan></text>
+    <g
+       transform="matrix(0.258565,0,0,0.258565,-368.3181,466.8852)"
+       id="layer1">
+      <path
+         d="M 136.75462,282.03583 C 136.75462,357.06643 75.930301,417.89075 0.8997,417.89075 C -74.130901,417.89075 -134.95522,357.06643 -134.95522,282.03583 C -134.95522,207.00523 -74.130901,146.18091 0.8997,146.18091 C 75.930301,146.18091 136.75462,207.00523 136.75462,282.03583 z "
+         transform="matrix(0.74724,0,0,0.74724,122.5869,48.79482)"
+         style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:39.38558578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path15475" />
+      <path
+         d="M 648.90867,96.718727 L 435.78671,96.718727 C 427.74779,99.838733 421.99999,104.94437 426.56202,118.9852 L 481.59203,154.61156 C 505.09805,136.98259 529.46933,134.06306 553.79902,130.43653 L 649.54486,130.11844 L 648.90867,96.718727 z "
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path12814" />
+      <path
+         d="M 582.93177,285.852 L 361.08955,285.58848 C 314.75731,284.17925 288.28246,245.79634 259.51124,204.2434 C 209.17953,131.55162 201.92686,130.76936 191.60083,97.014213 L 265.47547,97.091396 C 270.39789,98.590741 275.32031,99.325646 280.24273,105.42207 L 324.71097,168.71896 C 328.41656,184.39886 325.34225,197.06215 321.45561,210.49425 C 316.96787,226.00375 334.80258,253.63393 362.62544,252.50687 L 583.4588,239.59683 L 582.93177,285.852 z "
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path13701" />
+      <path
+         d="M 108.60035,251.76407 C 110.39975,246.36586 194.33551,41.815551 194.33551,41.815551 C 204.53449,23.526361 218.83992,13.450051 237.52117,12.125404 L 295.10207,12.125404 L 294.78398,45.941389 L 239.266,45.941389 C 232.48018,45.301217 227.37783,49.579445 223.12595,61.608982 L 139.45372,265.8412 C 131.31921,284.84108 100.39972,278.15819 108.60035,251.76407 z "
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path14588" />
+      <path
+         d="M 136.75462,282.03583 C 136.75462,357.06643 75.930301,417.89075 0.8997,417.89075 C -74.130901,417.89075 -134.95522,357.06643 -134.95522,282.03583 C -134.95522,207.00523 -74.130901,146.18091 0.8997,146.18091 C 75.930301,146.18091 136.75462,207.00523 136.75462,282.03583 z "
+         transform="matrix(0.74724,0,0,0.74724,555.8824,49.18351)"
+         style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:39.38558578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path17247" />
+    </g>
+    <g
+       transform="matrix(0.465701,0,0,0.465701,-149.3182,199.3676)"
+       id="g2991">
+      <circle
+         cx="215"
+         cy="409"
+         r="161"
+         transform="matrix(0.404263,0,0,0.404263,-484.6788,259.9212)"
+         style="fill:none;stroke:black;stroke-width:40px;stroke-opacity:1"
+         id="circle11777" />
+      <circle
+         cx="790"
+         cy="406"
+         r="161"
+         transform="matrix(0.404263,0,0,0.404263,-484.6788,259.9212)"
+         style="fill:none;stroke:black;stroke-width:40px;stroke-opacity:1"
+         id="circle11779" />
+      <path
+         d="M -311.05416,266.17397 C -364.64588,266.69631 -355.55723,260.63721 -384.3902,353.2997 C -407.87889,427.33695 -405.32041,419.26292 -405.44325,424.45623 C -405.52934,428.49086 -402.27248,431.68976 -398.17988,431.96357 C -389.66869,431.10299 -393.24869,432.88407 -363.7405,341.25114 C -255.91865,454.9928 -296.3707,436.54852 -238.34492,438.85841 C -162.0838,438.12714 -155.88541,442.82817 -154.98002,431.65016 C -155.08449,427.85452 -156.86043,425.59106 -209.19855,309.11003 L -204.18412,295.32035 L -186.94702,295.00695 L -187.57382,280.59046 L -251.82121,280.59046 C -257.49726,288.35586 -249.52292,288.32104 -220.79442,294.69354 L -225.80885,308.79663 L -353.99022,309.11003 C -345.35425,278.95381 -350.2294,280.83422 -311.36756,280.90386 L -311.05416,266.17397 z M -357.69407,324.56693 L -232.26607,324.34455 L -268.51565,421.7514 L -357.69407,324.56693 z M -217.14355,330.34908 L -252.72596,423.75291 L -174.88944,423.9753 L -217.14355,330.34908 z "
+         style="fill:black;fill-rule:evenodd;stroke:white;stroke-opacity:1"
+         id="path11781" />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_108.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_108.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_108.svg	(revision 21967)
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="753.12"
+   height="671.52002"
+   id="svg2">
+  <defs
+     id="defs11" />
+  <g
+     transform="matrix(1.093542,0,0,1.093542,-35.22419,-31.40766)"
+     id="g1885">
+    <path
+       d="M 71.985614,631.52918 C 60.553114,631.52918 49.989054,625.43 44.272794,615.52918 C 38.556554,605.62833 38.556554,593.43 44.272794,583.52918 L 348.84719,55.99085 C 354.56345,46.09002 365.12751,39.99084 376.56,39.99084 C 387.99251,39.99084 398.55659,46.09002 404.27283,55.99085 L 708.84723,583.52918 C 714.56347,593.43 714.56347,605.62833 708.84723,615.52918 C 703.13097,625.42999 692.56691,631.52918 681.13441,631.52918 L 71.985614,631.52918 z "
+       style="fill:white;fill-rule:evenodd;stroke:black;stroke-width:2"
+       id="path6" />
+    <path
+       d="M 71.985614,619.52918 C 64.840294,619.52918 58.237754,615.7172 54.665094,609.52918 C 51.092454,603.34114 51.092454,595.7172 54.665094,589.52918 L 359.23951,61.99086 C 362.81215,55.80282 369.41471,51.99084 376.56,51.99084 C 383.70533,51.99084 390.30787,55.80282 393.88053,61.99086 L 698.45493,589.52918 C 702.02757,595.7172 702.02757,603.34114 698.45493,609.52918 C 694.88227,615.7172 688.27973,619.52918 681.13441,619.52918 L 71.985614,619.52918 z M 141.2677,559.52918 L 376.56,151.99085 L 611.85233,559.52918 L 141.2677,559.52918 z "
+       style="fill:#c00;fill-rule:evenodd;stroke:none"
+       id="path8" />
+  </g>
+  <path
+     d="M 621.42918,575.26863 L 132.6698,575.26863 L 254.41125,361.49316 L 621.42918,575.26863 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1889" />
+  <path
+     d="M 300.52196,366.70999 L 313.7435,374.21411 L 359.84021,292.74085 L 348.04803,286.30875 L 329.82375,288.09545 L 323.74899,300.95965 L 339.82923,299.17295 L 300.52196,366.70999 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1924" />
+  <path
+     d="M 341.97846,364.07738 C 342.94987,361.22477 358.17436,336.29245 366.27231,322.39998 C 389.67608,296.51324 421.76176,322.52884 413.79837,344.91232 C 404.88255,360.93596 388.62318,390.75722 387.05092,392.98323 C 367.07565,412.13513 334.35532,396.45352 341.97846,364.07738 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1926" />
+  <path
+     d="M 355.54062,369.57254 L 377.857,330.85699 C 387.78669,322.26774 402.79184,326.85869 399.83526,343.70582 L 377.68794,382.59044 C 368.83812,391.99408 352.4715,388.41701 355.54062,369.57254 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1928" />
+  <path
+     d="M 397.63744,422.65849 C 398.65182,424.34913 406.42874,428.40665 406.42874,428.40665 L 491.29864,368.22004 L 482.1692,363.48626 L 397.63744,422.65849 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1930" />
+  <path
+     d="M 432.20656,362.66837 L 441.39368,347.57404 C 453.98635,340.15568 464.67958,351.9012 461.29056,360.44967 L 451.90427,376.56979 C 442.59582,385.52154 429.54058,376.33045 432.20656,362.66837 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1938" />
+  <path
+     d="M 439.29457,366.6592 L 446.15931,354.42365 C 450.38515,351.14333 455.12562,352.73213 453.86737,359.16622 L 447.15685,370.97271 C 443.39058,374.56406 437.98843,373.85609 439.29457,366.6592 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1940" />
+  <path
+     d="M 428.57765,428.98908 L 437.76477,413.89475 C 450.35744,406.47639 461.05066,418.22191 457.66165,426.77038 L 448.27535,442.8905 C 438.96691,451.84225 425.91166,442.65116 428.57765,428.98908 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1950" />
+  <path
+     d="M 435.66566,432.97991 L 442.5304,420.74436 C 446.75624,417.46404 451.49671,419.05284 450.23845,425.48693 L 443.52794,437.29342 C 439.76166,440.88477 434.35951,440.1768 435.66566,432.97991 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1952" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_110.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_110.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_110.svg	(revision 21967)
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="753.12"
+   height="671.52002"
+   id="svg2">
+  <defs
+     id="defs11" />
+  <g
+     transform="matrix(1.093542,0,0,1.093542,-35.22419,-31.40766)"
+     id="g1885">
+    <path
+       d="M 71.985614,631.52918 C 60.553114,631.52918 49.989054,625.43 44.272794,615.52918 C 38.556554,605.62833 38.556554,593.43 44.272794,583.52918 L 348.84719,55.99085 C 354.56345,46.09002 365.12751,39.99084 376.56,39.99084 C 387.99251,39.99084 398.55659,46.09002 404.27283,55.99085 L 708.84723,583.52918 C 714.56347,593.43 714.56347,605.62833 708.84723,615.52918 C 703.13097,625.42999 692.56691,631.52918 681.13441,631.52918 L 71.985614,631.52918 z "
+       style="fill:white;fill-rule:evenodd;stroke:black;stroke-width:2"
+       id="path6" />
+    <path
+       d="M 71.985614,619.52918 C 64.840294,619.52918 58.237754,615.7172 54.665094,609.52918 C 51.092454,603.34114 51.092454,595.7172 54.665094,589.52918 L 359.23951,61.99086 C 362.81215,55.80282 369.41471,51.99084 376.56,51.99084 C 383.70533,51.99084 390.30787,55.80282 393.88053,61.99086 L 698.45493,589.52918 C 702.02757,595.7172 702.02757,603.34114 698.45493,609.52918 C 694.88227,615.7172 688.27973,619.52918 681.13441,619.52918 L 71.985614,619.52918 z M 141.2677,559.52918 L 376.56,151.99085 L 611.85233,559.52918 L 141.2677,559.52918 z "
+       style="fill:#c00;fill-rule:evenodd;stroke:none"
+       id="path8" />
+  </g>
+  <path
+     d="M 129.6312,573.29175 L 499.06867,361.33541 L 623.16406,573.34101 L 129.6312,573.29175 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1891" />
+  <path
+     d="M 318.00677,442.749 L 331.20052,435.19613 L 284.58474,354.01875 L 273.04171,360.88795 L 265.29317,377.47942 L 273.26687,389.26121 L 279.92295,374.51458 L 318.00677,442.749 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1924" />
+  <path
+     d="M 396.16128,398.38192 L 349.52795,425.02954 L 342.86604,415.25874 L 351.74858,350.4162 C 337.57861,328.27775 319.56909,350.68292 327.83381,361.34231 L 315.40636,367.23915 C 299.87049,330.7665 347.10255,310.776 364.79453,344.53558 C 366.02996,348.57885 365.64041,353.48807 364.9507,359.36101 C 364.58041,362.51407 359.69307,390.24115 358.09644,404.54581 L 388.97443,386.30967 L 396.16128,398.38192 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1906" />
+  <g
+     transform="matrix(0.528144,-0.849155,0.849155,0.528144,-153.8313,501.9049)"
+     id="g1893">
+    <path
+       d="M 397.63744,422.65849 C 398.65182,424.34913 406.42874,428.40665 406.42874,428.40665 L 491.29864,368.22004 L 482.1692,363.48626 L 397.63744,422.65849 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1930" />
+    <path
+       d="M 432.20656,362.66837 L 441.39368,347.57404 C 453.98635,340.15568 464.67958,351.9012 461.29056,360.44967 L 451.90427,376.56979 C 442.59582,385.52154 429.54058,376.33045 432.20656,362.66837 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1938" />
+    <path
+       d="M 439.29457,366.6592 L 446.15931,354.42365 C 450.38515,351.14333 455.12562,352.73213 453.86737,359.16622 L 447.15685,370.97271 C 443.39058,374.56406 437.98843,373.85609 439.29457,366.6592 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1940" />
+    <path
+       d="M 428.57765,428.98908 L 437.76477,413.89475 C 450.35744,406.47639 461.05066,418.22191 457.66165,426.77038 L 448.27535,442.8905 C 438.96691,451.84225 425.91166,442.65116 428.57765,428.98908 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1950" />
+    <path
+       d="M 435.66566,432.97991 L 442.5304,420.74436 C 446.75624,417.46404 451.49671,419.05284 450.23845,425.48693 L 443.52794,437.29342 C 439.76166,440.88477 434.35951,440.1768 435.66566,432.97991 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1952" />
+  </g>
+</svg>
+
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_206.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_206.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_206.svg	(revision 21967)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="600"
+   height="600"
+   id="svg1931">
+  <defs
+     id="defs1933" />
+  <g
+     id="layer1">
+    <g
+       transform="matrix(1.024827,0,0,1.024827,2.800107,-162.1289)"
+       id="g3715">
+      <path
+         d="M 181.10184,743.44678 L 179.34895,743.44678 L 176.2814,743.00855 L 172.77562,742.13211 L 169.70807,741.25567 L 166.64052,739.941 L 164.01118,738.18811 L 161.38185,735.997 L 4.9366117,579.55176 L 2.7455019,576.92243 L 0.99261404,574.2931 L -0.32205186,571.22554 L -2.0749397,565.09044 L -2.5131617,561.58466 L -2.5131617,340.28257 L -2.0749397,337.21501 L -1.1984958,333.70924 L -0.32205186,330.64168 L 0.99261404,328.01235 L 2.7455019,324.9448 L 4.9366117,322.31547 L 6.2512776,321.44633 L 160.50541,167.19219 L 161.38185,165.87753 L 166.64052,162.37175 L 169.70807,160.61886 L 172.77562,159.74242 L 176.2814,158.86598 L 179.34895,158.42775 L 400.65105,158.42775 L 403.7186,158.86598 L 407.22438,159.74242 L 410.29193,160.61886 L 412.92126,162.37175 L 415.98881,164.12464 L 418.61815,165.87753 L 419.49459,167.19219 L 573.74872,321.44633 L 575.06339,322.31547 L 577.2545,324.9448 L 579.00739,328.01235 L 580.32205,330.64168 L 581.1985,333.70924 L 582.06764,337.21501 L 582.50586,340.28257 L 582.50586,561.58466 L 582.06764,565.09044 L 580.32205,571.22554 L 579.00739,574.2931 L 577.2545,576.92243 L 575.06339,579.55176 L 418.61815,735.997 L 415.98881,738.18811 L 412.92126,739.941 L 410.29193,741.25567 L 407.22438,742.13211 L 403.7186,743.00855 L 400.65105,743.44678 L 181.10184,743.44678"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         id="path32" />
+      <path
+         d="M 181.10184,743.44678 L 179.34895,743.44678 M 179.34895,743.44678 L 176.2814,743.00855 M 176.2814,743.00855 L 172.77562,742.13211 M 172.77562,742.13211 L 169.70807,741.25567 M 169.70807,741.25567 L 166.64052,739.941 M 166.64052,739.941 L 164.01118,738.18811 M 164.01118,738.18811 L 161.38185,735.997 M 161.38185,735.997 L 160.50541,735.12056 L 6.2512776,580.86643 L 4.9366117,579.55176 M 4.9366117,579.55176 L 2.7455019,576.92243 M 2.7455019,576.92243 L 0.99261404,574.2931 M 0.99261404,574.2931 L -0.32205186,571.22554 M -0.32205186,571.22554 L -1.1984958,568.15799 L -2.0749397,565.09044 M -2.0749397,565.09044 L -2.5131617,561.58466 M -2.5131617,561.58466 L -2.5131617,559.83177 L -2.5131617,342.03545 L -2.5131617,340.28257 M -2.5131617,340.28257 L -2.0749397,337.21501 M -2.0749397,337.21501 L -1.1984958,333.70924 M -1.1984958,333.70924 L -0.32205186,330.64168 M -0.32205186,330.64168 L 0.99261404,328.01235 M 0.99261404,328.01235 L 2.7455019,324.9448 M 2.7455019,324.9448 L 4.9366117,322.31547 M 4.9366117,322.31547 L 6.2512776,321.43902 M 6.2512776,321.43902 L 160.50541,167.18489 M 160.50541,167.18489 L 161.38185,165.87022 M 161.38185,165.87022 L 164.01118,164.11734 L 166.64052,162.36445 M 166.64052,162.36445 L 169.70807,160.61156 M 169.70807,160.61156 L 172.77562,159.73512 M 172.77562,159.73512 L 176.2814,158.85867 M 176.2814,158.85867 L 179.34895,158.42045 M 179.34895,158.42045 L 181.10184,158.42045 L 398.89816,158.42045 L 400.65105,158.42045 M 400.65105,158.42045 L 403.7186,158.85867 M 403.7186,158.85867 L 407.22438,159.73512 M 407.22438,159.73512 L 410.29193,160.61156 M 410.29193,160.61156 L 412.92126,162.36445 M 412.92126,162.36445 L 415.98881,164.11734 M 415.98881,164.11734 L 418.61815,165.87022 M 418.61815,165.87022 L 419.49459,167.18489 M 419.49459,167.18489 L 573.74872,321.43902 M 573.74872,321.43902 L 575.06339,322.31547 M 575.06339,322.31547 L 577.2545,324.9448 M 577.2545,324.9448 L 579.00739,328.01235 M 579.00739,328.01235 L 580.32205,330.64168 M 580.32205,330.64168 L 581.1985,333.70924 M 581.1985,333.70924 L 582.07494,337.21501 M 582.07494,337.21501 L 582.51316,340.28257 M 582.51316,340.28257 L 582.51316,342.03545 L 582.51316,559.83177 L 582.51316,561.58466 M 582.51316,561.58466 L 582.07494,565.09044 M 582.07494,565.09044 L 581.1985,568.15799 L 580.32205,571.22554 M 580.32205,571.22554 L 579.00739,574.2931 M 579.00739,574.2931 L 577.2545,576.92243 M 577.2545,576.92243 L 575.06339,579.55176 M 575.06339,579.55176 L 573.74872,580.86643 L 419.49459,735.12056 L 418.61815,735.997 M 418.61815,735.997 L 415.98881,738.18811 M 415.98881,738.18811 L 412.92126,739.941 M 412.92126,739.941 L 410.29193,741.25567 M 410.29193,741.25567 L 407.22438,742.13211 M 407.22438,742.13211 L 403.7186,743.00855 M 403.7186,743.00855 L 400.65105,743.44678 M 400.65105,743.44678 L 398.89816,743.44678 M 398.89816,743.44678 L 181.10184,743.44678"
+         style="stroke:black;stroke-width:0.43822196;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         id="path34" />
+      <path
+         d="M 181.10184,714.0859 L 26.84771,559.83177 L 26.84771,342.03545 L 181.10184,187.78132 L 398.89816,187.78132 L 553.15229,342.03545 L 553.15229,559.83177 L 398.89816,714.0859 L 181.10184,714.0859"
+         style="fill:#c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         id="path36" />
+      <path
+         d="M 66.287687,494.97492 L 95.210336,494.97492 C 91.711865,515.23538 104.70515,531.59567 125.44765,524.33579 C 132.74405,520.88845 137.84325,514.47418 138.09887,506.47663 C 137.63834,506.99726 142.74281,475.21111 125.88587,465.61405 C 101.82749,456.17037 78.492169,450.72911 70.231685,423.54474 C 65.520798,407.48391 66.309598,377.99887 78.996124,364.823 C 113.28699,326.3325 172.86327,353.31237 166.64052,407.33053 L 137.27964,407.33053 C 137.80551,395.84181 138.30216,384.49186 126.76232,378.40788 C 119.83111,374.63917 108.97051,375.47179 103.53655,381.47543 C 95.005832,389.48029 96.722202,402.21794 97.401446,412.58919 C 100.57855,431.22093 126.70389,431.27936 138.59431,439.32073 C 156.5395,448.71329 166.00509,463.83195 166.64052,484.01937 C 167.75798,511.78073 167.67034,531.12823 142.97653,547.99978 C 104.12085,568.80802 60.598105,541.45566 66.287687,494.97492 z M 212.2156,553.25844 L 212.2156,376.21677 L 177.59607,376.21677 L 177.59607,348.60878 L 276.19601,348.60878 L 276.19601,376.21677 L 241.57647,376.21677 L 241.57647,553.25844 L 212.2156,553.25844 z M 291.09555,505.93047 L 291.09555,392.8692 L 291.53378,386.7341 L 293.28666,381.03721 L 295.47777,375.34032 L 298.54533,369.64344 C 305.35968,357.87718 320.74857,348.36776 334.04131,347.29412 C 363.81849,343.54002 388.87748,366.10845 389.6955,395.93676 L 389.6955,505.93047 L 389.25727,508.99802 L 388.81905,515.13313 L 387.06616,521.26824 L 384.87506,526.96512 L 381.8075,532.22379 C 375.0954,543.78554 359.53122,553.7624 346.31152,554.57311 C 318.01699,558.84577 289.74437,534.87503 291.09555,505.93047 z M 320.0182,505.93047 L 320.0182,395.06031 L 320.45643,392.43098 L 320.89465,389.80165 L 322.20931,387.61054 L 323.08576,385.41943 C 327.85507,379.445 329.90741,377.77246 337.54708,376.21677 C 349.59819,374.79255 360.29811,383.66654 360.33463,395.93676 L 360.33463,507.24514 L 359.8964,509.43625 L 359.45818,512.06558 L 358.58174,514.25669 L 357.26707,516.4478 C 353.14778,522.40031 349.91225,524.16781 342.80575,525.65046 C 331.03949,527.49829 320.10585,517.68943 320.0182,505.93047 z M 418.61815,553.25844 L 418.61815,348.60878 C 459.17559,344.70131 510.79814,343.47428 513.71231,395.93676 C 519.51145,446.9604 502.65451,477.53369 447.97902,473.06382 L 447.97902,553.25844 L 418.61815,553.25844 z M 447.97902,376.21677 C 465.52981,374.66108 484.4683,374.27398 486.54255,395.93676 C 488.88704,433.11259 488.62411,449.56782 447.97902,445.45584 L 447.97902,376.21677"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         id="path38" />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_215.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_215.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_215.svg	(revision 21967)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px"
+     id="circle4" />
+  <path
+     d="M -176.30905 369.66949 A 309.2189 309.2189 0 1 1  -794.74686,369.66949 A 309.2189 309.2189 0 1 1  -176.30905 369.66949 z"
+     transform="matrix(1.061206,0,0,1.061206,877.7452,-29.79549)"
+     style="opacity:1;fill:#039;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1883" />
+  <path
+     d="M 151.78402,434.22108 L 234.28333,350.31583 L 233.90439,301.34152 L 173.17829,360.72091 C 171.16407,265.73848 252.9506,185.96417 329.76742,175.70399 L 322.96184,134.60623 C 188.08566,161.30323 133.76958,266.74319 131.1744,360.37317 L 69.871094,300.77246 L 69.592126,351.70146 L 151.78402,434.22108 z "
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path2806" />
+  <path
+     d="M 530.20519,509.211 L 416.17293,480.17877 L 374.05026,505.1649 L 455.92946,527.7341 C 374.87946,577.29837 264.77518,546.80204 217.23291,485.59886 L 185.15137,512.17172 C 276.12804,615.26176 394.57578,609.10108 476.77812,564.20025 L 456.14996,647.17507 L 500.29272,621.77315 L 530.20519,509.211 z "
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3753" />
+  <path
+     d="M 405.55939,145.06645 L 437.70705,258.25989 L 480.46496,282.14267 L 458.87191,200.00064 C 542.43053,245.20768 571.33979,355.73927 542.2813,427.58425 L 581.36981,441.98665 C 624.84436,311.54788 560.04447,212.20608 479.94026,163.66099 L 562.05521,139.83919 L 517.92343,114.41819 L 405.55939,145.06645 z "
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3755" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_220.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_220.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_220.svg	(revision 21967)
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="980"
+   height="365"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <path
+     d="M 4.5362472,320.16013 L 4.5362472,43.421181 C 4.5362472,25.176914 32.356686,3.1718632 46.424925,3.1718632 L 931.67273,3.0504075 C 948.01652,3.0504075 975.4763,22.52568 975.4763,46.139109 L 975.64333,319.25386 C 975.64333,338.47209 952.47638,361.66392 929.86098,361.66392 L 48.463733,361.76186 C 27.293233,361.76186 4.5362472,336.7397 4.5362472,320.16013 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path5587" />
+  <path
+     d="M 122.11909,148.48886 L 122.11909,159.55373 L 88.968925,159.55373 L 88.968925,177.56793 L 117.01044,177.56793 L 117.01044,187.52991 L 89.171767,187.52991 L 89.171767,205.39773 L 122.11909,205.39773 L 122.11909,216.63566 L 78.124639,216.63566 L 78.124639,148.48886 L 122.11909,148.48886 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5483" />
+  <path
+     d="M 49.34375,20.59375 C 36.916786,20.59375 22.4375,33.953442 22.4375,47.90625 L 22.1875,183.71875 L 22.28125,183.71875 L 22.53125,318.34375 C 22.53125,332.29655 37.01054,345.65625 49.4375,345.65625 L 929.34375,345.65625 C 940.44802,345.65625 958.21875,335.927 958.21875,316.78125 L 957.96875,182.53125 L 957.875,182.53125 L 958.09375,49.46875 C 958.09375,30.322997 940.323,20.593751 929.21875,20.59375 L 49.34375,20.59375 z M 690.8125,48.75 C 693.30606,48.826795 696.0541,49.347732 699.09375,50.375 L 931.34375,183.15625 L 699.1875,315.875 C 679.73375,322.4495 671.66055,307.63786 672.4375,295.96875 L 686.9375,243.78125 L 51.09375,243.9375 L 50.125,182.53125 L 50.0625,182.53125 L 50.96875,122.3125 L 686.8125,122.46875 L 672.34375,70.28125 C 671.6882,60.435437 677.34729,48.335306 690.8125,48.75 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path4577" />
+  <path
+     d="M 134.9928,167.496 L 145.01298,167.496 L 145.11291,216.58034 L 134.91795,216.58034 C 134.91795,216.58034 135.22989,167.7331 134.9928,167.496 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5485" />
+  <path
+     d="M 134.57466,148.48886 L 134.57466,159.158 L 145.24381,159.158 L 145.24381,148.48886 L 134.57466,148.48886 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5487" />
+  <path
+     d="M 159.09507,167.57086 L 158.85171,216.58661 L 170.06363,216.58661 L 170.06363,182.91326 C 173.26511,179.22036 179.77483,173.66459 188.01404,182.91326 L 188.01404,216.58661 L 199.08879,216.50549 L 199.08879,181.80265 C 199.08879,174.27543 192.33986,167.51462 186.66653,167.51462 L 176.63362,167.59574 C 173.49831,167.59574 171.35351,170.2064 170.08494,171.81651 L 170.00382,167.50854 L 159.09507,167.57086 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5489" />
+  <path
+     d="M 211.96035,148.5349 L 211.96035,216.58034 L 222.86658,216.58034 L 222.86658,148.5349 L 211.96035,148.5349 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5491" />
+  <path
+     d="M 222.62322,172.87427 C 222.62322,170.08528 228.5326,167.50227 231.16481,167.50227 L 239.93722,167.50227 C 245.42622,167.50227 252.26601,173.49364 252.26601,180.54234 L 252.26601,204.01446 C 252.26601,209.24123 243.82745,217.7658 237.56629,217.7658 L 232.35027,217.7658 C 229.56739,217.7658 223.41541,214.45796 222.78546,212.10694 L 222.65682,199.96834 C 228.26507,206.93593 235.07026,209.98335 241.18747,200.55554 L 240.93383,183.77 C 237.82257,178.38114 229.23462,173.02502 222.84979,184.08388 L 222.62322,172.87427 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5493" />
+  <path
+     d="M 285.65625,166.53125 C 283.25408,166.53125 280.09905,166.625 277.65625,166.625 C 272.37355,166.625 264.78125,170.71907 264.78125,173.71875 L 271.3125,180.59375 L 272.84375,180.53125 C 272.84375,179.12456 275.39038,177.50001 276.59375,177.5 L 287,177.53125 C 289.18911,177.4788 290.96446,179.14574 290.9375,180.71875 L 290.9375,186.46875 L 273.90625,186.40625 C 256.47505,186.40625 259.39408,216.5625 273.21875,216.5625 L 286.6875,216.5625 C 288.21727,216.5625 290.45013,215.22517 291,213.15625 L 291,216.5625 L 301.9375,216.5625 L 301.9375,178.75 C 301.93774,171.6148 293.65391,166.53125 285.65625,166.53125 z M 276.78125,195.46875 L 290.96875,195.46875 L 290.96875,202.96875 C 290.37802,204.65452 288.28647,206.3125 286.78125,206.3125 L 276.78125,206.3125 C 271.18499,206.31249 271.6383,195.46875 276.78125,195.46875 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5501" />
+  <path
+     d="M 565.12938,166.51788 C 562.72721,166.51788 559.57218,166.61163 557.12938,166.61163 C 551.84668,166.61163 544.25438,170.7057 544.25438,173.70538 L 550.78563,180.58038 L 552.31688,180.51788 C 552.31688,179.11119 554.86351,177.48664 556.06688,177.48663 L 566.47313,177.51788 C 568.66224,177.46543 570.43759,179.13237 570.41063,180.70538 L 570.41063,186.45538 L 553.37938,186.39288 C 535.94818,186.39288 538.86721,216.54913 552.69188,216.54913 L 566.16063,216.54913 C 567.6904,216.54913 569.92326,215.2118 570.47313,213.14288 L 570.47313,216.54913 L 581.41063,216.54913 L 581.41063,178.73663 C 581.41087,171.60143 573.12704,166.51788 565.12938,166.51788 z M 556.25438,195.45538 L 570.44188,195.45538 L 570.44188,202.95538 C 569.85115,204.64115 567.7596,206.29913 566.25438,206.29913 L 556.25438,206.29913 C 550.65812,206.29912 551.11143,195.45538 556.25438,195.45538 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5506" />
+  <path
+     d="M 314.90625,148.5 L 314.90625,216.5625 L 326.15625,216.5625 L 326.15625,184.15625 C 328.32789,174.78401 344.60157,173.96986 345.09375,185.71875 L 345.09375,216.5625 L 354.96875,216.5625 L 354.91139,178.14639 C 353.95058,172.90886 348.9922,169.12132 343.83319,167.80772 C 340.54302,166.96997 336.93794,166.90514 333.5416,167.55149 C 330.86468,168.06093 328.31743,169.01218 326.15625,170.375 L 326.15625,148.5 L 314.90625,148.5 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5508" />
+  <path
+     d="M 368.64685,167.53271 L 368.64685,216.55136 L 379.89685,216.55136 L 379.89685,184.14511 C 382.06849,174.77287 398.34217,173.95872 398.83435,185.70761 L 398.83435,216.55136 L 408.70935,216.55136 L 408.65199,178.13525 C 407.69118,172.89772 402.7328,169.11018 397.57379,167.79658 C 394.28362,166.95883 390.67854,166.894 387.2822,167.54035 C 384.60528,168.04979 382.05803,169.00104 379.89685,170.36386 L 379.89685,167.53271 L 368.64685,167.53271 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5518" />
+  <path
+     d="M 425.61858,201.29172 L 418.95079,207.3199 C 422.56072,211.72501 425.70321,215.56809 433.87856,216.54913 C 437.36933,216.92591 440.69834,216.8174 443.9741,216.54913 C 452.70478,216.13924 458.51918,211.91513 460.60879,205.30699 C 461.30601,202.74487 461.14193,200.14218 460.72351,197.62062 C 458.67516,191.59534 453.68798,187.87207 448.94075,186.47867 C 448.94075,186.47867 436.32133,186.36395 436.32133,186.36395 C 433.16648,186.68178 430.72173,179.70665 436.40245,177.65899 C 438.83151,177.09314 441.32221,177.14372 443.85938,177.65899 C 448.22837,178.69361 450.93438,180.09779 453.3813,181.55954 L 460.1499,173.98789 C 456.03784,169.16784 450.23945,167.65245 444.01466,166.61933 C 440.98464,166.18312 438.63617,166.18509 436.11157,166.49765 C 427.20265,168.20612 423.89235,171.75293 422.17692,175.82344 C 421.38257,179.49433 421.8478,183.03926 422.08188,186.60731 C 423.19691,192.265 427.29377,194.77968 432.38718,196.24395 C 437.39671,197.04526 442.40623,197.57504 447.41576,197.62062 C 451.33895,197.86848 450.4502,204.44376 447.53048,205.42171 L 444.54771,206.33949 C 441.16159,207.22174 435.19789,207.0112 434.10801,206.45421 C 431.2782,204.42018 428.44839,202.91926 425.61858,201.29172 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5520" />
+  <path
+     d="M 483.99276,153.51834 L 483.91164,167.4711 L 490.86871,167.54685 L 490.94751,176.48807 L 484.12679,176.48807 L 484.12679,205.07755 C 484.39235,205.95921 484.85492,206.64386 486.19179,206.45421 L 491.02403,206.61645 L 490.99609,216.63025 L 481.83235,216.54913 C 479.54733,215.93686 473.11348,211.09465 473.11348,206.45421 L 473.11348,176.39705 L 467.88956,176.39705 L 468.03788,167.63334 L 473.11348,167.63334 L 473.11348,153.51834"
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5568" />
+  <path
+     d="M 526.25,167.21875 C 522.22369,167.2546 517.76451,168.40122 513.96875,171.5 L 513.96875,167.46875 L 502.875,167.46875 L 502.9375,216.5625 L 513.96875,216.5625 L 513.96875,184.8125 C 518.08454,178.32377 523.55586,175.01616 529.8125,180.375 L 537.34375,171.03125 C 536.06047,169.03719 531.53069,167.17174 526.25,167.21875 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5570" />
+  <path
+     d="M 678.81799,202.353 L 687.17342,209.32939 C 683.44378,212.8045 656.93466,228.17658 647.01868,202.43413 L 646.93755,181.66722 C 646.95886,170.72657 680.4335,154.49409 687.98462,184.34421 L 688.1063,186.53447 L 677.11445,186.49391 C 674.65117,171.83598 657.27545,177.16138 657.80773,186.45335 L 688.14687,186.53447 L 687.98463,196.43119 L 656.99652,196.43119 C 659.91603,208.74662 672.17544,207.82336 678.81799,202.353 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5581" />
+  <path
+     d="M 594.77695,216.54913 L 595.07293,157.42435 C 595.07293,143.0703 633.9344,144.12174 633.9344,157.65346 L 633.944,169.46743 C 633.944,170.81612 630.11911,175.26364 629.17212,175.26364 C 630.12706,175.26364 633.9629,178.22285 633.9629,180.45507 L 633.88672,207.38453 C 633.88672,209.75836 626.17342,216.54913 623.91352,216.54913 L 613.96911,216.54913 L 613.97871,206.49976 L 620.73557,206.55704 C 622.08741,206.55704 624.14264,204.35387 624.14264,202.10964 L 623.81816,183.93861 C 623.81816,182.52884 622.36307,180.3693 621.22229,180.3693 L 612.98607,180.48386 L 613.04334,170.55572 L 619.99007,170.44117 C 633.68494,156.7463 605.16039,155.07926 605.16039,163.73955 L 605.06503,216.49185 L 594.77695,216.54913 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path5583" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_220;DE_267.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_220;DE_267.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_220;DE_267.svg	(revision 21967)
@@ -0,0 +1,180 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="780.02118"
+   height="665.05695"
+   id="svg2"
+   inkscape:version="0.47pre4 r22446"
+   sodipodi:docname="DE_220;DE_267.svg">
+  <metadata
+     id="metadata23">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1400"
+     inkscape:window-height="974"
+     id="namedview21"
+     showgrid="false"
+     inkscape:snap-global="false"
+     inkscape:zoom="0.56428571"
+     inkscape:cx="480.39135"
+     inkscape:cy="244.30927"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <defs
+     id="defs9">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 182.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="980 : 182.5 : 1"
+       inkscape:persp3d-origin="490 : 121.66667 : 1"
+       id="perspective25" />
+    <inkscape:perspective
+       id="perspective2873"
+       inkscape:persp3d-origin="362.5 : 241.66667 : 1"
+       inkscape:vp_z="725 : 362.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 362.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath2919">
+      <g
+         id="g2921">
+        <rect
+           y="-177.27849"
+           x="-8.8607597"
+           height="797.46838"
+           width="115.18987"
+           id="rect2923"
+           style="color:#000000;fill:#c3ffc1;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <rect
+           style="color:#000000;fill:#c3ffc1;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           id="rect2925"
+           width="111.64557"
+           height="783.29114"
+           x="-283.54431"
+           y="-187.91139" />
+      </g>
+    </clipPath>
+  </defs>
+  <g
+     id="g2876"
+     transform="matrix(0.43153556,0,0,0.43153556,396.86653,14.991036)"
+     clip-path="none">
+    <path
+       id="path2866"
+       d="m 712.5,362.5 c 0,193.29966 -156.70034,350 -350,350 -193.29966,0 -350,-156.70034 -350,-350 0,-193.29966 156.70034,-350 350,-350 193.29966,0 350,156.70034 350,350 l 0,0 z"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" />
+    <path
+       id="path2868"
+       d="m 361.4483,27.3625 c -184.78586,0 -335.5,150.71414 -335.5,335.5 0,184.78586 150.71414,335.5 335.5,335.5 184.78586,0 335.5,-150.71414 335.5,-335.5 0,-184.78586 -150.71414,-335.5 -335.5,-335.5 z"
+       style="fill:#cc0000;fill-opacity:1;fill-rule:evenodd" />
+    <rect
+       y="307.98154"
+       x="55.47493"
+       height="109.03694"
+       width="614.05017"
+       id="rect1324"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+  </g>
+  <g
+     id="g2881"
+     transform="matrix(0.80157793,0,0,0.80157793,-2.8345777,258.83525)">
+    <path
+       id="path5587"
+       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+       d="m 4.5362472,320.16013 0,-276.738949 c 0,-18.244267 27.8204388,-40.2493178 41.8886778,-40.2493178 L 931.67273,3.0504075 c 16.34379,0 43.80357,19.4752725 43.80357,43.0887015 l 0.16703,273.114751 c 0,19.21823 -23.16695,42.41006 -45.78235,42.41006 l -881.397247,0.0979 c -21.1705,0 -43.9274858,-25.02216 -43.9274858,-41.60173 z" />
+    <path
+       id="path5483"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 122.11909,148.48886 0,11.06487 -33.150165,0 0,18.0142 28.041515,0 0,9.96198 -27.838673,0 0,17.86782 32.947323,0 0,11.23793 -43.994451,0 0,-68.1468 43.994451,0 z" />
+    <path
+       id="path4577"
+       style="fill:#003399;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 49.34375,20.59375 c -12.426964,0 -26.90625,13.359692 -26.90625,27.3125 l -0.25,135.8125 0.09375,0 0.25,134.625 c 0,13.9528 14.47929,27.3125 26.90625,27.3125 l 879.90625,0 c 11.10427,0 28.875,-9.72925 28.875,-28.875 l -0.25,-134.25 -0.0937,0 0.21875,-133.0625 c 0,-19.145753 -17.77075,-28.874999 -28.875,-28.875 l -879.875,0 z M 690.8125,48.75 c 2.49356,0.07679 5.2416,0.597732 8.28125,1.625 l 232.25,132.78125 L 699.1875,315.875 c -19.45375,6.5745 -27.52695,-8.23714 -26.75,-19.90625 l 14.5,-52.1875 -635.84375,0.15625 -0.96875,-61.40625 -0.0625,0 0.90625,-60.21875 635.84375,0.15625 -14.46875,-52.1875 C 671.6882,60.435437 677.34729,48.335306 690.8125,48.75 z" />
+    <path
+       id="path5485"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 134.9928,167.496 10.02018,0 0.0999,49.08434 -10.19496,0 c 0,0 0.31194,-48.84724 0.0748,-49.08434 z" />
+    <path
+       id="path5487"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 134.57466,148.48886 0,10.66914 10.66915,0 0,-10.66914 -10.66915,0 z" />
+    <path
+       id="path5489"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 159.09507,167.57086 -0.24336,49.01575 11.21192,0 0,-33.67335 c 3.20148,-3.6929 9.7112,-9.24867 17.95041,0 l 0,33.67335 11.07475,-0.0811 0,-34.70284 c 0,-7.52722 -6.74893,-14.28803 -12.42226,-14.28803 l -10.03291,0.0811 c -3.13531,0 -5.28011,2.61066 -6.54868,4.22077 l -0.0811,-4.30797 -10.90875,0.0623 z" />
+    <path
+       id="path5491"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 211.96035,148.5349 0,68.04544 10.90623,0 0,-68.04544 -10.90623,0 z" />
+    <path
+       id="path5493"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 222.62322,172.87427 c 0,-2.78899 5.90938,-5.372 8.54159,-5.372 l 8.77241,0 c 5.489,0 12.32879,5.99137 12.32879,13.04007 l 0,23.47212 c 0,5.22677 -8.43856,13.75134 -14.69972,13.75134 l -5.21602,0 c -2.78288,0 -8.93486,-3.30784 -9.56481,-5.65886 l -0.12864,-12.1386 c 5.60825,6.96759 12.41344,10.01501 18.53065,0.5872 L 240.93383,183.77 c -3.11126,-5.38886 -11.69921,-10.74498 -18.08404,0.31388 l -0.22657,-11.20961 z" />
+    <path
+       id="path5501"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 285.65625,166.53125 c -2.40217,0 -5.5572,0.0937 -8,0.0937 -5.2827,0 -12.875,4.09407 -12.875,7.09375 l 6.53125,6.875 1.53125,-0.0625 c 0,-1.40669 2.54663,-3.03124 3.75,-3.03125 L 287,177.53125 c 2.18911,-0.0524 3.96446,1.61449 3.9375,3.1875 l 0,5.75 -17.03125,-0.0625 c -17.4312,0 -14.51217,30.15625 -0.6875,30.15625 l 13.46875,0 c 1.52977,0 3.76263,-1.33733 4.3125,-3.40625 l 0,3.40625 10.9375,0 0,-37.8125 c 2.4e-4,-7.1352 -8.28359,-12.21875 -16.28125,-12.21875 z m -8.875,28.9375 14.1875,0 0,7.5 c -0.59073,1.68577 -2.68228,3.34375 -4.1875,3.34375 l -10,0 c -5.59626,-1e-5 -5.14295,-10.84375 0,-10.84375 z" />
+    <path
+       id="path5506"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 565.12938,166.51788 c -2.40217,0 -5.5572,0.0937 -8,0.0937 -5.2827,0 -12.875,4.09407 -12.875,7.09375 l 6.53125,6.875 1.53125,-0.0625 c 0,-1.40669 2.54663,-3.03124 3.75,-3.03125 l 10.40625,0.0312 c 2.18911,-0.0524 3.96446,1.61449 3.9375,3.1875 l 0,5.75 -17.03125,-0.0625 c -17.4312,0 -14.51217,30.15625 -0.6875,30.15625 l 13.46875,0 c 1.52977,0 3.76263,-1.33733 4.3125,-3.40625 l 0,3.40625 10.9375,0 0,-37.8125 c 2.4e-4,-7.1352 -8.28359,-12.21875 -16.28125,-12.21875 z m -8.875,28.9375 14.1875,0 0,7.5 c -0.59073,1.68577 -2.68228,3.34375 -4.1875,3.34375 l -10,0 c -5.59626,-1e-5 -5.14295,-10.84375 0,-10.84375 z" />
+    <path
+       id="path5508"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 314.90625,148.5 0,68.0625 11.25,0 0,-32.40625 c 2.17164,-9.37224 18.44532,-10.18639 18.9375,1.5625 l 0,30.84375 9.875,0 -0.0574,-38.41611 c -0.96081,-5.23753 -5.91919,-9.02507 -11.0782,-10.33867 -3.29017,-0.83775 -6.89525,-0.90258 -10.29159,-0.25623 -2.67692,0.50944 -5.22417,1.46069 -7.38535,2.82351 l 0,-21.875 -11.25,0 z" />
+    <path
+       id="path5518"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 368.64685,167.53271 0,49.01865 11.25,0 0,-32.40625 c 2.17164,-9.37224 18.44532,-10.18639 18.9375,1.5625 l 0,30.84375 9.875,0 -0.0574,-38.41611 c -0.96081,-5.23753 -5.91919,-9.02507 -11.0782,-10.33867 -3.29017,-0.83775 -6.89525,-0.90258 -10.29159,-0.25623 -2.67692,0.50944 -5.22417,1.46069 -7.38535,2.82351 l 0,-2.83115 -11.25,0 z" />
+    <path
+       id="path5520"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 425.61858,201.29172 -6.66779,6.02818 c 3.60993,4.40511 6.75242,8.24819 14.92777,9.22923 3.49077,0.37678 6.81978,0.26827 10.09554,0 8.73068,-0.40989 14.54508,-4.634 16.63469,-11.24214 0.69722,-2.56212 0.53314,-5.16481 0.11472,-7.68637 -2.04835,-6.02528 -7.03553,-9.74855 -11.78276,-11.14195 0,0 -12.61942,-0.11472 -12.61942,-0.11472 -3.15485,0.31783 -5.5996,-6.6573 0.0811,-8.70496 2.42906,-0.56585 4.91976,-0.51527 7.45693,0 4.36899,1.03462 7.075,2.4388 9.52192,3.90055 l 6.7686,-7.57165 c -4.11206,-4.82005 -9.91045,-6.33544 -16.13524,-7.36856 -3.03002,-0.43621 -5.37849,-0.43424 -7.90309,-0.12168 -8.90892,1.70847 -12.21922,5.25528 -13.93465,9.32579 -0.79435,3.67089 -0.32912,7.21582 -0.095,10.78387 1.11503,5.65769 5.21189,8.17237 10.3053,9.63664 5.00953,0.80131 10.01905,1.33109 15.02858,1.37667 3.92319,0.24786 3.03444,6.82314 0.11472,7.80109 l -2.98277,0.91778 c -3.38612,0.88225 -9.34982,0.67171 -10.4397,0.11472 -2.82981,-2.03403 -5.65962,-3.53495 -8.48943,-5.16249 z" />
+    <path
+       id="path5568"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 483.99276,153.51834 -0.0811,13.95276 6.95707,0.0757 0.0788,8.94122 -6.82072,0 0,28.58948 c 0.26556,0.88166 0.72813,1.56631 2.065,1.37666 l 4.83224,0.16224 -0.0279,10.0138 -9.16374,-0.0811 c -2.28502,-0.61227 -8.71887,-5.45448 -8.71887,-10.09492 l 0,-30.05716 -5.22392,0 0.14832,-8.76371 5.0756,0 0,-14.115" />
+    <path
+       id="path5570"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 526.25,167.21875 c -4.02631,0.0359 -8.48549,1.18247 -12.28125,4.28125 l 0,-4.03125 -11.09375,0 0.0625,49.09375 11.03125,0 0,-31.75 c 4.11579,-6.48873 9.58711,-9.79634 15.84375,-4.4375 l 7.53125,-9.34375 c -1.28328,-1.99406 -5.81306,-3.85951 -11.09375,-3.8125 z" />
+    <path
+       id="path5581"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 678.81799,202.353 8.35543,6.97639 c -3.72964,3.47511 -30.23876,18.84719 -40.15474,-6.89526 l -0.0811,-20.76691 c 0.0213,-10.94065 33.49595,-27.17313 41.04707,2.67699 l 0.12168,2.19026 -10.99185,-0.0406 c -2.46328,-14.65793 -19.839,-9.33253 -19.30672,-0.0406 l 30.33914,0.0811 -0.16224,9.89672 -30.98811,0 c 2.91951,12.31543 15.17892,11.39217 21.82147,5.92181 z" />
+    <path
+       id="path5583"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 594.77695,216.54913 0.29598,-59.12478 c 0,-14.35405 38.86147,-13.30261 38.86147,0.22911 l 0.01,11.81397 c 0,1.34869 -3.82489,5.79621 -4.77188,5.79621 0.95494,0 4.79078,2.95921 4.79078,5.19143 l -0.0762,26.92946 c 0,2.37383 -7.7133,9.1646 -9.9732,9.1646 l -9.94441,0 0.01,-10.04937 6.75686,0.0573 c 1.35184,0 3.40707,-2.20317 3.40707,-4.4474 l -0.32448,-18.17103 c 0,-1.40977 -1.45509,-3.56931 -2.59587,-3.56931 l -8.23622,0.11456 0.0573,-9.92814 6.94673,-0.11455 c 13.69487,-13.69487 -14.82968,-15.36191 -14.82968,-6.70162 l -0.0954,52.7523 -10.28808,0.0573 z" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_237.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_237.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_237.svg	(revision 21967)
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="725" width="725">
+
+<path style="fill:white; fill-rule:evenodd; stroke:black; stroke-width:2.5px" id="OuterCircle"
+      d="M 712.50000,362.50000 C 712.50000,555.79966 555.79966,712.50000 362.50000,712.50000 C 169.20034,712.50000 12.500000,555.79966 12.500000,362.50000 C 12.500000,169.20034 169.20034,12.500000 362.50000,12.500000 C 555.79966,12.500000 712.50000,169.20034 712.50000,362.50000 L 712.50000,362.50000 z " />
+<path style="fill:#003399; fill-opacity:1; fill-rule:evenodd;" id="BlueCircle"
+      d="M 361.44830,27.362500 C 176.66244,27.362500 25.948300,178.07664 25.948300,362.86250 C 25.948300,547.64836 176.66244,698.36250 361.44830,698.36250 C 546.23416,698.36250 696.94830,547.64836 696.94830,362.86250 C 696.94830,178.07664 546.23416,27.362500 361.44830,27.362500 z " />
+
+<g transform="matrix(0.612193, 0, 0, 0.612193, 54.87296, 171.1686)" id="BikeSymbol">
+
+ <circle r="161" cy="409" cx="215" style="fill:none; stroke:white; stroke-width:40px" id="FrontWheel" />
+
+ <circle r="161" cy="406" cx="790" style="fill:none; stroke:white; stroke-width:40px" id="RearWheel" />
+
+ <path style="fill:#ffffff;fill-rule:evenodd;stroke:none" id="Frame"
+       d="M 429.48437,15.467118 C 296.91790,16.759190 319.39993,1.7711686 248.07762,230.98455 C 189.97511,414.12586 196.30387,394.15363 196.00000,407.00000 C 195.78704,416.98022 203.84333,424.89312 213.96694,425.57043 C 235.02054,423.44166 226.16492,427.84741 299.15748,201.18078 C 565.86963,482.53640 465.80592,436.91194 609.34064,442.62576 C 797.98299,440.81686 813.31557,452.44550 815.55516,424.79518 C 815.29674,415.40613 810.90371,409.80716 681.43820,121.67535 L 693.84208,87.564675 L 736.48042,86.789433 L 734.92994,51.128275 L 576.00521,51.128275 C 561.96471,70.337063 581.69033,70.250925 652.75423,86.014190 L 640.35035,120.90010 L 323.27614,121.67535 C 344.63838,47.079788 332.57905,51.731243 428.70913,51.903518 L 429.48437,15.467118 z M 314.11415,159.91012 L 624.37752,159.36001 L 534.70921,400.30922 L 314.11415,159.91012 z M 661.78516,174.21304 L 573.76718,405.26023 L 766.30650,405.81034 L 661.78516,174.21304 z " />
+
+</g>
+
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_238.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_238.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_238.svg	(revision 21967)
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zeichen 238.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG">
+  <metadata
+     id="metadata10">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.52137931"
+     inkscape:cx="362.5"
+     inkscape:cy="369.21296"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2" />
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px"
+     id="circle4" />
+  <path
+     d="M -176.30905 369.66949 A 309.2189 309.2189 0 1 1  -794.74686,369.66949 A 309.2189 309.2189 0 1 1  -176.30905 369.66949 z"
+     transform="matrix(1.061206,0,0,1.061206,877.7452,-29.79549)"
+     style="opacity:1;fill:#039;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1883" />
+  <g
+     id="layer1"
+     transform="matrix(1.275505,0,0,1.275505,106.644,128.9091)"
+     style="fill:white">
+    <g
+       id="g1892"
+       transform="translate(2.930158,-2.251167)"
+       style="fill:white">
+      <path
+         id="path1882"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 52.413594,38.866939 L 52.913594,62.616939 L 6.4448442,115.14819 L 18.069844,127.27319 L 71.101094,116.14819 L 94.319844,156.05444 C 84.123594,180.44952 92.866694,191.61419 98.382344,208.08569 L 40.788594,244.42944 L 40.788594,324.74194 L 61.507344,313.61694 L 61.007344,259.08569 L 108.97609,232.80444 L 153.91359,334.83569 L 149.97609,355.21072 L 170.60109,355.55442 L 173.63234,335.33569 L 137.75734,231.30444 C 171.91348,240.9542 206.38281,242.73849 241.31984,231.30444 L 275.13234,291.39819 L 240.72609,355.11692 L 264.53859,355.64822 L 300.41359,289.39819 L 292.81984,238.86694 L 345.35109,280.30444 L 333.72609,350.49192 L 356.97609,344.42944 L 368.06984,272.71069 L 338.28859,221.71069 C 342.53567,195.71256 337.04829,175.97794 325.97609,162.58569 L 336.56984,153.39819 C 354.39122,147.20989 365.19314,153.71935 371.41359,168.52319 L 377.41359,205.24194 L 407.69484,189.67944 L 399.60109,160.46069 C 389.57588,134.24426 359.48885,116.39751 325.78859,140.33569 C 325.78859,140.33569 315.08625,151.23801 313.81984,151.71069 C 295.95766,139.97227 271.36688,138.29839 248.22609,146.86694 L 244.16359,146.89819 C 251.46329,143.16506 251.87072,133.73733 249.38234,126.74194 L 213.53859,64.616939 C 199.79552,48.550019 166.87985,63.298099 173.13234,86.866939 L 177.81984,95.554439 L 146.19484,110.42944 C 130.20815,82.201549 113.44726,54.451059 68.569844,54.523189 L 52.413594,38.866939 z M 187.22609,113.58569 L 198.97609,133.30444 L 171.00734,147.21069 L 170.60109,147.21069 C 165.62405,141.82773 161.30591,135.77545 157.28859,129.39819 L 187.22609,113.58569 z " />
+      <path
+         id="path1884"
+         style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         transform="translate(-40.44356,-589.0438)"
+         d="M 241.42858,621.29077 C 241.42858,634.21029 230.95524,644.68363 218.03572,644.68363 C 205.1162,644.68363 194.64286,634.21029 194.64286,621.29077 C 194.64286,608.37125 205.1162,597.89791 218.03572,597.89791 C 230.95524,597.89791 241.42858,608.37125 241.42858,621.29077 L 241.42858,621.29077 z " />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_239.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_239.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_239.svg	(revision 21967)
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px"
+     id="circle4" />
+  <path
+     d="M -176.30905,369.66949 C -176.30905,540.44638 -314.75107,678.88839 -485.52795,678.88839 C -656.30484,678.8884 -794.74686,540.44638 -794.74686,369.66949 C -794.74686,198.8926 -656.30484,60.450585 -485.52795,60.450585 C -314.75107,60.450585 -176.30905,198.8926 -176.30905,369.66949 z "
+     transform="matrix(1.061206,0,0,1.061206,877.7452,-29.79549)"
+     style="opacity:1;fill:#039;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1883" />
+  <g
+     transform="matrix(2.715837,0,0,2.715837,681.4279,-1419.765)"
+     style="fill:white"
+     id="g1953">
+    <path
+       d="M -162.2598,695.78989 L -151.80022,695.78989 L -151.80022,736.88109 C -151.80022,740.95037 -161.88625,740.37837 -161.88625,736.88109 L -162.2598,695.78989 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1914" />
+    <path
+       d="M -147.81755,695.78989 L -137.35797,695.78989 L -137.35797,745.84644 C -137.35797,751.90761 -147.444,751.70751 -147.444,745.84644 L -147.81755,695.78989 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1916" />
+    <path
+       d="M -185.87304,691.92858 C -182.89291,677.53426 -180.81137,664.83758 -160.64726,645.8354 L -160.64726,617.04368 L -164.21321,616.11917 C -167.51865,627.64359 -167.35037,638.24779 -164.18142,649.27418 C -165.83595,650.93571 -167.39427,652.69346 -168.96781,654.43599 C -172.345,652.75791 -172.69172,647.5109 -174.38276,642.79774 L -176.44766,629.77699 L -174.51484,618.89269 C -170.93552,610.87214 -168.6994,602.51101 -154.83609,597.23286 L -146.51555,597.10078 C -130.49677,599.87618 -127.4378,611.26281 -121.50676,622.48492 C -114.34317,636.03913 -105.89332,648.08749 -114.0258,652.83522 C -105.01372,658.70327 -100.29629,668.86597 -86.95101,670.40082 C -80.58147,671.05689 -77.26529,669.16851 -72.42308,668.55181 L -49.31046,696.5511 C -48.21252,703.73725 -50.86862,704.66668 -53.40469,705.79615 L -68.9892,687.17398 L -63.57425,714.64498 L -71.23443,714.64498 L -66.34776,743.70085 C -66.34776,746.48852 -75.72488,747.22387 -75.72488,744.22914 L -80.47948,717.4185 L -87.03502,717.34502 L -89.98867,748.05923 C -89.98867,751.21513 -98.44129,750.64254 -98.44129,748.05923 L -94.74327,682.8156 L -121.68598,657.98604 C -124.79226,652.49157 -122.53051,650.7863 -121.68598,648.08063 C -125.47029,636.76557 -131.8915,626.76896 -137.00635,616.11917 L -138.85536,616.11917 L -138.72329,645.96747 C -117.10373,664.65525 -116.34596,677.62217 -113.49751,692.32479 L -185.87304,691.92858 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1918" />
+    <path
+       d="M -135.36376,575.69151 C -135.36084,583.43019 -141.63345,589.70517 -149.37212,589.70517 C -157.1108,589.70517 -163.38341,583.43019 -163.38049,575.69151 C -163.38341,567.95284 -157.1108,561.67785 -149.37212,561.67785 C -141.63345,561.67785 -135.36084,567.95284 -135.36376,575.69151 L -135.36376,575.69151 z "
+       style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path1922" />
+    <path
+       d="M -72.793169,650.58949 C -72.790561,657.5027 -78.39409,663.10836 -85.3073,663.10836 C -92.220518,663.10836 -97.824047,657.5027 -97.821439,650.58949 C -97.824047,643.67628 -92.220518,638.07063 -85.3073,638.07063 C -78.39409,638.07063 -72.790561,643.67628 -72.793169,650.58949 L -72.793169,650.58949 z "
+       style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path1924" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_240.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_240.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_240.svg	(revision 21967)
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px"
+     id="circle4" />
+  <path
+     d="M -176.30905,369.66949 C -176.30905,540.44638 -314.75107,678.88839 -485.52795,678.88839 C -656.30484,678.8884 -794.74686,540.44638 -794.74686,369.66949 C -794.74686,198.8926 -656.30484,60.450585 -485.52795,60.450585 C -314.75107,60.450585 -176.30905,198.8926 -176.30905,369.66949 z "
+     transform="matrix(1.061206,0,0,1.061206,877.7452,-29.79549)"
+     style="opacity:1;fill:#039;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1883" />
+  <g
+     transform="matrix(1.486189,0,0,1.486189,540.6877,-765.1232)"
+     style="fill:white"
+     id="g1953">
+    <path
+       d="M -162.2598,695.78989 L -151.80022,695.78989 L -151.80022,736.88109 C -151.80022,740.95037 -161.88625,740.37837 -161.88625,736.88109 L -162.2598,695.78989 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1914" />
+    <path
+       d="M -147.81755,695.78989 L -137.35797,695.78989 L -137.35797,745.84644 C -137.35797,751.90761 -147.444,751.70751 -147.444,745.84644 L -147.81755,695.78989 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1916" />
+    <path
+       d="M -185.87304,691.92858 C -182.89291,677.53426 -180.81137,664.83758 -160.64726,645.8354 L -160.64726,617.04368 L -164.21321,616.11917 C -164.21321,616.11917 -164.18142,649.27418 -164.18142,649.27418 C -165.83595,650.93571 -167.39427,652.69346 -168.96781,654.43599 C -172.345,652.75791 -172.69172,647.5109 -174.38276,642.79774 L -176.44766,629.77699 L -174.51484,618.89269 C -170.93552,610.87214 -168.6994,602.51101 -154.83609,597.23286 L -146.51555,597.10078 C -130.49677,599.87618 -127.4378,611.26281 -121.50676,622.48492 C -114.34317,636.03913 -105.89332,648.08749 -114.0258,652.83522 C -105.01372,658.70327 -100.29629,668.86597 -86.95101,670.40082 C -80.58147,671.05689 -77.26529,669.16851 -72.42308,668.55181 L -49.31046,696.5511 C -48.21252,703.73725 -50.86862,704.66668 -53.40469,705.79615 L -68.9892,687.17398 L -63.57425,714.64498 L -71.23443,714.64498 L -66.34776,743.70085 C -66.34776,746.48852 -75.72488,747.22387 -75.72488,744.22914 L -80.47948,717.4185 L -87.03502,717.34502 L -89.98867,748.05923 C -89.98867,751.21513 -98.44129,750.64254 -98.44129,748.05923 L -94.74327,682.8156 L -121.68598,657.98604 C -124.79226,652.49157 -122.53051,650.7863 -121.68598,648.08063 C -125.47029,636.76557 -131.8915,626.76896 -137.00635,616.11917 L -138.85536,616.11917 L -138.72329,645.96747 C -117.10373,664.65525 -116.34596,677.62217 -113.49751,692.32479 L -185.87304,691.92858 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1918" />
+    <path
+       d="M -135.36376,575.69151 C -135.36084,583.43019 -141.63345,589.70517 -149.37212,589.70517 C -157.1108,589.70517 -163.38341,583.43019 -163.38049,575.69151 C -163.38341,567.95284 -157.1108,561.67785 -149.37212,561.67785 C -141.63345,561.67785 -135.36084,567.95284 -135.36376,575.69151 L -135.36376,575.69151 z "
+       style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path1922" />
+    <path
+       d="M -72.793169,650.58949 C -72.790561,657.5027 -78.39409,663.10836 -85.3073,663.10836 C -92.220518,663.10836 -97.824047,657.5027 -97.821439,650.58949 C -97.824047,643.67628 -92.220518,638.07063 -85.3073,638.07063 C -78.39409,638.07063 -72.790561,643.67628 -72.793169,650.58949 L -72.793169,650.58949 z "
+       style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path1924" />
+  </g>
+  <g
+     transform="matrix(0.376839,0,0,0.376839,172.4891,407.3011)"
+     id="BikeSymbol">
+    <circle
+       cx="215"
+       cy="409"
+       r="161"
+       style="fill:none;stroke:white;stroke-width:40px"
+       id="FrontWheel" />
+    <circle
+       cx="790"
+       cy="406"
+       r="161"
+       style="fill:none;stroke:white;stroke-width:40px"
+       id="RearWheel" />
+    <path
+       d="M 429.48437,15.467118 C 296.9179,16.75919 319.39993,1.7711686 248.07762,230.98455 C 189.97511,414.12586 196.30387,394.15363 196,407 C 195.78704,416.98022 203.84333,424.89312 213.96694,425.57043 C 235.02054,423.44166 226.16492,427.84741 299.15748,201.18078 C 565.86963,482.5364 465.80592,436.91194 609.34064,442.62576 C 797.98299,440.81686 813.31557,452.4455 815.55516,424.79518 C 815.29674,415.40613 810.90371,409.80716 681.4382,121.67535 L 693.84208,87.564675 L 736.48042,86.789433 L 734.92994,51.128275 L 576.00521,51.128275 C 561.96471,70.337063 581.69033,70.250925 652.75423,86.01419 L 640.35035,120.9001 L 323.27614,121.67535 C 344.63838,47.079788 332.57905,51.731243 428.70913,51.903518 L 429.48437,15.467118 z M 314.11415,159.91012 L 624.37752,159.36001 L 534.70921,400.30922 L 314.11415,159.91012 z M 661.78516,174.21304 L 573.76718,405.26023 L 766.3065,405.81034 L 661.78516,174.21304 z "
+       style="fill:white;fill-rule:evenodd;stroke:none"
+       id="Frame" />
+  </g>
+  <path
+     d="M 69.443918,373.94123 L 69.443918,385.91043 L 654.5795,385.91043 L 654.5795,374.05415 L 69.443918,373.94123 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path2006" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_241.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_241.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_241.svg	(revision 21967)
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px"
+     id="circle4" />
+  <path
+     d="M -176.30905,369.66949 C -176.30905,540.44638 -314.75107,678.88839 -485.52795,678.88839 C -656.30484,678.8884 -794.74686,540.44638 -794.74686,369.66949 C -794.74686,198.8926 -656.30484,60.450585 -485.52795,60.450585 C -314.75107,60.450585 -176.30905,198.8926 -176.30905,369.66949 z "
+     transform="matrix(1.061206,0,0,1.061206,877.7452,-29.79549)"
+     style="opacity:1;fill:#039;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1883" />
+  <g
+     transform="matrix(1.554536,0,0,1.554536,726.8321,-657.4181)"
+     style="fill:white"
+     id="g1953">
+    <path
+       d="M -162.2598,695.78989 L -151.80022,695.78989 L -151.80022,736.88109 C -151.80022,740.95037 -161.88625,740.37837 -161.88625,736.88109 L -162.2598,695.78989 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1914" />
+    <path
+       d="M -147.81755,695.78989 L -137.35797,695.78989 L -137.35797,745.84644 C -137.35797,751.90761 -147.444,751.70751 -147.444,745.84644 L -147.81755,695.78989 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1916" />
+    <path
+       d="M -185.87304,691.92858 C -182.89291,677.53426 -180.81137,664.83758 -160.64726,645.8354 L -160.64726,617.04368 L -164.21321,616.11917 C -164.21321,616.11917 -164.18142,649.27418 -164.18142,649.27418 C -165.83595,650.93571 -167.39427,652.69346 -168.96781,654.43599 C -172.345,652.75791 -172.69172,647.5109 -174.38276,642.79774 L -176.44766,629.77699 L -174.51484,618.89269 C -170.93552,610.87214 -168.6994,602.51101 -154.83609,597.23286 L -146.51555,597.10078 C -130.49677,599.87618 -127.4378,611.26281 -121.50676,622.48492 C -114.34317,636.03913 -105.89332,648.08749 -114.0258,652.83522 C -105.01372,658.70327 -100.29629,668.86597 -86.95101,670.40082 C -80.58147,671.05689 -77.26529,669.16851 -72.42308,668.55181 L -49.31046,696.5511 C -48.21252,703.73725 -50.86862,704.66668 -53.40469,705.79615 L -68.9892,687.17398 L -63.57425,714.64498 L -71.23443,714.64498 L -66.34776,743.70085 C -66.34776,746.48852 -75.72488,747.22387 -75.72488,744.22914 L -80.47948,717.4185 L -87.03502,717.34502 L -89.98867,748.05923 C -89.98867,751.21513 -98.44129,750.64254 -98.44129,748.05923 L -94.74327,682.8156 L -121.68598,657.98604 C -124.79226,652.49157 -122.53051,650.7863 -121.68598,648.08063 C -125.47029,636.76557 -131.8915,626.76896 -137.00635,616.11917 L -138.85536,616.11917 L -138.72329,645.96747 C -117.10373,664.65525 -116.34596,677.62217 -113.49751,692.32479 L -185.87304,691.92858 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path1918" />
+    <path
+       d="M -135.36376,575.69151 C -135.36084,583.43019 -141.63345,589.70517 -149.37212,589.70517 C -157.1108,589.70517 -163.38341,583.43019 -163.38049,575.69151 C -163.38341,567.95284 -157.1108,561.67785 -149.37212,561.67785 C -141.63345,561.67785 -135.36084,567.95284 -135.36376,575.69151 L -135.36376,575.69151 z "
+       style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path1922" />
+    <path
+       d="M -72.793169,650.58949 C -72.790561,657.5027 -78.39409,663.10836 -85.3073,663.10836 C -92.220518,663.10836 -97.824047,657.5027 -97.821439,650.58949 C -97.824047,643.67628 -92.220518,638.07063 -85.3073,638.07063 C -78.39409,638.07063 -72.790561,643.67628 -72.793169,650.58949 L -72.793169,650.58949 z "
+       style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path1924" />
+  </g>
+  <g
+     transform="matrix(0.326707,0,0,0.326707,41.57991,281.5051)"
+     id="BikeSymbol">
+    <circle
+       cx="215"
+       cy="409"
+       r="161"
+       style="fill:none;stroke:white;stroke-width:40px"
+       id="FrontWheel" />
+    <circle
+       cx="790"
+       cy="406"
+       r="161"
+       style="fill:none;stroke:white;stroke-width:40px"
+       id="RearWheel" />
+    <path
+       d="M 429.48437,15.467118 C 296.9179,16.75919 319.39993,1.7711686 248.07762,230.98455 C 189.97511,414.12586 196.30387,394.15363 196,407 C 195.78704,416.98022 203.84333,424.89312 213.96694,425.57043 C 235.02054,423.44166 226.16492,427.84741 299.15748,201.18078 C 565.86963,482.5364 465.80592,436.91194 609.34064,442.62576 C 797.98299,440.81686 813.31557,452.4455 815.55516,424.79518 C 815.29674,415.40613 810.90371,409.80716 681.4382,121.67535 L 693.84208,87.564675 L 736.48042,86.789433 L 734.92994,51.128275 L 576.00521,51.128275 C 561.96471,70.337063 581.69033,70.250925 652.75423,86.01419 L 640.35035,120.9001 L 323.27614,121.67535 C 344.63838,47.079788 332.57905,51.731243 428.70913,51.903518 L 429.48437,15.467118 z M 314.11415,159.91012 L 624.37752,159.36001 L 534.70921,400.30922 L 314.11415,159.91012 z M 661.78516,174.21304 L 573.76718,405.26023 L 766.3065,405.81034 L 661.78516,174.21304 z "
+       style="fill:white;fill-rule:evenodd;stroke:none"
+       id="Frame" />
+  </g>
+  <path
+     d="M 372.02711,661.99362 L 383.99631,661.99362 L 383.99631,76.858039 L 372.14003,76.858039 L 372.02711,661.99362 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path2006" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_242.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_242.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_242.svg	(revision 21967)
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="760"
+   height="760"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <g
+     id="layer1">
+    <path
+       d="M 45.824811,3.3417118 L 713.26505,3.3417118 C 730.52936,3.3417118 757.66931,28.70753 757.66931,47.945769 L 757.66931,711.00841 C 757.66931,728.56947 731.4376,756.65818 710.65713,756.65818 L 48.432727,756.65818 C 31.534484,756.65818 3.7545745,731.36166 3.7545745,718.73902 L 3.7545745,46.269253 C 3.7545745,27.174554 26.491429,3.3417118 45.824811,3.3417118 z "
+       style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:2.01808;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect2841" />
+    <path
+       d="M 646.32872 332.88788 A 245.97542 245.97542 0 1 1  154.37788,332.88788 A 245.97542 245.97542 0 1 1  646.32872 332.88788 z"
+       transform="matrix(0.972803,0,0,0.972803,-9.464893,-15.13243)"
+       style="opacity:1;fill:#039;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path1882" />
+    <g
+       transform="matrix(1.944179,0,0,1.944179,608.3719,-965.5591)"
+       style="opacity:1;fill:white;fill-opacity:1"
+       id="g1953">
+      <path
+         d="M -162.2598,695.78989 L -151.80022,695.78989 L -151.80022,736.88109 C -151.80022,740.95037 -161.88625,740.37837 -161.88625,736.88109 L -162.2598,695.78989 z "
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path1914" />
+      <path
+         d="M -147.81755,695.78989 L -137.35797,695.78989 L -137.35797,745.84644 C -137.35797,751.90761 -147.444,751.70751 -147.444,745.84644 L -147.81755,695.78989 z "
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path1916" />
+      <path
+         d="M -185.87304,691.92858 C -182.89291,677.53426 -180.81137,664.83758 -160.64726,645.8354 L -160.64726,617.04368 L -164.21321,616.11917 C -164.21321,616.11917 -164.18142,649.27418 -164.18142,649.27418 C -165.83595,650.93571 -167.39427,652.69346 -168.96781,654.43599 C -172.345,652.75791 -172.69172,647.5109 -174.38276,642.79774 L -174.51484,618.89269 C -170.93552,610.87214 -168.6994,602.51101 -154.83609,597.23286 L -146.51555,597.10078 C -130.49677,599.87618 -127.4378,611.26281 -121.50676,622.48492 C -114.34317,636.03913 -105.89332,648.08749 -114.0258,652.83522 C -105.01372,658.70327 -100.29629,668.86597 -86.95101,670.40082 C -80.58147,671.05689 -77.26529,669.16851 -72.42308,668.55181 L -49.31046,696.5511 C -48.21252,703.73725 -50.86862,704.66668 -53.40469,705.79615 L -68.9892,687.17398 L -63.57425,714.64498 L -71.23443,714.64498 L -66.34776,743.70085 C -66.34776,746.48852 -75.72488,747.22387 -75.72488,744.22914 L -80.47948,717.4185 L -87.03502,717.34502 L -89.98867,748.05923 C -89.98867,751.21513 -98.44129,750.64254 -98.44129,748.05923 L -94.74327,682.8156 L -121.68598,657.98604 C -124.79226,652.49157 -122.53051,650.7863 -121.68598,648.08063 C -125.47029,636.76557 -131.8915,626.76896 -137.00635,616.11917 L -138.85536,616.11917 L -138.72329,645.96747 C -117.10373,664.65525 -116.34596,677.62217 -113.49751,692.32479 L -185.87304,691.92858 z "
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path1918" />
+      <path
+         d="M -135.36376,575.69151 C -135.36084,583.43019 -141.63345,589.70517 -149.37212,589.70517 C -157.1108,589.70517 -163.38341,583.43019 -163.38049,575.69151 C -163.38341,567.95284 -157.1108,561.67785 -149.37212,561.67785 C -141.63345,561.67785 -135.36084,567.95284 -135.36376,575.69151 L -135.36376,575.69151 z "
+         style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path1922" />
+      <path
+         d="M -72.793169,650.58949 C -72.790561,657.5027 -78.39409,663.10836 -85.3073,663.10836 C -92.220518,663.10836 -97.824047,657.5027 -97.821439,650.58949 C -97.824047,643.67628 -92.220518,638.07063 -85.3073,638.07063 C -78.39409,638.07063 -72.790561,643.67628 -72.793169,650.58949 L -72.793169,650.58949 z "
+         style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path1924" />
+    </g>
+    <path
+       d="M 25.443662,52.632534 L 25.443662,710.96204 C 25.443662,726.77315 40.985837,735.15473 52.918434,735.15473 L 710.27844,734.90301 C 721.49547,734.90301 734.94337,721.48607 734.94337,708.97952 L 734.94337,54.088023 C 735.11544,34.671252 719.24918,24.683563 708.05602,24.683563 L 53.853079,24.935273 C 34.160919,24.935273 25.443662,39.076817 25.443662,52.632534 z "
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:17;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1934" />
+    <path
+       d="M 206.44455,582.56676 L 273.73981,582.68617 L 273.6204,596.45443 L 225.57246,673.5137 L 273.6204,673.5137 L 273.6204,689.607 L 204.51276,689.607 L 204.56903,674.88346 L 252.04806,598.51252 L 206.41642,598.57565 L 206.44455,582.56676 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path7280" />
+    <path
+       d="M 287.48682,609.90636 L 287.60623,662.00045 C 287.60623,674.59063 304.49987,691.72134 324.70295,691.72134 C 345.17066,691.72134 363.53455,675.3509 363.53455,661.86728 L 363.41514,610.00514 C 363.41514,595.2185 344.32269,582.08913 324.84362,582.08913 C 301.47127,582.08913 287.48682,596.13762 287.48682,609.90636 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path7282" />
+    <path
+       d="M 383.45292,582.34395 L 383.66535,689.69827 L 400.64903,689.69827 L 400.64903,616.06861 L 447.09877,689.69827 L 463.65757,689.69827 L 463.57667,582.18216 L 446.64365,582.39459 L 446.46146,657.62246 L 399.98146,582.39459 L 383.45292,582.34395 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path7284" />
+    <path
+       d="M 555.63637,582.47503 L 486.54913,582.57628 L 486.46777,689.74891 L 555.49489,689.74891 L 555.49489,673.4328 L 503.66387,673.4328 L 503.57257,643.5116 L 547.54408,643.62279 L 547.54408,628.50036 L 503.64307,628.50036 L 503.54182,599.57173 L 555.5342,599.57173 L 555.63637,582.47503 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path7286" />
+    <path
+       d="M 304.64048,615.61663 L 304.80935,657.32738 C 304.74278,668.35518 314.01652,674.18264 324.79174,673.87658 C 337.45615,673.87658 346.26464,668.33617 346.26464,657.34462 L 346.35123,615.61663 C 346.35123,606.97682 336.72076,599.53681 324.79174,599.52 C 313.8953,599.52 304.35411,605.74946 304.64048,615.61663 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path7303" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_244.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_244.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_244.svg	(revision 21967)
@@ -0,0 +1,105 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="760"
+   height="760"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <g
+     id="layer1">
+    <path
+       d="M 45.824811,3.3417118 L 713.26505,3.3417118 C 730.52936,3.3417118 757.66931,28.70753 757.66931,47.945769 L 757.66931,711.00841 C 757.66931,728.56947 731.4376,756.65818 710.65713,756.65818 L 48.432727,756.65818 C 31.534484,756.65818 3.7545745,731.36166 3.7545745,718.73902 L 3.7545745,46.269253 C 3.7545745,27.174554 26.491429,3.3417118 45.824811,3.3417118 z "
+       style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:2.01808;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect2841" />
+    <path
+       d="M 646.32872 332.88788 A 245.97542 245.97542 0 1 1  154.37788,332.88788 A 245.97542 245.97542 0 1 1  646.32872 332.88788 z"
+       transform="matrix(0.972803,0,0,0.972803,-8.45365,-4.008762)"
+       style="opacity:1;fill:#039;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path1882" />
+    <path
+       d="M 25.443662,52.632534 L 25.443662,710.96204 C 25.443662,726.77315 40.985837,735.15473 52.918434,735.15473 L 710.27844,734.90301 C 721.49547,734.90301 734.94337,721.48607 734.94337,708.97952 L 734.94337,54.088023 C 735.11544,34.671252 719.24918,24.683563 708.05602,24.683563 L 53.853079,24.935273 C 34.160919,24.935273 25.443662,39.076817 25.443662,52.632534 z "
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:17;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1934" />
+    <g
+       id="g12681">
+      <circle
+         cx="215"
+         cy="409"
+         r="161"
+         transform="matrix(0.404263,0,0,0.404263,177.6268,199.8607)"
+         style="fill:none;stroke:white;stroke-width:40px;stroke-opacity:1"
+         id="circle11777" />
+      <circle
+         cx="790"
+         cy="406"
+         r="161"
+         transform="matrix(0.404263,0,0,0.404263,177.6268,199.8607)"
+         style="fill:none;stroke:white;stroke-width:40px;stroke-opacity:1"
+         id="circle11779" />
+      <path
+         d="M 351.25144,206.11348 C 297.65972,206.63582 306.74837,200.57672 277.9154,293.23921 C 254.42671,367.27646 256.98519,359.20243 256.86235,364.39574 C 256.77626,368.43037 260.03312,371.62927 264.12572,371.90308 C 272.63691,371.0425 269.05691,372.82358 298.5651,281.19065 C 406.38695,394.93231 365.9349,376.48803 423.96068,378.79792 C 500.2218,378.06665 506.42019,382.76768 507.32558,371.58967 C 507.22111,367.79403 505.44517,365.53057 453.10705,249.04954 L 458.12148,235.25986 L 475.35858,234.94646 L 474.73178,220.52997 L 410.48439,220.52997 C 404.80834,228.29537 412.78268,228.26055 441.51118,234.63305 L 436.49675,248.73614 L 308.31538,249.04954 C 316.95135,218.89332 312.0762,220.77373 350.93804,220.84337 L 351.25144,206.11348 z M 304.61153,264.50644 L 430.03953,264.28406 L 393.78995,361.69091 L 304.61153,264.50644 z M 445.16205,270.28859 L 409.57964,363.69242 L 487.41616,363.91481 L 445.16205,270.28859 z "
+         style="fill:white;fill-rule:evenodd;stroke:white;stroke-opacity:1"
+         id="path11781" />
+    </g>
+    <path
+       d="M 143.31806,624.86568 C 140.84723,624.86568 137.60202,624.96211 135.08939,624.96211 C 129.65569,624.96211 121.84637,629.17321 121.84637,632.25863 L 128.56431,639.33015 L 130.13933,639.26586 C 130.13933,637.81896 132.75875,636.14798 133.99652,636.14797 L 144.70022,636.18011 C 146.95191,636.12616 148.77801,637.84075 148.75028,639.45872 L 148.75028,645.37308 L 131.2322,645.30879 C 113.30274,645.30879 116.30521,676.32704 130.52505,676.32704 L 144.37879,676.32704 C 145.95229,676.32704 148.24897,674.95152 148.81456,672.82348 L 148.81456,676.32704 L 160.0647,676.32704 L 160.0647,637.4337 C 160.06495,630.09454 151.54433,624.86568 143.31806,624.86568 z M 134.18938,654.63034 L 148.78242,654.63034 L 148.78242,662.34478 C 148.1748,664.07866 146.02347,665.78405 144.47522,665.78405 L 134.18938,665.78405 C 128.43315,665.78405 128.89942,654.63034 134.18938,654.63034 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12744" />
+    <path
+       d="M 332.53609,625.03701 C 330.06526,625.03701 326.82005,625.13344 324.30742,625.13344 C 318.87372,625.13344 311.0644,629.34454 311.0644,632.42996 L 317.78234,639.50148 L 319.35736,639.43719 C 319.35736,637.99029 321.97678,636.31931 323.21455,636.3193 L 333.91825,636.35144 C 336.16994,636.29749 337.99604,638.01208 337.96831,639.63005 L 337.96831,645.54441 L 320.45023,645.48012 C 302.52077,645.48012 305.52324,676.49837 319.74308,676.49837 L 333.59682,676.49837 C 335.17032,676.49837 337.467,675.12285 338.03259,672.99481 L 338.03259,676.49837 L 349.28273,676.49837 L 349.28273,637.60503 C 349.28298,630.26587 340.76236,625.03701 332.53609,625.03701 z M 323.40741,654.80167 L 338.00045,654.80167 L 338.00045,662.51611 C 337.39283,664.24999 335.2415,665.95538 333.69325,665.95538 L 323.40741,665.95538 C 317.65118,665.95538 318.11745,654.80167 323.40741,654.80167 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5501" />
+    <path
+       d="M 564.12879,624.86568 C 561.65796,624.86568 558.41275,624.96211 555.90012,624.96211 C 550.46642,624.96211 542.6571,629.17321 542.6571,632.25863 L 549.37504,639.33015 L 550.95006,639.26586 C 550.95006,637.81896 553.56948,636.14798 554.80725,636.14797 L 565.51095,636.18011 C 567.76264,636.12616 569.58874,637.84075 569.56101,639.45872 L 569.56101,645.37308 L 552.04293,645.30879 C 534.11347,645.30879 537.11594,676.32704 551.33578,676.32704 L 565.18952,676.32704 C 566.76302,676.32704 569.0597,674.95152 569.62529,672.82348 L 569.62529,676.32704 L 580.87543,676.32704 L 580.87543,637.4337 C 580.87568,630.09454 572.35506,624.86568 564.12879,624.86568 z M 555.00011,654.63034 L 569.59315,654.63034 L 569.59315,662.34478 C 568.98553,664.07866 566.8342,665.78405 565.28595,665.78405 L 555.00011,665.78405 C 549.24388,665.78405 549.71015,654.63034 555.00011,654.63034 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12746" />
+    <path
+       d="M 682.11348,661.67921 L 690.68638,668.83718 C 686.85966,672.40273 659.66057,688.17493 649.4865,661.76242 L 649.40326,640.45502 C 649.42512,629.22961 683.77103,612.57464 691.51869,643.20169 L 691.64354,645.44895 L 680.3656,645.40734 C 677.8382,630.3679 660.01023,635.8319 660.55637,645.36572 L 691.68516,645.44895 L 691.5187,655.60326 L 659.72404,655.60326 C 662.71954,668.23922 675.29803,667.29199 682.11348,661.67921 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12748" />
+    <path
+       d="M 595.71312,676.39459 L 596.01976,615.13992 C 596.01976,600.26878 636.28118,601.3581 636.28118,615.37729 L 636.29113,627.61684 C 636.29113,629.01412 632.32845,633.62186 631.34735,633.62186 C 632.33669,633.62186 636.31071,636.68767 636.31071,639.0003 L 636.23178,666.89984 C 636.23178,669.35926 628.24062,676.39459 625.89931,676.39459 L 615.59666,676.39459 L 615.60661,665.98327 L 622.60688,666.04253 C 624.00741,666.04253 626.13668,663.76007 626.13668,661.43492 L 625.80051,642.60933 C 625.80051,641.14878 624.29301,638.91144 623.11113,638.91144 L 614.57821,639.03013 L 614.63754,628.74434 L 621.83452,628.62566 C 636.02274,614.43745 606.47061,612.71035 606.47061,621.68262 L 606.37182,676.33533 L 595.71312,676.39459 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12750" />
+    <path
+       d="M 421.04006,660.0939 L 414.17091,666.30414 C 417.88985,670.84227 421.12724,674.80142 429.54948,675.81204 C 433.14566,676.20023 436.5752,676.08844 439.94989,675.81204 C 448.94422,675.38977 454.9342,671.0381 457.08691,664.23045 C 457.80519,661.59098 457.63615,658.90968 457.2051,656.31195 C 455.09489,650.10472 449.95711,646.26901 445.06651,644.83354 C 445.06651,644.83354 432.06601,644.71535 432.06601,644.71535 C 428.81589,645.04278 426.29731,637.85701 432.14958,635.74752 C 434.652,635.16458 437.21791,635.21668 439.8317,635.74752 C 444.33263,636.81338 447.12036,638.25996 449.64116,639.76585 L 456.61416,631.96555 C 452.37793,626.99994 446.40444,625.43879 439.99167,624.37447 C 436.87015,623.92509 434.45076,623.92712 431.84992,624.24912 C 422.67197,626.00918 419.2617,629.6631 417.49447,633.85654 C 416.67613,637.63827 417.15541,641.29026 417.39656,644.96605 C 418.54526,650.7946 422.76583,653.38522 428.01306,654.89371 C 433.17387,655.71922 438.33467,656.265 443.49548,656.31195 C 447.53714,656.5673 446.62155,663.34118 443.61366,664.34861 L 440.54082,665.29413 C 437.05244,666.20297 430.90865,665.98611 429.78586,665.4123 C 426.87059,663.31687 423.95532,661.77064 421.04006,660.0939 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12752" />
+    <path
+       d="M 481.17705,610.87785 L 481.09347,625.25197 L 488.26064,625.33001 L 488.34182,634.54123 L 481.31512,634.54123 L 481.31512,663.99402 C 481.5887,664.90234 482.06524,665.60773 483.44248,665.4123 L 488.42065,665.5795 L 488.39187,675.8957 L 478.9514,675.81204 C 476.59737,675.18136 469.96923,670.19293 469.96923,665.4123 L 469.96923,634.44746 L 464.58755,634.44746 L 464.74036,625.41911 L 469.96923,625.41911 L 469.96923,610.87785"
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12754" />
+    <path
+       d="M 68.965839,676.89434 L 69.132638,605.96818 L 115.23709,605.79384 L 115.05874,616.41237 L 80.405132,616.3459 L 80.458053,635.6751 L 110.17754,635.67259 L 110.0007,647.00304 L 80.460564,647.00304 L 80.468098,676.53564 L 68.965839,676.89434 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12764" />
+    <path
+       d="M 524.71039,624.99199 C 520.56249,625.02893 515.96865,626.21018 512.05827,629.40253 L 512.05827,625.24955 L 500.6295,625.24955 L 500.69389,675.82584 L 512.05827,675.82584 L 512.05827,643.11704 C 516.29835,636.43237 521.93489,633.02487 528.38048,638.54554 L 536.13915,628.91962 C 534.81712,626.86535 530.15055,624.94357 524.71039,624.99199 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12756" />
+    <path
+       d="M 173.034,606.19679 L 173.034,676.08151 L 184.58519,676.08151 L 184.58519,642.80766 C 186.81497,633.1845 203.52435,632.34855 204.0297,644.41199 L 204.0297,676.08151 L 214.16908,676.08151 L 214.11019,636.6369 C 213.12366,631.25914 208.03253,627.3702 202.73539,626.02143 C 199.35714,625.16125 195.65554,625.09469 192.16827,625.75834 C 189.41968,626.28142 186.80423,627.25814 184.58519,628.65744 L 184.58519,606.19679 L 173.034,606.19679 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12758" />
+    <path
+       d="M 251.23291,625.53741 C 247.08501,625.57435 242.49117,626.7556 238.58079,629.94795 L 238.58079,625.79497 L 227.15202,625.79497 L 227.21641,676.37126 L 238.58079,676.37126 L 238.58079,643.66246 C 242.82087,636.97779 248.45741,633.57029 254.903,639.09096 L 262.66167,629.46504 C 261.33964,627.41077 256.67307,625.48899 251.23291,625.53741 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12760" />
+    <path
+       d="M 293.42124,625.53742 C 289.27334,625.57436 284.6795,626.75561 280.76912,629.94796 L 280.76912,625.79498 L 269.34035,625.79498 L 269.40474,676.37127 L 280.76912,676.37127 L 280.76912,643.66247 C 285.0092,636.9778 290.64574,633.5703 297.09133,639.09097 L 304.85,629.46505 C 303.52797,627.41078 298.8614,625.489 293.42124,625.53742 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12762" />
+    <path
+       d="M 391.58048,605.61518 L 401.84024,605.61518 L 401.84024,676.45632 L 391.93508,676.45632 L 391.93508,672.00412 C 391.93219,674.36799 385.98605,677.80266 382.54213,677.92199 L 375.7023,677.92199 C 371.00343,677.92199 361.04551,669.64457 361.04551,663.75377 L 361.04551,638.34867 C 361.04551,631.37242 369.62029,624.91328 376.43514,624.91328 L 383.03069,624.91328 C 386.98867,624.91328 391.7696,629.37242 391.7696,630.68144 L 391.58048,605.61518 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12776" />
+    <path
+       d="M 371.00302,659.73853 L 371.00302,643.11963 C 371.00302,640.43228 375.44884,636.53195 377.5907,636.53195 L 382.98061,636.53195 C 387.08214,636.53195 390.60217,642.07228 390.54146,644.39637 L 390.54146,657.79217 C 390.54146,660.95252 385.29621,665.76476 382.56888,665.76476 L 376.39294,665.76476 C 374.36009,665.76476 371.00302,662.15575 371.00302,659.73853 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12778" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_245.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_245.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_245.svg	(revision 21967)
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px"
+     id="circle4" />
+  <path
+     d="M -176.30905,369.66949 C -176.30905,540.44638 -314.75107,678.88839 -485.52795,678.88839 C -656.30484,678.8884 -794.74686,540.44638 -794.74686,369.66949 C -794.74686,198.8926 -656.30484,60.450585 -485.52795,60.450585 C -314.75107,60.450585 -176.30905,198.8926 -176.30905,369.66949 z "
+     transform="matrix(1.061206,0,0,1.061206,877.7452,-29.79549)"
+     style="opacity:1;fill:#039;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1883" />
+  <path
+     d="M 111.72728,273.8474 L 111.35689,256.82964 C 111.72155,255.68619 111.91702,254.37355 113.47584,254.42426 L 597.66892,254.11359 C 619.63415,258.48517 623.98774,315.63484 635.34809,347.53694 L 635.34809,416.73017 C 629.81419,429.73491 623.83805,430.79885 617.90442,433.01093 L 545.80391,432.42947 C 545.80391,369.56296 450.44517,369.9132 450.44517,432.42947 L 256.82042,432.42947 C 256.82042,369.7928 163.78751,369.77566 163.78751,432.42947 L 96.920099,432.42947 C 93.750756,431.49996 91.590711,428.55186 89.651902,425.16127 L 90.428576,363.12079 L 118.74043,281.40632 C 119.72651,275.97836 114.06738,276.36495 111.72728,273.8474 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1966" />
+  <path
+     d="M 536.20947,432.64648 C 536.21851,453.64193 519.20087,470.66689 498.20543,470.66689 C 477.20998,470.66689 460.19234,453.64193 460.20138,432.64648 C 460.19234,411.65103 477.20998,394.62607 498.20543,394.62607 C 519.20087,394.62607 536.21851,411.65103 536.20947,432.64648 L 536.20947,432.64648 z "
+     style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:8, 2;stroke-dashoffset:0;stroke-opacity:1"
+     id="path2856" />
+  <path
+     d="M 248.6529,432.86618 C 248.66194,453.86163 231.6443,470.88659 210.64886,470.88659 C 189.65341,470.88659 172.63577,453.86163 172.64481,432.86618 C 172.63577,411.87073 189.65341,394.84577 210.64886,394.84577 C 231.6443,394.84577 248.66194,411.87073 248.6529,432.86618 L 248.6529,432.86618 z "
+     style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:8, 2;stroke-dashoffset:0;stroke-opacity:1"
+     id="path3745" />
+  <path
+     d="M 518.62868,285.3242 L 535.33701,342.28502 C 536.32062,344.60802 537.286,346.94522 540.00837,347.91585 L 597.93512,347.7737 C 600.24581,345.76083 602.6278,343.87841 602.99091,339.72321 L 586.57978,282.77532 C 585.23879,278.28259 583.39049,277.00285 581.46262,276.22701 L 522.42778,276.30131 C 519.5498,278.01965 518.53916,281.23187 518.62868,285.3242 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3747" />
+  <path
+     d="M 435.41796,285.21697 L 452.12629,342.17779 C 453.1099,344.50079 454.07528,346.83798 456.79765,347.80862 L 514.7244,347.66647 C 517.03509,345.6536 519.41708,343.77118 519.78019,339.61598 L 503.36906,282.66809 C 502.02807,278.17536 500.17977,276.89562 498.2519,276.11978 L 439.21706,276.19408 C 436.33908,277.91242 435.32844,281.12464 435.41796,285.21697 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path4634" />
+  <path
+     d="M 352.86764,285.21697 L 369.57597,342.17779 C 370.55958,344.50079 371.52496,346.83798 374.24733,347.80862 L 432.17409,347.66647 C 434.48478,345.6536 436.86676,343.77118 437.22987,339.61598 L 420.81875,282.66808 C 419.47776,278.17536 417.62945,276.89562 415.70158,276.11977 L 356.66675,276.19407 C 353.78876,277.91242 352.77813,281.12464 352.86764,285.21697 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path4636" />
+  <path
+     d="M 270.79957,285.21697 L 287.5079,342.17779 C 288.49151,344.50079 289.45689,346.83798 292.17926,347.80862 L 350.10602,347.66647 C 352.4167,345.6536 354.79869,343.77118 355.1618,339.61598 L 338.75067,282.66808 C 337.40969,278.17536 335.56138,276.89562 333.63351,276.11977 L 274.59868,276.19408 C 271.72069,277.91242 270.71006,281.12464 270.79957,285.21697 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path4638" />
+  <path
+     d="M 201.88452,281.23514 L 201.87474,342.50551 C 202.85835,344.82851 204.56676,347.0171 207.28913,347.98774 L 267.44497,347.77128 C 269.75565,345.75841 272.13764,343.87599 272.50075,339.72079 L 256.08963,282.7729 C 254.74864,278.28018 252.90033,277.00043 250.97246,276.22459 L 206.35235,276.15029 C 203.47437,277.86863 202.83525,277.88583 201.88452,281.23514 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path4640" />
+  <path
+     d="M 187.47977,283.11038 L 187.37406,342.38295 C 186.39045,344.70595 185.42507,347.04314 182.7027,348.01378 L 114.5832,347.66147 C 112.27251,345.6486 109.89052,343.76618 109.52741,339.61098 L 129.93157,282.87325 C 131.27256,278.38053 133.12087,277.10079 135.04874,276.32494 L 183.68066,276.50432 C 186.55864,278.22267 187.56928,279.01805 187.47977,283.11038 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path4642" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_250.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_250.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_250.svg	(revision 21967)
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="725" height="725" version="1.1">
+  <circle style="fill:#FFF; stroke:#000; stroke-width:2.5px" r="350" cx="362.5" cy="362.5" />
+  <circle cx="362.5" cy="362.5" r="295" style="stroke:#CC0000; stroke-width:83.75; fill:none" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_251.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_251.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_251.svg	(revision 21967)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="725" height="725" version="1.1">
+
+<circle style="fill:#FFF; stroke:#000; stroke-width:2.5px" r="350" cx="362.5" cy="362.5" />
+<circle cx="362.5" cy="362.5" r="290" style="stroke:#CC0000; stroke-width:93.75; fill:none" />
+<g transform="matrix(0.387772,0.000000,0.000000,0.387772,168.3417,207.4427)" id="CarSymbol">
+ <path style="stroke:none; fill:black; fill-rule:evenodd" id="Car"
+       d="M 26.666667,456.41026 C 24.273504,280.00000 14.700854,431.79487 121.02564,170.25641 C 197.94872,-7.5213676 120.00000,40.341880 517.94872,33.846154 C 872.13675,41.025642 800.68376,-10.256409 882.05128,178.46154 C 983.93162,420.17094 976.06838,293.67521 975.38462,451.28205 C 971.62393,624.27350 1035.5556,579.82906 499.48718,585.64103 C -32.478634,578.46155 30.427346,623.58974 26.666667,456.41026 z     M 134.35897,286.15385 L 207.17949,117.94872 C 220.76607,88.070065 216.43137,92.480742 248.20513,92.307692 L 757.32827,92.252822 C 784.88973,92.354119 780.84626,90.564525 792.20006,116.86821 L 864.61538,284.10256 L 134.35897,286.15385 z     M 82.279202,604.93828 L 218.46154,604.63438 C 218.04369,775.61254 232.21273,766.07788 157.94872,767.17949 C 69.515671,766.83761 83.494777,775.76449 82.279202,604.93828 z     M 783.58974,606.15385 L 920.00000,606.15385 C 919.08832,777.39791 931.54796,765.69801 854.35897,766.15385 C 774.54890,765.09022 784.69135,777.70181 783.58974,606.15385 z" />
+ <circle style="fill:white; fill-opacity:1; stroke:none" r="66.5" cy="412" cx="150" id="LeftLamp" />
+ <circle style="fill:white; fill-opacity:1; stroke:none" r="66.5" cy="412" cx="850" id="RightLamp" />
+</g>
+
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_253.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_253.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_253.svg	(revision 21967)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="725" height="725" version="1.1">
+  <circle style="fill:#FFF; stroke:#000; stroke-width:2.5px" r="350" cx="362.5" cy="362.5" />
+  <circle cx="362.5" cy="362.5" r="290" style="stroke:#CC0000; stroke-width:93.75; fill:none" />
+  <g id="TruckSymbol" transform="matrix(0.436865,0.000000,0.000000,0.436865,143.8720,253.0305)">
+    <path style="fill:black; stroke:none; fill-rule:evenodd"
+          d="M 295.78419,86.816926 L 295.78419,335.08252 L 687.71625,335.40310 C 664.71649,354.19396 650.35734,380.09418 650.54503,414.08813 L 261.47933,413.85667 C 257.75238,281.97351 70.642616,282.42223 66.576854,413.09434 C 38.473995,412.88466 34.575813,406.50199 34.304870,380.61469 L 34.304868,281.61469 C 33.952015,237.37253 28.426810,266.57731 61.177014,182.67997 C 94.875059,93.246445 85.585107,101.51291 116.06480,99.204795 L 295.78419,86.816926 z M 217.93865,233.19966 L 219.48981,127.72046 L 119.43969,133.92512 C 101.20003,135.14704 101.04823,135.26154 94.621050,156.41701 L 69.026832,224.66825 C 60.428592,245.60250 61.797130,251.77115 85.314062,248.71131 L 217.93865,233.19966 z M 966.63494,335.59074 L 966.82552,391.36792 L 902.21802,414.23783 L 845.49140,414.20156 C 845.72230,381.85903 832.28136,354.65711 808.44981,335.54893 L 966.63494,335.59074 z " />
+    <rect x="335.82718" y="12.158683" height="301.70154" width="631.32404" style="fill:black; stroke:none" />
+    <circle r="77" cx="164" cy="412" style="fill:black; stroke:none" />
+    <circle r="77" cx="748" cy="412" style="fill:black; stroke:none" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_254.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_254.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_254.svg	(revision 21967)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="725" height="725" version="1.1">
+
+<circle style="fill:#FFF; stroke:#000; stroke-width:2.5px" r="350" cx="362.5" cy="362.5" id="OuterCircle" />
+<circle cx="362.5" cy="362.5" r="290" style="stroke:#CC0000; stroke-width:93.75; fill:none" id="RedCircle" />
+<g id="BikeSymbol" transform="matrix(0.446708,0.000000,0.000000,0.446708,138.0294,227.2666)">
+ <circle cx="215" cy="409" r="161" style="fill:none; stroke:black; stroke-width:40px" id="FrontWheel" />
+ <circle cx="790" cy="406" r="161" style="fill:none; stroke:black; stroke-width:40px" id="RearWheel" />
+ <path style="fill:black; fill-rule:evenodd; stroke:none" id="Frame"
+       d="M 429.48437,15.467118 C 296.91790,16.759190 319.39993,1.7711686 248.07762,230.98455 C 189.97511,414.12586 196.30387,394.15363 196.00000,407.00000 C 195.78704,416.98022 203.84333,424.89312 213.96694,425.57043 C 235.02054,423.44166 226.16492,427.84741 299.15748,201.18078 C 565.86963,482.53640 465.80592,436.91194 609.34064,442.62576 C 797.98299,440.81686 813.31557,452.44550 815.55516,424.79518 C 815.29674,415.40613 810.90371,409.80716 681.43820,121.67535 L 693.84208,87.564675 L 736.48042,86.789433 L 734.92994,51.128275 L 576.00521,51.128275 C 561.96471,70.337063 581.69033,70.250925 652.75423,86.014190 L 640.35035,120.90010 L 323.27614,121.67535 C 344.63838,47.079788 332.57905,51.731243 428.70913,51.903518 L 429.48437,15.467118 z     M 314.11415,159.91012 L 624.37752,159.36001 L 534.70921,400.30922 L 314.11415,159.91012 z     M 661.78516,174.21304 L 573.76718,405.26023 L 766.30650,405.81034 L 661.78516,174.21304 z" /> 
+</g>
+  
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_255.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_255.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_255.svg	(revision 21967)
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <g
+     transform="matrix(0.658556,0,0,0.658556,137.1874,166.2154)"
+     id="layer1">
+    <path
+       d="M 438.12826,429.16927 C 375.32987,426.00501 282.92602,437.06422 251.92375,397.77007 C 237.71768,323.00073 197.12299,285.36345 127.4223,284.58694 C 84.626532,201.93866 162.31092,188.98722 215.41306,167.75274 C 218.78636,206.16837 216.71935,246.10015 277.48123,268.52224 C 279.92034,256.63453 284.90432,246.92813 300.84807,246.61583 L 390.66436,246.98094 L 454.19295,197.3264 C 464.45935,213.65423 484.83147,234.57558 484.86193,246.25072 L 581.25015,246.61583 C 588.2694,252.59444 594.22298,268.45864 580.15483,284.22184 C 522.41354,282.46908 417.46802,288.77717 438.12826,429.16927 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path4749" />
+    <path
+       d="M 281.45311,113.13794 L 281.71128,79.094411 L 319.83363,73.920272 L 319.83363,46.902363 L 280.93677,53.36735 C 283.79727,29.02724 299.44705,11.428004 333.92156,6.3312047 C 355.56786,7.8567994 378.26787,9.030436 391.1807,49.520754 C 394.96498,65.581097 392.60623,81.830116 382.63201,95.826685 C 350.34442,78.127222 326.17913,90.209532 304.13403,110.06585 L 281.45311,113.13794 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5636" />
+    <path
+       d="M 215.04795,186.7383 L 328.59619,100.93818 C 343.85852,92.79748 360.69029,91.248459 380.80647,103.49393 C 398.00264,119.11558 427.05087,162.39207 450.17678,191.84979 L 385.55287,240.22646 L 323.48469,153.87868 L 225.27094,229.0907 C 217.71099,215.89572 215.94199,200.40941 215.04795,186.7383 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path6523" />
+    <path
+       d="M 241.70075,414.19989 C 241.70789,460.38118 204.27256,497.8223 158.09128,497.8223 C 111.90999,497.8223 74.474661,460.38118 74.481804,414.19989 C 74.474661,368.0186 111.90999,330.57748 158.09128,330.57748 C 204.27256,330.57748 241.70789,368.0186 241.70075,414.19989 L 241.70075,414.19989 z "
+       transform="matrix(0.974466,0,0,0.974466,-15.37667,-10.08382)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:34.99968338;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path7410" />
+    <path
+       d="M 241.70075,414.19989 C 241.70789,460.38118 204.27256,497.8223 158.09128,497.8223 C 111.90999,497.8223 74.474661,460.38118 74.481804,414.19989 C 74.474661,368.0186 111.90999,330.57748 158.09128,330.57748 C 204.27256,330.57748 241.70789,368.0186 241.70075,414.19989 L 241.70075,414.19989 z "
+       transform="matrix(0.974466,0,0,0.974466,388.6178,-9.97323)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:34.99968338;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path8297" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_256.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_256.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_256.svg	(revision 21967)
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zeichen 256.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG sonstiges (fertig)">
+  <metadata
+     id="metadata13">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="569"
+     inkscape:window-width="925"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="0.52137931"
+     inkscape:cx="362.5"
+     inkscape:cy="362.5"
+     inkscape:window-x="88"
+     inkscape:window-y="88"
+     inkscape:current-layer="svg2" />
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px;fill-opacity:1"
+     id="circle4" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="295"
+     style="fill:none;stroke:#c00;stroke-width:83.75"
+     id="circle6" />
+  <g
+     transform="matrix(0.615398,0,0,0.615398,153.3219,243.0239)"
+     id="layer1">
+    <path
+       d="M 136.75462,282.03583 C 136.75462,357.06643 75.930301,417.89075 0.8997,417.89075 C -74.130901,417.89075 -134.95522,357.06643 -134.95522,282.03583 C -134.95522,207.00523 -74.130901,146.18091 0.8997,146.18091 C 75.930301,146.18091 136.75462,207.00523 136.75462,282.03583 z "
+       transform="matrix(0.74724,0,0,0.74724,122.5869,48.79482)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:39.38558578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path15475" />
+    <path
+       d="M 648.90867,96.718727 L 435.78671,96.718727 C 427.74779,99.838733 421.99999,104.94437 426.56202,118.9852 L 481.59203,154.61156 C 505.09805,136.98259 529.46933,134.06306 553.79902,130.43653 L 649.54486,130.11844 L 648.90867,96.718727 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path12814" />
+    <path
+       d="M 582.93177,285.852 L 361.08955,285.58848 C 314.75731,284.17925 288.28246,245.79634 259.51124,204.2434 C 209.17953,131.55162 201.92686,130.76936 191.60083,97.014213 L 265.47547,97.091396 C 270.39789,98.590741 275.32031,99.325646 280.24273,105.42207 L 324.71097,168.71896 C 328.41656,184.39886 325.34225,197.06215 321.45561,210.49425 C 316.96787,226.00375 334.80258,253.63393 362.62544,252.50687 L 583.4588,239.59683 L 582.93177,285.852 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path13701" />
+    <path
+       d="M 108.60035,251.76407 C 110.39975,246.36586 194.33551,41.815551 194.33551,41.815551 C 204.53449,23.526361 218.83992,13.450051 237.52117,12.125404 L 295.10207,12.125404 L 294.78398,45.941389 L 239.266,45.941389 C 232.48018,45.301217 227.37783,49.579445 223.12595,61.608982 L 139.45372,265.8412 C 131.31921,284.84108 100.39972,278.15819 108.60035,251.76407 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path14588" />
+    <path
+       d="M 136.75462,282.03583 C 136.75462,357.06643 75.930301,417.89075 0.8997,417.89075 C -74.130901,417.89075 -134.95522,357.06643 -134.95522,282.03583 C -134.95522,207.00523 -74.130901,146.18091 0.8997,146.18091 C 75.930301,146.18091 136.75462,207.00523 136.75462,282.03583 z "
+       transform="matrix(0.74724,0,0,0.74724,555.8824,49.18351)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:39.38558578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path17247" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_258.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_258.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_258.svg	(revision 21967)
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <g
+     transform="matrix(0.9761,0,0,0.9761,166.1501,173.6844)"
+     id="layer1">
+    <g
+       transform="translate(2.930158,-2.251167)"
+       id="g1892">
+      <path
+         d="M 52.413594,38.866939 L 52.913594,62.616939 L 6.4448442,115.14819 L 18.069844,127.27319 L 71.101094,116.14819 L 94.319844,156.05444 C 84.123594,180.44952 92.866694,191.61419 98.382344,208.08569 L 40.788594,244.42944 L 40.788594,324.74194 L 61.507344,313.61694 L 61.007344,259.08569 L 108.97609,232.80444 L 153.91359,334.83569 L 149.97609,355.21072 L 170.60109,355.55442 L 173.63234,335.33569 L 137.75734,231.30444 C 171.91348,240.9542 206.38281,242.73849 241.31984,231.30444 L 275.13234,291.39819 L 240.72609,355.11692 L 264.53859,355.64822 L 300.41359,289.39819 L 292.81984,238.86694 L 345.35109,280.30444 L 333.72609,350.49192 L 356.97609,344.42944 L 368.06984,272.71069 L 338.28859,221.71069 C 342.53567,195.71256 337.04829,175.97794 325.97609,162.58569 L 336.56984,153.39819 C 354.39122,147.20989 365.19314,153.71935 371.41359,168.52319 L 377.41359,205.24194 L 407.69484,189.67944 L 399.60109,160.46069 C 389.57588,134.24426 359.48885,116.39751 325.78859,140.33569 C 325.78859,140.33569 315.08625,151.23801 313.81984,151.71069 C 295.95766,139.97227 271.36688,138.29839 248.22609,146.86694 L 244.16359,146.89819 C 251.46329,143.16506 251.87072,133.73733 249.38234,126.74194 L 213.53859,64.616939 C 199.79552,48.550019 166.87985,63.298099 173.13234,86.866939 L 177.81984,95.554439 L 146.19484,110.42944 C 130.20815,82.201549 113.44726,54.451059 68.569844,54.523189 L 52.413594,38.866939 z M 187.22609,113.58569 L 198.97609,133.30444 L 171.00734,147.21069 L 170.60109,147.21069 C 165.62405,141.82773 161.30591,135.77545 157.28859,129.39819 L 187.22609,113.58569 z "
+         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path1882" />
+      <path
+         d="M 241.42858,621.29077 C 241.42858,634.21029 230.95524,644.68363 218.03572,644.68363 C 205.1162,644.68363 194.64286,634.21029 194.64286,621.29077 C 194.64286,608.37125 205.1162,597.89791 218.03572,597.89791 C 230.95524,597.89791 241.42858,608.37125 241.42858,621.29077 L 241.42858,621.29077 z "
+         transform="translate(-40.44356,-589.0438)"
+         style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+         id="path1884" />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_259.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_259.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_259.svg	(revision 21967)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns="http://www.w3.org/2000/svg" width="725" height="725" version="1.1">
+
+<circle style="fill:#FFF; stroke:#000; stroke-width:2.5px" r="350" cx="362.5" cy="362.5" />
+<circle cx="362.5" cy="362.5" r="290" style="stroke:#CC0000; stroke-width:93.75; fill:none" />
+<g id="PedestrianSymbol" transform="matrix(0.594656,0.000000,0.000000,0.594656,244.0817,120.6377)">
+ <circle r="56" cx="188" cy="105" style="fill:black; stroke:none" />
+ <path style="fill:black; stroke:none"
+       d="M 22.000000,427.00000 C 173.66667,190.33333 159.33333,183.66667 216.00000,182.00000 C 249.00000,183.00000 250.00000,192.00000 306.00000,236.00000 C 375.00000,286.66667 370.00000,287.33333 369.00000,343.00000 C 368.66667,410.00000 373.33333,405.00000 320.00000,430.00000 L 320.00000,317.00000 L 273.00000,275.00000 L 273.00000,434.00000 L 161.00000,433.00000 L 160.00000,307.00000 C 68.000000,449.00000 74.000000,441.00000 22.000000,427.00000 z     M 163.00000,450.00000 L 272.00000,450.00000 C 272.00000,475.00000 280.00000,473.00000 338.00000,582.00000 C 399.00000,694.33333 400.00000,686.66667 365.00000,751.00000 L 214.00000,480.00000 C 71.000000,756.66667 89.000000,748.33333 10.000000,743.00000 L 89.000000,595.00000 C 156.66667,472.66667 160.33333,472.33333 163.00000,450.00000 z " /> 
+</g>
+
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_260.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_260.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_260.svg	(revision 21967)
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <path
+     d="M 131.43407,350.50236 L 593.25172,350.50236"
+     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:11.26880264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1993" />
+  <g
+     transform="matrix(0.249759,0,0,0.249759,235.6439,375.1742)"
+     id="g1971">
+    <path
+       d="M 26.666667,456.41026 C 24.273504,280 14.700854,431.79487 121.02564,170.25641 C 197.94872,-7.5213676 120,40.34188 517.94872,33.846154 C 872.13675,41.025642 800.68376,-10.256409 882.05128,178.46154 C 983.93162,420.17094 976.06838,293.67521 975.38462,451.28205 C 971.62393,624.2735 1035.5556,579.82906 499.48718,585.64103 C -32.478634,578.46155 30.427346,623.58974 26.666667,456.41026 z M 134.35897,286.15385 L 207.17949,117.94872 C 220.76607,88.070065 216.43137,92.480742 248.20513,92.307692 L 757.32827,92.252822 C 784.88973,92.354119 780.84626,90.564525 792.20006,116.86821 L 864.61538,284.10256 L 134.35897,286.15385 z M 82.279202,604.93828 L 218.46154,604.63438 C 218.04369,775.61254 232.21273,766.07788 157.94872,767.17949 C 69.515671,766.83761 83.494777,775.76449 82.279202,604.93828 z M 783.58974,606.15385 L 920,606.15385 C 919.08832,777.39791 931.54796,765.69801 854.35897,766.15385 C 774.5489,765.09022 784.69135,777.70181 783.58974,606.15385 z "
+       style="fill:black;fill-rule:evenodd;stroke:none"
+       id="Car" />
+    <circle
+       cx="150"
+       cy="412"
+       r="66.5"
+       style="fill:white;fill-opacity:1;stroke:none"
+       id="LeftLamp" />
+    <circle
+       cx="850"
+       cy="412"
+       r="66.5"
+       style="fill:white;fill-opacity:1;stroke:none"
+       id="RightLamp" />
+  </g>
+  <g
+     transform="matrix(0.409224,0,0,0.409224,224.4982,131.9194)"
+     id="layer1">
+    <path
+       d="M 438.12826,429.16927 C 375.32987,426.00501 282.92602,437.06422 251.92375,397.77007 C 237.71768,323.00073 197.12299,285.36345 127.4223,284.58694 C 84.626532,201.93866 162.31092,188.98722 215.41306,167.75274 C 218.78636,206.16837 216.71935,246.10015 277.48123,268.52224 C 279.92034,256.63453 284.90432,246.92813 300.84807,246.61583 L 390.66436,246.98094 L 454.19295,197.3264 C 464.45935,213.65423 484.83147,234.57558 484.86193,246.25072 L 581.25015,246.61583 C 588.2694,252.59444 594.22298,268.45864 580.15483,284.22184 C 522.41354,282.46908 417.46802,288.77717 438.12826,429.16927 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path4749" />
+    <path
+       d="M 281.45311,113.13794 L 281.71128,79.094411 L 319.83363,73.920272 L 319.83363,46.902363 L 280.93677,53.36735 C 283.79727,29.02724 299.44705,11.428004 333.92156,6.3312047 C 355.56786,7.8567994 378.26787,9.030436 391.1807,49.520754 C 394.96498,65.581097 392.60623,81.830116 382.63201,95.826685 C 350.34442,78.127222 326.17913,90.209532 304.13403,110.06585 L 281.45311,113.13794 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5636" />
+    <path
+       d="M 215.04795,186.7383 L 328.59619,100.93818 C 343.85852,92.79748 360.69029,91.248459 380.80647,103.49393 C 398.00264,119.11558 427.05087,162.39207 450.17678,191.84979 L 385.55287,240.22646 L 323.48469,153.87868 L 225.27094,229.0907 C 217.71099,215.89572 215.94199,200.40941 215.04795,186.7383 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path6523" />
+    <path
+       d="M 241.70075,414.19989 C 241.70789,460.38118 204.27256,497.8223 158.09128,497.8223 C 111.90999,497.8223 74.474661,460.38118 74.481804,414.19989 C 74.474661,368.0186 111.90999,330.57748 158.09128,330.57748 C 204.27256,330.57748 241.70789,368.0186 241.70075,414.19989 L 241.70075,414.19989 z "
+       transform="matrix(0.974466,0,0,0.974466,-15.37667,-10.08382)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:34.99968338;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path7410" />
+    <path
+       d="M 241.70075,414.19989 C 241.70789,460.38118 204.27256,497.8223 158.09128,497.8223 C 111.90999,497.8223 74.474661,460.38118 74.481804,414.19989 C 74.474661,368.0186 111.90999,330.57748 158.09128,330.57748 C 204.27256,330.57748 241.70789,368.0186 241.70075,414.19989 L 241.70075,414.19989 z "
+       transform="matrix(0.974466,0,0,0.974466,388.6178,-9.97323)"
+       style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:34.99968338;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path8297" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_261.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_261.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_261.svg	(revision 21967)
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <path
+     d="M 238.44701,421.94816 L 485.49562,421.94816 L 485.58845,214.36485 C 485.58845,207.12828 474.38805,195.18908 465.28342,195.18908 L 258.77528,195.37473 C 249.32685,195.37473 238.62491,206.20034 238.62491,213.64535 L 238.44701,421.94816 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3776" />
+  <path
+     d="M 272.86338,222.65179 L 272.86338,395.41783 L 451.83416,395.41783 L 451.83416,222.96204 L 272.86338,222.65179 z "
+     style="opacity:1;fill:#f60;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3810" />
+  <path
+     d="M 224.36106,428.00086 L 224.44323,442.98899 L 499.46615,442.90681 L 499.54832,428.01695 L 224.36106,428.00086 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3778" />
+  <path
+     d="M 241.91549,448.99623 L 270.17219,448.99623 L 273.58632,454.15983 L 273.69235,526.68358 L 268.39091,531.83659 L 242.88035,532.15468 L 238.50136,527.75447 L 238.71342,452.5694 L 241.91549,448.99623 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3780" />
+  <path
+     d="M 283.125,449.5 L 279.90625,453.0625 L 279.6875,528.25 L 284.09375,532.65625 L 309.59375,532.34375 L 314.90625,527.1875 L 314.875,503.4375 L 317.78125,500.375 L 337.90625,500.28125 L 337.9375,501.21875 L 340.75,501.15625 C 340.83501,503.1623 351.99413,513.40623 362.28125,513.40625 L 362.28125,513.34375 C 372.55965,513.32318 383.66507,503.12902 383.75,501.125 L 386.5625,501.1875 L 386.625,500.21875 L 406.75,500.34375 L 409.53125,503.25 L 409.46875,528.25 L 413.84375,532.65625 L 439.34375,532.34375 L 444.65625,527.1875 L 444.53125,454.65625 L 441.125,449.5 L 412.875,449.5 L 409.65625,453.0625 L 409.59375,476.8125 L 405.5625,480.96875 L 386.59375,480.90625 L 386.625,479.9375 L 383.5625,479.90625 C 383.56251,477.01569 372.5538,467.84375 362.25,467.84375 L 362.25,467.875 C 351.95543,467.89413 340.96874,477.08118 340.96875,479.96875 L 337.90625,479.96875 L 337.90625,480.96875 L 318.9375,481 L 314.8125,476.75 L 314.78125,454.65625 L 311.375,449.5 L 283.125,449.5 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3784" />
+  <path
+     d="M 453.75456,448.90291 L 482.01126,448.90291 L 485.42539,454.06651 L 485.53142,526.59026 L 480.22998,531.74327 L 454.71942,532.06136 L 450.34043,527.66115 L 450.55249,452.47608 L 453.75456,448.90291 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3788" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_262.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_262.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_262.svg	(revision 21967)
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <path
+     d="M 294.04544,221.14362 L 183.255,221.14362 L 183.09088,366.25115 L 217.70291,366.25115 C 217.70291,346.53041 254.48357,345.84843 254.48357,366.25115 C 254.48357,366.25115 254.48357,438.76401 254.48357,438.76401 C 254.48363,445.03123 243.11783,452.40422 240.48875,452.53397 C 240.48875,452.53397 230.31359,452.48158 230.31359,452.48158 C 227.68867,452.48158 217.6159,446.79648 217.64867,439.33743 C 217.64867,439.33743 217.70122,422.19028 217.70122,422.19028 L 178.14358,422.19028 L 178.30449,443.8005 C 178.30449,459.84517 202.26675,492.57459 225.40921,492.57459 C 225.40921,492.57459 245.28039,492.22491 245.28039,492.22491 C 268.501,492.22491 294.49726,461.2583 294.28512,443.8005 L 294.44602,357.71952 C 294.44602,319.56363 239.39049,305.97469 217.91336,327.45182 L 217.57542,259.17346 L 294.35071,259.33759 L 294.04544,221.14362 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1908" />
+  <path
+     d="M 495.56079,294.87587 L 495.43446,340.0281 L 480.58385,340.15444 L 480.58385,366.03161 L 495.49828,366.03161 L 495.62462,461.38956 C 495.62462,473.97512 514.04468,491.02693 522.86158,491.02693 L 545.83034,491.02693 L 545.57767,461.86366 L 533.98324,461.99 C 530.49753,461.99 526.64293,459.44917 526.64293,456.22031 L 526.64293,366.12536 L 545.61025,365.99903 L 545.61025,340.12185 L 526.46286,340.12185 L 526.58919,294.93837 L 495.56079,294.87587 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1886" />
+  <path
+     d="M 455.49795,280.06412 L 368.51182,280.06412 L 368.38296,393.99401 L 395.55829,393.99401 C 395.55829,378.51045 424.4363,377.975 424.4363,393.99401 C 424.4363,393.99401 424.4363,450.92684 424.4363,450.92684 C 424.43634,455.84749 415.51259,461.63633 413.44839,461.7382 C 413.44839,461.7382 405.45945,461.69707 405.45945,461.69707 C 403.39852,461.69707 395.48997,457.23346 395.5157,451.37706 C 395.5157,451.37706 395.55696,437.91412 395.55696,437.91412 L 364.49863,437.91412 L 364.62497,454.8812 C 364.62497,467.47853 383.43872,493.17574 401.60882,493.17574 C 401.60882,493.17574 417.2105,492.90119 417.2105,492.90119 C 435.44196,492.90119 455.85269,468.58803 455.68613,454.8812 L 455.81246,387.29548 C 455.81246,357.33772 412.5861,346.66848 395.72352,363.53106 L 395.45819,309.92291 L 455.73763,310.05178 L 455.49795,280.06412 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1888" />
+  <path
+     d="M 311.3137,459.93357 L 342.53319,459.78807 L 342.53319,491.74752 L 311.34695,514.75268 L 311.3137,459.93357 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1910" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_263.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_263.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_263.svg	(revision 21967)
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       id="circle4"
+       style="fill:#ffffff;stroke:#000000;stroke-width:2.5px" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       id="circle6"
+       style="fill:none;stroke:#cc0000;stroke-width:93.75" />
+  </g>
+  <path
+     d="m 298.79711,198.75117 c -3e-5,6.80582 2.13089,11.95967 6.39275,15.46155 4.2618,3.50206 9.03572,5.25304 14.32176,5.25296 5.28594,8e-5 10.05986,-1.7509 14.32175,-5.25296 4.26177,-3.50188 6.39269,-8.65573 6.39276,-15.46155 -7e-5,-6.73954 -2.13099,-11.87686 -6.39276,-15.41199 -4.26189,-3.53489 -9.03581,-5.30239 -14.32175,-5.30252 -5.28604,1.3e-4 -10.05996,1.76763 -14.32176,5.30252 -4.26186,3.53513 -6.39278,8.67245 -6.39275,15.41199 z m -23.29144,62.14353 c 0,-14.07392 5.68244,-24.9102 17.04735,-32.5089 -4.29489,-3.83227 -7.78034,-8.07758 -10.45637,-12.73595 -2.67604,-4.6582 -4.01406,-10.15893 -4.01405,-16.50223 -1e-5,-11.62908 3.98101,-21.50728 11.94305,-29.63463 7.96201,-8.12709 17.79066,-12.19069 29.48597,-12.19084 11.69521,1.5e-4 21.52386,4.06375 29.48596,12.19084 7.96195,8.12735 11.94297,18.00555 11.94306,29.63463 -9e-5,6.3433 -1.35463,11.84403 -4.06361,16.50223 -2.70916,4.65837 -6.14506,8.90368 -10.3077,12.73595 11.29873,7.66477 16.94814,18.50106 16.94823,32.5089 -9e-5,12.81858 -4.34452,23.2419 -13.03329,31.26999 -8.68893,8.02812 -19.01314,12.04217 -30.97265,12.04217 -12.02569,0 -22.36641,-4.01405 -31.02221,-12.04217 -8.65583,-8.02809 -12.98374,-18.45141 -12.98374,-31.26999 z m 20.71451,-0.19822 c -2e-5,6.60753 2.32912,12.07523 6.98743,16.40311 4.65825,4.32794 10.09292,6.49189 16.30401,6.49187 6.14492,2e-5 11.57958,-2.16393 16.304,-6.49187 4.72429,-4.32788 7.08647,-9.79558 7.08655,-16.40311 -8e-5,-6.60745 -2.36226,-12.09167 -7.08655,-16.45268 -4.72442,-4.36088 -10.15908,-6.54136 -16.304,-6.54142 -6.21109,6e-5 -11.64576,2.18054 -16.30401,6.54142 -4.65831,4.36101 -6.98745,9.84523 -6.98743,16.45268 z"
+     id="path2836"
+     style="font-size:202.9823761px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DIN 1451 Mittelschrift" />
+  <path
+     d="m 399.28689,167.71382 -0.0883,31.57596 -10.38537,0.0884 0,18.09647 10.42999,0 0.0883,66.68594 c 0,8.80137 12.88156,20.72607 19.04741,20.72607 l 16.06257,0 -0.17669,-20.39452 -8.10825,0.0883 c -2.43763,0 -5.13324,-1.77685 -5.13324,-4.03486 l 0,-63.0054 13.26427,-0.0884 0,-18.09648 -13.3902,0 0.0884,-31.59781 -21.69885,-0.0437 z"
+     id="path1886"
+     style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+  <path
+     d="m 353.40625,323.09375 0,45.8125 -29.8125,-29.3125 0,24.15625 38.3125,37.4375 38.4375,-37.375 0,-24.15625 -29.8125,29.3125 0,-45.8125 -17.125,-0.0625 z"
+     id="path1926"
+     style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+  <g
+     transform="matrix(1.428013,0,0,1.428013,1324.992,-643.5999)"
+     id="g1968"
+     style="fill:#000000;fill-opacity:1">
+    <path
+       d="m -794.10851,724.65673 28.2567,0 3.41413,5.1636 0.10603,72.52375 -5.30144,5.15301 -25.51056,0.31809 -4.37899,-4.40021 0.21206,-75.18507 3.20207,-3.57317 z"
+       id="path3780"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+    <path
+       d="m -752.899,725.1605 -3.21875,3.5625 -0.21875,75.1875 4.40625,4.40625 25.5,-0.3125 5.3125,-5.15625 -0.0312,-23.75 2.90625,-3.0625 20.125,-0.0937 0.0312,0.9375 2.8125,-0.0625 c 0.085,2.00605 11.24413,12.24998 21.53125,12.25 l 0,-0.0625 c 10.2784,-0.0206 21.38382,-10.21473 21.46875,-12.21875 l 2.8125,0.0625 0.0625,-0.96875 20.125,0.125 2.78125,2.90625 -0.0625,25 4.375,4.40625 25.5,-0.3125 5.3125,-5.15625 -0.125,-72.53125 -3.40625,-5.15625 -28.25,0 -3.21875,3.5625 -0.0625,23.75 -4.03125,4.15625 -18.96875,-0.0625 0.0312,-0.96875 -3.0625,-0.0312 c 10e-6,-2.89056 -11.0087,-12.0625 -21.3125,-12.0625 l 0,0.0312 c -10.29457,0.0191 -21.28126,9.20618 -21.28125,12.09375 l -3.0625,0 0,1 -18.96875,0.0312 -4.125,-4.25 -0.0312,-22.09375 -3.40625,-5.15625 -28.25,0 z"
+       id="path3784"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+    <path
+       d="m -582.26944,724.56341 28.2567,0 3.41413,5.1636 0.10603,72.52375 -5.30144,5.15301 -25.51056,0.31809 -4.37899,-4.40021 0.21206,-75.18507 3.20207,-3.57317 z"
+       id="path3788"
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_264.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_264.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_264.svg	(revision 21967)
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <path
+     d="M 373.6705,530.12962 L 229.30525,529.89446 L 229.30525,484.72809 L 324.10602,301.57116 L 324.57634,259.75103 C 324.57634,231.37364 278.55195,231.67 278.55195,259.75103 L 278.55195,291.15744 L 229.1114,290.92228 L 229.34656,253.94197 C 242.75061,168.76186 360.97193,171.22248 374.14082,254.64745 L 373.43534,301.59976 C 373.43534,301.59976 288.45405,482.14134 288.45405,482.14134 L 373.35273,482.14134 L 373.6705,530.12962 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1987" />
+  <path
+     d="M 186.83434,361.43995 L 136.72791,275.35796 C 113.58632,331.82472 116.27723,403.3499 136.72791,449.64204 L 186.83434,361.43995 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1983" />
+  <path
+     d="M 536.95093,361.43995 L 587.05736,275.35796 C 610.19895,331.82472 607.50804,403.3499 587.05736,449.64204 L 536.95093,361.43995 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1985" />
+  <path
+     d="M 405.37733,529.94375 L 405.46646,427.01946 L 426.68654,426.93034 L 426.59741,436.19134 C 438.86667,419.24523 453.69936,425.41377 463.64951,434.27918 C 473.90794,426.41966 496.53391,414.78388 508.62572,448.45831 L 508.62572,530.0896 L 486.57109,530.0896 L 486.57109,454.14617 C 486.30307,452.21761 483.74013,448.10992 481.36946,448.03086 C 481.36946,448.03086 472.67053,448.42575 472.67053,448.42575 C 469.95129,448.35104 467.75528,451.36531 467.68449,454.2353 L 467.59536,530.07339 L 445.50833,529.98427 L 445.68658,454.04084 C 445.73677,451.78992 442.08631,447.88365 439.92714,447.94394 C 439.92714,447.94394 431.43501,448.28784 431.43501,448.28784 C 429.94047,448.38883 426.25034,452.4899 426.50829,453.95171 L 426.50829,529.83843 L 405.37733,529.94375 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1991" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_265.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_265.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_265.svg	(revision 21967)
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2"
+   inkscape:version="0.47 r22583"
+   sodipodi:docname="Zeichen_265.svg">
+  <metadata
+     id="metadata2830">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1024"
+     inkscape:window-height="708"
+     id="namedview2828"
+     showgrid="false"
+     inkscape:zoom="0.32551724"
+     inkscape:cx="362.5"
+     inkscape:cy="362.5"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg2" />
+  <defs
+     id="defs9">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 362.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="725 : 362.5 : 1"
+       inkscape:persp3d-origin="362.5 : 241.66667 : 1"
+       id="perspective2832" />
+  </defs>
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill: white; stroke: black; stroke-width: 2.5px;"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill: none; stroke: rgb(204, 0, 0); stroke-width: 93.75;"
+       id="circle6" />
+  </g>
+  <path
+     d="M 269.3845,421.14832 L 269.3845,425.55264 C 269.38439,427.25927 269.3229,429.15029 269.20006,431.22572 C 269.07698,433.30123 268.65033,436.17223 267.92012,439.83873 C 264.4994,451.56124 258.02707,461.08529 248.50312,468.4109 C 238.97898,475.73652 228.11352,479.39933 215.9067,479.39933 C 206.13666,479.39933 196.97778,476.46871 188.43002,470.60747 C 179.88219,464.74623 174.26688,458.70241 171.58407,452.47599 C 168.90122,446.24961 167.1313,441.24352 166.2743,437.45771 C 165.41726,433.67198 164.98876,428.23552 164.98877,421.14832 L 164.98877,406.87342 L 199.78735,406.87342 L 199.78735,418.21957 C 199.7873,421.15583 199.84878,424.02683 199.97179,426.83258 C 200.09471,429.63842 201.3765,433.17827 203.81719,437.45212 C 206.25776,441.72606 210.65276,443.86301 217.00219,443.86298 C 223.35149,443.86301 227.86945,441.72606 230.55609,437.45212 C 233.24257,433.17827 234.58584,427.74367 234.58593,421.14832 L 234.58593,383.42099 C 234.58584,377.31764 233.12147,373.04561 230.19279,370.60487 C 227.26395,368.16435 224.39481,366.69997 221.58537,366.21173 C 218.77578,365.72372 215.78368,365.47965 212.60905,365.47954 L 206.38265,365.47954 L 206.38265,334.70521 L 212.60905,334.70521 C 227.26023,334.70536 234.58584,327.86787 234.58593,314.19272 L 234.58593,284.89395 C 234.58584,281.47353 234.40326,278.96956 234.03818,277.38202 C 233.67294,275.79488 232.20856,273.35238 229.64504,270.05453 C 227.08137,266.75709 223.11302,265.10827 217.73997,265.10806 C 211.63647,265.10827 207.11851,266.93967 204.18608,270.60228 C 201.25354,274.26529 199.7873,279.02918 199.78735,284.89395 L 199.78735,302.8354 L 164.98877,302.8354 L 164.98877,284.89395 C 164.98876,269.50513 169.93336,256.62196 179.8226,246.24439 C 189.71178,235.86728 202.35089,230.67862 217.73997,230.67837 C 226.2877,230.67862 234.52995,232.87705 242.46675,237.27367 C 250.40336,241.67077 256.26274,246.79982 260.04489,252.66083 C 263.82683,258.5223 266.32894,263.95503 267.55124,268.95904 C 268.7733,273.96347 269.38439,279.2751 269.3845,284.89395 L 269.3845,313.46612 C 269.38439,329.3397 262.42393,341.42734 248.50312,349.72908 C 256.32049,355.10232 261.75509,360.53505 264.80692,366.02729 C 267.85853,371.51975 269.38439,378.90498 269.3845,388.18302 L 269.3845,421.14832 z "
+     style="font-size: 366.296px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; text-align: center; line-height: 100%; text-anchor: middle; fill: black; fill-opacity: 1; stroke: none; stroke-width: 1px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1;"
+     id="text2010" />
+  <g
+     transform="matrix(0, -1, 1, 0, -0.607365, 724.393)"
+     id="g1994">
+    <path
+       d="M 186.83434,361.43995 L 136.72791,275.35796 C 113.58632,331.82472 116.27723,403.3499 136.72791,449.64204 L 186.83434,361.43995 z "
+       style="fill: black; fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1;"
+       id="path1983" />
+    <path
+       d="M 536.95093,361.43995 L 587.05736,275.35796 C 610.19895,331.82472 607.50804,403.3499 587.05736,449.64204 L 536.95093,361.43995 z "
+       style="fill: black; fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1;"
+       id="path1985" />
+  </g>
+  <path
+     d="M 432.43464,477.15265 L 432.5417,353.5195 L 458.03137,353.41244 L 457.9243,364.5368 C 472.6622,344.18105 490.4793,351.59073 502.43147,362.23991 C 514.75394,352.79901 541.93237,338.82206 556.45711,379.27195 L 556.45711,477.32785 L 529.96498,477.32785 L 529.96498,386.10423 C 529.64303,383.78764 526.56442,378.85346 523.71676,378.75849 C 523.71676,378.75849 513.26756,379.23284 513.26756,379.23284 C 510.0012,379.14309 507.36334,382.76385 507.2783,386.2113 L 507.17124,477.30838 L 480.64019,477.20133 L 480.85431,385.97771 C 480.9146,383.27389 476.52965,378.58166 473.93604,378.65408 C 473.93604,378.65408 463.73525,379.06718 463.73525,379.06718 C 461.94,379.18849 457.5074,384.11471 457.81725,385.87065 L 457.81725,477.02614 L 432.43464,477.15265 z "
+     style="fill: black; fill-opacity: 1; fill-rule: evenodd; stroke: none; stroke-width: 1px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1;"
+     id="path1991" />
+  <path
+     d="M 282.55272,450.95142 L 307.68201,450.95142 L 307.68201,476.75703 L 282.6813,495.41113 L 282.55272,450.95142 z "
+     style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path2008" />
+  <path
+     d="M 403.66371,442.05384 C 403.66363,447.27661 402.35795,452.76101 399.74666,458.50706 C 397.13521,464.25315 392.86883,469.17172 386.94749,473.26277 C 381.02602,477.35383 374.58527,479.39935 367.62521,479.39936 C 360.13906,479.39935 353.26131,477.484 346.99193,473.65328 C 340.72249,469.82257 336.45611,465.51368 334.19276,460.7266 C 331.92938,455.93955 330.53736,451.97866 330.01669,448.84393 C 329.496,445.70926 329.23566,442.48689 329.23567,439.17681 L 329.23567,408.62139 C 329.23566,403.92471 330.32351,399.70482 332.49922,395.96169 C 334.6749,392.21872 337.76578,388.86751 341.77184,385.90804 C 333.41438,379.63873 329.23566,371.02095 329.23567,360.05468 L 329.23567,336.55234 C 329.23566,333.24245 329.88784,329.88991 331.19221,326.49471 C 332.49655,323.09982 335.62993,318.18126 340.59234,311.73901 C 345.55472,305.29709 354.39033,302.07605 367.09921,302.07588 C 371.97655,302.07605 376.59095,303.07756 380.9424,305.08041 C 385.29373,307.08361 390.16846,310.91432 395.56661,316.57257 C 400.9646,322.23114 403.66363,329.84741 403.66371,339.4214 L 403.66371,361.87971 C 403.66363,371.97995 399.48491,379.98939 391.12754,385.90804 C 399.48491,391.65155 403.66363,399.83366 403.66371,410.45439 L 403.66371,442.05384 z M 366.58119,326.88522 C 362.92576,326.88538 359.87872,328.10472 357.44007,330.54327 C 355.00134,332.98211 353.78199,335.94148 353.78202,339.4214 L 353.78202,361.87971 C 353.78199,365.88588 354.86984,369.32475 357.04557,372.19635 C 359.22123,375.06817 362.3121,376.50402 366.31819,376.50392 C 370.66954,376.50402 373.84675,375.15451 375.84983,372.45537 C 377.8528,369.75644 378.85431,366.23122 378.85437,361.87971 L 378.85437,339.4214 C 378.85431,336.1115 377.67879,333.19463 375.32782,330.67078 C 372.97674,328.14723 370.0612,326.88538 366.58119,326.88522 L 366.58119,326.88522 z M 366.58119,395.30419 C 362.75043,395.30428 359.65956,396.56746 357.30857,399.09374 C 354.9575,401.62017 353.78199,404.79605 353.78202,408.62139 L 353.78202,439.17681 C 353.78199,443.70358 354.826,447.36029 356.91407,450.14696 C 359.00207,452.93369 362.39711,454.32703 367.09921,454.32701 C 371.62589,454.32703 374.71676,452.84735 376.37184,449.88795 C 378.0268,446.9286 378.85431,443.35823 378.85437,439.17681 L 378.85437,408.62139 C 378.85431,404.79605 377.76646,401.62017 375.59082,399.09374 C 373.41507,396.56746 370.41186,395.30428 366.58119,395.30419 L 366.58119,395.30419 z "
+     style="font-size: 261.148px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; text-align: center; line-height: 100%; text-anchor: middle; fill: black; fill-opacity: 1; stroke: none; stroke-width: 1px; stroke-linecap: butt; stroke-linejoin: miter; stroke-opacity: 1;"
+     id="text2014" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_266.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_266.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_266.svg	(revision 21967)
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <path
+     d="M 213.03125,432.5 L 170.84375,474.6875 L 213.0625,517.0625 L 238.15625,516.75 L 206.65625,484.59375 L 267.09375,484.59375 L 267.0625,464.9375 L 206.625,464.9375 L 238.125,432.8125 L 213.03125,432.5 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1881" />
+  <path
+     d="M 511.47267,432.54183 L 553.66017,474.72933 L 511.44142,517.10433 L 486.34767,516.79183 L 517.84767,484.63558 L 457.41017,484.63558 L 457.44142,464.97933 L 517.87892,464.97933 L 486.37892,432.85433 L 511.47267,432.54183 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path1892" />
+  <path
+     d="M 292.74349,507.09531 L 292.74349,445.60548 L 282.44543,453.11758 L 282.44543,442.12304 L 292.74349,434.61093 L 303.14104,434.61093 L 303.14104,507.09531 L 292.74349,507.09531 z "
+     transform="scale(0.993187,1.006859)"
+     style="font-size:101.88607025px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text1894" />
+  <path
+     d="M 348.33509,489.64451 L 348.33509,458.84985 C 348.33506,455.36747 347.39812,452.64786 345.52427,450.69101 C 343.65036,448.73428 341.18779,447.75588 338.13654,447.75582 C 335.05208,447.75588 332.58121,448.73428 330.72393,450.69101 C 328.86662,452.64786 327.93797,455.36747 327.93799,458.84985 L 327.93799,489.64451 C 327.93797,493.16012 328.86662,495.88803 330.72393,497.82822 C 332.58121,499.76845 335.05208,500.73855 338.13654,500.73854 C 341.18779,500.73855 343.65036,499.76845 345.52427,497.82822 C 347.39812,495.88803 348.33506,493.16012 348.33509,489.64451 L 348.33509,489.64451 z M 317.54044,490.2415 L 317.54044,458.25286 C 317.54043,451.58655 319.62989,446.43753 323.80882,442.80579 C 327.98772,439.17418 332.76363,437.35834 338.13654,437.35827 C 343.47624,437.35834 348.24385,439.17418 352.43939,442.80579 C 356.63485,446.43753 358.7326,451.58655 358.73264,458.25286 L 358.73264,490.2415 C 358.7326,496.90788 356.63485,502.04861 352.43939,505.6637 C 348.24385,509.2788 343.47624,511.08634 338.13654,511.08634 C 332.76363,511.08634 327.98772,509.2788 323.80882,505.6637 C 319.62989,502.04861 317.54043,496.90788 317.54044,490.2415 L 317.54044,490.2415 z "
+     style="font-size:101.8860321px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text1898" />
+  <path
+     d="M 371.9405,510.98935 L 371.9405,459.34985 L 382.33805,459.34985 L 382.33805,464.872 L 382.53705,464.872 C 385.82046,460.79262 390.29787,458.75292 395.96929,458.75286 C 399.58435,458.75292 402.45321,459.39965 404.57587,460.69308 C 406.69846,461.9866 408.68842,463.57857 410.54576,465.46898 C 414.62513,460.99162 420.06435,458.75292 426.86344,458.75286 C 430.87646,458.75292 434.74859,460.27855 438.47984,463.32978 C 442.21094,466.38109 444.07653,470.82534 444.07661,476.66252 L 444.07661,510.98935 L 433.67906,510.98935 L 433.67906,480.24445 C 433.67899,476.76205 432.70059,474.04244 430.74387,472.08561 C 428.78701,470.12885 426.36589,469.15045 423.48051,469.15041 C 420.49551,469.15045 418.03293,470.12885 416.09277,472.08561 C 414.15251,474.04244 413.18241,476.76205 413.18246,480.24445 L 413.18246,510.98935 L 402.83466,510.98935 L 402.83466,480.24445 C 402.83462,476.76205 401.85622,474.04244 399.89946,472.08561 C 397.94263,470.12885 395.52152,469.15045 392.6361,469.15041 C 389.65114,469.15045 387.18856,470.12885 385.24837,472.08561 C 383.30814,474.04244 382.33803,476.76205 382.33805,480.24445 L 382.33805,510.98935 L 371.9405,510.98935 z "
+     style="font-size:101.8860321px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text1902" />
+  <g
+     transform="matrix(0.400053,0,0,0.400053,143.8447,217.2083)"
+     id="g2148">
+    <path
+       d="M 295.78419,86.816926 L 295.78419,335.08252 L 687.71625,335.4031 C 664.71649,354.19396 650.35734,380.09418 650.54503,414.08813 L 261.47933,413.85667 C 257.75238,281.97351 70.642616,282.42223 66.576854,413.09434 C 38.473995,412.88466 34.575813,406.50199 34.30487,380.61469 L 34.304868,281.61469 C 33.952015,237.37253 28.42681,266.57731 61.177014,182.67997 C 94.875059,93.246445 85.585107,101.51291 116.0648,99.204795 L 295.78419,86.816926 z M 217.93865,233.19966 L 219.48981,127.72046 L 119.43969,133.92512 C 101.20003,135.14704 101.04823,135.26154 94.62105,156.41701 L 69.026832,224.66825 C 60.428592,245.6025 61.79713,251.77115 85.314062,248.71131 L 217.93865,233.19966 z M 966.63494,335.59074 L 966.82552,391.36792 L 902.21802,414.23783 L 845.4914,414.20156 C 845.7223,381.85903 832.28136,354.65711 808.44981,335.54893 L 966.63494,335.59074 z "
+       style="fill:black;fill-rule:evenodd;stroke:none"
+       id="path2135" />
+    <rect
+       width="631.32404"
+       height="301.70154"
+       x="335.82718"
+       y="12.158683"
+       style="fill:black;stroke:none"
+       id="rect2137" />
+    <circle
+       cx="164"
+       cy="412"
+       r="77"
+       style="fill:black;stroke:none"
+       id="circle2139" />
+    <circle
+       cx="748"
+       cy="412"
+       r="77"
+       style="fill:black;stroke:none"
+       id="circle2141" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_267.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_267.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_267.svg	(revision 21967)
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   sodipodi:docname="Zeichen_267.svg"
+   inkscape:version="0.41"
+   sodipodi:version="0.32"
+   width="725"
+   height="725"
+   version="1.1">
+  <metadata>
+    <RDF>
+      <Work>
+        <format>image/svg+xml</format>
+        <type resource="http://purl.org/dc/dcmitype/StillImage" />
+      </Work>
+    </RDF>
+    <rdf:RDF>
+      <cc:Work>
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>MarianSigler; mariansigler@gmail.com</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <cc:license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+        <dc:title>Zeichen 267</dc:title>
+        <dc:description>Sign no 267 of German Straßenverkehrsordnung</dc:description>
+      </cc:Work>
+      <cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
+        <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+        <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" />
+        <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <defs />
+  <path style="fill:#FFFFFF; fill-opacity:1; fill-rule:evenodd; stroke:#000000; stroke-width:2.5; stroke-linecap:butt; stroke-linejoin:miter; stroke-miterlimit:4; stroke-dashoffset:0; stroke-opacity:1"
+     d="M 712.50000,362.50000 C 712.50000,555.79966 555.79966,712.50000 362.50000,712.50000 C 169.20034,712.50000 12.500000,555.79966 12.500000,362.50000 C 12.500000,169.20034 169.20034,12.500000 362.50000,12.500000 C 555.79966,12.500000 712.50000,169.20034 712.50000,362.50000 L 712.50000,362.50000 z " />
+  <path style="fill:#CC0000; fill-opacity:1; fill-rule:evenodd;"
+     d="M 361.44830,27.362500 C 176.66244,27.362500 25.948300,178.07664 25.948300,362.86250 C 25.948300,547.64836 176.66244,698.36250 361.44830,698.36250 C 546.23416,698.36250 696.94830,547.64836 696.94830,362.86250 C 696.94830,178.07664 546.23416,27.362500 361.44830,27.362500 z " />
+  <rect
+     style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:2.5000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+     id="rect1324"
+     width="614.05017"
+     height="109.03694"
+     x="55.474930"
+     y="307.98154" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_268.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_268.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_268.svg	(revision 21967)
@@ -0,0 +1,341 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.44"
+   sodipodi:docname="Zeichen 268.svg"
+   sodipodi:docbase="C:\Dokumente und Einstellungen\Internet\Desktop\Wiki\SVG">
+  <metadata
+     id="metadata18">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     inkscape:window-height="749"
+     inkscape:window-width="1024"
+     inkscape:pageshadow="2"
+     inkscape:pageopacity="0.0"
+     guidetolerance="10.0"
+     gridtolerance="10.0"
+     objecttolerance="10.0"
+     borderopacity="1.0"
+     bordercolor="#666666"
+     pagecolor="#ffffff"
+     id="base"
+     inkscape:zoom="1.1452534"
+     inkscape:cx="436.06524"
+     inkscape:cy="272.50156"
+     inkscape:window-x="-4"
+     inkscape:window-y="-4"
+     inkscape:current-layer="svg2" />
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px"
+     id="circle4" />
+  <path
+     d="M -176.30905,369.66949 C -176.30905,540.44638 -314.75107,678.88839 -485.52795,678.88839 C -656.30484,678.8884 -794.74686,540.44638 -794.74686,369.66949 C -794.74686,198.8926 -656.30484,60.450585 -485.52795,60.450585 C -314.75107,60.450585 -176.30905,198.8926 -176.30905,369.66949 z "
+     style="opacity:1;fill:#039;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1883"
+     transform="matrix(1.061206,0,0,1.061206,877.7452,-29.79549)" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     d="M 329.44838,657.68381 C 192.51917,632.50501 170.53994,539.42549 147.07361,390.69976 C 127.0443,263.7573 200.46315,101.82253 299.1142,74.987119 C 309.35178,72.202255 318.99733,69.792623 329.7229,70.133679 C 329.7229,70.133679 489.23922,51.793627 553.19577,181.19371 C 555.0725,189.41912 594.5839,259.0079 593.91861,353.08353 C 593.51364,410.34813 580.79617,471.7149 551.04254,542.00185 C 529.55009,592.77341 490.41095,625.96728 447.58622,642.16938 C 404.12667,658.61166 356.93604,657.68381 329.44838,657.68381 z "
+     id="path13508"
+     sodipodi:nodetypes="cssccsssc" />
+  <path
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.40503788;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;opacity:1"
+     d="M 390.2957,653.23224 C 627.1079,672.60167 687.94537,106.10936 399.69644,72.397416 L 375.24447,72.960894"
+     id="path9079"
+     sodipodi:nodetypes="cc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:9.69643307;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 427.92039,104.46108 C 421.90646,93.219976 444.63934,85.189672 451.81118,98.595141 L 466.98371,129.99606 C 471.37948,138.21252 453.83777,151.50201 445.84806,136.56779 C 445.84806,136.56779 427.92039,104.46108 427.92039,104.46108 z "
+     id="path8169"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1910"
+     sodipodi:cx="518.95953"
+     sodipodi:cy="368.92087"
+     sodipodi:rx="39.67186"
+     sodipodi:ry="101.27613"
+     d="M 558.63139 368.92087 A 39.67186 101.27613 0 1 1  479.28767,368.92087 A 39.67186 101.27613 0 1 1  558.63139 368.92087 z"
+     transform="matrix(0.945362,0,0,1.220953,-64.01822,-87.09674)" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1912"
+     sodipodi:cx="544.76239"
+     sodipodi:cy="405.36737"
+     sodipodi:rx="30.640867"
+     sodipodi:ry="79.021187"
+     d="M 575.40326 405.36737 A 30.640867 79.021187 0 1 1  514.12152,405.36737 A 30.640867 79.021187 0 1 1  575.40326 405.36737 z"
+     transform="matrix(1.012133,0,0,1.410639,-135.4053,-209.0344)" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 359.56254,554.24858 C 348.35555,561.67368 337.00307,540.35976 350.36787,531.50501 L 381.87493,512.36576 C 390.06647,506.93851 406.3678,522.43718 391.47889,532.3017 C 391.47889,532.3017 359.56254,554.24858 359.56254,554.24858 z "
+     id="path8143"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 345.81174,189.7829 C 334.40378,182.67041 349.08026,163.49325 362.6847,171.97519 L 393.17789,192.69164 C 401.51632,197.89038 394.18493,219.1552 379.02904,209.70598 C 379.02904,209.70598 345.81174,189.7829 345.81174,189.7829 z "
+     id="path8155"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:4.44534969;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path1914"
+     sodipodi:cx="179.45456"
+     sodipodi:cy="396.90631"
+     sodipodi:rx="73.413231"
+     sodipodi:ry="108.76034"
+     d="M 252.86779 396.90631 A 73.413231 108.76034 0 1 1  106.04133,396.90631 A 73.413231 108.76034 0 1 1  252.86779 396.90631 z"
+     transform="matrix(1.073414,0,0,1.725473,270.9496,-322.5078)" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 318.83144,443.65832 C 305.39458,444.08226 306.94365,419.98324 322.96765,419.47768 L 359.83125,419.76211 C 369.65267,419.45224 375.37068,441.20646 357.51931,441.76967 C 357.51931,441.76967 318.83144,443.65832 318.83144,443.65832 z "
+     id="path8133"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:8.01780701;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path3688"
+     sodipodi:cx="647.67798"
+     sodipodi:cy="418.03397"
+     sodipodi:rx="79.282616"
+     sodipodi:ry="120.75352"
+     d="M 726.96059 418.03397 A 79.282616 120.75352 0 1 1  568.39536,418.03397 A 79.282616 120.75352 0 1 1  726.96059 418.03397 z"
+     transform="matrix(1.242475,0,0,1.815766,-342.0382,-397.9389)" />
+  <path
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;opacity:1"
+     d="M 401.6986,624.98193 C 239.47879,534.56322 257.80609,170.85532 405.76437,98.057452"
+     id="path5460"
+     sodipodi:nodetypes="cc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;opacity:1"
+     d="M 246.77944,250.95683 C 237.27342,241.45081 255.90315,226.08542 267.23947,237.42174 L 292.26366,264.49194 C 299.21191,271.44018 287.26566,290.49875 274.63656,277.86965 C 274.63656,277.86965 246.77944,250.95683 246.77944,250.95683 z "
+     id="path6349"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 194.60521,220.36455 C 182.82841,213.88107 196.44347,193.93635 210.4878,201.66816 L 242.0594,220.70076 C 250.66745,225.43973 244.49984,247.07079 228.85391,238.45724 C 228.85391,238.45724 194.60521,220.36455 194.60521,220.36455 z "
+     id="path8121"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 229.79946,321.52208 C 217.21274,326.24472 210.9294,302.92774 225.93958,297.2958 L 260.93635,285.70996 C 270.13637,282.25804 282.54668,301.01773 265.82476,307.29193 C 265.82476,307.29193 229.79946,321.52208 229.79946,321.52208 z "
+     id="path8123"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 176.47074,352.0051 C 165.17319,359.29167 154.08396,337.83961 167.55676,329.15007 L 199.29704,310.40013 C 207.55477,305.07414 223.66407,320.7723 208.65485,330.45279 C 208.65485,330.45279 176.47074,352.0051 176.47074,352.0051 z "
+     id="path8125"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 316.75689,302.46852 C 303.36251,301.3198 307.71633,277.56677 323.68967,278.93667 L 360.26762,283.52573 C 370.05799,284.36536 373.19542,306.63863 355.40049,305.1125 C 355.40049,305.1125 316.75689,302.46852 316.75689,302.46852 z "
+     id="path8127"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 222.1274,426.3885 C 209.38741,422.09644 219.24941,400.05324 234.44236,405.17169 L 268.88894,418.30329 C 278.201,421.44048 275.96748,443.82247 259.04194,438.1203 C 259.04194,438.1203 222.1274,426.3885 222.1274,426.3885 z "
+     id="path8129"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 161.51935,394.41241 C 149.77302,387.87386 163.48133,367.9931 177.4893,375.79059 L 208.97145,394.9708 C 217.55721,399.75002 211.2884,421.35197 195.68296,412.66525 C 195.68296,412.66525 161.51935,394.41241 161.51935,394.41241 z "
+     id="path8131"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 262.86086,491.70217 C 253.5731,501.42157 237.78872,483.14549 248.86474,471.55471 L 275.35982,445.92239 C 282.14852,438.81817 301.4734,450.32864 289.13427,463.24121 C 289.13427,463.24121 262.86086,491.70217 262.86086,491.70217 z "
+     id="path8135"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 203.505,525.06496 C 191.55826,531.22972 182.58641,508.80946 196.83339,501.45774 L 230.23178,485.85154 C 238.96403,481.34552 253.48672,498.52206 237.61502,506.71216 C 237.61502,506.71216 203.505,525.06496 203.505,525.06496 z "
+     id="path8137"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 191.36584,547.74724 C 178.36055,544.34262 186.6813,521.67266 202.19063,525.7328 L 237.45967,536.46131 C 246.96564,538.94984 246.2786,561.4325 229.0006,556.90933 C 229.0006,556.90933 191.36584,547.74724 191.36584,547.74724 z "
+     id="path8139"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 258.34347,561.97517 C 244.9092,561.47578 248.1088,537.53994 264.12971,538.13548 L 300.88684,540.94961 C 310.70637,541.31462 314.91765,563.41003 297.06973,562.74657 C 297.06973,562.74657 258.34347,561.97517 258.34347,561.97517 z "
+     id="path8141"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:9.5115118;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 298.17774,611.28257 C 289.37856,620.56543 274.49021,603.04662 284.9836,591.97643 L 310.08101,567.49919 C 316.51261,560.71405 334.76099,571.76553 323.07094,584.09815 C 323.07094,584.09815 298.17774,611.28257 298.17774,611.28257 z "
+     id="path8145"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10.40503788;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;opacity:1"
+     d="M 390.28808,653.45521 L 390.28808,653.45521 L 390.28808,653.45521 L 340.81719,652.87204 C 117.21855,677.74712 42.686282,106.71164 330.93521,72.999699 L 343.37379,72.52431 L 347.30305,72.960895"
+     id="path8191"
+     sodipodi:nodetypes="ccccccc" />
+  <path
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:9.6683054;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     d="M 285.70302,643.49342 C 273.53854,640.99085 280.15263,617.51894 294.65927,620.50336 L 327.71848,628.79915 C 336.60989,630.62836 337.03317,653.3637 320.8722,650.03893 C 320.8722,650.03893 285.70302,643.49342 285.70302,643.49342 z "
+     id="path8147"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:9.51073933;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     d="M 349.79953,654.76463 C 336.98918,655.75818 337.42422,632.90615 352.70108,631.72132 L 387.90857,630.36406 C 397.27205,629.63784 403.67364,649.95247 386.6546,651.27242 C 386.6546,651.27242 349.79953,654.76463 349.79953,654.76463 z "
+     id="path8149"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:8.2296505;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 247.86886,626.1474 C 237.61251,628.90944 234.8736,608.30748 247.10471,605.01362 L 275.47869,598.65683 C 282.97538,596.63796 290.91632,613.96192 277.29038,617.63139 C 277.29038,617.63139 247.86886,626.1474 247.86886,626.1474 z "
+     id="path8151"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:9.25247478;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 444.70488,629.93767 C 438.19376,640.69848 421.00802,626.6121 428.77279,613.77941 L 447.71537,585.03064 C 452.47454,577.16522 471.60397,584.30186 462.9537,598.59798 C 462.9537,598.59798 444.70488,629.93767 444.70488,629.93767 z "
+     id="path8153"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 259.32192,185.24493 C 245.89043,185.81421 247.17869,161.69985 263.19628,161.02096 L 300.0608,160.90655 C 309.8783,160.49044 315.83133,182.18153 297.9871,182.93783 C 297.9871,182.93783 259.32192,185.24493 259.32192,185.24493 z "
+     id="path8157"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 200.77116,197.77209 C 187.69589,200.89719 184.35297,176.98093 199.94577,173.25413 L 236.10928,166.09828 C 245.6664,163.81404 255.65419,183.9681 238.28321,188.1199 C 238.28321,188.1199 200.77116,197.77209 200.77116,197.77209 z "
+     id="path8159"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:9.43849659;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 281.39634,129.5502 C 272.17124,120.84139 289.23623,105.74447 300.23753,116.13007 L 324.58322,140.99146 C 331.32613,147.357 320.6579,165.74765 308.40202,154.17766 C 308.40202,154.17766 281.39634,129.5502 281.39634,129.5502 z "
+     id="path8161"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:8.7036705;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 245.1619,120.74968 C 235.49164,119.54435 238.63494,94.620884 250.16711,96.058286 L 276.57505,100.87348 C 283.64335,101.75447 285.90846,125.12528 273.06117,123.52394 C 273.06117,123.52394 245.1619,120.74968 245.1619,120.74968 z "
+     id="path8163"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:9.69535637;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:1"
+     d="M 289.38352,104.58938 C 276.97579,106.22794 276.41195,81.820179 291.20867,79.866137 L 325.3689,76.828453 C 334.4381,75.630775 341.53701,97.021994 325.05288,99.198871 C 325.05288,99.198871 289.38352,104.58938 289.38352,104.58938 z "
+     id="path8165"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     d="M 348.79823,95.831562 C 335.3555,95.68362 337.92815,71.672297 353.95915,71.848728 L 390.77729,73.700788 C 400.60301,73.808918 405.39059,95.786661 387.53142,95.590098 C 387.53142,95.590098 348.79823,95.831562 348.79823,95.831562 z "
+     id="path8167"
+     sodipodi:nodetypes="ccccc" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8171"
+     sodipodi:cx="231.47882"
+     sodipodi:cy="374.66571"
+     sodipodi:rx="15.135154"
+     sodipodi:ry="15.135154"
+     d="M 246.61397 374.66571 A 15.135154 15.135154 0 1 1  216.34367,374.66571 A 15.135154 15.135154 0 1 1  246.61397 374.66571 z"
+     transform="translate(60.98577,57.42455)" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8173"
+     sodipodi:cx="231.47882"
+     sodipodi:cy="374.66571"
+     sodipodi:rx="15.135154"
+     sodipodi:ry="15.135154"
+     d="M 246.61397 374.66571 A 15.135154 15.135154 0 1 1  216.34367,374.66571 A 15.135154 15.135154 0 1 1  246.61397 374.66571 z"
+     transform="translate(-82.35305,-12.9094)" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8175"
+     sodipodi:cx="231.47882"
+     sodipodi:cy="374.66571"
+     sodipodi:rx="15.135154"
+     sodipodi:ry="15.135154"
+     d="M 246.61397 374.66571 A 15.135154 15.135154 0 1 1  216.34367,374.66571 A 15.135154 15.135154 0 1 1  246.61397 374.66571 z"
+     transform="matrix(0.922621,0,0,0.922621,78.6747,-52.69419)" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8177"
+     sodipodi:cx="231.47882"
+     sodipodi:cy="374.66571"
+     sodipodi:rx="15.135154"
+     sodipodi:ry="15.135154"
+     d="M 246.61397 374.66571 A 15.135154 15.135154 0 1 1  216.34367,374.66571 A 15.135154 15.135154 0 1 1  246.61397 374.66571 z"
+     transform="matrix(0.94473,0,0,0.94473,-46.18865,-150.8981)" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8179"
+     sodipodi:cx="231.47882"
+     sodipodi:cy="374.66571"
+     sodipodi:rx="15.135154"
+     sodipodi:ry="15.135154"
+     d="M 246.61397 374.66571 A 15.135154 15.135154 0 1 1  216.34367,374.66571 A 15.135154 15.135154 0 1 1  246.61397 374.66571 z"
+     transform="matrix(0.911567,0,0,0.911567,116.1779,-167.6307)" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8181"
+     sodipodi:cx="231.47882"
+     sodipodi:cy="374.66571"
+     sodipodi:rx="15.135154"
+     sodipodi:ry="15.135154"
+     d="M 246.61397 374.66571 A 15.135154 15.135154 0 1 1  216.34367,374.66571 A 15.135154 15.135154 0 1 1  246.61397 374.66571 z"
+     transform="matrix(0.889459,0,0,0.889459,209.4355,-244.8166)" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8183"
+     sodipodi:cx="231.47882"
+     sodipodi:cy="374.66571"
+     sodipodi:rx="15.135154"
+     sodipodi:ry="15.135154"
+     d="M 246.61397 374.66571 A 15.135154 15.135154 0 1 1  216.34367,374.66571 A 15.135154 15.135154 0 1 1  246.61397 374.66571 z"
+     transform="matrix(0.900513,0,0,0.900513,-36.39865,185.7324)" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8185"
+     sodipodi:cx="231.47882"
+     sodipodi:cy="374.66571"
+     sodipodi:rx="15.135154"
+     sodipodi:ry="15.135154"
+     d="M 246.61397 374.66571 A 15.135154 15.135154 0 1 1  216.34367,374.66571 A 15.135154 15.135154 0 1 1  246.61397 374.66571 z"
+     transform="matrix(0.878405,0,0,0.878405,122.7414,220.2794)" />
+  <path
+     sodipodi:type="arc"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8187"
+     sodipodi:cx="231.47882"
+     sodipodi:cy="374.66571"
+     sodipodi:rx="15.135154"
+     sodipodi:ry="15.135154"
+     d="M 246.61397 374.66571 A 15.135154 15.135154 0 1 1  216.34367,374.66571 A 15.135154 15.135154 0 1 1  246.61397 374.66571 z"
+     transform="matrix(0.867351,0,0,0.867351,214.1078,311.003)" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_269.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_269.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_269.svg	(revision 21967)
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     style="fill-opacity:1"
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;fill-opacity:1;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;fill-opacity:1;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <g
+     transform="translate(-8.5735e-2,0)"
+     style="fill-opacity:1"
+     id="g3776">
+    <path
+       d="M 226.10768,484.87409 C 240.03676,479.59445 254.37822,475.64475 284.33382,484.87409 C 300.37289,489.75503 317.13972,490.13557 334.81893,484.87409 C 352.45815,478.6733 370.86684,477.32049 390.68911,484.87409 C 407.77794,490.95448 427.91826,488.51014 447.1902,483.51021 C 466.27121,476.91195 481.73978,480.2148 499.40036,484.87409 L 499.40036,500.18926 C 480.10384,492.35999 460.80731,494.09027 441.51078,500.18926 C 421.41231,508.00442 406.48694,504.61017 392.03538,500.18926 C 370.43056,490.52699 351.49181,493.92956 333.13609,500.18926 C 312.12588,507.99694 297.13276,503.93352 281.97786,500.18926 C 256.67357,491.24083 241.19533,495.67825 225.77111,500.18926 L 226.10768,484.87409 z "
+       style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5599" />
+    <path
+       d="M 226.10768,513.13535 C 240.03676,507.85571 254.37822,503.90601 284.33382,513.13535 C 300.37289,518.01629 317.13972,518.39683 334.81893,513.13535 C 352.45815,506.93456 370.86684,505.58175 390.68911,513.13535 C 407.77794,519.21574 427.91826,516.7714 447.1902,511.77147 C 466.27121,505.17321 481.73978,508.47606 499.40036,513.13535 L 499.40036,528.45052 C 480.10384,520.62125 460.80731,522.35153 441.51078,528.45052 C 421.41231,536.26568 406.48694,532.87143 392.03538,528.45052 C 370.43056,518.78825 351.49181,522.19082 333.13609,528.45052 C 312.12588,536.2582 297.13276,532.19478 281.97786,528.45052 C 256.67357,519.50209 241.19533,523.93951 225.77111,528.45052 L 226.10768,513.13535 z "
+       style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5597" />
+  </g>
+  <g
+     transform="matrix(0.998512,0,0,1,855.2924,-420.5174)"
+     style="fill:black;fill-opacity:1"
+     id="g3818">
+    <path
+       d="M -613.62771,804.14653 L -585.37101,804.14653 L -581.95688,809.31013 L -581.85085,881.83388 L -587.15229,886.98689 L -612.66285,887.30498 L -617.04184,882.90477 L -616.82978,807.7197 L -613.62771,804.14653 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3780" />
+    <path
+       d="M -572.4182,804.6503 L -575.63695,808.2128 L -575.8557,883.4003 L -571.44945,887.80655 L -545.94945,887.49405 L -540.63695,882.3378 L -540.6682,858.5878 L -537.76195,855.5253 L -517.63695,855.43155 L -517.6057,856.36905 L -514.7932,856.30655 C -514.70819,858.3126 -503.54907,868.55653 -493.26195,868.55655 L -493.26195,868.49405 C -482.98355,868.47348 -471.87813,858.27932 -471.7932,856.2753 L -468.9807,856.3378 L -468.9182,855.36905 L -448.7932,855.49405 L -446.01195,858.4003 L -446.07445,883.4003 L -441.69945,887.80655 L -416.19945,887.49405 L -410.88695,882.3378 L -411.01195,809.80655 L -414.4182,804.6503 L -442.6682,804.6503 L -445.88695,808.2128 L -445.94945,831.9628 L -449.9807,836.11905 L -468.94945,836.05655 L -468.9182,835.0878 L -471.9807,835.05655 C -471.98069,832.16599 -482.9894,822.99405 -493.2932,822.99405 L -493.2932,823.0253 C -503.58777,823.04443 -514.57446,832.23148 -514.57445,835.11905 L -517.63695,835.11905 L -517.63695,836.11905 L -536.6057,836.1503 L -540.7307,831.9003 L -540.76195,809.80655 L -544.1682,804.6503 L -572.4182,804.6503 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3784" />
+    <path
+       d="M -401.78864,804.05321 L -373.53194,804.05321 L -370.11781,809.21681 L -370.01178,881.74056 L -375.31322,886.89357 L -400.82378,887.21166 L -405.20277,882.81145 L -404.99071,807.62638 L -401.78864,804.05321 z "
+       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path3788" />
+  </g>
+  <path
+     d="M 225.05803,336.52885 L 225.05803,378.3915 L 499.06176,378.3915 L 499.20845,336.51488 L 461.48809,336.5168 C 405.51057,370.43438 319.58159,369.62551 263.01592,336.52692 L 225.05803,336.52885 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3823" />
+  <path
+     d="M 463.86172 273.58536 A 128.20508 73.022957 0 1 1  207.45157,273.58536 A 128.20508 73.022957 0 1 1  463.86172 273.58536 z"
+     transform="matrix(0.993859,0,0,1.108538,28.90462,-34.6734)"
+     style="opacity:1;fill:#f60;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path3827" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_270.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_270.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_270.svg	(revision 21967)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="760"
+   height="760"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 45.824811,3.3417118 L 713.26505,3.3417118 C 730.52936,3.3417118 757.66931,28.70753 757.66931,47.945769 L 757.66931,711.00841 C 757.66931,728.56947 731.4376,756.65818 710.65713,756.65818 L 48.432727,756.65818 C 31.534484,756.65818 3.7545745,731.36166 3.7545745,718.73902 L 3.7545745,46.269253 C 3.7545745,27.174554 26.491429,3.3417118 45.824811,3.3417118 z "
+     style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:2.01808;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+     id="rect2841" />
+  <path
+     d="M 25.443662,52.632534 L 25.443662,710.96204 C 25.443662,726.77315 40.985837,735.15473 52.918434,735.15473 L 710.27844,734.90301 C 721.49547,734.90301 734.94337,721.48607 734.94337,708.97952 L 734.94337,54.088023 C 735.11544,34.671252 719.24918,24.683563 708.05602,24.683563 L 53.853079,24.935273 C 34.160919,24.935273 25.443662,39.076817 25.443662,52.632534 z "
+     style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:17;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path1934" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="290"
+     transform="matrix(0.716659,0,0,0.716659,120.2111,111.7111)"
+     style="opacity:1;fill:none;stroke:#c00;stroke-width:93.75"
+     id="circle6" />
+  <path
+     d="M 239.07224,402.68666 L 247.15055,393.50174 C 250.17529,395.93631 253.66113,397.89134 257.60808,399.36681 C 261.555,400.84231 265.68636,401.58006 270.0022,401.58005 C 274.98194,401.58006 278.89199,400.54722 281.73235,398.48152 C 284.57262,396.41585 285.99278,393.70464 285.99283,390.34788 C 285.99278,384.0033 282.48849,380.36991 275.47996,379.44769 C 273.63556,379.2264 271.9203,379.00508 270.33419,378.78372 C 268.748,378.56243 266.90364,378.30422 264.8011,378.00909 C 257.82939,377.05006 252.51763,374.49562 248.8658,370.34576 C 245.21396,366.19599 243.38804,361.18855 243.38805,355.32343 C 243.38804,348.46246 245.68427,342.81872 250.27674,338.39218 C 254.86919,333.96579 261.33367,331.75255 269.67022,331.75247 C 274.64996,331.75255 279.33464,332.54563 283.72426,334.1317 C 288.11379,335.71793 292.15294,337.72828 295.84172,340.16276 L 289.03603,350.23299 C 286.085,348.38869 282.9127,346.89476 279.51911,345.75118 C 276.12545,344.60775 272.65805,344.036 269.11691,344.03593 C 265.35438,344.036 262.16364,344.99506 259.54466,346.91313 C 256.92565,348.83133 255.61615,351.70854 255.61617,355.54475 C 255.61615,357.83182 256.50145,359.97127 258.27205,361.96313 C 260.04262,363.95509 262.97515,365.26459 267.06966,365.89163 C 268.13936,366.07611 269.43042,366.26977 270.94283,366.4726 C 272.45517,366.67553 274.18887,366.88763 276.14393,367.10891 C 283.66888,368.03113 289.22963,370.76079 292.82619,375.29788 C 296.42264,379.83504 298.22089,384.8517 298.22095,390.34788 C 298.22089,397.76223 295.65723,403.51664 290.52996,407.61111 C 285.40258,411.7056 278.52312,413.75284 269.89154,413.75284 C 257.75561,413.75284 247.48252,410.06412 239.07224,402.68666 L 239.07224,402.68666 z M 311.16838,413.08887 L 311.16838,332.47177 L 322.73254,332.47177 L 345.86085,385.03611 L 368.49118,332.47177 L 380.05533,332.47177 L 380.05533,413.08887 L 367.82721,413.08887 L 367.82721,362.7931 L 367.60588,362.7931 L 350.72996,401.58005 L 340.54908,401.58005 L 323.67316,362.7931 L 323.39651,362.7931 L 323.39651,413.08887 L 311.16838,413.08887 z M 394.3307,372.80799 C 394.3307,363.10669 394.58891,356.8543 395.10534,354.05082 C 395.62175,351.24745 396.54393,348.66534 397.87188,346.30449 C 399.75312,342.80027 402.84242,339.49887 407.1398,336.40026 C 411.43715,333.30182 416.75813,331.75255 423.10276,331.75247 C 429.41044,331.75255 434.71298,333.30182 439.01039,336.40026 C 443.3077,339.49887 446.43389,342.80027 448.38898,346.30449 C 449.67997,348.66534 450.58371,351.24745 451.10019,354.05082 C 451.61655,356.8543 451.87476,363.10669 451.87482,372.80799 C 451.87476,382.50937 451.61655,388.76175 451.10019,391.56516 C 450.58371,394.36861 449.67997,396.95071 448.38898,399.31148 C 446.43389,402.85267 443.3077,406.14485 439.01039,409.18804 C 434.71298,412.23124 429.41044,413.75284 423.10276,413.75284 C 416.75813,413.75284 411.43715,412.23124 407.1398,409.18804 C 402.84242,406.14485 399.75312,402.85267 397.87188,399.31148 C 396.54393,396.95071 395.62175,394.36861 395.10534,391.56516 C 394.58891,388.76175 394.3307,382.50937 394.3307,372.80799 L 394.3307,372.80799 z M 406.55883,372.80799 C 406.55881,381.10765 406.84469,386.49318 407.41646,388.9646 C 407.98819,391.43607 409.06714,393.66775 410.65331,395.65964 C 411.87057,397.2827 413.5305,398.67519 415.63309,399.83712 C 417.73564,400.99908 420.22553,401.58006 423.10276,401.58005 C 425.97993,401.58006 428.46982,400.99908 430.57243,399.83712 C 432.67496,398.67519 434.33489,397.2827 435.55221,395.65964 C 437.13832,393.66775 438.21727,391.43607 438.78907,388.9646 C 439.36077,386.49318 439.64665,381.10765 439.6467,372.80799 C 439.64665,364.54529 439.36077,359.1782 438.78907,356.7067 C 438.21727,354.23531 437.13832,351.96675 435.55221,349.901 C 434.33489,348.3518 432.67496,346.98697 430.57243,345.80652 C 428.46982,344.62619 425.97993,344.036 423.10276,344.03593 C 420.22553,344.036 417.73564,344.62619 415.63309,345.80652 C 413.5305,346.98697 411.87057,348.3518 410.65331,349.901 C 409.06714,351.96675 407.98819,354.23531 407.41646,356.7067 C 406.84469,359.1782 406.55881,364.54529 406.55883,372.80799 L 406.55883,372.80799 z M 492.26637,380.27766 L 492.26637,368.7135 L 520.92777,368.7135 L 520.92777,385.14677 C 520.92771,393.15133 518.14272,399.92013 512.57281,405.45321 C 507.00278,410.9863 500.19709,413.75284 492.15571,413.75284 C 485.81108,413.75284 480.49009,412.23124 476.19275,409.18804 C 471.89537,406.14485 468.80607,402.85267 466.92483,399.31148 C 465.59688,396.95071 464.6747,394.36861 464.15828,391.56516 C 463.64186,388.76175 463.38365,382.50937 463.38365,372.80799 C 463.38365,363.10669 463.64186,356.8543 464.15828,354.05082 C 464.6747,351.24745 465.59688,348.66534 466.92483,346.30449 C 468.80607,342.80027 471.89537,339.49887 476.19275,336.40026 C 480.49009,333.30182 485.81108,331.75255 492.15571,331.75247 C 499.79133,331.75255 506.10827,334.10411 511.10654,338.80716 C 516.1047,343.51035 519.2309,349.12643 520.48512,355.65541 L 507.59303,355.65541 C 506.59702,352.55694 504.74344,349.84573 502.03227,347.52177 C 499.32102,345.19794 496.02883,344.036 492.15571,344.03593 C 489.27847,344.036 486.78859,344.62619 484.68604,345.80652 C 482.58344,346.98697 480.92352,348.3518 479.70626,349.901 C 478.12009,351.96675 477.04114,354.23531 476.46941,356.7067 C 475.89764,359.1782 475.61176,364.54529 475.61178,372.80799 C 475.61176,381.10765 475.89764,386.49318 476.46941,388.9646 C 477.04114,391.43607 478.12009,393.66775 479.70626,395.65964 C 480.92352,397.2827 482.58344,398.67519 484.68604,399.83712 C 486.78859,400.99908 489.27847,401.58006 492.15571,401.58005 C 496.80347,401.58006 500.72273,399.99391 503.91352,396.82159 C 507.10422,393.64931 508.69959,389.51794 508.69965,384.42747 L 508.69965,380.27766 L 492.26637,380.27766 z "
+     style="font-size:113.31764984px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text1928" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_270_1.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_270_1.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_270_1.svg	(revision 21967)
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+	<!ENTITY ns_svg "http://www.w3.org/2000/svg">
+	<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
+]>
+<svg  version="1.1" id="Ebene_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="586.262" height="586.262"
+	 viewBox="0 0 586.262 586.262" overflow="visible" enable-background="new 0 0 586.262 586.262" xml:space="preserve">
+<path fill="#FFFFFF" stroke="#000000" d="M546.707,585.762c21.527,0,38.977-17.451,38.977-38.977l0.078-507.23
+	c0-21.527-17.451-38.977-38.977-38.977L39.554,0.5C18.027,0.5,0.578,17.951,0.578,39.477L0.5,546.708
+	c0,21.527,17.451,38.977,38.977,38.977L546.707,585.762z"/>
+<g>
+	<path fill="none" stroke="#000000" stroke-width="14" d="M39.479,568.685c-12.121,0-21.979-9.858-21.979-21.977
+		c0,0.003,0.078-507.229,0.078-507.229c0-12.121,9.859-21.979,21.977-21.979l507.228,0.078c12.121,0,21.979,9.858,21.979,21.977
+		l-0.078,507.228c0,12.121-9.858,21.979-21.977,21.979h0.003L39.479,568.685z"/>
+</g>
+<path fill="#CC0000" d="M478.146,238.128c0,102.229-82.873,185.104-185.102,185.104c-102.229,0-185.103-82.875-185.103-185.104
+	c0-102.229,82.874-185.101,185.103-185.101C395.273,53.027,478.146,135.899,478.146,238.128z"/>
+<path fill="#FFFFFF" d="M429.432,238.128c0,75.324-61.062,136.388-136.388,136.388s-136.388-61.064-136.388-136.388
+	c0-75.325,61.063-136.387,136.388-136.387S429.432,162.804,429.432,238.128z"/>
+<path d="M166.885,210.514h8.281v35.558c0,6.188,5.016,11.203,11.203,11.203c6.188,0,11.204-5.015,11.204-11.203v-35.558h8.28v35.558
+	c0,10.761-8.723,19.483-19.484,19.483c-10.76,0-19.484-8.723-19.484-19.483V210.514z M216.569,265.068v-38.967h7.793v4.397
+	c2.497-3.09,6.257-4.885,10.229-4.885c4.187,0,8.124,1.994,10.603,5.37l0,0c2.774-3.397,6.93-5.37,11.316-5.37
+	c8.071,0,14.613,6.543,14.613,14.613v24.842h-7.793V241.2c0-4.304-3.489-7.793-7.794-7.793c-4.304,0-7.793,3.489-7.793,7.793v23.868
+	h-7.794V241.2c0-4.304-3.488-7.793-7.793-7.793s-7.794,3.489-7.794,7.793v23.868H216.569z M291.096,265.068l-12.179-38.967h8.281
+	l7.306,27.277l8.77-27.277h5.845l8.767,27.277l7.308-27.277h8.28l-12.176,38.967h-6.819l-8.281-27.278l-8.28,27.278H291.096z
+	 M371.469,248.506h-24.357v0.975c0,3.386,2.061,6.431,5.205,7.689l0,0c1.288,0.514,2.664,0.779,4.051,0.779
+	c3.18,0,6.201-1.389,8.273-3.803l5.914,5.076c-3.553,4.139-8.734,6.52-14.188,6.52c-2.378,0-4.736-0.454-6.945-1.337l0,0
+	c-6.101-2.441-10.104-8.352-10.104-14.925v-7.793c0-8.877,7.195-16.075,16.074-16.075c8.878,0,16.076,7.197,16.076,16.075V248.506z
+	 M347.111,241.688h16.562c0-4.574-3.708-8.281-8.281-8.281C350.82,233.407,347.111,237.114,347.111,241.688z M395.822,265.068
+	h-4.871c-4.842,0-8.768-3.926-8.768-8.767v-45.788h7.793v44.813c0,1.344,1.09,2.436,2.436,2.436h3.41V265.068z M419.203,265.068
+	h-4.871c-4.844,0-8.768-3.926-8.768-8.767v-23.869h-3.897v-6.331h3.897V214.41h7.791v11.691h5.848v6.331h-5.848v22.895
+	c0,1.344,1.093,2.436,2.436,2.436h3.412V265.068z"/>
+<path d="M157.254,533.569v-10.221l37.233-60.596h-35.773v-10.951h51.104v9.49l-37.233,60.596h37.233v11.682H157.254z M221.5,505.097
+	v-24.822c0-16.127,13.074-29.203,29.202-29.203s29.202,13.076,29.202,29.203v24.822c0,16.129-13.074,29.201-29.202,29.201
+	S221.5,521.226,221.5,505.097z M233.911,505.097c0,9.273,7.518,16.791,16.791,16.791s16.791-7.518,16.791-16.791v-24.822
+	c0-9.273-7.518-16.791-16.791-16.791s-16.791,7.518-16.791,16.791V505.097z M295.965,533.569v-81.768h11.682l37.232,58.404v-58.404
+	h12.412v81.768h-11.682l-37.232-58.404v58.404H295.965z M376.271,533.569v-81.768h52.564v11.682h-40.154v23.361h34.314v10.951
+	h-34.314v24.092h40.154v11.682H376.271z"/>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_273.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_273.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_273.svg	(revision 21967)
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px"
+     id="circle4" />
+  <path
+     d="M 388.03576,283.98783 L 388.03576,220.87834 L 400.74278,220.87834 L 400.74278,227.62704 L 400.98597,227.62704 C 404.99869,222.64157 410.47061,220.14881 417.40174,220.14875 C 421.81977,220.14881 425.32585,220.9392 427.91999,222.51991 C 430.51403,224.10075 432.946,226.04632 435.21588,228.35663 C 440.20135,222.88477 446.84872,220.14881 455.158,220.14875 C 460.06238,220.14881 464.79457,222.01331 469.3546,225.74227 C 473.91443,229.47133 476.1944,234.90272 476.1945,242.03643 L 476.1945,283.98783 L 463.48748,283.98783 L 463.48748,246.41397 C 463.48739,242.15807 462.29168,238.83439 459.90033,236.44291 C 457.50882,234.05153 454.54993,232.85581 451.02366,232.85576 C 447.37564,232.85581 444.36609,234.05153 441.99499,236.44291 C 439.62376,238.83439 438.43818,242.15807 438.43824,246.41397 L 438.43824,283.98783 L 425.79202,283.98783 L 425.79202,246.41397 C 425.79197,242.15807 424.59626,238.83439 422.20487,236.44291 C 419.8134,234.05153 416.85451,232.85581 413.3282,232.85576 C 409.68022,232.85581 406.67067,234.05153 404.29953,236.44291 C 401.92834,238.83439 400.74276,242.15807 400.74278,246.41397 L 400.74278,283.98783 L 388.03576,283.98783 z "
+     style="font-size:124.51661682px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text3785" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="290"
+     style="fill:none;stroke:#c00;stroke-width:93.75"
+     id="circle6" />
+  <path
+     d="M 503.5953,358.21088 L 503.5953,461.90868 L 582.58614,462.62011 C 583.48307,462.91909 564.99842,494.92708 564.36504,494.71595 L 489.26654,494.81178 C 487.70983,439.72563 409.55614,439.91306 407.85792,494.49336 C 396.11966,494.40578 394.49144,491.73981 394.37827,480.92697 L 394.37827,439.57576 C 394.23088,421.09629 391.92307,433.29481 405.60247,398.25181 C 419.67777,360.89641 415.79746,364.34923 428.52849,363.38515 L 503.5953,358.21088 z M 471.08008,419.35333 L 471.72798,375.29583 L 429.93814,377.88745 C 422.31964,378.39783 422.25623,378.44566 419.57167,387.28206 L 408.88125,415.78986 C 405.28986,424.53386 405.86148,427.11044 415.68425,425.83238 L 471.08008,419.35333 z "
+     style="opacity:1;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none"
+     id="path3725" />
+  <path
+     d="M 520.3208,327.02695 L 601.55532,326.97084 C 609.54769,397.47741 595.63425,420.68735 585.95735,453.04436 L 520.3208,453.04436 L 520.3208,327.02695 z "
+     style="opacity:1;fill:black;fill-opacity:1;stroke:none"
+     id="rect3727" />
+  <circle
+     cx="164"
+     cy="412"
+     r="77"
+     transform="matrix(0.417689,0,0,0.417689,380.0495,321.9484)"
+     style="fill:black;fill-opacity:1;stroke:none"
+     id="circle3729" />
+  <path
+     d="M 141.61171,461.96258 L 192.27177,462.09649 C 182.66503,469.94522 176.66737,480.76346 176.74576,494.96236 L 160.04958,494.97717 C 152.34151,484.23266 147.38409,473.02971 141.61171,461.96258 z M 308.77304,462.17486 L 308.85264,485.47238 L 281.8668,495.02488 L 258.17272,495.00974 C 258.26916,481.50062 252.65503,470.13867 242.70085,462.1574 L 308.77304,462.17486 z "
+     style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none"
+     id="path3756" />
+  <path
+     d="M 123.01404,327.08084 L 308.98871,327.08084 L 308.98871,453.09825 L 138.47864,453.09825 C 121.07785,411.32735 118.78551,369.27584 123.01404,327.08084 z "
+     style="fill:black;fill-opacity:1;stroke:none"
+     id="rect3758" />
+  <circle
+     cx="748"
+     cy="412"
+     r="77"
+     transform="matrix(0.417689,0,0,0.417689,-94.97974,322.0023)"
+     style="fill:black;fill-opacity:1;stroke:none"
+     id="circle3762" />
+  <path
+     d="M 256.55696,221.24165 L 256.55696,195.76681 L 306.95944,195.76681 L 306.95944,208.47383 L 276.98546,284.35114 L 262.75847,284.35114 L 292.79324,208.47383 L 269.26398,208.47383 L 269.26398,221.24165 L 256.55696,221.24165 z "
+     style="font-size:124.51661682px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text3775" />
+  <path
+     d="M 358.84094,257.78338 L 358.84094,220.14872 C 358.84089,215.89285 357.69584,212.56917 355.40578,210.17766 C 353.11565,207.78631 350.10609,206.59059 346.37711,206.59052 C 342.60754,206.59059 339.58785,207.78631 337.31804,210.17766 C 335.04819,212.56917 333.91327,215.89285 333.91329,220.14872 L 333.91329,257.78338 C 333.91327,262.07988 335.04819,265.41369 337.31804,267.78484 C 339.58785,270.15602 342.60754,271.3416 346.37711,271.34159 C 350.10609,271.3416 353.11565,270.15602 355.40578,267.78484 C 357.69584,265.41369 358.84089,262.07988 358.84094,257.78338 L 358.84094,257.78338 z M 321.20627,258.51297 L 321.20627,219.41913 C 321.20627,211.27212 323.75983,204.97942 328.86696,200.541 C 333.97407,196.10275 339.81078,193.88359 346.37711,193.8835 C 352.90285,193.88359 358.72943,196.10275 363.85686,200.541 C 368.9842,204.97942 371.5479,211.27212 371.54795,219.41913 L 371.54795,258.51297 C 371.5479,266.66007 368.9842,272.94264 363.85686,277.3607 C 358.72943,281.77877 352.90285,283.98781 346.37711,283.98781 C 339.81078,283.98781 333.97407,281.77877 328.86696,277.3607 C 323.75983,272.94264 321.20627,266.66007 321.20627,258.51297 L 321.20627,258.51297 z "
+     style="font-size:124.51661682px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text3779" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_274.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_274.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_274.svg	(revision 21967)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="600"
+   height="600"
+   id="svg1961">
+  <defs
+     id="defs1963" />
+  <g
+     transform="translate(0.62188,-134.606)"
+     id="layer1">
+    <path
+       d="M 591.95264,434.74696 C 593.09662,287.86662 481.45088,162.26431 335.97021,144.44513 C 168.29633,123.44973 18.636786,248.23779 7.3113803,416.57787 C -2.5874147,584.50073 131.06315,727.83475 299.63202,727.0676 C 460.35453,728.16448 592.98223,595.36181 591.95264,434.74696"
+       style="fill:#fffefe;fill-rule:evenodd;stroke:black;stroke-width:1.1739316;stroke-opacity:1"
+       id="path10" />
+    <path
+       d="M 591.69875,434.80787 L 591.29499,416.63878 M 591.29499,416.63878 L 586.85366,379.89681 M 586.85366,379.89681 L 577.56724,344.36613 M 577.56724,344.36613 L 564.24322,310.04673 M 564.24322,310.04673 L 546.47788,278.14986 M 546.47788,278.14986 L 524.67496,248.27178 M 524.67496,248.27178 L 499.64199,221.62377 M 499.64199,221.62377 L 471.37893,198.20582 M 471.37893,198.20582 L 440.28959,178.42168 M 440.28959,178.42168 L 407.18144,162.67514 M 407.18144,162.67514 L 372.05453,151.36992 M 372.05453,151.36992 L 335.71632,144.50604 M 335.71632,144.50604 L 299.37813,142.08349 M 299.37813,142.08349 L 262.63617,144.50604 M 262.63617,144.50604 L 226.70172,151.36992 M 226.70172,151.36992 L 191.5748,162.67514 M 191.5748,162.67514 L 158.46666,178.42168 M 158.46666,178.42168 L 127.37732,198.20582 M 127.37732,198.20582 L 99.114266,221.62377 M 99.114266,221.62377 L 74.081283,248.27178 M 74.081283,248.27178 L 52.278363,278.14986 M 52.278363,278.14986 L 34.513021,310.04673 M 34.513021,310.04673 L 21.189014,344.36613 M 21.189014,344.36613 L 11.902585,379.89681 M 11.902585,379.89681 L 7.0574922,416.63878 M 7.0574922,416.63878 L 7.0574922,452.97698 M 7.0574922,452.97698 L 11.902585,489.71893 M 11.902585,489.71893 L 21.189014,525.24962 M 21.189014,525.24962 L 34.513021,559.16528 M 34.513021,559.16528 L 52.278363,591.4659 M 52.278363,591.4659 L 74.081283,621.34397 M 74.081283,621.34397 L 99.114266,647.99199 M 99.114266,647.99199 L 127.37732,671.40994 M 127.37732,671.40994 L 158.46666,691.19406 M 158.46666,691.19406 L 191.5748,706.94062 M 191.5748,706.94062 L 226.70172,718.24584 M 226.70172,718.24584 L 262.63617,725.10972 M 262.63617,725.10972 L 299.37813,727.12851 M 299.37813,727.12851 L 335.71632,725.10972 M 335.71632,725.10972 L 372.05453,718.24584 M 372.05453,718.24584 L 407.18144,706.94062 M 407.18144,706.94062 L 440.28959,691.19406 M 440.28959,691.19406 L 471.37893,671.40994 M 471.37893,671.40994 L 499.64199,647.99199 M 499.64199,647.99199 L 524.67496,621.34397 M 524.67496,621.34397 L 546.47788,591.4659 M 546.47788,591.4659 L 564.24322,559.16528 M 564.24322,559.16528 L 577.56724,525.24962 M 577.56724,525.24962 L 586.85366,489.71893 M 586.85366,489.71893 L 591.29499,452.97698 M 591.29499,452.97698 L 591.69875,434.80787"
+       id="path14" />
+    <path
+       d="M 577.25603,434.71143 C 577.71363,294.64114 472.93175,176.59581 334.19386,158.94488 C 175.51705,138.81082 31.52356,257.36757 22.089087,417.34986 C 11.712512,577.4129 139.26632,712.78614 299.47069,712.49679 C 452.43432,712.94766 577.88186,587.78947 577.25603,434.71143"
+       style="fill:#c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       id="path16" />
+    <path
+       d="M 504.08836,434.63645 C 504.39791,331.94066 426.91007,243.75996 324.81991,231.54629 C 208.09354,216.52649 102.0331,304.28326 95.081736,421.71621 C 87.645864,540.16528 181.13599,638.77639 299.38318,639.34165 C 412.96697,638.43992 503.57021,548.65766 504.08836,434.63645"
+       style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+       id="path18" />
+    <path
+       d="M 220.0529,315.08708 L 258.4099,315.08708 L 207.13266,417.2378 C 234.1777,407.23133 261.46499,416.36971 276.579,441.05949 C 290.37405,466.4626 287.0767,517.89461 262.44747,537.55761 C 232.48192,564.81799 189.36059,561.7427 162.71931,531.50125 C 149.67792,514.55688 146.2931,498.25853 147.3765,477.3977 L 147.3765,474.16764 L 147.78027,467.70752 L 148.99154,461.65115 L 150.60657,455.59477 L 153.02912,449.53841 L 154.24039,446.71211 L 220.0529,315.08708 z M 181.29216,477.3977 C 175.18197,532.98843 246.97009,536.52802 249.52722,487.89541 C 256.32381,431.44334 183.75509,428.73144 181.29216,477.3977 z M 313.7247,487.89541 C 320.85776,423.46912 285.03099,330.98167 373.48087,313.47204 C 413.9643,308.64714 450.45728,340.1739 450.19484,381.30335 C 443.08197,446.58425 478.88857,537.5105 390.4387,555.72672 C 349.34288,560.34974 313.76509,529.51609 313.7247,487.89541 z M 347.64036,487.89541 L 347.64036,381.30335 L 348.04413,378.8808 L 348.44787,374.84323 L 349.2554,370.80565 L 350.87042,366.76807 L 352.88921,362.73049 C 359.85404,353.74688 366.09209,349.23152 377.51844,347.38769 C 398.29851,344.75654 415.9158,360.47617 415.87542,381.30335 L 415.87542,489.9142 L 415.47167,494.35553 L 414.26039,498.3931 L 412.64537,502.43069 L 410.62659,506.0645 C 405.52577,514.82605 395.89615,520.43156 385.99736,521.81106 C 376.06491,522.83391 365.66143,519.67114 358.54182,512.52462 C 349.9014,504.26779 348.87856,499.08623 347.64036,487.89541"
+       style="fill:black;fill-rule:evenodd;stroke:none"
+       id="path20" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_274_1.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_274_1.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_274_1.svg	(revision 21967)
@@ -0,0 +1,100 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<!-- viewBox fix by in[k]firmary (http://inkfirmary.48design.de) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.0"
+   width="100%"
+   height="100%"
+   id="svg1961"
+   inkscape:version="0.47 r22583"
+   sodipodi:docname="Zeichen_274.1.svg"
+   viewBox="0 0 600 600">
+  <metadata
+     id="metadata17">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1280"
+     inkscape:window-height="752"
+     id="namedview15"
+     showgrid="false"
+     inkscape:zoom="0.774375"
+     inkscape:cx="298.72881"
+     inkscape:cy="297.45763"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="svg1961" />
+  <defs
+     id="defs1963">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 300 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="600 : 300 : 1"
+       inkscape:persp3d-origin="300 : 200 : 1"
+       id="perspective19" />
+  </defs>
+  <path
+     d="m 46.33897,592.51787 c -8.69892,-0.0279 -21.66721,-5.02155 -27.58025,-11.70071 l -2.92518,-3.34306 -2.50729,-3.76095 -2.5073,-4.17882 -1.67153,-4.59671 -0.83576,-4.59671 -0.83577,-4.59671 0,-509.39891 C 8.20718,33.72524 10.97217,28.46688 18.75872,18.76504 l 3.76094,-2.92518 3.76095,-2.50729 4.17882,-2.5073 4.59671,-1.67153 9.19342,-1.67153 508.98103,0 c 11.76339,0.49449 18.86043,3.3152 27.58025,11.28283 l 3.34306,3.76094 2.5073,3.76095 2.08941,4.17882 1.67153,4.59671 1.25365,4.59671 0.83576,4.59671 0,508.98103 c 0.30645,7.80047 -5.04245,22.8721 -11.70071,27.58025 l -3.34306,3.34306 -3.76095,2.5073 -4.17882,2.08941 -4.59671,1.67153 -4.59671,1.25365 -4.59671,0.83576 -509.39891,0"
+     style="fill:#fffefe;fill-rule:evenodd;stroke:#000000;stroke-opacity:1"
+     id="path46" />
+  <path
+     d="m 46.33897,592.51787 -2.08941,0 m 0,0 -4.59671,-0.83576 m 0,0 -4.59671,-1.25365 m 0,0 -4.59671,-1.67153 m 0,0 -4.17882,-2.08941 m 0,0 -3.76095,-2.5073 m 0,0 -3.76094,-3.34306 m 0,0 -2.92518,-3.34306 m 0,0 -2.50729,-3.76095 m 0,0 -2.5073,-4.17882 m 0,0 -1.67153,-4.59671 m 0,0 -0.83576,-4.59671 m 0,0 -0.83577,-4.59671 m 0,0 0,-2.50729 0,-506.89162 0,-2.08941 m 0,0 0.83577,-4.59671 m 0,0 0.83576,-4.59671 m 0,0 1.67153,-4.59671 m 0,0 2.5073,-4.17882 m 0,0 2.50729,-3.76095 m 0,0 2.92518,-3.76094 m 0,0 3.76094,-2.92518 m 0,0 3.76095,-2.50729 m 0,0 4.17882,-2.5073 m 0,0 4.59671,-1.67153 m 0,0 4.59671,-0.83576 4.59671,-0.83577 m 0,0 2.08941,0 506.89162,0 2.50729,0 m 0,0 4.59671,0.83577 4.59671,0.83576 m 0,0 4.59671,1.67153 m 0,0 4.17882,2.5073 m 0,0 3.76095,2.50729 m 0,0 3.34306,2.92518 m 0,0 3.34306,3.76094 m 0,0 2.5073,3.76095 m 0,0 2.08941,4.17882 m 0,0 1.67153,4.59671 m 0,0 1.25365,4.59671 m 0,0 0.83576,4.59671 m 0,0 0,2.08941 0,506.89162 0,2.50729 m 0,0 -0.83576,4.59671 m 0,0 -1.25365,4.59671 m 0,0 -1.67153,4.59671 m 0,0 -2.08941,4.17882 m 0,0 -2.5073,3.76095 m 0,0 -3.34306,3.34306 -3.34306,3.34306 m 0,0 -3.76095,2.5073 m 0,0 -4.17882,2.08941 m 0,0 -4.59671,1.67153 m 0,0 -4.59671,1.25365 m 0,0 -4.59671,0.83576 m 0,0 -2.50729,0 m 0,0 -506.89162,0"
+     id="path48" />
+  <path
+     d="m 46.33897,582.48869 c -7.5776,0.0975 -15.00895,-3.18984 -20.47624,-8.35765 l -2.5073,-2.5073 -2.08941,-3.34306 -1.25365,-2.92518 -1.25365,-3.34306 -0.83576,-3.34306 -0.41789,-3.34306 -0.41788,-2.08941 0,-506.89162 c 1.184,-6.97167 2.75106,-15.85168 8.77554,-20.47624 l 2.50729,-2.5073 2.92518,-2.08941 6.68612,-2.5073 3.34306,-0.83576 3.34306,-0.41789 1.67153,-0.41092 506.89162,0 c 7.43831,1.03775 15.7681,2.76499 20.89413,8.77554 l 2.08941,2.5073 2.08941,2.91821 1.67153,3.34306 1.25365,3.34306 0.83577,3.34306 0.41788,3.34306 0,508.56315 c 0.32038,7.78654 -3.30824,15.16914 -8.35765,20.89413 l -2.5073,2.08941 -3.34306,2.08941 -2.92518,1.67153 -3.34306,1.25365 -3.34306,0.83577 -3.34306,0.41788 -508.98103,0"
+     style="fill:#000000;fill-rule:evenodd;stroke:none"
+     id="path50" />
+  <path
+     d="m 46.33897,567.8628 -2.50729,0 -1.67153,-0.41788 -3.34306,-1.67154 -1.25365,-0.83576 -2.5073,-2.5073 -1.25365,-1.67153 -0.41788,-1.25364 -0.83576,-1.67154 -0.41789,-1.67153 0,-509.81679 c -0.3343,-3.46146 1.35116,-7.96763 4.17883,-10.02918 l 2.5073,-2.5073 1.67153,-0.41788 1.67153,-0.83576 1.67153,-0.41789 509.39891,0 c 3.64254,-0.50842 8.17657,1.44866 10.44706,4.17883 l 1.25365,1.25365 0.83576,1.25365 0.83577,1.67153 0.83577,1.67153 0.41788,1.67153 0,509.39891 c 0.592,3.95595 -1.6576,7.66118 -4.17883,10.44706 l -1.25365,1.25365 -1.67153,0.83576 -1.25364,0.83577 -1.67154,0.83577 -1.67153,0.41788 -509.81679,0"
+     style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+     id="path52" />
+  <path
+     d="M 485.11572,244.42165 C 484.87892,151.40098 415.42683,72.0799 322.97726,60.97118 217.30868,47.18106 121.53695,126.92699 115.2896,233.13882 c -7.04132,106.16308 78.53408,197.12916 184.70412,196.40483 101.97729,0.55718 185.14986,-83.03327 185.122,-185.122"
+     style="fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+     id="path54" />
+  <path
+     d="M 436.22345,244.42165 C 429.44679,68.68808 181.55186,61.0269 163.76399,236.064 c -4.81262,78.84749 57.45189,144.51077 136.22973,145.00527 74.81492,0.0209 136.98889,-61.83966 136.22973,-136.64762"
+     style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+     id="path56" />
+  <path
+     d="m 195.10518,284.53838 22.98355,0 c 6.08019,21.09611 32.762,24.98938 44.29556,6.68613 10.83708,-22.89997 -4.08132,-43.50158 -30.50544,-39.28097 l 0,-20.05837 c 13.38618,0.25073 18.37988,0.74523 27.99814,-8.77553 5.52302,-7.85619 6.44932,-18.37987 0.83577,-26.32661 -11.40124,-17.3073 -36.85725,-12.29967 -41.37038,7.93977 l -22.98355,0 c 3.9281,-36.09809 44.35128,-52.98055 73.12946,-31.75907 22.0851,17.13318 24.78044,52.17961 0.83577,68.53274 l 1.67153,1.67154 3.76094,2.50729 2.92518,3.34306 2.92518,3.76095 c 3.52414,5.52301 7.09704,14.30551 7.104,20.89413 0.68254,14.68857 -3.09233,27.48971 -13.79013,38.02731 -27.7474,27.60115 -74.54329,11.48481 -79.81558,-27.16237"
+     style="fill:#000000;fill-rule:evenodd;stroke:none"
+     id="path58" />
+  <path
+     d="m 164.18187,540.70043 0,-10.44707 37.19155,-60.59298 -35.9379,0 0,-10.86495 51.39956,0 0,9.19342 -37.60943,61.01086 37.60943,0 0,11.70072 -52.65321,0 z m 64.35392,-28.8339 c -2.22174,-22.10599 -2.23567,-49.9718 25.49084,-53.48898 8.14871,-1.29543 17.96896,1.58796 23.81931,7.52189 7.53582,8.14871 7.44528,10.84405 9.19342,21.31201 1.85958,22.80943 1.85958,49.33801 -25.90872,53.90686 -17.2098,2.14513 -33.24256,-11.78429 -32.59485,-29.25178 z m 12.1186,0 c 1.46955,-16.88246 -6.45629,-36.30704 14.62589,-41.37038 9.9874,-1.11436 19.27135,6.40753 19.2226,16.7153 0.43181,13.09366 5.06335,38.79344 -14.62589,41.37038 -10.05008,1.66457 -19.32011,-6.55379 -19.2226,-16.7153 z m 62.26451,28.8339 0,-81.905 11.70071,0 37.19156,58.50357 0,-58.50357 12.53647,0 0,81.905 -11.70071,0 -37.19155,-58.50357 0,58.50357 -12.53648,0 z m 80.23346,0 0,-81.905 52.65321,0 0,11.70072 -40.11673,0 0,23.40142 34.26637,0 0,10.86495 -34.26637,0 0,24.23719 40.11673,0 0,11.70072 -52.65321,0"
+     style="fill:#000000;fill-rule:evenodd;stroke:none"
+     id="path62" />
+  <g
+     style="font-size:223.98100281px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Alte DIN 1451 Mittelschrift;-inkscape-font-specification:Alte DIN 1451 Mittelschrift"
+     id="text2825"
+     transform="matrix(1.0258649,0,0,1,544.59229,106.24947)">
+    <path
+       d="m -160.62244,172.1649 0,-67.69738 c -8e-5,-7.655479 -2.07802,-13.634133 -6.23385,-17.935979 -4.08305,-4.301582 -9.47842,-6.452439 -16.18612,-6.452577 -6.78073,1.38e-4 -12.21255,2.150995 -16.2955,6.452577 -4.08302,4.301846 -6.12451,10.2805 -6.12448,17.935979 l 0,67.69738 c -3e-5,7.72855 2.04146,13.74366 6.12448,18.04535 4.08295,4.22883 9.51477,6.34323 16.2955,6.34321 6.7077,2e-5 12.10307,-2.11438 16.18612,-6.34321 4.15583,-4.30169 6.23377,-10.3168 6.23385,-18.04535 m -67.69738,1.31239 0,-70.32216 c -1e-5,-14.654876 4.59334,-25.95599 13.78008,-33.903373 9.18669,-8.019996 19.68578,-12.030069 31.49733,-12.03023 11.73852,1.61e-4 22.20116,4.010234 31.38796,12.03023 9.25953,7.947383 13.88935,19.248497 13.88944,33.903373 l 0,70.32216 c -9e-5,14.65504 -4.62991,25.95615 -13.88944,33.90338 -9.1868,7.94724 -19.64944,11.92086 -31.38796,11.92086 -11.81155,0 -22.31064,-3.97362 -31.49733,-11.92086 -9.18674,-7.94723 -13.78009,-19.24834 -13.78008,-33.90338"
+       id="path2849" />
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_275.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_275.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_275.svg	(revision 21967)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="350"
+     style="fill:white;stroke:black;stroke-width:2.5px"
+     id="circle4" />
+  <circle
+     cx="362.5"
+     cy="362.5"
+     r="290"
+     transform="matrix(1.162727,0,0,1.162727,-58.98865,-58.98865)"
+     style="fill:#039;fill-opacity:1;stroke:none;stroke-width:93.75"
+     id="circle6" />
+  <path
+     d="M 210.53494,379.03602 L 210.53494,333.96347 L 228.17202,333.96347 C 245.15575,333.96368 258.58769,329.18697 268.46785,319.63334 C 278.34773,310.08015 283.28774,297.95467 283.2879,283.25686 C 283.28774,268.72287 278.1436,256.4749 267.85546,246.51293 C 257.56702,236.55155 245.31906,231.57071 231.11153,231.5704 C 220.33322,231.57071 210.12658,235.16345 200.4916,242.34862 C 190.85645,249.53439 184.65082,260.3126 181.87468,274.68327 L 130.67814,274.68327 C 132.63781,249.53439 143.17106,227.52889 162.27792,208.66669 C 181.3847,189.80516 203.67599,180.37423 229.15186,180.37387 C 260.99645,180.37423 286.51304,190.86665 305.7017,211.85117 C 324.88999,232.83634 334.48422,256.3116 334.48444,282.27702 C 334.48422,295.99499 331.78967,309.34527 326.40077,322.3279 C 321.01147,335.31095 310.96814,346.53825 296.27076,356.00982 C 311.29475,365.64507 322.07296,377.48477 328.60541,391.52895 C 335.13745,405.57343 338.40357,419.78107 338.40379,434.1519 C 338.40357,467.46647 327.95198,494.00372 307.04897,513.76374 C 286.1456,533.52381 260.50653,543.40383 230.13169,543.40383 C 205.96227,543.40383 184.20173,535.60596 164.84999,520.0102 C 145.49817,504.41448 133.45434,481.6741 128.71847,451.78898 L 179.915,451.78898 C 184.65082,464.03704 191.01976,473.87623 199.02184,481.3066 C 207.02376,488.73709 218.37354,492.45231 233.07121,492.45226 C 247.27873,492.45231 259.85331,487.43064 270.79497,477.38725 C 281.73633,467.34399 287.20709,453.50379 287.20726,435.86662 C 287.20709,418.06635 281.77716,404.1445 270.91745,394.10103 C 260.05744,384.05784 247.11543,379.03618 232.09137,379.03602 L 210.53494,379.03602 z "
+     style="font-size:501.67703247px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text3804" />
+  <path
+     d="M 538.95143,437.66956 L 538.95143,286.03963 C 538.95126,268.89274 534.33786,255.50163 525.11122,245.86628 C 515.88426,236.23151 503.75878,231.41398 488.73474,231.41367 C 473.54714,231.41398 461.38083,236.23151 452.23577,245.86628 C 443.09054,255.50163 438.51797,268.89274 438.51804,286.03963 L 438.51804,437.66956 C 438.51797,454.98011 443.09054,468.41204 452.23577,477.96539 C 461.38083,487.51886 473.54714,492.29557 488.73474,492.29552 C 503.75878,492.29557 515.88426,487.51886 525.11122,477.96539 C 534.33786,468.41204 538.95126,454.98011 538.95143,437.66956 L 538.95143,437.66956 z M 387.32151,440.60907 L 387.32151,283.10012 C 387.32149,250.27584 397.60978,224.92256 418.1864,207.0402 C 438.76293,189.15851 462.27902,180.21749 488.73474,180.21713 C 515.02691,180.21749 538.50217,189.15851 559.16059,207.0402 C 579.81863,224.92256 590.14774,250.27584 590.14796,283.10012 L 590.14796,440.60907 C 590.14774,473.43371 579.81863,498.74616 559.16059,516.54651 C 538.50217,534.34691 515.02691,543.24709 488.73474,543.2471 C 462.27902,543.24709 438.76293,534.34691 418.1864,516.54651 C 397.60978,498.74616 387.32149,473.43371 387.32151,440.60907 L 387.32151,440.60907 z "
+     style="font-size:501.67703247px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text3808" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_276.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_276.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_276.svg	(revision 21967)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <path
+     d="M 151.8801,375.07907 C 151.38912,338.88652 149.42518,370.02894 171.23891,316.37138 C 187.02055,279.89826 171.02849,289.71794 252.67215,288.38527 C 325.33783,289.85822 310.67845,279.33713 327.37191,318.05475 C 348.27381,367.64416 346.66058,341.69214 346.5203,374.02695 C 345.74876,409.51811 358.86506,400.39983 248.88456,401.59222 C 139.74577,400.11927 152.65165,409.37782 151.8801,375.07907 z M 173.97438,340.14904 L 188.91435,305.63986 C 191.70178,299.50992 190.81247,300.41482 197.33122,300.37931 L 301.78358,300.36806 C 307.43813,300.38884 306.60856,300.02168 308.93792,305.41818 L 323.79475,339.72819 L 173.97438,340.14904 z M 163.28964,405.55127 L 191.22898,405.48892 C 191.14326,440.56701 194.05019,438.61088 178.81409,438.83688 C 160.67106,438.76675 163.53903,440.59819 163.28964,405.55127 z M 307.17141,405.80065 L 335.15751,405.80065 C 334.97048,440.93331 337.52671,438.53294 321.69052,438.62646 C 305.31659,438.40825 307.39741,440.99565 307.17141,405.80065 z "
+     style="fill:#c00;fill-opacity:1;fill-rule:evenodd;stroke:none"
+     id="Car" />
+  <path
+     d="M 377.42444,375.07907 C 376.93346,338.88652 374.96952,370.02894 396.78325,316.37138 C 412.56489,279.89826 396.57283,289.71794 478.21649,288.38527 C 550.88217,289.85822 536.22279,279.33713 552.91625,318.05475 C 573.81815,367.64416 572.20492,341.69214 572.06464,374.02695 C 571.2931,409.51811 584.4094,400.39983 474.4289,401.59222 C 365.29011,400.11927 378.19599,409.37782 377.42444,375.07907 z M 399.51872,340.14904 L 414.45869,305.63986 C 417.24612,299.50992 416.35681,300.41482 422.87556,300.37931 L 527.32792,300.36806 C 532.98247,300.38884 532.1529,300.02168 534.48226,305.41818 L 549.33909,339.72819 L 399.51872,340.14904 z M 388.83398,405.55127 L 416.77332,405.48892 C 416.6876,440.56701 419.59453,438.61088 404.35843,438.83688 C 386.2154,438.76675 389.08337,440.59819 388.83398,405.55127 z M 532.71575,405.80065 L 560.70185,405.80065 C 560.51482,440.93331 563.07105,438.53294 547.23486,438.62646 C 530.86093,438.40825 532.94175,440.99565 532.71575,405.80065 z "
+     style="fill:black;fill-rule:evenodd;stroke:none"
+     id="path1899" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_277.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_277.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_277.svg	(revision 21967)
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="725"
+   height="725"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <g
+     id="g1875">
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="350"
+       style="fill:white;stroke:black;stroke-width:2.5px"
+       id="circle4" />
+    <circle
+       cx="362.5"
+       cy="362.5"
+       r="290"
+       style="fill:none;stroke:#c00;stroke-width:93.75"
+       id="circle6" />
+  </g>
+  <path
+     d="M 177.08504,419.08229 L 346.48426,419.08229 L 346.54796,264.29965 C 346.54796,258.90377 338.86793,250.00142 332.62491,250.00142 L 191.02397,250.13984 C 184.54525,250.13984 177.20702,258.21186 177.20702,263.76317 L 177.08504,419.08229 z "
+     style="fill:#c00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3776" />
+  <path
+     d="M 376.40597,419.10383 C 375.93547,384.42122 374.05347,414.26439 394.95714,362.84541 C 410.08037,327.89393 394.7555,337.30394 472.99301,336.02687 C 542.62711,337.43837 528.57931,327.35621 544.57632,364.45855 C 564.6062,411.97911 563.06028,387.10979 562.92585,418.09561 C 562.1865,452.10609 574.75559,443.36822 469.36344,444.51086 C 364.77788,443.09937 377.14533,451.97165 376.40597,419.10383 z M 397.57849,385.63107 L 411.89517,352.5616 C 414.5663,346.6874 413.7141,347.55455 419.96089,347.52052 L 520.05553,347.50974 C 525.47417,347.52965 524.67921,347.17781 526.91139,352.34917 L 541.1484,385.22778 L 397.57849,385.63107 z M 387.33951,448.30474 L 414.11323,448.245 C 414.03109,481.85964 416.81674,479.98512 402.21628,480.20169 C 384.83018,480.13449 387.57849,481.88952 387.33951,448.30474 z M 525.21858,448.54372 L 552.03711,448.54372 C 551.85788,482.21066 554.30747,479.91043 539.13196,480.00005 C 523.44114,479.79094 525.43515,482.2704 525.21858,448.54372 z "
+     style="fill:black;fill-rule:evenodd;stroke:none"
+     id="path1899" />
+  <g
+     transform="translate(-813.734,-325.4936)"
+     style="fill:#c00;fill-opacity:1"
+     id="g2857">
+    <g
+       transform="matrix(0.68555,0,0,0.68555,330.8438,208.2917)"
+       style="fill:#c00;fill-opacity:1"
+       id="g2862">
+      <path
+         d="M 967.10659,787.76233 L 995.36329,787.76233 L 998.77742,792.92593 L 998.88345,865.44968 L 993.58201,870.60269 L 968.07145,870.92078 L 963.69246,866.52057 L 963.90452,791.3355 L 967.10659,787.76233 z "
+         style="fill:#c00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3780" />
+      <path
+         d="M 1008.3161,788.2661 L 1005.0974,791.8286 L 1004.8786,867.0161 L 1009.2849,871.42235 L 1034.7849,871.10985 L 1040.0974,865.9536 L 1040.0661,842.2036 L 1042.9724,839.1411 L 1063.0974,839.04735 L 1063.1286,839.98485 L 1065.9411,839.92235 C 1066.0261,841.9284 1077.1852,852.17233 1087.4724,852.17235 L 1087.4724,852.10985 C 1097.7507,852.08928 1108.8562,841.89512 1108.9411,839.8911 L 1111.7536,839.9536 L 1111.8161,838.98485 L 1131.9411,839.10985 L 1134.7224,842.0161 L 1134.6599,867.0161 L 1139.0349,871.42235 L 1164.5349,871.10985 L 1169.8474,865.9536 L 1169.7224,793.42235 L 1166.3161,788.2661 L 1138.0661,788.2661 L 1134.8474,791.8286 L 1134.7849,815.5786 L 1130.7536,819.73485 L 1111.7849,819.67235 L 1111.8161,818.7036 L 1108.7536,818.67235 C 1108.7536,815.78179 1097.7449,806.60985 1087.4411,806.60985 L 1087.4411,806.6411 C 1077.1465,806.66023 1066.1598,815.84728 1066.1599,818.73485 L 1063.0974,818.73485 L 1063.0974,819.73485 L 1044.1286,819.7661 L 1040.0036,815.5161 L 1039.9724,793.42235 L 1036.5661,788.2661 L 1008.3161,788.2661 z "
+         style="fill:#c00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3784" />
+      <path
+         d="M 1178.9457,787.66901 L 1207.2024,787.66901 L 1210.6165,792.83261 L 1210.7225,865.35636 L 1205.4211,870.50937 L 1179.9105,870.82746 L 1175.5315,866.42725 L 1175.7436,791.24218 L 1178.9457,787.66901 z "
+         style="fill:#c00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3788" />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_282.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_282.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_282.svg	(revision 21967)
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="600"
+   height="600"
+   id="svg1980">
+  <defs
+     id="defs1982" />
+  <g
+     id="layer1">
+    <g
+       transform="translate(-137.5187,76.8608)"
+       id="g3810">
+      <path
+         d="M 729.60917,223.33738 C 730.75125,76.700028 619.28349,-48.694492 474.05023,-66.484189 C 306.65375,-87.444858 157.2418,37.136763 145.93513,205.19834 C 136.05271,372.84339 269.48216,515.94027 437.77215,515.1744 C 598.22876,516.26946 730.63705,383.6865 729.60917,223.33738"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-opacity:1"
+         id="path84" />
+      <path
+         d="M 729.60917,223.33738 L 729.20608,205.19834 M 729.20608,205.19834 L 724.77209,168.51717 M 724.77209,168.51717 L 715.50102,133.04526 M 715.50102,133.04526 L 702.19906,98.782631 M 702.19906,98.782631 L 684.46311,66.938536 M 684.46311,66.938536 L 662.69626,37.109891 M 662.69626,37.109891 L 637.70469,10.505964 M 637.70469,10.505964 L 609.48841,-12.873245 M 609.48841,-12.873245 L 578.45049,-32.624645 M 578.45049,-32.624645 L 545.39713,-48.345147 M 545.39713,-48.345147 L 510.32831,-59.631662 M 510.32831,-59.631662 L 474.05023,-66.484189 M 474.05023,-66.484189 L 437.77215,-68.902727 M 437.77215,-68.902727 L 401.09098,-66.484189 M 401.09098,-66.484189 L 365.21598,-59.631662 M 365.21598,-59.631662 L 330.14717,-48.345147 M 330.14717,-48.345147 L 297.09381,-32.624645 M 297.09381,-32.624645 L 266.05589,-12.873245 M 266.05589,-12.873245 L 237.83961,10.505964 M 237.83961,10.505964 L 212.84804,37.109891 M 212.84804,37.109891 L 191.08119,66.938536 M 191.08119,66.938536 L 173.34524,98.782631 M 173.34524,98.782631 L 160.04328,133.04526 M 160.04328,133.04526 L 150.77221,168.51717 M 150.77221,168.51717 L 145.93513,205.19834 M 145.93513,205.19834 L 145.93513,241.47642 M 145.93513,241.47642 L 150.77221,278.15759 M 150.77221,278.15759 L 160.04328,313.6295 M 160.04328,313.6295 L 173.34524,347.48904 M 173.34524,347.48904 L 191.08119,379.73622 M 191.08119,379.73622 L 212.84804,409.56487 M 212.84804,409.56487 L 237.83961,436.1688 M 237.83961,436.1688 L 266.05589,459.548 M 266.05589,459.548 L 297.09381,479.2994 M 297.09381,479.2994 L 330.14717,495.01991 M 330.14717,495.01991 L 365.21598,506.30642 M 365.21598,506.30642 L 401.09098,513.15895 M 401.09098,513.15895 L 437.77215,515.1744 M 437.77215,515.1744 L 474.05023,513.15895 M 474.05023,513.15895 L 510.32831,506.30642 M 510.32831,506.30642 L 545.39713,495.01991 M 545.39713,495.01991 L 578.45049,479.2994 M 578.45049,479.2994 L 609.48841,459.548 M 609.48841,459.548 L 637.70469,436.1688 M 637.70469,436.1688 L 662.69626,409.56487 M 662.69626,409.56487 L 684.46311,379.73622 M 684.46311,379.73622 L 702.19906,347.48904 M 702.19906,347.48904 L 715.50102,313.6295 M 715.50102,313.6295 L 724.77209,278.15759 M 724.77209,278.15759 L 729.20608,241.47642 M 729.20608,241.47642 L 729.60917,223.33738"
+         id="path86" />
+      <path
+         d="M 719.93501,223.33738 C 720.4859,81.436333 613.98958,-39.443581 473.24405,-56.810033 C 311.79315,-77.542286 165.90823,42.974847 156.01238,205.60143 C 146.05606,368.40268 274.58124,505.51368 437.77215,505.50024 C 593.57979,505.79584 720.18358,378.88973 719.93501,223.33738"
+         style="fill:black;fill-rule:evenodd;stroke:none"
+         id="path88" />
+      <path
+         d="M 584.49684,-0.78055067 C 336.07259,-153.518 60.916774,121.63782 213.65422,370.06207 L 584.49684,-0.78055067"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         id="path90" />
+      <path
+         d="M 595.78335,7.2812454 L 600.21734,10.505964 L 604.24824,13.327592 L 227.76236,389.81347 L 224.94073,385.78257 L 221.71601,381.34858 L 595.78335,7.2812454"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         id="path92" />
+      <path
+         d="M 614.72857,22.195568 L 618.35638,25.823376 L 621.98419,29.048095 L 243.48286,407.54942 L 240.25815,403.92161 L 236.63034,400.2938 L 614.72857,22.195568"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         id="path94" />
+      <path
+         d="M 638.91396,46.380956 L 635.28615,42.753148 L 631.65834,38.72225 L 253.15702,417.22358 L 257.18792,420.85138 L 260.81573,424.47919 L 638.91396,46.380956"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         id="path96" />
+      <path
+         d="M 653.82828,65.326177 L 650.60357,60.892189 L 647.37885,56.861291 L 271.29606,432.94408 L 275.32696,436.1688 L 279.76095,439.39351 L 653.82828,65.326177"
+         style="fill:#fffefe;fill-rule:evenodd;stroke:none"
+         id="path98" />
+      <path
+         d="M 661.48699,76.612692 C 815.29934,323.98219 538.42367,600.86457 291.04746,447.05222 L 661.48699,76.612692"
+         style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none"
+         id="path100" />
+    </g>
+  </g>
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_283.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_283.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_283.svg	(revision 21967)
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   sodipodi:docname="Zeichen_286.svg"
+   inkscape:version="0.41"
+   sodipodi:version="0.32"
+   width="725"
+   height="725"
+   version="1.1">
+  <metadata>
+    <RDF>
+      <Work>
+        <format>image/svg+xml</format>
+        <type resource="http://purl.org/dc/dcmitype/StillImage" />
+      </Work>
+    </RDF>
+    <rdf:RDF>
+      <cc:Work>
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>MarianSigler, mariansigler@gmail.com</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <cc:license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+      </cc:Work>
+      <cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
+        <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+        <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" />
+        <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+        <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  
+  <path style="fill:#FFFFFF; fill-opacity:1; fill-rule:evenodd; stroke:#000000; stroke-width:2.5; stroke-linecap:butt; stroke-linejoin:miter; stroke-miterlimit:4; stroke-dashoffset:0; stroke-opacity:1"
+     d="M 712.5,362.5 C 712.5,555.79966 555.79966,712.5 362.5,712.5 C 169.20034,712.5 12.5,555.79966 12.5,362.5 C 12.5,169.20034 169.20034,12.5 362.5,12.5 C 555.79966,12.5 712.5,169.20034 712.5,362.5 L 712.5,362.5 z " />
+
+  <path style="fill:#CC0000; fill-opacity:1; fill-rule:evenodd; stroke:none; stroke-width:93.75; stroke-linecap:butt; stroke-linejoin:miter; stroke-miterlimit:4; stroke-dashoffset:0; stroke-opacity:1"
+     d="M 362.5,25.625 C 177.05768,25.625 25.625,177.05768 25.625,362.5 C 25.625,547.94232 177.05768,699.375 362.5,699.375 C 547.94232,699.375 699.375,547.94232 699.375,362.5 C 699.375,177.05768 547.94232,25.625 362.5,25.625 z M 362.5,119.375 C 497.21768,119.375 605.625,227.78232 605.625,362.5 C 605.625,497.21768 497.21768,605.625 362.5,605.625 C 227.78232,605.625 119.375,497.21768 119.375,362.5 C 119.375,227.78232 227.78232,119.375 362.5,119.375 z " />
+
+  <path style="fill:#003399; fill-opacity:1; fill-rule:evenodd; stroke:none"
+     d="M 612.5,362.5 C 612.5,500.5 500.5,612.5 362.5,612.5 C 224.5,612.5 112.5,500.5 112.5,362.5 C 112.5,224.5 224.5,112.5 362.5,112.5 C 500.5,112.5 612.5,224.5 612.5,362.5 z " />
+
+  <path style="fill:none; stroke:#CC0000; stroke-width:87.5; stroke-linecap:butt; stroke-linejoin:miter; stroke-opacity:1; stroke-dasharray:none; stroke-miterlimit:4"
+     d="M 180.31265,180.31267 L 544.68736,544.68733" />
+  <path style="fill:none; stroke:#CC0000; stroke-width:87.5; stroke-linecap:butt; stroke-linejoin:miter; stroke-opacity:1; stroke-dasharray:none; stroke-miterlimit:4"
+     d="M 180.31265,544.68733 L 544.68736,180.31267" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_286.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_286.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_286.svg	(revision 21967)
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   sodipodi:docname="Zeichen_286.svg"
+   inkscape:version="0.41"
+   sodipodi:version="0.32"
+   width="725"
+   height="725"
+   version="1.1">
+  <metadata>
+    <RDF>
+      <Work>
+        <format>image/svg+xml</format>
+        <type resource="http://purl.org/dc/dcmitype/StillImage" />
+      </Work>
+    </RDF>
+    <rdf:RDF>
+      <cc:Work>
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>MarianSigler, mariansigler@gmail.com</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <cc:license rdf:resource="http://web.resource.org/cc/PublicDomain" />
+      </cc:Work>
+      <cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
+        <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" />
+        <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" />
+        <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+        <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  
+  <path style="fill:#FFFFFF; fill-opacity:1; fill-rule:evenodd; stroke:#000000; stroke-width:2.5; stroke-linecap:butt; stroke-linejoin:miter; stroke-miterlimit:4; stroke-dashoffset:0; stroke-opacity:1"
+     d="M 712.5,362.5 C 712.5,555.79966 555.79966,712.5 362.5,712.5 C 169.20034,712.5 12.5,555.79966 12.5,362.5 C 12.5,169.20034 169.20034,12.5 362.5,12.5 C 555.79966,12.5 712.5,169.20034 712.5,362.5 L 712.5,362.5 z " />
+
+  <path style="fill:#CC0000; fill-opacity:1; fill-rule:evenodd; stroke:none; stroke-width:93.75; stroke-linecap:butt; stroke-linejoin:miter; stroke-miterlimit:4; stroke-dashoffset:0; stroke-opacity:1"
+     d="M 362.5,25.625 C 177.05768,25.625 25.625,177.05768 25.625,362.5 C 25.625,547.94232 177.05768,699.375 362.5,699.375 C 547.94232,699.375 699.375,547.94232 699.375,362.5 C 699.375,177.05768 547.94232,25.625 362.5,25.625 z M 362.5,119.375 C 497.21768,119.375 605.625,227.78232 605.625,362.5 C 605.625,497.21768 497.21768,605.625 362.5,605.625 C 227.78232,605.625 119.375,497.21768 119.375,362.5 C 119.375,227.78232 227.78232,119.375 362.5,119.375 z " />
+
+  <path style="fill:#003399; fill-opacity:1; fill-rule:evenodd; stroke:none"
+     d="M 612.5,362.5 C 612.5,500.5 500.5,612.5 362.5,612.5 C 224.5,612.5 112.5,500.5 112.5,362.5 C 112.5,224.5 224.5,112.5 362.5,112.5 C 500.5,112.5 612.5,224.5 612.5,362.5 z " />
+
+  <path style="fill:none; stroke:#CC0000; stroke-width:87.5; stroke-linecap:butt; stroke-linejoin:miter; stroke-opacity:1; stroke-dasharray:none; stroke-miterlimit:4"
+     d="M 180.31265,180.31267 L 544.68736,544.68733" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_290.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_290.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_290.svg	(revision 21967)
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="600"
+   height="600"
+   id="svg1961">
+  <defs
+     id="defs1963" />
+  <path
+     d="M 46.33899,592.51787 C 37.64007,592.49001 24.67178,587.49632 18.75874,580.81716 L 15.83356,577.4741 L 13.32627,573.71315 L 10.81897,569.53433 L 9.14744,564.93762 L 8.31168,560.34091 L 7.47591,555.7442 L 7.47591,46.34529 C 8.2072,33.72524 10.97219,28.46688 18.75874,18.76504 L 22.51968,15.83986 L 26.28063,13.33257 L 30.45945,10.82527 L 35.05616,9.15374 L 44.24958,7.48221 L 553.23061,7.48221 C 564.994,7.9767 572.09104,10.79741 580.81086,18.76504 L 584.15392,22.52598 L 586.66122,26.28693 L 588.75063,30.46575 L 590.42216,35.06246 L 591.67581,39.65917 L 592.51157,44.25588 L 592.51157,553.23691 C 592.81802,561.03738 587.46912,576.10901 580.81086,580.81716 L 577.4678,584.16022 L 573.70685,586.66752 L 569.52803,588.75693 L 564.93132,590.42846 L 560.33461,591.68211 L 555.7379,592.51787 L 46.33899,592.51787"
+     style="fill:#fffefe;fill-rule:evenodd;stroke:black;stroke-opacity:1"
+     id="path46" />
+  <path
+     d="M 52.971361,575.52467 C 45.58591,575.61969 38.343001,572.41571 33.014348,567.37894 L 30.570626,564.93522 L 28.534199,561.67693 L 27.312339,558.82592 L 26.090477,555.56764 L 25.27591,552.30935 L 24.868617,549.05106 L 24.461334,547.01463 L 24.461334,52.976521 C 25.61531,46.181634 27.142634,37.526799 33.014348,33.019507 L 35.458059,30.575785 L 38.309063,28.539358 L 44.82564,26.095637 L 48.083929,25.28107 L 51.342216,24.873776 L 52.971361,24.473276 L 547.00947,24.473276 C 554.25916,25.484711 562.37772,27.168152 567.37377,33.02629 L 569.4102,35.470012 L 571.44663,38.314223 L 573.07577,41.572511 L 574.29763,44.8308 L 575.11221,48.089087 L 575.5195,51.347376 L 575.5195,547.01463 C 575.83175,554.60372 572.29514,561.79912 567.37377,567.37894 L 564.93005,569.41537 L 561.67177,571.4518 L 558.82076,573.08094 L 555.56247,574.3028 L 552.30418,575.11738 L 549.04589,575.52467 L 52.971361,575.52467"
+     style="fill:none;fill-rule:evenodd;stroke:black;stroke-width:15;stroke-miterlimit:4;stroke-dasharray:none"
+     id="path50" />
+  <g
+     transform="matrix(0.550473,0,0,0.550473,333.9396,72.41625)"
+     style="opacity:1"
+     id="g1923">
+    <path
+       d="M -61.9048,-21.00199 C -247.34712,-21.00199 -398.7798,130.43069 -398.7798,315.87301 C -398.7798,501.31533 -247.34712,652.74801 -61.9048,652.74801 C 123.53752,652.74801 274.9702,501.31533 274.9702,315.87301 C 274.9702,130.43069 123.53752,-21.00199 -61.9048,-21.00199 z M -61.9048,72.74801 C 72.81288,72.74801 181.2202,181.15533 181.2202,315.87301 C 181.2202,450.59069 72.81288,558.99801 -61.9048,558.99801 C -196.62248,558.99801 -305.0298,450.59069 -305.0298,315.87301 C -305.0298,181.15533 -196.62248,72.74801 -61.9048,72.74801 z "
+       style="fill:#c00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:93.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+       id="path1904" />
+    <path
+       d="M 188.0952,315.87301 C 188.0952,453.87301 76.0952,565.87301 -61.9048,565.87301 C -199.9048,565.87301 -311.9048,453.87301 -311.9048,315.87301 C -311.9048,177.87301 -199.9048,65.87301 -61.9048,65.87301 C 76.0952,65.87301 188.0952,177.87301 188.0952,315.87301 z "
+       style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       id="path1906" />
+    <path
+       d="M -244.09215,133.68568 L 120.28256,498.06034"
+       style="fill:none;stroke:#c00;stroke-width:87.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="path1908" />
+  </g>
+  <path
+     d="M 46.33899,592.51787 L 44.24958,592.51787 M 44.24958,592.51787 L 39.65287,591.68211 M 39.65287,591.68211 L 35.05616,590.42846 M 35.05616,590.42846 L 30.45945,588.75693 M 30.45945,588.75693 L 26.28063,586.66752 M 26.28063,586.66752 L 22.51968,584.16022 M 22.51968,584.16022 L 18.75874,580.81716 M 18.75874,580.81716 L 15.83356,577.4741 M 15.83356,577.4741 L 13.32627,573.71315 M 13.32627,573.71315 L 10.81897,569.53433 M 10.81897,569.53433 L 9.14744,564.93762 M 9.14744,564.93762 L 8.31168,560.34091 M 8.31168,560.34091 L 7.47591,555.7442 M 7.47591,555.7442 L 7.47591,553.23691 L 7.47591,46.34529 L 7.47591,44.25588 M 7.47591,44.25588 L 8.31168,39.65917 M 8.31168,39.65917 L 9.14744,35.06246 M 9.14744,35.06246 L 10.81897,30.46575 M 10.81897,30.46575 L 13.32627,26.28693 M 13.32627,26.28693 L 15.83356,22.52598 M 15.83356,22.52598 L 18.75874,18.76504 M 18.75874,18.76504 L 22.51968,15.83986 M 22.51968,15.83986 L 26.28063,13.33257 M 26.28063,13.33257 L 30.45945,10.82527 M 30.45945,10.82527 L 35.05616,9.15374 M 35.05616,9.15374 L 39.65287,8.31798 L 44.24958,7.48221 M 44.24958,7.48221 L 46.33899,7.48221 L 553.23061,7.48221 L 555.7379,7.48221 M 555.7379,7.48221 L 560.33461,8.31798 L 564.93132,9.15374 M 564.93132,9.15374 L 569.52803,10.82527 M 569.52803,10.82527 L 573.70685,13.33257 M 573.70685,13.33257 L 577.4678,15.83986 M 577.4678,15.83986 L 580.81086,18.76504 M 580.81086,18.76504 L 584.15392,22.52598 M 584.15392,22.52598 L 586.66122,26.28693 M 586.66122,26.28693 L 588.75063,30.46575 M 588.75063,30.46575 L 590.42216,35.06246 M 590.42216,35.06246 L 591.67581,39.65917 M 591.67581,39.65917 L 592.51157,44.25588 M 592.51157,44.25588 L 592.51157,46.34529 L 592.51157,553.23691 L 592.51157,555.7442 M 592.51157,555.7442 L 591.67581,560.34091 M 591.67581,560.34091 L 590.42216,564.93762 M 590.42216,564.93762 L 588.75063,569.53433 M 588.75063,569.53433 L 586.66122,573.71315 M 586.66122,573.71315 L 584.15392,577.4741 M 584.15392,577.4741 L 580.81086,580.81716 L 577.4678,584.16022 M 577.4678,584.16022 L 573.70685,586.66752 M 573.70685,586.66752 L 569.52803,588.75693 M 569.52803,588.75693 L 564.93132,590.42846 M 564.93132,590.42846 L 560.33461,591.68211 M 560.33461,591.68211 L 555.7379,592.51787 M 555.7379,592.51787 L 553.23061,592.51787 M 553.23061,592.51787 L 46.33899,592.51787"
+     id="path48" />
+  <path
+     d="M 164.18189,540.70043 L 164.18189,530.25336 L 201.37344,469.66038 L 165.43554,469.66038 L 165.43554,458.79543 L 216.8351,458.79543 L 216.8351,467.98885 L 179.22567,528.99971 L 216.8351,528.99971 L 216.8351,540.70043 L 164.18189,540.70043 z M 228.53581,511.86653 C 226.31407,489.76054 226.30014,461.89473 254.02665,458.37755 C 262.17536,457.08212 271.99561,459.96551 277.84596,465.89944 C 285.38178,474.04815 285.29124,476.74349 287.03938,487.21145 C 288.89896,510.02088 288.89896,536.54946 261.13066,541.11831 C 243.92086,543.26344 227.8881,529.33402 228.53581,511.86653 z M 240.65441,511.86653 C 242.12396,494.98407 234.19812,475.55949 255.2803,470.49615 C 265.2677,469.38179 274.55165,476.90368 274.5029,487.21145 C 274.93471,500.30511 279.56625,526.00489 259.87701,528.58183 C 249.82693,530.2464 240.5569,522.02804 240.65441,511.86653 z M 302.91892,540.70043 L 302.91892,458.79543 L 314.61963,458.79543 L 351.81119,517.299 L 351.81119,458.79543 L 364.34766,458.79543 L 364.34766,540.70043 L 352.64695,540.70043 L 315.4554,482.19686 L 315.4554,540.70043 L 302.91892,540.70043 z M 383.15238,540.70043 L 383.15238,458.79543 L 435.80559,458.79543 L 435.80559,470.49615 L 395.68886,470.49615 L 395.68886,493.89757 L 429.95523,493.89757 L 429.95523,504.76252 L 395.68886,504.76252 L 395.68886,528.99971 L 435.80559,528.99971 L 435.80559,540.70043 L 383.15238,540.70043"
+     style="fill:black;fill-rule:evenodd;stroke:none"
+     id="path62" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_325.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_325.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_325.svg	(revision 21967)
@@ -0,0 +1,89 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="1250"
+   height="840"
+   id="svg2">
+  <defs
+     id="defs9" />
+  <path
+     d="M 4.9628067,51.943165 L 4.6368247,783.36624 C 4.6368247,802.5473 28.351504,833.79315 60.07416,833.79315 L 1195.3067,833.79315 C 1217.9248,833.79315 1244.8933,805.77757 1244.8933,783.00108 L 1245.3632,58.713816 C 1245.3632,31.512403 1218.2476,6.206847 1192.5377,6.206847 L 55.460194,6.676638 C 26.798206,6.676638 4.9628067,36.996606 4.9628067,51.943165 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2.12588739;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3829" />
+  <path
+     d="M 29.179051,60.080509 L 28.872378,775.82864 C 28.872378,793.87387 41.774315,809.1568 66.620238,809.1568 L 1192.2551,809.1568 C 1208.2416,809.1568 1220.3825,795.14877 1220.3825,773.72102 L 1220.8245,65.862201 C 1220.8245,40.271544 1207.0752,30.57716 1182.8877,30.57716 L 58.457319,31.01913 C 39.138544,31.01913 29.179051,46.019031 29.179051,60.080509 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:18;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path2057" />
+  <path
+     d="M 475.47976 658.95959 A 41.778557 41.778557 0 1 1  391.92265,658.95959 A 41.778557 41.778557 0 1 1  475.47976 658.95959 z"
+     transform="matrix(1.051806,0,0,1.051806,-201.3939,-448.1237)"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:28;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8192" />
+  <path
+     d="M 433.89547,229.1218 C 433.242,180.9521 430.62814,222.40045 459.66066,150.98606 C 480.66489,102.44295 459.3806,115.51225 568.04249,113.73856 C 664.7553,115.69896 645.2447,101.69614 667.46251,153.22652 C 695.28145,219.22648 693.13435,184.68618 692.94765,227.72152 C 691.92077,274.9577 709.37763,262.82192 563.00147,264.40891 C 417.74555,262.44852 434.92234,274.771 433.89547,229.1218 z M 463.30139,182.63244 L 483.1854,136.70319 C 486.89528,128.54467 485.71167,129.74903 494.38765,129.70178 L 633.40627,129.68679 C 640.93207,129.71445 639.82798,129.2258 642.92819,136.40815 L 662.70155,182.07232 L 463.30139,182.63244 z M 449.08075,269.67812 L 486.26602,269.59514 C 486.15192,316.28158 490.02085,313.6781 469.74269,313.9789 C 445.5956,313.88554 449.41267,316.32307 449.08075,269.67812 z M 640.5771,270.01004 L 677.8246,270.01004 C 677.57566,316.76909 680.97783,313.57437 659.90099,313.69884 C 638.10845,313.40841 640.8779,316.85207 640.5771,270.01004 z "
+     style="fill:white;fill-rule:evenodd;stroke:none"
+     id="Car" />
+  <circle
+     cx="150"
+     cy="412"
+     r="66.5"
+     transform="matrix(0.273055,0,0,0.273055,426.614,104.4967)"
+     style="fill:#039;fill-opacity:1;stroke:none"
+     id="LeftLamp" />
+  <circle
+     cx="850"
+     cy="412"
+     r="66.5"
+     transform="matrix(0.273055,0,0,0.273055,426.614,104.4967)"
+     style="fill:#039;fill-opacity:1;stroke:none"
+     id="RightLamp" />
+  <path
+     d="M 787.24555,312.33107 C 788.07711,329.36618 789.03645,345.2083 792.23376,359.76884 C 820.14617,486.88209 878.11579,519.96831 1042.197,635.75173 C 1083.6019,664.96891 1109.7541,692.0881 1121.9681,690.11364"
+     style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:white;stroke-width:28;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3695" />
+  <path
+     d="M 895.53178,436.18679 C 895.53178,436.18679 895.34351,201.55669 895.34351,201.55669 L 835.28136,201.36842 L 942.95641,130.67204 L 942.76813,94.009639 L 977.61549,93.821365 L 977.61549,108.02538 L 1010.2184,85.183019 L 1186.0291,201.55669 L 1125.0933,201.55669 L 1124.905,435.92337 L 895.53178,436.18679 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path6352" />
+  <path
+     d="M 1010.4044,106.71839 L 916.46889,182.65132 L 915.93636,415.04813 L 984.09907,415.58065 L 984.09907,315.46667 L 1036.2861,315.46667 L 1036.2861,415.79824 L 1104.4546,416.43956 L 1104.7752,184.14581 L 1010.4044,106.71839 z "
+     style="opacity:1;fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path6354" />
+  <path
+     d="M 942.7342,200.08063 L 942.7342,268.00838 L 996.92539,268.00838 L 996.92539,200.37026 L 942.7342,200.08063 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path8126" />
+  <path
+     d="M 1022.9936,200.2513 L 1022.9936,268.17905 L 1077.1848,268.17905 L 1077.1848,200.54093 L 1022.9936,200.2513 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path8128" />
+  <path
+     d="M 475.47976 658.95959 A 41.778557 41.778557 0 1 1  391.92265,658.95959 A 41.778557 41.778557 0 1 1  475.47976 658.95959 z"
+     transform="matrix(0.784946,0,0,0.784946,158.2151,209.7381)"
+     style="opacity:1;fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:28;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path8130" />
+  <g
+     transform="matrix(1.441028,0,0,1.441028,-581.7626,-346.2043)"
+     style="fill:white"
+     id="g8166">
+    <path
+       d="M 884.3916,771.02487 L 879.2194,653.21517 L 846.4626,679.65057 C 839.301,679.08287 831.7315,679.07627 827.8493,673.99947 L 879.0279,624.00227 C 890.6471,627.25517 901.6341,626.29387 911.9763,621.03307 L 948.7559,628.50387 L 966.571,665.28347 C 961.0569,666.32917 958.1253,671.47647 945.8825,661.83537 L 936.6876,643.44557 L 921.7459,642.87097 L 934.9635,695.74157 L 969.4444,699.76437 C 978.6192,700.88517 979.1902,709.09157 981.5127,715.85547 L 925.7686,716.43017 L 915.999,702.63777 L 899.908,707.23527 L 900.4826,760.10597 C 895.6684,767.59167 890.0384,769.36727 884.3916,771.02487 z "
+       style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       id="path5675" />
+    <path
+       d="M 916.2679,592.77679 C 916.2679,605.81157 905.7011,616.37837 892.6663,616.37837 C 879.6315,616.37837 869.0647,605.81157 869.0647,592.77679 C 869.0647,579.74198 879.6315,569.17519 892.6663,569.17519 C 905.7011,569.17519 916.2679,579.74198 916.2679,592.77679 z "
+       style="fill:white;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path5679" />
+  </g>
+  <path
+     d="M 124.81368,503.31128 C 106.15606,502.01002 105.7106,475.35302 105.30778,460.18057 L 192.81314,318.78254 C 210.20009,293.87442 272.4526,303.43431 272.42631,339.92979 L 272.42631,398.39571 L 357.0153,450.64185 C 343.82646,462.27796 332.03327,476.70536 309.32687,469.30636 L 271.60046,446.07377 L 271.18753,495.01133 L 181.61754,495.42426 L 181.61754,417.05505 L 124.81368,503.31128 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path8188" />
+  <path
+     d="M 118.1758,737.99563 L 226.39477,563.0108 L 225.57927,726.80003 C 235.68997,753.97726 254.75484,757.59539 271.61081,761.2334 L 271.19789,504.13195 L 181.61754,504.13195 L 181.61754,546.42644 L 100.76559,675.39527 C 83.130331,724.534 112.57152,731.05473 118.1758,737.99563 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path8190" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_327.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_327.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_327.svg	(revision 21967)
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="480"
+   height="480"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 30.856274,5.7720243 L 450.86109,5.7720243 C 461.67691,6.5627045 473.93298,17.615789 474.52755,30.636789 L 474.52755,449.4433 C 474.57722,459.76184 462.73404,473.63554 449.36321,474.30807 L 29.957547,474.30807 C 16.93511,474.30807 5.0927831,462.751 5.0927831,449.14373 L 5.691934,30.936364 C 5.691934,17.424109 14.494985,5.7720243 30.856274,5.7720243 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3669" />
+  <path
+     d="M 393.71875,16.71875 L 393.71875,16.75 L 84.75,16.75 L 84.75,16.78125 L 35.1875,16.78125 C 23.426887,16.266334 16.714331,24.30046 17.15625,37.15625 L 17.15625,443.5625 C 17.202803,452.2297 20.884421,462.63293 32.84375,462.84375 L 84.15625,462.84375 L 393.71875,462.78125 L 393.71875,462.8125 L 447.28125,462.8125 C 459.24058,462.6017 462.95345,452.19845 463,443.53125 L 463,37.09375 C 463.44191,24.237959 456.72937,16.20383 444.96875,16.71875 L 393.71875,16.71875 z M 393.71875,83.21875 L 393.71875,396.125 L 86.4375,396.34375 L 86.4375,83.28125 L 393.71875,83.21875 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:#039;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3661" />
+  <g
+     id="g8184">
+    <path
+       d="M 240.1875,155.15625 C 167.33571,155.15625 118.40625,219.03071 118.40625,256.3125 C 118.40625,256.3125 118.5,256.65625 118.5,256.65625 L 118.5,347.5625 L 359.34375,345.75 L 359.34375,256.65625 L 359.75,256.4375 C 359.75,219.53516 311.81302,156.59041 240.1875,155.3125 L 240.1875,155.15625 z "
+       style="opacity:1;color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path3703" />
+    <path
+       d="M 381.915,346.95341 L 93.845366,347.54736 L 95.62724,241.82284 L 118.7916,196.08807 L 157.99283,156.29288 L 210.85509,133.72248 L 264.31132,133.72248 L 318.3615,156.29288 L 361.42345,196.97901 L 382.21198,243.01076 L 381.915,346.95341 z "
+       style="opacity:1;color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
+       id="path1882" />
+    <path
+       d="M 97.438084,244.21377 L 117.87656,256.01393"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path2780" />
+    <path
+       d="M 119.27765,196.38505 L 136.49732,209.94531"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3667" />
+    <path
+       d="M 158.75688,156.29288 L 170.51665,175.92598"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3670" />
+    <path
+       d="M 212.09583,133.92681 L 213.7758,156.29288"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3672" />
+    <path
+       d="M 96.178108,301.50351 L 116.33771,301.50351"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3674" />
+    <path
+       d="M 380.09252,244.84375 L 359.65404,256.64391"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3685" />
+    <path
+       d="M 358.25295,197.01503 L 341.03328,210.57529"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3687" />
+    <path
+       d="M 318.77372,156.92286 L 307.01395,176.55596"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3689" />
+    <path
+       d="M 265.43477,134.55679 L 263.7548,156.92286"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3691" />
+    <path
+       d="M 381.35249,302.13349 L 361.19289,302.13349"
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:black;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path3693" />
+  </g>
+  <path
+     d="M 117.65052,255.56477 C 118.1501,255.56477 118.1501,255.56477 117.65052,255.56477 z "
+     style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+     id="path3709" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/DE_380.svg
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/DE_380.svg	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/DE_380.svg	(revision 21967)
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.0"
+   width="480"
+   height="480"
+   id="svg2">
+  <defs
+     id="defs4" />
+  <path
+     d="M 30.856274,5.7720243 L 450.86109,5.7720243 C 461.67691,6.5627045 473.93298,17.615789 474.52755,30.636789 L 474.52755,449.4433 C 474.57722,459.76184 462.73404,473.63554 449.36321,474.30807 L 29.957547,474.30807 C 16.93511,474.30807 5.0927831,462.751 5.0927831,449.14373 L 5.691934,30.936364 C 5.691934,17.424109 14.494985,5.7720243 30.856274,5.7720243 z "
+     style="fill:white;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+     id="path3669" />
+  <path
+     d="M 35.1875,16.78125 C 23.426887,16.266334 16.714331,24.30046 17.15625,37.15625 L 17.15625,443.5625 C 17.202803,452.2297 20.884421,462.63293 32.84375,462.84375 L 447.28125,462.8125 C 459.24058,462.6017 462.95345,452.19845 463,443.53125 L 463,37.09375 C 463.44191,24.237959 456.72937,16.20383 444.96875,16.71875 L 35.1875,16.78125 z "
+     style="fill:#039;fill-opacity:1;fill-rule:evenodd;stroke:#039;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+     id="path3661" />
+  <path
+     d="M 128.33805,186.63996 C 128.33801,197.81717 131.83761,206.28133 138.83688,212.03247 C 145.83603,217.78391 153.67624,220.65955 162.35751,220.65942 C 171.03862,220.65955 178.87882,217.78391 185.87814,212.03247 C 192.87724,206.28133 196.37685,197.81717 196.37696,186.63996 C 196.37685,175.57161 192.87724,167.13458 185.87814,161.32884 C 178.87882,155.52349 171.03862,152.62071 162.35751,152.62051 C 153.67624,152.62071 145.83603,155.52349 138.83688,161.32884 C 131.83761,167.13458 128.33801,175.57161 128.33805,186.63996 L 128.33805,186.63996 z M 90.086515,288.69832 C 90.086507,265.58472 99.418788,247.78828 118.08339,235.30894 C 111.02988,229.0152 105.30572,222.04312 100.91089,214.39268 C 96.516015,206.74252 94.318588,197.70865 94.3186,187.29105 C 94.318588,168.1926 100.85661,151.96962 113.93269,138.62207 C 127.0087,125.27496 143.15029,118.60129 162.35751,118.60106 C 181.56456,118.60129 197.70615,125.27496 210.78233,138.62207 C 223.85824,151.96962 230.39627,168.1926 230.39642,187.29105 C 230.39627,197.70865 228.17171,206.74252 223.72274,214.39268 C 219.27349,222.04312 213.63072,229.0152 206.7944,235.30894 C 225.35032,247.89679 234.62835,265.69324 234.6285,288.69832 C 234.62835,309.75028 227.49349,326.86851 213.22392,340.05305 C 198.95408,353.23763 181.99862,359.82991 162.35751,359.82991 C 142.60772,359.82991 125.62514,353.23763 111.40971,340.05305 C 97.194233,326.86851 90.086507,309.75028 90.086515,288.69832 L 90.086515,288.69832 z M 124.10597,288.37278 C 124.10593,299.22434 127.93108,308.20395 135.58143,315.31163 C 143.23168,322.4194 152.15703,325.97326 162.35751,325.97323 C 172.44931,325.97326 181.37466,322.4194 189.13359,315.31163 C 196.89229,308.20395 200.7717,299.22434 200.77182,288.37278 C 200.7717,277.52136 196.89229,268.51462 189.13359,261.35254 C 181.37466,254.19066 172.44931,250.60967 162.35751,250.60956 C 152.15703,250.60967 143.23168,254.19066 135.58143,261.35254 C 127.93108,268.51462 124.10593,277.52136 124.10597,288.37278 L 124.10597,288.37278 z M 355.89402,289.67496 L 355.89402,188.91878 C 355.89391,177.52488 352.82836,168.62666 346.69738,162.22409 C 340.56618,155.8219 332.50895,152.62071 322.52566,152.62051 C 312.43369,152.62071 304.34933,155.8219 298.27256,162.22409 C 292.19567,168.62666 289.15725,177.52488 289.1573,188.91878 L 289.1573,289.67496 C 289.15725,301.17761 292.19567,310.10296 298.27256,316.45104 C 304.34933,322.7992 312.43369,325.97326 322.52566,325.97323 C 332.50895,325.97326 340.56618,322.7992 346.69738,316.45104 C 352.82836,310.10296 355.89391,301.17761 355.89402,289.67496 L 355.89402,289.67496 z M 255.13784,291.62823 L 255.13784,186.96551 C 255.13783,165.15418 261.97427,148.30725 275.64718,136.42464 C 289.32002,124.54248 304.94617,118.60129 322.52566,118.60106 C 339.99648,118.60129 355.59549,124.54248 369.32276,136.42464 C 383.04976,148.30725 389.91333,165.15418 389.91348,186.96551 L 389.91348,291.62823 C 389.91333,313.43979 383.04976,330.2596 369.32276,342.08771 C 355.59549,353.91585 339.99648,359.82991 322.52566,359.82991 C 304.94617,359.82991 289.32002,353.91585 275.64718,342.08771 C 261.97427,330.2596 255.13783,313.43979 255.13784,291.62823 L 255.13784,291.62823 z "
+     style="font-size:333.35809326px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:white;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DIN 1451 Mittelschrift"
+     id="text2891" />
+</svg>
Index: applications/editors/josm/plugins/roadsigns/images_src/convert.pl
===================================================================
--- applications/editors/josm/plugins/roadsigns/images_src/convert.pl	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/images_src/convert.pl	(revision 21967)
@@ -0,0 +1,26 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+
+use Getopt::Std;
+
+my %val;
+getopts('h:', \%val);
+
+# helper script to convert svg file to png and move them to the right place
+#
+# usage:
+# cd plugins/roadsigns/images_src/
+# ./convert.pl -h 36 foo.svg
+
+my $h = $val{"h"};
+if (!$h) {
+    $h = "40";
+}
+
+foreach my $i (0..$#ARGV) {
+    my $f = $ARGV[$i];
+    my $f2 = $f;
+    $f2 =~ s/\.svg$/.png/;
+    system("inkscape", "-f", $f, "-e", "../images/$f2", "-h", "$h");
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/ParametrizedString.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/ParametrizedString.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/ParametrizedString.java	(revision 21967)
@@ -0,0 +1,145 @@
+//License: GPL (v2 or later)
+package org.openstreetmap.josm.plugins.roadsigns;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
+
+import org.openstreetmap.josm.plugins.roadsigns.javacc.ParamStringScanner;
+import org.openstreetmap.josm.plugins.roadsigns.javacc.ParseException;
+import org.openstreetmap.josm.plugins.roadsigns.javacc.TokenMgrError;
+
+/**
+ * A parametrized string is a string that contains identifiers that can
+ * be substituted when the values of the parameters are known.
+ * The syntax is in perl style, e.g.
+ *  "Up to $val% in ${num}th row costs 12 \$.".
+ *
+ * This class represent a parsed string (parameters are identified).
+ * It can be constructed from a String. Given a parameter environment,
+ * the String value can be determined.
+ *
+ */
+public class ParametrizedString {
+    final List<StringOrParameter> token = new ArrayList<StringOrParameter>();
+
+    /**
+     * Describes the union of String and Parameter type. Both
+     * types have a single String object as their backing data.
+     */
+    public static interface StringOrParameter {
+    }
+
+    public static class Prm implements StringOrParameter {
+        public final String ident;
+        public Prm(String ident) {
+            this.ident = ident;
+        }
+
+        @Override
+        public String toString() {
+            return "<Prm="+ident+">";
+        }
+    }
+
+    public static class Str implements StringOrParameter {
+        String value;
+        public Str(String stringValue) {
+            this.value = stringValue;
+        }
+
+        @Override
+        public String toString() {
+            return "<Str="+value+">";
+        }
+    }
+
+    protected ParametrizedString(String input) throws ParseException, TokenMgrError {
+        scan(input);
+    }
+
+    /**
+     * Constructor that returns a null value for null value input.
+     * Once it is created, the list of token is immutable.
+     */
+    public static ParametrizedString create(String input) throws ParseException, TokenMgrError {
+        if (input == null)
+            return null;
+        return new ParametrizedString(input);
+    }
+
+    /**
+     * The tokenizer. Creates the list of tokens
+     * from the input string.
+     */
+    protected void scan(String input) throws ParseException, TokenMgrError {
+        List<StringOrParameter> tmp = null;
+        tmp = ParamStringScanner.parseIt(input);
+        StringBuffer curString = new StringBuffer();
+        for (StringOrParameter sp : tmp) {
+            if (sp instanceof Prm) {
+                if (curString.length() > 0) {
+                    token.add(new Str(curString.toString()));
+                    curString = new StringBuffer();
+                }
+                token.add(sp);
+            } else if (sp instanceof Str) {
+                curString.append(((Str) sp).value);
+            }
+        }
+        if (curString.length() > 0) {
+            token.add(new Str(curString.toString()));
+        }
+    }
+
+    /**
+     * Evaluates the string value, given an environment of
+     * parameter mappings.
+     */
+    public String evaluate(Map<String, String> env) {
+        StringBuilder sb = new StringBuilder();
+        for (StringOrParameter t : token) {
+            if (t instanceof Str) {
+                sb.append(((Str) t).value);
+            } else if (t instanceof Prm) {
+                String val = env.get(((Prm) t).ident);
+                if (val == null) {
+                    System.err.println("Warning: Parameter not in environment: "+((Prm) t).ident+" ("+this.toString()+")");
+                    Thread.dumpStack();
+                    val = "<?>";
+                }
+                sb.append(val);
+            } else
+                throw new AssertionError();
+        }
+        return sb.toString();
+    }
+
+    /**
+     * Converts to a string that could be parsed again to an equal object.
+     */
+    @Override
+    public String toString() {
+        StringBuilder sb = new StringBuilder();
+        for (StringOrParameter t : token) {
+            if (t instanceof Str) {
+                sb.append(((Str) t).value);
+            } else if (t instanceof Prm) {
+                sb.append("${"+((Prm) t).ident+"}");
+            } else
+                throw new AssertionError();
+        }
+        return sb.toString();
+    }
+
+    /**
+     * Creates a debug string for this object
+     */
+    public String toDebugString() {
+        StringBuilder res = new StringBuilder();
+        for (StringOrParameter sop : token) {
+            res.append(sop);
+        }
+        return res.toString();
+    }
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignInputDialog.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignInputDialog.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignInputDialog.java	(revision 21967)
@@ -0,0 +1,706 @@
+// License: GPL (v2 or later)
+package org.openstreetmap.josm.plugins.roadsigns;
+
+import static org.openstreetmap.josm.tools.I18n.tr;
+
+import java.awt.Dimension;
+import java.awt.FlowLayout;
+import java.awt.GridBagConstraints;
+import java.awt.GridBagLayout;
+import java.awt.Insets;
+import java.awt.Rectangle;
+import java.awt.event.ActionEvent;
+import java.awt.event.MouseAdapter;
+import java.awt.event.MouseEvent;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.LinkedHashMap;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Map;
+import java.util.TreeMap;
+
+import javax.swing.BorderFactory;
+import javax.swing.JComponent;
+import javax.swing.JEditorPane;
+import javax.swing.JLabel;
+import javax.swing.JPanel;
+import javax.swing.JScrollPane;
+import javax.swing.JTable;
+import javax.swing.JTextField;
+import javax.swing.Scrollable;
+import javax.swing.SwingConstants;
+import javax.swing.border.Border;
+import javax.swing.border.EtchedBorder;
+import javax.swing.event.DocumentEvent;
+import javax.swing.event.DocumentListener;
+import javax.swing.table.AbstractTableModel;
+
+import org.openstreetmap.josm.Main;
+import org.openstreetmap.josm.command.ChangePropertyCommand;
+import org.openstreetmap.josm.command.Command;
+import org.openstreetmap.josm.command.SequenceCommand;
+import org.openstreetmap.josm.data.osm.OsmPrimitive;
+import org.openstreetmap.josm.gui.ExtendedDialog;
+import org.openstreetmap.josm.gui.MultiSplitLayout;
+import org.openstreetmap.josm.gui.MultiSplitPane;
+import org.openstreetmap.josm.plugins.roadsigns.Sign.SignParameter;
+import org.openstreetmap.josm.plugins.roadsigns.Sign.Tag;
+import org.openstreetmap.josm.tools.Pair;
+
+/**
+ * Input dialog for road sign.
+ *
+ * Allows selection of a combination of road signs.
+ * It tries to generate the corresponding tags for the object.
+ *
+ * As tagging schemes are under constant development, the definitions
+ * need to be updated when needed.
+ *
+ * Often there is more than one way to tag a certain situation.
+ * So easy configuration is needed (TODO).
+ *
+ */
+class RoadSignInputDialog extends ExtendedDialog {
+    private final SignSelection sel;
+    private final List<Sign> signs;
+    private JTable previewTable;
+
+    private PreviewTableModel previewModel;
+    private JPanel pnlSignSelection;
+    private JPanel pnlPossibleSigns;
+    private JPanel pnlPossibleSupplements;
+    private JEditorPane info;
+
+    public RoadSignInputDialog(List<Sign> signs) {
+        super(Main.parent, tr("Road Sign Plugin"), new String[] {tr("OK"), tr("Cancel")}, false /* modal */);
+        this.signs = signs;
+        sel = new SignSelection();
+        setButtonIcons(new String[] { "ok.png", "cancel.png" });
+        setContent(buildPanel(), false);
+    }
+
+    @Override
+    protected void buttonAction(int i, ActionEvent evt) {
+        if (i == 0) { // OK Button
+            Collection<OsmPrimitive> selPrim = Main.main.getCurrentDataSet().getSelected();
+            if (selPrim.size() != 0) {
+                Command cmd = createCommand(selPrim);
+                if (cmd != null) {
+                    Main.main.undoRedo.add(cmd);
+                }
+            }
+        }
+        super.buttonAction(i, evt);
+    }
+
+    private Command createCommand(Collection<OsmPrimitive> selPrim) {
+        List<Command> cmds = new LinkedList<Command>();
+        for (int i=0; i<previewModel.getRowCount(); i++) {
+            String key = (String) previewModel.getValueAt(i, 0);
+            String value = (String) previewModel.getValueAt(i, 1);
+            cmds.add(new ChangePropertyCommand(selPrim, key, value));
+        }
+        if (cmds.size() == 0)
+            return null;
+        else if (cmds.size() == 1)
+            return cmds.get(0);
+        else
+            return new SequenceCommand(tr("Change Properties"), cmds);
+    }
+
+    private JComponent buildPanel() {
+        String layoutDef =
+            "(COLUMN "+
+                "(ROW weight=0.3 (LEAF name=upperleft weight=1.0) upperright) "+
+                "(ROW weight=0.5 (LEAF name=middleleft weight=0.5) (LEAF name=middleright weight=0.5)) "+
+                "(LEAF name=bottom weight=0.2))";
+        MultiSplitLayout.Node modelRoot = MultiSplitLayout.parseModel(layoutDef);
+
+        FlowLayout fLayout = new FlowLayout(FlowLayout.LEFT);
+        fLayout.setAlignOnBaseline(true);
+
+        pnlSignSelection = new JPanel();
+        pnlSignSelection.setLayout(fLayout);
+
+        
+        pnlPossibleSigns = new FixedWidthPanel();
+        pnlPossibleSupplements = new FixedWidthPanel();
+        fillSigns();
+
+        MultiSplitPane multiSplitPane = new MultiSplitPane();
+        multiSplitPane.setPreferredSize(new Dimension(700, 500));
+        multiSplitPane.getMultiSplitLayout().setModel(modelRoot);
+        multiSplitPane.add(new JScrollPane(pnlSignSelection), "upperleft");
+        multiSplitPane.add(buildPreviewPanel(), "upperright");
+        JScrollPane scroll1 = new JScrollPane(pnlPossibleSigns, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
+        scroll1.setPreferredSize(new Dimension(10, 10));
+        multiSplitPane.add(scroll1, "middleleft");
+
+        JScrollPane scroll2 = new JScrollPane(pnlPossibleSupplements, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
+        scroll2.setPreferredSize(new Dimension(10, 10));
+        multiSplitPane.add(scroll2, "middleright");
+        info = new JEditorPane();
+        info.setEditable(false);
+        info.setContentType("text/html");
+        info.setText("");
+        info.setBackground(this.getBackground());
+        JScrollPane scroll3 = new JScrollPane(info, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
+        multiSplitPane.add(scroll3, "bottom");
+
+        return multiSplitPane;
+    }
+
+    /**
+     * Add the possible signs to the panel for selection
+     */
+    private void fillSigns() {
+        pnlPossibleSigns.removeAll();
+        pnlPossibleSupplements.removeAll();
+        for (Sign s : signs) {
+            JLabel lbl = new JLabel(s.getIcon());
+            s.label = lbl;
+            lbl.addMouseListener(new SignClickListener(s));
+            if (s.isSupplementing) {
+                pnlPossibleSupplements.add(lbl);
+            } else {
+                pnlPossibleSigns.add(lbl);
+            }
+        }
+    }
+
+    /**
+     * Represents a certain selection of signs by the user.
+     *
+     * Manages the update of gui elements when the selection changes.
+     */
+    public class SignSelection  {
+        private final LinkedList<SignCombination> combos=new LinkedList<SignCombination>();
+
+        public void remove(SignCombination sc) {
+            int i = findIndex(sc);
+            combos.remove(i);
+            previewModel.update();
+            updatePanel(pnlSignSelection);
+        }
+
+        public void remove(SignWrapper sw) {
+            Pair<Integer, Integer> tmp = findIndex(sw);
+            int i = tmp.a;
+            int j = tmp.b;
+            if (j == 0) {
+                combos.remove(i);
+                previewModel.update();
+                updateSelectableSignsEnabledState();
+                updatePanel(pnlSignSelection);
+            } else {
+                combos.get(i).remove(j);
+                previewModel.update();
+                updateSelectableSignsEnabledState();
+                updatePanel(pnlSignSelection);
+            }
+        }
+
+        public void add(Sign sAdd) {
+            if (!sAdd.isSupplementing || combos.isEmpty()) {
+                SignCombination combo = new SignCombination();
+                combos.add(combo);
+                combo.add(sAdd);
+
+                previewModel.update();
+                updateSelectableSignsEnabledState();
+                updatePanel(pnlSignSelection);
+            } else {
+                SignCombination last = combos.getLast();
+                last.add(sAdd);
+
+                previewModel.update();
+                updatePanel(pnlSignSelection);
+            }
+        }
+
+        private int findIndex(SignCombination scFind) {
+            int i=0;
+            for (SignCombination sc : combos) {
+                if (sc == scFind) {
+                    return i;
+                }
+                i++;
+            }
+            throw new AssertionError("Could not find sign combination.");
+        }
+
+        private Pair<Integer, Integer> findIndex(SignWrapper swFind) {
+            int selIdx=0;
+            int combIdx=0;
+            for (SignCombination sc : combos) {
+                combIdx=0;
+                for (SignWrapper sw : sc.signs) {
+                    if (swFind == sw) {
+                        return new Pair<Integer, Integer>(selIdx, combIdx);
+                    }
+                    combIdx++;
+                }
+                selIdx++;
+            }
+            throw new AssertionError("Could not find sign");
+        }
+
+        public void updatePanel(JPanel panel) {
+            panel.removeAll();
+            panel.setLayout(new GridBagLayout());
+            GridBagConstraints gbc = new GridBagConstraints();
+            gbc.anchor=GridBagConstraints.NORTHWEST;
+            gbc.gridx=0;
+            gbc.gridy=0;
+            gbc.weightx=0;
+            gbc.weighty=1.0;
+            gbc.insets = new Insets(10, 10, 0, 10);
+
+            for (SignCombination sc : combos) {
+                JPanel pnlCombo = new JPanel(new GridBagLayout());
+                sc.updatePanel(pnlCombo);
+                panel.add(pnlCombo, gbc);
+                gbc.gridx++;
+                gbc.insets = new Insets(10, 0, 0, 10);
+            }
+            gbc.weightx = 1.0;
+            panel.add(new JLabel(""), gbc); /* filler */
+            panel.revalidate();
+            panel.repaint();
+        }
+    }
+
+    /**
+     * Describes a list of selected signs where the
+     * first sign is a normal or supplementary sign and the
+     * rest are all supplementary signs.
+     *
+     * It can fill a Panel with the necessary gui elements.
+     */
+    public class SignCombination {
+        public LinkedList<SignWrapper> signs;
+
+        public SignCombination() {
+            signs = new LinkedList<SignWrapper>();
+        }
+
+        public void updatePanel(JPanel panel) {
+            panel.removeAll();
+            panel.setLayout(new GridBagLayout());
+
+            Border etched = BorderFactory.createEtchedBorder(EtchedBorder.RAISED);
+            Border empty = BorderFactory.createEmptyBorder(3, 3, 3, 3);
+            panel.setBorder(BorderFactory.createCompoundBorder(etched, empty));
+
+            int i=0;
+            for (SignWrapper sw : signs) {
+                GridBagConstraints gbc = new GridBagConstraints();
+                gbc.gridx = 0;
+                gbc.gridy = i;
+                gbc.anchor = GridBagConstraints.NORTH;
+                panel.add(sw.getSignIcon(), gbc);
+
+                gbc.gridx = 1;
+                gbc.anchor = GridBagConstraints.WEST;
+                panel.add(sw.getParamsPanel(), gbc);
+
+                i++;
+            }
+        }
+
+        public void remove(int index) {
+            signs.remove(index);
+        }
+
+        public void add(final Sign sign) {
+            if (!signs.isEmpty() && !sign.isSupplementing)
+                throw new IllegalArgumentException("any sign but the first must be a supplement sign");//FIXME
+            final SignWrapper signWrp = new SignWrapper(sign);
+            signs.add(signWrp);
+        }
+    }
+
+    /**
+     * Describes a single selected sign, including the parameters entered by
+     * the user.
+     *
+     * It provides the necessary gui elements.
+     */
+    public class SignWrapper {
+        Sign sign;
+        JLabel signIcon;
+        String signRef;
+        JPanel paramsPanel;
+        Map<String, String> paramValues = new HashMap<String, String>();
+        public SignWrapper(Sign sign) {
+            this.sign = sign;
+            for (final SignParameter p : this.sign.params) {
+                paramValues.put(p.ident, p.getDefault());
+            }
+        }
+        @Override
+        public String toString() {
+            return sign.toString();
+        }
+
+        public JLabel getSignIcon() {
+            if (signIcon != null)
+                return signIcon;
+            signIcon = new JLabel(sign.getIcon());
+            signIcon.addMouseListener(new MouseAdapter() {
+                @Override
+                public void mouseClicked(MouseEvent e) {
+                    sel.remove(SignWrapper.this);
+                }
+            });
+            return signIcon;
+        }
+
+        public JPanel getParamsPanel() {
+            if (paramsPanel != null)
+                return paramsPanel;
+            paramsPanel = new JPanel(new GridBagLayout());
+            int i=0;
+            for (final SignParameter p : this.sign.params) {
+                JPanel pnlInput = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, 0));
+                switch (p.input) {
+                    case COMBO: // TODO
+//                        create_gui_elements();
+//                        break;
+                    case TEXTFIELD:
+                        final JTextField tf;
+                        if (p.fieldWidth != null) {
+                            tf = new JTextField(p.getDefault(), p.fieldWidth);
+                        } else {
+                            tf = new JTextField(p.getDefault());
+                        }
+                        class TFDocumentListener implements DocumentListener {
+                            public void insertUpdate(DocumentEvent e) {
+                                update();
+                            }
+
+                            public void removeUpdate(DocumentEvent e) {
+                                update();
+                            }
+
+                            public void changedUpdate(DocumentEvent e) {
+                                update();
+                            }
+                            public void update() {
+                                paramValues.put(p.ident, tf.getText());
+                                previewModel.update();
+                            }
+                        };
+                        TFDocumentListener listener = new TFDocumentListener();
+                        tf.getDocument().addDocumentListener(listener);
+                        JLabel lblPrefix = new JLabel(p.getPrefix());
+                        JLabel lblSuffix = new JLabel(p.getSuffix());
+                        pnlInput.add(lblPrefix);
+                        pnlInput.add(tf);
+                        pnlInput.add(lblSuffix);
+                        break;
+                    default:
+                        throw new RuntimeException();
+                }
+                GridBagConstraints gbc = new GridBagConstraints();
+                gbc.gridy = i;
+                gbc.anchor = GridBagConstraints.WEST;
+                paramsPanel.add(pnlInput,gbc);
+                i++;
+            }
+            if (i>0) {
+                paramsPanel.setBorder(BorderFactory.createEmptyBorder(0, 3, 0, 0));
+            }
+            return paramsPanel;
+        }
+    }
+
+    /**
+     * Give the user a hint, which supplementary signs fit the current selection.
+     * Disabled signs can still be clicked.
+     */
+    private void updateSelectableSignsEnabledState() {
+        if (sel.combos.isEmpty()) {
+            for (Sign s : signs) {
+                if (s.isSupplementing) {
+                    // TODO: only those that have no free parameter
+                    s.label.setEnabled(true);
+                }
+            }
+        } else {
+            Sign main = sel.combos.getLast().signs.getFirst().sign;
+            for (Sign s : signs) {
+                if (s.isSupplementing) {
+                    s.label.setEnabled(main.supplements.contains(s));
+                }
+            }
+        }
+    }
+
+    public JComponent buildPreviewPanel() {
+        String[] columnNames = {tr("Key"), tr("Value")};
+        String[][] data = {{}};
+        previewTable = new JTable(data, columnNames);
+        previewTable.setFillsViewportHeight(true);
+        previewTable.setRowSelectionAllowed(false);
+        previewTable.setColumnSelectionAllowed(false);
+
+        previewModel = new PreviewTableModel();
+        previewTable.setModel(previewModel);
+
+        JScrollPane scroll = new JScrollPane(previewTable);
+        Dimension dim = new Dimension(236, 10);
+        scroll.setPreferredSize(dim);
+        scroll.setMinimumSize(dim); /* minimum size is relevant for multisplit layout */
+        return scroll;
+    }
+
+    public class PreviewTableModel extends AbstractTableModel {
+        private List<String> keys = new ArrayList<String>();
+        private List<String> values = new ArrayList<String>();
+
+        int rows=3;
+        String[] header = {tr("Key"), tr("Value")};
+
+        public int getRowCount() {
+            return keys.size();
+        }
+
+        public int getColumnCount() {
+            return 2;
+        }
+
+        public Object getValueAt(int rowIndex, int columnIndex) {
+            if (columnIndex == 0) {
+                return keys.get(rowIndex);
+            } else if (columnIndex == 1) {
+                return values.get(rowIndex);
+            } else
+                throw new IllegalArgumentException();
+        }
+
+        @Override
+        public String getColumnName(int col) {
+            return header[col];
+        }
+
+        /**
+         * Analyse the selection and derive corresponding tags.
+         */
+        public void update() {
+            final TreeMap<String, String> map= new TreeMap<String, String>();
+            for (SignCombination sc : sel.combos) {
+                final Map<String, String> env = new HashMap<String, String>();
+
+                /**
+                 * Keep track of a named tag. It may be changed by
+                 * adding values or conditions.
+                 */
+                class TagEvaluater {
+                    String key;
+                    String default_value;
+                    List<String> values = new ArrayList<String>();
+                    List<String> conditions = new ArrayList<String>();
+                    String ident;
+                    public TagEvaluater(Tag t) {
+                        key = t.key.evaluate(env);
+                        default_value = t.value.evaluate(env);
+                        ident = t.ident;
+                    }
+
+                    public void append_value(String v) {
+                        values.add(v);
+                    }
+
+                    public void condition(String c) {
+                        conditions.add(c);
+                    }
+
+                    public Map<String, String> evaluate() {
+                        String value = "";
+                        if (values.isEmpty()) {
+                            value = default_value;
+                        } else {
+                            String sep = "";
+                            for (String v : values) {
+                                value += sep+v;
+                                sep=";";
+                            }
+                        }
+
+                        if (conditions.isEmpty())
+                            return Collections.singletonMap(key, value);
+                        else {
+                            Map<String, String> result = new HashMap<String, String>();
+                            for (String c : conditions) {
+                                result.put(key+":"+c, value);
+                            }
+                            return result;
+                        }
+                    }
+                }
+                
+                Map<String, TagEvaluater> tags = new LinkedHashMap<String, TagEvaluater>();
+                for (SignWrapper sw : sc.signs) {
+                    for (Map.Entry<String,String> entry : sw.paramValues.entrySet()) {
+                        env.put(entry.getKey(), entry.getValue());
+                    }
+                    if (sw.sign.ref != null) {
+                        sw.signRef = sw.sign.ref.evaluate(env);
+                    }
+                    for (Tag t : sw.sign.tags) {
+                        if (t.tag_ref != null) {
+                            if (t.ident != null) {
+                                env.put(t.ident+"_key", t.key.evaluate(env));
+                                env.put(t.ident+"_value", t.value.evaluate(env));
+                            }
+                            if (t.append_value != null) {
+                                TagEvaluater te = tags.get(t.tag_ref);
+                                if (te == null) {
+                                    System.err.println(String.format("warning: referenced tag with ident '%s' not found for appending tag %s.",t.tag_ref, t.toString()));
+                                } else {
+                                    te.append_value(t.append_value.evaluate(env));
+                                }
+                            } else if (t.condition != null) {
+                                TagEvaluater te = tags.get(t.tag_ref);
+                                if (te == null) {
+                                    System.err.println(String.format("warning: referenced tag with ident '%s' not found for condition tag %s.",t.tag_ref, t.toString()));
+                                } else {
+                                    te.condition(t.condition.evaluate(env));
+                                }
+                            } else {
+                                System.err.println(String.format("warning: found tag_ref but neither append_value nor condition for tag %s.", t.toString()));
+                            }
+                        } else if (t.ident != null) {
+                            env.put(t.ident+"_key", t.key.evaluate(env));
+                            env.put(t.ident+"_value", t.value.evaluate(env));
+
+                            if (tags.get(t.ident) != null) {
+                                System.err.println(String.format("warning: tag identifier %s for %s already in use. ", t.ident, t.toString()));
+                            }
+                            tags.put(t.ident, new TagEvaluater(t));
+                        } else {
+                            map.put(t.key.evaluate(env), t.value.evaluate(env));
+                        }
+
+                    }
+                }
+                for (TagEvaluater te : tags.values()) {
+                    Map<String, String> result = te.evaluate();
+                    map.putAll(result);
+                }
+            }
+
+            keys.clear();
+            values.clear();
+            for (Map.Entry<String, String> entry : map.entrySet()) {
+                if (!entry.getKey().isEmpty() && !entry.getValue().isEmpty()) {
+                    keys.add(entry.getKey());
+                    values.add(entry.getValue());
+                }
+            }
+            fireTableDataChanged();
+        }
+
+
+    }
+
+    /**
+     * Mouse events for the possible signs.
+     * Click selects it.
+     * MouseOver shows info.
+     */
+    private class SignClickListener extends MouseAdapter {
+        private Sign sign;
+        public SignClickListener(Sign sign) {
+            this.sign = sign;
+        }
+        @Override
+        public void mouseClicked(MouseEvent e) {
+            sel.add(sign);
+        }
+
+        @Override
+        public void mouseEntered(MouseEvent e) {
+            StringBuilder txt = new StringBuilder();
+            txt.append("<p><b><large>");
+            txt.append(sign.name);
+            txt.append("</large></b>");
+            String ref = sign.getDefaultRef();
+            if (ref != null) {
+                txt.append("  <i><small>("+ref+")</small></i>");
+            }
+            txt.append("</p>");
+//            if (sign.long_name != null) {
+//                txt.append("<i><smaller>("+sign.long_name+")</smaller></i>");
+//            }
+            info.setText(txt.toString());
+        }
+
+        @Override
+        public void mouseExited(MouseEvent e) {
+            info.setText("");
+        }
+    }
+
+    /**
+     * Panel with FlowLayout that can be put inside a JScrollPane.
+     * (Normally it would not flow, but put all its children
+     * in a single row. This implementation respects the width of the parent
+     * component.)
+     */
+    public static class FixedWidthPanel extends JPanel implements Scrollable {
+        public FixedWidthPanel() {
+            super(new FlowLayout(FlowLayout.LEFT));
+        }
+
+        @Override
+        public void setBounds(int x, int y, int width, int height) {
+			super.setBounds(x, y, getParent().getWidth(), height);
+		}
+
+        @Override
+		public Dimension getPreferredSize() {
+			return new Dimension(getWidth(), getPreferredHeight());
+		}
+
+		public Dimension getPreferredScrollableViewportSize() {
+			return super.getPreferredSize();
+		}
+
+		public int getScrollableUnitIncrement( Rectangle visibleRect, int orientation, int direction ) {
+            final int FRAC = 20;
+			int inc = (orientation == SwingConstants.VERTICAL ? getParent().getHeight() : getParent().getWidth()) / FRAC;
+			return Math.max(inc, 1);
+		}
+
+		public int getScrollableBlockIncrement( Rectangle visibleRect, int orientation, int direction ) {
+			return orientation == SwingConstants.VERTICAL ? getParent().getHeight() : getParent().getWidth();
+		}
+
+		public boolean getScrollableTracksViewportWidth() {
+			return true;
+		}
+
+		public boolean getScrollableTracksViewportHeight() {
+			return false;
+		}
+
+		private int getPreferredHeight() {
+			int prefH = 0;
+            int num = getComponentCount();
+			for (int i = 0; i < num; ++i) {
+				Rectangle rect = getComponent(i).getBounds();
+				int h = rect.y + rect.height;
+				if (h > prefH) {
+					prefH = h;
+                }
+			}
+			prefH += ((FlowLayout) getLayout()).getVgap();
+			return prefH;
+		}
+    }
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsPlugin.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsPlugin.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsPlugin.java	(revision 21967)
@@ -0,0 +1,114 @@
+// License: GPL (v2 or later)
+package org.openstreetmap.josm.plugins.roadsigns;
+
+import static org.openstreetmap.josm.tools.I18n.tr;
+
+import java.awt.Dimension;
+import java.awt.FlowLayout;
+import java.awt.event.ActionEvent;
+import java.awt.event.KeyEvent;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.net.URL;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+import javax.swing.BorderFactory;
+import javax.swing.JButton;
+import javax.swing.JOptionPane;
+
+import org.xml.sax.SAXException;
+
+import org.openstreetmap.josm.Main;
+import org.openstreetmap.josm.actions.JosmAction;
+import org.openstreetmap.josm.gui.dialogs.properties.PropertiesDialog;
+import org.openstreetmap.josm.io.MirroredInputStream;
+import org.openstreetmap.josm.plugins.Plugin;
+import org.openstreetmap.josm.plugins.PluginInformation;
+import org.openstreetmap.josm.tools.Shortcut;
+
+public class RoadSignsPlugin extends Plugin {
+
+    private static boolean presetsLoaded = false;
+    public static List<Sign> signs;
+
+    public RoadSignsPlugin(PluginInformation info) {
+        super(info);
+        registerAction();
+    }
+
+    private void registerAction() {
+        JButton btn = new JButton(new RoadSignAction());
+        btn.setText(null);
+        btn.setBorder(BorderFactory.createEmptyBorder());
+        btn.setPreferredSize(new Dimension(18,18));
+        PropertiesDialog.pluginHook.add(btn);
+        PropertiesDialog.pluginHook.setLayout(new FlowLayout(FlowLayout.CENTER, 0, 0));
+    }
+
+    private static class RoadSignAction extends JosmAction {
+        public RoadSignAction() {
+            super(tr("Roadsign tagging"), "pref/roadsigns-small", tr("Add tags by clicking on road signs"),
+                    Shortcut.registerShortcut("plugin:roadsigns:dialog", tr("Roadsigns plugin: open dialog"), KeyEvent.VK_R, Shortcut.GROUP_LAYER), false);
+        }
+
+        public void actionPerformed(ActionEvent e) {
+            loadSignPresets();
+            RoadSignInputDialog input = new RoadSignInputDialog(signs);
+            input.showDialog();
+        }
+
+    }
+
+    protected static void loadSignPresets() {
+        if (presetsLoaded)
+            return;
+        presetsLoaded=true;
+        List<String> files = new ArrayList<String>(
+                                   Main.pref.getCollection("plugin.roadsign.sources",
+                                        Collections.<String>singletonList("resource://data/defaultroadsignpreset.xml")));
+        for (String source : files) {
+            try {
+                InputStream in = getInputStream(source);
+                RoadSignsReader reader = new RoadSignsReader(in);
+                signs = reader.parse();
+
+            } catch (IOException ex) {
+                ex.printStackTrace();
+                JOptionPane.showMessageDialog(
+                        Main.parent,
+                        tr("Could not read tagging preset source: ''{0}''",source),
+                        tr("Error"),
+                        JOptionPane.ERROR_MESSAGE
+                );
+            } catch (SAXException ex) {
+                ex.printStackTrace();
+                JOptionPane.showMessageDialog(
+                        Main.parent,
+                        tr("Error parsing tagging preset from ''{0}'':\n", source)+ex.getMessage(),
+                        tr("Error"),
+                        JOptionPane.ERROR_MESSAGE
+                );
+            }
+        }
+    }
+
+    /**
+     * Returns an inputstream from urls, files and classloaders, depending on the name.
+     */
+    public static InputStream getInputStream(String source) throws IOException {
+        InputStream in = null;
+        if (source.startsWith("http://") || source.startsWith("ftp://")) {
+            in = new MirroredInputStream(source);
+        } else if (source.startsWith("file:")) {
+            in = new URL(source).openStream();
+        } else if (source.startsWith("resource://")) {
+            in = RoadSignsPlugin.class.getResourceAsStream(source.substring("resource:/".length()));
+        } else {
+            in = new FileInputStream(source);
+        }
+        return in;
+    }
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsReader.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsReader.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsReader.java	(revision 21967)
@@ -0,0 +1,314 @@
+// License: GPL (v2 or later)
+package org.openstreetmap.josm.plugins.roadsigns;
+
+import static org.openstreetmap.josm.tools.I18n.tr;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import javax.xml.parsers.ParserConfigurationException;
+import javax.xml.parsers.SAXParserFactory;
+
+import org.xml.sax.Attributes;
+import org.xml.sax.InputSource;
+import org.xml.sax.Locator;
+import org.xml.sax.SAXException;
+import org.xml.sax.SAXParseException;
+import org.xml.sax.helpers.DefaultHandler;
+
+import org.openstreetmap.josm.io.OsmDataParsingException;
+import org.openstreetmap.josm.plugins.roadsigns.Sign.SignParameter;
+import org.openstreetmap.josm.plugins.roadsigns.Sign.Tag;
+import org.openstreetmap.josm.tools.LanguageInfo;
+
+import org.openstreetmap.josm.plugins.roadsigns.javacc.ParseException;
+import org.openstreetmap.josm.plugins.roadsigns.javacc.TokenMgrError;
+
+/**
+ * Parses a road sign preset file.
+ *
+ */
+public class RoadSignsReader {
+    public static final String lang = LanguageInfo.getLanguageCodeXML();
+
+    private InputSource inputSource;
+    private final boolean debug = false;
+    /* counts the nesting level when we step into unknown elements */
+    private int unknownLevel;
+
+    public RoadSignsReader(InputStream source) throws IOException {
+        this.inputSource = new InputSource(new InputStreamReader(source, "UTF-8"));
+    }
+
+    private class SignParser extends DefaultHandler {
+        public List<Sign> allSigns;
+        public Map<Sign, List<String>> supplementIds;
+
+        String characters = "";
+        List<Sign> folders = new ArrayList<Sign>();
+        Sign curSign;
+        Tag curTag;
+
+        private Locator locator;
+
+        @Override
+        public void setDocumentLocator(Locator locator) {
+            this.locator = locator;
+        }
+
+
+        @Override public void startElement(String ns, String lname, String qname, Attributes atts) throws SAXException {
+            if (debug) System.err.println("<"+qname+">: ");
+
+            if (unknownLevel > 0) {
+                unknownLevel++;
+            } else if (qname.equals("roadsignpreset")) {
+
+            } else if (qname.equals("sign")) {
+                if (curSign != null)
+                    throwException("found sign inside sign");
+                curSign = new Sign();
+                supplementIds.put(curSign, new ArrayList<String>());
+                try {
+                    curSign.ref = ParametrizedString.create(atts.getValue("ref"));
+                } catch (ParseException ex) {
+                    throw new SAXException(ex);
+                } catch (TokenMgrError ex) {
+                    throwException(ex.toString());
+                }
+                curSign.id = atts.getValue("id");
+
+                if (curSign.id == null) {
+                    if (curSign.ref == null)
+                        throwException("Both id and ref attribute missing.");
+                    curSign.id = curSign.ref.toString();
+                }
+
+                curSign.name = getLocalized(atts, "name");
+                if (curSign.name == null)
+                    throwException("missing attribute: name");
+
+                curSign.long_name = getLocalized(atts, "long_name");
+
+                String iconURL = atts.getValue("icon");
+                if (iconURL == null) {
+                    iconURL = curSign.id;
+                    iconURL = iconURL.replace(':', '_');
+                    iconURL = iconURL.replace('.', '_');
+                }
+                curSign.iconURL = iconURL;
+                 
+                if ("yes".equals(atts.getValue("supplementary"))) {
+                    curSign.isSupplementing = true;
+                }
+
+            } else if (curSign != null && qname.equals("tag")) {
+                if (curSign == null) {
+                    throwException("found tag outside sign");
+                }
+                if (curTag != null) {
+                    throwException("found tag inside tag");
+                }
+                curTag = new Tag();
+                curTag.ident = atts.getValue("ident");
+                curTag.tag_ref = atts.getValue("tag_ref");
+                try {
+                    curTag.key = ParametrizedString.create(atts.getValue("key"));
+                    curTag.value = ParametrizedString.create(atts.getValue("value"));
+                    curTag.append_value = ParametrizedString.create(atts.getValue("append_value"));
+                    curTag.condition = ParametrizedString.create(atts.getValue("condition"));
+                } catch (ParseException ex) {
+                    throw new SAXException(ex);
+                } catch (TokenMgrError ex) {
+                    throw new SAXException(ex.toString());
+                }
+
+            } else if (curSign != null && qname.equals("supplementary")) {
+                supplementIds.get(curSign).add(getMandatoryAttribute(atts, "id"));
+
+            } else if (curSign != null && qname.equals("parameter")) {
+                String inputType = getMandatoryAttribute(atts, "input");
+                SignParameter p = new SignParameter(inputType);
+                p.ident = getMandatoryAttribute(atts, "ident");
+                p.deflt = getMandatoryAttribute(atts, "default");
+                p.prefix = atts.getValue("prefix");
+                p.suffix = atts.getValue("suffix");
+                String width = atts.getValue("field_width");
+                if (width != null) {
+                    p.fieldWidth = Integer.parseInt(width);
+                }
+                curSign.params.add(p);
+            } else {
+                warning("unknown element: "+qname);
+                unknownLevel++;
+            }
+
+            if (debug) {
+                for (int i=0; i<atts.getLength(); ++i) {
+                    System.err.println("  "+atts.getQName(i)+": "+atts.getValue(i));
+                }
+            }
+        }
+        @Override public void endElement(String ns, String lname, String qname) throws SAXException {
+            if (debug) System.err.print("</"+qname+"> |");
+            if (unknownLevel > 0) {
+                unknownLevel--;
+            } else if (qname.equals("sign")) {
+                allSigns.add(curSign);
+                curSign = null;
+
+            } else if (qname.equals("tag")) {
+                curSign.tags.add(curTag);
+                curTag = null;
+            }
+
+            characters = characters.trim();
+            if (!characters.equals("")) {
+                if (debug) System.err.print(characters);
+                characters = "";
+            }
+            if (debug) System.err.println("|");
+        }
+        @Override public void characters(char[] ch, int start, int length) {
+            String s = new String(ch, start, length);
+            characters += s;
+        }
+
+        private String getLocalized(Attributes atts, String ident) {
+            String result = atts.getValue(lang+ident);
+            if (result == null) {
+                result = atts.getValue(ident);
+                if (result == null)
+                    return null;
+                result = tr(result);
+            }
+            return result;
+        }
+
+        private String getMandatoryAttribute(Attributes atts, String ident) throws OsmDataParsingException {
+            String result = atts.getValue(ident);
+            if (result == null) {
+                throwException("missing attribute: "+ident);
+            }
+            return result;
+        }
+
+        @Override
+        public void error(SAXParseException e) throws SAXException {
+            throwException(e);
+        }
+
+        @Override
+        public void fatalError(SAXParseException e) throws SAXException {
+            throwException(e);
+        }
+
+        protected void throwException(Exception e) throws ExtendedParsingException {
+            throw new ExtendedParsingException(e).rememberLocation(locator);
+        }
+        protected void throwException(String msg) throws OsmDataParsingException {
+            throw new OsmDataParsingException(msg).rememberLocation(locator);
+        }
+
+        private void warning(String s) {
+            try {
+                throwException(s);
+            } catch (OsmDataParsingException ex) {
+                System.err.println("Warning: "+ex.getMessage());
+            }
+        }
+        public void wireSupplements() throws OsmDataParsingException {
+            Map<String, Sign> map = new HashMap<String, Sign>();
+            for (Sign sign : allSigns) {
+                if (map.get(sign.id) != null)
+                    throwException("Found 2 signs with same ref "+sign.ref);
+                map.put(sign.id, sign);
+            }
+            for (Sign sign : allSigns) {
+                for (String id : supplementIds.get(sign)) {
+                    Sign supp = map.get(id);
+                    if (supp == null)
+                        throwException("Missing supplement definition "+id+" for sign "+sign.id+".");
+                    sign.supplements.add(supp);
+                }
+            }
+        }
+    }
+
+
+    public static class ExtendedParsingException extends SAXException {
+        private int columnNumber;
+        private int lineNumber;
+
+        public ExtendedParsingException() {
+            super();
+        }
+
+        public ExtendedParsingException(Exception e) {
+            super(e);
+        }
+
+        public ExtendedParsingException(String message, Exception e) {
+            super(message, e);
+        }
+
+        public ExtendedParsingException(String message) {
+            super(message);
+        }
+
+        public ExtendedParsingException rememberLocation(Locator locator) {
+            if (locator == null) return this;
+            this.columnNumber = locator.getColumnNumber();
+            this.lineNumber = locator.getLineNumber();
+            return this;
+        }
+
+        @Override
+        public String getMessage() {
+            String msg = super.getMessage();
+            if (lineNumber == 0 && columnNumber == 0)
+                return msg;
+            System.err.println(".");
+            if (msg == null) {
+                msg = getClass().getName();
+            }
+            msg = msg + " " + tr("(at line {0}, column {1})", lineNumber, columnNumber);
+            return msg;
+        }
+
+        public int getColumnNumber() {
+            return columnNumber;
+        }
+
+        public int getLineNumber() {
+            return lineNumber;
+        }
+    }
+    
+    /**
+     *
+     * @return True if file was properly parsed, false if there was error during parsing but some data were parsed anyway
+     * @throws SAXException
+     * @throws IOException
+     */
+    public List<Sign> parse() throws SAXException, IOException {
+        SignParser parser = new SignParser();
+        parser.allSigns = new ArrayList<Sign>();
+        parser.supplementIds = new HashMap<Sign, List<String>>();
+        try {
+            SAXParserFactory factory = SAXParserFactory.newInstance();
+            factory.setNamespaceAware(true);
+            factory.newSAXParser().parse(inputSource, parser);
+            parser.wireSupplements();
+            return parser.allSigns;
+        } catch (ParserConfigurationException e) {
+            e.printStackTrace(); // broken SAXException chaining
+            throw new SAXException(e);
+        }
+    }
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/Sign.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/Sign.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/Sign.java	(revision 21967)
@@ -0,0 +1,123 @@
+// License: GPL (v2 or later)
+package org.openstreetmap.josm.plugins.roadsigns;
+
+import static org.openstreetmap.josm.tools.I18n.tr;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+import javax.swing.ImageIcon;
+import javax.swing.JLabel;
+
+import org.openstreetmap.josm.tools.ImageProvider;
+
+/**
+ * Information about one road sign.
+ *
+ */
+public class Sign {
+    public String id;
+    public ParametrizedString ref;
+    public String iconURL;
+    public ImageIcon icon;
+    public ImageIcon disabledIcon;
+    public String name;
+    public String long_name;
+    public List<Tag> tags = new ArrayList<Tag>();
+    public List<Sign> supplements = new ArrayList<Sign>();
+    public List<SignParameter> params = new ArrayList<SignParameter>();
+    public boolean isSupplementing;
+
+    public JLabel label; // FIXME: don't put gui stuff here
+
+    public static class Tag {
+        public ParametrizedString key;
+        public ParametrizedString value;
+        public String ident;
+        public String tag_ref;
+        public ParametrizedString append_value;
+        public ParametrizedString condition;
+        @Override
+        public String toString() {
+            return "<TAG key="+key+" value="+value+" ident="+ident+" tag_ref="+tag_ref+
+                    " append_value="+append_value+" condition="+condition+">";
+        }
+    }
+
+    public static class SignParameter {
+        public enum Input {TEXTFIELD, COMBO};
+        public String ident;
+        public Input input;
+        String deflt;
+        String prefix;
+        String suffix;
+        Integer fieldWidth;
+
+        public SignParameter(String inputType) {
+            if (inputType.equals("textfield")) {
+                input = Input.TEXTFIELD;
+            } else if (inputType.equals("combo")) {
+                input = Input.COMBO;
+            } else
+                throw new IllegalArgumentException("unknown input type: "+inputType);
+        }
+
+        public String getDefault() {
+            return deflt == null ? "" : deflt;
+        }
+        public String getPrefix() {
+            return prefix == null ? "" : prefix;
+        }
+        public String getSuffix() {
+            return suffix == null ? "" : suffix;
+        }
+    }
+
+    public ImageIcon getIcon() {
+        if (icon == null) {
+            icon = ImageProvider.get(iconURL);
+        }
+        return icon;
+    }
+
+    /**
+     * Creates a generic form of the traffic sign ref.
+     * It strips osm specific syntax so it can be
+     * used in documentation and help texts.
+     * @return null if the format is unknown
+     */
+    public String getDefaultRef() {
+        if (ref == null)
+            return null;
+        String r = ref.toString();
+        /* strip parameters */
+        r = r.replaceAll("\\[.*\\]", "");
+        if (r.startsWith("DE:")) {
+            r=r.replaceFirst("DE:", "");
+            /* normal sign: starts with 3 digits, then a non-digit */
+            {
+                Pattern p = Pattern.compile("^\\d{3}(\\D|$)");
+                Matcher m = p.matcher(r);
+                if (m.find())
+                    return tr("Sign {0}", r);
+            }
+            /* supplementary sign: starts with 4 digits, then a non-digit */
+            {
+                Pattern p = Pattern.compile("^\\d{4}(\\D|$)");
+                Matcher m = p.matcher(r);
+                if (m.find())
+                    return tr("Additional sign {0}", r);
+            }
+            return null;
+        }
+        return null;
+    }
+
+    @Override
+    public String toString() {
+        return id+" - "+name;
+    }
+
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamString.jj
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamString.jj	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamString.jj	(revision 21967)
@@ -0,0 +1,113 @@
+//License: GPL (v2 or later)
+
+/*
+
+ This is a source file for javacc. It generates a parser for strings 
+ with parameters (in perl style). It returns a list of
+ tokens of type String (Str) or Parameter (Prm). Sub-strings of the
+ form "$ident" or "${ident}" are identified as a parameter.
+ '$' or '\' signs have to be quoted.
+ 
+ There can be multiple consecutive string tokens in the output list.
+ The client most likely wants the merge these, but it is not done
+ here to keep the parser as simple as possible.
+ 
+ Examples:
+ "up to $x%"            --> "up to ", <x>, "%"
+ "$int_val2 \$ and \\ or"    --> <int_val2>, " ", "$", " and ", "\", " or"
+ "In ${num}th row"      --> "In ", <num>, "th row"
+ 
+*/
+
+options {
+  STATIC = false;
+}
+
+PARSER_BEGIN(ParamStringScanner)
+package org.openstreetmap.josm.plugins.roadsigns.javacc;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.openstreetmap.josm.plugins.roadsigns.ParametrizedString.Prm;
+import org.openstreetmap.josm.plugins.roadsigns.ParametrizedString.Str;
+import org.openstreetmap.josm.plugins.roadsigns.ParametrizedString.StringOrParameter;
+
+public class ParamStringScanner {
+	public static List<StringOrParameter> parseIt(String s) throws ParseException {
+		ParamStringScanner parser = new ParamStringScanner(new java.io.StringReader(s));
+		return parser.parse();
+	}
+}
+PARSER_END(ParamStringScanner)
+
+TOKEN :
+{
+  < ID: "$" ( ( ["a"-"z","A"-"Z","_"] ( ["a"-"z","A"-"Z","_","0"-"9"] )* ) | ( "{" ["a"-"z","A"-"Z","_"] ( ["a"-"z","A"-"Z","_","0"-"9"] )* "}" ) ) >
+|
+  < ESC : "\\\\" | "\\$" >
+|
+  < REST: ( ~["\\","$"] )+ >
+}
+
+
+List<StringOrParameter> parse() : 
+{
+    String val;
+    Token t;
+    List<StringOrParameter> lst = new ArrayList<StringOrParameter>();
+}
+{
+    (
+    val=id()
+        {
+            lst.add(new Prm(val));
+        }
+| 
+    val=esc()
+        {
+            lst.add(new Str(val));
+        }
+| 
+    t=<REST>
+        {
+            lst.add(new Str(t.image));
+        }
+    )*
+        {
+            return lst;
+        }
+}
+
+String id() :
+{
+    Token t;
+    String ret;
+}
+{
+    t=<ID>
+    {
+        ret = t.image;
+        ret = ret.substring(1);
+        if (ret.startsWith("{")) {
+            ret = ret.substring(1, ret.length()-1);
+        }
+        return ret;
+    }
+}
+
+String esc() :
+{
+    Token t;
+}
+{
+    t=<ESC>
+    {
+        if (t.image.equals("\\\\")) {
+            return "\\";
+        } else if (t.image.equals("\\$")) {
+            return "$";
+        } else
+            throw new AssertionError();
+    }
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamStringScanner.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamStringScanner.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamStringScanner.java	(revision 21967)
@@ -0,0 +1,249 @@
+/* Generated By:JavaCC: Do not edit this line. ParamStringScanner.java */
+package org.openstreetmap.josm.plugins.roadsigns.javacc;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.openstreetmap.josm.plugins.roadsigns.ParametrizedString.Prm;
+import org.openstreetmap.josm.plugins.roadsigns.ParametrizedString.Str;
+import org.openstreetmap.josm.plugins.roadsigns.ParametrizedString.StringOrParameter;
+
+public class ParamStringScanner implements ParamStringScannerConstants {
+        public static List<StringOrParameter> parseIt(String s) throws ParseException {
+                ParamStringScanner parser = new ParamStringScanner(new java.io.StringReader(s));
+                return parser.parse();
+        }
+
+  final public List<StringOrParameter> parse() throws ParseException {
+    String val;
+    Token t;
+    List<StringOrParameter> lst = new ArrayList<StringOrParameter>();
+    label_1:
+    while (true) {
+      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+      case ID:
+      case ESC:
+      case REST:
+        ;
+        break;
+      default:
+        jj_la1[0] = jj_gen;
+        break label_1;
+      }
+      switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+      case ID:
+        val = id();
+            lst.add(new Prm(val));
+        break;
+      case ESC:
+        val = esc();
+            lst.add(new Str(val));
+        break;
+      case REST:
+        t = jj_consume_token(REST);
+            lst.add(new Str(t.image));
+        break;
+      default:
+        jj_la1[1] = jj_gen;
+        jj_consume_token(-1);
+        throw new ParseException();
+      }
+    }
+            {if (true) return lst;}
+    throw new Error("Missing return statement in function");
+  }
+
+  final public String id() throws ParseException {
+    Token t;
+    String ret;
+    t = jj_consume_token(ID);
+        ret = t.image;
+        ret = ret.substring(1);
+        if (ret.startsWith("{")) {
+            ret = ret.substring(1, ret.length()-1);
+        }
+        {if (true) return ret;}
+    throw new Error("Missing return statement in function");
+  }
+
+  final public String esc() throws ParseException {
+    Token t;
+    t = jj_consume_token(ESC);
+        if (t.image.equals("\\\\")) {
+            {if (true) return "\\";}
+        } else if (t.image.equals("\\$")) {
+            {if (true) return "$";}
+        } else
+            {if (true) throw new AssertionError();}
+    throw new Error("Missing return statement in function");
+  }
+
+  /** Generated Token Manager. */
+  public ParamStringScannerTokenManager token_source;
+  SimpleCharStream jj_input_stream;
+  /** Current token. */
+  public Token token;
+  /** Next token. */
+  public Token jj_nt;
+  private int jj_ntk;
+  private int jj_gen;
+  final private int[] jj_la1 = new int[2];
+  static private int[] jj_la1_0;
+  static {
+      jj_la1_init_0();
+   }
+   private static void jj_la1_init_0() {
+      jj_la1_0 = new int[] {0xe,0xe,};
+   }
+
+  /** Constructor with InputStream. */
+  public ParamStringScanner(java.io.InputStream stream) {
+     this(stream, null);
+  }
+  /** Constructor with InputStream and supplied encoding */
+  public ParamStringScanner(java.io.InputStream stream, String encoding) {
+    try { jj_input_stream = new SimpleCharStream(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); }
+    token_source = new ParamStringScannerTokenManager(jj_input_stream);
+    token = new Token();
+    jj_ntk = -1;
+    jj_gen = 0;
+    for (int i = 0; i < 2; i++) jj_la1[i] = -1;
+  }
+
+  /** Reinitialise. */
+  public void ReInit(java.io.InputStream stream) {
+     ReInit(stream, null);
+  }
+  /** Reinitialise. */
+  public void ReInit(java.io.InputStream stream, String encoding) {
+    try { jj_input_stream.ReInit(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); }
+    token_source.ReInit(jj_input_stream);
+    token = new Token();
+    jj_ntk = -1;
+    jj_gen = 0;
+    for (int i = 0; i < 2; i++) jj_la1[i] = -1;
+  }
+
+  /** Constructor. */
+  public ParamStringScanner(java.io.Reader stream) {
+    jj_input_stream = new SimpleCharStream(stream, 1, 1);
+    token_source = new ParamStringScannerTokenManager(jj_input_stream);
+    token = new Token();
+    jj_ntk = -1;
+    jj_gen = 0;
+    for (int i = 0; i < 2; i++) jj_la1[i] = -1;
+  }
+
+  /** Reinitialise. */
+  public void ReInit(java.io.Reader stream) {
+    jj_input_stream.ReInit(stream, 1, 1);
+    token_source.ReInit(jj_input_stream);
+    token = new Token();
+    jj_ntk = -1;
+    jj_gen = 0;
+    for (int i = 0; i < 2; i++) jj_la1[i] = -1;
+  }
+
+  /** Constructor with generated Token Manager. */
+  public ParamStringScanner(ParamStringScannerTokenManager tm) {
+    token_source = tm;
+    token = new Token();
+    jj_ntk = -1;
+    jj_gen = 0;
+    for (int i = 0; i < 2; i++) jj_la1[i] = -1;
+  }
+
+  /** Reinitialise. */
+  public void ReInit(ParamStringScannerTokenManager tm) {
+    token_source = tm;
+    token = new Token();
+    jj_ntk = -1;
+    jj_gen = 0;
+    for (int i = 0; i < 2; i++) jj_la1[i] = -1;
+  }
+
+  private Token jj_consume_token(int kind) throws ParseException {
+    Token oldToken;
+    if ((oldToken = token).next != null) token = token.next;
+    else token = token.next = token_source.getNextToken();
+    jj_ntk = -1;
+    if (token.kind == kind) {
+      jj_gen++;
+      return token;
+    }
+    token = oldToken;
+    jj_kind = kind;
+    throw generateParseException();
+  }
+
+
+/** Get the next Token. */
+  final public Token getNextToken() {
+    if (token.next != null) token = token.next;
+    else token = token.next = token_source.getNextToken();
+    jj_ntk = -1;
+    jj_gen++;
+    return token;
+  }
+
+/** Get the specific Token. */
+  final public Token getToken(int index) {
+    Token t = token;
+    for (int i = 0; i < index; i++) {
+      if (t.next != null) t = t.next;
+      else t = t.next = token_source.getNextToken();
+    }
+    return t;
+  }
+
+  private int jj_ntk() {
+    if ((jj_nt=token.next) == null)
+      return (jj_ntk = (token.next=token_source.getNextToken()).kind);
+    else
+      return (jj_ntk = jj_nt.kind);
+  }
+
+  private java.util.List jj_expentries = new java.util.ArrayList();
+  private int[] jj_expentry;
+  private int jj_kind = -1;
+
+  /** Generate ParseException. */
+  public ParseException generateParseException() {
+    jj_expentries.clear();
+    boolean[] la1tokens = new boolean[4];
+    if (jj_kind >= 0) {
+      la1tokens[jj_kind] = true;
+      jj_kind = -1;
+    }
+    for (int i = 0; i < 2; i++) {
+      if (jj_la1[i] == jj_gen) {
+        for (int j = 0; j < 32; j++) {
+          if ((jj_la1_0[i] & (1<<j)) != 0) {
+            la1tokens[j] = true;
+          }
+        }
+      }
+    }
+    for (int i = 0; i < 4; i++) {
+      if (la1tokens[i]) {
+        jj_expentry = new int[1];
+        jj_expentry[0] = i;
+        jj_expentries.add(jj_expentry);
+      }
+    }
+    int[][] exptokseq = new int[jj_expentries.size()][];
+    for (int i = 0; i < jj_expentries.size(); i++) {
+      exptokseq[i] = (int[])jj_expentries.get(i);
+    }
+    return new ParseException(token, exptokseq, tokenImage);
+  }
+
+  /** Enable tracing. */
+  final public void enable_tracing() {
+  }
+
+  /** Disable tracing. */
+  final public void disable_tracing() {
+  }
+
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamStringScannerConstants.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamStringScannerConstants.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamStringScannerConstants.java	(revision 21967)
@@ -0,0 +1,31 @@
+/* Generated By:JavaCC: Do not edit this line. ParamStringScannerConstants.java */
+package org.openstreetmap.josm.plugins.roadsigns.javacc;
+
+
+/** 
+ * Token literal values and constants.
+ * Generated by org.javacc.parser.OtherFilesGen#start()
+ */
+public interface ParamStringScannerConstants {
+
+  /** End of File. */
+  int EOF = 0;
+  /** RegularExpression Id. */
+  int ID = 1;
+  /** RegularExpression Id. */
+  int ESC = 2;
+  /** RegularExpression Id. */
+  int REST = 3;
+
+  /** Lexical state. */
+  int DEFAULT = 0;
+
+  /** Literal token values. */
+  String[] tokenImage = {
+    "<EOF>",
+    "<ID>",
+    "<ESC>",
+    "<REST>",
+  };
+
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamStringScannerTokenManager.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamStringScannerTokenManager.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParamStringScannerTokenManager.java	(revision 21967)
@@ -0,0 +1,333 @@
+/* Generated By:JavaCC: Do not edit this line. ParamStringScannerTokenManager.java */
+package org.openstreetmap.josm.plugins.roadsigns.javacc;
+import java.util.ArrayList;
+import java.util.List;
+import org.openstreetmap.josm.plugins.roadsigns.ParametrizedString.Prm;
+import org.openstreetmap.josm.plugins.roadsigns.ParametrizedString.Str;
+import org.openstreetmap.josm.plugins.roadsigns.ParametrizedString.StringOrParameter;
+
+/** Token Manager. */
+public class ParamStringScannerTokenManager implements ParamStringScannerConstants
+{
+
+  /** Debug output. */
+  public  java.io.PrintStream debugStream = System.out;
+  /** Set debug output. */
+  public  void setDebugStream(java.io.PrintStream ds) { debugStream = ds; }
+private int jjMoveStringLiteralDfa0_0()
+{
+   return jjMoveNfa_0(0, 0);
+}
+static final long[] jjbitVec0 = {
+   0x0L, 0x0L, 0xffffffffffffffffL, 0xffffffffffffffffL
+};
+private int jjMoveNfa_0(int startState, int curPos)
+{
+   int startsAt = 0;
+   jjnewStateCnt = 11;
+   int i = 1;
+   jjstateSet[0] = startState;
+   int kind = 0x7fffffff;
+   for (;;)
+   {
+      if (++jjround == 0x7fffffff)
+         ReInitRounds();
+      if (curChar < 64)
+      {
+         long l = 1L << curChar;
+         do
+         {
+            switch(jjstateSet[--i])
+            {
+               case 0:
+                  if ((0xffffffefffffffffL & l) != 0L)
+                  {
+                     if (kind > 3)
+                        kind = 3;
+                     jjCheckNAdd(7);
+                  }
+                  else if (curChar == 36)
+                     jjAddStates(0, 1);
+                  break;
+               case 2:
+                  if ((0x3ff000000000000L & l) == 0L)
+                     break;
+                  if (kind > 1)
+                     kind = 1;
+                  jjstateSet[jjnewStateCnt++] = 2;
+                  break;
+               case 5:
+                  if ((0x3ff000000000000L & l) != 0L)
+                     jjAddStates(2, 3);
+                  break;
+               case 7:
+                  if ((0xffffffefffffffffL & l) == 0L)
+                     break;
+                  if (kind > 3)
+                     kind = 3;
+                  jjCheckNAdd(7);
+                  break;
+               case 10:
+                  if (curChar == 36 && kind > 2)
+                     kind = 2;
+                  break;
+               default : break;
+            }
+         } while(i != startsAt);
+      }
+      else if (curChar < 128)
+      {
+         long l = 1L << (curChar & 077);
+         do
+         {
+            switch(jjstateSet[--i])
+            {
+               case 0:
+                  if ((0xffffffffefffffffL & l) != 0L)
+                  {
+                     if (kind > 3)
+                        kind = 3;
+                     jjCheckNAdd(7);
+                  }
+                  else if (curChar == 92)
+                     jjAddStates(4, 5);
+                  break;
+               case 1:
+               case 2:
+                  if ((0x7fffffe87fffffeL & l) == 0L)
+                     break;
+                  if (kind > 1)
+                     kind = 1;
+                  jjCheckNAdd(2);
+                  break;
+               case 3:
+                  if (curChar == 123)
+                     jjstateSet[jjnewStateCnt++] = 4;
+                  break;
+               case 4:
+               case 5:
+                  if ((0x7fffffe87fffffeL & l) != 0L)
+                     jjCheckNAddTwoStates(5, 6);
+                  break;
+               case 6:
+                  if (curChar == 125 && kind > 1)
+                     kind = 1;
+                  break;
+               case 7:
+                  if ((0xffffffffefffffffL & l) == 0L)
+                     break;
+                  if (kind > 3)
+                     kind = 3;
+                  jjCheckNAdd(7);
+                  break;
+               case 8:
+                  if (curChar == 92)
+                     jjAddStates(4, 5);
+                  break;
+               case 9:
+                  if (curChar == 92 && kind > 2)
+                     kind = 2;
+                  break;
+               default : break;
+            }
+         } while(i != startsAt);
+      }
+      else
+      {
+         int i2 = (curChar & 0xff) >> 6;
+         long l2 = 1L << (curChar & 077);
+         do
+         {
+            switch(jjstateSet[--i])
+            {
+               case 0:
+               case 7:
+                  if ((jjbitVec0[i2] & l2) == 0L)
+                     break;
+                  if (kind > 3)
+                     kind = 3;
+                  jjCheckNAdd(7);
+                  break;
+               default : break;
+            }
+         } while(i != startsAt);
+      }
+      if (kind != 0x7fffffff)
+      {
+         jjmatchedKind = kind;
+         jjmatchedPos = curPos;
+         kind = 0x7fffffff;
+      }
+      ++curPos;
+      if ((i = jjnewStateCnt) == (startsAt = 11 - (jjnewStateCnt = startsAt)))
+         return curPos;
+      try { curChar = input_stream.readChar(); }
+      catch(java.io.IOException e) { return curPos; }
+   }
+}
+static final int[] jjnextStates = {
+   1, 3, 5, 6, 9, 10, 
+};
+
+/** Token literal values. */
+public static final String[] jjstrLiteralImages = {
+"", null, null, null, };
+
+/** Lexer state names. */
+public static final String[] lexStateNames = {
+   "DEFAULT", 
+};
+protected SimpleCharStream input_stream;
+private final int[] jjrounds = new int[11];
+private final int[] jjstateSet = new int[22];
+protected char curChar;
+/** Constructor. */
+public ParamStringScannerTokenManager(SimpleCharStream stream){
+   if (SimpleCharStream.staticFlag)
+      throw new Error("ERROR: Cannot use a static CharStream class with a non-static lexical analyzer.");
+   input_stream = stream;
+}
+
+/** Constructor. */
+public ParamStringScannerTokenManager(SimpleCharStream stream, int lexState){
+   this(stream);
+   SwitchTo(lexState);
+}
+
+/** Reinitialise parser. */
+public void ReInit(SimpleCharStream stream)
+{
+   jjmatchedPos = jjnewStateCnt = 0;
+   curLexState = defaultLexState;
+   input_stream = stream;
+   ReInitRounds();
+}
+private void ReInitRounds()
+{
+   int i;
+   jjround = 0x80000001;
+   for (i = 11; i-- > 0;)
+      jjrounds[i] = 0x80000000;
+}
+
+/** Reinitialise parser. */
+public void ReInit(SimpleCharStream stream, int lexState)
+{
+   ReInit(stream);
+   SwitchTo(lexState);
+}
+
+/** Switch to specified lex state. */
+public void SwitchTo(int lexState)
+{
+   if (lexState >= 1 || lexState < 0)
+      throw new TokenMgrError("Error: Ignoring invalid lexical state : " + lexState + ". State unchanged.", TokenMgrError.INVALID_LEXICAL_STATE);
+   else
+      curLexState = lexState;
+}
+
+protected Token jjFillToken()
+{
+   final Token t;
+   final String curTokenImage;
+   final int beginLine;
+   final int endLine;
+   final int beginColumn;
+   final int endColumn;
+   String im = jjstrLiteralImages[jjmatchedKind];
+   curTokenImage = (im == null) ? input_stream.GetImage() : im;
+   beginLine = input_stream.getBeginLine();
+   beginColumn = input_stream.getBeginColumn();
+   endLine = input_stream.getEndLine();
+   endColumn = input_stream.getEndColumn();
+   t = Token.newToken(jjmatchedKind, curTokenImage);
+
+   t.beginLine = beginLine;
+   t.endLine = endLine;
+   t.beginColumn = beginColumn;
+   t.endColumn = endColumn;
+
+   return t;
+}
+
+int curLexState = 0;
+int defaultLexState = 0;
+int jjnewStateCnt;
+int jjround;
+int jjmatchedPos;
+int jjmatchedKind;
+
+/** Get the next Token. */
+public Token getNextToken() 
+{
+  Token matchedToken;
+  int curPos = 0;
+
+  EOFLoop :
+  for (;;)
+  {   
+   try   
+   {     
+      curChar = input_stream.BeginToken();
+   }     
+   catch(java.io.IOException e)
+   {        
+      jjmatchedKind = 0;
+      matchedToken = jjFillToken();
+      return matchedToken;
+   }
+
+   jjmatchedKind = 0x7fffffff;
+   jjmatchedPos = 0;
+   curPos = jjMoveStringLiteralDfa0_0();
+   if (jjmatchedKind != 0x7fffffff)
+   {
+      if (jjmatchedPos + 1 < curPos)
+         input_stream.backup(curPos - jjmatchedPos - 1);
+         matchedToken = jjFillToken();
+         return matchedToken;
+   }
+   int error_line = input_stream.getEndLine();
+   int error_column = input_stream.getEndColumn();
+   String error_after = null;
+   boolean EOFSeen = false;
+   try { input_stream.readChar(); input_stream.backup(1); }
+   catch (java.io.IOException e1) {
+      EOFSeen = true;
+      error_after = curPos <= 1 ? "" : input_stream.GetImage();
+      if (curChar == '\n' || curChar == '\r') {
+         error_line++;
+         error_column = 0;
+      }
+      else
+         error_column++;
+   }
+   if (!EOFSeen) {
+      input_stream.backup(1);
+      error_after = curPos <= 1 ? "" : input_stream.GetImage();
+   }
+   throw new TokenMgrError(EOFSeen, curLexState, error_line, error_column, error_after, curChar, TokenMgrError.LEXICAL_ERROR);
+  }
+}
+
+private void jjCheckNAdd(int state)
+{
+   if (jjrounds[state] != jjround)
+   {
+      jjstateSet[jjnewStateCnt++] = state;
+      jjrounds[state] = jjround;
+   }
+}
+private void jjAddStates(int start, int end)
+{
+   do {
+      jjstateSet[jjnewStateCnt++] = jjnextStates[start];
+   } while (start++ != end);
+}
+private void jjCheckNAddTwoStates(int state1, int state2)
+{
+   jjCheckNAdd(state1);
+   jjCheckNAdd(state2);
+}
+
+}
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParseException.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParseException.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/ParseException.java	(revision 21967)
@@ -0,0 +1,198 @@
+/* Generated By:JavaCC: Do not edit this line. ParseException.java Version 4.1 */
+/* JavaCCOptions:KEEP_LINE_COL=null */
+package org.openstreetmap.josm.plugins.roadsigns.javacc;
+
+/**
+ * This exception is thrown when parse errors are encountered.
+ * You can explicitly create objects of this exception type by
+ * calling the method generateParseException in the generated
+ * parser.
+ *
+ * You can modify this class to customize your error reporting
+ * mechanisms so long as you retain the public fields.
+ */
+public class ParseException extends Exception {
+
+  /**
+   * This constructor is used by the method "generateParseException"
+   * in the generated parser.  Calling this constructor generates
+   * a new object of this type with the fields "currentToken",
+   * "expectedTokenSequences", and "tokenImage" set.  The boolean
+   * flag "specialConstructor" is also set to true to indicate that
+   * this constructor was used to create this object.
+   * This constructor calls its super class with the empty string
+   * to force the "toString" method of parent class "Throwable" to
+   * print the error message in the form:
+   *     ParseException: <result of getMessage>
+   */
+  public ParseException(Token currentTokenVal,
+                        int[][] expectedTokenSequencesVal,
+                        String[] tokenImageVal
+                       )
+  {
+    super("");
+    specialConstructor = true;
+    currentToken = currentTokenVal;
+    expectedTokenSequences = expectedTokenSequencesVal;
+    tokenImage = tokenImageVal;
+  }
+
+  /**
+   * The following constructors are for use by you for whatever
+   * purpose you can think of.  Constructing the exception in this
+   * manner makes the exception behave in the normal way - i.e., as
+   * documented in the class "Throwable".  The fields "errorToken",
+   * "expectedTokenSequences", and "tokenImage" do not contain
+   * relevant information.  The JavaCC generated code does not use
+   * these constructors.
+   */
+
+  public ParseException() {
+    super();
+    specialConstructor = false;
+  }
+
+  /** Constructor with message. */
+  public ParseException(String message) {
+    super(message);
+    specialConstructor = false;
+  }
+
+  /**
+   * This variable determines which constructor was used to create
+   * this object and thereby affects the semantics of the
+   * "getMessage" method (see below).
+   */
+  protected boolean specialConstructor;
+
+  /**
+   * This is the last token that has been consumed successfully.  If
+   * this object has been created due to a parse error, the token
+   * followng this token will (therefore) be the first error token.
+   */
+  public Token currentToken;
+
+  /**
+   * Each entry in this array is an array of integers.  Each array
+   * of integers represents a sequence of tokens (by their ordinal
+   * values) that is expected at this point of the parse.
+   */
+  public int[][] expectedTokenSequences;
+
+  /**
+   * This is a reference to the "tokenImage" array of the generated
+   * parser within which the parse error occurred.  This array is
+   * defined in the generated ...Constants interface.
+   */
+  public String[] tokenImage;
+
+  /**
+   * This method has the standard behavior when this object has been
+   * created using the standard constructors.  Otherwise, it uses
+   * "currentToken" and "expectedTokenSequences" to generate a parse
+   * error message and returns it.  If this object has been created
+   * due to a parse error, and you do not catch it (it gets thrown
+   * from the parser), then this method is called during the printing
+   * of the final stack trace, and hence the correct error message
+   * gets displayed.
+   */
+  public String getMessage() {
+    if (!specialConstructor) {
+      return super.getMessage();
+    }
+    StringBuffer expected = new StringBuffer();
+    int maxSize = 0;
+    for (int i = 0; i < expectedTokenSequences.length; i++) {
+      if (maxSize < expectedTokenSequences[i].length) {
+        maxSize = expectedTokenSequences[i].length;
+      }
+      for (int j = 0; j < expectedTokenSequences[i].length; j++) {
+        expected.append(tokenImage[expectedTokenSequences[i][j]]).append(' ');
+      }
+      if (expectedTokenSequences[i][expectedTokenSequences[i].length - 1] != 0) {
+        expected.append("...");
+      }
+      expected.append(eol).append("    ");
+    }
+    String retval = "Encountered \"";
+    Token tok = currentToken.next;
+    for (int i = 0; i < maxSize; i++) {
+      if (i != 0) retval += " ";
+      if (tok.kind == 0) {
+        retval += tokenImage[0];
+        break;
+      }
+      retval += " " + tokenImage[tok.kind];
+      retval += " \"";
+      retval += add_escapes(tok.image);
+      retval += " \"";
+      tok = tok.next; 
+    }
+    retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
+    retval += "." + eol;
+    if (expectedTokenSequences.length == 1) {
+      retval += "Was expecting:" + eol + "    ";
+    } else {
+      retval += "Was expecting one of:" + eol + "    ";
+    }
+    retval += expected.toString();
+    return retval;
+  }
+
+  /**
+   * The end of line string for this machine.
+   */
+  protected String eol = System.getProperty("line.separator", "\n");
+ 
+  /**
+   * Used to convert raw characters to their escaped version
+   * when these raw version cannot be used as part of an ASCII
+   * string literal.
+   */
+  protected String add_escapes(String str) {
+      StringBuffer retval = new StringBuffer();
+      char ch;
+      for (int i = 0; i < str.length(); i++) {
+        switch (str.charAt(i))
+        {
+           case 0 :
+              continue;
+           case '\b':
+              retval.append("\\b");
+              continue;
+           case '\t':
+              retval.append("\\t");
+              continue;
+           case '\n':
+              retval.append("\\n");
+              continue;
+           case '\f':
+              retval.append("\\f");
+              continue;
+           case '\r':
+              retval.append("\\r");
+              continue;
+           case '\"':
+              retval.append("\\\"");
+              continue;
+           case '\'':
+              retval.append("\\\'");
+              continue;
+           case '\\':
+              retval.append("\\\\");
+              continue;
+           default:
+              if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
+                 String s = "0000" + Integer.toString(ch, 16);
+                 retval.append("\\u" + s.substring(s.length() - 4, s.length()));
+              } else {
+                 retval.append(ch);
+              }
+              continue;
+        }
+      }
+      return retval.toString();
+   }
+
+}
+/* JavaCC - OriginalChecksum=5d829dd89956099ab39643f43523a8ca (do not edit this line) */
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/SimpleCharStream.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/SimpleCharStream.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/SimpleCharStream.java	(revision 21967)
@@ -0,0 +1,472 @@
+/* Generated By:JavaCC: Do not edit this line. SimpleCharStream.java Version 4.1 */
+/* JavaCCOptions:STATIC=false */
+package org.openstreetmap.josm.plugins.roadsigns.javacc;
+
+/**
+ * An implementation of interface CharStream, where the stream is assumed to
+ * contain only ASCII characters (without unicode processing).
+ */
+
+public class SimpleCharStream
+{
+/** Whether parser is static. */
+  public static final boolean staticFlag = false;
+  int bufsize;
+  int available;
+  int tokenBegin;
+/** Position in buffer. */
+  public int bufpos = -1;
+  protected int bufline[];
+  protected int bufcolumn[];
+
+  protected int column = 0;
+  protected int line = 1;
+
+  protected boolean prevCharIsCR = false;
+  protected boolean prevCharIsLF = false;
+
+  protected java.io.Reader inputStream;
+
+  protected char[] buffer;
+  protected int maxNextCharInd = 0;
+  protected int inBuf = 0;
+  protected int tabSize = 8;
+
+  protected void setTabSize(int i) { tabSize = i; }
+  protected int getTabSize(int i) { return tabSize; }
+
+
+  protected void ExpandBuff(boolean wrapAround)
+  {
+     char[] newbuffer = new char[bufsize + 2048];
+     int newbufline[] = new int[bufsize + 2048];
+     int newbufcolumn[] = new int[bufsize + 2048];
+
+     try
+     {
+        if (wrapAround)
+        {
+           System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
+           System.arraycopy(buffer, 0, newbuffer,
+                                             bufsize - tokenBegin, bufpos);
+           buffer = newbuffer;
+
+           System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin);
+           System.arraycopy(bufline, 0, newbufline, bufsize - tokenBegin, bufpos);
+           bufline = newbufline;
+
+           System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin);
+           System.arraycopy(bufcolumn, 0, newbufcolumn, bufsize - tokenBegin, bufpos);
+           bufcolumn = newbufcolumn;
+
+           maxNextCharInd = (bufpos += (bufsize - tokenBegin));
+        }
+        else
+        {
+           System.arraycopy(buffer, tokenBegin, newbuffer, 0, bufsize - tokenBegin);
+           buffer = newbuffer;
+
+           System.arraycopy(bufline, tokenBegin, newbufline, 0, bufsize - tokenBegin);
+           bufline = newbufline;
+
+           System.arraycopy(bufcolumn, tokenBegin, newbufcolumn, 0, bufsize - tokenBegin);
+           bufcolumn = newbufcolumn;
+
+           maxNextCharInd = (bufpos -= tokenBegin);
+        }
+     }
+     catch (Throwable t)
+     {
+        throw new Error(t.getMessage());
+     }
+
+
+     bufsize += 2048;
+     available = bufsize;
+     tokenBegin = 0;
+  }
+
+  protected void FillBuff() throws java.io.IOException
+  {
+     if (maxNextCharInd == available)
+     {
+        if (available == bufsize)
+        {
+           if (tokenBegin > 2048)
+           {
+              bufpos = maxNextCharInd = 0;
+              available = tokenBegin;
+           }
+           else if (tokenBegin < 0)
+              bufpos = maxNextCharInd = 0;
+           else
+              ExpandBuff(false);
+        }
+        else if (available > tokenBegin)
+           available = bufsize;
+        else if ((tokenBegin - available) < 2048)
+           ExpandBuff(true);
+        else
+           available = tokenBegin;
+     }
+
+     int i;
+     try {
+        if ((i = inputStream.read(buffer, maxNextCharInd,
+                                    available - maxNextCharInd)) == -1)
+        {
+           inputStream.close();
+           throw new java.io.IOException();
+        }
+        else
+           maxNextCharInd += i;
+        return;
+     }
+     catch(java.io.IOException e) {
+        --bufpos;
+        backup(0);
+        if (tokenBegin == -1)
+           tokenBegin = bufpos;
+        throw e;
+     }
+  }
+
+/** Start. */
+  public char BeginToken() throws java.io.IOException
+  {
+     tokenBegin = -1;
+     char c = readChar();
+     tokenBegin = bufpos;
+
+     return c;
+  }
+
+  protected void UpdateLineColumn(char c)
+  {
+     column++;
+
+     if (prevCharIsLF)
+     {
+        prevCharIsLF = false;
+        line += (column = 1);
+     }
+     else if (prevCharIsCR)
+     {
+        prevCharIsCR = false;
+        if (c == '\n')
+        {
+           prevCharIsLF = true;
+        }
+        else
+           line += (column = 1);
+     }
+
+     switch (c)
+     {
+        case '\r' :
+           prevCharIsCR = true;
+           break;
+        case '\n' :
+           prevCharIsLF = true;
+           break;
+        case '\t' :
+           column--;
+           column += (tabSize - (column % tabSize));
+           break;
+        default :
+           break;
+     }
+
+     bufline[bufpos] = line;
+     bufcolumn[bufpos] = column;
+  }
+
+/** Read a character. */
+  public char readChar() throws java.io.IOException
+  {
+     if (inBuf > 0)
+     {
+        --inBuf;
+
+        if (++bufpos == bufsize)
+           bufpos = 0;
+
+        return buffer[bufpos];
+     }
+
+     if (++bufpos >= maxNextCharInd)
+        FillBuff();
+
+     char c = buffer[bufpos];
+
+     UpdateLineColumn(c);
+     return c;
+  }
+
+  /**
+   * @deprecated 
+   * @see #getEndColumn
+   */
+
+  public int getColumn() {
+     return bufcolumn[bufpos];
+  }
+
+  /**
+   * @deprecated 
+   * @see #getEndLine
+   */
+
+  public int getLine() {
+     return bufline[bufpos];
+  }
+
+  /** Get token end column number. */
+  public int getEndColumn() {
+     return bufcolumn[bufpos];
+  }
+
+  /** Get token end line number. */
+  public int getEndLine() {
+     return bufline[bufpos];
+  }
+
+  /** Get token beginning column number. */
+  public int getBeginColumn() {
+     return bufcolumn[tokenBegin];
+  }
+
+  /** Get token beginning line number. */
+  public int getBeginLine() {
+     return bufline[tokenBegin];
+  }
+
+/** Backup a number of characters. */
+  public void backup(int amount) {
+
+    inBuf += amount;
+    if ((bufpos -= amount) < 0)
+       bufpos += bufsize;
+  }
+
+  /** Constructor. */
+  public SimpleCharStream(java.io.Reader dstream, int startline,
+  int startcolumn, int buffersize)
+  {
+    inputStream = dstream;
+    line = startline;
+    column = startcolumn - 1;
+
+    available = bufsize = buffersize;
+    buffer = new char[buffersize];
+    bufline = new int[buffersize];
+    bufcolumn = new int[buffersize];
+  }
+
+  /** Constructor. */
+  public SimpleCharStream(java.io.Reader dstream, int startline,
+                          int startcolumn)
+  {
+     this(dstream, startline, startcolumn, 4096);
+  }
+
+  /** Constructor. */
+  public SimpleCharStream(java.io.Reader dstream)
+  {
+     this(dstream, 1, 1, 4096);
+  }
+
+  /** Reinitialise. */
+  public void ReInit(java.io.Reader dstream, int startline,
+  int startcolumn, int buffersize)
+  {
+    inputStream = dstream;
+    line = startline;
+    column = startcolumn - 1;
+
+    if (buffer == null || buffersize != buffer.length)
+    {
+      available = bufsize = buffersize;
+      buffer = new char[buffersize];
+      bufline = new int[buffersize];
+      bufcolumn = new int[buffersize];
+    }
+    prevCharIsLF = prevCharIsCR = false;
+    tokenBegin = inBuf = maxNextCharInd = 0;
+    bufpos = -1;
+  }
+
+  /** Reinitialise. */
+  public void ReInit(java.io.Reader dstream, int startline,
+                     int startcolumn)
+  {
+     ReInit(dstream, startline, startcolumn, 4096);
+  }
+
+  /** Reinitialise. */
+  public void ReInit(java.io.Reader dstream)
+  {
+     ReInit(dstream, 1, 1, 4096);
+  }
+  /** Constructor. */
+  public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
+  int startcolumn, int buffersize) throws java.io.UnsupportedEncodingException
+  {
+     this(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize);
+  }
+
+  /** Constructor. */
+  public SimpleCharStream(java.io.InputStream dstream, int startline,
+  int startcolumn, int buffersize)
+  {
+     this(new java.io.InputStreamReader(dstream), startline, startcolumn, buffersize);
+  }
+
+  /** Constructor. */
+  public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
+                          int startcolumn) throws java.io.UnsupportedEncodingException
+  {
+     this(dstream, encoding, startline, startcolumn, 4096);
+  }
+
+  /** Constructor. */
+  public SimpleCharStream(java.io.InputStream dstream, int startline,
+                          int startcolumn)
+  {
+     this(dstream, startline, startcolumn, 4096);
+  }
+
+  /** Constructor. */
+  public SimpleCharStream(java.io.InputStream dstream, String encoding) throws java.io.UnsupportedEncodingException
+  {
+     this(dstream, encoding, 1, 1, 4096);
+  }
+
+  /** Constructor. */
+  public SimpleCharStream(java.io.InputStream dstream)
+  {
+     this(dstream, 1, 1, 4096);
+  }
+
+  /** Reinitialise. */
+  public void ReInit(java.io.InputStream dstream, String encoding, int startline,
+                          int startcolumn, int buffersize) throws java.io.UnsupportedEncodingException
+  {
+     ReInit(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize);
+  }
+
+  /** Reinitialise. */
+  public void ReInit(java.io.InputStream dstream, int startline,
+                          int startcolumn, int buffersize)
+  {
+     ReInit(new java.io.InputStreamReader(dstream), startline, startcolumn, buffersize);
+  }
+
+  /** Reinitialise. */
+  public void ReInit(java.io.InputStream dstream, String encoding) throws java.io.UnsupportedEncodingException
+  {
+     ReInit(dstream, encoding, 1, 1, 4096);
+  }
+
+  /** Reinitialise. */
+  public void ReInit(java.io.InputStream dstream)
+  {
+     ReInit(dstream, 1, 1, 4096);
+  }
+  /** Reinitialise. */
+  public void ReInit(java.io.InputStream dstream, String encoding, int startline,
+                     int startcolumn) throws java.io.UnsupportedEncodingException
+  {
+     ReInit(dstream, encoding, startline, startcolumn, 4096);
+  }
+  /** Reinitialise. */
+  public void ReInit(java.io.InputStream dstream, int startline,
+                     int startcolumn)
+  {
+     ReInit(dstream, startline, startcolumn, 4096);
+  }
+  /** Get token literal value. */
+  public String GetImage()
+  {
+     if (bufpos >= tokenBegin)
+        return new String(buffer, tokenBegin, bufpos - tokenBegin + 1);
+     else
+        return new String(buffer, tokenBegin, bufsize - tokenBegin) +
+                              new String(buffer, 0, bufpos + 1);
+  }
+
+  /** Get the suffix. */
+  public char[] GetSuffix(int len)
+  {
+     char[] ret = new char[len];
+
+     if ((bufpos + 1) >= len)
+        System.arraycopy(buffer, bufpos - len + 1, ret, 0, len);
+     else
+     {
+        System.arraycopy(buffer, bufsize - (len - bufpos - 1), ret, 0,
+                                                          len - bufpos - 1);
+        System.arraycopy(buffer, 0, ret, len - bufpos - 1, bufpos + 1);
+     }
+
+     return ret;
+  }
+
+  /** Reset buffer when finished. */
+  public void Done()
+  {
+     buffer = null;
+     bufline = null;
+     bufcolumn = null;
+  }
+
+  /**
+   * Method to adjust line and column numbers for the start of a token.
+   */
+  public void adjustBeginLineColumn(int newLine, int newCol)
+  {
+     int start = tokenBegin;
+     int len;
+
+     if (bufpos >= tokenBegin)
+     {
+        len = bufpos - tokenBegin + inBuf + 1;
+     }
+     else
+     {
+        len = bufsize - tokenBegin + bufpos + 1 + inBuf;
+     }
+
+     int i = 0, j = 0, k = 0;
+     int nextColDiff = 0, columnDiff = 0;
+
+     while (i < len &&
+            bufline[j = start % bufsize] == bufline[k = ++start % bufsize])
+     {
+        bufline[j] = newLine;
+        nextColDiff = columnDiff + bufcolumn[k] - bufcolumn[j];
+        bufcolumn[j] = newCol + columnDiff;
+        columnDiff = nextColDiff;
+        i++;
+     } 
+
+     if (i < len)
+     {
+        bufline[j] = newLine++;
+        bufcolumn[j] = newCol + columnDiff;
+
+        while (i++ < len)
+        {
+           if (bufline[j = start % bufsize] != bufline[++start % bufsize])
+              bufline[j] = newLine++;
+           else
+              bufline[j] = newLine;
+        }
+     }
+
+     line = bufline[j];
+     column = bufcolumn[j];
+  }
+
+}
+/* JavaCC - OriginalChecksum=32e760d96f0c150b8b52bb559d21c905 (do not edit this line) */
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/Token.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/Token.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/Token.java	(revision 21967)
@@ -0,0 +1,124 @@
+/* Generated By:JavaCC: Do not edit this line. Token.java Version 4.1 */
+/* JavaCCOptions:TOKEN_EXTENDS=,KEEP_LINE_COL=null */
+package org.openstreetmap.josm.plugins.roadsigns.javacc;
+
+/**
+ * Describes the input token stream.
+ */
+
+public class Token {
+
+  /**
+   * An integer that describes the kind of this token.  This numbering
+   * system is determined by JavaCCParser, and a table of these numbers is
+   * stored in the file ...Constants.java.
+   */
+  public int kind;
+
+  /** The line number of the first character of this Token. */
+  public int beginLine;
+  /** The column number of the first character of this Token. */
+  public int beginColumn;
+  /** The line number of the last character of this Token. */
+  public int endLine;
+  /** The column number of the last character of this Token. */
+  public int endColumn;
+
+  /**
+   * The string image of the token.
+   */
+  public String image;
+
+  /**
+   * A reference to the next regular (non-special) token from the input
+   * stream.  If this is the last token from the input stream, or if the
+   * token manager has not read tokens beyond this one, this field is
+   * set to null.  This is true only if this token is also a regular
+   * token.  Otherwise, see below for a description of the contents of
+   * this field.
+   */
+  public Token next;
+
+  /**
+   * This field is used to access special tokens that occur prior to this
+   * token, but after the immediately preceding regular (non-special) token.
+   * If there are no such special tokens, this field is set to null.
+   * When there are more than one such special token, this field refers
+   * to the last of these special tokens, which in turn refers to the next
+   * previous special token through its specialToken field, and so on
+   * until the first special token (whose specialToken field is null).
+   * The next fields of special tokens refer to other special tokens that
+   * immediately follow it (without an intervening regular token).  If there
+   * is no such token, this field is null.
+   */
+  public Token specialToken;
+
+  /**
+   * An optional attribute value of the Token.
+   * Tokens which are not used as syntactic sugar will often contain
+   * meaningful values that will be used later on by the compiler or
+   * interpreter. This attribute value is often different from the image.
+   * Any subclass of Token that actually wants to return a non-null value can
+   * override this method as appropriate.
+   */
+  public Object getValue() {
+    return null;
+  }
+
+  /**
+   * No-argument constructor
+   */
+  public Token() {}
+
+  /**
+   * Constructs a new token for the specified Image.
+   */
+  public Token(int kind)
+  {
+     this(kind, null);
+  }
+
+  /**
+   * Constructs a new token for the specified Image and Kind.
+   */
+  public Token(int kind, String image)
+  {
+     this.kind = kind;
+     this.image = image;
+  }
+
+  /**
+   * Returns the image.
+   */
+  public String toString()
+  {
+     return image;
+  }
+
+  /**
+   * Returns a new Token object, by default. However, if you want, you
+   * can create and return subclass objects based on the value of ofKind.
+   * Simply add the cases to the switch for all those special cases.
+   * For example, if you have a subclass of Token called IDToken that
+   * you want to create if ofKind is ID, simply add something like :
+   *
+   *    case MyParserConstants.ID : return new IDToken(ofKind, image);
+   *
+   * to the following switch statement. Then you can cast matchedToken
+   * variable to the appropriate type and use sit in your lexical actions.
+   */
+  public static Token newToken(int ofKind, String image)
+  {
+     switch(ofKind)
+     {
+       default : return new Token(ofKind, image);
+     }
+  }
+
+  public static Token newToken(int ofKind)
+  {
+     return newToken(ofKind, null);
+  }
+
+}
+/* JavaCC - OriginalChecksum=021f885cf82ce1cc84671f9a48141523 (do not edit this line) */
Index: applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/TokenMgrError.java
===================================================================
--- applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/TokenMgrError.java	(revision 21967)
+++ applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/javacc/TokenMgrError.java	(revision 21967)
@@ -0,0 +1,140 @@
+/* Generated By:JavaCC: Do not edit this line. TokenMgrError.java Version 4.1 */
+/* JavaCCOptions: */
+package org.openstreetmap.josm.plugins.roadsigns.javacc;
+
+/** Token Manager Error. */
+public class TokenMgrError extends Error
+{
+
+   /*
+    * Ordinals for various reasons why an Error of this type can be thrown.
+    */
+
+   /**
+    * Lexical error occurred.
+    */
+   static final int LEXICAL_ERROR = 0;
+
+   /**
+    * An attempt was made to create a second instance of a static token manager.
+    */
+   static final int STATIC_LEXER_ERROR = 1;
+
+   /**
+    * Tried to change to an invalid lexical state.
+    */
+   static final int INVALID_LEXICAL_STATE = 2;
+
+   /**
+    * Detected (and bailed out of) an infinite loop in the token manager.
+    */
+   static final int LOOP_DETECTED = 3;
+
+   /**
+    * Indicates the reason why the exception is thrown. It will have
+    * one of the above 4 values.
+    */
+   int errorCode;
+
+   /**
+    * Replaces unprintable characters by their escaped (or unicode escaped)
+    * equivalents in the given string
+    */
+   protected static final String addEscapes(String str) {
+      StringBuffer retval = new StringBuffer();
+      char ch;
+      for (int i = 0; i < str.length(); i++) {
+        switch (str.charAt(i))
+        {
+           case 0 :
+              continue;
+           case '\b':
+              retval.append("\\b");
+              continue;
+           case '\t':
+              retval.append("\\t");
+              continue;
+           case '\n':
+              retval.append("\\n");
+              continue;
+           case '\f':
+              retval.append("\\f");
+              continue;
+           case '\r':
+              retval.append("\\r");
+              continue;
+           case '\"':
+              retval.append("\\\"");
+              continue;
+           case '\'':
+              retval.append("\\\'");
+              continue;
+           case '\\':
+              retval.append("\\\\");
+              continue;
+           default:
+              if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
+                 String s = "0000" + Integer.toString(ch, 16);
+                 retval.append("\\u" + s.substring(s.length() - 4, s.length()));
+              } else {
+                 retval.append(ch);
+              }
+              continue;
+        }
+      }
+      return retval.toString();
+   }
+
+   /**
+    * Returns a detailed message for the Error when it is thrown by the
+    * token manager to indicate a lexical error.
+    * Parameters : 
+    *    EOFSeen     : indicates if EOF caused the lexical error
+    *    curLexState : lexical state in which this error occurred
+    *    errorLine   : line number when the error occurred
+    *    errorColumn : column number when the error occurred
+    *    errorAfter  : prefix that was seen before this error occurred
+    *    curchar     : the offending character
+    * Note: You can customize the lexical error message by modifying this method.
+    */
+   protected static String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) {
+      return("Lexical error at line " +
+           errorLine + ", column " +
+           errorColumn + ".  Encountered: " +
+           (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
+           "after : \"" + addEscapes(errorAfter) + "\"");
+   }
+
+   /**
+    * You can also modify the body of this method to customize your error messages.
+    * For example, cases like LOOP_DETECTED and INVALID_LEXICAL_STATE are not
+    * of end-users concern, so you can return something like : 
+    *
+    *     "Internal Error : Please file a bug report .... "
+    *
+    * from this method for such cases in the release version of your parser.
+    */
+   public String getMessage() {
+      return super.getMessage();
+   }
+
+   /*
+    * Constructors of various flavors follow.
+    */
+
+   /** No arg constructor. */
+   public TokenMgrError() {
+   }
+
+   /** Constructor with message and reason. */
+   public TokenMgrError(String message, int reason) {
+      super(message);
+      errorCode = reason;
+   }
+
+   /** Full Constructor. */
+   public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
+      this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
+   }
+}
+/* JavaCC - OriginalChecksum=3b46b91d4b831d370c179f923feba7d9 (do not edit this line) */
