<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="defaultpresets.xsl"?>
<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0">
    <!--
    Pics have been derived from
    http://de.wikipedia.org/wiki/Bildtafel_der_Verkehrszeichen_in_Deutschland (german street sign SVGs)
    http://commons.wikimedia.org/wiki/Image:National_Park_Service_sample_pictographs.svg (various monochrome pictograms)
    http://www.kde.org
    http://openclipart.org/media/view/media/clip_art
    http://www.sjjb.co.uk/mapicons/ (meanwhile in osm svn)
-->
    <!--
File types (for icons):
jpg, png, svg (preferable)
-->
    <!--
XML entities:
	
item:
  name: the text to display
  icon: the icon to display
  - relative to the icon path
  - URL's are also supported to allow remote icons (are cached locally)
  type: the data types - way,node,relation,closedway (separated by comma)
  name_template: define custom formatting for OSM primitives
                 see http://josm.openstreetmap.de/wiki/NameTemplate

link: link to the relating map features website
  href: the URL

label: simple static text label
  text: the text to display

key: fixed key/value pair to be set
  key: key to set
  value: value to set
  match: none/key/key!/keyvalue (default is "keyvalue", see below for more information)

text: text box
  key: key to set
  text: fixed label to display
  default: default string to display (defaults to "")
  use_last_as_default: true/false/force (default is "false")
  auto_increment: may contain a comma separated list of integer increments or
                  decrements, e.g. "-2,-1,+1,+2"; a button will be shown next
                  to the text field for each value, allowing the user to select
                  auto-increment with the given stepping. auto-increment only
                  happens if the user selects it. default is no auto-increment;
                  mutually exclusive with use_last_as_default.
  match: none/key/key!/keyvalue (default is "none", see below for more information)
  length: length of input box (number of characters allowed)

combo: combo box, with multiple choices and possible to enter free form text
  key: key to set
  text: fixed label to display
  values: comma separated list of values
  values_from: to use instead of "values" if the list of values has to be obtained with a Java method
               of this form: public static String[] getValues();
               The value must be: "full.package.name.ClassName#methodName"
  display_values: comma separated list of values to be displayed instead of the
                  database values, order and number must be equal to values
  short_descriptions: comma separated list of texts to be displayed below each
                      display_value. (Only if it is not possible to describe
                      the entry in 2-3 words.) Instead of comma separeted list
  instead using values, display_values and short_descriptions, the following form is also supported:
    <list_entry value="" display_value="" short_description="" icon="" icon_size=""/>
        icon: location of icon
        icon_size: maximal size of icon. If tag is not setup it is taken default size of icon file
  default: default string to display (defaults to "")
  use_last_as_default: true/false/force (default is "false")
  editable: allow to add other values as text (default is "true")
  match: none/key/key!/keyvalue (default is none, see below for more information)

multiselect: list of values from which zero or more can be selected
  key: key to set
  text: fixed label to display
  delimiter: character that separates values (default: semicolon) - this
             will also be used to separate selected values in the tag.
  values: delimiter-separated list of values (delimiter can be escaped with backslash)
  values_from: to use instead of "values" if the list of values has to be obtained with a Java method
               of this form: public static String[] getValues();
               The value must be: "full.package.name.ClassName#methodName"
  rows: specify the number of rows to display (default -1)
  display_values: delimiter-separated list of values to be displayed instead of the
                  database values, order and number must be equal to values
  short_descriptions: delimiter-separated list of texts to be displayed below each
                      display_value. (Only if it is not possible to describe
                      the entry in 2-3 words.) Instead of a separated list
  instead using values, display_values and short_descriptions, the following form is also supported:
    <list_entry value="" display_value="" short_description="" icon="" icon_size=""/>
        icon: location of icon
        icon_size: maximal size of icon. If tag is not setup it is taken default size of icon file
  default: default string to display (defaults to "")
  use_last_as_default: true/false/force (default is "false")
  match: none/key/key!/keyvalue (default is "none", see below for more information)

check: checkbox
  key: key to set
  text: fixed label to display
  default: ticked on/off
  value_on: the value to set when checked (default is "yes")
  value_off: the value to set when unchecked (default is "no")
  match: none/key/key!/keyvalue (default is "none", see below for more information)

role: type to specify possible roles in relations
  key: the role name used in relation
  text: fixed label to display
  requisite: optional/required (default is "optional")
  count: how often can the role occur (if not given unlimited number is assumed)
  type: the data types - way,node,relation,closedway (separated by comma)
  member_expression: an expression (cf. search dialog) for objects of this role

 presets: For external files <presets>should have following attributes:
   author: the author of the preset
   version: a version number of some sort (e.g. creation date)
   description: what is your preset meant to be
   shortdescription: very short description
   link: a link to a helpful website (optional)
 The fields description, shortdescription and link may also be localized (e.g. de.link)

See also http://josm.openstreetmap.de/wiki/TaggingPresets.

The fields "name", "text", "display_values" may also be localized (e.g. de.name).
When translations of equal words but different meanings may conflict, a translation
context should be specified. Use "name_context", "text_context" or "values_context"
for this. The context should be a meaningful short description to help translators.

In JOSM internally all "name", "text" and "display_values" are translated when
no specific translation has been given in XML file. When no "display_values"
are supplied, then "values" will be treated as "display_values" and translated instead.

The match attribute allows to change the matching process, i.e., determining whether
the tags of an OSM object fit into this preset.
 - none: neutral, i.e., do not consider this item for matching
 - key: positive if key matches, neutral otherwise
 - key!: positive if key matches, negative otherwise
 - keyvalue: positive if key and value matches, negative otherwise
Note that for a match, at least one positive and no negative is required.
-->
    <!-- TODO: add building to objects that can be-->

    <group name="Highways" icon="presets/way_secondary.png">
        <group name="Streets" icon="presets/way_secondary.png">
            <item name="Motorway" icon="presets/motorway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=motorway"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=motorway"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=motorway"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=motorway"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=motorway"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:highway=motorway"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=motorway"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=motorway"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=motorway"/>
                <label text="Edit Motorway"/>
                <space/>
                <key key="highway" value="motorway"/>
                <text key="ref" text="Reference"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
                    <check key="oneway" text="Oneway" default="on"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <item name="Motorway Link" icon="presets/motorway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=motorway_link"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=motorway_link"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=motorway_link"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=motorway_link"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=motorway_link"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=motorway_link"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=motorway_link"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=motorway_link"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=motorway_link"/>
                <label text="Edit Motorway Link"/>
                <space/>
                <key key="highway" value="motorway_link"/>
                <optional>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
                    <check key="oneway" text="Oneway" default="on"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <item name="Trunk" icon="presets/trunk.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=trunk"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=trunk"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=trunk"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=trunk"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=trunk"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=trunk"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=trunk"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=trunk"/>
                <label text="Edit Trunk"/>
                <space/>
                <key key="highway" value="trunk"/>
                <text key="ref" text="Reference"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
                    <check key="oneway" text="Oneway" default="on"/>
                    <check key="motorroad" text="Motorroad" default="on"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <item name="Trunk Link" icon="presets/trunk.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Link_(highway)"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Link_(highway)"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Link_(highway)"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Link_(highway)"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Link_(highway)"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Link_(highway)"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Link_(highway)"/>
                <label text="Edit Trunk Link"/>
                <space/>
                <key key="highway" value="trunk_link"/>
                <text key="ref" text="Reference"/>
                <optional>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
                    <check key="oneway" text="Oneway" default="on"/>
                    <check key="motorroad" text="Motorroad" default="on"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <separator/>
            <item name="Primary" icon="presets/way_primary.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=primary"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=primary"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=primary"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=primary"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=primary"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=primary"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=primary"/>
                <label text="Edit Primary Road"/>
                <space/>
                <key key="highway" value="primary"/>
                <text key="ref" text="Reference"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="motorroad" text="Motorroad" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <item name="Primary Link" icon="presets/way_primary.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Link_(highway)"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Link_(highway)"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Link_(highway)"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Link_(highway)"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Link_(highway)"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Link_(highway)"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Link_(highway)"/>
                <label text="Edit Primary Link"/>
                <space/>
                <key key="highway" value="primary_link"/>
                <optional>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground" default="asphalt"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="motorroad" text="Motorroad" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <item name="Secondary" icon="presets/way_secondary.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=secondary"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=secondary"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=secondary"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=secondary"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=secondary"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=secondary"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=secondary"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=secondary"/>
                <label text="Edit Secondary Road"/>
                <space/>
                <key key="highway" value="secondary"/>
                <text key="ref" text="Reference"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <item name="Secondary Link" icon="presets/way_secondary.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Link_(highway)"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Link_(highway)"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Link_(highway)"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Link_(highway)"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Link_(highway)"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Link_(highway)"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Link_(highway)"/>
                <label text="Edit Secondary Link"/>
                <space/>
                <key key="highway" value="secondary_link"/>
                <optional>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <item name="Tertiary" icon="presets/way_tertiary.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=tertiary"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:highway=tertiary"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=tertiary"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=tertiary"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=tertiary"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=tertiary"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=tertiary"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=tertiary"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=tertiary"/>
                <label text="Edit Tertiary Road"/>
                <space/>
                <key key="highway" value="tertiary"/>
                <text key="ref" text="Reference"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <item name="Tertiary Link" icon="presets/way_tertiary.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Link_(highway)"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Link_(highway)"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Link_(highway)"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Link_(highway)"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Link_(highway)"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Link_(highway)"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Link_(highway)"/>
                <label text="Edit Tertiary Link"/>
                <space/>
                <key key="highway" value="tertiary_link"/>
                <optional>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                </optional>
            </item>
            <item name="Unclassified" icon="presets/way_unclassified.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=unclassified"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=unclassified"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=unclassified"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=unclassified"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=unclassified"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=unclassified"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=unclassified"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=unclassified"/>
                <label text="Edit Unclassified Road"/>
                <space/>
                <key key="highway" value="unclassified"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <check key="passing_places" text="Passing Places" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Residential" icon="presets/residential.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=residential"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=residential"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=residential"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=residential"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=residential"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=residential"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=residential"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=residential"/>
                <label text="Edit Residential Street"/>
                <space/>
                <key key="highway" value="residential"/>
                <text key="name" text="Name"/>
                <optional>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Living Street" icon="presets/living_street.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=living_street"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=living_street"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=living_street"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=living_street"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=living_street"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=living_street"/>
                <label text="Edit Living Street"/>
                <space/>
                <key key="highway" value="living_street"/>
                <text key="name" text="Name"/>
                <optional>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Pedestrian" icon="presets/pedestrian.png" type="way,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=pedestrian"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=pedestrian"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=pedestrian"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=pedestrian"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=pedestrian"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=pedestrian"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=pedestrian"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=pedestrian"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=pedestrian"/>
                <label text="Edit Pedestrian Street"/>
                <space/>
                <key key="highway" value="pedestrian"/>
                <text key="name" text="Name"/>
                <optional>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="area" text="Area" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Service" icon="presets/way_unclassified.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=service"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=service"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=service"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=service"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:highway=service"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=service"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=service"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=service"/>
                <label text="Edit Serviceway"/>
                <space/>
                <key key="highway" value="service"/>
                <optional>
                    <combo key="service" text="Serviceway type" values="alley,driveway,parking_aisle"/>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <check key="passing_places" text="Passing Places" default="off"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Parking Aisle" icon="presets/way_unclassified.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:service=parking_aisle"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:service=parking_aisle"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:service=parking_aisle"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:service=parking_aisle"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:service=parking_aisle"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:service=parking_aisle"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:service=parking_aisle"/>
                <label text="Edit Parking Aisle"/>
                <space/>
                <key key="highway" value="service"/>
                <key key="service" value="parking_aisle"/>
                <optional>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="lit" text="Lit" default="off"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <item name="Road (Unknown Type)" icon="presets/way_unclassified.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=road"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=road"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=road"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=road"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=road"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=road"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=road"/>
                <label text="Edit Road of unknown type"/>
                <space/>
                <key key="highway" value="road"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Construction" icon="presets/construction.png" type="way,closedway">
                <label text="Edit Highway Under Construction"/>
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=construction"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:construction"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:construction"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:construction"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:construction"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:construction"/>
                <space/>
                <key key="highway" value="construction"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <combo key="junction" text="Junction" values="roundabout,jughandle,yes"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <separator/>
            <item name="Road Restrictions" icon="presets/restrictions.png" type="node,way">
                <link href="http://wiki.openstreetmap.org/wiki/Key:access"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Key:access"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:access"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:access"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:access"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:access"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Key:access"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:access"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:access"
                      sv.href="http://wiki.openstreetmap.org/wiki/Sv:Key:access"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:access"/>
                <label text="Edit Road Restrictions"/>
                <check key="oneway" text="Oneway" default="off"/>
                <check key="toll" text="Toll" default="off"/>
                <check key="noexit" text="No exit (cul-de-sac)" default="off"/>
                <label text="Transport mode restrictions"/>
                <combo key="access" text="General Access" values="yes,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
                <combo key="foot" text="Foot" values="yes,official,designated,permissive,destination,delivery,private,no" match="key"/>
                <combo key="horse" text="Horse" values="yes,official,designated,permissive,destination,delivery,private,no" match="key"/>
                <label text="Vehicles per type"/>
                <combo key="vehicle" text="All vehicles" values="yes,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
                <combo key="bicycle" text="Bicycle" values="yes,official,designated,permissive,destination,delivery,private,no" match="key"/>
                <combo key="motor_vehicle" text="Motor vehicles" values="yes,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
                <combo key="motorcycle" text="Motorcycle" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
                <combo key="motorcar" text="Motorcar" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
                <combo key="goods" text="Light Commercial Vehicles (goods)" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
                <combo key="hgv" text="Heavy Goods Vehicles (hgv)" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no" match="key"/>
                <label text="Vehicles per use"/>
                <combo key="agricultural" text="Agricultural" values="yes,official,designated,destination,permissive,private,no" match="key"/>
                <combo key="emergency" text="Emergency vehicles" values="yes,official,designated,destination,permissive,private,no" match="key"/>
                <combo key="hov" text="High-occupancy vehicles (hov)" values="yes,official,designated,destination,permissive,private,no" match="key"/>
                <combo key="psv" text="Public Service Vehicles (psv)" values="yes,official,designated,destination,permissive,private,no" match="key"/>
                <text key="maxspeed" text="Max. speed (km/h)"/>
                <text key="minspeed" text="Min. speed (km/h)" match="key"/>
                <text key="maxweight" text="Max. weight (tonnes)" match="key"/>
                <text key="maxaxleload" text="Max. axleload (tonnes)" match="key"/>
                <text key="maxheight" text="Max. height (meters)" match="key"/>
                <text key="maxwidth" text="Max. width (meters)" match="key"/>
                <text key="maxlength" text="Max. length (meters)" match="key"/>
                <combo key="overtaking" text="Overtaking" values="yes,both,forward,backward,no" match="key"/>
            </item>
            <separator/>
            <item name="Roundabout" icon="presets/roundabout.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:junction=roundabout"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:junction=roundabout"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:junction=roundabout"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:junction=roundabout"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:junction=roundabout"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:junction=roundabout"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:junction=roundabout"
                      ro.href="http://wiki.openstreetmap.org/wiki/Ro:Tag:junction=roundabout"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:junction=roundabout"/>
                <label text="Edit Junction"/>
                <space/>
                <key key="junction" value="roundabout"/>
                <combo key="highway" text="Type" values="motorway,motorway_link,trunk,trunk_link,primary,primary_link,secondary,tertiary,unclassified,residential,living_street,service,bus_guideway,construction"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="lanes" text="Lanes" values="1,2,3,4,5"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <text key="width" text="Width (meters)" length="7"/>
                    <check key="lit" text="Lit" default="off"/>
                    <combo key="landuse" text="Landuse" values="grass"/>
                </optional>
            </item>
            <item name="Bridge" icon="presets/bridge.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Key:bridge"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:bridge"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:bridge"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:bridge"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:bridge"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:bridge"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:bridge"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:bridge"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:bridge"/>
                <label text="Edit Bridge"/>
                <space/>
                <combo key="bridge" text="Bridge" values="yes,viaduct,swing,aqueduct" match="key!" default="yes"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5" default="1"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <text key="maxweight" text="Max. weight (tonnes)"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <text key="width" text="Width (meters)" length="7"/>
                    <text key="height" text="Height (meters)" length="7"/>
                </optional>
            </item>
            <item name="Ford" icon="presets/ford.png" type="node,way">
                <label text="Edit Ford"/>
                <link href="http://wiki.openstreetmap.org/wiki/Key:ford"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:ford"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:ford"/>
                <space/>
                <key key="ford" value="yes"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <space/>
                    <check key="foot" text="Foot" default="on"/>
                    <check key="bicycle" text="Bicycle" default="on"/>
                    <check key="horse" text="Horse" default="off"/>
                    <check key="motorcycle" text="Motorcycle" default="off"/>
                    <check key="motorcar" text="Motorcar" default="off"/>
                </optional>
            </item>
        </group>
        <!-- Streets -->
        <group name="Ways" icon="presets/way_unclassified.png">
            <item name="Track" icon="presets/track1.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=track"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:highway=track"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=track"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=track"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=track"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=track"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=track"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=track"
                      sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:highway=track"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=track"/>
                <label text="Edit Track"/>
                <combo key="tracktype" text="Tracktype" values="grade1,grade2,grade3,grade4,grade5"/>
                <space/>
                <key key="highway" value="track"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="surface" text="Surface" values="paved,concrete,cobblestone,gravel,ground,grass,sand"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <combo key="mtb:scale" text="MTB Scale" values="0,1,2,3,4,5"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                    <combo key="motor_vehicle" text="Motor vehicles" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                    <combo key="motorcycle" text="Motorcycle" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                    <combo key="motorcar" text="Motorcar" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Path" icon="presets/path.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=path"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=path"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=path"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=path"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=path"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=path"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=path"
                      sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:highway=path"/>
                <label text="Edit Path"/>
                <space/>
                <key key="highway" value="path"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <combo key="sac_scale" text="SAC Scale">
                        <list_entry value="hiking" display_value="T1 - hiking trail" short_description="Trail well cleared. Area flat or slightly sloped, no fall hazard"/>
                        <list_entry value="mountain_hiking" display_value="T2 - mountain hiking trail" short_description="Trail with continuous line and balanced ascent. Terrain partially steep, fall hazard possible"/>
                        <list_entry value="demanding_mountain_hiking" display_value="T3 - difficult, exposed hiking trail" short_description="exposed sites may be secured with ropes or chains, possible need to use hands for balance. Partly exposed sites with fall hazard, scree, pathless jagged rocks"/>
                        <list_entry value="alpine_hiking" display_value="T4 - difficult, exposed, steep alpine trail" short_description="sometimes need for hand use to get ahead. Terrain quite exposed, precarious grassy acclivities, jagged rocks, facile snow-free glaciers"/>
                        <list_entry value="demanding_alpine_hiking" display_value="T5 - difficult alpine trail with climbing" short_description="single plainly climbing up to second grade. Exposed, demanding terrain, jagged rocks, few dangerous glacier and snow"/>
                        <list_entry value="difficult_alpine_hiking" display_value="T6 - hazardous alpine trail with climbing" short_description="climbing up to second grade. Often very exposed, precarious jagged rocks, glacier with danger to slip and fall"/>
                    </combo>
                    <combo key="mtb:scale" text="MTB Scale" values="0,1,2,3,4,5"/>
                    <combo key="trail_visibility" text="Visibility" values="excellent,good,intermediate,bad,horrible,no"/>
                    <combo key="foot" text="Foot" values="yes,official,designated,permissive,destination,delivery,private,no"/>
                    <combo key="bicycle" text="Bicycle" values="yes,official,designated,permissive,destination,delivery,private,no"/>
                    <combo key="horse" text="Horse" values="yes,official,designated,permissive,destination,delivery,private,no"/>
                    <combo key="wheelchair" text="Wheelchairs" values="unknown,yes,official,no"/>
                    <combo key="ski" text="Ski" values="yes,official,designated,permissive,private,no"/>
                    <combo key="snowmobile" text="Snowmobile" values="yes,official,designated,permissive,destination,delivery,private,no"/>
                    <!-- <combo key="motorcar" text="Motorcar" values="yes,designated,no" default="no"/>-->
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <separator/>
            <item name="Dedicated Bridleway" icon="presets/equestrian.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=bridleway"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:highway=bridleway"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=bridleway"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=bridleway"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=bridleway"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:highway=bridleway"/>
                <label text="Edit Bridleway"/>
                <space/>
                <key key="highway" value="bridleway"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Cycle Lane" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Bicycle"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Bicycle"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Bicycle"
                      hr.href="http://wiki.openstreetmap.org/wiki/Hr:Bicycle"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Bicycle"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Bicycle"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Bicycle"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Bicycle"/>
                <label text="Edit Cycle Lane"/>
                <combo key="cycleway" text="Cycleway" values="lane,track,opposite_lane,opposite_track,opposite,share_busway,shared_lane" match="key"/>
                <combo key="cycleway:left" text="Cycleway left" values="lane,track,opposite_lane,opposite_track,opposite,share_busway,shared_lane"/>
                <combo key="cycleway:right" text="Cycleway right" values="lane,track,opposite_lane,opposite_track,opposite,share_busway,shared_lane"/>
                <check key="oneway:bicycle" text="Oneway (bicycle)" default="off"/>
                <space/>
                <label text="Edit Highway"/>
                <combo key="highway" text="Highway" values="motorway,motorway_link,trunk,trunk_link,primary,primary_link,secondary,tertiary,unclassified,residential,living_street,service,bus_guideway,construction"/>
                <check key="oneway" text="Oneway" default="off"/>
            </item>
            <item name="Dedicated Cycleway" icon="presets/cycleway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=cycleway"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=cycleway"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=cycleway"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=cycleway"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=cycleway"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=cycleway"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=cycleway"/>
                <label text="Edit Cycleway"/>
                <space/>
                <key key="highway" value="cycleway"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <combo key="foot" text="Pedestrians" values="unknown,yes,no"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Segregated Foot- and Cycleway" icon="presets/foot_and_cycleway_segregated.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=cycleway"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=cycleway"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=cycleway"/>
                <label text="Edit Cycleway"/>
                <space/>
                <key key="highway" value="path"/>
                <key key="bicycle" value="designated"/>
                <key key="foot" value="designated"/>
                <key key="segregated" value="yes"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Combined Foot- and Cycleway" icon="presets/foot_and_cycleway_combined.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=cycleway"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=cycleway"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=cycleway"/>
                <label text="Edit Cycleway"/>
                <space/>
                <key key="highway" value="path"/>
                <key key="bicycle" value="designated"/>
                <key key="foot" value="designated"/>
                <key key="segregated" value="no"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <check key="passing_places" text="Passing Places" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Dedicated Footway" icon="presets/footway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=footway"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=footway"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=footway"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=footway"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=footway"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=footway"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=footway"/>
                <label text="Edit Footway"/>
                <space/>
                <key key="highway" value="footway"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <check key="lit" text="Lit" default="off"/>
                    <check key="passing_places" text="Passing Places" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Steps" icon="presets/steps.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=steps"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=steps"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=steps"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=steps"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=steps"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=steps"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=steps"/>
                <label text="Edit Flight of Steps"/>
                <space/>
                <key key="highway" value="steps"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <text key="step_count" text="Amount of Steps"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <check key="lit" text="Lit" default="off"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
        </group>
        <!-- Ways -->
        <group name="Waypoints" icon="presets/waypoints.png">
            <item name="Motorway Junction" icon="presets/motorway_exit.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=motorway_junction"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=motorway_junction"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=motorway_junction"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=motorway_junction"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=motorway_junction"/>
                <label text="Edit Motorway Junction"/>
                <space/>
                <key key="highway" value="motorway_junction"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Number"/>
                <text key="exit_to" text="Exit to"/>
            </item>
            <item name="Services" icon="styles/standard/vehicle/services.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=services"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=services"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=services"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=services"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=services"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=services"/>
                <label text="Edit Service Station"/>
                <space/>
                <key key="highway" value="services"/>
                <optional>
                    <text key="name" text="Name"/>
                    <text key="operator" text="Operator"/>
                    <check key="toilets" text="Toilets" default="off"/>
                </optional>
            </item>
            <item name="Rest Area" icon="presets/parking.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=rest_area"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=rest_area"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=rest_area"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=rest_area"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=rest_area"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=rest_area"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=rest_area"
                      sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:highway=rest_area"/>
                <label text="Edit Rest Area"/>
                <space/>
                <key key="highway" value="rest_area"/>
                <optional>
                    <text key="name" text="Name"/>
                    <check key="toilets" text="Toilets" default="off"/>
                </optional>
            </item>
            <item name="Emergency Phone" icon="presets/telephone.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:emergency=phone"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:emergency=phone"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:emergency=phone"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:emergency=phone"/>
                <key key="emergency" value="phone"/>
            </item>
            <separator/>
            <item name="Traffic Signal" icon="presets/traffic-light.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=traffic_signals"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=traffic_signals"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:highway=traffic_signals"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=traffic_signals"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=traffic_signals"/>
                <key key="highway" value="traffic_signals"/>
                <optional>
                    <combo key="crossing" text="Pedestrian crossing type" values="uncontrolled,traffic_signals,island,unmarked,no,unknown"/>
                    <check key="horse" text="Cross on horseback" default="off"/>
                    <check key="bicycle" text="Cross by bicycle" default="off"/>
                    <check key="supervised" text="Crossing attendant" default="off"/>
                    <combo key="crossing_ref" text="Crossing type name (UK)" values="zebra,pelican,toucan,puffin,pegasus,tiger"/>
                </optional>
            </item>
            <item name="Stop" icon="presets/Stop.png" type="node">
                <key key="highway" value="stop"/>
            </item>
            <item name="Give way" icon="styles/standard/vehicle/restriction/right_of_way.png" type="node">
                <key key="highway" value="give_way"/>
            </item>
            <item name="Mini-roundabout" icon="presets/roundabout_left.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=mini_roundabout"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=mini_roundabout"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=mini_roundabout"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:highway=mini_roundabout"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=mini_roundabout"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=mini_roundabout"/>
                <key key="highway" value="mini_roundabout"/>
                <combo key="direction" text="Direction" values="clockwise"/>
            </item>
            <item name="Pedestrian Crossing" icon="styles/standard/vehicle/zebra_crossing.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Key:crossing"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:crossing"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:crossing"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:crossing"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:crossing"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:crossing"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:crossing"/>
                <label text="Edit Crossing"/>
                <key key="highway" value="crossing"/>
                <combo key="crossing" text="Type" values="uncontrolled,traffic_signals,island,unmarked,no,unknown"/>
                <check key="bicycle" text="Cross by bicycle" default="off"/>
                <check key="horse" text="Cross on horseback" default="off"/>
                <check key="supervised" text="Crossing attendant" default="off"/>
                <combo key="crossing_ref" text="Type name (UK)" values="zebra,pelican,toucan,puffin,pegasus,tiger"/>
            </item>
            <item name="Traffic Calming" icon="presets/chicane.png" type="node,way">
                <link href="http://wiki.openstreetmap.org/wiki/Key:traffic_calming"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Key:traffic_calming"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:traffic_calming"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:traffic_calming"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:traffic_calming"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Key:traffic_calming"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:traffic_calming"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:traffic_calming"/>
                <label text="Edit Traffic Calming"/>
                <combo key="traffic_calming" text="Type" values="yes,bump,chicane,choker,cushion,hump,island,rumble_strip,table" match="key"/>
            </item>
            <item name="Passing Place" icon="presets/passingplace.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=passing_place"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=passing_place"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=passing_place"/>
                <label text="Edit Passing Place"/>
                <key key="highway" value="passing_place"/>
            </item>
            <item name="Turning Circle" icon="presets/turning_circle.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=turning_circle"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=turning_circle"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=turning_circle"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=turning_circle"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=turning_circle"/>
                <key key="highway" value="turning_circle"/>
            </item>
            <item name="City Limit" icon="presets/citylimit.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:traffic_sign=city_limit"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:traffic_sign"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:traffic_sign"/>
                <label text="Edit City Limit Sign"/>
                <space/>
                <key key="traffic_sign" value="city_limit"/>
                <space/>
                <text key="name" text="Name"/>
                <text key="alt_name" text="Second Name"/>
            </item>
            <item name="Speed Camera" icon="presets/speed_camera.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=speed_camera"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=speed_camera"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:highway=speed_camera"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=speed_camera"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=speed_camera"/>
                <key key="highway" value="speed_camera"/>
            </item>
            <separator/>
            <item name="Grit Bin" icon="styles/standard/misc/grit_bin.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=grit_bin"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=grit_bin"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=grit_bin"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=grit_bin"/>
                <key key="amenity" value="grit_bin"/>
            </item>
            <separator/>
            <item name="Mountain Pass" icon="presets/mountain_pass.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Key:mountain_pass"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:mountain_pass"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:mountain_pass"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:mountain_pass"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:mountain_pass"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:mountain_pass"/>
                <label text="Edit Mountain Pass"/>
                <space/>
                <key key="mountain_pass" value="yes"/>
                <optional>
                    <text key="name" text="Name"/>
                    <text key="ele" text="Elevation"/>
                    <text key="wikipedia" text="Wikipedia"/>
                </optional>
            </item>
        </group>
        <!-- Waypoints -->
        <group name="Barriers" icon="presets/barrier.png">

            <!-- *** node barriers *** -->
            <item name="Block" icon="presets/block.png" type="node,way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=block"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=block"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=block"/>
                <label text="Edit Block"/>
                <space/>
                <key key="barrier" value="block"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
            </item>
            <!-- block -->
            <item name="Bollard" icon="presets/bollard.png" type="node,way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=bollard"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=bollard"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=bollard"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=bollard"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:barrier=bollard"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=bollard"/>
                <label text="Edit Bollard"/>
                <space/>
                <key key="barrier" value="bollard"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                    <combo key="bollard" text="Bollard type" values="rising,removable"/>
                </optional>
            </item>
            <!-- bollard -->
            <item name="Cycle Barrier" icon="styles/standard/vehicle/cycle_barrier.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=cycle_barrier"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=cycle_barrier"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=cycle_barrier"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=cycle_barrier"/>
                <label text="Edit Cycle Barrier"/>
                <space/>
                <key key="barrier" value="cycle_barrier"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                </optional>
            </item>
            <!-- cycle_barrier -->
            <item name="Cattle Grid" icon="presets/cattle_grid.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=cattle_grid"/>
                <label text="Edit Cattle Grid"/>
                <space/>
                <key key="barrier" value="cattle_grid"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
            </item>
            <!-- cattle_grid -->
            <item name="Bus Trap" icon="presets/empty.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=bus_trap"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=bus_trap"/>
                <label text="Edit Bus Trap"/>
                <space/>
                <key key="barrier" value="bus_trap"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                </optional>
            </item>
            <!-- bus_trap -->
            <item name="Spikes" icon="presets/empty.png" type="node">
                <label text="Edit Spikes"/>
                <space/>
                <key key="barrier" value="spikes"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
            </item>
            <!-- spikes -->
            <item name="Toll Booth" icon="presets/toll_station.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=toll_booth"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=toll_booth"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:barrier=toll_booth"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=toll_booth"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=toll_booth"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=toll_booth"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=toll_booth"
                      zh_CN.href="http://wiki.openstreetmap.org/wiki/Zh-hans:Tag:barrier=toll_booth"/>
                <label text="Edit Toll Booth"/>
                <space/>
                <key key="barrier" value="toll_booth"/>
                <optional>
                    <text key="name" text="Name"/>
                    <text key="operator" text="Operator"/>
                </optional>
            </item>
            <!-- toll_booth -->
            <item name="Border Control" icon="presets/douane.png" type="node">
                <label text="Edit Border Control"/>
                <space/>
                <key key="barrier" value="border_control"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
            </item>
            <!-- border_control -->
            <separator/>

            <!-- *** linear barriers *** -->
            <item name="Hedge" icon="presets/hedge.png" type="way,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=hedge"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=hedge"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=hedge"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=hedge"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:barrier=hedge"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=hedge"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=hedge"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=hedge"/>
                <label text="Edit Hedge"/>
                <space/>
                <key key="barrier" value="hedge"/>
                <optional>
                    <text key="height" text="Height (meters)" length="7"/>
                    <text key="genus" text="Genus"/>
                    <text key="species" text="Species"/>
                    <text key="taxon" text="Taxon"/>
                </optional>
            </item>
            <!-- hedge -->
            <item name="Fence" icon="presets/fence.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=fence"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=fence"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:barrier=fence"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=fence"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:barrier=fence"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=fence"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=fence"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=fence"/>
                <label text="Edit Fence"/>
                <space/>
                <key key="barrier" value="fence"/>
                <optional>
                    <combo key="fence_type" text="Type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <text key="height" text="Height (meters)" length="7"/>
                    <combo key="material" text="Material" values="brick,concrate,stone,steel,timber"/>
                </optional>
            </item>
            <!-- fence -->
            <item name="Guard Rail" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=guard_rail"/>
                <label text="Edit Guard Rail"/>
                <space/>
                <key key="barrier" value="guard_rail"/>
                <optional>
                    <text key="height" text="Height (meters)" length="7"/>
                </optional>
            </item>
            <!-- guard_rail -->
            <item name="Wall" icon="presets/wall.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=wall"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=wall"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=wall"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=wall"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=wall"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=wall"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=wall"
                      zh_CN.href="http://wiki.openstreetmap.org/wiki/Zh-hans:Tag:barrier=wall"/>
                <label text="Edit Wall"/>
                <space/>
                <key key="barrier" value="wall"/>
                <optional>
                    <text key="height" text="Height (meters)" length="7"/>
                    <combo key="material" text="Material" values="brick,earth,concrate,stone,steel,timber"/>
                    <combo key="fence_type" text="Fence type on top" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                </optional>
            </item>
            <!-- wall -->
            <item name="City Wall" icon="presets/city_wall.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=city_wall"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=city_wall"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=city_wall"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=city_wall"/>
                <label text="Edit City Wall"/>
                <space/>
                <key key="barrier" value="city_wall"/>
                <optional>
                    <text key="height" text="Height (meters)" length="7"/>
                    <combo key="material" text="Material" values="brick,earth,concrate,stone,steel,timber"/>
                </optional>
            </item>
            <!-- city_wall -->
            <item name="Retaining Wall" icon="presets/retaining_wall.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=retaining_wall"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:barrier=retaining_wall"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=retaining_wall"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=retaining_wall"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=retaining_wall"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=retaining_wall"/>
                <label text="Edit Retaining Wall. Note: left side is top"/>
                <space/>
                <key key="barrier" value="retaining_wall"/>
                <optional>
                    <text key="height" text="Height (meters)" length="7"/>
                    <combo key="material" text="Material" values="brick,earth,concrate,stone,steel,timber"/>
                </optional>
            </item>
            <!-- retaining_wall -->
            <item name="Ditch" name_context="Barrier" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=ditch"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:barrier=ditch"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=ditch"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=ditch"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=ditch"/>
                <label text="Edit Ditch"/>
                <space/>
                <key key="barrier" value="ditch"/>
                <optional>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <!-- ditch -->
            <item name="Kerb" type="way,closedway">
                <label text="Edit Kerb"/>
                <space/>
                <key key="barrier" value="kerb"/>
                <optional>
                    <text key="height" text="Height (meters)" length="7"/>
                </optional>
            </item>
            <!-- kerb -->
            <separator/>

            <!-- *** access *** -->
            <item name="Entrance" icon="styles/standard/vehicle/entrance.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=entrance"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=entrance"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=entrance"/>
                <label text="Edit Entrance"/>
                <space/>
                <key key="barrier" value="entrance"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
                <check key="train" text="Train" default="off"/>
                <check key="boat" text="Boat" default="off"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <!-- entrance -->
            <item name="Gate" icon="presets/gate.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=gate"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=gate"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=gate"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=gate"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=gate"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=gate"/>
                <label text="Edit Gate"/>
                <space/>
                <key key="barrier" value="gate"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
                <check key="train" text="Train" default="off"/>
                <check key="boat" text="Boat" default="off"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <!-- gate -->
            <item name="Lift Gate" icon="presets/lift_gate.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=lift_gate"
                      de.href="http://wiki.openstreetmap.org/wiki/FR:Tag:barrier=lift_gate"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:barrier=lift_gate"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=lift_gate"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:barrier=lift_gate"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:barrier=lift_gate"/>
                <label text="Edit Lift Gate"/>
                <space/>
                <key key="barrier" value="lift_gate"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
                <check key="train" text="Train" default="off"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <!-- lift_gate -->
            <item name="Hampshire Gate" icon="presets/empty.png" type="node">
                <label text="Edit Hampshire Gate"/>
                <space/>
                <key key="barrier" value="hampshire_gate"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <!-- hampshire_gate -->
            <item name="Bump Gate" icon="presets/empty.png" type="node">
                <label text="Edit Bump Gate"/>
                <space/>
                <key key="barrier" value="bump_gate"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <!-- bump_gate -->
            <item name="Kissing Gate" icon="presets/empty.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=kissing_gate"/>
                <label text="Edit Kissing Gate"/>
                <space/>
                <key key="barrier" value="kissing_gate"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="off"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <!-- kissing_gate -->
            <item name="Chain" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:barrier=chain"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:barrier=chain"/>
                <label text="Edit Chain"/>
                <space/>
                <key key="barrier" value="chain"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
                <check key="boat" text="Boat" default="off"/>
                <optional>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <!-- chain -->
            <item name="Stile" icon="presets/stile.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=stile"/>
                <label text="Edit Stile"/>
                <space/>
                <key key="barrier" value="stile"/>
                <optional>
                    <combo key="stile" text="Type" values="ladder,squeezer,stepover"/>
                    <combo key="material" text="Material" values="metal,stone,wood"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="off"/>
            </item>
            <!-- stile -->
            <item name="Turnstile" icon="styles/standard/vehicle/turnstile.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=stile"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:highway=stile"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=stile"/>
                <label text="Edit Turnstile"/>
                <space/>
                <key key="barrier" value="turnstile"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="off"/>
            </item>
            <!-- turnstile -->
            <item name="Sally Port" icon="styles/standard/vehicle/sally_port.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=sally_port"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=sally_port"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=sally_port"/>
                <label text="Edit Sally Port"/>
                <space/>
                <key key="barrier" value="sally_port"/>
                <label text="Allowed traffic:"/>
                <space/>
                <check key="foot" text="Foot" default="on"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
                <optional>
                    <text key="maxheight" text="Max. height (meters)" length="7"/>
                    <text key="maxwidth" text="Max. width (meters)" length="7"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <!-- sally_port -->

        </group>
        <!-- Barriers -->
        <group name="Passageways" icon="presets/tunnel.png">
            <item name="Tunnel" icon="presets/tunnel.png" type="way">
                <label text="Edit Tunnel"/>
                <link href="http://wiki.openstreetmap.org/wiki/Key:tunnel"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:tunnel"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:tunnel"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:tunnel"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:tunnel"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:tunnel"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:tunnel"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:tunnel"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:tunnel"/>
                <space/>
                <key key="tunnel" value="yes"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5" default="-1"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <text key="width" text="Width (meters)" length="7"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <combo key="access" text="General access" values="yes,official,designated,destination,delivery,permissive,private,agricultural,forestry,no"/>
                </optional>
            </item>
            <item name="Building Passage" icon="presets/tunnel.png" type="way">
                <label text="Edit Building Passage"/>
                <link href="http://wiki.openstreetmap.org/wiki/Key:tunnel"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:tunnel"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:tunnel"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:tunnel"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:tunnel"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:tunnel"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:tunnel"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:tunnel"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:tunnel"/>
                <space/>
                <key key="tunnel" value="building_passage"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <text key="width" text="Width (meters)" length="7"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                </optional>
            </item>
            <item name="Arcade" type="way">
                <label text="Edit Arcade"/>
                <link href="http://wiki.openstreetmap.org/wiki/Key:covered"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:covered"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:covered"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:covered"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:covered"/>
                <space/>
                <key key="covered" value="arcade"/>
                <check key="arcade:left" value_on="open" text="Open on left side"/>
                <check key="arcade:right" value_on="open" text="Open on right side"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Colonnade" type="way">
                <label text="Edit Colonnade"/>
                <link href="http://wiki.openstreetmap.org/wiki/Key:covered"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:covered"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:covered"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:covered"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:covered"/>
                <space/>
                <key key="covered" value="colonnade"/>
                <check key="colonnade:left" value_on="open" text="Open on left side"/>
                <check key="colonnade:right" value_on="open" text="Open on right side"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <text key="width" text="Width (meters)" length="7"/>
                </optional>
            </item>
            <item name="Avalanche Protector" type="way">
                <label text="Edit Avalanche Protector"/>
                <link href="http://wiki.openstreetmap.org/wiki/Key:tunnel"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:tunnel"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Key:tunnel"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:tunnel"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:tunnel"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:tunnel"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:tunnel"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:tunnel"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:tunnel"/>
                <space/>
                <key key="tunnel" value="avalanche_protector"/>
                <check key="avalanche_protector:left" value_on="open" text="Open on left side"/>
                <check key="avalanche_protector:right" value_on="open" text="Open on right side"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <text key="width" text="Width (meters)" length="7"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                </optional>
            </item>
        </group>
    </group>
    <!-- Passageways -->
    <group name="Water" icon="presets/waterway.png">
        <group name="Water" icon="presets/waterway.png">
            <separator/>
            <item name="Drain" icon="presets/waterway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=drain"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=drain"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=drain"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=drain"/>
                <label text="Edit Drain"/>
                <space/>
                <key key="waterway" value="drain"/>
                <text key="name" text="Name"/>
                <text key="width" text="Width (meters)" length="7"/>
                <space/>
                <check key="intermittent" text="Intermittent" default="off"/>
                <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
                <space/>
                <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                <check key="tunnel" text="Culvert" value_on="culvert"/>
                <check key="bridge" text="Aqueduct" value_on="aqueduct"/>
            </item>
            <item name="Ditch" icon="presets/waterway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=ditch"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=ditch"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=ditch"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=ditch"/>
                <label text="Edit Ditch"/>
                <text key="width" text="Width (meters)" length="7"/>
                <space/>
                <key key="waterway" value="ditch"/>
                <text key="name" text="Name"/>
                <space/>
                <check key="intermittent" text="Intermittent" default="off"/>
                <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
                <space/>
                <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                <check key="tunnel" text="Culvert" value_on="culvert"/>
                <check key="bridge" text="Aqueduct" value_on="aqueduct"/>
            </item>
            <item name="Stream" icon="presets/waterway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=stream"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=stream"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:waterway=stream"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=stream"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=stream"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=stream"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=stream"/>
                <label text="Edit Stream"/>
                <space/>
                <key key="waterway" value="stream"/>
                <text key="name" text="Name"/>
                <space/>
                <check key="intermittent" text="Intermittent" default="off"/>
                <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
                <space/>
                <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
            </item>
            <item name="Canal" icon="presets/waterway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=canal"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=canal"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=canal"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=canal"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=canal"/>
                <label text="Edit Canal"/>
                <space/>
                <key key="waterway" value="canal"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <text key="width" text="Width (meters)" length="7"/>
                <space/>
                <check key="intermittent" text="Intermittent" default="off"/>
                <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
                <space/>
                <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                <check key="tunnel" text="Culvert" value_on="culvert"/>
                <check key="bridge" text="Aqueduct" value_on="aqueduct"/>
            </item>
            <item name="River" icon="presets/river.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=river"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=river"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:waterway=river"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=river"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=river"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=river"/>
                <label text="Edit River"/>
                <space/>
                <key key="waterway" value="river"/>
                <text key="name" text="Name"/>
                <space/>
                <check key="intermittent" text="Intermittent" default="off"/>
                <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
                <space/>
                <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <separator/>
            <item name="Spring" icon="presets/spring.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=spring"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:natural=spring"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:natural=spring"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=spring"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=spring"/>
                <label text="Edit Spring"/>
                <key key="natural" value="spring"/>
                <text key="name" text="Name"/>
                <space/>
                <check key="intermittent" text="Intermittent" default="off"/>
                <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
                <space/>
                <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                <check key="tunnel" text="Culvert" value_on="culvert"/>
                <check key="bridge" text="Aqueduct" value_on="aqueduct"/>
            </item>
            <item name="Waterfall" icon="presets/waterfall.png" type="node,way">
                <label text="Edit Waterfall"/>
                <space/>
                <key key="waterway" value="waterfall"/>
                <text key="name" text="Name"/>
                <text key="height" text="Height (meters)" length="7"/>
                <space/>
                <check key="intermittent" text="Intermittent" default="off"/>
                <combo key="seasonal" text="Seasonal" values="yes,no,wet_season"/>
                <space/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="Weir" icon="presets/weir.png" type="node,way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=weir"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=weir"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=weir"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=weir"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=weir"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=weir"/>
                <label text="Edit Weir"/>
                <space/>
                <key key="waterway" value="weir"/>
                <text key="name" text="Name"/>
                <check key="intermittent" text="Intermittent" default="off"/>
            </item>
            <item name="Dam" icon="presets/dam.png" type="node,way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=dam"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=dam"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=dam"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=dam"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=dam"/>
                <label text="Edit Dam"/>
                <space/>
                <key key="waterway" value="dam"/>
                <text key="name" text="Name"/>
                <text key="height" text="Height (meters)" length="7"/>
                <text key="width" text="Width (meters)" length="7"/>
                <text key="wikipedia" text="Wikipedia"/>
                <space/>
                <combo key="material" text="Material" values="earth,concrate,stone,steel,timber"/>
            </item>
            <item name="Groyne" icon="presets/groyne.png" type="node,way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=groyne"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=groyne"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:man_made=groyne"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=groyne"/>
                <label text="Edit Groyne"/>
                <space/>
                <key key="man_made" value="groyne"/>
            </item>
            <item name="Breakwater" icon="presets/groyne.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=breakwater"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=breakwater"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=breakwater"/>
                <label text="Edit Breakwater"/>
                <space/>
                <key key="man_made" value="breakwater"/>
                <text key="height" text="Height (meters)" length="7"/>
                <text key="width" text="Width (meters)" length="7"/>
                <text key="ref" text="Reference"/>
                <text key="name" text="Name"/>
                <space/>
                <combo key="material" text="Material" values="earth,concrate,stone,steel,timber"/>
            </item>
            <separator/>
            <item name="Culvert" icon="presets/tunnel.png" type="way">
                <label text="Edit Culvert"/>
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tunnel=culvert"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:tunnel=culvert"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:tunnel=culvert"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:tunnel=culvert"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:tunnel=culvert"/>
                <space/>
                <key key="tunnel" value="culvert"/>
                <optional>
                    <text key="name" text="Name"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5" default="-1"/>
                    <text key="width" text="Width (meters)" length="7"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                    <space/>
                    <check key="boat" text="Boat" default="off"/>
                    <check key="foot" text="Foot" default="off"/>
                    <check key="bicycle" text="Bicycle" default="off"/>
                    <check key="horse" text="Horse" default="off"/>
                    <check key="motorcycle" text="Motorcycle" default="off"/>
                    <check key="motorcar" text="Motorcar" default="off"/>
                    <space/>
                    <combo key="barrier" text="Barrier (entrance)" values="yes,fence,railing,chain,chicane,cycle_barrier,debris,entrance,gate,rope"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                </optional>
            </item>
            <separator/>
            <item name="Basin" icon="presets/landuse_water.png" type="node,closedway,relation">
                <label text="Edit Basin Landuse"/>
                <space/>
                <key key="landuse" value="basin"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
                    <check text="Dam" key="waterway" value_on="dam"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="barrier" text="Barrier" values="retaining_wall"/>
                    <combo key="material" text="Material of barrier/dam" values="brick,earth,concrate,stone,steel,timber"/>
                </optional>
            </item>
            <item name="Reservoir" icon="presets/landuse_water.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=reservoir"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=reservoir"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=reservoir"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=reservoir"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=reservoir"/>
                <label text="Edit Reservoir Landuse"/>
                <space/>
                <key key="landuse" value="reservoir"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
                    <check text="Dam" key="waterway" value_on="dam"/>
                    <!-- TODO dam area -->
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="barrier" text="Barrier" values="retaining_wall"/>
                    <combo key="material" text="Material of barrier/dam" values="brick,earth,concrate,stone,steel,timber"/>
                </optional>
            </item>
            <item name="Covered Reservoir" icon="presets/reservoir_covered.png" type="node,closedway,relation">
                <label text="Edit Covered Reservoir"/>
                <key key="man_made" value="reservoir_covered"/>
                <text key="name" text="Name"/>
            </item>
            <separator/>
            <item name="Water" icon="presets/water.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=water"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=water"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:natural=water"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:natural=water"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=water"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=water"/>
                <label text="Edit Water"/>
                <key key="natural" value="water"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Land" icon="presets/landuse.png" type="node,closedway,relation">
                <label text="Edit Land"/>
                <key key="natural" value="land"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Coastline" icon="presets/coastline.png" type="node,way,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=coastline"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=coastline"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=coastline"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=coastline"/>
                <label text="Edit Coastline"/>
                <key key="natural" value="coastline"/>
                <text key="name" text="Name"/>
                <optional>
                    <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
                </optional>
            </item>
            <item name="Riverbank" icon="presets/waterway.png" type="closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=riverbank"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=riverbank"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:waterway=riverbank"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=riverbank"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=riverbank"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=riverbank"/>
                <label text="Edit Riverbank"/>
                <key key="waterway" value="riverbank"/>
                <text key="name" text="Name"/>
                <optional>
                    <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
                    <!-- TODO dam area -->
                </optional>
            </item>
            <separator/>
            <item name="Wetland" icon="presets/empty.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=wetland"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=wetland"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:natural=wetland"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:natural=wetland"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:natural=wetland"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=wetland"
                      pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:natural=wetland"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=wetland"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=wetland"/>
                <label text="Edit Wetland"/>
                <key key="natural" value="wetland"/>
                <text key="name" text="Name"/>
                <combo key="wetland" text="Type" values="swamp,bog,marsh,reedbed,saltmarsh,tidalflat,mangrove"/>
            </item>
            <item name="Mud" icon="presets/mud.png" type="node,closedway,relation">
                <label text="Edit Mud"/>
                <key key="natural" value="mud"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Beach" icon="presets/beach.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=beach"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:natural=beach"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=beach"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=beach"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=beach"/>
                <label text="Edit Beach"/>
                <key key="natural" value="beach"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="access" text="General access" values="yes,customers,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Bay" icon="presets/bay.png" type="node,closedway,relation">
                <label text="Edit Bay"/>
                <key key="natural" value="bay"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Cliff" icon="presets/cliff.png" type="node,way,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=cliff"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=cliff"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=cliff"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=cliff"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=cliff"/>
                <label text="Edit Cliff. Note: left side is top"/>
                <key key="natural" value="cliff"/>
                <text key="name" text="Name"/>
            </item>
        </group>
        <!-- Water -->
        <group name="Shipping" icon="presets/ferry.png">
            <item name="Ferry Terminal" icon="presets/ferry.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=ferry_terminal"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=ferry_terminal"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=ferry_terminal"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=ferry_terminal"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=ferry_terminal"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=ferry_terminal"/>
                <label text="Edit Ferry Terminal"/>
                <key key="amenity" value="ferry_terminal"/>
                <text key="name" text="Name"/>
                <combo key="cargo" text="Cargo" values="passengers,vehicle,bicycle,hgv,passengers;vehicle"/>
            </item>
            <item name="Ferry Route" icon="presets/ferry.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:route=ferry"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:route=ferry"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:route=ferry"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:route=ferry"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:route=ferry"/>
                <label text="Edit Ferry"/>
                <space/>
                <key key="route" value="ferry"/>
                <optional>
                    <text key="name" text="Name"/>
                </optional>
            </item>
            <separator/>
            <item name="Marina" icon="presets/marina.png" type="node,closedway">
                <label text="Edit Marina"/>
                <key key="leisure" value="marina"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Pier" icon="presets/pier.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=pier"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=pier"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:man_made=pier"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=pier"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=pier"/>
                <label text="Edit Pier"/>
                <key key="man_made" value="pier"/>
                <text key="name" text="Name"/>
                <text key="height" text="Height (meters)" length="7"/>
                <text key="width" text="Width (meters)" length="7"/>
                <space/>
                <combo key="material" text="Material" values="earth,concrate,stone,steel,wood"/>
            </item>
            <item name="Lock Gate" icon="presets/lock_gate.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=lock_gate"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=lock_gate"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:waterway=lock_gate"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=lock_gate"/>
                <key key="waterway" value="lock_gate"/>
            </item>
            <item name="Turning Point" icon="presets/turning.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=turning_point"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=turning_point"/>
                <key key="waterway" value="turning_point"/>
            </item>
            <separator/>
            <item name="Slipway" icon="styles/standard/nautical/slipway.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=slipway"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:leisure=slipway"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:leisure=slipway"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:leisure=slipway"
                      pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:leisure=slipway"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=slipway"/>
                <label text="Edit Slipway"/>
                <key key="leisure" value="slipway"/>
                <text key="name" text="Name"/>
                <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
            </item>
            <item name="Boatyard" icon="presets/boatyard.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=boatyard"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=boatyard"/>
                <label text="Edit Boatyard"/>
                <space/>
                <key key="waterway" value="boatyard"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Dock" icon="presets/boatyard.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:waterway=dock"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:waterway=dock"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:waterway=dock"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:waterway=dock"/>
                <label text="Edit Dock"/>
                <space/>
                <key key="waterway" value="dock"/>
                <text key="name" text="Name"/>
            </item>
        </group>
        <!-- Shipping -->
    </group>
    <group name="Transport" icon="presets/railway.png">
        <group name="Railway" icon="presets/railway.png">
            <item name="Rail" icon="presets/railway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=rail"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:railway=rail"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=rail"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:railway=rail"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:railway=rail"/>
                <label text="Edit Rail"/>
                <space/>
                <key key="railway" value="rail"/>
                <optional>
				    <combo key="tracks" text="Parallel tracks" values="2,3,4,5,6"/>
                    <combo key="usage" text="Usage" values="main,branch,industrial,military,tourism"/>
                    <combo key="service" text="Service/Type" values="yard,siding,spur"/>
                    <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
                    <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
                    <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
                    <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
                    <space/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <space/>
                    <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                </optional>
            </item>
            <item name="Narrow Gauge Rail" icon="presets/railway.png" type="way">
                <label text="Edit Narrow Gauge Rail"/>
                <space/>
                <key key="railway" value="narrow_gauge"/>
                <optional>
				    <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
                    <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
                    <combo key="service" text="Types" values="yard,siding,spur"/>
                    <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
                    <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
                    <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
                    <space/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <space/>
                    <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                </optional>
            </item>
            <item name="Monorail" icon="presets/railway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=monorail"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=monorail"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=monorail"/>
                <label text="Edit Monorail"/>
                <space/>
                <key key="railway" value="monorail"/>
                <optional>
                    <combo key="service" text="Types" values="yard,siding,spur"/>
                    <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
                    <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
                    <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
                    <space/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <space/>
                    <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                </optional>
            </item>
            <item name="Light Rail" icon="presets/rail_light.png" type="way">
                <label text="Edit Light Rail"/>
                <space/>
                <key key="railway" value="light_rail"/>
                <optional>
				    <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
                    <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
                    <combo key="service" text="Types" values="yard,siding,spur"/>
                    <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
                    <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
                    <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
                    <space/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <space/>
                    <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                </optional>
            </item>
            <item name="Subway" icon="presets/rail_light.png" type="way">
                <label text="Edit Subway"/>
                <space/>
                <key key="railway" value="subway"/>
                <optional>
				    <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
                    <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
                    <combo key="service" text="Types" values="yard,siding,spur"/>
                    <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
                    <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
                    <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
					<space/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                </optional>
            </item>
            <item name="Tram" icon="presets/tram.png" type="way">
                <label text="Edit Tram"/>
                <space/>
                <key key="railway" value="tram"/>
                <optional>
				    <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
                    <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
                    <combo key="service" text="Types" values="yard,siding,spur"/>
                    <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
                    <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
                    <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
                    <space/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <space/>
                    <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                </optional>
            </item>
            <item name="Bus Guideway" icon="presets/busway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=bus_guideway"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=bus_guideway"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=bus_guideway"/>
                <label text="Edit Bus Guideway"/>
                <space/>
                <key key="highway" value="bus_guideway"/>
                <optional>
                    <text key="name" text="Name"/>
                    <check key="oneway" text="Oneway" default="off"/>
                    <check key="bridge" text="Bridge" default="off"/>
                    <check key="tunnel" text="Tunnel" default="off"/>
                    <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                    <check key="embankment" text="Embankment" default="off"/>
                    <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                    <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                    <text key="maxspeed" text="Max. speed (km/h)"/>
                    <text key="width" text="Width (meters)" length="7"/>
                    <combo key="incline" text="Incline" values="10%,-10%,10°,-10°,up,down"/>
                </optional>
            </item>
            <separator/>
            <item name="Preserved" icon="presets/rail_preserved.png" type="way">
                <label text="Edit Preserved Railway"/>
                <space/>
                <key key="railway" value="preserved"/>
                <optional>
				    <combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
                    <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
                    <combo key="service" text="Types" values="yard,siding,spur"/>
                    <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
                    <combo key="voltage" text="Voltage" values="600,650,750,1500,3000,15000,25000" use_last_as_default="true"/>
                    <combo key="frequency" text="Frequency (Hz)" values="0,16.7,50,60" use_last_as_default="true"/>
                    <space/>
                    <check key="embankment" text="Embankment" default="off"/>
                </optional>
            </item>
            <item name="Disused Rail" icon="presets/railway.png" type="way">
                <label text="Edit Disused Railway"/>
                <space/>
                <key key="railway" value="disused"/>
				<combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
                <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
                <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
                <combo key="service" text="Optional Types" values="yard,siding,spur"/>
                <space/>
                <check key="bridge" text="Bridge" default="off"/>
                <check key="tunnel" text="Tunnel" default="off"/>
                <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                <check key="embankment" text="Embankment" default="off"/>
                <space/>
                <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
            </item>
            <item name="Abandoned Rail" icon="presets/railway.png" type="way">
                <key key="railway" value="abandoned"/>
				<combo key="tracks" text="parallel tracks" values="2,3,4,5,6"/>
                <combo key="gauge" text="Gauge (mm)" values="1668,1676,1674,1600,1524,1520,1495,1435,1067,1000,914,762,760,750" use_last_as_default="true"/>
                <combo key="electrified" text="Electrified" values="contact_line,no,yes,rail" use_last_as_default="true"/>
                <space/>
                <check key="bridge" text="Bridge" default="off"/>
                <check key="tunnel" text="Tunnel" default="off"/>
                <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                <check key="embankment" text="Embankment" default="off"/>
                <space/>
                <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
            </item>
            <item name="Demolished Rail" icon="presets/railway.png" type="way">
                <combo key="demolished:rail" text="Demolished Rail" value="rail,narrow_gauge,light_rail,monorail,tram,bus_guideway"/>
                <text key="demolished" text="Demolition date"/>
                <space/>
                <check key="bridge" text="Bridge" default="off"/>
                <check key="tunnel" text="Tunnel" default="off"/>
                <combo key="cutting" text="Cutting" values="yes,left,right,no"/>
                <check key="embankment" text="Embankment" default="off"/>
                <space/>
                <combo key="barrier" text="Barrier" values="yes,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
            </item>
            <separator/>
            <item name="Level Crossing" icon="presets/level_crossing.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=level_crossing"
                      bg.href="http://wiki.openstreetmap.org/wiki/BG:Tag:railway=level_crossing"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=level_crossing"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:railway=level_crossing"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:railway=level_crossing"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:railway=level_crossing"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:railway=level_crossing"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:railway=level_crossing"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=level_crossing"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:railway=level_crossing"/>
                <key key="railway" value="level_crossing"/>
            </item>
            <item name="Crossing" icon="presets/crossing.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Key:crossing"/>
                <key key="railway" value="crossing"/>
                <optional>
                    <combo key="crossing" text="Crossing type" values="uncontrolled,traffic_signals,island,unmarked,no,unknown"/>
                    <check key="horse" text="Cross on horseback" default="off"/>
                    <check key="bicycle" text="Cross by bicycle" default="off"/>
                    <check key="supervised" text="Crossing attendant" default="off"/>
                </optional>
            </item>
            <item name="Turntable" icon="presets/turntable.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=turntable"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=turntable"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=turntable"/>
                <key key="railway" value="turntable"/>
            </item>
            <!-- TODO propose http://en.wikipedia.org/wiki/Transfer_table
		<item name="Transfer table" icon="presets/turntable.png" type="node,closedway">
        <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=transfer_table"/>
        <key key="railway" value="transfer_table"/>
		</item>
	   -->
            <item name="Buffer Stop" icon="styles/standard/transport/buffer_stop.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=buffer_stop"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=buffer_stop"/>
                <key key="railway" value="buffer_stop"/>
            </item>
        </group>
        <!-- Railway -->
        <group name="Aerialway" icon="presets/aerialway.png">
            <item name="Chair Lift" icon="presets/chair_lift.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aerialway=chair_lift"/>
                <label text="Edit Chair Lift"/>
                <key key="aerialway" value="chair_lift"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:occupancy" text="Number of people per chair"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                    <check key="aerialway:bubble" text="Has bubble?" default="off"/>
                    <check key="aerialway:heating" text="Has heating?" default="off"/>
                </optional>
            </item>
            <item name="Drag Lift" icon="presets/drag_lift.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aerialway=drag_lift"/>
                <label text="Edit Drag Lift"/>
                <key key="aerialway" value="drag_lift"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                </optional>
            </item>
            <item name="Cable Car" icon="presets/cable_car.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aerialway=cable_car"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:aerialway=cable_car"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aerialway=cable_car"
                      sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:aerialway=cable_car"/>
                <label text="Edit Cable Car"/>
                <key key="aerialway" value="cable_car"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:occupancy" text="Number of people per car"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                    <check key="aerialway:heating" text="Has heating?" default="off"/>
                </optional>
            </item>
            <item name="Gondola" icon="presets/gondola.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Proposed_features/Piste_Maps"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Proposed_features/Piste_Maps"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Proposed_features/Piste_Maps"/>
                <label text="Edit Gondola"/>
                <key key="aerialway" value="gondola"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:occupancy" text="Number of people per gondola"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                    <check key="aerialway:heating" text="Has heating?" default="off"/>
                </optional>
            </item>
            <item name="Mixed Lift" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aerialway=mixed_lift"/>
                <label text="Edit Mixed Lift (containing both gondolas and chairs)"/>
                <key key="aerialway" value="mixed_lift"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:occupancy" text="Number of people per gondola/chair"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                    <check key="aerialway:bubble" text="Has bubble?" default="off"/>
                    <check key="aerialway:heating" text="Has heating?" default="off"/>
                </optional>
            </item>
            <item name="T-bar Lift" icon="presets/drag_lift.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
                <label text="Edit T-bar Lift"/>
                <key key="aerialway" value="t-bar"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                </optional>
            </item>
            <item name="J-bar Lift" icon="presets/drag_lift.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
                <label text="Edit J-bar Lift"/>
                <key key="aerialway" value="j-bar"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                </optional>
            </item>
            <item name="Platter Lift" icon="presets/drag_lift.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
                <label text="Edit Platter Lift"/>
                <key key="aerialway" value="platter"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                </optional>
            </item>
            <item name="Rope Tow" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
                <label text="Edit Rope Tow"/>
                <key key="aerialway" value="rope_tow"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                </optional>
            </item>
            <item name="Magic Carpet" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
                <label text="Edit Magic Carpet"/>
                <key key="aerialway" value="magic_carpet"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:capacity" text="Number of people per hour"/>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                </optional>
            </item>
            <item name="Goods" name_context="aerialway" icon="presets/goods.png" type="way">
                <label text="Edit Goods" text_context="aerialway"/>
                <key key="aerialway" value="goods"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <optional>
                    <text key="aerialway:duration" text="Typical journey time in minutes"/>
                </optional>
            </item>
            <separator/>
            <item name="Station" name_context="aerialway" icon="presets/aerialway_station.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
                <label text="Edit Station" text_context="aerialway"/>
                <key key="aerialway" value="station"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Pylon" name_context="aerialway" icon="presets/power_tower.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps#aerialway"/>
                <label text="Edit Pylon" text_context="aerialway"/>
                <key key="aerialway" value="pylon"/>
                <text key="name" text="Name"/>
                <text key="height" text="Height (meters)" length="7"/>
            </item>
        </group>
        <!-- Aerialway -->
        <separator/>
        <group name="Car" icon="presets/car.png">
            <item name="Parking" icon="presets/parking.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=parking"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=parking"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=parking"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=parking"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=parking"
                      pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:amenity=parking"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=parking"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=parking"/>
                <label text="Edit Parking"/>
                <key key="amenity" value="parking"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <combo key="parking" text="Type" values="multi-storey,surface,underground" default="surface"/>
                <text key="maxheight" text="Max. height (meters)"/>
                <combo key="access" text="Access" values="yes,private,customers,permissive,no"/>
                <check key="park_ride" text="Park and Ride"/>
                <combo key="fee" text="Fee" values="yes,no"/>
                <text key="operator" text="Operator"/>
                <space/>
                <text key="capacity" text="Capacity (overall)"/>
                <combo key="capacity:disabled" text="Spaces for Disabled" values="yes,no,unknown,1,2,3"/>
                <combo key="capacity:women" text="Spaces for Women" values="yes,no,unknown,1,2,3"/>
                <combo key="capacity:parent" text="Spaces for Parents" values="yes,no,unknown,1,2,3"/>
                <label text="See the Wiki for other capacity:[types]=*."/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                </optional>
            </item>
            <item name="Parking space" icon="presets/parking.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=parking_space"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=parking_space"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=parking_space"/>
                <label text="Edit Parking space"/>
                <key key="amenity" value="parking_space"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <combo key="parking" text="Type" values="multi-storey,surface,underground,rooftop"/>
                <text key="capacity" text="Capacity"/>
                <space/>
                <combo key="access" text="Access" values="yes,private,customers,permissive,no"/>
                <combo key="fee" text="Fee" values="yes,no,interval"/>
                <text key="operator" text="Operator"/>
                <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                <check key="covered" text="Covered (with roof)"/>
                <combo key="stay" text="Time Limit (minutes)" values="0,30-60,30-180,30+"/>
                <combo key="supervised" text="Supervised" values="yes,no,interval"/>
                <combo key="lit" text="Lit" values="yes,no,interval"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Parking entrance" icon="presets/parking.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=parking_entrance"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=parking_entrance"/>
                <label text="Edit Parking entrance"/>
                <key key="amenity" value="parking_entrance"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference number"/>
                <space/>
                <combo key="parking" text="Type" values="multi-storey,surface,underground,rooftop"/>
                <combo key="access" text="Access" values="yes,private,customers,permissive,no"/>
                <combo key="fee" text="Fee" values="yes,no,interval"/>
                <text key="operator" text="Operator"/>
                <combo key="surface" text="Surface" values="paved,unpaved,asphalt,concrete,metal,wood,paving_stones,cobblestone,gravel,pebblestone,compacted,grass_paver,grass,sand,ground"/>
                <check key="covered" text="Covered (with roof)"/>
                <combo key="stay" text="Time Limit (minutes)" values="0,30-60,30-180,30+"/>
                <combo key="supervised" text="Supervised" values="yes,no,interval"/>
                <combo key="lit" text="Lit" values="yes,no,interval"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Fuel" icon="presets/fuel.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fuel"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=fuel"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=fuel"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=fuel"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=fuel"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=fuel"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=fuel"
                      no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=fuel"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=fuel"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=fuel"/>
                <label text="Edit Fuel"/>
                <key key="amenity" value="fuel"/>
                <combo key="brand" text="Brand" values="Agip,Aral,Avia,BP,Chevron,Citgo,Esso,Exxon,Gulf,Mobil,OMV,Petro-Canada,Pioneer,Q8,Repsol,Shell,Sunoco,Statoil,Tamoil,Texaco,Total,Independent"/>
                <optional>
                    <text key="name" text="Name"/>
                    <text key="operator" text="Operator"/>
                    <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                    <combo key="shop" text="With shop" values="yes,convenience,kiosk,no"/>
                    <label text="Fuel types:"/>
                    <check key="fuel:diesel" text="Diesel" default="off"/>
                    <check key="fuel:biodiesel" text="Bio Diesel" default="off"/>
                    <check key="fuel:GTL_diesel" text="Diesel (Gas To Liquid - ultimate diesel)" default="off"/>
                    <check key="fuel:HGV_diesel" text="Diesel for Heavy Good Vehicles" default="off"/>
                    <check key="fuel:octane_80" text="Octane 80" default="off"/>
                    <check key="fuel:octane_91" text="Octane 91" default="off"/>
                    <check key="fuel:octane_92" text="Octane 92" default="off"/>
                    <check key="fuel:octane_95" text="Octane 95" default="off"/>
                    <check key="fuel:octane_98" text="Octane 98" default="off"/>
                    <check key="fuel:octane_100" text="Octane 100" default="off"/>
                    <check key="fuel:e10" text="E10 (10% Ethanol mix)" default="off"/>
                    <check key="fuel:e85" text="E85 (85% Ethanol mix)" default="off"/>
                    <check key="fuel:lpg" text="LPG (Liquefied petroleum gas)" default="off"/>
                    <check key="fuel:cng" text="CNG (Compressed Natural Gas)" default="off"/>
                    <check key="fuel:1_25" text="1/25 mix (mofa/moped)" default="off"/>
                    <check key="fuel:1_50" text="1/50 mix (mofa/moped)" default="off"/>
                </optional>
            </item>
            <item name="Charging Station" icon="styles/standard/accommodation/camping/hookup.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fuel"/>
                <label text="Edit Charging Station (for electric cars)"/>
                <key key="amenity" value="charging_station"/>
                <text key="operator" text="Operator"/>
                <text key="voltage" text="Voltage"/>
                <text key="amperage" text="Amperage"/>
            </item>
            <item name="Wash" icon="presets/car_wash.png" type="node,closedway">
                <label text="Edit Car Wash"/>
                <key key="amenity" value="car_wash"/>
                <text key="name" text="Name"/>
                <text key="brand" text="Brand"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Car Dealer" icon="presets/car.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=car"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=car"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=car"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=car"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:shop=car"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=car"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=car"/>
                <label text="Edit Car Shop"/>
                <key key="shop" value="car"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
            </item>
            <item name="Repair" icon="presets/car_repair.png" type="node,closedway">
                <label text="Edit Car Repair"/>
                <key key="shop" value="car_repair"/>
                <text key="name" text="Name"/>
                <text key="brand" text="Brand"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Tyres" icon="presets/tyres.png" type="node,closedway">
                <label text="Edit Tyres"/>
                <key key="shop" value="tyres"/>
                <text key="name" text="Name"/>
                <text key="brand" text="Brand"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <label text="Contact:"/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <separator/>
            <item name="Rental" icon="presets/car_rental.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=car_rental"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=car_rental"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=car_rental"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=car_rental"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=car_rental"/>
                <label text="Edit Car Rental"/>
                <key key="amenity" value="car_rental"/>
                <text key="name" text="Name"/>
                <text key="brand" text="Brand"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Sharing" icon="presets/car_sharing.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=car_sharing"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=car_sharing"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=car_sharing"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=car_sharing"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=car_sharing"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=car_sharing"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=car_sharing"/>
                <label text="Edit Car Sharing"/>
                <key key="amenity" value="car_sharing"/>
                <text key="operator" text="Operator"/>
                <text key="capacity" text="Capacity"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <text key="website" text="Website"/>
            </item>
        </group>
        <!-- Car -->
        <group name="Motorcycle" icon="presets/motorbike.png">
            <item name="Parking" icon="styles/standard/vehicle/parking/motorbike.png" type="node,closedway">
                <label text="Edit Motorcycle Parking"/>
                <key key="amenity" value="motorcycle_parking"/>
                <text key="name" text="Name"/>
                <text key="capacity" text="Capacity"/>
                <combo key="parking" text="Type" values="multi-storey,surface,underground" default="surface"/>
                <combo key="fee" text="Fee" values="yes,no"/>
            </item>
            <item name="Motorcycle Dealer" icon="presets/motorbike.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=motorcycle"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=motorcycle"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=motorcycle"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=motorcycle"/>
                <label text="Edit Shop Motorcycle"/>
                <key key="shop" value="motorcycle"/>
                <text key="name" text="Name"/>
                <combo key="brand" text="Brand" values="independent"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <label text="Services:"/>
                <combo key="sale" text="Sale" values="yes,brand,used,no" values_context="motorcycle"/>
                <combo key="rental" text="Rental" values="yes,brand,no"/>
                <combo key="repair" text="Repair" values="yes,brand,oldtimer,no"/>
                <combo key="safety_inspection" text="Safety inspection" values="yes,DEKRA,GTÜ,MOT,TÜV,no"/>
                <combo key="parts" text="Parts" values="yes,brand,oldtimer,no"/>
                <combo key="clothes" text="Clothes" values="yes,brand,no"/>
                <text key="services" text="Other"/>
                <label text="Contact:"/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
        </group>
        <!-- Motorcycle -->
        <group name="Bicycle" icon="presets/bike.png">
            <item name="Parking" icon="styles/standard/vehicle/parking/bicycle.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bicycle_parking"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bicycle_parking"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=bicycle_parking"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=bicycle_parking"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=bicycle_parking"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bicycle_parking"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bicycle_parking"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=bicycle_parking"/>
                <label text="Edit Bicycle Parking"/>
                <key key="amenity" value="bicycle_parking"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <text key="capacity" text="Capacity"/>
                <combo key="bicycle_parking" text="Type" values="anchors,building,ground_slots,informal,lockers,shed,stands,wall_loops"/>
                <check key="covered" text="Covered" default="off"/>
                <check key="supervised" text="Supervised" default="off"/>
            </item>
            <item name="Bike Dealer" icon="presets/bike.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=bicycle"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:shop=bicycle"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=bicycle"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=bicycle"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=bicycle"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=bicycle"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:shop=bicycle"/>
                <label text="Edit Bicycle Shop"/>
                <key key="shop" value="bicycle"/>
                <text key="name" text="Name"/>
                <check key="service:bicycle:retail" text="Bicycles are sold"/>
                <check key="service:bicycle:second_hand" text="Second-hand bicycles are sold"/>
                <check key="service:bicycle:repair" text="Bicycles are repaired"/>
                <check key="service:bicycle:rental" text="Bicycles are rented"/>
                <check key="service:bicycle:pump" text="Free bicycle pump"/>
                <check key="service:bicycle:diy" text="Tools for do-it-yourself repair (may be a bike co-operative)"/>
                <check key="service:bicycle:cleaning" text="Bicycles are washed (for a fee)"/>
            </item>
            <item name="Rental" icon="presets/bicycle_rental.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bicycle_rental"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bicycle_rental"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=bicycle_rental"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=bicycle_rental"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=bicycle_rental"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=bicycle_rental"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bicycle_rental"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bicycle_rental"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bicycle_rental"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=bicycle_rental"/>
                <label text="Edit Bicycle Rental"/>
                <key key="amenity" value="bicycle_rental"/>
                <text key="name" text="Name"/>
            </item>
        </group>
        <!-- Bicycle -->
        <group name="Public Transport" icon="presets/bus.png">
            <item name="Public transport route" icon="presets/path.png" type="relation">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Route"/>
                <label text="Edit Route"/>
                <key key="type" value="route"/>
                <combo key="route" text="Route type" values="train,subway,monorail,tram,bus,trolleybus,aerialway,ferry"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference"/>
                <optional>
                    <text key="from" text="From (initial stop)"/>
                    <text key="to" text="To (terminal stop)"/>
                    <text key="via" text="Via (intermediate stops)"/>
                    <text key="operator" text="Operator"/>
                    <text key="network" text="Network"/>
                    <text key="description" text="Description"/>
                    <combo key="colour" text="Color (HTML name or hexadecimal code)" values_context="color" values="black,brown,green,red,blue,gray,white,#CD853F"/>
                </optional>
                <roles>
                    <role key="" text="route segment" requisite="required" type="way"/>
                    <role key="stop" text="stop position" requisite="optional" type="node" member_expression="public_transport=stop_position"/>
                    <role key="stop_exit_only" text="stop position (exit only)" requisite="optional" type="node" member_expression="public_transport=stop_position"/>
                    <role key="stop_entry_only" text="stop position (entry only)" requisite="optional" type="node" member_expression="public_transport=stop_position"/>
                    <role key="platform" text="platform" requisite="optional" type="node,way,closedway" member_expression="public_transport=platform"/>
                    <role key="platform_exit_only" text="platform (exit only)" requisite="optional" type="node,way,closedway" member_expression="public_transport=platform"/>
                    <role key="platform_entry_only" text="platform (entry only)" requisite="optional" type="node,way,closedway" member_expression="public_transport=platform"/>
                </roles>
            </item>
            <item name="Route master" icon="presets/path.png" type="relation">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Route_master"/>
                <label text="Edit Route master"/>
                <key key="type" value="route_master"/>
                <combo key="route" text="Route type" values="train,subway,monorail,tram,bus,trolleybus,aerialway,ferry"/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference"/>
                <optional>
                    <text key="operator" text="Operator"/>
                    <text key="network" text="Network"/>
                    <combo key="colour" text="Color (HTML name or hexadecimal code)" values_context="color" values="black,brown,green,red,blue,gray,white,#CD853F"/>
                </optional>
                <roles>
                    <role key="" text="route variant/direction (at least 2)" requisite="required" type="relation" member_expression="type=route"/>
                    <!-- FIXME: at least 2 members are required -->
                </roles>
            </item>
            <item name="Stop Area" type="relation" icon="presets/interpolation.png">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Stop_area"/>
                <label text="Edit Stop Area"/>
                <key key="type" value="public_transport"/>
                <key key="public_transport" value="stop_area"/>
                <text key="name" text="Name"/>
                <optional>
                    <text key="ref" text="Reference"/>
                    <text key="uic_ref" text="UIC reference"/>
                    <text key="uic_name" text="UIC name"/>
                    <text key="operator" text="Operator"/>
                    <text key="network" text="Network"/>
                </optional>
                <roles>
                    <role key="stop" text="Stop Position" requisite="optional" type="node" member_expression="public_transport=stop_position"/>
                    <role key="platform" text="Platform" requisite="optional" type="node,way,closedway" member_expression="public_transport=platform"/>
                    <role key="" text="Station or amenities" requisite="optional" type="node,way,closedway" member_expression="amenity|public_transport=station"/>
                </roles>
            </item>
            <separator/>
            <item name="Stop Position" type="node" icon="presets/barrier.png">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Stop_area"/>
                <key key="public_transport" value="stop_position"/>
                <text key="name" text="Name"/>
                <optional>
                    <text key="ref" text="Reference"/>
                    <text key="uic_ref" text="UIC reference"/>
                    <text key="uic_name" text="UIC name"/>
                    <text key="operator" text="Operator"/>
                    <text key="network" text="Network"/>
                </optional>
                <space/>
                <check key="bus" text="Bus"/>
                <check key="highway" value_on="bus_stop" value_off="" text="Bus stop (legacy)"/>
                <check key="tram" text="Tram"/>
                <check key="railway" value_on="tram_stop" value_off="" text="Tram stop (legacy)"/>
                <check key="train" text="Train"/>
                <check key="railway" value_on="station" value_off="" text="Railway station (legacy)"/>
                <check key="railway" value_on="halt" value_off="" text="Railway halt (legacy)"/>
                <check key="trolleybus" text="Trolleybus"/>
                <check key="share_taxi" text="Share taxi"/>
                <check key="subway" text="Subway"/>
                <check key="monorail" text="Monorail"/>
                <check key="funicular" text="Funicular"/>
                <check key="aerialway" text="Aerialway"/>
                <check key="ferry" text="Ferry"/>
            </item>
            <item name="Platform" type="node,way,closedway" icon="presets/platform_bus.png">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Public_Transport#Platform"/>
                <key key="public_transport" value="platform"/>
                <text key="name" text="Name"/>
                <check key="bench" text="Bench"/>
                <check key="shelter" text="Shelter"/>
                <check key="covered" text="Covered"/>
                <combo key="wheelchair" text="Wheelchair" values="yes,no,limited,only"/>
                <optional>
                    <text key="ref" text="Reference"/>
                    <text key="uic_ref" text="UIC reference"/>
                    <text key="uic_name" text="UIC name"/>
                    <text key="operator" text="Operator"/>
                    <text key="network" text="Network"/>
                    <space/>
                    <check key="bus" text="Bus"/>
                    <check key="highway" value_on="platform" text="Highway platform (legacy)"/>
                    <check key="tram" text="Tram"/>
                    <check key="train" text="Train"/>
                    <check key="railway" value_on="platform" text="Railway platform (legacy)"/>
                    <check key="trolleybus" text="Trolleybus"/>
                    <check key="share_taxi" text="Share taxi"/>
                    <check key="subway" text="Subway"/>
                    <check key="monorail" text="Monorail"/>
                    <check key="funicular" text="funicular"/>
                    <check key="aerialway" text="aerialway"/>
                    <check key="ferry" text="ferry"/>
                </optional>
            </item>
            <item name="Station" type="node,closedway" icon="styles/standard/transport/railway_station.png">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:public_transport=station"/>
                <key key="public_transport" value="station"/>
                <text key="name" text="Name"/>
                <check key="area" text="Area"/>
                <check key="building" text="Building"/>
                <text key="operator" text="Operator"/>
                <text key="network" text="Network"/>
            </item>
            <separator/>
            <item name="Subway Entrance" icon="presets/underground.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=subway_entrance"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:railway=subway_entrance"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=subway_entrance"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:railway=subway_entrance"/>
                <label text="Edit Subway Entrance"/>
                <space/>
                <key key="railway" value="subway_entrance"/>
                <optional>
                    <text key="name" text="Name"/>
                    <check key="wheelchair" text="Wheelchair" default="off"/>
                    <check key="bicycle" text="Bicycle" default="off"/>
                    <check key="train" text="Train" default="off"/>
                </optional>
            </item>
            <item name="Ticket Machine" de.name="Fahrausweisautomat" icon="presets/vending_machine.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=vending_machine"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=vending_machine"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=vending_machine"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=vending_machine"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=vending_machine"/>
                <key key="amenity" value="vending_machine"/>
                <key key="vending" value="public_transport_tickets"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <text key="ref" text="Reference Number"/>
                <check key="payment:coins" text="Coins" default="off"/>
                <check key="payment:notes" text="Notes" default="off"/>
                <check key="payment:electronic_purses" text="Electronic purses and Charge cards" default="off"/>
                <check key="payment:debit_cards" text="Debit cards" default="off"/>
                <check key="payment:credit_cards" text="Credit cards" default="off"/>
                <check key="payment:account_cards" text="Account or loyalty cards" default="off"/>
            </item>
        </group>
        <group name="Public Transport (legacy)" icon="presets/bus.png">
            <item name="Station" name_context="railway" icon="styles/standard/transport/railway_station.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=station"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=station"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:railway=station"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:railway=station"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=station"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:railway=station"/>
                <label text="Edit Station" text_context="railway"/>
                <space/>
                <key key="railway" value="station"/>
                <optional>
                    <text key="name" text="Name"/>
                    <text key="uic_ref" text="UIC-Reference"/>
                </optional>
            </item>
            <item name="Railway Halt" icon="presets/station.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=halt"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=halt"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=halt"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:railway=halt"/>
                <label text="Edit Halt"/>
                <space/>
                <key key="railway" value="halt"/>
                <optional>
                    <text key="name" text="Name"/>
                </optional>
            </item>
            <item name="Tram Stop" icon="presets/tram.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=tram_stop"
                       de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=tram_stop"
                       pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=tram_stop"/>
                <label text="Edit Tram Stop"/>
                <space/>
                <key key="railway" value="tram_stop"/>
                <optional>
                    <text key="name" text="Name"/>
                </optional>
            </item>
            <item name="Railway Platform" icon="presets/platform_rail.png" type="way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:railway=platform"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:railway=platform"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:railway=platform"/>
                <label text="Edit Railway Platform"/>
                <key key="railway" value="platform"/>
                <space/>
                <text key="ref" text="Reference (track number)"/>
                <text key="width" text="Width (meters)" length="7"/>
                <check key="area" text="Area" default="off"/>
            </item>
            <separator/>
            <item name="Bus Station" icon="presets/bus.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bus_station"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bus_station"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bus_station"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bus_station"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bus_station"/>
                <label text="Edit Bus Station"/>
                <key key="amenity" value="bus_station"/>
                <optional>
                    <text key="name" text="Name"/>
                </optional>
            </item>
            <item name="Bus Stop" icon="presets/bus_small.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=bus_stop"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=bus_stop"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:highway=bus_stop"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=bus_stop"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=bus_stop"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=bus_stop"/>
                <label text="Edit Bus Stop"/>
                <space/>
                <key key="highway" value="bus_stop"/>
                <optional>
                    <text key="name" text="Name"/>
                    <check key="shelter" text="Shelter"/>
                    <check key="bench" text="Bench"/>
                    <check key="tactile_paving" text="Tactile Paving"/>

                </optional>
            </item>
            <item name="Bus Platform" icon="presets/platform_bus.png" type="node,way,closedway">
                <label text="Edit Bus Platform"/>
                <key key="highway" value="platform"/>
                <space/>
                <text key="ref" text="Reference (track number)"/>
                <text key="width" text="Width (meters)" length="7"/>
                <check key="area" text="Area" default="off"/>
            </item>
        </group>
        <!-- Public Transport -->
        <item name="Taxi" icon="presets/taxi.png" type="node,closedway">
            <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=taxi"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=taxi"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=taxi"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=taxi"/>
            <label text="Edit Taxi station"/>
            <key key="amenity" value="taxi"/>
            <text key="name" text="Name"/>
        </item>
        <separator/>
        <group name="Airport" icon="presets/plane.png">
            <item name="Airport Ground" icon="presets/plane.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=aerodrome"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=aerodrome"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=aerodrome"/>
                <label text="Edit Airport Ground"/>
                <key key="aeroway" value="aerodrome"/>
                <text key="name" text="Name"/>
                <optional>
                    <text key="iata" text="IATA"/>
                    <text key="icao" text="ICAO"/>
                    <text key="wikipedia" text="Wikipedia"/>
                    <space/>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                </optional>
            </item>
            <separator/>
            <item name="Runway" icon="presets/runway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=runway"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:aeroway=runway"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=runway"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=runway"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=runway"/>
                <label text="Edit Runway"/>
                <key key="aeroway" value="runway"/>
                <optional>
                    <text key="ref" text="Reference"/>
                </optional>
            </item>
            <item name="Taxiway" icon="presets/taxiway.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=taxiway"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=taxiway"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=taxiway"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=taxiway"/>
                <label text="Edit Taxiway"/>
                <key key="aeroway" value="taxiway"/>
                <optional>
                    <text key="ref" text="Reference"/>
                </optional>
            </item>
            <item name="Helipad" icon="styles/standard/transport/airport/helipad.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=helipad"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=helipad"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=helipad"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=helipad"/>
                <label text="Edit Helipad"/>
                <key key="aeroway" value="helipad"/>
                <optional>
                    <text key="ref" text="Reference"/>
                </optional>
            </item>
            <item name="Apron" icon="presets/apron.png" type="closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=apron"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=apron"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=apron"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=apron"/>
                <label text="Apron"/>
                <key key="aeroway" value="apron"/>
            </item>
            <item name="Hangar" icon="presets/hangar.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=hangar"/>
                <label text="Hangar"/>
                <key key="building" value="hangar"/>
            </item>
            <item name="Beacon" icon="styles/standard/misc/landmark/beacon.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=beacon"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=beacon"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=beacon"/>
                <label text="Beacon"/>
                <key key="man_made" value="beacon"/>
            </item>
            <item name="Windsock" icon="styles/standard/transport/airport/windsock.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=windsock"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=windsock"/>
                <label text="Windsock"/>
                <key key="aeroway" value="windsock"/>
            </item>
            <separator/>
            <item name="Terminal" icon="styles/standard/transport/airport/terminal.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=terminal"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:aeroway=terminal"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=terminal"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=terminal"/>
                <label text="Edit Terminal"/>
                <key key="aeroway" value="terminal"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Gate" name_context="airport" icon="presets/aeroway_gate.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:aeroway=gate"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:aeroway=gate"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:aeroway=gate"/>
                <label text="Edit Terminal Gate"/>
                <key key="aeroway" value="gate"/>
                <text key="ref" text="Reference"/>
            </item>
        </group>
        <!-- Aeroway -->
    </group>
    <group name="Facilities" icon="presets/bed.png">
        <group name="Accommodation" icon="presets/bed.png">
            <item name="Hotel" icon="presets/bed.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=hotel"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:tourism=hotel"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=hotel"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=hotel"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=hotel"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=hotel"/>
                <label text="Edit Hotel"/>
                <key key="tourism" value="hotel"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Motel" icon="styles/standard/accommodation/motel.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=motel"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:tourism=motel"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=motel"/>
                <label text="Edit Motel"/>
                <key key="tourism" value="motel"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Guest House" icon="styles/standard/accommodation/guest_house.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=guest_house"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=guest_house"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=guest_house"/>
                <label text="Edit Guest House"/>
                <key key="tourism" value="guest_house"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Chalet" icon="styles/standard/accommodation/chalet.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=chalet"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:tourism=chalet"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=chalet"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=chalet"/>
                <label text="Edit Chalet"/>
                <key key="tourism" value="chalet"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Hostel" icon="presets/hostel.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=hostel"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=hostel"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=hostel"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=hostel"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=hostel"/>
                <label text="Edit Hostel"/>
                <key key="tourism" value="hostel"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Alpine Hut" icon="styles/standard/accommodation/alpine_hut.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=alpine_hut"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=alpine_hut"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:tourism=alpine_hut"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=alpine_hut"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=alpine_hut"/>
                <label text="Edit Alpine Hut"/>
                <key key="tourism" value="alpine_hut"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <text key="ele" text="Elevation"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <separator/>
            <item name="Caravan Site" icon="presets/caravan2.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=caravan_site"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=caravan_site"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=caravan_site"/>
                <label text="Edit Caravan Site"/>
                <key key="tourism" value="caravan_site"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="capacity" text="Number of places"/>
                <combo key="fee" text="Requires a fee" values="yes,no,interval"/>
                <check key="power_supply" text="Power supply" default="off"/>
                <check key="tents" text="Tents allowed" default="off"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Camping Site" icon="presets/tent.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=camp_site"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=camp_site"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:tourism=camp_site"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=camp_site"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=camp_site"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=camp_site"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=camp_site"/>
                <label text="Edit Camping Site"/>
                <key key="tourism" value="camp_site"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
        </group>
        <!-- Accomodation -->
        <group name="Food+Drinks" icon="presets/restaurant.png">
            <item name="Restaurant" icon="presets/restaurant.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=restaurant"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=restaurant"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=restaurant"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=restaurant"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=restaurant"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=restaurant"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=restaurant"/>
                <label text="Edit Restaurant"/>
                <key key="amenity" value="restaurant"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <multiselect key="cuisine" text="Cuisine" values="italian;chinese;pizza;burger;greek;german;indian;regional;kebab;turkish;asian;thai;mexican;japanese;french;sandwich;sushi"/>
                <check key="microbrewery" text="Microbrewery" default="off"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <combo key="stars" text="Stars" values="1,2,3,4,5,6,7"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Fast Food" icon="presets/fastfood.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fast_food"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=fast_food"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=fast_food"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=fast_food"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=fast_food"/>
                <label text="Edit Fast Food Restaurant"/>
                <key key="amenity" value="fast_food"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="cuisine" text="Cuisine" values="italian,chinese,pizza,burger,greek,german,indian,regional,kebab,turkish,asian,thai,mexican,japanese,french,sandwich,sushi,fish_and_chips,chicken"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Food Court" icon="presets/fastfood.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=food_court"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=food_court"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=food_court"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=food_court"/>
                <label text="Edit Food Court"/>
                <key key="amenity" value="food_court"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Cafe" icon="presets/cafe.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=cafe"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=cafe"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=cafe"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=cafe"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=cafe"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=cafe"
                      zh_CN.href="http://wiki.openstreetmap.org/wiki/Zh-hans:Tag:amenity=cafe"/>
                <label text="Edit Cafe"/>
                <key key="amenity" value="cafe"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="cuisine" text="Cuisine" values="ice_cream"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Pub" icon="presets/pub.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=pub"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=pub"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=pub"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=pub"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=pub"/>
                <label text="Edit Pub"/>
                <key key="amenity" value="pub"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <check key="microbrewery" text="Microbrewery" default="off"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Biergarten" icon="presets/biergarten.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=biergarten"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=biergarten"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=biergarten"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=biergarten"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=biergarten"/>
                <label text="Edit Biergarten"/>
                <key key="amenity" value="biergarten"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <check key="microbrewery" text="Microbrewery" default="off"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Bar" icon="presets/bar.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bar"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bar"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=bar"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=bar"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bar"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bar"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bar"
                      zh_CN.href="http://wiki.openstreetmap.org/wiki/Zh-hans:Tag:amenity=bar"/>
                <label text="Edit Bar"/>
                <key key="amenity" value="bar"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Nightclub" icon="presets/bar.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=nightclub"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=nightclub"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=nightclub"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=nightclub"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=nightclub"
                      ro.href="http://wiki.openstreetmap.org/wiki/Ro:Tag:amenity=nightclub"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=nightclub"/>
                <label text="Edit Nightclub"/>
                <key key="amenity" value="nightclub"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Stripclub" icon="styles/standard/leisure/stripclub.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=stripclub"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=stripclub"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=stripclub"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=stripclub"/>
                <label text="Edit Stripclub"/>
                <space/>
                <key key="amenity" value="stripclub"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
                <space/>
                <combo key="internet_access" text="Internet access" values="yes,wlan,wired,terminal,no"/>
                <combo key="internet_access:fee" text="Internet access fee" values="yes,no"/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
        </group>
        <!-- Food+Drinks -->
        <group name="Tourism" icon="presets/sightseeing.png">
            <item name="Attraction" icon="presets/sightseeing.png" type="node,closedway">
                <label text="Edit Attraction"/>
                <key key="tourism" value="attraction"/>
                <text key="name" text="Name"/>
                <text key="opening_hours" text="Opening Hours"/>
            </item>
            <item name="Viewpoint" icon="presets/viewpoint.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=viewpoint"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=viewpoint"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=viewpoint"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=viewpoint"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=viewpoint"/>
                <label text="Edit Viewpoint"/>
                <key key="tourism" value="viewpoint"/>
                <text key="name" text="Name"/>
                <!--<check key="man_made" value="tower" text="Look-Out Tower" default="off"/>-->
            </item>
            <separator/>
            <item name="Information Office" icon="presets/informationoffice.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Key:information"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:information"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:information"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:information"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:information"/>
                <key key="tourism" value="information"/>
                <key key="information" value="office"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Map" icon="presets/map.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Key:information"/>
                <key key="tourism" value="information"/>
                <key key="information" value="map"/>
                <text key="name" text="Name"/>
                <combo key="map_type" text="Detail Grade" values="topo,street,scheme"/>
                <combo key="map_size" text="Shown Area" values="site,city,region"/>
                <text key="description" text="Closer Description"/>
                <space/>
                <label text="Routes shown for:"/>
                <check key="hiking" text="Hiking" default="off"/>
                <check key="bicycle" text="Cycling" default="off"/>
                <check key="mtb" text="Mountainbiking" default="off"/>
                <check key="ski" text="Skiing" default="off"/>
                <check key="horse" text="Riding" default="off"/>
                <label text="... other transportation modes possible"/>
            </item>
            <item name="Information Board" icon="presets/board.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:information=board"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Proposed_features/information"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Proposed_features/information"/>
                <key key="tourism" value="information"/>
                <key key="information" value="board"/>
                <text key="name" text="Name"/>
                <combo key="board_type" text="Board Content" values="notice,history,nature,wildlife,plants" default="board"/>
                <text key="description" text="Closer Description"/>
            </item>
            <item name="Guidepost" icon="presets/guidepost.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:information=guidepost"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:information=guidepost"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:information=guidepost"/>
                <key key="tourism" value="information"/>
                <key key="information" value="guidepost"/>
                <text key="name" text="Name"/>
                <text key="ele" text="Elevation"/>
                <space/>
                <label text="Routes shown for:"/>
                <check key="hiking" text="Hiking" default="off"/>
                <check key="bicycle" text="Cycling" default="off"/>
                <check key="mtb" text="Mountainbiking" default="off"/>
                <check key="ski" text="Skiing" default="off"/>
                <check key="horse" text="Riding" default="off"/>
                <label text="... other transportation modes possible"/>
            </item>
            <item name="Information Terminal" icon="presets/information.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Key:information"/>
                <key key="tourism" value="information"/>
                <key key="information" value="terminal"/>
                <text key="name" text="Name"/>
                <text key="description" text="Closer description"/>
                <text key="operator" text="Operator"/>
                <text key="ref" text="Reference number"/>
                <combo key="fee" text="Fee" values="yes,no"/>
            </item>
            <item name="Audioguide" icon="presets/information.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Key:information"/>
                <key key="tourism" value="information"/>
                <key key="information" value="audioguide"/>
                <text key="name" text="Name"/>
                <text key="description" text="Closer description"/>
                <text key="operator" text="Operator"/>
                <text key="ref" text="Reference number"/>
                <combo key="fee" text="Fee" values="yes,no"/>
                <space/>
                <label text="Audioguide via mobile phone?"/>
                <text key="phone" text="Phone number"/>
            </item>
            <item name="Other Information Points" icon="presets/information.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=information"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=information"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=information"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=information"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=information"/>
                <key key="tourism" value="information"/>
                <text key="name" text="Name"/>
                <text key="description" text="Closer Description"/>
            </item>
        </group>
        <!-- Tourism -->
        <group name="Leisure" icon="presets/theme_park.png">
            <item name="Cinema" icon="presets/cinema.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=cinema"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=cinema"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=cinema"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=cinema"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=cinema"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=cinema"/>
                <label text="Edit Cinema"/>
                <key key="amenity" value="cinema"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Zoo" icon="presets/zoo.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=zoo"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:tourism=zoo"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=zoo"/>
                <label text="Edit Zoo"/>
                <key key="tourism" value="zoo"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <text key="wikipedia" text="Wikipedia"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Dog Park" icon="presets/dogpark.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=dog_park"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:leisure=dog_park"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:leisure=dog_park"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:leisure=dog_park"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:leisure=dog_park"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:leisure=dog_park"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=dog_park"
                      sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:leisure=dog_park"/>
                <label text="Edit Dog Park"/>
                <key key="leisure" value="dog_park"/>
                <text key="name" text="Name"/>
                <check key="area" text="Area" default="off"/>
                <combo key="barrier" text="Barrier" values="fence,wall"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <check key="lit" text="Lit" default="off"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Theme Park" icon="presets/theme_park.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=theme_park"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=theme_park"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=theme_park"/>
                <label text="Edit Theme Park"/>
                <key key="tourism" value="theme_park"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Water Park" icon="presets/swimming.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=water_park"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:leisure=water_park"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:leisure=water_park"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:leisure=water_park"
                      pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:leisure=water_park"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisurem=water_park"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:leisure=water_park"/>
                <label text="Edit Water Park"/>
                <key key="leisure" value="water_park"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Sauna" de.name="Sauna" icon="presets/sauna.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=sauna"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=sauna"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=sauna"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=sauna"/>
                <label text="Edit Sauna"/>
                <key key="leisure" value="sauna"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
                <combo key="access" text="Access" values="yes,permissive,private,unknown"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Horse riding" icon="presets/equestrian.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=horse_riding"/>
                <label text="Edit Horse riding"/>
                <key key="leisure" value="horse_riding"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
                <text key="fee" text="Fee"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <item name="Brothel" de.name="Bordell" icon="styles/standard/leisure/stripclub.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=brothel"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=brothel"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=brothel"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=brothel"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=brothel"/>
                <label text="Edit Brothel"/>
                <key key="amenity" value="brothel"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
                <space/>
                <combo key="smoking" text="Smoking" values="yes,dedicated,separated,isolated,no"/>
                <check key="wheelchair" text="Wheelchairs"/>
                <space/>
                <text key="phone" text="Phone Number"/>
                <text key="fax" text="Fax Number"/>
                <text key="website" text="Website"/>
                <text key="email" text="Email Address"/>
            </item>
            <separator/>
            <item name="Playground" icon="styles/standard/leisure/playground.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=playground"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:leisure=playground"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:leisure=playground"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:leisure=playground"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:leisure=playground"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:leisure=playground"
                      pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:leisure=playground"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=playground"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:leisure=playground"/>
                <label text="Edit Playground"/>
                <key key="leisure" value="playground"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Picnic Site" icon="presets/picnic.png" type="node,closedway">
                <label text="Edit Picnic Site"/>
                <key key="tourism" value="picnic_site"/>
                <text key="name" text="Name"/>
                <check key="fireplace" text="Fireplace" default="off"/>
            </item>
            <item name="Public Grill" icon="presets/bbq.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bbq"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bbq"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bbq"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bbq"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bbq"/>
                <label text="Edit Public Grill"/>
                <space/>
                <key key="amenity" value="bbq"/>
                <text key="name" text="Name"/>
                <check key="covered" text="Covered"/>
                <combo key="fuel" text="Fuel" text_context="grill" values="charcoal,electric,wood"/>
            </item>
            <item name="Fishing" icon="presets/fishing.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=fishing"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:leisure=fishing"
                      pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:leisure=fishing"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=fishing"/>
                <label text="Edit Fishing"/>
                <key key="leisure" value="fishing"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Private Swimming Pool" icon="presets/swimming.png" type="node,closedway">
                <key key="leisure" value="swimming_pool"/>
                <key key="access" value="private"/>
            </item>
        </group>
        <!-- Leisure -->
        <group name="Culture" icon="presets/theater.png">
            <item name="Museum" icon="presets/State_Public.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=museum"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:tourism=museum"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=museum"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:tourism=museum"/>
                <label text="Edit Museum"/>
                <key key="tourism" value="museum"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="Theatre" icon="presets/theater.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=theatre"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=theatre"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=theatre"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=theatre"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=theatre"/>
                <label text="Edit Theatre"/>
                <key key="amenity" value="theatre"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
            </item>
            <item name="Library" icon="styles/standard/shop/rental/library.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=library"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=library"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=library"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=library"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=library"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=library"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=library"/>
                <label text="Edit Library"/>
                <key key="amenity" value="library"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Arts Centre" icon="presets/arts_centre.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=arts_centre"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=arts_centre"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=arts_centre"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=arts_centre"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=arts_centre"/>
                <label text="Edit Arts Centre"/>
                <key key="amenity" value="arts_centre"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Artwork" icon="presets/arts_centre.png" type="node,way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:tourism=artwork"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:tourism=artwork"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:tourism=artwork"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:tourism=artwork"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:tourism=artwork"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:tourism=artwork"/>
                <label text="Edit Artwork"/>
                <key key="tourism" value="artwork"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Place of Worship" icon="presets/church.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=place_of_worship"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:amenity=place_of_worship"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=place_of_worship"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=place_of_worship"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=place_of_worship"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=place_of_worship"
                      no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=place_of_worship"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=place_of_worship"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=place_of_worship"
                      sv.href="http://wiki.openstreetmap.org/wiki/Sv:Tag:amenity=place_of_worship"/>
                <label text="Edit Place of Worship"/>
                <key key="amenity" value="place_of_worship"/>
                <text key="name" text="Name"/>
                <combo key="religion" text="Religion" values="animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
                <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
                <combo key="service_times" text="Service Times" values="Su 10:00,Su 10:30,Su 11:00"/>
                <combo key="opening_hours" text="Opening Hours for visiting" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Recording Studio" icon="presets/studio.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=studio"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=studio"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=studio"/>
                <label text="Edit Studio"/>
                <space/>
                <key key="amenity" value="studio"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="type" text="Type" values="audio,video"/>
                <text key="phone" text="Phone Number"/>
                <text key="website" text="Website"/>
            </item>
        </group>
        <!-- Culture -->
        <group name="Public Building" icon="presets/townhall.png">
            <item name="Public Building" icon="styles/standard/service.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=public_building"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=public_building"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=public_building"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=public_building"/>
                <label text="Edit Public Building"/>
                <key key="amenity" value="public_building"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Town hall" icon="presets/townhall.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=townhall"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=townhall"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=townhall"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=townhall"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=townhall"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=townhall"/>
                <label text="Edit Town hall"/>
                <key key="amenity" value="townhall"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Community Centre" icon="presets/community_centre.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=community_centre"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:amenity=community_centre"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=community_centre"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=community_centre"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=community_centre"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=community_centre"/>
                <label text="Community Centre"/>
                <space/>
                <key key="amenity" value="community_centre"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Embassy" icon="presets/embassy.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=embassy"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=embassy"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=embassy"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=embassy"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=embassy"/>
                <label text="Edit Embassy"/>
                <key key="amenity" value="embassy"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Courthouse" icon="presets/JusticeScales.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=courthouse"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=courthouse"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=courthouse"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=courthouse"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=courthouse"/>
                <label text="Edit Courthouse"/>
                <key key="amenity" value="courthouse"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Prison" icon="presets/prison.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=prison"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=prison"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=prison"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=prison"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=prison"/>
                <label text="Edit Prison"/>
                <key key="amenity" value="prison"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Police" icon="styles/standard/service/police.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=police"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=police"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=police"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=police"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=police"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=police"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=police"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=police"/>
                <label text="Edit Police"/>
                <key key="amenity" value="police"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Fire Station" icon="presets/firebrigade.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fire_station"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=fire_station"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=fire_station"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=fire_station"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=fire_station"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=fire_station"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=fire_station"/>
                <label text="Edit Fire Station"/>
                <key key="amenity" value="fire_station"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Post Office" icon="styles/standard/service/post_office.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=post_office"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=post_office"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=post_office"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=post_office"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=post_office"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=post_office"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=post_office"/>
                <label text="Edit Post Office"/>
                <key key="amenity" value="post_office"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
            </item>
        </group>
        <!-- Public Buildings -->
        <group name="Education" icon="presets/school.png">
            <item name="Kindergarten" icon="presets/kindergarten.png" type="node,closedway,relation">
                <label text="Edit Kindergarten"/>
                <key key="amenity" value="kindergarten"/>
                <text key="name" text="Name"/>
            </item>
            <item name="School" icon="presets/school.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=school"
                      ar.href="http://wiki.openstreetmap.org/wiki/Ar:Tag:amenity=school"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=school"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=school"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=school"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=school"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:amenity=school"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=school"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=school"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=school"/>
                <label text="Edit School"/>
                <key key="amenity" value="school"/>
                <text key="name" text="Name"/>
            </item>
            <item name="University" icon="styles/standard/education/university.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=university"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=university"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=university"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=university"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=university"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=university"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=university"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=university"/>
                <label text="Edit University"/>
                <key key="amenity" value="university"/>
                <text key="name" text="Name"/>
            </item>
            <item name="College" icon="styles/standard/education/college.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=college"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=college"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=college"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=college"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=college"/>
                <label text="Edit College"/>
                <key key="amenity" value="college"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Driving School" icon="styles/standard/education/driving_school.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/driving_school"/>
                <label text="Edit Driving School"/>
                <space/>
                <key key="amenity" value="driving_school"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <text key="license_classes" text="License Classes" values="A1;A;B;BE;C"/>
            </item>
        </group>
        <!-- Education -->
        <group name="Health" icon="presets/pharmacy.png">
            <item name="Hospital" icon="styles/standard/health/hospital.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=hospital"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=hospital"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=hospital"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=hospital"
                      pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:amenity=hospital"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=hospital"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=hospital"/>
                <label text="Edit Hospital"/>
                <key key="amenity" value="hospital"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Clinic" icon="styles/standard/health/hospital.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=clinic"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=clinic"/>
                <label text="Edit Clinic"/>
                <key key="amenity" value="clinic"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Doctors" icon="styles/standard/health/doctor.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=doctors"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=doctors"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=doctors"/>
                <label text="Edit Doctors"/>
                <key key="amenity" value="doctors"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Dentist" icon="styles/standard/health/dentist.png" type="node,closedway">
                <label text="Edit Dentist"/>
                <key key="amenity" value="dentist"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Nursing Home" type="node,closedway">
                <label text="Edit Nursing Home"/>
                <key key="amenity" value="nursing_home"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
            </item>
            <item name="Retirement Home" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Key:social_facility"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:social_facility"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:social_facility"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:social_facility"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:social_facility"/>
                <label text="Edit Retirement Home"/>
                <key key="amenity" value="social_facility"/>
                <key key="social_facility" value="group_home"/>
                <key key="social_facility:for" value="senior"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <text key="capacity" text="Capacity"/>
            </item>
            <separator/>
            <item name="Pharmacy" icon="presets/pharmacy.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=pharmacy"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=pharmacy"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=pharmacy"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=pharmacy"
                      no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=pharmacy"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=pharmacy"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=pharmacy"/>
                <label text="Edit Pharmacy"/>
                <key key="amenity" value="pharmacy"/>
                <check key="dispensing" text="Dispensing" default="off"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Hearing Aids" icon="presets/hearing_aids.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=hearing_aids"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=hearing_aids"/>
                <label text="Edit Hearing Aids"/>
                <space/>
                <key key="shop" value="hearing_aids"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Baby Hatch" icon="presets/baby_hatch.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=baby_hatch"
                      cs.href="http://wiki.openstreetmap.org/wiki/CS:Tag:amenity=baby_hatch"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=baby_hatch"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=baby_hatch"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=baby_hatch"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=baby_hatch"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=baby_hatch"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=baby_hatch"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:amenity=baby_hatch"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=baby_hatch"/>
                <label text="Edit Baby Hatch"/>
                <key key="amenity" value="baby_hatch"/>
                <text key="operator" text="Operator"/>
                <text key="opening_hours" text="Opening Hours"/>
            </item>
            <separator/>
            <item name="Emergency Access Point" icon="styles/standard/service/emergency_access_point.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=emergency_access_point"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=emergency_access_point"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:highway=emergency_access_point"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=emergency_access_point"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:highway=emergency_access_point"/>
                <label text="Edit Emergency Access Point"/>
                <space/>
                <key key="highway" value="emergency_access_point"/>
                <text key="ref" text="Point Number"/>
                <text key="name" text="Point Name"/>
                <text key="operator" text="Operator"/>
                <text key="phone" text="Phone Number"/>
                <label text="(Use international code, like +12-345-67890)"/>
                <space/>
            </item>
            <separator/>
            <item name="Veterinary" icon="styles/standard/health/veterinary.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=veterinary"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:amenity=veterinary"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=veterinary"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=veterinary"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=veterinary"/>
                <label text="Edit Veterinary"/>
                <key key="amenity" value="veterinary"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
        </group>
        <!-- Health -->
        <group name="Facilities" icon="presets/telephone.png">
            <item name="Toilets" icon="presets/toilet.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=toilets"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=toilets"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=toilets"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=toilets"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=toilets"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=toilets"/>
                <key key="amenity" value="toilets"/>
                <text key="operator" text="Operator"/>
                <text key="ref" text="Reference number"/>
                <combo key="fee" text="Fee" values="yes,no"/>
                <combo key="wheelchair" text="Wheelchair" values="no,limited,yes"/>
                <text key="note" text="Note"/>
            </item>
            <item name="Post Box" icon="styles/standard/service/post_box.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=post_box"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=post_box"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=post_box"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=post_box"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=post_box"/>
                <key key="amenity" value="post_box"/>
                <text key="operator" text="Operator"/>
            </item>
            <item name="Telephone" icon="presets/telephone.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=telephone"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=telephone"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=telephone"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=telephone"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=telephone"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=telephone"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=telephone"/>
                <label text="Edit Telephone"/>
                <key key="amenity" value="telephone"/>
                <text key="operator" text="Operator"/>
                <check key="payment:coins" text="Coins" default="off"/>
                <check key="payment:notes" text="Notes" default="off"/>
                <check key="payment:electronic_purses" text="Electronic purses and Charge cards" default="off"/>
                <check key="payment:debit_cards" text="Debit cards" default="off"/>
                <check key="payment:credit_cards" text="Credit cards" default="off"/>
                <check key="payment:telephone_cards" text="Telephone cards" default="off"/>
            </item>
            <item name="Clock" icon="styles/standard/service/clock.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=clock"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=clock"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=clock"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=clock"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=clock"/>
                <label text="Edit Clock"/>
                <key key="amenity" value="clock"/>
                <optional>
                    <combo key="display" text="Display" values="analog,digital,sundial,unorthodox" values_context="display"/>
                    <combo key="support" text="Support" values="pole,wall_mounted,billboard,ground"/>
                    <combo key="visibility" text="Visibility/readability" values="house,street,area" display_values="house (up to 5m),street (up to 20m),area (more than 20m)"/>
                    <check key="date" text="Shows current date" default="off"/>
                    <check key="thermometer" text="Shows temperature" default="off"/>
                    <check key="barometer" text="Shows barometric pressure" default="off"/>
                    <check key="hygrometer" text="Shows humidity" default="off"/>
                </optional>
            </item>
            <item name="Recycling" icon="presets/recycling.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=recycling"
                       de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=recycling"
                       es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=recycling"
                       fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=recycling"
                       fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=recycling"
                       it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=recycling"
                       ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=recycling"
                       pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=recycling"/>
                <label text="Edit Recycling station"/>
                <key key="amenity" value="recycling"/>
                <check key="recycling:batteries" text="Batteries" default="off"/>
                <check key="recycling:cans" text="Cans" default="off"/>
                <check key="recycling:clothes" text="Clothes" default="off"/>
                <check key="recycling:glass" text="Glass" default="off"/>
                <check key="recycling:paper" text="Paper" default="off"/>
                <check key="recycling:scrap_metal" text="Scrap Metal" default="off"/>
                <combo key="recycling_type" text="Type" values="container,centre"/>
            </item>
            <item name="Waste Basket" icon="styles/standard/service/recycling/trash-bin.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=waste_basket"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=waste_basket"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=waste_basket"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=waste_basket"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=waste_basket"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=waste_basket"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=waste_basket"/>
                <label text="Edit Waste Basket"/>
                <key key="amenity" value="waste_basket"/>
            </item>
            <item name="Waste Disposal" icon="styles/standard/service/recycling/waste_disposal.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=waste_disposal"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=waste_disposal"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:amenity=waste_disposal"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=waste_disposal"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=waste_disposal"/>
                <label text="Edit Waste Disposal"/>
                <key key="amenity" value="waste_disposal"/>
            </item>
            <separator/>
            <item name="Bench" icon="presets/bench.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bench"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bench"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=bench"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bench"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bench"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bench"/>
                <key key="amenity" value="bench"/>
                <check key="backrest" text="Backrest"/>
                <combo key="material" text="Material" values="stone,metal,wood,plastic"/>
                <combo key="colour" text="Color (HTML name or hexadecimal code)" values_context="color" values="black,brown,green,red,blue,gray,white,#CD853F"/>
                <combo key="seats" text="Amount of Seats" values="2,3,4,5,6,7,8,9,10"/>
            </item>
            <item name="Shelter" icon="presets/shelter.png" type="node,closedway">
                <label text="Edit Shelter"/>
                <key key="amenity" value="shelter"/>
                <text key="name" text="Name"/>
                <check key="fireplace" text="Fireplace" default="off"/>
                <combo key="shelter_type" text="Type of shelter" values="weather_shelter,public_transport,picnic_shelter,wildlife_hide" values_context="shelter"/>
            </item>
            <item name="Hunting Stand" icon="presets/hunting_stand.png" type="node">
                <label text="Edit Hunting Stand"/>
                <key key="amenity" value="hunting_stand"/>
                <combo key="height" text="Height" values="low,half,full,5,10,15,20"/>
                <check key="shelter" text="Shelter"/>
                <check key="hide" text="Hide"/>
                <check key="lock" text="Lock"/>
            </item>
            <separator/>
            <item name="Drinking Water" icon="presets/drinking_water.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=drinking_water"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=drinking_water"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=drinking_water"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=drinking_water"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=drinking_water"/>
                <label text="Edit Drinking Water"/>
                <key key="amenity" value="drinking_water"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Fire Hydrant" icon="presets/fire_hydrant.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:emergency=fire_hydrant"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:emergency=fire_hydrant"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:emergency=fire_hydrant"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:emergency=fire_hydrant"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:emergency=fire_hydrant"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:emergency=fire_hydrant"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:emergency=fire_hydrant"/>
                <label text="Edit Fire Hydrant"/>
                <key key="emergency" value="fire_hydrant"/>
                <combo key="fire_hydrant:type" text="Type" values="underground,pillar,wall,pond" values_context="pipeline" default="pillar"/>
                <combo key="fire_hydrant:diameter" text="Diameter (in mm)" values="50,80,100,150,200,250,300,400"/>
                <space/>
                <text key="name" text="Name"/>
                <text key="ref" text="Reference"/>
                <text key="operator" text="Operator"/>
                <space/>
                <combo key="fire_hydrant:position" text="Position" values_context="hydrant position" values="lane,parking_lot,sidewalk,green"/>
                <combo key="fire_hydrant:pressure" text="Pressure (in bar)" values="5,6,8,suction"/>
                <text key="fire_hydrant:count" text="Count" values=""/>
            </item>
        </group>
        <!-- Facilities -->
    </group>
    <!-- Facilities -->
    <group name="Sports" icon="presets/soccer.png">
        <group name="Sport Facilities" icon="presets/stadium.png">
            <item name="Stadium" icon="presets/stadium.png" type="node,closedway">
                <label text="Edit Stadium"/>
                <key key="leisure" value="stadium"/>
                <text key="name" text="Name"/>
                <space/>
                <label text="select sport:"/>
                <space/>
                <multiselect key="sport" text="sport" values="multi;archery;athletics;american_football;australian_football;baseball;basketball;boules;bowls;canadian_football;canoe;climbing;cricket;cricket_nets;croquet;cycling;dog_racing;equestrian;gaelic_games;golf;gymnastics;hockey;horse_racing;motor;pelota;racquet;rugby_league;rugby_union;shooting;skateboard;skating;skiing;soccer;swimming;table_tennis;tennis"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Sports Centre" icon="presets/sports_centre.png" type="node,closedway">
                <label text="Edit Sports Centre"/>
                <key key="leisure" value="sports_centre"/>
                <text key="name" text="Name"/>
                <space/>
                <label text="select sport:"/>
                <multiselect rows="4" key="sport" text="sport" values="multi;archery;athletics;american_football;australian_football;baseball;basketball;boules;bowls;canadian_football;canoe;climbing;cricket;cricket_nets;croquet;cycling;dog_racing;equestrian;gaelic_games;golf;gymnastics;hockey;horse_racing;motor;pelota;racquet;rugby_league;rugby_union;shooting;skateboard;skating;skiing;soccer;swimming;table_tennis;tennis"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Pitch" icon="presets/pitch.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=pitch"/>
                <!-- http://commons.wikimedia.org/wiki/Category:SVG_sport_field_diagrams -->
                <label text="Edit Pitch"/>
                <key key="leisure" value="pitch"/>
                <text key="name" text="Name"/>
                <space/>
                <label text="select sport:"/>
                <combo key="sport" text="sport">
                    <list_entry value="multi"/>
                    <list_entry value="archery" icon="presets/archery"/>
                    <list_entry value="athletics" icon="presets/pitch/athletics"/>
                    <list_entry value="american_football" icon="presets/pitch/american_football"/>
                    <list_entry value="australian_football" icon="presets/pitch/australian_football"/>
                    <list_entry value="baseball" icon="presets/pitch/baseball"/>
                    <list_entry value="basketball" icon="presets/pitch/basketball"/>
                    <list_entry value="boules" icon="presets/boules"/>
                    <list_entry value="bowls" icon="presets/bowls"/>
                    <list_entry value="canadian_football" icon="presets/pitch/american_football"/>
                    <list_entry value="canoe" icon="presets/canoe"/>
                    <list_entry value="climbing" icon="presets/climbing"/>
                    <list_entry value="cricket" icon="presets/pitch/cricket_field"/>
                    <list_entry value="cricket_nets" icon="presets/pitch/cricket"/>
                    <list_entry value="croquet" icon="presets/pitch/croquet"/>
                    <list_entry value="cycling" icon="presets/cycling"/>
                    <list_entry value="dog_racing" icon="presets/pitch/dog_racing"/>
                    <list_entry value="equestrian" icon="presets/equestrian"/>
                    <list_entry value="gaelic_games"/>
                    <list_entry value="golf" icon="presets/pitch/golf"/>
                    <list_entry value="gymnastics" icon="presets/pitch/gymnastics"/>
                    <list_entry value="hockey" icon="presets/pitch/horse_racing"/>
                    <list_entry value="motor" icon="presets/motor"/>
                    <list_entry value="netball" icon="presets/pitch/netball"/>
                    <list_entry value="pelota" icon="presets/pitch/pelota"/>
                    <list_entry value="racquet" icon="presets/pitch/racquet"/>
                    <list_entry value="rugby_league" icon="presets/pitch/rugby_league"/>
                    <list_entry value="rugby_union" icon="presets/pitch/rugby_union"/>
                    <list_entry value="shooting" icon="presets/shooting"/>
                    <list_entry value="skateboard" icon="presets/skateboard"/>
                    <list_entry value="skating" icon="presets/skating"/>
                    <list_entry value="skiing" icon="presets/skiing_downhill"/>
                    <list_entry value="soccer" icon="presets/pitch/soccer"/>
                    <list_entry value="speedway_track" icon="presets/pitch/speedway_track_tr"/>
                    <list_entry value="table_tennis" icon="presets/pitch/table_tennis"/>
                    <list_entry value="tchoukball" icon="presets/pitch/tchoukball"/>
                    <list_entry value="tennis" icon="presets/pitch/tennis"/>
                </combo>
				<check key="covered" text="Covered" default="off"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Racetrack" icon="presets/stadium.png" type="node,way,closedway,relation">
                <label text="Edit Racetrack"/>
                <key key="leisure" value="track"/>
                <text key="name" text="Name"/>
                <space/>
                <label text="select sport:"/>
                <space/>
                <combo key="sport" text="sport" values="multi,archery,athletics,boules,bowls,canadian_football,canoe,climbing,cycling,dog_racing,equestrian,gaelic_games,golf,gymnastics,horse_racing,motor,pelota,racquet,shooting,skateboard,skating,skiing"/>
                <!-- TODO only race-->
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Golf Course" icon="presets/golf.png" type="node,closedway">
                <label text="Edit Golf Course"/>
                <key key="leisure" value="golf_course"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Miniature Golf" icon="presets/golf.png" type="node,closedway">
                <label text="Edit Miniature Golf"/>
                <key key="leisure" value="miniature_golf"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
        </group>
        <!-- Sport facilities -->
        <group name="Sport" icon="presets/rowing.png">
            <item name="Multi" icon="styles/standard/sport/multi.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=multi"/>
                <label text="Edit Multi"/>
                <key key="sport" value="multi"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
            </item>
            <item name="9pin" icon="styles/standard/sport/10pin.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=9pin"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:sport=9pin"/>
                <label text="Edit 9pin"/>
                <key key="sport" value="9pin"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
            </item>
            <item name="10pin" icon="styles/standard/sport/10pin.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=10pin"/>
                <label text="Edit 10pin"/>
                <key key="sport" value="10pin"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
            </item>
            <item name="Archery" icon="styles/standard/sport/archery.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=archery"/>
                <label text="Edit Archery"/>
                <key key="sport" value="archery"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
            </item>
            <item name="Athletics" icon="presets/athletics.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sports=athletics"/>
                <label text="Edit Athletics"/>
                <key key="sport" value="athletics"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track" default="track"/>
            </item>
            <item name="Climbing" icon="styles/standard/sport/climbing.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=climbing"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:sport=climbing"/>
                <label text="Edit Climbing"/>
                <key key="sport" value="climbing"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="sports_centre"/>
            </item>
            <item name="Canoeing" icon="presets/canoe.png" type="node,way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=canoe"/>
                <label text="Edit Canoeing"/>
                <key key="sport" value="canoe"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Cycling" icon="presets/cycling.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=cycling"/>
                <label text="Edit Cycling"/>
                <key key="sport" value="cycling"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
            </item>
            <item name="Dog Racing" icon="styles/standard/leisure/dog.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=dog_racing"/>
                <label text="Edit Dog Racing"/>
                <key key="sport" value="dog_racing"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
            </item>
            <item name="Equestrian" icon="presets/equestrian.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=equestrian"/>
                <label text="Edit Equestrian"/>
                <key key="sport" value="equestrian"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track" values_context="riding"/>
                <combo key="surface" text="Surface" values="grass,sand,clay,dirt,fine_gravel,ground,mud,unpaved,compacted"/>
            </item>
            <item name="Horse Racing" icon="presets/equestrian.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=horse_racing"/>
                <label text="Edit Horse Racing"/>
                <key key="sport" value="horse_racing"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track" values_context="riding"/>
                <combo key="surface" text="Surface" values="grass,sand,clay,dirt,fine_gravel,ground,mud,unpaved,compacted"/>
            </item>
            <item name="Gymnastics" icon="presets/gymnastics.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=gymnastics"/>
                <label text="Edit Gymnastics"/>
                <key key="sport" value="gymnastics"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
            </item>
            <item name="Skating" icon="presets/skating.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=skating"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=skating"/>
                <label text="Edit Skating"/>
                <key key="sport" value="skating"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="ice_rink,pitch,sports_centre,stadium" default="ice_rink"/>
            </item>
            <item name="Skateboard" icon="styles/standard/sport/skateboard.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=skateboard"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=skateboard"/>
                <label text="Edit Skateboard"/>
                <key key="sport" value="skateboard"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track" default="pitch"/>
            </item>
            <item name="Swimming" icon="presets/swimming.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=swimming"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=swimming"/>
                <label text="Edit Swimming"/>
                <key key="sport" value="swimming"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="sports_centre,stadium,swimming_pool,water_park" default="swimming_pool"/>
            </item>
            <item name="Skiing" icon="presets/skiing_downhill.png" type="node,way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Piste_Maps"/>
                <label text="Edit Skiing"/>
                <key key="sport" value="skiing"/>
                <text key="name" text="Name"/>
                <combo key="piste:type" text="Piste type" values="downhill,nordic,skitour,snow_park"/>
                <combo key="piste:difficulty" text="Difficulty" values="novice,easy,intermediate,advanced,expert,freeride"/>
                <combo key="piste:grooming" text="Grooming" values="classic,mogul,skating,classic;skating,scooter,backcountry"/>
            </item>
            <item name="Shooting" icon="presets/range.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=shooting"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:sport=shooting"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:sport=shooting"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:sport=shooting"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=shooting"/>
                <label text="Edit Shooting"/>
                <key key="sport" value="shooting"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
            </item>
        </group>
        <!-- Sport -->
        <group name="Sport (Ball)" icon="presets/soccer.png">
            <item name="Soccer" icon="presets/soccer.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=soccer"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:sport=soccer"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=soccer"/>
                <label text="Edit Soccer"/>
                <key key="sport" value="soccer"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Australian Football" icon="presets/soccer.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=australian_football"/>
                <label text="Edit Australian Football"/>
                <key key="sport" value="australian_football"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="American Football" icon="presets/football.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=american_football"/>
                <label text="Edit American Football"/>
                <key key="sport" value="american_football"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Canadian Football" icon="presets/football.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=canadian_football"/>
                <label text="Edit Canadian Football"/>
                <key key="sport" value="canadian_football"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Gaelic Games" icon="presets/soccer.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=gaelic_games"/>
                <label text="Edit Gaelic Games"/>
                <key key="sport" value="gaelic_games"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <optional>
                    <check key="gaelic_games:hurling" text="Hurling" text_context="gaelic game" default="off"/>
                    <check key="gaelic_games:football" text="Football" text_context="gaelic game" default="off"/>
                    <check key="gaelic_games:camogie" text="Camogie" text_context="gaelic game" default="off"/>
                    <check key="gaelic_games:rounders" text="Rounders" text_context="gaelic game" default="off"/>
                    <space/>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Rugby League" icon="presets/football.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=rugby_league"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:sport=rugby_league"/>
                <label text="Edit Rugby League"/>
                <key key="sport" value="rugby_league"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Rugby Union" icon="presets/football.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=rugby_union"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:sport=rugby_union"/>
                <label text="Edit Rugby Union"/>
                <key key="sport" value="rugby_union"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Baseball" icon="presets/baseball.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=baseball"/>
                <label text="Edit Baseball"/>
                <key key="sport" value="baseball"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Basketball" icon="presets/basketball.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=basketball"/>
                <label text="Edit Basketball"/>
                <key key="sport" value="basketball"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" default="fence"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Volleyball" icon="styles/standard/sport/volleyball.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=volleyball"/>
                <label text="Edit Volleyball"/>
                <space/>
                <key key="sport" value="volleyball"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="leisure" text="Type" values="stadium,pitch,sports_centre"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Beachvolleyball" icon="presets/beachvolleyball.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=beachvolleyball"/>
                <label text="Edit Beachvolleyball"/>
                <space/>
                <key key="sport" value="beachvolleyball"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="leisure" text="Type" values="stadium,pitch,sports_centre"/>
            </item>
            <item name="Golf" icon="presets/golf.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=golf"
                      pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:sport=golf"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:sport=golf"/>
                <label text="Edit Golf"/>
                <key key="sport" value="golf"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="golf_course,pitch,sports_centre,stadium" default="golf_course"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Boule" icon="presets/boule.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=boules"/>
                <label text="Edit Boule"/>
                <key key="sport" value="boules"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
            </item>
            <item name="Bowls" icon="presets/boule.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=bowls"/>
                <label text="Edit Bowls"/>
                <key key="sport" value="bowls"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Cricket" icon="presets/cricket.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=cricket"/>
                <label text="Edit Cricket"/>
                <key key="sport" value="cricket"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Cricket Nets" icon="presets/cricket.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=cricket_nets"/>
                <label text="Edit Cricket Nets"/>
                <key key="sport" value="cricket_nets"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Croquet" icon="styles/standard/sport/croquet.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=croquet"/>
                <label text="Edit Croquet"/>
                <key key="sport" value="croquet"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Hockey" icon="presets/Hockey.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=hockey"/>
                <label text="Edit Hockey"/>
                <key key="sport" value="hockey"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="ice_rink,pitch,sports_centre,stadium"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" default="fence"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Pelota" icon="presets/pelota.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=pelota"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=pelota"/>
                <label text="Edit Pelota"/>
                <key key="sport" value="pelota"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Racquet" icon="presets/racquetball.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=racquet"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:sport=racquet"/>
                <label text="Edit Racquet"/>
                <key key="sport" value="racquet"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Table Tennis" icon="presets/table_tennis.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=table_tennis"/>
                <label text="Edit Table Tennis"/>
                <key key="sport" value="table_tennis"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Tennis" icon="presets/tennis.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:sport=tennis"/>
                <label text="Edit Tennis"/>
                <key key="sport" value="tennis"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium" default="pitch"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" default="fence"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
        </group>
        <!-- Sport (Ball) -->
        <group name="Motorsport" icon="presets/motorbike.png">
            <item name="Motorsport" icon="styles/standard/sport/motor.png" type="node,closedway">
                <label text="Edit Motorsport"/>
                <key key="sport" value="motor"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,stadium,track"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Karting" icon="presets/karting.png" type="node,closedway">
                <label text="Edit Karting"/>
                <key key="sport" value="karting"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Motocross" icon="styles/standard/sport/motocross.png" type="node,closedway">
                <label text="Edit Motocross"/>
                <key key="sport" value="motocross"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
            </item>
            <item name="Safety Training" icon="presets/safety_training.png" type="node,closedway">
                <label text="Edit Safety Training"/>
                <key key="sport" value="safety_training"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <separator/>
            <item name="Model Aerodrome" icon="presets/plane.png" type="node,closedway">
                <label text="Edit Model Aerodrome"/>
                <key key="sport" value="model_aerodrome"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
            </item>
            <item name="RC Car" icon="presets/car.png" type="node,closedway">
                <label text="Edit RC Car"/>
                <key key="sport" value="rc_car"/>
                <text key="name" text="Name"/>
                <combo key="leisure" text="type" values="pitch,sports_centre,track"/>
            </item>
        </group>
        <!-- Motorsport -->
    </group>
    <!-- Sports -->
    <group name="Man Made" icon="presets/works.png">
        <group name="Man Made" icon="presets/works.png">
            <item name="Building" icon="styles/standard/misc/landmark/building.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Key:building"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:building"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:building"
                      hu.href="http://wiki.openstreetmap.org/wiki/HU:Key:building"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:building"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:building"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Key:building"
                      no.href="http://wiki.openstreetmap.org/wiki/No:Key:building"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Key:building"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Key:building"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:building"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Key:building"/>
                <label text="Edit Building"/>
                <combo key="building" text="Building" values="yes,roof,garage,industrial,church,school,hangar,commercial,farm,transportation,greenhouse,office,university" default="yes" match="keyvalue" use_last_as_default="true"/>
                <text key="name" text="Name"/>
                <space/>
                <text key="height" text="Height (meters)" length="7"/>
                <text key="building:levels" text="levels" length="3"/>
                <text key="building:levels:underground" text="underground levels" length="3"/>
                <text key="roof:levels" text="roof levels" length="3"/>
                <combo key="roof:shape" text="roof shape" values="flat,gabled,half-hipped,hipped,pyramidal,gambrel,mansard,dome,round"/>
                <combo key="building:material" text="building material" values="brick,clay,concrete,earth,glass,mdf,metal,plaster,stone,timber_framing,trash,wood"/>
                <combo key="roof:material" text="roof material" values="acrylic_glass,concrete,copper,eternit,glass,grass,gravel,metal,roof_tiles,slate,stone,tar_paper,thatch,wood"/>
                <space/>
                <text key="addr:housenumber" text="housenumber" length="5" auto_increment="-2,-1,+1,+2"/>
            </item>
            <item name="Building part" icon="styles/standard/misc/landmark/building.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Key:building:part"/>
                <label text="Edit Building:part"/>
                <key key="building:part" value="yes" match="keyvalue"/>
                <text key="name" text="Name"/>
                <space/>
                <text key="height" text="Height (meters)" length="7"/>
                <text key="building:levels" text="levels" length="3"/>
                <text key="building:levels:underground" text="underground levels" length="3"/>
                <text key="roof:levels" text="roof levels" length="3"/>
                <combo key="roof:shape" text="roof shape" values="flat,gabled,half-hipped,hipped,pyramidal,gambrel,mansard,dome,round"/>
                <combo key="building:material" text="building material" values="brick,clay,concrete,earth,glass,mdf,metal,plaster,stone,timber_framing,trash,wood"/>
                <combo key="roof:material" text="roof material" values="acrylic_glass,concrete,copper,eternit,glass,grass,gravel,metal,roof_tiles,slate,stone,tar_paper,thatch,wood"/>
                <space/>
            </item>

            <item name="Residential Building" icon="styles/standard/misc/landmark/building.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Key:building"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Key:building"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Key:building"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Key:building"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Key:building"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Key:building"
                      no.href="http://wiki.openstreetmap.org/wiki/NO:Key:building"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Key:building"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Key:building"/>
                <label text="Edit Residential Building"/>
                <combo key="building" text="Building" values="residential,apartments,house,hut,terrace,detached,roof" default="residential" match="keyvalue"/>
                <text key="name" text="Name"/>
                <space/>
                <text key="height" text="Height (meters)" length="7"/>
                <text key="building:levels" text="levels" length="3"/>
                <text key="building:levels:underground" text="underground levels" length="3"/>
                <text key="roof:levels" text="roof levels" length="3"/>
                <combo key="roof:shape" text="roof shape" values="flat,gabled,half-hipped,hipped,pyramidal,gambrel,mansard,dome,round"/>
                <combo key="building:material" text="building material" values="brick,clay,concrete,earth,glass,mdf,metal,plaster,stone,timber_framing,trash,wood"/>
                <combo key="roof:material" text="roof material" values="acrylic_glass,concrete,copper,eternit,glass,grass,gravel,metal,roof_tiles,slate,stone,tar_paper,thatch,wood"/>
                <space/>
                <text key="addr:housenumber" text="housenumber" length="5" auto_increment="-2,-1,+1,+2"/>
            </item>
            <item name="Tower" icon="presets/tower.png" type="node,closedway">
                <label text="Edit Tower"/>
                <key key="man_made" value="tower"/>
                <text key="name" text="Name"/>
                <combo key="tower:type" text="Tower type" values="communication,observation"/>
                <check key="man_made" value_on="water_tower"/>
                <!-- TODO man_made=water_tower -->
                <optional>
                    <text key="height" text="Height (meters)" length="7"/>
                    <text key="operator" text="Operator"/>
                </optional>
            </item>
            <item name="Flagpole" icon="presets/flag.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=flagpole"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=flagpole"/>
                <key key="man_made" value="flagpole"/>
            </item>
            <separator/>
            <item name="Works" icon="presets/works.png" type="node,closedway">
                <label text="Edit Works"/>
                <key key="man_made" value="works"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Chimney" icon="presets/chimney.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Chimney"/>
                <label text="Edit Chimney"/>
                <space/>
                <key key="man_made" value="chimney"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <text key="height" text="Height (meters)" length="7"/>
                <space/>
                <check key="disused" text="Disused" default="off"/>
            </item>
            <item name="Windmill" icon="presets/windmill.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=windmill"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=windmill"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:man_made=windmill"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=windmill"/>
                <label text="Edit Windmill"/>
                <key key="man_made" value="windmill"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Gasometer" icon="presets/gasometer.png" type="node,closedway">
                <label text="Edit Gasometer"/>
                <key key="man_made" value="gasometer"/>
                <text key="name" text="Name"/>
                <space/>
                <check key="disused" text="Disused" default="off"/>
            </item>
            <item name="Pipeline" icon="presets/path.png" type="way,node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=pipeline"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=pipeline"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=pipeline"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=pipeline"/>
                <label text="Edit Pipeline"/>
                <key key="man_made" value="pipeline"/>
                <text key="operator" text="Operator"/>
                <combo key="type" text="Type" values="water,gas,heat,oil,sewage,air,smoke"/>
                <!-- TODO fix autocomplate "water"-->
                <combo key="location" text="Location" values="underground,underwater,overground" values_context="pipeline"/>
                <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
                <check key="disused" text="Disused" default="off"/>
            </item>
            <item name="Pipeline point feature" icon="http://upload.wikimedia.org/wikipedia/commons/f/fe/Valve_ico27x27.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=pipeline"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=pipeline"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=pipeline"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=pipeline"/>
                <label text="Edit Pipeline"/>
                <text key="operator" text="Operator"/>
                <combo key="pipeline" text="Type" values="marker,valve,manhole" default="manhole" use_last_as_default="true"/>
                <combo key="location" text="Location" values="underground,underwater,overground"/>
            </item>

            <item name="Crane" icon="presets/crane.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=crane"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=crane"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=crane"/>
                <label text="Edit Crane"/>
                <key key="man_made" value="crane"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <combo key="crane:type" text="crane type" values="bulk-handling,container,deck,floor-mounted,gantry,hammerhead,hoist,jib,level_luffing,overhead,portal,rail,saulendrehkran,self-erecting,slewing_pillar,tower,travel_lift,winch"/>
                <combo key="crane:mobile" text="mobile" values="rail,street,work_site"/>
                <text key="crane:maxload" text="max load"/>
                <text key="crane:maxradius" text="Length of the boom"/>
                <space/>
                <text key="height" text="Height (meters)" length="7"/>
            </item>
            <item name="Mineshaft" icon="presets/mineshaft.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=mineshaft"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=mineshaft"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=mineshaft"/>
                <label text="Edit Mineshaft"/>
                <key key="man_made" value="mineshaft"/>
                <text key="name" text="Name"/>
                <combo key="mineshaft_type" text="Function" values="winding,air"/>
                <text key="depth" text="Depth in meters"/>
                <text key="operator" text="Operator"/>
                <combo key="resource" text="Resource" values="aggregate,bauxite,coal,copper,dimension_stone,gold,ilmenite,iron_ore,lead,limestone,nickel,rutile,salt,silver,tin,zinc,zircon,antimony,arsenic,asbestos,barite,bastnasite,bentonite,beryl,bismuth,bitumen,borax,boron,bromide,caesium,chromite,cobalt,diamond,diatomite,dolomite,feldspar,fluorite,garnet,graphite,gypsum,iodine,jade,kaolinite,lanthanum,lithium,magnesite,magnesium,manganese,marble,mercury,mica,molybdenite,monazite,niobium,oil_sand,oil_shale,opal,palladium,peat,perlite,phospate,potash,platinum,radium,ruby,rubidium,sapphire,scandium,silica,sodium_carbonate,spongolite,strontium,sulphur,talc,terbium,tantalum,topaz,tungsten,uranium,vanadium,vermiculite,wollastonite,yttrium,zeolite"/>
                <combo key="headframe" text="Visible Headframe" values="yes,no"/>
                <check key="disused" text="Disused" default="off"/>
            </item>
            <item name="Adit" icon="presets/adit.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=adit"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=adit"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=adit"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=adit"/>
                <label text="Edit Adit"/>
                <key key="man_made" value="adit"/>
                <text key="name" text="Name"/>
                <text key="length" text="Length in meters"/>
                <text key="operator" text="Operator"/>
                <combo key="resource" text="Resource" values="aggregate,bauxite,coal,copper,dimension_stone,gold,ilmenite,iron_ore,lead,limestone,nickel,rutile,salt,silver,tin,zinc,zircon,antimony,arsenic,asbestos,barite,bastnasite,bentonite,beryl,bismuth,bitumen,borax,boron,bromide,caesium,chromite,cobalt,diamond,diatomite,dolomite,feldspar,fluorite,garnet,graphite,gypsum,iodine,jade,kaolinite,lanthanum,lithium,magnesite,magnesium,manganese,marble,mercury,mica,molybdenite,monazite,niobium,oil_sand,oil_shale,opal,palladium,peat,perlite,phospate,potash,platinum,radium,ruby,rubidium,sapphire,scandium,silica,sodium_carbonate,spongolite,strontium,sulphur,talc,terbium,tantalum,topaz,tungsten,uranium,vanadium,vermiculite,wollastonite,yttrium,zeolite"/>
                <check key="disused" text="Disused" default="off"/>
            </item>
            <separator/>
            <item name="Water Tower" icon="presets/water_tower.png" type="node,closedway">
                <label text="Edit Water Tower"/>
                <key key="man_made" value="water_tower"/>
                <text key="name" text="Name"/>
                <text key="height" text="Height (meters)" length="7"/>
                <space/>
                <check key="disused" text="Disused" default="off"/>
            </item>
            <item name="Water Works" icon="presets/water_works.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=water_works"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=water_works"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=water_works"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=water_works"/>
                <label text="Edit Water Works"/>
                <space/>
                <key key="man_made" value="water_works"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
            </item>
            <item name="Wastewater Plant" icon="presets/wastewater_plant.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=wastewater_plant"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=wastewater_plant"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:man_made=wastewater_plant"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=wastewater_plant"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:man_made=wastewater_plant"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=wastewater_plant"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=wastewater_plant"/>
                <label text="Edit Wastewater Plant"/>
                <key key="man_made" value="wastewater_plant"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Watermill" icon="styles/standard/misc/landmark/watermill.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=watermill"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:man_made=watermill"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=watermill"/>
                <label text="Edit Watermill"/>
                <space/>
                <key key="man_made" value="watermill"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Fountain" icon="presets/spring.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=fountain"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=fountain"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=fountain"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:amenity=fountain"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=fountain"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=fountain"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=fountain"/>
                <label text="Edit Fountain"/>
                <key key="amenity" value="fountain"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Water Well" icon="presets/water_well.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=water_well"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=water_well"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=water_well"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=water_well"/>
                <label text="Edit Water Well"/>
                <key key="man_made" value="water_well"/>
                <text key="name" text="Name"/>
            </item>
            <separator/>
            <item name="Lighthouse" icon="styles/standard/misc/landmark/lighthouse.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=lighthouse"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:man_made=lighthouse"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=lighthouse"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=lighthouse"/>
                <label text="Edit Lighthouse"/>
                <key key="man_made" value="lighthouse"/>
                <text key="name" text="Name"/>
                <text key="height" text="Height (meters)" length="7"/>
            </item>
            <item name="Beacon" icon="styles/standard/misc/landmark/beacon.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=beacon"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=beacon"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:man_made=beacon"/>
                <label text="Edit Beacon"/>
                <key key="man_made" value="beacon"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Street Lamp" icon="styles/standard/misc/streetlamp.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:highway=street_lamp"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:highway=street_lamp"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:highway=street_lamp"/>
                <label text="Edit Street Lamp"/>
                <space/>
                <key key="highway" value="street_lamp"/>
                <combo key="opening_hours" text="Operation times" values="Mo-Fr 22:00-05:00"/>
                <optional>
                    <text key="height" text="Height (meters)" length="7"/>
                </optional>
            </item>
            <item name="Measurement Station" icon="presets/measurement_station.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/measurement_station"/>
                <label text="Edit Measurement Station"/>
                <space/>
                <key key="man_made" value="measurement_station"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="measurement" text="Measurement" values="particulate_matter,seismic,water_level,weather"/>
                <combo key="recording" text="Recording" values="manually,automated,remote,no"/>
                <combo key="display" text="Display" values="analog,digital,no" values_context="display"/>
            </item>
            <item name="Survey Point" icon="presets/survey_point.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=survey_point"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:man_made=survey_point"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=survey_point"/>
                <label text="Edit Survey Point"/>
                <key key="man_made" value="survey_point"/>
                <text key="name" text="Name"/>
                <text key="ele" text="Elevation"/>
            </item>
            <item name="Surveillance" icon="presets/surveillance.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:man_made=surveillance"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:man_made=surveillance"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:man_made=surveillance"/>
                <label text="Edit Surveillance Camera"/>
                <key key="man_made" value="surveillance"/>
                <text key="name" text="Name"/>
                <combo key="surveillance" text="Type" values="indoor,outdoor,public"/>
            </item>
        </group>
        <!-- Man Made -->
        <group name="Power" icon="presets/power.png">
            <item name="Power Generator" icon="presets/power.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:power=generator"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=generator"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=generator"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:power=generator"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=generator"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:power=generator"/>
                <label text="Edit Power Generator"/>
                <key key="power" value="generator"/>
                <text key="name" text="Name"/>
                <combo key="generator:source" text="Source" values="biofuel,biogas,biomass,coal,diesel,gas,gasoline,geothermal,hydro,nuclear,oil,osmotic,solar,tidal,waste,wave,wind"/>
                <combo key="generator:method" text="Method" values="anaerobic_digestion,combustion,dam,fission,fusion,gasification,photovoltaic,pumped-storage,pumping,pyrolysis,run-of-the-river,thermal"/>
                <space/>
                <label text="Output forms of energy"/>
                <combo key="generator:output:electricity" text="electricity" values="yes,2 W,3 kW,5 MW,7 GW"/>
                <combo key="generator:output:hot_water" text="hot water" values="yes,2 W,3 kW,5 MW,7 GW"/>
                <combo key="generator:output:hot_air" text="hot air" values="yes,2 W,3 kW,5 MW,7 GW"/>
                <combo key="generator:output:cold_water" text="cold water" values="yes,2 W,3 kW,5 MW,7 GW"/>
                <combo key="generator:output:cold_air" text="cold air" values="yes,2 W,3 kW,5 MW,7 GW"/>
                <combo key="generator:output:compressed_air" text="compressed air" values="yes,2 W,3 kW,5 MW,7 GW"/>
                <combo key="generator:output:steam" text="steam" values="yes,2 W,3 kW,5 MW,7 GW"/>
                <combo key="generator:output:vacuum" text="vacuum" values="yes,2 W,3 kW,5 MW,7 GW"/>
                <combo key="generator:output:battery_charging" text="battery charging" values="yes,2 W,3 kW,5 MW,7 GW"/>
            </item>
            <item name="Power Station" icon="presets/power.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:power=line"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=line"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:power=line"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=line"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:power=line"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=line"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:power=line"/>
                <label text="Edit Power Station. (DEPRECATED to use as Sub Station)"/>
                <key key="power" value="station"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <text key="ref" text="Reference"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" use_last_as_default="true"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no" default="private"/>
                </optional>
            </item>
            <item name="Power Sub Station" icon="presets/power.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:power=sub_station"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=sub_station"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=sub_station"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=sub_station"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:power=sub_station"/>
                <label text="Edit Power Sub Station"/>
                <key key="power" value="sub_station"/>
                <text key="operator" text="Operator"/>
                <text key="ref" text="Line reference"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" use_last_as_default="true"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood" use_last_as_default="true"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no" default="private"/>
                </optional>
            </item>
            <item name="Cable Distribution Cabinet" icon="presets/power.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:power=cable_distribution_cabinet"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=cable_distribution_cabinet"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=cable_distribution_cabinet"/>
                <label text="Edit Cable Distribution Cabinet"/>
                <key key="power" value="cable_distribution_cabinet"/>
                <text key="operator" text="Operator"/>
                <text key="ref" text="Reference"/>
            </item>
            <separator/>
            <item name="Power Tower" icon="presets/power_tower.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:power=tower"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=tower"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:power=tower"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:power=tower"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=tower"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:power=tower"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=tower"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:power=tower"/>
                <label text="Edit Power Tower"/>
                <key key="power" value="tower"/>
                <text key="ref" text="Tower reference"/>
                <space/>
                <combo key="structure" text="Structure" values="lattice,tubular,solid" use_last_as_default="true"/>
                <combo key="tower:type" text="Tower type" values="suspension,anchor,termination,branch,transposing,crossing"/>
				<check key="tower" text="Air to ground" value_on="air_to_ground"/>
                <combo key="material" text="Material" values="steel,wood,concrete,plastic" use_last_as_default="true"/>
                <combo key="design" text="Design">
               	   	<list_entry value="asymmetric" short_description="" icon="presets/tower_design/asymmetric"/>
				   	<list_entry value="barrel" short_description="middle level cross-arms being longer than the upper and lower" icon="presets/tower_design/barrel"/>
			   		<list_entry value="bipole" short_description="A pair of closely spaced but non-touching pylons" icon="presets/tower_design/bipole"/>
					<list_entry value="monopolar" short_description="" icon="presets/tower_design/monopolar"/>
               	   	<list_entry value="one-level" short_description="" icon="presets/tower_design/one-level"/>
               	   	<list_entry value="two-level" short_description="" icon="presets/tower_design/two-level"/>
               	   	<list_entry value="three-level" short_description="" icon="presets/tower_design/three-level"/>
               	   	<list_entry value="four-level" short_description="" icon="presets/tower_design/four-level"/>
               	   	<list_entry value="six-level" short_description="" icon="presets/tower_design/six-level"/>
               	   	<list_entry value="nine-level" short_description="" icon="presets/tower_design/nine-level"/>
					<list_entry value="donau" short_description="A sub-type of the two-level tower. It is characterized by having one conductor on each side at the upper level and two conductors at each side on the lower level" icon="presets/tower_design/donau"/>
               	   	<list_entry value="delta" short_description="y-shaped tower having a horisontal cross-beam between the two top structures. All conductors are attached to the cross-beam" icon="presets/tower_design/delta"/>
               	   	<list_entry value="delta_two-level" short_description="" icon="presets/tower_design/delta_two-level"/>
					<list_entry value="y-frame" short_description="Similar to delta tower but there is no horisontal cross-beam between the two top structures" icon="presets/tower_design/y-frame"/>
               	   	<list_entry value="h-frame" short_description="Separate pylons or poles connected by a beam to which the conductors are attached. Not all conductors are located between the vertical structures" icon="presets/tower_design/h-frame_one-level"/>
               	   	<list_entry value="h-frame_one-level" short_description="" icon="presets/tower_design/h-frame_one-level"/>
               	   	<list_entry value="h-frame_two-level" short_description="" icon="presets/tower_design/h-frame_two-level"/>
               	   	<list_entry value="portal" short_description="Vertical structures connected by a horisontal cross-beam. All conductors are supported between the vertical structures" icon="presets/tower_design/portal_one-level"/>
               	   	<list_entry value="portal_one-level" short_description="" icon="presets/tower_design/portal_one-level"/>
                	<list_entry value="portal_two-level" short_description="" icon="presets/tower_design/portal_two-level"/>
                	<list_entry value="portal_three-level" short_description="" icon="presets/tower_design/portal_three-level"/>
			   		<list_entry value="guyed_v-frame" short_description="" icon="presets/tower_design/guyed_v-frame"/>
				</combo>
                <text key="design:name" text="Specific design name"/>
                <check key="design:incomplete" text="design:incomplete" default="off"/>
                <space/>
                <combo key="colour" text="Colour" values="red,red/white"/>
                <text key="height" text="Height (meters)" length="7"/>
            </item>
            <item name="Pole" icon="styles/standard/misc/landmark/power/pole.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:power=pole"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=pole"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:power=pole"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:power=pole"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:power=pole"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:power=pole"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:power=pole"/>
                <label text="Edit Power Pole"/>
                <key key="power" value="pole"/>
                <text key="ref" text="Pole reference"/>
                <space/>
                <combo key="material" text="Material" values="steel,wood,concrete,plastic" use_last_as_default="true"/>
                <text key="colour" text="Colour"/>
                <text key="height" text="Height (meters)" length="7"/>
                <text key="diameter" text="Diameter (meters)" length="7"/>
            </item>
            <item name="Power Line" icon="presets/power.png" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:power=line"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:power=line"/>
                <label text="Edit Power Line"/>
                <combo key="power" text="Line type" values_context="Power Line" values="line,minor_line" default="line" match="keyvalue"/>
                <text key="operator" text="Operator" use_last_as_default="true"/>
                <!-- TODO use_last_as_default to all GUI controls -->
                <text key="ref" text="Line reference"/>
                <!-- TODO: voltage values used are a mixture of power lines and railways - needs cleanup -->
                <combo key="voltage" text="Voltage" values="3000,10000,15000,20000,25000,110000,220000,330000,380000,400000,750000"/>
                <combo key="frequency" text="Frequency" values="0,16.67,16.7,50,60" use_last_as_default="true"/>
                <text key="cables" text="Amount of Cables"/>
                <combo key="wires" text="Number of wires (better: conductors) per power cable" values="single,double,triple,quad,fivefold,sixfold,eightfold"/>
                <space/>
                <combo key="location" text="Location" values="underground,underwater,overground" values_context="power line"/>
                <check key="disused" text="Disused" default="off"/>
            </item>
            <item name="Transformer" icon="styles/standard/misc/landmark/power/transformer.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:power=transformer"/>
                <label text="Edit Power Transformer"/>
                <key key="power" value="transformer"/>
                <text key="ref" text="Transformer reference"/>
                <text key="voltage" text="Transformer voltage"/>
                <combo key="frequency" text="Frequency" values="0,16.67,16.7,50,60" use_last_as_default="true"/>
                <space/>
                <combo key="location" text="Location" values="indoor,outdoor,underground" default="outdoor" use_last_as_default="true"/>
            </item>

        </group>
        <!-- Power -->
        <group name="Historic Places" icon="presets/State_Tourist.png">
            <item name="Castle" icon="presets/State_Tourist.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=castle"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:historic=castle"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:historic=castle"/>
                <label text="Edit Castle"/>
                <key key="historic" value="castle"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="Ruins" icon="presets/ruins.png" type="node,closedway">
                <label text="Edit Ruins"/>
                <key key="historic" value="ruins"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Archaeological Site" icon="styles/standard/sightseeing/archaeological.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=archaeological_site"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:historic=archaeological_site"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:historic=archaeological_site"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:historic=archaeological_site"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:historic=archaeological_site"/>
                <label text="Edit Archaeological Site"/>
                <key key="historic" value="archaeological_site"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="Battlefield" icon="presets/battlefield.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=battlefield"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:historic=battlefield"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:historic=battlefield"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:historic=battlefield"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:historic=battlefield"/>
                <label text="Edit Battlefield"/>
                <key key="historic" value="battlefield"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="Palaeontological Site" icon="presets/palaeontological_site.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:geological"/>
                <label text="Edit Palaeontological Site"/>
                <key key="geological" value="palaeontological_site"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <separator/>
            <item name="Monument" icon="presets/monument.png" type="node,closedway">
                <label text="Edit Monument"/>
                <key key="historic" value="monument"/>
                <text key="name" text="Name"/>
                <text key="inscription" text="Inscription"/>
            </item>
            <item name="Memorial" icon="presets/memorial.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=memorial"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:historic=memorial"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:historic=memorial"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:historic=memorial"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:historic=memorial"/>
                <label text="Edit Memorial"/>
                <key key="historic" value="memorial"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Wayside Cross" icon="presets/wayside_cross.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=wayside_cross"/>
                <label text="Edit Wayside Cross"/>
                <key key="historic" value="wayside_cross"/>
                <text key="name" text="Name"/>
                <text key="inscription" text="Inscription"/>
                <combo key="religion" text="Religion" values="animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
                <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
            </item>
            <item name="Wayside Shrine" icon="presets/wayside_shrine.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:historic=wayside_shrine"/>
                <label text="Edit Wayside Shrine"/>
                <key key="historic" value="wayside_shrine"/>
                <text key="name" text="Name"/>
                <text key="inscription" text="Inscription"/>
                <combo key="religion" text="Religion" values="animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
                <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
            </item>
            <item name="Boundary Stone" icon="styles/standard/historic/boundary_stone.png" type="node,closedway">
                <label text="Edit Boundary Stone"/>
                <key key="historic" value="boundary_stone"/>
                <text key="name" text="Name"/>
            </item>
        </group>
        <!-- Historic Places -->
    </group>
    <!-- Structures -->
    <group name="Shops" icon="styles/standard/shop/mall.png">
        <group name="Food" icon="styles/standard/shop/supermarket.png">
            <item name="Supermarket" icon="styles/standard/shop/supermarket.png" type="node,closedway">
                <label text="Edit Supermarket"/>
                <key key="shop" value="supermarket"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Convenience Store" icon="presets/convenience.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=convenience"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=convenience"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=convenience"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=convenience"/>
                <label text="Edit Convenience Store"/>
                <key key="shop" value="convenience"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Kiosk" icon="presets/kiosk.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=kiosk"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=kiosk"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=kiosk"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=kiosk"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=kiosk"/>
                <label text="Edit Kiosk"/>
                <key key="shop" value="kiosk"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Baker" icon="presets/baker.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=bakery"
                      ar.href="http://wiki.openstreetmap.org/wiki/Ar:Tag:shop=bakery"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:shop=bakery"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=bakery"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=bakery"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=bakery"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=bakery"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=bakery"/>
                <label text="Edit Baker"/>
                <key key="shop" value="bakery"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Butcher" icon="presets/cow.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=butcher"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:shop=butcher"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=butcher"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=butcher"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=butcher"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=butcher"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=butcher"/>
                <label text="Edit Butcher"/>
                <key key="shop" value="butcher"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Seafood" icon="presets/seafood.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=seafood"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=seafood"/>
                <label text="Edit Seafood"/>
                <space/>
                <key key="shop" value="seafood"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Deli (Fine Food)" icon="presets/deli.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=deli"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=deli"/>
                <label text="Edit Deli (Fine Food)"/>
                <space/>
                <key key="shop" value="deli"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Confectionery" icon="presets/confectionery.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=confectionery"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=confectionery"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=confectionery"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=confectionery"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=confectionery"/>
                <label text="Edit Confectionery"/>
                <key key="shop" value="confectionery"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Marketplace" icon="styles/standard/place/marketplace.png" type="node,way,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=marketplace"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=marketplace"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=marketplace"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=marketplace"
                      no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=marketplace"
                      pt.href="http://wiki.openstreetmap.org/wiki/Pt:Tag:amenity=marketplace"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=marketplace"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=marketplace"/>
                <label text="Edit Marketplace"/>
                <space/>
                <key key="amenity" value="marketplace"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Greengrocer" icon="presets/greengrocer.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=greengrocer"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=greengrocer"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:shop=greengrocer"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=greengrocer"/>
                <label text="Edit Greengrocer"/>
                <space/>
                <key key="shop" value="greengrocer"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Organic" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Key:organic"/>
                <label text="Edit Organic/Bio"/>
                <combo text="Organic/Bio" key="organic" values="no,yes,only" match="key"/>
            </item>
            <item name="Fair Trade" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Key:fair_trade"/>
                <label text="Edit Fair Trade"/>
                <combo text="Fair Trade" key="fair_trade" values="no,yes,only" match="key"/>
            </item>
            <separator/>
            <item name="Alcohol" icon="styles/standard/shop/beverages.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=alcohol"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=alcohol"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=alcohol"/>
                <label text="Edit Alcohol Shop"/>
                <key key="shop" value="alcohol"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Beverages" icon="styles/standard/shop/beverages.png" type="node,closedway">
                <label text="Edit Beverages Shop"/>
                <key key="shop" value="beverages"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
        </group>
        <!-- Food -->
        <group name="Clothes" icon="styles/standard/shop/clothes.png">
            <item name="Clothes" icon="styles/standard/shop/clothes.png" type="node,closedway">
                <label text="Edit Clothes Shop"/>
                <key key="shop" value="clothes"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Boutique" icon="presets/boutique.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=boutique"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=boutique"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=boutique"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=boutique"/>
                <label text="Edit Boutique"/>
                <space/>
                <key key="shop" value="boutique"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Shoes" icon="styles/standard/shop/shoes.png" type="node,closedway">
                <label text="Edit Shoe Shop"/>
                <key key="shop" value="shoes"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Outdoor" icon="presets/tent.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=outdoor"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=outdoor"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=outdoor"/>
                <label text="Edit Outdoor Shop"/>
                <key key="shop" value="outdoor"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Sports" icon="presets/rowing.png" type="node,closedway">
                <label text="Edit Sports Shop"/>
                <key key="shop" value="sports"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Dry Cleaning" icon="presets/laundry.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=dry_cleaning"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:shop=dry_cleaning"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:shop=dry_cleaning"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=dry_cleaning"/>
                <label text="Edit Dry Cleaning"/>
                <key key="shop" value="dry_cleaning"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Laundry" icon="presets/laundry.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Laundry"/>
                <label text="Edit Laundry"/>
                <key key="shop" value="laundry"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Tailor" icon="styles/standard/shop/tailor.png" type="node,closedway">
                <label text="Edit Tailor"/>
                <key key="shop" value="tailor"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Fabric" icon="presets/fabric.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=fabric"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=fabric"/>
                <label text="Edit Fabric"/>
                <space/>
                <key key="shop" value="fabric"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
        </group>
        <!-- Clothes -->
        <group name="Electronic" icon="styles/standard/shop/electronics.png">
            <item name="Computer" icon="styles/standard/shop/computer.png" type="node,closedway">
                <label text="Edit Computer Shop"/>
                <key key="shop" value="computer"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Electronics" icon="styles/standard/shop/electronics.png" type="node,closedway">
                <label text="Edit Electronics Shop"/>
                <key key="shop" value="electronics"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Mobile Phone" icon="presets/mobile_phone.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=mobile_phone"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=mobile_phone"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=mobile_phone"/>
                <label text="Edit Mobile Phone"/>
                <space/>
                <key key="shop" value="mobile_phone"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Vacuum Cleaner" icon="presets/vacuum_cleaner.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=vacuum_cleaner"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=vacuum_cleaner"/>
                <label text="Edit Vacuum Cleaner"/>
                <space/>
                <key key="shop" value="vacuum_cleaner"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Hifi" icon="styles/standard/shop/hifi.png" type="node,closedway">
                <label text="Edit Hifi Shop"/>
                <key key="shop" value="hifi"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Video" name_context="shop" icon="styles/standard/shop/video.png" type="node,closedway">
                <label text="Edit Video Shop"/>
                <key key="shop" value="video"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
        </group>
        <!-- Electronic -->
        <group name="Cash" icon="presets/dollar.png">
            <item name="Bank" icon="styles/standard/money/bank.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bank"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bank"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=bank"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bank"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=bank"
                      no.href="http://wiki.openstreetmap.org/wiki/No:Tag:amenity=bank"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bank"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bank"/>
                <label text="Edit Bank"/>
                <key key="amenity" value="bank"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
                <check key="atm" text="Automated Teller Machine" default="on"/>
            </item>
            <item name="Money Exchange" icon="styles/standard/money/exchange.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=bureau_de_change"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=bureau_de_change"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=bureau_de_change"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=bureau_de_change"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=bureau_de_change"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=bureau_de_change"/>
                <label text="Edit Money Exchange"/>
                <key key="amenity" value="bureau_de_change"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Automated Teller Machine" icon="styles/standard/money/atm.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=atm"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=atm"
                      es.href="http://wiki.openstreetmap.org/wiki/ES:Tag:amenity=atm"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:amenity=atm"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=atm"
                      hr.href="http://wiki.openstreetmap.org/wiki/Hr:Tag:amenity=atm"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=atm"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=atm"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=atm"
                      uk.href="http://wiki.openstreetmap.org/wiki/Uk:Tag:amenity=atm"/>
                <label text="Edit Automated Teller Machine"/>
                <key key="amenity" value="atm"/>
                <text key="operator" text="Operator"/>
            </item>
        </group>
        <!-- Cash -->
        <group name="Other" icon="styles/standard/shop/mall.png">
            <item name="Department Store" icon="styles/standard/shop/mall.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=department_store"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=department_store"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:shop=department_store"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=department_store"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=department_store"/>
                <label text="Edit Department Store"/>
                <space/>
                <key key="shop" value="department_store"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Mall" icon="styles/standard/shop/mall.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=mall"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=mall"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=mall"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=mall"/>
                <label text="Edit Mall"/>
                <space/>
                <key key="shop" value="mall"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Chemist" icon="styles/standard/shop/chemist.png" type="node,closedway">
                <label text="Edit Chemist"/>
                <key key="shop" value="chemist"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Hairdresser" icon="styles/standard/shop/hairdresser.png" type="node,closedway">
                <label text="Edit Hairdresser"/>
                <key key="shop" value="hairdresser"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Optician" icon="styles/standard/shop/optician.png" type="node,closedway">
                <label text="Edit Optician"/>
                <key key="shop" value="optician"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Jewelry" icon="styles/standard/shop/jewelry.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=jewelry"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=jewelry"/>
                <label text="Edit Jewelry"/>
                <space/>
                <key key="shop" value="jewelry"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Erotic" icon="presets/erotic.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=erotic"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=erotic"/>
                <label text="Edit Erotic"/>
                <space/>
                <key key="shop" value="erotic"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Florist" icon="styles/standard/shop/florist.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=florist"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:shop=florist"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=florist"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=florist"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=florist"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=florist"/>
                <label text="Edit Florist"/>
                <key key="shop" value="florist"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Garden Centre" icon="styles/standard/shop/garden_centre.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=garden_centre"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=garden_centre"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=garden_centre"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=garden_centre"/>
                <label text="Edit Garden Centre"/>
                <key key="shop" value="garden_centre"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Do-it-yourself-store" icon="presets/diy_store.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=doityourself"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=doityourself"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:shop=doityourself"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=doityourself"/>
                <label text="Edit Do-it-yourself-store"/>
                <key key="shop" value="doityourself"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Hardware" icon="presets/hardware.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=hardware"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=hardware"/>
                <label text="Edit Hardware Store"/>
                <key key="shop" value="hardware"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Paint" icon="presets/paint.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=paint"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=paint"/>
                <label text="Edit Paint"/>
                <space/>
                <key key="shop" value="paint"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Furniture" icon="styles/standard/shop/furniture.png" type="node,closedway">
                <label text="Edit Furniture Shop"/>
                <key key="shop" value="furniture"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Kitchen" icon="presets/kitchen.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=kitchen"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=kitchen"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=kitchen"/>
                <label text="Edit Kitchen"/>
                <space/>
                <key key="shop" value="kitchen"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Curtain" icon="presets/curtain.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=curtain"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=curtain"/>
                <label text="Edit Curtain"/>
                <space/>
                <key key="shop" value="curtain"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Frame" icon="presets/frame.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=frame"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=frame"/>
                <label text="Edit Frames"/>
                <space/>
                <key key="shop" value="frame"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Stationery" icon="presets/stationery.png" type="node,closedway">
                <label text="Edit Stationery Shop"/>
                <key key="shop" value="stationery"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Copyshop" icon="presets/copyshop.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=copyshop"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=copyshop"/>
                <label text="Edit Copyshop"/>
                <space/>
                <key key="shop" value="copyshop"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Book Store" icon="presets/book.png" type="node,closedway">
                <label text="Edit Book Store"/>
                <key key="shop" value="books"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Newsagent's shop" icon="presets/kiosk.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=newsagent"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:shop=newsagent"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:shop=newsagent"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=newsagent"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:shop=newsagent"/>
                <label text="Edit Newsagent's shop"/>
                <key key="shop" value="newsagent"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <separator/>
            <item name="Travel Agency" icon="presets/travel.png" type="node,closedway">
                <label text="Edit Travel Agency"/>
                <key key="shop" value="travel_agency"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Musical Instrument" icon="presets/musical_instrument.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=musical_instrument"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=musical_instrument"/>
                <label text="Edit Musical Instruments"/>
                <space/>
                <key key="shop" value="musical_instrument"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
            <item name="Toys" icon="styles/standard/shop/toys.png" type="node,closedway">
                <label text="Edit Toy Shop"/>
                <key key="shop" value="toys"/>
                <text key="name" text="Name"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00;Sa 08:00-12:00"/>
            </item>
            <item name="Variety Store" icon="presets/variety_store.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:shop=variety_store"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:shop=variety_store"/>
                <label text="Edit Variety Store"/>
                <space/>
                <key key="shop" value="variety_store"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="opening_hours" text="Opening Hours" values="24/7,Mo-Fr 08:30-20:00,Tu-Su 08:00-15:00; Sa 08:00-12:00"/>
            </item>
        </group>
        <!-- Other -->
        <item name="Vending machine" icon="presets/vending_machine.png" type="node">
            <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=vending_machine"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=vending_machine"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=vending_machine"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=vending_machine"/>
            <label text="Edit Vending machine"/>
            <key key="amenity" value="vending_machine"/>
            <multiselect key="vending" text="Vending products" values="animal_food;bicycle_tube;cigarettes;condoms;drinks;excrement_bags;food;news_papers;parking_tickets;photos;public_transport_plans;public_transport_tickets;SIM-cards;stamps;sweets;tampons;telephone_vouchers;toys;vouchers"/>
            <text key="operator" text="Operator"/>
            <text key="ref" text="Reference number"/>
            <text key="note" text="Note"/>
            <check key="payment:coins" text="Coins" default="off"/>
            <check key="payment:notes" text="Notes" default="off"/>
            <check key="payment:electronic_purses" text="Electronic purses and Charge cards" default="off"/>
            <check key="payment:debit_cards" text="Debit cards" default="off"/>
            <check key="payment:credit_cards" text="Credit cards" default="off"/>
            <check key="payment:account_cards" text="Account or loyalty cards" default="off"/>
        </item>
    </group>
    <!-- Shops -->
    <group name="Geography" icon="presets/peak.png">
        <group name="Boundaries" icon="presets/boundaries.png">
            <item name="National" icon="presets/boundaries.png" type="closedway,relation">
                <label text="Edit National Boundary"/>
                <space/>
                <key key="boundary" value="national"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Administrative" icon="presets/boundaries.png" type="closedway,relation">
                <label text="Edit Administrative Boundary"/>
                <space/>
                <key key="boundary" value="administrative"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Civil" icon="presets/boundaries.png" type="closedway,relation">
                <label text="Edit Civil Boundary"/>
                <space/>
                <key key="boundary" value="civil"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Political" icon="presets/boundaries.png" type="closedway,relation">
                <label text="Edit Political Boundary"/>
                <space/>
                <key key="boundary" value="political"/>
                <text key="name" text="Name"/>
            </item>
            <item name="National park" icon="presets/boundaries.png" type="closedway,relation">
                <label text="Edit National Park Boundary"/>
                <space/>
                <key key="boundary" value="national_park"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
        </group>
        <!-- Boundaries -->
        <group name="Places" icon="presets/places.png">
            <item name="Continent" icon="presets/places.png" type="node,closedway">
                <label text="Edit Continent"/>
                <space/>
                <key key="place" value="continent"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="Country" icon="presets/places.png" type="node,closedway">
                <label text="Edit Country"/>
                <space/>
                <key key="place" value="country"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="State" icon="presets/places.png" type="node,closedway">
                <label text="Edit State"/>
                <space/>
                <key key="place" value="state"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="Region" icon="presets/places.png" type="node,closedway">
                <label text="Edit Region"/>
                <space/>
                <key key="place" value="region"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="County" icon="presets/places.png" type="node,closedway">
                <label text="Edit County"/>
                <space/>
                <key key="place" value="county"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <text key="population" text="Population"/>
                <text key="addr:postcode" text="Post code"/>
                <text key="website" text="Website"/>
            </item>
            <separator/>
            <item name="City" icon="presets/places.png" type="node,closedway">
                <label text="Edit City"/>
                <space/>
                <key key="place" value="city"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <text key="population" text="Population"/>
                <text key="addr:postcode" text="Post code"/>
                <text key="website" text="Website"/>
            </item>
            <item name="Town" icon="presets/places.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:place=town"
                      da.href="http://wiki.openstreetmap.org/wiki/Da:Tag:place=town"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=town"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:place=town"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=town"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=town"/>
                <label text="Edit Town"/>
                <space/>
                <key key="place" value="town"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <text key="population" text="Population"/>
                <text key="addr:postcode" text="Post code"/>
                <text key="website" text="Website"/>
            </item>
            <item name="Suburb" icon="presets/places.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:place=suburb"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=suburb"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:place=suburb"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=suburb"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=suburb"/>
                <label text="Edit Suburb"/>
                <space/>
                <key key="place" value="suburb"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <text key="population" text="Population"/>
                <text key="addr:postcode" text="Post code"/>
                <text key="website" text="Website"/>
            </item>
            <item name="Village" icon="presets/places.png" type="node,closedway">
                <label text="Edit Village"/>
                <space/>
                <key key="place" value="village"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <text key="population" text="Population"/>
                <text key="addr:postcode" text="Post code"/>
                <text key="website" text="Website"/>
            </item>
            <item name="Hamlet" icon="presets/places.png" type="node,closedway">
                <label text="Edit Hamlet"/>
                <space/>
                <key key="place" value="hamlet"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <text key="population" text="Population"/>
                <text key="addr:postcode" text="Post code"/>
                <text key="website" text="Website"/>
            </item>
            <item name="Isolated Dwelling" icon="presets/places.png" type="node,closedway">
                <label text="Edit Isolated Dwelling"/>
                <space/>
                <key key="place" value="isolated_dwelling"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <text key="population" text="Population"/>
                <text key="addr:postcode" text="Post code"/>
                <text key="website" text="Website"/>
            </item>
            <item name="Neighbourhood" icon="presets/places.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:place=neighbourhood"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=neighbourhood"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:place=neighbourhood"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:place=neighbourhood"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=neighbourhood"/>
                <label text="Edit Neighbourhood"/>
                <space/>
                <key key="place" value="neighbourhood"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <text key="population" text="Population"/>
                <text key="website" text="Website"/>
            </item>
            <separator/>
            <item name="Locality" icon="presets/locality.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:place=locality"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=locality"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:place=locality"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=locality"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=locality"/>
                <label text="Edit Locality"/>
                <space/>
                <key key="place" value="locality"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
        </group>
        <!-- Places -->
        <group name="Geography" icon="presets/peak.png">
            <item name="Peak" icon="presets/peak.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=peak"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=peak"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=peak"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=peak"/>
                <label text="Edit Peak"/>
                <key key="natural" value="peak"/>
                <text key="name" text="Name"/>
                <text key="ele" text="Elevation"/>
                <text key="wikipedia" text="Wikipedia"/>
                <check key="man_made" text="Survey point" default="off" value_on="survey_point"/>
            </item>
            <item name="Glacier" icon="presets/glacier.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=glacier"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=glacier"/>
                <label text="Edit Glacier"/>
                <key key="natural" value="glacier"/>
                <text key="name" text="Name"/>
                <text key="ele" text="Elevation"/>
                <text key="wikipedia" text="Wikipedia"/>
            </item>
            <item name="Volcano" icon="presets/volcano.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=volcano"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=volcano"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=volcano"/>
                <label text="Edit Volcano"/>
                <key key="natural" value="volcano"/>
                <text key="name" text="Name"/>
                <text key="ele" text="Elevation"/>
                <text key="wikipedia" text="Wikipedia"/>
                <combo key="status" values="active,dormant,extinct"/>
                <combo key="type" values="stratovolcano,shield,scoria"/>
                <check key="man_made" text="Survey point" default="off" value_on="survey_point"/>
            </item>
            <item name="Cave Entrance" icon="presets/cave_entrance.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=cave_entrance"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=cave_entrance"/>
                <label text="Edit Cave Entrance"/>
                <key key="natural" value="cave_entrance"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <space/>
                <check key="foot" text="Foot" default="off"/>
                <check key="bicycle" text="Bicycle" default="on"/>
                <check key="horse" text="Horse" default="off"/>
                <check key="motorcycle" text="Motorcycle" default="off"/>
                <check key="motorcar" text="Motorcar" default="off"/>
                <check key="boat" text="Boat" default="off"/>
                <combo key="barrier" text="Barrier (entrance)" values="yes,fence,railing,chain,chicane,cycle_barrier,debris,entrance,gate,rope"/>
                <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
            </item>
            <separator/>
            <item name="Island" icon="presets/island.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:place=island"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:place=island"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:place=island"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=island"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=island"/>
                <label text="Edit Island"/>
                <space/>
                <key key="place" value="island"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <space/>
                <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
            </item>
            <item name="Islet" icon="presets/islet.png" type="node,closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:place=islet"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:place=islet"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:place=islet"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:place=islet"/>
                <label text="Edit Islet"/>
                <space/>
                <key key="place" value="islet"/>
                <text key="name" text="Name"/>
                <text key="wikipedia" text="Wikipedia"/>
                <space/>
                <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
            </item>
        </group>
        <!-- Geography -->
        <group name="Nature" icon="presets/tree.png">
            <item name="Tree" icon="presets/tree.png" type="node">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=tree"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=tree"
                      fi.href="http://wiki.openstreetmap.org/wiki/Fi:Tag:natural=tree"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:natural=tree"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=tree"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=tree"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=tree"/>
                <label text="Edit Tree"/>
                <key key="natural" value="tree"/>
                <text key="name" text="Name"/>
                <text key="type" text="Type"/>
                <text key="height" text="Height"/>
                <text key="name:botanical" text="Botanical Name"/>
                <combo key="wood" text="Type" values="coniferous,deciduous,mixed" values_context="wood"/>
                <combo key="denotation" text="Denotation" values="landmark,natural_monument,avenue,urban,cluster"/>
                <text key="height" text="Height (meters)" length="7"/>
                <text key="circumference" text="Circumference (meters, in a height of 1m)"/>
            </item>
            <item name="Tree rows" fr.name="Ligne d'arbres" type="way">
                <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/Tree_rows"/>
                <label text="Tree rows"/>
                <space/>
                <key key="natural" value="tree_row"/>
            </item>
            <item name="Wood" icon="presets/landuse.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=wood"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=wood"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=wood"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=wood"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=wood"/>
                <label text="Edit Wood"/>
                <key key="natural" value="wood"/>
                <text key="name" text="Name"/>
                <combo key="wood" text="Type" values="coniferous,deciduous,mixed" values_context="wood"/>
            </item>
            <item name="Forest" icon="presets/landuse.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=forest"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=forest"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:landuse=forest"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=forest"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=forest"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=forest"/>
                <label text="Edit Forest Landuse"/>
                <space/>
                <key key="landuse" value="forest"/>
                <text key="name" text="Name"/>
                <combo key="wood" text="Type" values="coniferous,deciduous,mixed"/>
            </item>
            <item name="Grassland" icon="presets/landuse.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=grassland"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=grassland"
                      it.href="http://wiki.openstreetmap.org/wiki/IT:Tag:natural=grassland"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:natural=grassland"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=grassland"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=grassland"/>
                <label text="Edit Grassland"/>
                <space/>
                <key key="natural" value="grassland"/>
                <text key="name" text="Name"/>
                <combo key="grassland" text="Type" values="pampas,prairie,puszta,savanna,steppe,veld"/>
            </item>
            <item name="Nature Reserve" icon="styles/standard/leisure/nature_reserve.png" type="node,closedway,relation">
                <label text="Edit Nature Reserve"/>
                <key key="leisure" value="nature_reserve"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <separator/>
            <item name="Scree" icon="presets/empty.png" type="node,closedway,relation">
                <label text="Edit Scree"/>
                <key key="natural" value="scree"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Fell" icon="presets/empty.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=fell"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=fell"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=fell"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=fell"/>
                <label text="Edit Fell"/>
                <key key="natural" value="fell"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Scrub" icon="presets/empty.png" type="node,closedway,relation">
                <label text="Edit Scrub"/>
                <key key="natural" value="scrub"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Heath" icon="presets/empty.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:natural=heath"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:natural=heath"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:natural=heath"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:natural=heath"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:natural=heath"/>
                <label text="Edit Heath"/>
                <key key="natural" value="heath"/>
                <text key="name" text="Name"/>
            </item>
        </group>
        <!-- Nature -->
        <group name="Land use" icon="presets/landuse.png">
            <item name="Landuse" icon="presets/landuse.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:landuse"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse"/>
                <label text="Edit Landuse"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <combo key="landuse" text="Landuse" values="allotments,basin,brownfield,cemetery,commercial,conservation,construction,farm,farmland,farmyard,forest,garages,grass,greenfield,greenhouse_horticulture,industrial,landfill,meadow,military,orchard,plant_nursery,quarry,railway,recreation_ground,reservoir,residential,retail,salt_pond,village_green,vineyard"/>
                <text key="name" text="Name"/>
                <optional>
                    <combo key="wood" text="Type" values="coniferous,deciduous,mixed" values_context="wood"/>
                    <space/>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <separator/>
            <item name="Farmyard" icon="presets/landuse.png" type="closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=farmyard"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=farmyard"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:landuse=farmyard"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=farmyard"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=farmyard"/>
                <label text="Edit Farmyard Landuse"/>
                <space/>
                <key key="landuse" value="farmyard"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Farmland" icon="presets/landuse.png" type="closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=farmland"/>
                <label text="Edit Farmland Landuse"/>
                <space/>
                <key key="landuse" value="farmland"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="highway" text="Highway" values="track,service"/>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Meadow" icon="presets/landuse.png" type="node,closedway,relation">
                <label text="Edit Meadow Landuse"/>
                <space/>
                <key key="landuse" value="meadow"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Vineyard" icon="presets/fruits.png" type="node,closedway,relation">
                <label text="Edit Vineyard Landuse"/>
                <space/>
                <key key="landuse" value="vineyard"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Greenhouse Horticulture" icon="presets/greenhouse_horticulture.png" type="closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=greenhouse_horticulture"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=greenhouse_horticulture"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=greenhouse_horticulture"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=greenhouse_horticulture"/>
                <label text="Edit Greenhouse Horticulture"/>
                <space/>
                <key key="landuse" value="greenhouse_horticulture"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Allotments" icon="presets/landuse.png" type="node,closedway,relation">
                <label text="Edit Allotments Landuse"/>
                <space/>
                <key key="landuse" value="allotments"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <separator/>
            <item name="Garden" icon="presets/empty.png" type="node,closedway,relation">
                <label text="Edit Garden"/>
                <key key="leisure" value="garden"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Grass" icon="presets/landuse.png" type="node,closedway,relation">
                <label text="Edit Grass Landuse"/>
                <space/>
                <key key="landuse" value="grass"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Village Green" icon="presets/landuse.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=village_green"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=village_green"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=village_green"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=village_green"/>
                <label text="Edit Village Green Landuse"/>
                <space/>
                <key key="landuse" value="village_green"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Common" icon="presets/empty.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:leisure=common"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:leisure=common"/>
                <label text="Edit Common"/>
                <key key="leisure" value="common"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Park" icon="presets/empty.png" type="node,closedway,relation">
                <label text="Edit Park"/>
                <key key="leisure" value="park"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Recreation Ground" icon="presets/landuse.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=recreation_ground"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=recreation_ground"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=recreation_ground"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=recreation_ground"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=recreation_ground"/>
                <label text="Edit Recreation Ground Landuse"/>
                <space/>
                <key key="landuse" value="recreation_ground"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <separator/>
            <item name="Residential area" icon="styles/standard/misc/landmark/building.png" type="closedway,relation">
                <label text="Edit Residential Landuse"/>
                <space/>
                <key key="landuse" value="residential"/>
                <text key="name" text="Name"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Graveyard" icon="presets/graveyard.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:amenity=grave_yard"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:amenity=grave_yard"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:amenity=grave_yard"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:amenity=grave_yard"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:amenity=grave_yard"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:amenity=grave_yard"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:amenity=grave_yard"/>
                <label text="Edit Graveyard"/>
                <key key="amenity" value="grave_yard"/>
                <text key="name" text="Name"/>
                <combo key="religion" text="Religion" values="any,animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
                <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
                <check key="disused" text="Disused" default="off"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Cemetery" icon="presets/cemetery.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=cemetery"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=cemetery"
                      fr.href="http://wiki.openstreetmap.org/wiki/FR:Tag:landuse=cemetery"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=cemetery"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:landuse=cemetery"
                      pl.href="http://wiki.openstreetmap.org/wiki/Pl:Tag:landuse=cemetery"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=cemetery"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=cemetery"/>
                <label text="Edit Cemetery Landuse"/>
                <space/>
                <key key="landuse" value="cemetery"/>
                <text key="name" text="Name"/>
                <combo key="religion" text="Religion" values="any,animism,bahai,buddhist,christian,hindu,jain,jewish,muslim,paganism,sikh,spiritualist,taoist,unitarian,zoroastrian"/>
                <combo key="denomination" text="Denomination" values="anglican,baptist,catholic,evangelical,jehovahs_witness,lutheran,methodist,mormon,orthodox,pentecostal,presbyterian,protestant,quaker,shia,sunni"/>
                <check key="disused" text="Disused" default="off"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Retail" icon="styles/standard/shop/supermarket.png" type="node,closedway,relation">
                <label text="Edit Retail Landuse"/>
                <space/>
                <key key="landuse" value="retail"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Commercial" icon="presets/empty.png" type="node,closedway,relation">
                <label text="Edit Commercial Landuse"/>
                <space/>
                <key key="landuse" value="commercial"/>
                <text key="name" text="Name"/>
            </item>
            <item name="Industrial" icon="presets/works.png" type="node,closedway,relation">
                <label text="Edit Industrial Landuse"/>
                <space/>
                <key key="landuse" value="industrial"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall" use_last_as_default="true"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood" use_last_as_default="true"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no" use_last_as_default="true"/>
                </optional>
            </item>
            <item name="Garages" icon="presets/garages.png" type="closedway">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=garages"
                      de.href="http://wiki.openstreetmap.org/wiki/DE:Tag:landuse=garages"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=garages"
                      nl.href="http://wiki.openstreetmap.org/wiki/NL:Tag:landuse=garages"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=garages"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=garages"/>
                <label text="Edit Garages"/>
                <space/>
                <key key="landuse" value="garages"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Railway land" icon="presets/rail_light.png" type="closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=railway"
                      ja.href="http://wiki.openstreetmap.org/wiki/JA:Tag:landuse=railway"
                      pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Tag:landuse=railway"
                      ru.href="http://wiki.openstreetmap.org/wiki/RU:Tag:landuse=railway"/>
                <label text="Edit Railway Landuse"/>
                <space/>
                <key key="landuse" value="railway"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Military" icon="presets/military.png" type="node,closedway,relation">
                <label text="Edit Military Landuse"/>
                <space/>
                <key key="landuse" value="military"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no" use_last_as_default="true"/>
                </optional>
            </item>
            <separator/>
            <item name="Construction area" icon="presets/construction.png" type="node,closedway,relation">
                <label text="Edit Construction Landuse"/>
                <space/>
                <key key="landuse" value="construction"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Brownfield" icon="presets/landuse.png" type="node,closedway,relation">
                <label text="Edit Brownfield Landuse"/>
                <space/>
                <key key="landuse" value="brownfield"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Greenfield" icon="presets/landuse.png" type="node,closedway,relation">
                <label text="Edit Greenfield Landuse"/>
                <space/>
                <key key="landuse" value="greenfield"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Landfill" icon="presets/landuse.png" type="node,closedway,relation">
                <label text="Edit Landfill Landuse"/>
                <space/>
                <key key="landuse" value="landfill"/>
                <text key="name" text="Name"/>
                <combo key="waste" text="Waste" values="trash,excrement,grey water,organic,oil,plastic,rubble,scrap_metal,soil"/>
                <check key="disused" text="Disused" default="off"/>
                <!--TODO proposal
               <check key="legal" text="Legal" default="on"/>
			-->
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                </optional>
            </item>
            <item name="Quarry" icon="presets/mine.png" type="node,closedway,relation">
                <link href="http://wiki.openstreetmap.org/wiki/Tag:landuse=quarry"/>
                <label text="Edit Quarry Landuse"/>
                <space/>
                <key key="landuse" value="quarry"/>
                <text key="name" text="Name"/>
                <text key="operator" text="Operator"/>
                <combo key="resource" text="Resource" values="aggregate,bauxite,coal,copper,dimension_stone,gold,ilmenite,iron_ore,lead,limestone,nickel,rutile,salt,silver,tin,zinc,zircon,antimony,arsenic,asbestos,barite,bastnasite,bentonite,beryl,bismuth,bitumen,borax,boron,bromide,caesium,chromite,cobalt,diamond,diatomite,dolomite,feldspar,fluorite,garnet,graphite,gypsum,iodine,jade,kaolinite,lanthanum,lithium,magnesite,magnesium,manganese,marble,mercury,mica,molybdenite,monazite,niobium,oil_sand,oil_shale,opal,palladium,peat,perlite,phospate,potash,platinum,radium,ruby,rubidium,sapphire,scandium,silica,sodium_carbonate,spongolite,strontium,sulphur,talc,terbium,tantalum,topaz,tungsten,uranium,vanadium,vermiculite,wollastonite,yttrium,zeolite"/>
                <check key="disused" text="Disused" default="off"/>
                <space/>
                <optional>
                    <combo key="barrier" text="Barrier" values="yes,city_wall,debris,ditch,embankment,fence,field_boundary,guard_rail,hedge,kerb,railing,retaining_wall,wall"/>
                    <combo key="fence_type" text="Fence type" values="barbed_wire,chain_link,electric,pole,roundpole,split_rail,wood"/>
                    <combo key="access" text="General access" values="yes,customers,delivery,designated,destination,official,permissive,private,no"/>
                    <space/>
                    <check text="Cliff (left side is top)" key="natural" value_on="cliff"/>
                </optional>
            </item>
        </group>
        <!-- Landuse -->
    </group>
    <group name="Annotation" icon="presets/addresses.png">
        <item name="Addresses" icon="presets/addresses.png" type="node,way,closedway">
            <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/House_numbers/Karlsruhe_Schema"
                  de.href="http://wiki.openstreetmap.org/wiki/Proposed_features/De:Hausnummern"/>
            <label text="Edit Address Information"/>
            <space/>
            <text key="addr:housenumber" text="House number" match="key" auto_increment="-2,-1,+1,+2"/>
            <optional>
                <text key="addr:housename" text="House name" match="key"/>
                <text key="addr:street" text="Street name" use_last_as_default="force" match="key"/>
                <text key="addr:city" text="City name" use_last_as_default="force" match="key"/>
                <text key="addr:postcode" text="Post code" use_last_as_default="force" match="key"/>
                <combo key="addr:country" text="Country code" values_from="java.util.Locale#getISOCountries" use_last_as_default="force" match="key"/>
            </optional>
        </item>
        <item name="Address Interpolation" icon="presets/interpolation.png" type="way">
            <link href="http://wiki.openstreetmap.org/wiki/Proposed_features/House_numbers/Karlsruhe_Schema"
                  de.href="http://wiki.openstreetmap.org/wiki/Proposed_features/De:Hausnummern"/>
            <label text="Edit Address Interpolation"/>
            <space/>
            <combo key="addr:interpolation" text="Numbering scheme" values="odd,even,all,alphabetic" default="odd" match="key"/>
        </item>
        <item name="Contact (common schema)" icon="presets/contact.png" type="node,way,closedway,relation">
            <label text="Edit Contact information"/>
            <space/>
            <text key="phone" text="Phone Number" match="key"/>
            <text key="fax" text="Fax Number" match="key"/>
            <space/>
            <text key="website" text="Website" match="key"/>
            <text key="email" text="Email Address" match="key"/>
            <space/>
            <text key="wikipedia" text="Wikipedia"/>
            <text key="image" text="Image"/>
        </item>
        <item name="Contact (schema with 'contact:*' prefix)" icon="presets/contact.png" type="node,way,closedway,relation">
            <label text="Edit Contact information (new schema)"/>
            <space/>
            <text key="contact:phone" text="Phone Number" match="key"/>
            <text key="contact:fax" text="Fax Number" match="key"/>
            <space/>
            <text key="contact:website" text="Website" match="key"/>
            <text key="contact:email" text="Email Address" match="key"/>
            <space/>
            <text key="wikipedia" text="Wikipedia"/>
            <text key="image" text="Image"/>
        </item>
    </group>
    <!-- Annotation -->
    <group name="Relations" icon="presets/relations.png">
        <item name="Multipolygon" icon="presets/multipolygon.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relation:multipolygon"
                  de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:multipolygon"
                  es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:multipolygon"
                  fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:multipolygon"
                  it.href="http://wiki.openstreetmap.org/wiki/IT:Relation:multipolygon"
                  ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:multipolygon"
                  ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:multipolygon"/>
            <label text="Edit Multipolygon"/>
            <key key="type" value="multipolygon"/>
            <optional>
                <text key="name" text="Name"/>
            </optional>
            <roles>
                <role key="outer" text="outer segment" requisite="required" type="way"/>
                <role key="inner" text="inner segment" requisite="optional" type="way"/>
            </roles>
        </item>
        <item name="Boundary" icon="presets/boundaries.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relation:boundary"
                  de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:boundary"
                  es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:boundary"
                  fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:boundary"
                  ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:boundary"
                  pl.href="http://wiki.openstreetmap.org/wiki/Pl:Relation:boundary"
                  ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:boundary"/>
            <label text="Edit Boundary"/>
            <key key="type" value="boundary"/>
            <text key="name" text="Name"/>
            <optional>
                <combo key="boundary" text="Boundary type" values="administrative,national,civil,political"/>
                <combo key="admin_level" text="Administrative level" values="1,2,3,4,5,6,7,8,9,10"/>
            </optional>
            <roles>
                <role key="outer" text="outer segment" requisite="required" type="way"/>
                <role key="inner" text="inner segment" requisite="optional" type="way"/>
                <role key="subarea" text="Sub area" requisite="optional" type="relation"/>
                <role key="admin_centre" text="Administration centre" requisite="optional" type="node" count="1"/>
                <role key="label" text="Label point" requisite="optional" type="node" count="1"/>
            </roles>
        </item>
        <item name="Site" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Site"/>
            <label text="Edit Site"/>
            <key key="type" value="site"/>
            <text key="name" text="Site name"/>
            <roles>
                <role key="label" text="where to place the label" requisite="optional" type="node"/>
                <role key="perimeter" text="perimeter of the site" requisite="optional" type="closedway,relation"/>
                <role key="entrance" text="entrances to the site, on the perimeter" requisite="optional" type="node"/>
                <role key="" text="members of site" requisite="optional" type="node,way,closedway,relation"/>
            </roles>
        </item>
        <separator/>
        <item name="Turn restriction" icon="styles/standard/vehicle/restriction/turn_restrictions/no_u_turn.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relation:restriction"
                  de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:restriction"
                  es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:restriction"
                  fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:restriction"
                  it.href="http://wiki.openstreetmap.org/wiki/IT:Relation:restriction"
                  ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:restriction"
                  pl.href="http://wiki.openstreetmap.org/wiki/Pl:Relation:restriction"
                  pt_BR.href="http://wiki.openstreetmap.org/wiki/Pt-br:Relation:restriction"
                  ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:restriction"/>
            <label text="Edit Turn Restriction"/>
            <key key="type" value="restriction"/>
            <combo key="restriction" text="Restriction" values="no_left_turn,no_right_turn,no_straight_on,no_u_turn,only_right_turn,only_left_turn,only_straight_on"/>
            <optional>
                <text key="name" text="Name"/>
            </optional>
            <roles>
                <role key="from" text="from way" requisite="required" count="1" type="way"/>
                <role key="via" text="via node or ways" requisite="required" type="way,node"/>
                <role key="to" text="to way" requisite="required" count="1" type="way"/>
            </roles>
        </item>
        <item name="Enforcement" icon="presets/speed_camera.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relation:enforcement"
                  de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:enforcement"
                  es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:enforcement"
                  fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:enforcement"
                  ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:enforcement"/>
            <label text="Edit Enforcement"/>
            <key key="type" value="enforcement"/>
            <combo key="enforcement" text="Type of enforcement" values="maxheight,maxweight,maxspeed,mindistance,traffic_signals,check "/>
            <text key="maxheight" text="Max. height (meters, only if enforcement=maxheight)"/>
            <text key="maxweight" text="Max. weight (tonnes, only if enforcement=maxweight)"/>
            <text key="maxspeed" text="Max. speed (km/h, only if enforcement=maxspeed)"/>
            <roles>
                <role key="device" text="location of enforcement device" requisite="required" type="node,way,closedway"/>
                <role key="from" text="node on way where enforcement starts" requisite="required" type="node"/>
                <role key="to" text="where enforcement ends" requisite="optional" type="node"/>
                <role key="force" text="traffic light or barrier that stops you" requisite="optional" type="node"/>
            </roles>
        </item>
        <separator/>
        <item name="General route" icon="presets/path.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relation:route"
                  de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:route"
                  es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:route"
                  fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:route"
                  it.href="http://wiki.openstreetmap.org/wiki/IT:Relation:route"
                  ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:route"
                  ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:route"/>
            <label text="Edit general route"/>
            <key key="type" value="route"/>
            <combo key="route" text="Route type" values="bicycle,bus,road,ferry,ski,foot,hiking,tram,detour,railway,subway"/>
            <text key="name" text="Name"/>
            <text key="ref" text="Reference"/>
            <text key="symbol" text="Symbol description"/>
            <text key="description" text="Description"/>
            <optional>
                <text key="network" text="Network"/>
                <text key="operator" text="Operator"/>
                <combo key="state" text="Route state" values="proposed,alternate,temporary,connection"/>
                <combo key="colour" text="Color (HTML name or hexadecimal code)" values_context="color" values="black,brown,green,red,blue,gray,white,#CD853F"/>
            </optional>
            <roles>
                <role key="" text="route segment" requisite="optional" type="way"/>
                <role key="forward" text="forward segment" requisite="optional" type="way"/>
                <role key="backward" text="backward segment" requisite="optional" type="way"/>
                <role key="east" text="east segment (North America)" requisite="optional" type="way"/>
                <role key="north" text="north segment (North America)" requisite="optional" type="way"/>
                <role key="west" text="west segment (North America)" requisite="optional" type="way"/>
                <role key="south" text="south segment (North America)" requisite="optional" type="way"/>
                <role key="stop" text="halt point" requisite="optional" type="node"/>
                <role key="forward_stop" text="forward halt point" requisite="optional" type="node"/>
                <role key="backward_stop" text="backward halt point" requisite="optional" type="node"/>
            </roles>
        </item>
        <item name="Route network" icon="presets/path.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Network"/>
            <label text="Edit route network"/>
            <key key="type" value="network"/>
            <text key="name" text="Name"/>
            <optional>
                <text key="network" text="Network"/>
                <text key="operator" text="Operator"/>
            </optional>
            <roles>
                <role key="" text="member" requisite="required" type="relation"/>
            </roles>
        </item>
        <separator/>
        <item name="Associated street" icon="presets/addresses.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relation:associatedStreet"
                  de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:associatedStreet"
                  fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:associatedStreet"
                  pl.href="http://wiki.openstreetmap.org/wiki/Pl:Relation:associatedStreet"/>
            <label text="Edit associated street"/>
            <key key="type" value="associatedStreet"/>
            <text key="name" text="Street name"/>
            <roles>
                <role key="street" text="street" requisite="required" type="way,closedway" member_expression="highway"/>
                <role key="house" text="house" requisite="required" type="node,way,closedway,relation" member_expression="&quot;addr:housenumber&quot; | &quot;addr:interpolation&quot;"/>
            </roles>
        </item>
        <item name="Street" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relation:street"
                  fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:street"/>
            <label text="Edit Street"/>
            <key key="type" value="street"/>
            <text key="name" text="Name"/>
            <roles>
                <role key="street" text="ways being part of street" requisite="required" type="way"/>
                <role key="address" text="addresses belonging to the street" requisite="optional" type="node,way,closedway"/>
                <role key="house" text="houses belonging to the street" requisite="optional" type="node,way,closedway"/>
                <role key="associated" text="anything related to the street" requisite="optional" type="node,way,closedway"/>
            </roles>
        </item>
        <item name="Destination sign" icon="presets/guidepost.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relation:destination_sign"
                  de.href="http://wiki.openstreetmap.org/wiki/DE:Relation:destination_sign"
                  es.href="http://wiki.openstreetmap.org/wiki/ES:Relation:destination_sign"
                  fr.href="http://wiki.openstreetmap.org/wiki/FR:Relation:destination_sign"
                  ja.href="http://wiki.openstreetmap.org/wiki/JA:Relation:destination_sign"
                  ru.href="http://wiki.openstreetmap.org/wiki/RU:Relation:destination_sign"/>
            <label text="Edit Destination sign"/>
            <key key="type" value="destination_sign"/>
            <text key="destination" text="Destination written on sign (w/o distance)"/>
            <text key="distance" text="Distance (km)"/>
            <text key="time" text="Time (hh:mm, for trekking)"/>
            <text key="colour:back" text="Colour of background"/>
            <text key="colour:text" text="Colour of text"/>
            <text key="colour:arrow" text="Colour of border/arrow"/>
            <roles>
                <role key="from" text="last way before junction" requisite="optional" type="node,way"/>
                <role key="intersection" text="node of the intersection" requisite="optional" count="1" type="node"/>
                <role key="to" text="first way after junction" requisite="required" count="1" type="node,way"/>
                <role key="sign" text="position of sign" requisite="optional" type="node"/>
            </roles>
        </item>
        <separator/>
        <item name="Waterway" icon="presets/river.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Waterway"/>
            <label text="Edit Waterway"/>
            <key key="type" value="waterway"/>
            <combo key="waterway" text="Subtype of waterway (largest one of members)" values="river,stream,canal,drain,ditch"/>
            <text key="name" text="Name"/>
            <optional>
                <text key="destination" text="Name of river/sea/ocean"/>
                <text key="ref" text="Reference"/>
                <text key="ref:sandre" text="Reference Sandre (FR)"/>
                <text key="ref:fgkz" text="Reference FGKZ (DE)"/>
                <text key="ref:regine" text="Reference REGINE (NO)"/>
                <text key="ref:gnis" text="Reference GNIS (USA)"/>
                <text key="ref:gnbc" text="Reference GNBC (CA)"/>
                <text key="wikipedia" text="Wikipedia"/>
            </optional>
            <roles>
                <role key="" text="waterways (no riverbank)" requisite="optional" type="way" member_expression="waterway -waterway:riverbank"/>
                <role key="main_stream" text="waterways (no riverbank)" requisite="optional" type="way" member_expression="waterway -waterway:riverbank"/>
                <role key="side_stream" text="branch waterways (no riverbank)" requisite="optional" type="way" member_expression="waterway -waterway:riverbank"/>
                <role key="spring" text="spring of waterway" requisite="optional" type="node"/>
            </roles>
        </item>
        <item name="Bridge" icon="presets/bridge.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Bridges_and_Tunnels"
                  ru.href="http://wiki.openstreetmap.org/wiki/RU:Relations/Proposed/Bridges_and_Tunnels"/>
            <label text="Edit Bridge"/>
            <key key="type" value="bridge"/>
            <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
            <text key="name" text="Name"/>
            <text key="ref" text="Reference"/>
            <text key="height" text="Height (meters)" length="7"/>
            <text key="length" text="Length (meters)"/>
            <text key="operator" text="Operator"/>
            <roles>
                <role key="across" text="ways supported by (on top of) the bridge" requisite="optional" type="way"/>
                <role key="under" text="ways passing under the bridge" requisite="optional" type="way"/>
                <role key="outline" text="way forming the outline footprint" requisite="optional" count="1" type="closedway"/>
                <role key="edge" text="nodes forming the outline" requisite="optional" type="node"/>
            </roles>
        </item>
        <item name="Tunnel" icon="presets/tunnel.png" type="relation">
            <link href="http://wiki.openstreetmap.org/wiki/Relations/Proposed/Bridges_and_Tunnels"/>
            <label text="Edit Tunnel"/>
            <key key="type" value="tunnel"/>
            <combo key="layer" text="Layer" values="5,4,3,2,1,0,-1,-2,-3,-4,-5"/>
            <text key="name" text="Name"/>
            <text key="ref" text="Reference"/>
            <text key="length" text="Length (meters)"/>
            <text key="operator" text="Operator"/>
            <roles>
                <role key="through" text="ways passing through the tunnel" requisite="required" type="way"/>
                <role key="outline" text="way forming the outline footprint" requisite="optional" count="1" type="closedway"/>
                <role key="edge" text="nodes forming the outline" requisite="optional" type="node"/>
            </roles>
        </item>
    </group>
    <!-- Relations -->
</presets>